Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails

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

Details of the failure if anything related to Cmek db fails.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1EncryptionConfigFailureDetails

Returns a new instance of GoogleCloudDataplexV1EncryptionConfigFailureDetails.



4385
4386
4387
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4385

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

Instance Attribute Details

#error_codeString

Output only. The error code for the failure. Corresponds to the JSON property errorCode

Returns:

  • (String)


4377
4378
4379
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4377

def error_code
  @error_code
end

#error_messageString

Output only. The error message will be shown to the user. Set only if the error code is REQUIRE_USER_ACTION. Corresponds to the JSON property errorMessage

Returns:

  • (String)


4383
4384
4385
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4383

def error_message
  @error_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4390
4391
4392
4393
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4390

def update!(**args)
  @error_code = args[:error_code] if args.key?(:error_code)
  @error_message = args[:error_message] if args.key?(:error_message)
end