Class: Google::Apis::GmailV1::KaclsKeyMetadata
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::KaclsKeyMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gmail_v1/classes.rb,
lib/google/apis/gmail_v1/representations.rb,
lib/google/apis/gmail_v1/representations.rb
Overview
Metadata for private keys managed by an external key access control list service. For details about managing key access, see Google Workspace CSE API Reference.
Instance Attribute Summary collapse
-
#kacls_data ⇒ String
Opaque data generated and used by the key access control list service.
-
#kacls_uri ⇒ String
The URI of the key access control list service that manages the private key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KaclsKeyMetadata
constructor
A new instance of KaclsKeyMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KaclsKeyMetadata
Returns a new instance of KaclsKeyMetadata.
677 678 679 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 677 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kacls_data ⇒ String
Opaque data generated and used by the key access control list service. Maximum
size: 8 KiB.
Corresponds to the JSON property kaclsData
670 671 672 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 670 def kacls_data @kacls_data end |
#kacls_uri ⇒ String
The URI of the key access control list service that manages the private key.
Corresponds to the JSON property kaclsUri
675 676 677 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 675 def kacls_uri @kacls_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
682 683 684 685 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 682 def update!(**args) @kacls_data = args[:kacls_data] if args.key?(:kacls_data) @kacls_uri = args[:kacls_uri] if args.key?(:kacls_uri) end |