Class: Google::Apis::DeploymentmanagerAlpha::TypesListResponse

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

Overview

A response that returns all Types supported by Deployment Manager

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TypesListResponse

Returns a new instance of TypesListResponse.



2746
2747
2748
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2746

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)


2739
2740
2741
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2739

def next_page_token
  @next_page_token
end

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

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



2744
2745
2746
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2744

def types
  @types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2751
2752
2753
2754
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2751

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