Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListChangeRequestsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListChangeRequestsResponse
- 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
Response message for ListChangeRequests.
Instance Attribute Summary collapse
-
#change_requests ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1ChangeRequest>
The ChangeRequests from the specified project and location.
-
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListChangeRequestsResponse
constructor
A new instance of GoogleCloudDataplexV1ListChangeRequestsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListChangeRequestsResponse
Returns a new instance of GoogleCloudDataplexV1ListChangeRequestsResponse.
8183 8184 8185 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#change_requests ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1ChangeRequest>
The ChangeRequests from the specified project and location.
Corresponds to the JSON property changeRequests
8171 8172 8173 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8171 def change_requests @change_requests end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
Corresponds to the JSON property nextPageToken
8176 8177 8178 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8176 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
8181 8182 8183 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8181 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8188 8189 8190 8191 8192 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8188 def update!(**args) @change_requests = args[:change_requests] if args.key?(:change_requests) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |