class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DatastoreConfig
Configuration detail for datastore
Attributes
bucket_name[RW]
Name of the Cloud Storage bucket. Required for `gcs` target_type. Corresponds to the JSON property `bucketName` @return [String]
dataset_name[RW]
BigQuery dataset name Required for `bigquery` target_type. Corresponds to the JSON property `datasetName` @return [String]
path[RW]
Path of Cloud Storage bucket Required for `gcs` target_type. Corresponds to the JSON property `path` @return [String]
project_id[RW]
Required. GCP project in which the datastore exists Corresponds to the JSON property `projectId` @return [String]
table_prefix[RW]
Prefix of BigQuery table Required for `bigquery` target_type. Corresponds to the JSON property `tablePrefix` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1907 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 1912 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