pulumi-gcp 7.17.0a1712402830__py3-none-any.whl → 7.18.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/apphub/__init__.py +1 -0
  3. pulumi_gcp/apphub/get_application.py +220 -0
  4. pulumi_gcp/apphub/outputs.py +214 -0
  5. pulumi_gcp/applicationintegration/__init__.py +10 -0
  6. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  7. pulumi_gcp/applicationintegration/client.py +574 -0
  8. pulumi_gcp/applicationintegration/outputs.py +122 -0
  9. pulumi_gcp/bigquery/_inputs.py +16 -0
  10. pulumi_gcp/bigquery/outputs.py +14 -0
  11. pulumi_gcp/bigquery/routine.py +98 -0
  12. pulumi_gcp/billing/project_info.py +4 -4
  13. pulumi_gcp/cloudquota/__init__.py +2 -0
  14. pulumi_gcp/cloudquota/_inputs.py +131 -0
  15. pulumi_gcp/cloudquota/outputs.py +118 -0
  16. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  17. pulumi_gcp/cloudrunv2/_inputs.py +73 -0
  18. pulumi_gcp/cloudrunv2/outputs.py +126 -0
  19. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  20. pulumi_gcp/compute/network_endpoint.py +8 -0
  21. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  22. pulumi_gcp/compute/region_backend_service.py +28 -0
  23. pulumi_gcp/compute/target_instance.py +4 -4
  24. pulumi_gcp/config/__init__.pyi +2 -0
  25. pulumi_gcp/config/vars.py +4 -0
  26. pulumi_gcp/container/_inputs.py +17 -1
  27. pulumi_gcp/container/cluster.py +47 -0
  28. pulumi_gcp/container/get_cluster.py +11 -1
  29. pulumi_gcp/container/outputs.py +27 -2
  30. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  31. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  32. pulumi_gcp/dataplex/task.py +16 -16
  33. pulumi_gcp/dataproc/_inputs.py +71 -0
  34. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  35. pulumi_gcp/dataproc/metastore_service.py +120 -0
  36. pulumi_gcp/dataproc/outputs.py +128 -0
  37. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  38. pulumi_gcp/firestore/backup_schedule.py +23 -23
  39. pulumi_gcp/firestore/field.py +4 -4
  40. pulumi_gcp/gkehub/membership_binding.py +6 -6
  41. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  42. pulumi_gcp/gkehub/namespace.py +4 -4
  43. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  44. pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
  45. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  46. pulumi_gcp/kms/_inputs.py +46 -0
  47. pulumi_gcp/kms/crypto_key.py +54 -0
  48. pulumi_gcp/kms/crypto_key_version.py +54 -0
  49. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  50. pulumi_gcp/kms/outputs.py +54 -0
  51. pulumi_gcp/looker/instance.py +20 -30
  52. pulumi_gcp/orgpolicy/policy.py +2 -2
  53. pulumi_gcp/provider.py +20 -0
  54. pulumi_gcp/pubsub/subscription.py +4 -4
  55. pulumi_gcp/redis/cluster.py +91 -0
  56. pulumi_gcp/storage/bucket.py +28 -0
  57. pulumi_gcp/storage/get_bucket.py +17 -2
  58. pulumi_gcp/vertex/__init__.py +1 -0
  59. pulumi_gcp/vertex/_inputs.py +169 -0
  60. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  61. pulumi_gcp/vertex/outputs.py +194 -0
  62. pulumi_gcp/vpcaccess/connector.py +77 -28
  63. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.18.0.dist-info}/METADATA +1 -1
  64. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.18.0.dist-info}/RECORD +66 -58
  65. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.18.0.dist-info}/WHEEL +0 -0
  66. {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.18.0.dist-info}/top_level.txt +0 -0
@@ -44,12 +44,11 @@ class FlexTemplateJobArgs:
44
44
  Template.
45
45
 
46
46
  - - -
47
- :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
48
- :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling
49
- :param pulumi.Input[bool] enable_streaming_engine: Indicates if the job should use the streaming engine feature.
50
- :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
51
- :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is:
52
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
47
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
48
+ :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling.
49
+ :param pulumi.Input[bool] enable_streaming_engine: Immutable. Indicates if the job should use the streaming engine feature.
50
+ :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
51
+ :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
53
52
  :param pulumi.Input[Mapping[str, Any]] labels: User labels to be specified for the job. Keys and values
