import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource type definition for AWS::ServiceCatalog::CloudFormationProduct */ export declare class CloudFormationProduct extends pulumi.CustomResource { /** * Get an existing CloudFormationProduct 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): CloudFormationProduct; /** * Returns true if the given object is an instance of CloudFormationProduct. 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 CloudFormationProduct; /** * The language code. */ readonly acceptLanguage: pulumi.Output; /** * The ID of the product, such as prod-tsjbmal34qvek */ readonly awsId: pulumi.Output; /** * The description of the product. */ readonly description: pulumi.Output; /** * The distributor of the product. */ readonly distributor: pulumi.Output; /** * The name of the product. */ readonly name: pulumi.Output; /** * The owner of the product. */ readonly owner: pulumi.Output; /** * The name of the product. */ readonly productName: pulumi.Output; /** * The type of product. */ readonly productType: pulumi.Output; /** * The IDs of the provisioning artifacts */ readonly provisioningArtifactIds: pulumi.Output; /** * The names of the provisioning artifacts */ readonly provisioningArtifactNames: pulumi.Output; /** * The configuration of the provisioning artifact (also known as a version). */ readonly provisioningArtifactParameters: pulumi.Output; /** * This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name. */ readonly replaceProvisioningArtifacts: pulumi.Output; /** * A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response. */ readonly sourceConnection: pulumi.Output; /** * The support information about the product. */ readonly supportDescription: pulumi.Output; /** * The contact email for product support. */ readonly supportEmail: pulumi.Output; /** * The contact URL for product support. */ readonly supportUrl: pulumi.Output; /** * One or more tags. */ readonly tags: pulumi.Output; /** * Create a CloudFormationProduct 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: CloudFormationProductArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CloudFormationProduct resource. */ export interface CloudFormationProductArgs { /** * The language code. */ acceptLanguage?: pulumi.Input; /** * The description of the product. */ description?: pulumi.Input; /** * The distributor of the product. */ distributor?: pulumi.Input; /** * The name of the product. */ name?: pulumi.Input; /** * The owner of the product. */ owner: pulumi.Input; /** * The type of product. */ productType?: pulumi.Input; /** * The configuration of the provisioning artifact (also known as a version). */ provisioningArtifactParameters?: pulumi.Input[]>; /** * This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name. */ replaceProvisioningArtifacts?: pulumi.Input; /** * A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response. */ sourceConnection?: pulumi.Input; /** * The support information about the product. */ supportDescription?: pulumi.Input; /** * The contact email for product support. */ supportEmail?: pulumi.Input; /** * The contact URL for product support. */ supportUrl?: pulumi.Input; /** * One or more tags. */ tags?: pulumi.Input[]>; }