import * as pulumi from "@pulumi/pulumi"; /** * The `oci.Core.AppCatalogListingResourceVersionAgreement` resource creates AppCatalogListingResourceVersionAgreement for a particular resource version of a listing. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAppCatalogListingResourceVersionAgreement = new oci.core.AppCatalogListingResourceVersionAgreement("test_app_catalog_listing_resource_version_agreement", { * listingId: testListing.id, * listingResourceVersion: appCatalogListingResourceVersionAgreementListingResourceVersion, * }); * ``` */ export declare class ListingResourceVersionAgreement extends pulumi.CustomResource { /** * Get an existing ListingResourceVersionAgreement 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?: ListingResourceVersionAgreementState, opts?: pulumi.CustomResourceOptions): ListingResourceVersionAgreement; /** * Returns true if the given object is an instance of ListingResourceVersionAgreement. 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 ListingResourceVersionAgreement; /** * EULA link */ readonly eulaLink: pulumi.Output; /** * The OCID of the listing. */ readonly listingId: pulumi.Output; /** * Listing Resource Version. */ readonly listingResourceVersion: pulumi.Output; /** * Oracle TOU link */ readonly oracleTermsOfUseLink: pulumi.Output; /** * A generated signature for this agreement retrieval operation which should be used in the create subscription call. */ readonly signature: pulumi.Output; /** * Date and time the agreements were retrieved, in RFC3339 format. Example: `2018-03-20T12:32:53.532Z` */ readonly timeRetrieved: pulumi.Output; /** * Create a ListingResourceVersionAgreement 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: ListingResourceVersionAgreementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ListingResourceVersionAgreement resources. */ export interface ListingResourceVersionAgreementState { /** * 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 agreement retrieval operation which should be used in the create subscription call. */ signature?: pulumi.Input; /** * Date and time the agreements were retrieved, in RFC3339 format. Example: `2018-03-20T12:32:53.532Z` */ timeRetrieved?: pulumi.Input; } /** * The set of arguments for constructing a ListingResourceVersionAgreement resource. */ export interface ListingResourceVersionAgreementArgs { /** * The OCID of the listing. */ listingId: pulumi.Input; /** * Listing Resource Version. */ listingResourceVersion: pulumi.Input; } //# sourceMappingURL=listingResourceVersionAgreement.d.ts.map