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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/deploymentmanager_alpha/classes.rb,
lib/google/apis/deploymentmanager_alpha/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ TypesListResponse

Returns a new instance of TypesListResponse.



2796
2797
2798
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2796

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)


2789
2790
2791
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2789

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



2794
2795
2796
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2794

def types
  @types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2801
2802
2803
2804
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2801

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