Show / Hide Table of Contents

Class CreateContainerImageDetails

Container image details required to create a container artifact.

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

Properties

SourceRegistryId

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

The source registry id of the container image.

Remarks

Required

SourceRegistryUrl

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

The source registry url of the container image.

Remarks

Required

In this article
Back to top