import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeProvisioningParametersInput, DescribeProvisioningParametersOutput } from "../models/models_0"; import type { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeProvisioningParametersCommand}. */ export interface DescribeProvisioningParametersCommandInput extends DescribeProvisioningParametersInput { } /** * @public * * The output of {@link DescribeProvisioningParametersCommand}. */ export interface DescribeProvisioningParametersCommandOutput extends DescribeProvisioningParametersOutput, __MetadataBearer { } declare const DescribeProvisioningParametersCommand_base: { new (input: DescribeProvisioningParametersCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeProvisioningParametersCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets information about the configuration required to provision the specified product using * the specified provisioning artifact.

*

If the output contains a TagOption key with an empty list of values, there is a * TagOption conflict for that key. The end user cannot take action to fix the conflict, and * launch is not blocked. In subsequent calls to ProvisionProduct, * do not include conflicted TagOption keys as tags, or this causes the error * "Parameter validation failed: Missing required parameter in Tags[N]:Value". * Tag the provisioned product with the value sc-tagoption-conflict-portfolioId-productId.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceCatalogClient, DescribeProvisioningParametersCommand } from "@aws-sdk/client-service-catalog"; // ES Modules import * // const { ServiceCatalogClient, DescribeProvisioningParametersCommand } = require("@aws-sdk/client-service-catalog"); // CommonJS import * // import type { ServiceCatalogClientConfig } from "@aws-sdk/client-service-catalog"; * const config = {}; // type is ServiceCatalogClientConfig * const client = new ServiceCatalogClient(config); * const input = { // DescribeProvisioningParametersInput * AcceptLanguage: "STRING_VALUE", * ProductId: "STRING_VALUE", * ProductName: "STRING_VALUE", * ProvisioningArtifactId: "STRING_VALUE", * ProvisioningArtifactName: "STRING_VALUE", * PathId: "STRING_VALUE", * PathName: "STRING_VALUE", * }; * const command = new DescribeProvisioningParametersCommand(input); * const response = await client.send(command); * // { // DescribeProvisioningParametersOutput * // ProvisioningArtifactParameters: [ // ProvisioningArtifactParameters * // { // ProvisioningArtifactParameter * // ParameterKey: "STRING_VALUE", * // DefaultValue: "STRING_VALUE", * // ParameterType: "STRING_VALUE", * // IsNoEcho: true || false, * // Description: "STRING_VALUE", * // ParameterConstraints: { // ParameterConstraints * // AllowedValues: [ // AllowedValues * // "STRING_VALUE", * // ], * // AllowedPattern: "STRING_VALUE", * // ConstraintDescription: "STRING_VALUE", * // MaxLength: "STRING_VALUE", * // MinLength: "STRING_VALUE", * // MaxValue: "STRING_VALUE", * // MinValue: "STRING_VALUE", * // }, * // }, * // ], * // ConstraintSummaries: [ // ConstraintSummaries * // { // ConstraintSummary * // Type: "STRING_VALUE", * // Description: "STRING_VALUE", * // }, * // ], * // UsageInstructions: [ // UsageInstructions * // { // UsageInstruction * // Type: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // TagOptions: [ // TagOptionSummaries * // { // TagOptionSummary * // Key: "STRING_VALUE", * // Values: [ // TagOptionValues * // "STRING_VALUE", * // ], * // }, * // ], * // ProvisioningArtifactPreferences: { // ProvisioningArtifactPreferences * // StackSetAccounts: [ // StackSetAccounts * // "STRING_VALUE", * // ], * // StackSetRegions: [ // StackSetRegions * // "STRING_VALUE", * // ], * // }, * // ProvisioningArtifactOutputs: [ // ProvisioningArtifactOutputs * // { // ProvisioningArtifactOutput * // Key: "STRING_VALUE", * // Description: "STRING_VALUE", * // }, * // ], * // ProvisioningArtifactOutputKeys: [ * // { * // Key: "STRING_VALUE", * // Description: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeProvisioningParametersCommandInput - {@link DescribeProvisioningParametersCommandInput} * @returns {@link DescribeProvisioningParametersCommandOutput} * @see {@link DescribeProvisioningParametersCommandInput} for command's `input` shape. * @see {@link DescribeProvisioningParametersCommandOutput} for command's `response` shape. * @see {@link ServiceCatalogClientResolvedConfig | config} for ServiceCatalogClient's `config` shape. * * @throws {@link InvalidParametersException} (client fault) *

One or more parameters provided to the operation are not valid.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource was not found.

* * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* * * @public */ export declare class DescribeProvisioningParametersCommand extends DescribeProvisioningParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeProvisioningParametersInput; output: DescribeProvisioningParametersOutput; }; sdk: { input: DescribeProvisioningParametersCommandInput; output: DescribeProvisioningParametersCommandOutput; }; }; }