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

Constructor Details

#initialize(**args) ⇒ TypesListResponse

Returns a new instance of TypesListResponse.



2564
2565
2566
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2564

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)


2557
2558
2559
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2557

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



2562
2563
2564
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2562

def types
  @types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2569
2570
2571
2572
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2569

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