Show / Hide Table of Contents

Class CreateCatalogItemDetails

The data to create a CatalogItem.

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

Properties

CatalogSourcePayload

Declaration
[JsonProperty(PropertyName = "catalogSourcePayload")]
public CatalogSourcePayload CatalogSourcePayload { get; set; }
Property Value
Type Description
CatalogSourcePayload

CompartmentId

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

The OCID of the compartment.

Remarks

Required

ConfigSourceType

Declaration
[Required(ErrorMessage = "ConfigSourceType is required.")]
[JsonProperty(PropertyName = "configSourceType")]
[JsonConverter(typeof(StringEnumConverter))]
public CatalogItem.ConfigSourceTypeEnum? ConfigSourceType { get; set; }
Property Value
Type Description
CatalogItem.ConfigSourceTypeEnum?

Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.

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

Description

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

The description of the CatalogItem.

Remarks

Required

DisplayName

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

The CatalogItem name.

Remarks

Required

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

ListingId

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

The catalog listing Id.

ListingVersion

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

The catalog package version.

PackageType

Declaration
[Required(ErrorMessage = "PackageType is required.")]
[JsonProperty(PropertyName = "packageType")]
[JsonConverter(typeof(StringEnumConverter))]
public CatalogItem.PackageTypeEnum? PackageType { get; set; }
Property Value
Type Description
CatalogItem.PackageTypeEnum?

Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.

Remarks

Required

ShortDescription

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

Short description about the catalog item.

TimeReleased

Declaration
[JsonProperty(PropertyName = "timeReleased")]
public DateTime? TimeReleased { get; set; }
Property Value
Type Description
DateTime?

The date and time the CatalogItem was released, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

VersionDescription

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

Version description about the catalog item.

In this article
Back to top