Class: Google::Apis::DeploymentmanagerV2beta::CompositeTypesListResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/deploymentmanager_v2beta/classes.rb,
lib/google/apis/deploymentmanager_v2beta/representations.rb,
lib/google/apis/deploymentmanager_v2beta/representations.rb

Overview

A response that returns all Composite Types supported by Deployment Manager

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CompositeTypesListResponse

Returns a new instance of CompositeTypesListResponse.



480
481
482
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 480

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#composite_typesArray<Google::Apis::DeploymentmanagerV2beta::CompositeType>

Output only. A list of resource composite types supported by Deployment Manager. Corresponds to the JSON property compositeTypes



473
474
475
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 473

def composite_types
  @composite_types
end

#next_page_tokenString

A token used to continue a truncated list request. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


478
479
480
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 478

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



485
486
487
488
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 485

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