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

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

Overview

Describes the environment in which a Dataflow Job runs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Environment

Returns a new instance of Environment.



1286
1287
1288
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1286

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)


1179
1180
1181
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1179

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)


1186
1187
1188
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1186

def dataset
  @dataset
end

#debug_optionsGoogle::Apis::DataflowV1b3::DebugOptions

Describes any options that have an effect on the debugging of pipelines. Corresponds to the JSON property debugOptions



1191
1192
1193
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1191

def debug_options
  @debug_options
end

#experimentsArray<String>

The list of experiments to enable. This field should be used for SDK related experiments and not for service related experiments. The proper field for service related experiments is service_options. Corresponds to the JSON property experiments

Returns:

  • (Array<String>)


1198
1199
1200
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1198

def experiments
  @experiments
end

#flex_resource_scheduling_goalString

Which Flexible Resource Scheduling mode to run in. Corresponds to the JSON property flexResourceSchedulingGoal

Returns:

  • (String)


1203
1204
1205
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1203

def flex_resource_scheduling_goal
  @flex_resource_scheduling_goal
end

#internal_experimentsHash<String,Object>

Experimental settings. Corresponds to the JSON property internalExperiments

Returns:

  • (Hash<String,Object>)


1208
1209
1210
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1208

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>)


1215
1216
1217
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1215

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)


1220
1221
1222
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1220

def 
  @service_account_email
end

#service_kms_key_nameString

If set, contains the Cloud KMS key identifier used to encrypt data at rest, AKA a Customer Managed Encryption Key (CMEK). Format: projects/PROJECT_ID/ locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY Corresponds to the JSON property serviceKmsKeyName

Returns:

  • (String)


1227
1228
1229
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1227

def service_kms_key_name
  @service_kms_key_name
end

#service_optionsArray<String>

The list of service options to enable. This field should be used for service related experiments only. These experiments, when graduating to GA, should be replaced by dedicated fields or become default (i.e. always on). Corresponds to the JSON property serviceOptions

Returns:

  • (Array<String>)


1234
1235
1236
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1234

def service_options
  @service_options
end

#shuffle_modeString

Output only. The shuffle mode used for the job. Corresponds to the JSON property shuffleMode

Returns:

  • (String)


1239
1240
1241
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1239

def shuffle_mode
  @shuffle_mode
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)


1250
1251
1252
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1250

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>)


1255
1256
1257
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1255

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>)


1261
1262
1263
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1261

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



1267
1268
1269
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1267

def worker_pools
  @worker_pools
end

#worker_regionString

The Compute Engine region (https://cloud.google.com/compute/docs/regions-zones/ regions-zones) in which worker processing should occur, e.g. "us-west1". Mutually exclusive with worker_zone. If neither worker_region nor worker_zone is specified, default to the control plane's region. Corresponds to the JSON property workerRegion

Returns:

  • (String)


1275
1276
1277
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1275

def worker_region
  @worker_region
end

#worker_zoneString

The Compute Engine zone (https://cloud.google.com/compute/docs/regions-zones/ regions-zones) in which worker processing should occur, e.g. "us-west1-a". Mutually exclusive with worker_region. If neither worker_region nor worker_zone is specified, a zone in the control plane's region is chosen based on available capacity. Corresponds to the JSON property workerZone

Returns:

  • (String)


1284
1285
1286
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1284

def worker_zone
  @worker_zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1291

def update!(**args)
  @cluster_manager_api_service = args[:cluster_manager_api_service] if args.key?(:cluster_manager_api_service)
  @dataset = args[:dataset] if args.key?(:dataset)
  @debug_options = args[:debug_options] if args.key?(:debug_options)
  @experiments = args[:experiments] if args.key?(:experiments)
  @flex_resource_scheduling_goal = args[:flex_resource_scheduling_goal] if args.key?(:flex_resource_scheduling_goal)
  @internal_experiments = args[:internal_experiments] if args.key?(:internal_experiments)
  @sdk_pipeline_options = args[:sdk_pipeline_options] if args.key?(:sdk_pipeline_options)
  @service_account_email = args[:service_account_email] if args.key?(:service_account_email)
  @service_kms_key_name = args[:service_kms_key_name] if args.key?(:service_kms_key_name)
  @service_options = args[:service_options] if args.key?(:service_options)
  @shuffle_mode = args[:shuffle_mode] if args.key?(:shuffle_mode)
  @temp_storage_prefix = args[:temp_storage_prefix] if args.key?(:temp_storage_prefix)
  @user_agent = args[:user_agent] if args.key?(:user_agent)
  @version = args[:version] if args.key?(:version)
  @worker_pools = args[:worker_pools] if args.key?(:worker_pools)
  @worker_region = args[:worker_region] if args.key?(:worker_region)
  @worker_zone = args[:worker_zone] if args.key?(:worker_zone)
end