Class: Google::Apis::CloudassetV1p4beta1::GcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1p4beta1::GcsDestination
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1p4beta1/classes.rb,
lib/google/apis/cloudasset_v1p4beta1/representations.rb,
lib/google/apis/cloudasset_v1p4beta1/representations.rb
Overview
A Cloud Storage location.
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.
368 369 370 |
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 368 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
Required. The uri of the Cloud Storage object. It's the same uri that is used
by gsutil. For example: "gs://bucket_name/object_name". See Quickstart: Using
the gsutil tool for
examples.
Corresponds to the JSON property uri
366 367 368 |
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 366 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
373 374 375 |
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 373 def update!(**args) @uri = args[:uri] if args.key?(:uri) end |