Show / Hide Table of Contents

Class PrivateApplicationSummary

Brief data about an application or a solution, which lives inside the tenancy and may be included into service catalogs.

Inheritance
object
PrivateApplicationSummary
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
public class PrivateApplicationSummary

Properties

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 where the private application resides.

Remarks

Required

DisplayName

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

The name of the private application.

Remarks

Required

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.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PrivateApplication.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
PrivateApplication.LifecycleStateEnum?

The lifecycle state of the private application.

Remarks

Required

Logo

Declaration
[JsonProperty(PropertyName = "logo")]
public UploadData Logo { get; set; }
Property Value
Type Description
UploadData

PackageType

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

Type of the packages, which are hosted by the private application.

Remarks

Required

ShortDescription

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

A short description of the private application.

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 was created, expressed in RFC 3339 timestamp format.
Example: 2021-05-27T21:10:29.600Z

Remarks

Required

In this article
Back to top