Show / Hide Table of Contents

Class ConnectionCollection

Results of a connections listing. Each member of the result is a summary representation of a connection to a data asset.

Inheritance
object
ConnectionCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class ConnectionCollection

Properties

Count

Declaration
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
Type Description
int?

Total number of items returned.

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<ConnectionSummary> Items { get; set; }
Property Value
Type Description
List<ConnectionSummary>

Collection of connection summaries.

Remarks

Required

In this article
Back to top