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.



7943
7944
7945
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7943

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



7931
7932
7933
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7931

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)


7936
7937
7938
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7936

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>)


7941
7942
7943
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7941

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7948
7949
7950
7951
7952
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7948

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