Class: Google::Apis::RedisV1::GcsDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb

Overview

The Cloud Storage location for the output content

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GcsDestination

Returns a new instance of GcsDestination.



1301
1302
1303
# File 'lib/google/apis/redis_v1/classes.rb', line 1301

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

Instance Attribute Details

#uriString

Required. Data destination URI (e.g. 'gs://my_bucket/my_object'). Existing files will be overwritten. Corresponds to the JSON property uri

Returns:

  • (String)


1299
1300
1301
# File 'lib/google/apis/redis_v1/classes.rb', line 1299

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1306
1307
1308
# File 'lib/google/apis/redis_v1/classes.rb', line 1306

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