class Google::Apis::DatastreamV1alpha1::DestinationConfig
The configuration of the stream destination.
Attributes
destination_connection_profile_name[RW]
Required. Destination connection profile identifier. Corresponds to the JSON property ‘destinationConnectionProfileName` @return [String]
gcs_destination_config[RW]
Google
Cloud Storage destination configuration Corresponds to the JSON property ‘gcsDestinationConfig` @return [Google::Apis::DatastreamV1alpha1::GcsDestinationConfig]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 232 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 237 def update!(**args) @destination_connection_profile_name = args[:destination_connection_profile_name] if args.key?(:destination_connection_profile_name) @gcs_destination_config = args[:gcs_destination_config] if args.key?(:gcs_destination_config) end