54
53
  should follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions)
55
54
  page. **Note**: This field is marked as deprecated as the API does not currently
@@ -59,11 +58,10 @@ class FlexTemplateJobArgs:
59
58
  labels will be ignored to prevent diffs on re-apply.
60
59
  :param pulumi.Input[str] launcher_machine_type: The machine type to use for launching the job. The default is n1-standard-1.
61
60
  :param pulumi.Input[str] machine_type: The machine type to use for the job.
62
- :param pulumi.Input[int] max_workers: The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
63
- 1000.
64
- :param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
61
+ :param pulumi.Input[int] max_workers: Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
62
+ :param pulumi.Input[str] name: Immutable. A unique name for the resource, required by Dataflow.
65
63
  :param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
66
- :param pulumi.Input[int] num_workers: The initial number of Google Compute Engine instances for the job.
64
+ :param pulumi.Input[int] num_workers: Immutable. The initial number of Google Compute Engine instances for the job.
67
65
  :param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of
68
66
  deletion during `pulumi destroy`. See above note.
69
67
  :param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be passed to the Dataflow job (as
@@ -71,18 +69,16 @@ class FlexTemplateJobArgs:
71
69
  such as `serviceAccount`, `workerMachineType`, etc can be specified here.
72
70
  :param pulumi.Input[str] project: The project in which the resource belongs. If it is not
73
71
  provided, the provider project is used.
74
- :param pulumi.Input[str] region: The region in which the created job should run.
75
- :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
76
- the SDK. Note this field is only valid for portable pipelines.
72
+ :param pulumi.Input[str] region: Immutable. The region in which the created job should run.
73
+ :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
77
74
  :param pulumi.Input[str] service_account_email: Service account email to run the workers as.
78
75
  :param pulumi.Input[bool] skip_wait_on_job_termination: If true, treat DRAINING and CANCELLING as terminal job states and do not wait for further changes before removing from
79
76
  terraform state and moving on. WARNING: this will lead to job name conflicts if you do not ensure that the job names are
80
77
  different, e.g. by embedding a release ID or by using a random_id.
81
78
  :param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
82
- :param pulumi.Input[str] subnetwork: Compute Engine subnetwork for launching instances to run your pipeline.
79
+ :param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
83
80
  :param pulumi.Input[str] temp_location: The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with gs://.
84
- :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
85
- corresponding name prefixes of the new job.
81
+ :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
86
82
  """
87
83
  pulumi.set(__self__, "container_spec_gcs_path", container_spec_gcs_path)
88
84
  if additional_experiments is not None:
@@ -151,7 +147,7 @@ class FlexTemplateJobArgs:
151
147
  @pulumi.getter(name="additionalExperiments")
152
148
  def additional_experiments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
153
149
  """
154
- List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
150
+ List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
155
151
  """
156
152
  return pulumi.get(self, "additional_experiments")
157
153
 
@@ -163,7 +159,7 @@ class FlexTemplateJobArgs:
163
159
  @pulumi.getter(name="autoscalingAlgorithm")
164
160
  def autoscaling_algorithm(self) -> Optional[pulumi.Input[str]]:
165
161
  """
166
- The algorithm to use for autoscaling
162
+ The algorithm to use for autoscaling.
167
163
  """
168
164
  return pulumi.get(self, "autoscaling_algorithm")
169
165
 
@@ -175,7 +171,7 @@ class FlexTemplateJobArgs:
175
171
  @pulumi.getter(name="enableStreamingEngine")
176
172
  def enable_streaming_engine(self) -> Optional[pulumi.Input[bool]]:
177
173
  """
178
- Indicates if the job should use the streaming engine feature.
174
+ Immutable. Indicates if the job should use the streaming engine feature.
179
175
  """
180
176
  return pulumi.get(self, "enable_streaming_engine")
181
177
 
@@ -187,7 +183,7 @@ class FlexTemplateJobArgs:
187
183
  @pulumi.getter(name="ipConfiguration")
188
184
  def ip_configuration(self) -> Optional[pulumi.Input[str]]:
189
185
  """
190
- The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
186
+ The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
191
187
  """
192
188
  return pulumi.get(self, "ip_configuration")
193
189
 
@@ -199,8 +195,7 @@ class FlexTemplateJobArgs:
199
195
  @pulumi.getter(name="kmsKeyName")
200
196
  def kms_key_name(self) -> Optional[pulumi.Input[str]]:
201
197
  """
202
- The name for the Cloud KMS key for the job. Key format is:
203
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
198
+ The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
204
199
  """
205
200
  return pulumi.get(self, "kms_key_name")
206
201
 
@@ -254,8 +249,7 @@ class FlexTemplateJobArgs:
254
249
  @pulumi.getter(name="maxWorkers")
255
250
  def max_workers(self) -> Optional[pulumi.Input[int]]:
256
251
  """
257
- The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
258
- 1000.
252
+ Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
259
253
  """
260
254
  return pulumi.get(self, "max_workers")
261
255
 
@@ -267,7 +261,7 @@ class FlexTemplateJobArgs:
267
261
  @pulumi.getter
268
262
  def name(self) -> Optional[pulumi.Input[str]]:
269
263
  """
270
- A unique name for the resource, required by Dataflow.
264
+ Immutable. A unique name for the resource, required by Dataflow.
271
265
  """
272
266
  return pulumi.get(self, "name")
273
267
 
@@ -291,7 +285,7 @@ class FlexTemplateJobArgs:
291
285
  @pulumi.getter(name="numWorkers")
292
286
  def num_workers(self) -> Optional[pulumi.Input[int]]:
293
287
  """
294
- The initial number of Google Compute Engine instances for the job.
288
+ Immutable. The initial number of Google Compute Engine instances for the job.
295
289
  """
296
290
  return pulumi.get(self, "num_workers")
297
291
 
@@ -343,7 +337,7 @@ class FlexTemplateJobArgs:
343
337
  @pulumi.getter
344
338
  def region(self) -> Optional[pulumi.Input[str]]:
345
339
  """
346
- The region in which the created job should run.
340
+ Immutable. The region in which the created job should run.
347
341
  """
348
342
  return pulumi.get(self, "region")
349
343
 
@@ -355,8 +349,7 @@ class FlexTemplateJobArgs:
355
349
  @pulumi.getter(name="sdkContainerImage")
356
350
  def sdk_container_image(self) -> Optional[pulumi.Input[str]]:
357
351
  """
358
- Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
359
- the SDK. Note this field is only valid for portable pipelines.
352
+ Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
360
353
  """
361
354
  return pulumi.get(self, "sdk_container_image")
362
355
 
@@ -406,7 +399,7 @@ class FlexTemplateJobArgs:
406
399
  @pulumi.getter
407
400
  def subnetwork(self) -> Optional[pulumi.Input[str]]:
408
401
  """
409
- Compute Engine subnetwork for launching instances to run your pipeline.
402
+ The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
410
403
  """
411
404
  return pulumi.get(self, "subnetwork")
412
405
 
@@ -430,8 +423,7 @@ class FlexTemplateJobArgs:
430
423
  @pulumi.getter(name="transformNameMapping")
431
424
  def transform_name_mapping(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
432
425
  """
433
- Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
434
- corresponding name prefixes of the new job.
426
+ Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
435
427
  """
436
428
  return pulumi.get(self, "transform_name_mapping")
437
429
 
@@ -474,19 +466,18 @@ class _FlexTemplateJobState:
474
466
  type: Optional[pulumi.Input[str]] = None):
475
467
  """
476
468
  Input properties used for looking up and filtering FlexTemplateJob resources.
477
- :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
478
- :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling
469
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
470
+ :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling.
479
471
  :param pulumi.Input[str] container_spec_gcs_path: The GCS path to the Dataflow job Flex
480
472
  Template.
481
473
 
482
474
  - - -
483
475
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
484
476
  clients and services.
485
- :param pulumi.Input[bool] enable_streaming_engine: Indicates if the job should use the streaming engine feature.
486
- :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
477
+ :param pulumi.Input[bool] enable_streaming_engine: Immutable. Indicates if the job should use the streaming engine feature.
478
+ :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
487
479
  :param pulumi.Input[str] job_id: The unique ID of this job.
488
- :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is:
489
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
480
+ :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
490
481
  :param pulumi.Input[Mapping[str, Any]] labels: User labels to be specified for the job. Keys and values
491
482
  should follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions)
