Class: Google::Apis::CloudassetV1::OutputConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::OutputConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/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.
2787 2788 2789 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2787 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
2780 2781 2782 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2780 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::CloudassetV1::GcsDestination
A Cloud Storage location.
Corresponds to the JSON property gcsDestination
2785 2786 2787 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2785 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2792 2793 2794 2795 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2792 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |