Class: Google::Apis::CloudassetV1p7beta1::GoogleCloudAssetV1p7beta1OutputConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1p7beta1::GoogleCloudAssetV1p7beta1OutputConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1p7beta1/classes.rb,
lib/google/apis/cloudasset_v1p7beta1/representations.rb,
lib/google/apis/cloudasset_v1p7beta1/representations.rb
Overview
Output configuration for export assets destination.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::CloudassetV1p7beta1::GoogleCloudAssetV1p7beta1BigQueryDestination
A BigQuery destination for exporting assets to.
-
#gcs_destination ⇒ Google::Apis::CloudassetV1p7beta1::GoogleCloudAssetV1p7beta1GcsDestination
A Cloud Storage location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAssetV1p7beta1OutputConfig
constructor
A new instance of GoogleCloudAssetV1p7beta1OutputConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAssetV1p7beta1OutputConfig
Returns a new instance of GoogleCloudAssetV1p7beta1OutputConfig.
609 610 611 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 609 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::CloudassetV1p7beta1::GoogleCloudAssetV1p7beta1BigQueryDestination
A BigQuery destination for exporting assets to.
Corresponds to the JSON property bigqueryDestination
602 603 604 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 602 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::CloudassetV1p7beta1::GoogleCloudAssetV1p7beta1GcsDestination
A Cloud Storage location.
Corresponds to the JSON property gcsDestination
607 608 609 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 607 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
614 615 616 617 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 614 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |