Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainBindingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainBindingsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
List DataDomainBindings response.
Instance Attribute Summary collapse
-
#data_domain_bindings ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding>
DataDomainBindings under the given parent.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataDomainBindingsResponse
constructor
A new instance of GoogleCloudDataplexV1ListDataDomainBindingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataDomainBindingsResponse
Returns a new instance of GoogleCloudDataplexV1ListDataDomainBindingsResponse.
8254 8255 8256 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_domain_bindings ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomainBinding>
DataDomainBindings under the given parent.
Corresponds to the JSON property dataDomainBindings
8247 8248 8249 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8247 def data_domain_bindings @data_domain_bindings end |
#next_page_token ⇒ String
Token to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
8252 8253 8254 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8252 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8259 8260 8261 8262 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8259 def update!(**args) @data_domain_bindings = args[:data_domain_bindings] if args.key?(:data_domain_bindings) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |