class Google::Apis::DatastreamV1::DestinationConfig

The configuration of the stream destination.

Attributes

destination_connection_profile[RW]

Required. Destination connection profile resource. Format: ‘projects/`project`/ locations/`location`/connectionProfiles/`name“ Corresponds to the JSON property `destinationConnectionProfile` @return [String]

gcs_destination_config[RW]

Google Cloud Storage destination configuration Corresponds to the JSON property ‘gcsDestinationConfig` @return [Google::Apis::DatastreamV1::GcsDestinationConfig]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 228
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_v1/classes.rb, line 233
def update!(**args)
  @destination_connection_profile = args[:destination_connection_profile] if args.key?(:destination_connection_profile)
  @gcs_destination_config = args[:gcs_destination_config] if args.key?(:gcs_destination_config)
end