Class: Google::Apis::DeploymentmanagerV2::ListTypesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2::ListTypesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2/classes.rb,
generated/google/apis/deploymentmanager_v2/representations.rb,
generated/google/apis/deploymentmanager_v2/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::DeploymentmanagerV2::Type>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTypesResponse
constructor
A new instance of ListTypesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTypesResponse
Returns a new instance of ListTypesResponse
1832 1833 1834 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1832 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
1825 1826 1827 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1825 def next_page_token @next_page_token end |
#types ⇒ Array<Google::Apis::DeploymentmanagerV2::Type>
Output only. A list of resource types supported by Deployment Manager.
Corresponds to the JSON property types
1830 1831 1832 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1830 def types @types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1837 1838 1839 1840 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 1837 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @types = args[:types] if args.key?(:types) end |