Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DatastoreConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Overview

Configuration detail for datastore

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DatastoreConfig

Returns a new instance of GoogleCloudApigeeV1DatastoreConfig.



3035
3036
3037
# File 'lib/google/apis/apigee_v1/classes.rb', line 3035

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bucket_nameString

Name of the Cloud Storage bucket. Required for gcs target_type. Corresponds to the JSON property bucketName

Returns:

  • (String)


3013
3014
3015
# File 'lib/google/apis/apigee_v1/classes.rb', line 3013

def bucket_name
  @bucket_name
end

#dataset_nameString

BigQuery dataset name Required for bigquery target_type. Corresponds to the JSON property datasetName

Returns:

  • (String)


3018
3019
3020
# File 'lib/google/apis/apigee_v1/classes.rb', line 3018

def dataset_name
  @dataset_name
end

#pathString

Path of Cloud Storage bucket Required for gcs target_type. Corresponds to the JSON property path

Returns:

  • (String)


3023
3024
3025
# File 'lib/google/apis/apigee_v1/classes.rb', line 3023

def path
  @path
end

#project_idString

Required. Google Cloud project in which the datastore exists Corresponds to the JSON property projectId

Returns:

  • (String)


3028
3029
3030
# File 'lib/google/apis/apigee_v1/classes.rb', line 3028

def project_id
  @project_id
end

#table_prefixString

Prefix of BigQuery table Required for bigquery target_type. Corresponds to the JSON property tablePrefix

Returns:

  • (String)


3033
3034
3035
# File 'lib/google/apis/apigee_v1/classes.rb', line 3033

def table_prefix
  @table_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3040
3041
3042
3043
3044
3045
3046
# File 'lib/google/apis/apigee_v1/classes.rb', line 3040

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