class Google::Apis::DeploymentmanagerAlpha::CompositeTypesListResponse

A response that returns all Composite Types supported by Deployment Manager

Attributes

composite_types[RW]

Output only. A list of resource composite types supported by Deployment Manager. Corresponds to the JSON property `compositeTypes` @return [Array<Google::Apis::DeploymentmanagerAlpha::CompositeType>]

next_page_token[RW]

A token used to continue a truncated list request. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/deploymentmanager_alpha/classes.rb, line 412
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/deploymentmanager_alpha/classes.rb, line 417
def update!(**args)
  @composite_types = args[:composite_types] if args.key?(:composite_types)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end