492
483
  page. **Note**: This field is marked as deprecated as the API does not currently
@@ -496,11 +487,10 @@ class _FlexTemplateJobState:
496
487
  labels will be ignored to prevent diffs on re-apply.
497
488
  :param pulumi.Input[str] launcher_machine_type: The machine type to use for launching the job. The default is n1-standard-1.
498
489
  :param pulumi.Input[str] machine_type: The machine type to use for the job.
499
- :param pulumi.Input[int] max_workers: The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
500
- 1000.
501
- :param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
490
+ :param pulumi.Input[int] max_workers: Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
491
+ :param pulumi.Input[str] name: Immutable. A unique name for the resource, required by Dataflow.
502
492
  :param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
503
- :param pulumi.Input[int] num_workers: The initial number of Google Compute Engine instances for the job.
493
+ :param pulumi.Input[int] num_workers: Immutable. The initial number of Google Compute Engine instances for the job.
504
494
  :param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of
505
495
  deletion during `pulumi destroy`. See above note.
506
496
  :param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be passed to the Dataflow job (as
@@ -509,19 +499,17 @@ class _FlexTemplateJobState:
509
499
  :param pulumi.Input[str] project: The project in which the resource belongs. If it is not
510
500
  provided, the provider project is used.
511
501
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
512
- :param pulumi.Input[str] region: The region in which the created job should run.
513
- :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
514
- the SDK. Note this field is only valid for portable pipelines.
502
+ :param pulumi.Input[str] region: Immutable. The region in which the created job should run.
503
+ :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
515
504
  :param pulumi.Input[str] service_account_email: Service account email to run the workers as.
516
505
  :param pulumi.Input[bool] skip_wait_on_job_termination: If true, treat DRAINING and CANCELLING as terminal job states and do not wait for further changes before removing from
517
506
  terraform state and moving on. WARNING: this will lead to job name conflicts if you do not ensure that the job names are
518
507
  different, e.g. by embedding a release ID or by using a random_id.
519
508
  :param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
520
509
  :param pulumi.Input[str] state: The current state of the resource, selected from the [JobState enum](https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState)
521
- :param pulumi.Input[str] subnetwork: Compute Engine subnetwork for launching instances to run your pipeline.
510
+ :param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
522
511
  :param pulumi.Input[str] temp_location: The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with gs://.
523
- :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
524
- corresponding name prefixes of the new job.
512
+ :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
525
513
  :param pulumi.Input[str] type: The type of this job, selected from the JobType enum.
526
514
  """
527
515
  if additional_experiments is not None:
@@ -587,7 +575,7 @@ class _FlexTemplateJobState:
587
575
  @pulumi.getter(name="additionalExperiments")
588
576
  def additional_experiments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
589
577
  """
590
- List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
578
+ List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
591
579
  """
592
580
  return pulumi.get(self, "additional_experiments")
593
581
 
@@ -599,7 +587,7 @@ class _FlexTemplateJobState:
599
587
  @pulumi.getter(name="autoscalingAlgorithm")
600
588
  def autoscaling_algorithm(self) -> Optional[pulumi.Input[str]]:
601
589
  """
602
- The algorithm to use for autoscaling
590
+ The algorithm to use for autoscaling.
603
591
  """
604
592
  return pulumi.get(self, "autoscaling_algorithm")
605
593
 
@@ -639,7 +627,7 @@ class _FlexTemplateJobState:
639
627
  @pulumi.getter(name="enableStreamingEngine")
640
628
  def enable_streaming_engine(self) -> Optional[pulumi.Input[bool]]:
641
629
  """
642
- Indicates if the job should use the streaming engine feature.
630
+ Immutable. Indicates if the job should use the streaming engine feature.
643
631
  """
644
632
  return pulumi.get(self, "enable_streaming_engine")
645
633
 
@@ -651,7 +639,7 @@ class _FlexTemplateJobState:
651
639
  @pulumi.getter(name="ipConfiguration")
652
640
  def ip_configuration(self) -> Optional[pulumi.Input[str]]:
653
641
  """
654
- The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
642
+ The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
655
643
  """
656
644
  return pulumi.get(self, "ip_configuration")
657
645
 
@@ -675,8 +663,7 @@ class _FlexTemplateJobState:
675
663
  @pulumi.getter(name="kmsKeyName")
676
664
  def kms_key_name(self) -> Optional[pulumi.Input[str]]:
677
665
  """
678
- The name for the Cloud KMS key for the job. Key format is:
679
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
666
+ The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
680
667
  """
681
668
  return pulumi.get(self, "kms_key_name")
682
669
 
@@ -730,8 +717,7 @@ class _FlexTemplateJobState:
730
717
  @pulumi.getter(name="maxWorkers")
731
718
  def max_workers(self) -> Optional[pulumi.Input[int]]:
732
719
  """
733
- The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
734
- 1000.
720
+ Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
735
721
  """
736
722
  return pulumi.get(self, "max_workers")
737
723
 
@@ -743,7 +729,7 @@ class _FlexTemplateJobState:
743
729
  @pulumi.getter
744
730
  def name(self) -> Optional[pulumi.Input[str]]:
745
731
  """
746
- A unique name for the resource, required by Dataflow.
732
+ Immutable. A unique name for the resource, required by Dataflow.
747
733
  """
748
734
  return pulumi.get(self, "name")
749
735
 
@@ -767,7 +753,7 @@ class _FlexTemplateJobState:
767
753
  @pulumi.getter(name="numWorkers")
768
754
  def num_workers(self) -> Optional[pulumi.Input[int]]:
769
755
  """
770
- The initial number of Google Compute Engine instances for the job.
756
+ Immutable. The initial number of Google Compute Engine instances for the job.
771
757
  """
772
758
  return pulumi.get(self, "num_workers")
773
759
 
@@ -831,7 +817,7 @@ class _FlexTemplateJobState:
831
817
  @pulumi.getter
832
818
  def region(self) -> Optional[pulumi.Input[str]]:
833
819
  """
834
- The region in which the created job should run.
820
+ Immutable. The region in which the created job should run.
835
821
  """
836
822
  return pulumi.get(self, "region")
837
823
 
@@ -843,8 +829,7 @@ class _FlexTemplateJobState:
843
829
  @pulumi.getter(name="sdkContainerImage")
844
830
  def sdk_container_image(self) -> Optional[pulumi.Input[str]]:
845
831
  """
846
- Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
847
- the SDK. Note this field is only valid for portable pipelines.
832
+ Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
848
833
  """
849
834
  return pulumi.get(self, "sdk_container_image")
850
835
 
@@ -906,7 +891,7 @@ class _FlexTemplateJobState:
906
891
  @pulumi.getter
907
892
  def subnetwork(self) -> Optional[pulumi.Input[str]]:
908
893
  """
909
- Compute Engine subnetwork for launching instances to run your pipeline.
894
+ The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
910
895
  """
911
896
  return pulumi.get(self, "subnetwork")
912
897
 
@@ -930,8 +915,7 @@ class _FlexTemplateJobState:
930
915
  @pulumi.getter(name="transformNameMapping")
931
916
  def transform_name_mapping(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
932
917
  """
933
- Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
934
- corresponding name prefixes of the new job.
918
+ Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
935
919
  """
936
920
  return pulumi.get(self, "transform_name_mapping")
937
921
 
@@ -1061,16 +1045,15 @@ class FlexTemplateJob(pulumi.CustomResource):
1061
1045
 
1062
1046
  :param str resource_name: The name of the resource.
1063
1047
  :param pulumi.ResourceOptions opts: Options for the resource.
1064
- :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
1065
- :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling
1048
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
1049
+ :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling.
1066
1050
  :param pulumi.Input[str] container_spec_gcs_path: The GCS path to the Dataflow job Flex
1067
1051
  Template.
1068
1052
 
1069
1053
  - - -
1070
- :param pulumi.Input[bool] enable_streaming_engine: Indicates if the job should use the streaming engine feature.
1071
- :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
1072
- :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is:
1073
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
1054
+ :param pulumi.Input[bool] enable_streaming_engine: Immutable. Indicates if the job should use the streaming engine feature.
1055
+ :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
1056
+ :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
1074
1057
  :param pulumi.Input[Mapping[str, Any]] labels: User labels to be specified for the job. Keys and values
1075
1058
  should follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions)
1076
1059
  page. **Note**: This field is marked as deprecated as the API does not currently
@@ -1080,11 +1063,10 @@ class FlexTemplateJob(pulumi.CustomResource):
1080
1063
  labels will be ignored to prevent diffs on re-apply.
1081
1064
  :param pulumi.Input[str] launcher_machine_type: The machine type to use for launching the job. The default is n1-standard-1.
1082
1065
  :param pulumi.Input[str] machine_type: The machine type to use for the job.
1083
- :param pulumi.Input[int] max_workers: The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
1084
- 1000.
1085
- :param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
1066
+ :param pulumi.Input[int] max_workers: Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
1067
+ :param pulumi.Input[str] name: Immutable. A unique name for the resource, required by Dataflow.
1086
1068
  :param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
1087
- :param pulumi.Input[int] num_workers: The initial number of Google Compute Engine instances for the job.
1069
+ :param pulumi.Input[int] num_workers: Immutable. The initial number of Google Compute Engine instances for the job.
1088
1070
  :param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of
1089
1071
  deletion during `pulumi destroy`. See above note.
1090
1072
  :param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be passed to the Dataflow job (as
@@ -1092,18 +1074,16 @@ class FlexTemplateJob(pulumi.CustomResource):
1092
1074
  such as `serviceAccount`, `workerMachineType`, etc can be specified here.
1093
1075
  :param pulumi.Input[str] project: The project in which the resource belongs. If it is not
1094
1076
  provided, the provider project is used.
1095
- :param pulumi.Input[str] region: The region in which the created job should run.
1096
- :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
1097
- the SDK. Note this field is only valid for portable pipelines.
1077
+ :param pulumi.Input[str] region: Immutable. The region in which the created job should run.
1078
+ :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
1098
1079
  :param pulumi.Input[str] service_account_email: Service account email to run the workers as.
1099
1080
  :param pulumi.Input[bool] skip_wait_on_job_termination: If true, treat DRAINING and CANCELLING as terminal job states and do not wait for further changes before removing from
1100
1081
  terraform state and moving on. WARNING: this will lead to job name conflicts if you do not ensure that the job names are
1101
1082
  different, e.g. by embedding a release ID or by using a random_id.
1102
1083
  :param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
1103
- :param pulumi.Input[str] subnetwork: Compute Engine subnetwork for launching instances to run your pipeline.
1084
+ :param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
1104
1085
  :param pulumi.Input[str] temp_location: The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with gs://.
1105
- :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
1106
- corresponding name prefixes of the new job.
1086
+ :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
1107
1087
  """
1108
1088
  ...
1109
1089
  @overload
@@ -1315,19 +1295,18 @@ class FlexTemplateJob(pulumi.CustomResource):
1315
1295
  :param str resource_name: The unique name of the resulting resource.
1316
1296
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1317
1297
  :param pulumi.ResourceOptions opts: Options for the resource.
1318
- :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
1319
- :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling
1298
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] additional_experiments: List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
1299
+ :param pulumi.Input[str] autoscaling_algorithm: The algorithm to use for autoscaling.
1320
1300
  :param pulumi.Input[str] container_spec_gcs_path: The GCS path to the Dataflow job Flex
