Class CreateImportedPackageDetails
Payload for creating an imported package
Inherited Members
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateImportedPackageDetails
Properties
CurrentPackageId
Declaration
[Required(ErrorMessage = "CurrentPackageId is required.")]
[JsonProperty(PropertyName = "currentPackageId")]
public string CurrentPackageId { get; set; }
Property Value
Type | Description |
---|---|
string | ID of the package to import. |
Remarks
Required
DefinedTags
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, Dictionary<string, object>> | Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace": {"bar-key": "value"}} |
FreeformTags
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"} |
ParameterValues
Declaration
[JsonProperty(PropertyName = "parameterValues")]
public Dictionary<string, string> ParameterValues { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | A list of parameter values to use when importing the given package. Must match those defined in the import contract. |