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_tokento 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.
1232 1233 1234 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1232 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
1220 1221 1222 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1220 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
1225 1226 1227 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1225 def release_configs @release_configs end |
#unreachable ⇒ Array<String>
Locations which could not be reached.
Corresponds to the JSON property unreachable
1230 1231 1232 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1230 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1237 1238 1239 1240 1241 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1237 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 |