Show / Hide Table of Contents

Class ContainerRepositoryCollection

List of container repository results.

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

Properties

ImageCount

Declaration
[Required(ErrorMessage = "ImageCount is required.")]
[JsonProperty(PropertyName = "imageCount")]
public int? ImageCount { get; set; }
Property Value
Type Description
int?

Total number of images.

Remarks

Required

Items

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

Collection of container repositories.

Remarks

Required

LayerCount

Declaration
[Required(ErrorMessage = "LayerCount is required.")]
[JsonProperty(PropertyName = "layerCount")]
public int? LayerCount { get; set; }
Property Value
Type Description
int?

Total number of layers.

Remarks

Required

LayersSizeInBytes

Declaration
[Required(ErrorMessage = "LayersSizeInBytes is required.")]
[JsonProperty(PropertyName = "layersSizeInBytes")]
public long? LayersSizeInBytes { get; set; }
Property Value
Type Description
long?

Total storage in bytes consumed by layers.

Remarks

Required

RemainingItemsCount

Declaration
[Required(ErrorMessage = "RemainingItemsCount is required.")]
[JsonProperty(PropertyName = "remainingItemsCount")]
public int? RemainingItemsCount { get; set; }
Property Value
Type Description
int?

Estimated number of remaining results.

Remarks

Required

RepositoryCount

Declaration
[Required(ErrorMessage = "RepositoryCount is required.")]
[JsonProperty(PropertyName = "repositoryCount")]
public int? RepositoryCount { get; set; }
Property Value
Type Description
int?

Total number of repositories.

Remarks

Required

In this article
Back to top