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.
Inherited Members
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