Class: Google::Apis::AlloydbV1beta::GcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1beta::GcsDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1beta/classes.rb,
lib/google/apis/alloydb_v1beta/representations.rb,
lib/google/apis/alloydb_v1beta/representations.rb
Overview
Destination for Export. Export will be done to cloud storage.
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.
1081 1082 1083 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1081 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
Required. The path to the file in Google Cloud Storage where the export will
be stored. The URI is in the form gs://bucketName/fileName. If the file
already exists, the request succeeds, but the operation fails.
Corresponds to the JSON property uri
1079 1080 1081 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1079 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1086 1087 1088 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1086 def update!(**args) @uri = args[:uri] if args.key?(:uri) end |