Show / Hide Table of Contents

Class ContainerConfiguration

Container configuration.

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

Properties

IsRepositoryCreatedOnFirstPush

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

Whether to create a new container repository when a container is pushed to a new repository path. Repositories created in this way belong to the root compartment.

Remarks

Required

Namespace

Declaration
[Required(ErrorMessage = "Namespace is required.")]
[JsonProperty(PropertyName = "namespace")]
public string Namespace { get; set; }
Property Value
Type Description
string

The tenancy namespace used in the container repository path.

Remarks

Required

In this article
Back to top