Class: Google::Apis::StorageV1::HmacKey

Inherits:
Object
  • Object
show all
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 resource for Create responses.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ HmacKey

Returns a new instance of HmacKey.



1180
1181
1182
# File 'lib/google/apis/storage_v1/classes.rb', line 1180

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

Instance Attribute Details

#kindString

The kind of item this is. For HMAC keys, this is always storage#hmacKey. Corresponds to the JSON property kind

Returns:

  • (String)


1168
1169
1170
# File 'lib/google/apis/storage_v1/classes.rb', line 1168

def kind
  @kind
end

#metadataGoogle::Apis::StorageV1::HmacKeyMetadata

JSON template to produce a JSON-style HMAC Key metadata resource. Corresponds to the JSON property metadata



1173
1174
1175
# File 'lib/google/apis/storage_v1/classes.rb', line 1173

def 
  @metadata
end

#secretString

HMAC secret key material. Corresponds to the JSON property secret

Returns:

  • (String)


1178
1179
1180
# File 'lib/google/apis/storage_v1/classes.rb', line 1178

def secret
  @secret
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1185
1186
1187
1188
1189
# File 'lib/google/apis/storage_v1/classes.rb', line 1185

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @metadata = args[:metadata] if args.key?(:metadata)
  @secret = args[:secret] if args.key?(:secret)
end