Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DatastoreConfig
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DatastoreConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Configuration detail for datastore
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
Name of the Cloud Storage bucket.
-
#dataset_name ⇒ String
BigQuery dataset name Required for
bigquery
target_type. -
#path ⇒ String
Path of Cloud Storage bucket Required for
gcs
target_type. -
#project_id ⇒ String
Required.
-
#table_prefix ⇒ String
Prefix of BigQuery table Required for
bigquery
target_type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1DatastoreConfig
constructor
A new instance of GoogleCloudApigeeV1DatastoreConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1DatastoreConfig
Returns a new instance of GoogleCloudApigeeV1DatastoreConfig.
1716 1717 1718 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1716 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket_name ⇒ String
Name of the Cloud Storage bucket. Required for gcs
target_type.
Corresponds to the JSON property bucketName
1694 1695 1696 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1694 def bucket_name @bucket_name end |
#dataset_name ⇒ String
BigQuery dataset name Required for bigquery
target_type.
Corresponds to the JSON property datasetName
1699 1700 1701 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1699 def dataset_name @dataset_name end |
#path ⇒ String
Path of Cloud Storage bucket Required for gcs
target_type.
Corresponds to the JSON property path
1704 1705 1706 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1704 def path @path end |
#project_id ⇒ String
Required. GCP project in which the datastore exists
Corresponds to the JSON property projectId
1709 1710 1711 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1709 def project_id @project_id end |
#table_prefix ⇒ String
Prefix of BigQuery table Required for bigquery
target_type.
Corresponds to the JSON property tablePrefix
1714 1715 1716 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1714 def table_prefix @table_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1721 1722 1723 1724 1725 1726 1727 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 1721 def update!(**args) @bucket_name = args[:bucket_name] if args.key?(:bucket_name) @dataset_name = args[:dataset_name] if args.key?(:dataset_name) @path = args[:path] if args.key?(:path) @project_id = args[:project_id] if args.key?(:project_id) @table_prefix = args[:table_prefix] if args.key?(:table_prefix) end |