Class: Google::Apis::CloudassetV1::OutputConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/representations.rb

Overview

Output configuration for export assets destination.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OutputConfig

Returns a new instance of OutputConfig.



4679
4680
4681
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4679

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bigquery_destinationGoogle::Apis::CloudassetV1::BigQueryDestination

A BigQuery destination for exporting assets to. Corresponds to the JSON property bigqueryDestination



4672
4673
4674
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4672

def bigquery_destination
  @bigquery_destination
end

#gcs_destinationGoogle::Apis::CloudassetV1::GcsDestination

A Cloud Storage location. Corresponds to the JSON property gcsDestination



4677
4678
4679
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4677

def gcs_destination
  @gcs_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4684
4685
4686
4687
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4684

def update!(**args)
  @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
end