Show / Hide Table of Contents

Class ConfigureCatalogItemDetails

Contains the details required to configure a catalog item.

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

Properties

BucketName

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

The name of the Object Storage bucket that contains the catalog item configuration object.

Remarks

Required

CatalogListingId

Declaration
[JsonProperty(PropertyName = "catalogListingId")]
public string CatalogListingId { get; set; }
Property Value
Type Description
string

The unique identifier of the catalog listing to which configuration applies.

CatalogListingVersionId

Declaration
[JsonProperty(PropertyName = "catalogListingVersionId")]
public string CatalogListingVersionId { get; set; }
Property Value
Type Description
string

The unique identifier for the specific version of the catalog listing.

CompartmentId

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

OCID of the Compartment.

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>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. 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. Exists for cross-compatibility only. Example: {"bar-key": "value"}

InputVariables

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

Array of key value pairs specifying variables or parameters to be used when configuring the catalog item.

Remarks

Required

ObjectName

Declaration
[JsonProperty(PropertyName = "objectName")]
public string ObjectName { get; set; }
Property Value
Type Description
string

The name of the object file in the specified bucket containing catalog item configuration details.

StorageNamespace

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

The Oracle Cloud Object Storage namespace where the artifact or variables are stored.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

In this article
Back to top