pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.41.0a1754981061__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.
- pulumi_gcp/__init__.py +128 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
- pulumi_gcp/accesscontextmanager/outputs.py +15 -3
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +1435 -0
- pulumi_gcp/apigee/api_product.py +1698 -0
- pulumi_gcp/apigee/outputs.py +1081 -0
- pulumi_gcp/apigee/security_action.py +1010 -0
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +109 -2
- pulumi_gcp/artifactregistry/repository.py +6 -6
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
- pulumi_gcp/bigquery/_inputs.py +6 -0
- pulumi_gcp/bigquery/get_table.py +23 -1
- pulumi_gcp/bigquery/outputs.py +4 -0
- pulumi_gcp/bigquery/table.py +62 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +33 -0
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/bigtable/schema_bundle.py +568 -0
- pulumi_gcp/cloudfunctions/_inputs.py +48 -0
- pulumi_gcp/cloudfunctions/function.py +94 -0
- pulumi_gcp/cloudfunctions/get_function.py +23 -1
- pulumi_gcp/cloudfunctions/outputs.py +70 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/job.py +2 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +713 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/outputs.py +562 -22
- pulumi_gcp/compute/preview_feature.py +396 -0
- pulumi_gcp/compute/region_url_map.py +392 -0
- pulumi_gcp/compute/reservation.py +4 -4
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/storage_pool.py +154 -0
- pulumi_gcp/compute/subnetwork.py +54 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +278 -8
- pulumi_gcp/container/cluster.py +61 -21
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +352 -8
- pulumi_gcp/dataproc/_inputs.py +249 -14
- pulumi_gcp/dataproc/batch.py +6 -0
- pulumi_gcp/dataproc/cluster.py +2 -0
- pulumi_gcp/dataproc/outputs.py +215 -12
- pulumi_gcp/dataproc/session_template.py +14 -2
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +583 -0
- pulumi_gcp/developerconnect/insights_config.py +895 -0
- pulumi_gcp/developerconnect/outputs.py +442 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +1165 -58
- pulumi_gcp/diagflow/cx_generator.py +636 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/cx_webhook.py +380 -36
- pulumi_gcp/diagflow/outputs.py +848 -25
- pulumi_gcp/discoveryengine/__init__.py +2 -0
- pulumi_gcp/discoveryengine/_inputs.py +465 -0
- pulumi_gcp/discoveryengine/cmek_config.py +707 -0
- pulumi_gcp/discoveryengine/outputs.py +412 -0
- pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/__init__.py +4 -0
- pulumi_gcp/iam/_inputs.py +98 -0
- pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
- pulumi_gcp/iam/outputs.py +56 -0
- pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/looker/instance.py +28 -7
- pulumi_gcp/managedkafka/_inputs.py +127 -0
- pulumi_gcp/managedkafka/cluster.py +131 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/managedkafka/outputs.py +128 -0
- pulumi_gcp/memorystore/instance.py +8 -12
- pulumi_gcp/modelarmor/__init__.py +1 -0
- pulumi_gcp/modelarmor/_inputs.py +683 -0
- pulumi_gcp/modelarmor/floorsetting.py +736 -0
- pulumi_gcp/modelarmor/outputs.py +618 -0
- pulumi_gcp/networkconnectivity/_inputs.py +60 -0
- pulumi_gcp/networkconnectivity/internal_range.py +136 -0
- pulumi_gcp/networkconnectivity/outputs.py +55 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/oracledatabase/__init__.py +2 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
- pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
- pulumi_gcp/oracledatabase/odb_network.py +721 -0
- pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
- pulumi_gcp/oracledatabase/outputs.py +83 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/parameter_version.py +62 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +46 -6
- pulumi_gcp/pubsub/topic.py +36 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +70 -0
- pulumi_gcp/redis/get_cluster.py +12 -1
- pulumi_gcp/redis/instance.py +8 -12
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/get_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +30 -0
- pulumi_gcp/secretmanager/regional_secret.py +61 -0
- pulumi_gcp/secretmanager/secret.py +61 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
- pulumi_gcp/securesourcemanager/instance.py +112 -4
- pulumi_gcp/securesourcemanager/repository.py +112 -8
- pulumi_gcp/serviceaccount/get_account_key.py +1 -0
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/database.py +0 -12
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +451 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/bucket_object.py +34 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
- pulumi_gcp/storage/insights_dataset_config.py +1280 -0
- pulumi_gcp/storage/outputs.py +619 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +3646 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +2609 -2
- pulumi_gcp/vmwareengine/network_peering.py +7 -7
- pulumi_gcp/workbench/_inputs.py +118 -0
- pulumi_gcp/workbench/instance.py +171 -2
- pulumi_gcp/workbench/outputs.py +91 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/_inputs.py
CHANGED
@@ -31,6 +31,8 @@ __all__ = [
|
|
31
31
|
'BatchEnvironmentConfigArgsDict',
|
32
32
|
'BatchEnvironmentConfigExecutionConfigArgs',
|
33
33
|
'BatchEnvironmentConfigExecutionConfigArgsDict',
|
34
|
+
'BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgs',
|
35
|
+
'BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict',
|
34
36
|
'BatchEnvironmentConfigPeripheralsConfigArgs',
|
35
37
|
'BatchEnvironmentConfigPeripheralsConfigArgsDict',
|
36
38
|
'BatchEnvironmentConfigPeripheralsConfigSparkHistoryServerConfigArgs',
|
@@ -113,6 +115,8 @@ __all__ = [
|
|
113
115
|
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict',
|
114
116
|
'ClusterClusterConfigSecurityConfigArgs',
|
115
117
|
'ClusterClusterConfigSecurityConfigArgsDict',
|
118
|
+
'ClusterClusterConfigSecurityConfigIdentityConfigArgs',
|
119
|
+
'ClusterClusterConfigSecurityConfigIdentityConfigArgsDict',
|
116
120
|
'ClusterClusterConfigSecurityConfigKerberosConfigArgs',
|
117
121
|
'ClusterClusterConfigSecurityConfigKerberosConfigArgsDict',
|
118
122
|
'ClusterClusterConfigSoftwareConfigArgs',
|
@@ -255,6 +259,8 @@ __all__ = [
|
|
255
259
|
'SessionTemplateEnvironmentConfigArgsDict',
|
256
260
|
'SessionTemplateEnvironmentConfigExecutionConfigArgs',
|
257
261
|
'SessionTemplateEnvironmentConfigExecutionConfigArgsDict',
|
262
|
+
'SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgs',
|
263
|
+
'SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict',
|
258
264
|
'SessionTemplateEnvironmentConfigPeripheralsConfigArgs',
|
259
265
|
'SessionTemplateEnvironmentConfigPeripheralsConfigArgsDict',
|
260
266
|
'SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfigArgs',
|
@@ -984,6 +990,11 @@ class BatchEnvironmentConfigArgs:
|
|
984
990
|
|
985
991
|
if not MYPY:
|
986
992
|
class BatchEnvironmentConfigExecutionConfigArgsDict(TypedDict):
|
993
|
+
authentication_config: NotRequired[pulumi.Input['BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict']]
|
994
|
+
"""
|
995
|
+
Authentication configuration for a workload is used to set the default identity for the workload execution.
|
996
|
+
Structure is documented below.
|
997
|
+
"""
|
987
998
|
kms_key: NotRequired[pulumi.Input[_builtins.str]]
|
988
999
|
"""
|
989
1000
|
The Cloud KMS key to use for encryption.
|
@@ -1029,6 +1040,7 @@ elif False:
|
|
1029
1040
|
@pulumi.input_type
|
1030
1041
|
class BatchEnvironmentConfigExecutionConfigArgs:
|
1031
1042
|
def __init__(__self__, *,
|
1043
|
+
authentication_config: Optional[pulumi.Input['BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgs']] = None,
|
1032
1044
|
kms_key: Optional[pulumi.Input[_builtins.str]] = None,
|
1033
1045
|
network_tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1034
1046
|
network_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1037,6 +1049,8 @@ class BatchEnvironmentConfigExecutionConfigArgs:
|
|
1037
1049
|
subnetwork_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
1038
1050
|
ttl: Optional[pulumi.Input[_builtins.str]] = None):
|
1039
1051
|
"""
|
1052
|
+
:param pulumi.Input['BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgs'] authentication_config: Authentication configuration for a workload is used to set the default identity for the workload execution.
|
1053
|
+
Structure is documented below.
|
1040
1054
|
:param pulumi.Input[_builtins.str] kms_key: The Cloud KMS key to use for encryption.
|
1041
1055
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_tags: Tags used for network traffic control.
|
1042
1056
|
:param pulumi.Input[_builtins.str] network_uri: Network configuration for workload execution.
|
@@ -1056,6 +1070,8 @@ class BatchEnvironmentConfigExecutionConfigArgs:
|
|
1056
1070
|
the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or
|
1057
1071
|
when ttl has been exceeded, whichever occurs first.
|
1058
1072
|
"""
|
1073
|
+
if authentication_config is not None:
|
1074
|
+
pulumi.set(__self__, "authentication_config", authentication_config)
|
1059
1075
|
if kms_key is not None:
|
1060
1076
|
pulumi.set(__self__, "kms_key", kms_key)
|
1061
1077
|
if network_tags is not None:
|
@@ -1071,6 +1087,19 @@ class BatchEnvironmentConfigExecutionConfigArgs:
|
|
1071
1087
|
if ttl is not None:
|
1072
1088
|
pulumi.set(__self__, "ttl", ttl)
|
1073
1089
|
|
1090
|
+
@_builtins.property
|
1091
|
+
@pulumi.getter(name="authenticationConfig")
|
1092
|
+
def authentication_config(self) -> Optional[pulumi.Input['BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgs']]:
|
1093
|
+
"""
|
1094
|
+
Authentication configuration for a workload is used to set the default identity for the workload execution.
|
1095
|
+
Structure is documented below.
|
1096
|
+
"""
|
1097
|
+
return pulumi.get(self, "authentication_config")
|
1098
|
+
|
1099
|
+
@authentication_config.setter
|
1100
|
+
def authentication_config(self, value: Optional[pulumi.Input['BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgs']]):
|
1101
|
+
pulumi.set(self, "authentication_config", value)
|
1102
|
+
|
1074
1103
|
@_builtins.property
|
1075
1104
|
@pulumi.getter(name="kmsKey")
|
1076
1105
|
def kms_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -1167,6 +1196,41 @@ class BatchEnvironmentConfigExecutionConfigArgs:
|
|
1167
1196
|
pulumi.set(self, "ttl", value)
|
1168
1197
|
|
1169
1198
|
|
1199
|
+
if not MYPY:
|
1200
|
+
class BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict(TypedDict):
|
1201
|
+
user_workload_authentication_type: NotRequired[pulumi.Input[_builtins.str]]
|
1202
|
+
"""
|
1203
|
+
Authentication type for the user workload running in containers.
|
1204
|
+
Possible values are: `SERVICE_ACCOUNT`, `END_USER_CREDENTIALS`.
|
1205
|
+
"""
|
1206
|
+
elif False:
|
1207
|
+
BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1208
|
+
|
1209
|
+
@pulumi.input_type
|
1210
|
+
class BatchEnvironmentConfigExecutionConfigAuthenticationConfigArgs:
|
1211
|
+
def __init__(__self__, *,
|
1212
|
+
user_workload_authentication_type: Optional[pulumi.Input[_builtins.str]] = None):
|
1213
|
+
"""
|
1214
|
+
:param pulumi.Input[_builtins.str] user_workload_authentication_type: Authentication type for the user workload running in containers.
|
1215
|
+
Possible values are: `SERVICE_ACCOUNT`, `END_USER_CREDENTIALS`.
|
1216
|
+
"""
|
1217
|
+
if user_workload_authentication_type is not None:
|
1218
|
+
pulumi.set(__self__, "user_workload_authentication_type", user_workload_authentication_type)
|
1219
|
+
|
1220
|
+
@_builtins.property
|
1221
|
+
@pulumi.getter(name="userWorkloadAuthenticationType")
|
1222
|
+
def user_workload_authentication_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1223
|
+
"""
|
1224
|
+
Authentication type for the user workload running in containers.
|
1225
|
+
Possible values are: `SERVICE_ACCOUNT`, `END_USER_CREDENTIALS`.
|
1226
|
+
"""
|
1227
|
+
return pulumi.get(self, "user_workload_authentication_type")
|
1228
|
+
|
1229
|
+
@user_workload_authentication_type.setter
|
1230
|
+
def user_workload_authentication_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1231
|
+
pulumi.set(self, "user_workload_authentication_type", value)
|
1232
|
+
|
1233
|
+
|
1170
1234
|
if not MYPY:
|
1171
1235
|
class BatchEnvironmentConfigPeripheralsConfigArgsDict(TypedDict):
|
1172
1236
|
metastore_service: NotRequired[pulumi.Input[_builtins.str]]
|
@@ -2390,6 +2454,10 @@ if not MYPY:
|
|
2390
2454
|
for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
|
2391
2455
|
it will be the auto generated name.
|
2392
2456
|
"""
|
2457
|
+
cluster_tier: NotRequired[pulumi.Input[_builtins.str]]
|
2458
|
+
"""
|
2459
|
+
The tier of the cluster.
|
2460
|
+
"""
|
2393
2461
|
dataproc_metric_config: NotRequired[pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgsDict']]
|
2394
2462
|
"""
|
2395
2463
|
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
|
@@ -2478,6 +2546,7 @@ class ClusterClusterConfigArgs:
|
|
2478
2546
|
autoscaling_config: Optional[pulumi.Input['ClusterClusterConfigAutoscalingConfigArgs']] = None,
|
2479
2547
|
auxiliary_node_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgs']]]] = None,
|
2480
2548
|
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
2549
|
+
cluster_tier: Optional[pulumi.Input[_builtins.str]] = None,
|
2481
2550
|
dataproc_metric_config: Optional[pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgs']] = None,
|
2482
2551
|
encryption_config: Optional[pulumi.Input['ClusterClusterConfigEncryptionConfigArgs']] = None,
|
2483
2552
|
endpoint_config: Optional[pulumi.Input['ClusterClusterConfigEndpointConfigArgs']] = None,
|
@@ -2502,6 +2571,7 @@ class ClusterClusterConfigArgs:
|
|
2502
2571
|
:param pulumi.Input[_builtins.str] bucket: The name of the cloud storage bucket ultimately used to house the staging data
|
2503
2572
|
for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
|
2504
2573
|
it will be the auto generated name.
|
2574
|
+
:param pulumi.Input[_builtins.str] cluster_tier: The tier of the cluster.
|
2505
2575
|
:param pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgs'] dataproc_metric_config: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
|
2506
2576
|
Structure defined below.
|
2507
2577
|
:param pulumi.Input['ClusterClusterConfigEncryptionConfigArgs'] encryption_config: The Customer managed encryption keys settings for the cluster.
|
@@ -2546,6 +2616,8 @@ class ClusterClusterConfigArgs:
|
|
2546
2616
|
pulumi.set(__self__, "auxiliary_node_groups", auxiliary_node_groups)
|
2547
2617
|
if bucket is not None:
|
2548
2618
|
pulumi.set(__self__, "bucket", bucket)
|
2619
|
+
if cluster_tier is not None:
|
2620
|
+
pulumi.set(__self__, "cluster_tier", cluster_tier)
|
2549
2621
|
if dataproc_metric_config is not None:
|
2550
2622
|
pulumi.set(__self__, "dataproc_metric_config", dataproc_metric_config)
|
2551
2623
|
if encryption_config is not None:
|
@@ -2617,6 +2689,18 @@ class ClusterClusterConfigArgs:
|
|
2617
2689
|
def bucket(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2618
2690
|
pulumi.set(self, "bucket", value)
|
2619
2691
|
|
2692
|
+
@_builtins.property
|
2693
|
+
@pulumi.getter(name="clusterTier")
|
2694
|
+
def cluster_tier(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2695
|
+
"""
|
2696
|
+
The tier of the cluster.
|
2697
|
+
"""
|
2698
|
+
return pulumi.get(self, "cluster_tier")
|
2699
|
+
|
2700
|
+
@cluster_tier.setter
|
2701
|
+
def cluster_tier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2702
|
+
pulumi.set(self, "cluster_tier", value)
|
2703
|
+
|
2620
2704
|
@_builtins.property
|
2621
2705
|
@pulumi.getter(name="dataprocMetricConfig")
|
2622
2706
|
def dataproc_metric_config(self) -> Optional[pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgs']]:
|
@@ -5059,9 +5143,15 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5059
5143
|
|
5060
5144
|
if not MYPY:
|
5061
5145
|
class ClusterClusterConfigSecurityConfigArgsDict(TypedDict):
|
5062
|
-
|
5146
|
+
identity_config: NotRequired[pulumi.Input['ClusterClusterConfigSecurityConfigIdentityConfigArgsDict']]
|
5063
5147
|
"""
|
5064
|
-
|
5148
|
+
Identity Configuration. At least one of `identity_config`
|
5149
|
+
or `kerberos_config` is required.
|
5150
|
+
"""
|
5151
|
+
kerberos_config: NotRequired[pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgsDict']]
|
5152
|
+
"""
|
5153
|
+
Kerberos Configuration. At least one of `identity_config`
|
5154
|
+
or `kerberos_config` is required.
|
5065
5155
|
"""
|
5066
5156
|
elif False:
|
5067
5157
|
ClusterClusterConfigSecurityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5069,25 +5159,86 @@ elif False:
|
|
5069
5159
|
@pulumi.input_type
|
5070
5160
|
class ClusterClusterConfigSecurityConfigArgs:
|
5071
5161
|
def __init__(__self__, *,
|
5072
|
-
|
5162
|
+
identity_config: Optional[pulumi.Input['ClusterClusterConfigSecurityConfigIdentityConfigArgs']] = None,
|
5163
|
+
kerberos_config: Optional[pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgs']] = None):
|
5164
|
+
"""
|
5165
|
+
:param pulumi.Input['ClusterClusterConfigSecurityConfigIdentityConfigArgs'] identity_config: Identity Configuration. At least one of `identity_config`
|
5166
|
+
or `kerberos_config` is required.
|
5167
|
+
:param pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgs'] kerberos_config: Kerberos Configuration. At least one of `identity_config`
|
5168
|
+
or `kerberos_config` is required.
|
5169
|
+
"""
|
5170
|
+
if identity_config is not None:
|
5171
|
+
pulumi.set(__self__, "identity_config", identity_config)
|
5172
|
+
if kerberos_config is not None:
|
5173
|
+
pulumi.set(__self__, "kerberos_config", kerberos_config)
|
5174
|
+
|
5175
|
+
@_builtins.property
|
5176
|
+
@pulumi.getter(name="identityConfig")
|
5177
|
+
def identity_config(self) -> Optional[pulumi.Input['ClusterClusterConfigSecurityConfigIdentityConfigArgs']]:
|
5073
5178
|
"""
|
5074
|
-
|
5179
|
+
Identity Configuration. At least one of `identity_config`
|
5180
|
+
or `kerberos_config` is required.
|
5075
5181
|
"""
|
5076
|
-
pulumi.
|
5182
|
+
return pulumi.get(self, "identity_config")
|
5183
|
+
|
5184
|
+
@identity_config.setter
|
5185
|
+
def identity_config(self, value: Optional[pulumi.Input['ClusterClusterConfigSecurityConfigIdentityConfigArgs']]):
|
5186
|
+
pulumi.set(self, "identity_config", value)
|
5077
5187
|
|
5078
5188
|
@_builtins.property
|
5079
5189
|
@pulumi.getter(name="kerberosConfig")
|
5080
|
-
def kerberos_config(self) -> pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgs']:
|
5190
|
+
def kerberos_config(self) -> Optional[pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgs']]:
|
5081
5191
|
"""
|
5082
|
-
Kerberos Configuration
|
5192
|
+
Kerberos Configuration. At least one of `identity_config`
|
5193
|
+
or `kerberos_config` is required.
|
5083
5194
|
"""
|
5084
5195
|
return pulumi.get(self, "kerberos_config")
|
5085
5196
|
|
5086
5197
|
@kerberos_config.setter
|
5087
|
-
def kerberos_config(self, value: pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgs']):
|
5198
|
+
def kerberos_config(self, value: Optional[pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgs']]):
|
5088
5199
|
pulumi.set(self, "kerberos_config", value)
|
5089
5200
|
|
5090
5201
|
|
5202
|
+
if not MYPY:
|
5203
|
+
class ClusterClusterConfigSecurityConfigIdentityConfigArgsDict(TypedDict):
|
5204
|
+
user_service_account_mapping: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]
|
5205
|
+
"""
|
5206
|
+
The end user to service account mappings
|
5207
|
+
in a service account based multi-tenant cluster
|
5208
|
+
|
5209
|
+
- - -
|
5210
|
+
"""
|
5211
|
+
elif False:
|
5212
|
+
ClusterClusterConfigSecurityConfigIdentityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5213
|
+
|
5214
|
+
@pulumi.input_type
|
5215
|
+
class ClusterClusterConfigSecurityConfigIdentityConfigArgs:
|
5216
|
+
def __init__(__self__, *,
|
5217
|
+
user_service_account_mapping: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]):
|
5218
|
+
"""
|
5219
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] user_service_account_mapping: The end user to service account mappings
|
5220
|
+
in a service account based multi-tenant cluster
|
5221
|
+
|
5222
|
+
- - -
|
5223
|
+
"""
|
5224
|
+
pulumi.set(__self__, "user_service_account_mapping", user_service_account_mapping)
|
5225
|
+
|
5226
|
+
@_builtins.property
|
5227
|
+
@pulumi.getter(name="userServiceAccountMapping")
|
5228
|
+
def user_service_account_mapping(self) -> pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]:
|
5229
|
+
"""
|
5230
|
+
The end user to service account mappings
|
5231
|
+
in a service account based multi-tenant cluster
|
5232
|
+
|
5233
|
+
- - -
|
5234
|
+
"""
|
5235
|
+
return pulumi.get(self, "user_service_account_mapping")
|
5236
|
+
|
5237
|
+
@user_service_account_mapping.setter
|
5238
|
+
def user_service_account_mapping(self, value: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]):
|
5239
|
+
pulumi.set(self, "user_service_account_mapping", value)
|
5240
|
+
|
5241
|
+
|
5091
5242
|
if not MYPY:
|
5092
5243
|
class ClusterClusterConfigSecurityConfigKerberosConfigArgsDict(TypedDict):
|
5093
5244
|
kms_key_uri: pulumi.Input[_builtins.str]
|
@@ -5165,8 +5316,6 @@ if not MYPY:
|
|
5165
5316
|
"""
|
5166
5317
|
The Cloud Storage URI of the truststore file used for
|
5167
5318
|
SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
|
5168
|
-
|
5169
|
-
- - -
|
5170
5319
|
"""
|
5171
5320
|
elif False:
|
5172
5321
|
ClusterClusterConfigSecurityConfigKerberosConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5221,8 +5370,6 @@ class ClusterClusterConfigSecurityConfigKerberosConfigArgs:
|
|
5221
5370
|
certificate, this password is generated by Dataproc.
|
5222
5371
|
:param pulumi.Input[_builtins.str] truststore_uri: The Cloud Storage URI of the truststore file used for
|
5223
5372
|
SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
|
5224
|
-
|
5225
|
-
- - -
|
5226
5373
|
"""
|
5227
5374
|
pulumi.set(__self__, "kms_key_uri", kms_key_uri)
|
5228
5375
|
pulumi.set(__self__, "root_principal_password_uri", root_principal_password_uri)
|
@@ -5442,8 +5589,6 @@ class ClusterClusterConfigSecurityConfigKerberosConfigArgs:
|
|
5442
5589
|
"""
|
5443
5590
|
The Cloud Storage URI of the truststore file used for
|
5444
5591
|
SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
|
5445
|
-
|
5446
|
-
- - -
|
5447
5592
|
"""
|
5448
5593
|
return pulumi.get(self, "truststore_uri")
|
5449
5594
|
|
@@ -10473,6 +10618,19 @@ class SessionTemplateEnvironmentConfigArgs:
|
|
10473
10618
|
|
10474
10619
|
if not MYPY:
|
10475
10620
|
class SessionTemplateEnvironmentConfigExecutionConfigArgsDict(TypedDict):
|
10621
|
+
authentication_config: NotRequired[pulumi.Input['SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict']]
|
10622
|
+
"""
|
10623
|
+
Authentication configuration for a workload is used to set the default identity for the workload execution.
|
10624
|
+
Structure is documented below.
|
10625
|
+
"""
|
10626
|
+
idle_ttl: NotRequired[pulumi.Input[_builtins.str]]
|
10627
|
+
"""
|
10628
|
+
The duration to keep the session alive while it's idling.
|
10629
|
+
Exceeding this threshold causes the session to terminate. Minimum value is 10 minutes; maximum value is 14 day.
|
10630
|
+
Defaults to 1 hour if not set. If both ttl and idleTtl are specified for an interactive session, the conditions
|
10631
|
+
are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or when ttl has
|
10632
|
+
been exceeded, whichever occurs first.
|
10633
|
+
"""
|
10476
10634
|
kms_key: NotRequired[pulumi.Input[_builtins.str]]
|
10477
10635
|
"""
|
10478
10636
|
The Cloud KMS key to use for encryption.
|
@@ -10514,6 +10672,8 @@ elif False:
|
|
10514
10672
|
@pulumi.input_type
|
10515
10673
|
class SessionTemplateEnvironmentConfigExecutionConfigArgs:
|
10516
10674
|
def __init__(__self__, *,
|
10675
|
+
authentication_config: Optional[pulumi.Input['SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgs']] = None,
|
10676
|
+
idle_ttl: Optional[pulumi.Input[_builtins.str]] = None,
|
10517
10677
|
kms_key: Optional[pulumi.Input[_builtins.str]] = None,
|
10518
10678
|
network_tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
10519
10679
|
service_account: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -10521,6 +10681,13 @@ class SessionTemplateEnvironmentConfigExecutionConfigArgs:
|
|
10521
10681
|
subnetwork_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
10522
10682
|
ttl: Optional[pulumi.Input[_builtins.str]] = None):
|
10523
10683
|
"""
|
10684
|
+
:param pulumi.Input['SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgs'] authentication_config: Authentication configuration for a workload is used to set the default identity for the workload execution.
|
10685
|
+
Structure is documented below.
|
10686
|
+
:param pulumi.Input[_builtins.str] idle_ttl: The duration to keep the session alive while it's idling.
|
10687
|
+
Exceeding this threshold causes the session to terminate. Minimum value is 10 minutes; maximum value is 14 day.
|
10688
|
+
Defaults to 1 hour if not set. If both ttl and idleTtl are specified for an interactive session, the conditions
|
10689
|
+
are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or when ttl has
|
10690
|
+
been exceeded, whichever occurs first.
|
10524
10691
|
:param pulumi.Input[_builtins.str] kms_key: The Cloud KMS key to use for encryption.
|
10525
10692
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_tags: Tags used for network traffic control.
|
10526
10693
|
:param pulumi.Input[_builtins.str] service_account: Service account that used to execute workload.
|
@@ -10539,6 +10706,10 @@ class SessionTemplateEnvironmentConfigExecutionConfigArgs:
|
|
10539
10706
|
the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or
|
10540
10707
|
when ttl has been exceeded, whichever occurs first.
|
10541
10708
|
"""
|
10709
|
+
if authentication_config is not None:
|
10710
|
+
pulumi.set(__self__, "authentication_config", authentication_config)
|
10711
|
+
if idle_ttl is not None:
|
10712
|
+
pulumi.set(__self__, "idle_ttl", idle_ttl)
|
10542
10713
|
if kms_key is not None:
|
10543
10714
|
pulumi.set(__self__, "kms_key", kms_key)
|
10544
10715
|
if network_tags is not None:
|
@@ -10552,6 +10723,35 @@ class SessionTemplateEnvironmentConfigExecutionConfigArgs:
|
|
10552
10723
|
if ttl is not None:
|
10553
10724
|
pulumi.set(__self__, "ttl", ttl)
|
10554
10725
|
|
10726
|
+
@_builtins.property
|
10727
|
+
@pulumi.getter(name="authenticationConfig")
|
10728
|
+
def authentication_config(self) -> Optional[pulumi.Input['SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgs']]:
|
10729
|
+
"""
|
10730
|
+
Authentication configuration for a workload is used to set the default identity for the workload execution.
|
10731
|
+
Structure is documented below.
|
10732
|
+
"""
|
10733
|
+
return pulumi.get(self, "authentication_config")
|
10734
|
+
|
10735
|
+
@authentication_config.setter
|
10736
|
+
def authentication_config(self, value: Optional[pulumi.Input['SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgs']]):
|
10737
|
+
pulumi.set(self, "authentication_config", value)
|
10738
|
+
|
10739
|
+
@_builtins.property
|
10740
|
+
@pulumi.getter(name="idleTtl")
|
10741
|
+
def idle_ttl(self) -> Optional[pulumi.Input[_builtins.str]]:
|
10742
|
+
"""
|
10743
|
+
The duration to keep the session alive while it's idling.
|
10744
|
+
Exceeding this threshold causes the session to terminate. Minimum value is 10 minutes; maximum value is 14 day.
|
10745
|
+
Defaults to 1 hour if not set. If both ttl and idleTtl are specified for an interactive session, the conditions
|
10746
|
+
are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or when ttl has
|
10747
|
+
been exceeded, whichever occurs first.
|
10748
|
+
"""
|
10749
|
+
return pulumi.get(self, "idle_ttl")
|
10750
|
+
|
10751
|
+
@idle_ttl.setter
|
10752
|
+
def idle_ttl(self, value: Optional[pulumi.Input[_builtins.str]]):
|
10753
|
+
pulumi.set(self, "idle_ttl", value)
|
10754
|
+
|
10555
10755
|
@_builtins.property
|
10556
10756
|
@pulumi.getter(name="kmsKey")
|
10557
10757
|
def kms_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -10636,6 +10836,41 @@ class SessionTemplateEnvironmentConfigExecutionConfigArgs:
|
|
10636
10836
|
pulumi.set(self, "ttl", value)
|
10637
10837
|
|
10638
10838
|
|
10839
|
+
if not MYPY:
|
10840
|
+
class SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict(TypedDict):
|
10841
|
+
user_workload_authentication_type: NotRequired[pulumi.Input[_builtins.str]]
|
10842
|
+
"""
|
10843
|
+
Authentication type for the user workload running in containers.
|
10844
|
+
Possible values are: `SERVICE_ACCOUNT`, `END_USER_CREDENTIALS`.
|
10845
|
+
"""
|
10846
|
+
elif False:
|
10847
|
+
SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10848
|
+
|
10849
|
+
@pulumi.input_type
|
10850
|
+
class SessionTemplateEnvironmentConfigExecutionConfigAuthenticationConfigArgs:
|
10851
|
+
def __init__(__self__, *,
|
10852
|
+
user_workload_authentication_type: Optional[pulumi.Input[_builtins.str]] = None):
|
10853
|
+
"""
|
10854
|
+
:param pulumi.Input[_builtins.str] user_workload_authentication_type: Authentication type for the user workload running in containers.
|
10855
|
+
Possible values are: `SERVICE_ACCOUNT`, `END_USER_CREDENTIALS`.
|
10856
|
+
"""
|
10857
|
+
if user_workload_authentication_type is not None:
|
10858
|
+
pulumi.set(__self__, "user_workload_authentication_type", user_workload_authentication_type)
|
10859
|
+
|
10860
|
+
@_builtins.property
|
10861
|
+
@pulumi.getter(name="userWorkloadAuthenticationType")
|
10862
|
+
def user_workload_authentication_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
10863
|
+
"""
|
10864
|
+
Authentication type for the user workload running in containers.
|
10865
|
+
Possible values are: `SERVICE_ACCOUNT`, `END_USER_CREDENTIALS`.
|
10866
|
+
"""
|
10867
|
+
return pulumi.get(self, "user_workload_authentication_type")
|
10868
|
+
|
10869
|
+
@user_workload_authentication_type.setter
|
10870
|
+
def user_workload_authentication_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
10871
|
+
pulumi.set(self, "user_workload_authentication_type", value)
|
10872
|
+
|
10873
|
+
|
10639
10874
|
if not MYPY:
|
10640
10875
|
class SessionTemplateEnvironmentConfigPeripheralsConfigArgsDict(TypedDict):
|
10641
10876
|
metastore_service: NotRequired[pulumi.Input[_builtins.str]]
|
pulumi_gcp/dataproc/batch.py
CHANGED
@@ -734,6 +734,9 @@ class Batch(pulumi.CustomResource):
|
|
734
734
|
"network_uri": "default",
|
735
735
|
"service_account": f"{project.number}-compute@developer.gserviceaccount.com",
|
736
736
|
"staging_bucket": bucket.name,
|
737
|
+
"authentication_config": {
|
738
|
+
"user_workload_authentication_type": "SERVICE_ACCOUNT",
|
739
|
+
},
|
737
740
|
},
|
738
741
|
"peripherals_config": {
|
739
742
|
"metastore_service": ms.name,
|
@@ -1050,6 +1053,9 @@ class Batch(pulumi.CustomResource):
|
|
1050
1053
|
"network_uri": "default",
|
1051
1054
|
"service_account": f"{project.number}-compute@developer.gserviceaccount.com",
|
1052
1055
|
"staging_bucket": bucket.name,
|
1056
|
+
"authentication_config": {
|
1057
|
+
"user_workload_authentication_type": "SERVICE_ACCOUNT",
|
1058
|
+
},
|
1053
1059
|
},
|
1054
1060
|
"peripherals_config": {
|
1055
1061
|
"metastore_service": ms.name,
|
pulumi_gcp/dataproc/cluster.py
CHANGED
@@ -378,6 +378,7 @@ class Cluster(pulumi.CustomResource):
|
|
378
378
|
},
|
379
379
|
cluster_config={
|
380
380
|
"staging_bucket": "dataproc-staging-bucket",
|
381
|
+
"cluster_tier": "CLUSTER_TIER_STANDARD",
|
381
382
|
"master_config": {
|
382
383
|
"num_instances": 1,
|
383
384
|
"machine_type": "e2-medium",
|
@@ -511,6 +512,7 @@ class Cluster(pulumi.CustomResource):
|
|
511
512
|
},
|
512
513
|
cluster_config={
|
513
514
|
"staging_bucket": "dataproc-staging-bucket",
|
515
|
+
"cluster_tier": "CLUSTER_TIER_STANDARD",
|
514
516
|
"master_config": {
|
515
517
|
"num_instances": 1,
|
516
518
|
"machine_type": "e2-medium",
|