Class: Google::Apis::DataformV1beta1::GcsRepositorySnapshotDestination
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::GcsRepositorySnapshotDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1beta1/classes.rb,
lib/google/apis/dataform_v1beta1/representations.rb,
lib/google/apis/dataform_v1beta1/representations.rb
Overview
Configures the destination for a repository snapshot.
Instance Attribute Summary collapse
-
#repository_snapshot_uri ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsRepositorySnapshotDestination
constructor
A new instance of GcsRepositorySnapshotDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsRepositorySnapshotDestination
Returns a new instance of GcsRepositorySnapshotDestination.
1730 1731 1732 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1730 def initialize(**args) update!(**args) end |
Instance Attribute Details
#repository_snapshot_uri ⇒ String
Optional. The Google Cloud Storage destination to upload the repository
snapshot to. Format: gs://bucket-name/path/.
Corresponds to the JSON property repositorySnapshotUri
1728 1729 1730 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1728 def repository_snapshot_uri @repository_snapshot_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1735 1736 1737 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1735 def update!(**args) @repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri) end |