class Google::Apis::DatastreamV1alpha1::GcsProfile
Cloud Storage bucket profile.
Attributes
bucket_name[RW]
Required. The full project and resource path for Cloud Storage bucket including the name. Corresponds to the JSON property ‘bucketName` @return [String]
root_path[RW]
The root path inside the Cloud Storage bucket. Corresponds to the JSON property ‘rootPath` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 559 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 564 def update!(**args) @bucket_name = args[:bucket_name] if args.key?(:bucket_name) @root_path = args[:root_path] if args.key?(:root_path) end