Show / Hide Table of Contents

Class PrivateApplicationPackage

A base object for all types of private application packages.

Inheritance
object
PrivateApplicationPackage
PrivateApplicationStackPackage
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ServicecatalogService.Models
Assembly: OCI.DotNetSDK.Servicecatalog.dll
Syntax
[JsonConverter(typeof(PrivateApplicationPackageModelConverter))]
public class PrivateApplicationPackage

Properties

DisplayName

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

The display name of the package.

Id

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

The OCID of the private application package.

Remarks

Required

PrivateApplicationId

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

The OCID of the private application where the package is hosted.

Remarks

Required

TimeCreated

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

The date and time the private application package was created, expressed in RFC 3339 timestamp format.
Example: 2021-05-27T21:10:29.600Z

Remarks

Required

Version

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

The package version.

Remarks

Required

In this article
Back to top