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.
5110 5111 5112 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5110 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
5102 5103 5104 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5102 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
5108 5109 5110 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5108 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5115 5116 5117 5118 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5115 def update!(**args) @content = args[:content] if args.key?(:content) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |