Class: Google::Apis::DeploymentmanagerV2beta::TypesListResponse

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 Types supported by Deployment Manager

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TypesListResponse

Returns a new instance of TypesListResponse.



2675
2676
2677
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2675

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


2668
2669
2670
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2668

def next_page_token
  @next_page_token
end

#typesArray<Google::Apis::DeploymentmanagerV2beta::Type>

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



2673
2674
2675
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2673

def types
  @types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2680
2681
2682
2683
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2680

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @types = args[:types] if args.key?(:types)
end