1321
1301
  Template.
1322
1302
 
1323
1303
  - - -
1324
1304
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
1325
1305
  clients and services.
1326
- :param pulumi.Input[bool] enable_streaming_engine: Indicates if the job should use the streaming engine feature.
1327
- :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
1306
+ :param pulumi.Input[bool] enable_streaming_engine: Immutable. Indicates if the job should use the streaming engine feature.
1307
+ :param pulumi.Input[str] ip_configuration: The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
1328
1308
  :param pulumi.Input[str] job_id: The unique ID of this job.
1329
- :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is:
1330
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
1309
+ :param pulumi.Input[str] kms_key_name: The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
1331
1310
  :param pulumi.Input[Mapping[str, Any]] labels: User labels to be specified for the job. Keys and values
1332
1311
  should follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions)
1333
1312
  page. **Note**: This field is marked as deprecated as the API does not currently
@@ -1337,11 +1316,10 @@ class FlexTemplateJob(pulumi.CustomResource):
1337
1316
  labels will be ignored to prevent diffs on re-apply.
1338
1317
  :param pulumi.Input[str] launcher_machine_type: The machine type to use for launching the job. The default is n1-standard-1.
1339
1318
  :param pulumi.Input[str] machine_type: The machine type to use for the job.
1340
- :param pulumi.Input[int] max_workers: The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
1341
- 1000.
1342
- :param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
1319
+ :param pulumi.Input[int] max_workers: Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
1320
+ :param pulumi.Input[str] name: Immutable. A unique name for the resource, required by Dataflow.
1343
1321
  :param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
