Class: Google::Apis::NetappV1::VerifyKmsConfigResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetappV1::VerifyKmsConfigResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/netapp_v1/classes.rb,
lib/google/apis/netapp_v1/representations.rb,
lib/google/apis/netapp_v1/representations.rb
Overview
VerifyKmsConfigResponse contains the information if the config is correctly and error message.
Instance Attribute Summary collapse
-
#health_error ⇒ String
Output only.
-
#healthy ⇒ Boolean
(also: #healthy?)
Output only.
-
#instructions ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VerifyKmsConfigResponse
constructor
A new instance of VerifyKmsConfigResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VerifyKmsConfigResponse
Returns a new instance of VerifyKmsConfigResponse.
1987 1988 1989 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1987 def initialize(**args) update!(**args) end |
Instance Attribute Details
#health_error ⇒ String
Output only. Error message if config is not healthy.
Corresponds to the JSON property healthError
1973 1974 1975 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1973 def health_error @health_error end |
#healthy ⇒ Boolean Also known as: healthy?
Output only. If the customer key configured correctly to the encrypt volume.
Corresponds to the JSON property healthy
1978 1979 1980 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1978 def healthy @healthy end |
#instructions ⇒ String
Output only. Instructions for the customers to provide the access to the
encryption key.
Corresponds to the JSON property instructions
1985 1986 1987 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1985 def instructions @instructions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1992 1993 1994 1995 1996 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1992 def update!(**args) @health_error = args[:health_error] if args.key?(:health_error) @healthy = args[:healthy] if args.key?(:healthy) @instructions = args[:instructions] if args.key?(:instructions) end |