Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1AttestationCredential
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1AttestationCredential
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Information of public key associated with a Chrome browser profile.
Instance Attribute Summary collapse
-
#key_rotation_time ⇒ String
Output only.
-
#key_trust_level ⇒ String
Output only.
-
#key_type ⇒ String
Output only.
-
#public_key ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1AttestationCredential
constructor
A new instance of GoogleChromeManagementVersionsV1AttestationCredential.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1AttestationCredential
Returns a new instance of GoogleChromeManagementVersionsV1AttestationCredential.
4410 4411 4412 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4410 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key_rotation_time ⇒ String
Output only. Latest rotation timestamp of the public key rotation.
Corresponds to the JSON property keyRotationTime
4392 4393 4394 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4392 def key_rotation_time @key_rotation_time end |
#key_trust_level ⇒ String
Output only. Trust level of the public key.
Corresponds to the JSON property keyTrustLevel
4397 4398 4399 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4397 def key_trust_level @key_trust_level end |
#key_type ⇒ String
Output only. Type of the public key.
Corresponds to the JSON property keyType
4402 4403 4404 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4402 def key_type @key_type end |
#public_key ⇒ String
Output only. Value of the public key.
Corresponds to the JSON property publicKey
NOTE: Values are automatically base64 encoded/decoded in the client library.
4408 4409 4410 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4408 def public_key @public_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4415 4416 4417 4418 4419 4420 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4415 def update!(**args) @key_rotation_time = args[:key_rotation_time] if args.key?(:key_rotation_time) @key_trust_level = args[:key_trust_level] if args.key?(:key_trust_level) @key_type = args[:key_type] if args.key?(:key_type) @public_key = args[:public_key] if args.key?(:public_key) end |