Class: Google::Apis::DataformV1beta1::ListReleaseConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::ListReleaseConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1beta1/classes.rb,
lib/google/apis/dataform_v1beta1/representations.rb,
lib/google/apis/dataform_v1beta1/representations.rb
Overview
ListReleaseConfigs
response message.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#release_configs ⇒ Array<Google::Apis::DataformV1beta1::ReleaseConfig>
List of release configs.
-
#unreachable ⇒ Array<String>
Locations which could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListReleaseConfigsResponse
constructor
A new instance of ListReleaseConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListReleaseConfigsResponse
Returns a new instance of ListReleaseConfigsResponse.
1374 1375 1376 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1374 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1362 1363 1364 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1362 def next_page_token @next_page_token end |
#release_configs ⇒ Array<Google::Apis::DataformV1beta1::ReleaseConfig>
List of release configs.
Corresponds to the JSON property releaseConfigs
1367 1368 1369 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1367 def release_configs @release_configs end |
#unreachable ⇒ Array<String>
Locations which could not be reached.
Corresponds to the JSON property unreachable
1372 1373 1374 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1372 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1379 1380 1381 1382 1383 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1379 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @release_configs = args[:release_configs] if args.key?(:release_configs) @unreachable = args[:unreachable] if args.key?(:unreachable) end |