Class: Google::Apis::DeploymentmanagerAlpha::TypesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::TypesListResponse
- 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
-
#next_page_token ⇒ String
A token used to continue a truncated list request.
-
#types ⇒ Array<Google::Apis::DeploymentmanagerAlpha::Type>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TypesListResponse
constructor
A new instance of TypesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_token ⇒ String
A token used to continue a truncated list request.
Corresponds to the JSON property nextPageToken
2739 2740 2741 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2739 def next_page_token @next_page_token end |
#types ⇒ Array<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 |