Class: Google::Apis::VaultV1::CloudStorageFile
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::CloudStorageFile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vault_v1/classes.rb,
lib/google/apis/vault_v1/representations.rb,
lib/google/apis/vault_v1/representations.rb
Overview
An export file on cloud storage
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The cloud storage bucket name of this export file.
-
#md5_hash ⇒ String
The md5 hash of the file.
-
#object_name ⇒ String
The cloud storage object name of this export file.
-
#size ⇒ Fixnum
The size of the export file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudStorageFile
constructor
A new instance of CloudStorageFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudStorageFile
Returns a new instance of CloudStorageFile.
290 291 292 |
# File 'lib/google/apis/vault_v1/classes.rb', line 290 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket_name ⇒ String
The cloud storage bucket name of this export file. Can be used in cloud
storage JSON/XML API, but not to list the bucket contents. Instead, you can
get individual export files by object name.
Corresponds to the JSON property bucketName
272 273 274 |
# File 'lib/google/apis/vault_v1/classes.rb', line 272 def bucket_name @bucket_name end |
#md5_hash ⇒ String
The md5 hash of the file.
Corresponds to the JSON property md5Hash
277 278 279 |
# File 'lib/google/apis/vault_v1/classes.rb', line 277 def md5_hash @md5_hash end |
#object_name ⇒ String
The cloud storage object name of this export file. Can be used in cloud
storage JSON/XML API.
Corresponds to the JSON property objectName
283 284 285 |
# File 'lib/google/apis/vault_v1/classes.rb', line 283 def object_name @object_name end |
#size ⇒ Fixnum
The size of the export file.
Corresponds to the JSON property size
288 289 290 |
# File 'lib/google/apis/vault_v1/classes.rb', line 288 def size @size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
295 296 297 298 299 300 |
# File 'lib/google/apis/vault_v1/classes.rb', line 295 def update!(**args) @bucket_name = args[:bucket_name] if args.key?(:bucket_name) @md5_hash = args[:md5_hash] if args.key?(:md5_hash) @object_name = args[:object_name] if args.key?(:object_name) @size = args[:size] if args.key?(:size) end |