Class: Google::Apis::CloudassetV1::OutputConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::OutputConfig
- 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
-
#bigquery_destination ⇒ Google::Apis::CloudassetV1::BigQueryDestination
A BigQuery destination for exporting assets to.
-
#gcs_destination ⇒ Google::Apis::CloudassetV1::GcsDestination
A Cloud Storage location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OutputConfig
constructor
A new instance of OutputConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OutputConfig
Returns a new instance of OutputConfig.
4666 4667 4668 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4666 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::CloudassetV1::BigQueryDestination
A BigQuery destination for exporting assets to.
Corresponds to the JSON property bigqueryDestination
4659 4660 4661 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4659 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::CloudassetV1::GcsDestination
A Cloud Storage location.
Corresponds to the JSON property gcsDestination
4664 4665 4666 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4664 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4671 4672 4673 4674 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4671 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |