Class: Google::Apis::StorageV1::HmacKeyMetadata
- Inherits:
-
Object
- Object
- Google::Apis::StorageV1::HmacKeyMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/storage_v1/classes.rb,
lib/google/apis/storage_v1/representations.rb,
lib/google/apis/storage_v1/representations.rb
Overview
JSON template to produce a JSON-style HMAC Key metadata resource.
Instance Attribute Summary collapse
-
#access_id ⇒ String
The ID of the HMAC Key.
-
#etag ⇒ String
HTTP 1.1 Entity tag for the HMAC key.
-
#id ⇒ String
The ID of the HMAC key, including the Project ID and the Access ID.
-
#kind ⇒ String
The kind of item this is.
-
#project_id ⇒ String
Project ID owning the service account to which the key authenticates.
-
#self_link ⇒ String
The link to this resource.
-
#service_account_email ⇒ String
The email address of the key's associated service account.
-
#state ⇒ String
The state of the key.
-
#time_created ⇒ DateTime
The creation time of the HMAC key in RFC 3339 format.
-
#updated ⇒ DateTime
The last modification time of the HMAC key metadata in RFC 3339 format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HmacKeyMetadata
constructor
A new instance of HmacKeyMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HmacKeyMetadata
Returns a new instance of HmacKeyMetadata.
2017 2018 2019 |
# File 'lib/google/apis/storage_v1/classes.rb', line 2017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_id ⇒ String
The ID of the HMAC Key.
Corresponds to the JSON property accessId
1969 1970 1971 |
# File 'lib/google/apis/storage_v1/classes.rb', line 1969 def access_id @access_id end |
#etag ⇒ String
HTTP 1.1 Entity tag for the HMAC key.
Corresponds to the JSON property etag
1974 1975 1976 |
# File 'lib/google/apis/storage_v1/classes.rb', line 1974 def etag @etag end |
#id ⇒ String
The ID of the HMAC key, including the Project ID and the Access ID.
Corresponds to the JSON property id
1979 1980 1981 |
# File 'lib/google/apis/storage_v1/classes.rb', line 1979 def id @id end |
#kind ⇒ String
The kind of item this is. For HMAC Key metadata, this is always storage#
hmacKeyMetadata.
Corresponds to the JSON property kind
1985 1986 1987 |
# File 'lib/google/apis/storage_v1/classes.rb', line 1985 def kind @kind end |
#project_id ⇒ String
Project ID owning the service account to which the key authenticates.
Corresponds to the JSON property projectId
1990 1991 1992 |
# File 'lib/google/apis/storage_v1/classes.rb', line 1990 def project_id @project_id end |
#self_link ⇒ String
The link to this resource.
Corresponds to the JSON property selfLink
1995 1996 1997 |
# File 'lib/google/apis/storage_v1/classes.rb', line 1995 def self_link @self_link end |
#service_account_email ⇒ String
The email address of the key's associated service account.
Corresponds to the JSON property serviceAccountEmail
2000 2001 2002 |
# File 'lib/google/apis/storage_v1/classes.rb', line 2000 def service_account_email @service_account_email end |
#state ⇒ String
The state of the key. Can be one of ACTIVE, INACTIVE, or DELETED.
Corresponds to the JSON property state
2005 2006 2007 |
# File 'lib/google/apis/storage_v1/classes.rb', line 2005 def state @state end |
#time_created ⇒ DateTime
The creation time of the HMAC key in RFC 3339 format.
Corresponds to the JSON property timeCreated
2010 2011 2012 |
# File 'lib/google/apis/storage_v1/classes.rb', line 2010 def time_created @time_created end |
#updated ⇒ DateTime
The last modification time of the HMAC key metadata in RFC 3339 format.
Corresponds to the JSON property updated
2015 2016 2017 |
# File 'lib/google/apis/storage_v1/classes.rb', line 2015 def updated @updated end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 |
# File 'lib/google/apis/storage_v1/classes.rb', line 2022 def update!(**args) @access_id = args[:access_id] if args.key?(:access_id) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @project_id = args[:project_id] if args.key?(:project_id) @self_link = args[:self_link] if args.key?(:self_link) @service_account_email = args[:service_account_email] if args.key?(:service_account_email) @state = args[:state] if args.key?(:state) @time_created = args[:time_created] if args.key?(:time_created) @updated = args[:updated] if args.key?(:updated) end |