1344
- :param pulumi.Input[int] num_workers: The initial number of Google Compute Engine instances for the job.
1322
+ :param pulumi.Input[int] num_workers: Immutable. The initial number of Google Compute Engine instances for the job.
1345
1323
  :param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of
1346
1324
  deletion during `pulumi destroy`. See above note.
1347
1325
  :param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be passed to the Dataflow job (as
@@ -1350,19 +1328,17 @@ class FlexTemplateJob(pulumi.CustomResource):
1350
1328
  :param pulumi.Input[str] project: The project in which the resource belongs. If it is not
1351
1329
  provided, the provider project is used.
1352
1330
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
1353
- :param pulumi.Input[str] region: The region in which the created job should run.
1354
- :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
1355
- the SDK. Note this field is only valid for portable pipelines.
1331
+ :param pulumi.Input[str] region: Immutable. The region in which the created job should run.
1332
+ :param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
1356
1333
  :param pulumi.Input[str] service_account_email: Service account email to run the workers as.
1357
1334
  :param pulumi.Input[bool] skip_wait_on_job_termination: If true, treat DRAINING and CANCELLING as terminal job states and do not wait for further changes before removing from
1358
1335
  terraform state and moving on. WARNING: this will lead to job name conflicts if you do not ensure that the job names are
1359
1336
  different, e.g. by embedding a release ID or by using a random_id.
1360
1337
  :param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
1361
1338
  :param pulumi.Input[str] state: The current state of the resource, selected from the [JobState enum](https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState)
1362
- :param pulumi.Input[str] subnetwork: Compute Engine subnetwork for launching instances to run your pipeline.
1339
+ :param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
1363
1340
  :param pulumi.Input[str] temp_location: The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with gs://.
1364
- :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
1365
- corresponding name prefixes of the new job.
1341
+ :param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
1366
1342
  :param pulumi.Input[str] type: The type of this job, selected from the JobType enum.
1367
1343
  """
1368
1344
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -1404,7 +1380,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1404
1380
  @pulumi.getter(name="additionalExperiments")
1405
1381
  def additional_experiments(self) -> pulumi.Output[Sequence[str]]:
1406
1382
  """
1407
- List of experiments that should be used by the job. An example value is ["enable_stackdriver_agent_metrics"].
1383
+ List of experiments that should be used by the job. An example value is `["enable_stackdriver_agent_metrics"]`.
1408
1384
  """
1409
1385
  return pulumi.get(self, "additional_experiments")
1410
1386
 
@@ -1412,7 +1388,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1412
1388
  @pulumi.getter(name="autoscalingAlgorithm")
1413
1389
  def autoscaling_algorithm(self) -> pulumi.Output[str]:
1414
1390
  """
1415
- The algorithm to use for autoscaling
1391
+ The algorithm to use for autoscaling.
1416
1392
  """
1417
1393
  return pulumi.get(self, "autoscaling_algorithm")
1418
1394
 
@@ -1440,7 +1416,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1440
1416
  @pulumi.getter(name="enableStreamingEngine")
1441
1417
  def enable_streaming_engine(self) -> pulumi.Output[Optional[bool]]:
1442
1418
  """
1443
- Indicates if the job should use the streaming engine feature.
1419
+ Immutable. Indicates if the job should use the streaming engine feature.
1444
1420
  """
1445
1421
  return pulumi.get(self, "enable_streaming_engine")
1446
1422
 
@@ -1448,7 +1424,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1448
1424
  @pulumi.getter(name="ipConfiguration")
1449
1425
  def ip_configuration(self) -> pulumi.Output[Optional[str]]:
1450
1426
  """
1451
- The configuration for VM IPs. Options are "WORKER_IP_PUBLIC" or "WORKER_IP_PRIVATE".
1427
+ The configuration for VM IPs. Options are `"WORKER_IP_PUBLIC"` or `"WORKER_IP_PRIVATE"`.
1452
1428
  """
1453
1429
  return pulumi.get(self, "ip_configuration")
1454
1430
 
@@ -1464,8 +1440,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1464
1440
  @pulumi.getter(name="kmsKeyName")
1465
1441
  def kms_key_name(self) -> pulumi.Output[str]:
1466
1442
  """
1467
- The name for the Cloud KMS key for the job. Key format is:
1468
- projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY
1443
+ The name for the Cloud KMS key for the job. Key format is: `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`
1469
1444
  """
1470
1445
  return pulumi.get(self, "kms_key_name")
1471
1446
 
@@ -1503,8 +1478,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1503
1478
  @pulumi.getter(name="maxWorkers")
1504
1479
  def max_workers(self) -> pulumi.Output[int]:
1505
1480
  """
1506
- The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to
1507
- 1000.
1481
+ Immutable. The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
1508
1482
  """
1509
1483
  return pulumi.get(self, "max_workers")
1510
1484
 
@@ -1512,7 +1486,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1512
1486
  @pulumi.getter
1513
1487
  def name(self) -> pulumi.Output[str]:
1514
1488
  """
1515
- A unique name for the resource, required by Dataflow.
1489
+ Immutable. A unique name for the resource, required by Dataflow.
1516
1490
  """
1517
1491
  return pulumi.get(self, "name")
1518
1492
 
@@ -1528,7 +1502,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1528
1502
  @pulumi.getter(name="numWorkers")
1529
1503
  def num_workers(self) -> pulumi.Output[int]:
1530
1504
  """
1531
- The initial number of Google Compute Engine instances for the job.
1505
+ Immutable. The initial number of Google Compute Engine instances for the job.
1532
1506
  """
1533
1507
  return pulumi.get(self, "num_workers")
1534
1508
 
@@ -1572,7 +1546,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1572
1546
  @pulumi.getter
1573
1547
  def region(self) -> pulumi.Output[str]:
1574
1548
  """
1575
- The region in which the created job should run.
1549
+ Immutable. The region in which the created job should run.
1576
1550
  """
1577
1551
  return pulumi.get(self, "region")
1578
1552
 
@@ -1580,8 +1554,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1580
1554
  @pulumi.getter(name="sdkContainerImage")
1581
1555
  def sdk_container_image(self) -> pulumi.Output[str]:
1582
1556
  """
1583
- Docker registry location of container image to use for the 'worker harness. Default is the container for the version of
1584
- the SDK. Note this field is only valid for portable pipelines.
1557
+ Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
1585
1558
  """
1586
1559
  return pulumi.get(self, "sdk_container_image")
1587
1560
 
@@ -1623,7 +1596,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1623
1596
  @pulumi.getter
1624
1597
  def subnetwork(self) -> pulumi.Output[str]:
1625
1598
  """
1626
- Compute Engine subnetwork for launching instances to run your pipeline.
1599
+ The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
1627
1600
  """
1628
1601
  return pulumi.get(self, "subnetwork")
1629
1602
 
@@ -1639,8 +1612,7 @@ class FlexTemplateJob(pulumi.CustomResource):
1639
1612
  @pulumi.getter(name="transformNameMapping")
1640
1613
  def transform_name_mapping(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
1641
1614
  """
1642
- Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the
1643
- corresponding name prefixes of the new job.
1615
+ Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job.
1644
1616
  """
1645
1617
  return pulumi.get(self, "transform_name_mapping")
1646
1618