import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the App Catalog Subscription resource in Oracle Cloud Infrastructure Core service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/iaas/latest/AppCatalogSubscription * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/ * * Create a subscription for listing resource version for a compartment. It will take some time to propagate to all regions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAppCatalogSubscription = new oci.core.AppCatalogSubscription("test_app_catalog_subscription", { * compartmentId: compartmentId, * listingId: testListing.id, * listingResourceVersion: appCatalogSubscriptionListingResourceVersion, * oracleTermsOfUseLink: appCatalogSubscriptionOracleTermsOfUseLink, * signature: appCatalogSubscriptionSignature, * timeRetrieved: appCatalogSubscriptionTimeRetrieved, * eulaLink: appCatalogSubscriptionEulaLink, * }); * ``` * * ## Import * * AppCatalogSubscriptions can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Core/appCatalogSubscription:AppCatalogSubscription test_app_catalog_subscription "compartmentId/{compartmentId}/listingId/{listingId}/listingResourceVersion/{listingResourceVersion}" * ``` */ export declare class AppCatalogSubscription extends pulumi.CustomResource { /** * Get an existing AppCatalogSubscription resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AppCatalogSubscriptionState, opts?: pulumi.CustomResourceOptions): AppCatalogSubscription; /** * Returns true if the given object is an instance of AppCatalogSubscription. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AppCatalogSubscription; /** * The compartmentID for the subscription. */ readonly compartmentId: pulumi.Output; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: pulumi.Output; /** * EULA link */ readonly eulaLink: pulumi.Output; /** * The OCID of the listing. */ readonly listingId: pulumi.Output; /** * Listing resource id. */ readonly listingResourceId: pulumi.Output; /** * Listing resource version. */ readonly listingResourceVersion: pulumi.Output; /** * Oracle TOU link */ readonly oracleTermsOfUseLink: pulumi.Output; /** * Name of the publisher who published this listing. */ readonly publisherName: pulumi.Output; /** * A generated signature for this listing resource version retrieved the agreements API. */ readonly signature: pulumi.Output; /** * The short summary to the listing. */ readonly summary: pulumi.Output; /** * Date and time at which the subscription was created, in [RFC3339](https://tools.ietf.org/html/rfc3339) format. Example: `2018-03-20T12:32:53.532Z` */ readonly timeCreated: pulumi.Output; /** * Date and time the agreements were retrieved, in [RFC3339](https://tools.ietf.org/html/rfc3339) format. Example: `2018-03-20T12:32:53.532Z` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly timeRetrieved: pulumi.Output; /** * Create a AppCatalogSubscription resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AppCatalogSubscriptionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AppCatalogSubscription resources. */ export interface AppCatalogSubscriptionState { /** * The compartmentID for the subscription. */ compartmentId?: pulumi.Input; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * EULA link */ eulaLink?: pulumi.Input; /** * The OCID of the listing. */ listingId?: pulumi.Input; /** * Listing resource id. */ listingResourceId?: pulumi.Input; /** * Listing resource version. */ listingResourceVersion?: pulumi.Input; /** * Oracle TOU link */ oracleTermsOfUseLink?: pulumi.Input; /** * Name of the publisher who published this listing. */ publisherName?: pulumi.Input; /** * A generated signature for this listing resource version retrieved the agreements API. */ signature?: pulumi.Input; /** * The short summary to the listing. */ summary?: pulumi.Input; /** * Date and time at which the subscription was created, in [RFC3339](https://tools.ietf.org/html/rfc3339) format. Example: `2018-03-20T12:32:53.532Z` */ timeCreated?: pulumi.Input; /** * Date and time the agreements were retrieved, in [RFC3339](https://tools.ietf.org/html/rfc3339) format. Example: `2018-03-20T12:32:53.532Z` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ timeRetrieved?: pulumi.Input; } /** * The set of arguments for constructing a AppCatalogSubscription resource. */ export interface AppCatalogSubscriptionArgs { /** * The compartmentID for the subscription. */ compartmentId: pulumi.Input; /** * EULA link */ eulaLink?: pulumi.Input; /** * The OCID of the listing. */ listingId: pulumi.Input; /** * Listing resource version. */ listingResourceVersion: pulumi.Input; /** * Oracle TOU link */ oracleTermsOfUseLink: pulumi.Input; /** * A generated signature for this listing resource version retrieved the agreements API. */ signature: pulumi.Input; /** * Date and time the agreements were retrieved, in [RFC3339](https://tools.ietf.org/html/rfc3339) format. Example: `2018-03-20T12:32:53.532Z` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ timeRetrieved: pulumi.Input; } //# sourceMappingURL=appCatalogSubscription.d.ts.map