Class: Aws::ServiceCatalog::Types::UpdatePortfolioInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass UpdatePortfolioInput data as a hash:

{
  accept_language: "AcceptLanguage",
  id: "Id", # required
  display_name: "PortfolioDisplayName",
  description: "PortfolioDescription",
  provider_name: "ProviderName",
  add_tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  remove_tags: ["TagKey"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end

#add_tagsArray<Types::Tag>

The tags to add.

Returns:



5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end

#descriptionString

The updated description of the portfolio.

Returns:

  • (String)


5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end

#display_nameString

The name to use for display purposes.

Returns:

  • (String)


5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end

#idString

The portfolio identifier.

Returns:

  • (String)


5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end

#provider_nameString

The updated name of the portfolio provider.

Returns:

  • (String)


5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end

#remove_tagsArray<String>

The tags to remove.

Returns:

  • (Array<String>)


5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5838

class UpdatePortfolioInput < Struct.new(
  :accept_language,
  :id,
  :display_name,
  :description,
  :provider_name,
  :add_tags,
  :remove_tags)
  include Aws::Structure
end