Class: Google::Apis::VaultV1::CloudStorageFile

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_nameString

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

Returns:

  • (String)


272
273
274
# File 'lib/google/apis/vault_v1/classes.rb', line 272

def bucket_name
  @bucket_name
end

#md5_hashString

The md5 hash of the file. Corresponds to the JSON property md5Hash

Returns:

  • (String)


277
278
279
# File 'lib/google/apis/vault_v1/classes.rb', line 277

def md5_hash
  @md5_hash
end

#object_nameString

The cloud storage object name of this export file. Can be used in cloud storage JSON/XML API. Corresponds to the JSON property objectName

Returns:

  • (String)


283
284
285
# File 'lib/google/apis/vault_v1/classes.rb', line 283

def object_name
  @object_name
end

#sizeFixnum

The size of the export file. Corresponds to the JSON property size

Returns:

  • (Fixnum)


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