Class: Google::Apis::ConfigV1::ListDeploymentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ConfigV1::ListDeploymentsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/config_v1/classes.rb,
lib/google/apis/config_v1/representations.rb,
lib/google/apis/config_v1/representations.rb
Instance Attribute Summary collapse
-
#deployments ⇒ Array<Google::Apis::ConfigV1::Deployment>
List of Deployments.
-
#next_page_token ⇒ String
Token to be supplied to the next ListDeployments request via
page_tokento obtain the next set of results. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDeploymentsResponse
constructor
A new instance of ListDeploymentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDeploymentsResponse
Returns a new instance of ListDeploymentsResponse.
1173 1174 1175 |
# File 'lib/google/apis/config_v1/classes.rb', line 1173 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployments ⇒ Array<Google::Apis::ConfigV1::Deployment>
List of Deployments.
Corresponds to the JSON property deployments
1160 1161 1162 |
# File 'lib/google/apis/config_v1/classes.rb', line 1160 def deployments @deployments end |
#next_page_token ⇒ String
Token to be supplied to the next ListDeployments request via page_token to
obtain the next set of results.
Corresponds to the JSON property nextPageToken
1166 1167 1168 |
# File 'lib/google/apis/config_v1/classes.rb', line 1166 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
1171 1172 1173 |
# File 'lib/google/apis/config_v1/classes.rb', line 1171 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1178 1179 1180 1181 1182 |
# File 'lib/google/apis/config_v1/classes.rb', line 1178 def update!(**args) @deployments = args[:deployments] if args.key?(:deployments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |