Show / Hide Table of Contents

Class DataAssetCollection

Results of a data assets listing. A data asset is often synonymous with a 'System', such as a database, or may be a file container or a message stream.

Inheritance
object
DataAssetCollection
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 DataAssetCollection

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<DataAssetSummary> Items { get; set; }
Property Value
Type Description
List<DataAssetSummary>

Collection of data asset summaries.

Remarks

Required

In this article
Back to top