Show / Hide Table of Contents

Class CreateAppCatalogSubscriptionDetails

details for creating a subscription for a listing resource version.

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

Properties

CompartmentId

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

The compartmentID for the subscription.

Remarks

Required

EulaLink

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

EULA link

ListingId

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

The OCID of the listing.

Remarks

Required

ListingResourceVersion

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

Listing resource version.

Remarks

Required

OracleTermsOfUseLink

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

Oracle TOU link

Remarks

Required

Signature

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

A generated signature for this listing resource version retrieved the agreements API.

Remarks

Required

TimeRetrieved

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

Date and time the agreements were retrieved, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z

Remarks

Required

In this article
Back to top