Class: Google::Apis::RedisV1::GcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::RedisV1::GcsDestination
- 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
-
#uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsDestination
constructor
A new instance of GcsDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsDestination
Returns a new instance of GcsDestination.
1204 1205 1206 |
# File 'lib/google/apis/redis_v1/classes.rb', line 1204 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
Required. Data destination URI (e.g. 'gs://my_bucket/my_object'). Existing
files will be overwritten.
Corresponds to the JSON property uri
1202 1203 1204 |
# File 'lib/google/apis/redis_v1/classes.rb', line 1202 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1209 1210 1211 |
# File 'lib/google/apis/redis_v1/classes.rb', line 1209 def update!(**args) @uri = args[:uri] if args.key?(:uri) end |