Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListChangeRequestsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListChangeRequestsResponse

Returns a new instance of GoogleCloudDataplexV1ListChangeRequestsResponse.



8138
8139
8140
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8138

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#change_requestsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1ChangeRequest>

The ChangeRequests from the specified project and location. Corresponds to the JSON property changeRequests



8126
8127
8128
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8126

def change_requests
  @change_requests
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


8131
8132
8133
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8131

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


8136
8137
8138
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8136

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8143
8144
8145
8146
8147
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8143

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