Class: Google::Apis::DataflowV1b3::Environment

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

Overview

Describes the environment in which a Dataflow Job runs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Environment

Returns a new instance of Environment



216
217
218
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 216

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

Instance Attribute Details

#cluster_manager_api_serviceString

The type of cluster manager API to use. If unknown or unspecified, the service will attempt to choose a reasonable default. This should be in the form of the API service name, e.g. "compute.googleapis.com". Corresponds to the JSON property clusterManagerApiService

Returns:

  • (String)


193
194
195
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 193

def cluster_manager_api_service
  @cluster_manager_api_service
end

#datasetString

The dataset for the current project where various workflow related tables are stored. The supported resource type is: Google BigQuery: bigquery.googleapis.com/dataset Corresponds to the JSON property dataset

Returns:

  • (String)


151
152
153
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 151

def dataset
  @dataset
end

#experimentsArray<String>

The list of experiments to enable. Corresponds to the JSON property experiments

Returns:

  • (Array<String>)


156
157
158
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 156

def experiments
  @experiments
end

#internal_experimentsHash<String,Object>

Experimental settings. Corresponds to the JSON property internalExperiments

Returns:

  • (Hash<String,Object>)


161
162
163
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 161

def internal_experiments
  @internal_experiments
end

#sdk_pipeline_optionsHash<String,Object>

The Cloud Dataflow SDK pipeline options specified by the user. These options are passed through the service and are used to recreate the SDK pipeline options on the worker in a language agnostic and platform independent way. Corresponds to the JSON property sdkPipelineOptions

Returns:

  • (Hash<String,Object>)


185
186
187
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 185

def sdk_pipeline_options
  @sdk_pipeline_options
end

#service_account_emailString

Identity to run virtual machines as. Defaults to the default account. Corresponds to the JSON property serviceAccountEmail

Returns:

  • (String)


172
173
174
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 172

def 
  @service_account_email
end

#temp_storage_prefixString

The prefix of the resources the system should use for temporary storage. The system will append the suffix "/temp-JOBNAME to this resource prefix, where JOBNAME is the value of the job_name field. The resulting bucket and object prefix is used as the prefix of the resources used to store temporary data needed during the job execution. NOTE: This will override the value in taskrunner_settings. The supported resource type is: Google Cloud Storage: storage.googleapis.com/bucket/object bucket.storage.googleapis.com/object Corresponds to the JSON property tempStoragePrefix

Returns:

  • (String)


208
209
210
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 208

def temp_storage_prefix
  @temp_storage_prefix
end

#user_agentHash<String,Object>

A description of the process that generated the request. Corresponds to the JSON property userAgent

Returns:

  • (Hash<String,Object>)


177
178
179
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 177

def user_agent
  @user_agent
end

#versionHash<String,Object>

A structure describing which components and their versions of the service are required in order to run the job. Corresponds to the JSON property version

Returns:

  • (Hash<String,Object>)


167
168
169
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 167

def version
  @version
end

#worker_poolsArray<Google::Apis::DataflowV1b3::WorkerPool>

The worker pools. At least one "harness" worker pool must be specified in order for the job to have workers. Corresponds to the JSON property workerPools



214
215
216
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 214

def worker_pools
  @worker_pools
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



221
222
223
224
225
226
227
228
229
230
231
232
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 221

def update!(**args)
  @dataset = args[:dataset] if args.key?(:dataset)
  @experiments = args[:experiments] if args.key?(:experiments)
  @internal_experiments = args[:internal_experiments] if args.key?(:internal_experiments)
  @version = args[:version] if args.key?(:version)
  @service_account_email = args[:service_account_email] if args.key?(:service_account_email)
  @user_agent = args[:user_agent] if args.key?(:user_agent)
  @sdk_pipeline_options = args[:sdk_pipeline_options] if args.key?(:sdk_pipeline_options)
  @cluster_manager_api_service = args[:cluster_manager_api_service] if args.key?(:cluster_manager_api_service)
  @temp_storage_prefix = args[:temp_storage_prefix] if args.key?(:temp_storage_prefix)
  @worker_pools = args[:worker_pools] if args.key?(:worker_pools)
end