Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEncryptionConfigsResponse

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

List EncryptionConfigs Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListEncryptionConfigsResponse

Returns a new instance of GoogleCloudDataplexV1ListEncryptionConfigsResponse.



6344
6345
6346
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6344

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

Instance Attribute Details

#encryption_configsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfig>

The list of EncryptionConfigs under the given parent location. Corresponds to the JSON property encryptionConfigs



6331
6332
6333
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6331

def encryption_configs
  @encryption_configs
end

#next_page_tokenString

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

Returns:

  • (String)


6337
6338
6339
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6337

def next_page_token
  @next_page_token
end

#unreachable_locationsArray<String>

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

Returns:

  • (Array<String>)


6342
6343
6344
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6342

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6349
6350
6351
6352
6353
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6349

def update!(**args)
  @encryption_configs = args[:encryption_configs] if args.key?(:encryption_configs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations)
end