You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ServiceCatalog::Types::UpdateProvisionedProductInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateProvisionedProductInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  accept_language: "AcceptLanguage",
  provisioned_product_name: "ProvisionedProductNameOrArn",
  provisioned_product_id: "Id",
  product_id: "Id",
  product_name: "ProductViewName",
  provisioning_artifact_id: "Id",
  provisioning_artifact_name: "ProvisioningArtifactName",
  path_id: "Id",
  path_name: "PortfolioDisplayName",
  provisioning_parameters: [
    {
      key: "ParameterKey",
      value: "ParameterValue",
      use_previous_value: false,
    },
  ],
  provisioning_preferences: {
    stack_set_accounts: ["AccountId"],
    stack_set_regions: ["Region"],
    stack_set_failure_tolerance_count: 1,
    stack_set_failure_tolerance_percentage: 1,
    stack_set_max_concurrency_count: 1,
    stack_set_max_concurrency_percentage: 1,
    stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
  },
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  update_token: "IdempotencyToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

Returns:

  • (String)

    The language code.

#path_idString

The path identifier. This value is optional if the product has a default path, and required if the product has more than one path. You must provide the name or ID, but not both.

Returns:

  • (String)

    The path identifier.

#path_nameString

The name of the path. You must provide the name or ID, but not both.

Returns:

  • (String)

    The name of the path.

#product_idString

The identifier of the product. You must provide the name or ID, but not both.

Returns:

  • (String)

    The identifier of the product.

#product_nameString

The name of the product. You must provide the name or ID, but not both.

Returns:

  • (String)

    The name of the product.

#provisioned_product_idString

The identifier of the provisioned product. You must provide the name or ID, but not both.

Returns:

  • (String)

    The identifier of the provisioned product.

#provisioned_product_nameString

The name of the provisioned product. You cannot specify both ProvisionedProductName and ProvisionedProductId.

Returns:

  • (String)

    The name of the provisioned product.

#provisioning_artifact_idString

The identifier of the provisioning artifact.

Returns:

  • (String)

    The identifier of the provisioning artifact.

#provisioning_artifact_nameString

The name of the provisioning artifact. You must provide the name or ID, but not both.

Returns:

  • (String)

    The name of the provisioning artifact.

#provisioning_parametersArray<Types::UpdateProvisioningParameter>

The new parameters.

Returns:

#provisioning_preferencesTypes::UpdateProvisioningPreferences

An object that contains information about the provisioning preferences for a stack set.

Returns:

#tagsArray<Types::Tag>

One or more tags. Requires the product to have RESOURCE_UPDATE constraint with TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.

Returns:

#update_tokenString

The idempotency token that uniquely identifies the provisioning update request.

Returns:

  • (String)

    The idempotency token that uniquely identifies the provisioning update request.