Class: Google::Apis::DataformV1::ListReleaseConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1::ListReleaseConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1/classes.rb,
lib/google/apis/dataform_v1/representations.rb,
lib/google/apis/dataform_v1/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::DataformV1::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.
2003 2004 2005 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2003 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
1991 1992 1993 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 1991 def next_page_token @next_page_token end |
#release_configs ⇒ Array<Google::Apis::DataformV1::ReleaseConfig>
List of release configs.
Corresponds to the JSON property releaseConfigs
1996 1997 1998 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 1996 def release_configs @release_configs end |
#unreachable ⇒ Array<String>
Locations which could not be reached.
Corresponds to the JSON property unreachable
2001 2002 2003 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2001 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2008 2009 2010 2011 2012 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2008 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 |