Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListContentResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListContentResponse
- 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 content response.
Instance Attribute Summary collapse
-
#content ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Content>
Content under the given parent lake.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListContentResponse
constructor
A new instance of GoogleCloudDataplexV1ListContentResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListContentResponse
Returns a new instance of GoogleCloudDataplexV1ListContentResponse.
5628 5629 5630 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5628 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Content>
Content under the given parent lake.
Corresponds to the JSON property content
5620 5621 5622 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5620 def content @content end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
5626 5627 5628 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5626 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5633 5634 5635 5636 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5633 def update!(**args) @content = args[:content] if args.key?(:content) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |