Class: Google::Apis::RedisV1::GcsSource
- Inherits:
-
Object
- Object
- Google::Apis::RedisV1::GcsSource
- 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 input content
Instance Attribute Summary collapse
-
#uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsSource
constructor
A new instance of GcsSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsSource
Returns a new instance of GcsSource.
1223 1224 1225 |
# File 'lib/google/apis/redis_v1/classes.rb', line 1223 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
Required. Source data URI. (e.g. 'gs://my_bucket/my_object').
Corresponds to the JSON property uri
1221 1222 1223 |
# File 'lib/google/apis/redis_v1/classes.rb', line 1221 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1228 1229 1230 |
# File 'lib/google/apis/redis_v1/classes.rb', line 1228 def update!(**args) @uri = args[:uri] if args.key?(:uri) end |