pulumi-gcp 7.5.0a1704347630__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -44,7 +44,7 @@ class AwsNodePoolArgs:
|
|
44
44
|
:param pulumi.Input['AwsNodePoolManagementArgs'] management: The Management configuration for this node pool.
|
45
45
|
:param pulumi.Input[str] name: The name of this resource.
|
46
46
|
:param pulumi.Input[str] project: The project for the resource
|
47
|
-
:param pulumi.Input['AwsNodePoolUpdateSettingsArgs'] update_settings:
|
47
|
+
:param pulumi.Input['AwsNodePoolUpdateSettingsArgs'] update_settings: Optional. Update settings control the speed and disruption of the node pool update.
|
48
48
|
"""
|
49
49
|
pulumi.set(__self__, "autoscaling", autoscaling)
|
50
50
|
pulumi.set(__self__, "cluster", cluster)
|
@@ -203,7 +203,7 @@ class AwsNodePoolArgs:
|
|
203
203
|
@pulumi.getter(name="updateSettings")
|
204
204
|
def update_settings(self) -> Optional[pulumi.Input['AwsNodePoolUpdateSettingsArgs']]:
|
205
205
|
"""
|
206
|
-
|
206
|
+
Optional. Update settings control the speed and disruption of the node pool update.
|
207
207
|
"""
|
208
208
|
return pulumi.get(self, "update_settings")
|
209
209
|
|
@@ -256,7 +256,7 @@ class _AwsNodePoolState:
|
|
256
256
|
:param pulumi.Input[str] state: Output only. The lifecycle state of the node pool. Possible values: STATE_UNSPECIFIED, PROVISIONING, RUNNING, RECONCILING, STOPPING, ERROR, DEGRADED
|
257
257
|
:param pulumi.Input[str] subnet_id: The subnet where the node pool node run.
|
258
258
|
:param pulumi.Input[str] uid: Output only. A globally unique identifier for the node pool.
|
259
|
-
:param pulumi.Input['AwsNodePoolUpdateSettingsArgs'] update_settings:
|
259
|
+
:param pulumi.Input['AwsNodePoolUpdateSettingsArgs'] update_settings: Optional. Update settings control the speed and disruption of the node pool update.
|
260
260
|
:param pulumi.Input[str] update_time: Output only. The time at which this node pool was last updated.
|
261
261
|
:param pulumi.Input[str] version: The Kubernetes version to run on this node pool (e.g. `1.19.10-gke.1000`). You can list all supported versions on a given Google Cloud region by calling GetAwsServerConfig.
|
262
262
|
"""
|
@@ -499,7 +499,7 @@ class _AwsNodePoolState:
|
|
499
499
|
@pulumi.getter(name="updateSettings")
|
500
500
|
def update_settings(self) -> Optional[pulumi.Input['AwsNodePoolUpdateSettingsArgs']]:
|
501
501
|
"""
|
502
|
-
|
502
|
+
Optional. Update settings control the speed and disruption of the node pool update.
|
503
503
|
"""
|
504
504
|
return pulumi.get(self, "update_settings")
|
505
505
|
|
@@ -956,7 +956,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
956
956
|
:param pulumi.Input[str] name: The name of this resource.
|
957
957
|
:param pulumi.Input[str] project: The project for the resource
|
958
958
|
:param pulumi.Input[str] subnet_id: The subnet where the node pool node run.
|
959
|
-
:param pulumi.Input[pulumi.InputType['AwsNodePoolUpdateSettingsArgs']] update_settings:
|
959
|
+
:param pulumi.Input[pulumi.InputType['AwsNodePoolUpdateSettingsArgs']] update_settings: Optional. Update settings control the speed and disruption of the node pool update.
|
960
960
|
:param pulumi.Input[str] version: The Kubernetes version to run on this node pool (e.g. `1.19.10-gke.1000`). You can list all supported versions on a given Google Cloud region by calling GetAwsServerConfig.
|
961
961
|
"""
|
962
962
|
...
|
@@ -1481,7 +1481,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1481
1481
|
:param pulumi.Input[str] state: Output only. The lifecycle state of the node pool. Possible values: STATE_UNSPECIFIED, PROVISIONING, RUNNING, RECONCILING, STOPPING, ERROR, DEGRADED
|
1482
1482
|
:param pulumi.Input[str] subnet_id: The subnet where the node pool node run.
|
1483
1483
|
:param pulumi.Input[str] uid: Output only. A globally unique identifier for the node pool.
|
1484
|
-
:param pulumi.Input[pulumi.InputType['AwsNodePoolUpdateSettingsArgs']] update_settings:
|
1484
|
+
:param pulumi.Input[pulumi.InputType['AwsNodePoolUpdateSettingsArgs']] update_settings: Optional. Update settings control the speed and disruption of the node pool update.
|
1485
1485
|
:param pulumi.Input[str] update_time: Output only. The time at which this node pool was last updated.
|
1486
1486
|
:param pulumi.Input[str] version: The Kubernetes version to run on this node pool (e.g. `1.19.10-gke.1000`). You can list all supported versions on a given Google Cloud region by calling GetAwsServerConfig.
|
1487
1487
|
"""
|
@@ -1646,7 +1646,7 @@ class AwsNodePool(pulumi.CustomResource):
|
|
1646
1646
|
@pulumi.getter(name="updateSettings")
|
1647
1647
|
def update_settings(self) -> pulumi.Output['outputs.AwsNodePoolUpdateSettings']:
|
1648
1648
|
"""
|
1649
|
-
|
1649
|
+
Optional. Update settings control the speed and disruption of the node pool update.
|
1650
1650
|
"""
|
1651
1651
|
return pulumi.get(self, "update_settings")
|
1652
1652
|
|
pulumi_gcp/container/cluster.py
CHANGED
@@ -82,6 +82,7 @@ class ClusterArgs:
|
|
82
82
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
83
83
|
tpu_config: Optional[pulumi.Input['ClusterTpuConfigArgs']] = None,
|
84
84
|
vertical_pod_autoscaling: Optional[pulumi.Input['ClusterVerticalPodAutoscalingArgs']] = None,
|
85
|
+
workload_alts_config: Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']] = None,
|
85
86
|
workload_identity_config: Optional[pulumi.Input['ClusterWorkloadIdentityConfigArgs']] = None):
|
86
87
|
"""
|
87
88
|
The set of arguments for constructing a Cluster resource.
|
@@ -145,8 +146,6 @@ class ClusterArgs:
|
|
145
146
|
:param pulumi.Input[bool] enable_tpu: Whether to enable Cloud TPU resources in this cluster.
|
146
147
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
147
148
|
:param pulumi.Input['ClusterFleetArgs'] fleet: Fleet configuration for the cluster. Structure is documented below.
|
148
|
-
|
149
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
150
149
|
:param pulumi.Input['ClusterGatewayApiConfigArgs'] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
151
150
|
:param pulumi.Input['ClusterIdentityServiceConfigArgs'] identity_service_config: . Structure is documented below.
|
152
151
|
:param pulumi.Input[int] initial_node_count: The number of nodes to create in this
|
@@ -286,6 +285,10 @@ class ClusterArgs:
|
|
286
285
|
:param pulumi.Input['ClusterTpuConfigArgs'] tpu_config: TPU configuration for the cluster.
|
287
286
|
:param pulumi.Input['ClusterVerticalPodAutoscalingArgs'] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
288
287
|
Structure is documented below.
|
288
|
+
:param pulumi.Input['ClusterWorkloadAltsConfigArgs'] workload_alts_config: )
|
289
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
290
|
+
|
291
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
289
292
|
:param pulumi.Input['ClusterWorkloadIdentityConfigArgs'] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
290
293
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
291
294
|
Structure is documented below.
|
@@ -422,6 +425,8 @@ class ClusterArgs:
|
|
422
425
|
pulumi.set(__self__, "tpu_config", tpu_config)
|
423
426
|
if vertical_pod_autoscaling is not None:
|
424
427
|
pulumi.set(__self__, "vertical_pod_autoscaling", vertical_pod_autoscaling)
|
428
|
+
if workload_alts_config is not None:
|
429
|
+
pulumi.set(__self__, "workload_alts_config", workload_alts_config)
|
425
430
|
if workload_identity_config is not None:
|
426
431
|
pulumi.set(__self__, "workload_identity_config", workload_identity_config)
|
427
432
|
|
@@ -775,8 +780,6 @@ class ClusterArgs:
|
|
775
780
|
def fleet(self) -> Optional[pulumi.Input['ClusterFleetArgs']]:
|
776
781
|
"""
|
777
782
|
Fleet configuration for the cluster. Structure is documented below.
|
778
|
-
|
779
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
780
783
|
"""
|
781
784
|
return pulumi.get(self, "fleet")
|
782
785
|
|
@@ -1352,6 +1355,21 @@ class ClusterArgs:
|
|
1352
1355
|
def vertical_pod_autoscaling(self, value: Optional[pulumi.Input['ClusterVerticalPodAutoscalingArgs']]):
|
1353
1356
|
pulumi.set(self, "vertical_pod_autoscaling", value)
|
1354
1357
|
|
1358
|
+
@property
|
1359
|
+
@pulumi.getter(name="workloadAltsConfig")
|
1360
|
+
def workload_alts_config(self) -> Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']]:
|
1361
|
+
"""
|
1362
|
+
)
|
1363
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
1364
|
+
|
1365
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1366
|
+
"""
|
1367
|
+
return pulumi.get(self, "workload_alts_config")
|
1368
|
+
|
1369
|
+
@workload_alts_config.setter
|
1370
|
+
def workload_alts_config(self, value: Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']]):
|
1371
|
+
pulumi.set(self, "workload_alts_config", value)
|
1372
|
+
|
1355
1373
|
@property
|
1356
1374
|
@pulumi.getter(name="workloadIdentityConfig")
|
1357
1375
|
def workload_identity_config(self) -> Optional[pulumi.Input['ClusterWorkloadIdentityConfigArgs']]:
|
@@ -1443,6 +1461,7 @@ class _ClusterState:
|
|
1443
1461
|
tpu_config: Optional[pulumi.Input['ClusterTpuConfigArgs']] = None,
|
1444
1462
|
tpu_ipv4_cidr_block: Optional[pulumi.Input[str]] = None,
|
1445
1463
|
vertical_pod_autoscaling: Optional[pulumi.Input['ClusterVerticalPodAutoscalingArgs']] = None,
|
1464
|
+
workload_alts_config: Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']] = None,
|
1446
1465
|
workload_identity_config: Optional[pulumi.Input['ClusterWorkloadIdentityConfigArgs']] = None):
|
1447
1466
|
"""
|
1448
1467
|
Input properties used for looking up and filtering Cluster resources.
|
@@ -1507,8 +1526,6 @@ class _ClusterState:
|
|
1507
1526
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
1508
1527
|
:param pulumi.Input[str] endpoint: The IP address of this cluster's Kubernetes master.
|
1509
1528
|
:param pulumi.Input['ClusterFleetArgs'] fleet: Fleet configuration for the cluster. Structure is documented below.
|
1510
|
-
|
1511
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1512
1529
|
:param pulumi.Input['ClusterGatewayApiConfigArgs'] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
1513
1530
|
:param pulumi.Input['ClusterIdentityServiceConfigArgs'] identity_service_config: . Structure is documented below.
|
1514
1531
|
:param pulumi.Input[int] initial_node_count: The number of nodes to create in this
|
@@ -1660,6 +1677,10 @@ class _ClusterState:
|
|
1660
1677
|
notation (e.g. `1.2.3.4/29`).
|
1661
1678
|
:param pulumi.Input['ClusterVerticalPodAutoscalingArgs'] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
1662
1679
|
Structure is documented below.
|
1680
|
+
:param pulumi.Input['ClusterWorkloadAltsConfigArgs'] workload_alts_config: )
|
1681
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
1682
|
+
|
1683
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1663
1684
|
:param pulumi.Input['ClusterWorkloadIdentityConfigArgs'] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
1664
1685
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
1665
1686
|
Structure is documented below.
|
@@ -1810,6 +1831,8 @@ class _ClusterState:
|
|
1810
1831
|
pulumi.set(__self__, "tpu_ipv4_cidr_block", tpu_ipv4_cidr_block)
|
1811
1832
|
if vertical_pod_autoscaling is not None:
|
1812
1833
|
pulumi.set(__self__, "vertical_pod_autoscaling", vertical_pod_autoscaling)
|
1834
|
+
if workload_alts_config is not None:
|
1835
|
+
pulumi.set(__self__, "workload_alts_config", workload_alts_config)
|
1813
1836
|
if workload_identity_config is not None:
|
1814
1837
|
pulumi.set(__self__, "workload_identity_config", workload_identity_config)
|
1815
1838
|
|
@@ -2175,8 +2198,6 @@ class _ClusterState:
|
|
2175
2198
|
def fleet(self) -> Optional[pulumi.Input['ClusterFleetArgs']]:
|
2176
2199
|
"""
|
2177
2200
|
Fleet configuration for the cluster. Structure is documented below.
|
2178
|
-
|
2179
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
2180
2201
|
"""
|
2181
2202
|
return pulumi.get(self, "fleet")
|
2182
2203
|
|
@@ -2828,6 +2849,21 @@ class _ClusterState:
|
|
2828
2849
|
def vertical_pod_autoscaling(self, value: Optional[pulumi.Input['ClusterVerticalPodAutoscalingArgs']]):
|
2829
2850
|
pulumi.set(self, "vertical_pod_autoscaling", value)
|
2830
2851
|
|
2852
|
+
@property
|
2853
|
+
@pulumi.getter(name="workloadAltsConfig")
|
2854
|
+
def workload_alts_config(self) -> Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']]:
|
2855
|
+
"""
|
2856
|
+
)
|
2857
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
2858
|
+
|
2859
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
2860
|
+
"""
|
2861
|
+
return pulumi.get(self, "workload_alts_config")
|
2862
|
+
|
2863
|
+
@workload_alts_config.setter
|
2864
|
+
def workload_alts_config(self, value: Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']]):
|
2865
|
+
pulumi.set(self, "workload_alts_config", value)
|
2866
|
+
|
2831
2867
|
@property
|
2832
2868
|
@pulumi.getter(name="workloadIdentityConfig")
|
2833
2869
|
def workload_identity_config(self) -> Optional[pulumi.Input['ClusterWorkloadIdentityConfigArgs']]:
|
@@ -2914,6 +2950,7 @@ class Cluster(pulumi.CustomResource):
|
|
2914
2950
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
2915
2951
|
tpu_config: Optional[pulumi.Input[pulumi.InputType['ClusterTpuConfigArgs']]] = None,
|
2916
2952
|
vertical_pod_autoscaling: Optional[pulumi.Input[pulumi.InputType['ClusterVerticalPodAutoscalingArgs']]] = None,
|
2953
|
+
workload_alts_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadAltsConfigArgs']]] = None,
|
2917
2954
|
workload_identity_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadIdentityConfigArgs']]] = None,
|
2918
2955
|
__props__=None):
|
2919
2956
|
"""
|
@@ -3060,8 +3097,6 @@ class Cluster(pulumi.CustomResource):
|
|
3060
3097
|
:param pulumi.Input[bool] enable_tpu: Whether to enable Cloud TPU resources in this cluster.
|
3061
3098
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
3062
3099
|
:param pulumi.Input[pulumi.InputType['ClusterFleetArgs']] fleet: Fleet configuration for the cluster. Structure is documented below.
|
3063
|
-
|
3064
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3065
3100
|
:param pulumi.Input[pulumi.InputType['ClusterGatewayApiConfigArgs']] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
3066
3101
|
:param pulumi.Input[pulumi.InputType['ClusterIdentityServiceConfigArgs']] identity_service_config: . Structure is documented below.
|
3067
3102
|
:param pulumi.Input[int] initial_node_count: The number of nodes to create in this
|
@@ -3201,6 +3236,10 @@ class Cluster(pulumi.CustomResource):
|
|
3201
3236
|
:param pulumi.Input[pulumi.InputType['ClusterTpuConfigArgs']] tpu_config: TPU configuration for the cluster.
|
3202
3237
|
:param pulumi.Input[pulumi.InputType['ClusterVerticalPodAutoscalingArgs']] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
3203
3238
|
Structure is documented below.
|
3239
|
+
:param pulumi.Input[pulumi.InputType['ClusterWorkloadAltsConfigArgs']] workload_alts_config: )
|
3240
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
3241
|
+
|
3242
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3204
3243
|
:param pulumi.Input[pulumi.InputType['ClusterWorkloadIdentityConfigArgs']] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
3205
3244
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
3206
3245
|
Structure is documented below.
|
@@ -3374,6 +3413,7 @@ class Cluster(pulumi.CustomResource):
|
|
3374
3413
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
3375
3414
|
tpu_config: Optional[pulumi.Input[pulumi.InputType['ClusterTpuConfigArgs']]] = None,
|
3376
3415
|
vertical_pod_autoscaling: Optional[pulumi.Input[pulumi.InputType['ClusterVerticalPodAutoscalingArgs']]] = None,
|
3416
|
+
workload_alts_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadAltsConfigArgs']]] = None,
|
3377
3417
|
workload_identity_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadIdentityConfigArgs']]] = None,
|
3378
3418
|
__props__=None):
|
3379
3419
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -3450,6 +3490,7 @@ class Cluster(pulumi.CustomResource):
|
|
3450
3490
|
__props__.__dict__["subnetwork"] = subnetwork
|
3451
3491
|
__props__.__dict__["tpu_config"] = tpu_config
|
3452
3492
|
__props__.__dict__["vertical_pod_autoscaling"] = vertical_pod_autoscaling
|
3493
|
+
__props__.__dict__["workload_alts_config"] = workload_alts_config
|
3453
3494
|
__props__.__dict__["workload_identity_config"] = workload_identity_config
|
3454
3495
|
__props__.__dict__["endpoint"] = None
|
3455
3496
|
__props__.__dict__["label_fingerprint"] = None
|
@@ -3541,6 +3582,7 @@ class Cluster(pulumi.CustomResource):
|
|
3541
3582
|
tpu_config: Optional[pulumi.Input[pulumi.InputType['ClusterTpuConfigArgs']]] = None,
|
3542
3583
|
tpu_ipv4_cidr_block: Optional[pulumi.Input[str]] = None,
|
3543
3584
|
vertical_pod_autoscaling: Optional[pulumi.Input[pulumi.InputType['ClusterVerticalPodAutoscalingArgs']]] = None,
|
3585
|
+
workload_alts_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadAltsConfigArgs']]] = None,
|
3544
3586
|
workload_identity_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadIdentityConfigArgs']]] = None) -> 'Cluster':
|
3545
3587
|
"""
|
3546
3588
|
Get an existing Cluster resource's state with the given name, id, and optional extra
|
@@ -3610,8 +3652,6 @@ class Cluster(pulumi.CustomResource):
|
|
3610
3652
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
3611
3653
|
:param pulumi.Input[str] endpoint: The IP address of this cluster's Kubernetes master.
|
3612
3654
|
:param pulumi.Input[pulumi.InputType['ClusterFleetArgs']] fleet: Fleet configuration for the cluster. Structure is documented below.
|
3613
|
-
|
3614
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3615
3655
|
:param pulumi.Input[pulumi.InputType['ClusterGatewayApiConfigArgs']] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
3616
3656
|
:param pulumi.Input[pulumi.InputType['ClusterIdentityServiceConfigArgs']] identity_service_config: . Structure is documented below.
|
3617
3657
|
:param pulumi.Input[int] initial_node_count: The number of nodes to create in this
|
@@ -3763,6 +3803,10 @@ class Cluster(pulumi.CustomResource):
|
|
3763
3803
|
notation (e.g. `1.2.3.4/29`).
|
3764
3804
|
:param pulumi.Input[pulumi.InputType['ClusterVerticalPodAutoscalingArgs']] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
3765
3805
|
Structure is documented below.
|
3806
|
+
:param pulumi.Input[pulumi.InputType['ClusterWorkloadAltsConfigArgs']] workload_alts_config: )
|
3807
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
3808
|
+
|
3809
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3766
3810
|
:param pulumi.Input[pulumi.InputType['ClusterWorkloadIdentityConfigArgs']] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
3767
3811
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
3768
3812
|
Structure is documented below.
|
@@ -3844,6 +3888,7 @@ class Cluster(pulumi.CustomResource):
|
|
3844
3888
|
__props__.__dict__["tpu_config"] = tpu_config
|
3845
3889
|
__props__.__dict__["tpu_ipv4_cidr_block"] = tpu_ipv4_cidr_block
|
3846
3890
|
__props__.__dict__["vertical_pod_autoscaling"] = vertical_pod_autoscaling
|
3891
|
+
__props__.__dict__["workload_alts_config"] = workload_alts_config
|
3847
3892
|
__props__.__dict__["workload_identity_config"] = workload_identity_config
|
3848
3893
|
return Cluster(resource_name, opts=opts, __props__=__props__)
|
3849
3894
|
|
@@ -4101,8 +4146,6 @@ class Cluster(pulumi.CustomResource):
|
|
4101
4146
|
def fleet(self) -> pulumi.Output[Optional['outputs.ClusterFleet']]:
|
4102
4147
|
"""
|
4103
4148
|
Fleet configuration for the cluster. Structure is documented below.
|
4104
|
-
|
4105
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
4106
4149
|
"""
|
4107
4150
|
return pulumi.get(self, "fleet")
|
4108
4151
|
|
@@ -4570,6 +4613,17 @@ class Cluster(pulumi.CustomResource):
|
|
4570
4613
|
"""
|
4571
4614
|
return pulumi.get(self, "vertical_pod_autoscaling")
|
4572
4615
|
|
4616
|
+
@property
|
4617
|
+
@pulumi.getter(name="workloadAltsConfig")
|
4618
|
+
def workload_alts_config(self) -> pulumi.Output['outputs.ClusterWorkloadAltsConfig']:
|
4619
|
+
"""
|
4620
|
+
)
|
4621
|
+
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
4622
|
+
|
4623
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
4624
|
+
"""
|
4625
|
+
return pulumi.get(self, "workload_alts_config")
|
4626
|
+
|
4573
4627
|
@property
|
4574
4628
|
@pulumi.getter(name="workloadIdentityConfig")
|
4575
4629
|
def workload_identity_config(self) -> pulumi.Output['outputs.ClusterWorkloadIdentityConfig']:
|
@@ -22,7 +22,7 @@ class GetClusterResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getCluster.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, addons_configs=None, allow_net_admin=None, authenticator_groups_configs=None, binary_authorizations=None, cluster_autoscalings=None, cluster_ipv4_cidr=None, cluster_telemetries=None, confidential_nodes=None, cost_management_configs=None, database_encryptions=None, datapath_provider=None, default_max_pods_per_node=None, default_snat_statuses=None, deletion_protection=None, description=None, dns_configs=None, enable_autopilot=None, enable_fqdn_network_policy=None, enable_intranode_visibility=None, enable_k8s_beta_apis=None, enable_kubernetes_alpha=None, enable_l4_ilb_subsetting=None, enable_legacy_abac=None, enable_multi_networking=None, enable_shielded_nodes=None, enable_tpu=None, endpoint=None, fleets=None, gateway_api_configs=None, id=None, identity_service_configs=None, initial_node_count=None, ip_allocation_policies=None, label_fingerprint=None, location=None, logging_configs=None, logging_service=None, maintenance_policies=None, master_authorized_networks_configs=None, master_auths=None, master_version=None, mesh_certificates=None, min_master_version=None, monitoring_configs=None, monitoring_service=None, name=None, network=None, network_policies=None, networking_mode=None, node_configs=None, node_locations=None, node_pool_auto_configs=None, node_pool_defaults=None, node_pools=None, node_version=None, notification_configs=None, operation=None, pod_security_policy_configs=None, private_cluster_configs=None, private_ipv6_google_access=None, project=None, protect_configs=None, release_channels=None, remove_default_node_pool=None, resource_labels=None, resource_usage_export_configs=None, security_posture_configs=None, self_link=None, service_external_ips_configs=None, services_ipv4_cidr=None, subnetwork=None, tpu_configs=None, tpu_ipv4_cidr_block=None, vertical_pod_autoscalings=None, workload_identity_configs=None):
|
25
|
+
def __init__(__self__, addons_configs=None, allow_net_admin=None, authenticator_groups_configs=None, binary_authorizations=None, cluster_autoscalings=None, cluster_ipv4_cidr=None, cluster_telemetries=None, confidential_nodes=None, cost_management_configs=None, database_encryptions=None, datapath_provider=None, default_max_pods_per_node=None, default_snat_statuses=None, deletion_protection=None, description=None, dns_configs=None, enable_autopilot=None, enable_fqdn_network_policy=None, enable_intranode_visibility=None, enable_k8s_beta_apis=None, enable_kubernetes_alpha=None, enable_l4_ilb_subsetting=None, enable_legacy_abac=None, enable_multi_networking=None, enable_shielded_nodes=None, enable_tpu=None, endpoint=None, fleets=None, gateway_api_configs=None, id=None, identity_service_configs=None, initial_node_count=None, ip_allocation_policies=None, label_fingerprint=None, location=None, logging_configs=None, logging_service=None, maintenance_policies=None, master_authorized_networks_configs=None, master_auths=None, master_version=None, mesh_certificates=None, min_master_version=None, monitoring_configs=None, monitoring_service=None, name=None, network=None, network_policies=None, networking_mode=None, node_configs=None, node_locations=None, node_pool_auto_configs=None, node_pool_defaults=None, node_pools=None, node_version=None, notification_configs=None, operation=None, pod_security_policy_configs=None, private_cluster_configs=None, private_ipv6_google_access=None, project=None, protect_configs=None, release_channels=None, remove_default_node_pool=None, resource_labels=None, resource_usage_export_configs=None, security_posture_configs=None, self_link=None, service_external_ips_configs=None, services_ipv4_cidr=None, subnetwork=None, tpu_configs=None, tpu_ipv4_cidr_block=None, vertical_pod_autoscalings=None, workload_alts_configs=None, workload_identity_configs=None):
|
26
26
|
if addons_configs and not isinstance(addons_configs, list):
|
27
27
|
raise TypeError("Expected argument 'addons_configs' to be a list")
|
28
28
|
pulumi.set(__self__, "addons_configs", addons_configs)
|
@@ -245,6 +245,9 @@ class GetClusterResult:
|
|
245
245
|
if vertical_pod_autoscalings and not isinstance(vertical_pod_autoscalings, list):
|
246
246
|
raise TypeError("Expected argument 'vertical_pod_autoscalings' to be a list")
|
247
247
|
pulumi.set(__self__, "vertical_pod_autoscalings", vertical_pod_autoscalings)
|
248
|
+
if workload_alts_configs and not isinstance(workload_alts_configs, list):
|
249
|
+
raise TypeError("Expected argument 'workload_alts_configs' to be a list")
|
250
|
+
pulumi.set(__self__, "workload_alts_configs", workload_alts_configs)
|
248
251
|
if workload_identity_configs and not isinstance(workload_identity_configs, list):
|
249
252
|
raise TypeError("Expected argument 'workload_identity_configs' to be a list")
|
250
253
|
pulumi.set(__self__, "workload_identity_configs", workload_identity_configs)
|
@@ -622,6 +625,11 @@ class GetClusterResult:
|
|
622
625
|
def vertical_pod_autoscalings(self) -> Sequence['outputs.GetClusterVerticalPodAutoscalingResult']:
|
623
626
|
return pulumi.get(self, "vertical_pod_autoscalings")
|
624
627
|
|
628
|
+
@property
|
629
|
+
@pulumi.getter(name="workloadAltsConfigs")
|
630
|
+
def workload_alts_configs(self) -> Sequence['outputs.GetClusterWorkloadAltsConfigResult']:
|
631
|
+
return pulumi.get(self, "workload_alts_configs")
|
632
|
+
|
625
633
|
@property
|
626
634
|
@pulumi.getter(name="workloadIdentityConfigs")
|
627
635
|
def workload_identity_configs(self) -> Sequence['outputs.GetClusterWorkloadIdentityConfigResult']:
|
@@ -708,6 +716,7 @@ class AwaitableGetClusterResult(GetClusterResult):
|
|
708
716
|
tpu_configs=self.tpu_configs,
|
709
717
|
tpu_ipv4_cidr_block=self.tpu_ipv4_cidr_block,
|
710
718
|
vertical_pod_autoscalings=self.vertical_pod_autoscalings,
|
719
|
+
workload_alts_configs=self.workload_alts_configs,
|
711
720
|
workload_identity_configs=self.workload_identity_configs)
|
712
721
|
|
713
722
|
|
@@ -822,6 +831,7 @@ def get_cluster(location: Optional[str] = None,
|
|
822
831
|
tpu_configs=pulumi.get(__ret__, 'tpu_configs'),
|
823
832
|
tpu_ipv4_cidr_block=pulumi.get(__ret__, 'tpu_ipv4_cidr_block'),
|
824
833
|
vertical_pod_autoscalings=pulumi.get(__ret__, 'vertical_pod_autoscalings'),
|
834
|
+
workload_alts_configs=pulumi.get(__ret__, 'workload_alts_configs'),
|
825
835
|
workload_identity_configs=pulumi.get(__ret__, 'workload_identity_configs'))
|
826
836
|
|
827
837
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -209,6 +209,7 @@ __all__ = [
|
|
209
209
|
'ClusterServiceExternalIpsConfig',
|
210
210
|
'ClusterTpuConfig',
|
211
211
|
'ClusterVerticalPodAutoscaling',
|
212
|
+
'ClusterWorkloadAltsConfig',
|
212
213
|
'ClusterWorkloadIdentityConfig',
|
213
214
|
'NodePoolAutoscaling',
|
214
215
|
'NodePoolManagement',
|
@@ -376,6 +377,7 @@ __all__ = [
|
|
376
377
|
'GetClusterServiceExternalIpsConfigResult',
|
377
378
|
'GetClusterTpuConfigResult',
|
378
379
|
'GetClusterVerticalPodAutoscalingResult',
|
380
|
+
'GetClusterWorkloadAltsConfigResult',
|
379
381
|
'GetClusterWorkloadIdentityConfigResult',
|
380
382
|
]
|
381
383
|
|
@@ -11190,6 +11192,41 @@ class ClusterVerticalPodAutoscaling(dict):
|
|
11190
11192
|
return pulumi.get(self, "enabled")
|
11191
11193
|
|
11192
11194
|
|
11195
|
+
@pulumi.output_type
|
11196
|
+
class ClusterWorkloadAltsConfig(dict):
|
11197
|
+
@staticmethod
|
11198
|
+
def __key_warning(key: str):
|
11199
|
+
suggest = None
|
11200
|
+
if key == "enableAlts":
|
11201
|
+
suggest = "enable_alts"
|
11202
|
+
|
11203
|
+
if suggest:
|
11204
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterWorkloadAltsConfig. Access the value via the '{suggest}' property getter instead.")
|
11205
|
+
|
11206
|
+
def __getitem__(self, key: str) -> Any:
|
11207
|
+
ClusterWorkloadAltsConfig.__key_warning(key)
|
11208
|
+
return super().__getitem__(key)
|
11209
|
+
|
11210
|
+
def get(self, key: str, default = None) -> Any:
|
11211
|
+
ClusterWorkloadAltsConfig.__key_warning(key)
|
11212
|
+
return super().get(key, default)
|
11213
|
+
|
11214
|
+
def __init__(__self__, *,
|
11215
|
+
enable_alts: bool):
|
11216
|
+
"""
|
11217
|
+
:param bool enable_alts: Whether the alts handshaker should be enabled or not for direct-path. Requires Workload Identity (workloadPool) must be non-empty).
|
11218
|
+
"""
|
11219
|
+
pulumi.set(__self__, "enable_alts", enable_alts)
|
11220
|
+
|
11221
|
+
@property
|
11222
|
+
@pulumi.getter(name="enableAlts")
|
11223
|
+
def enable_alts(self) -> bool:
|
11224
|
+
"""
|
11225
|
+
Whether the alts handshaker should be enabled or not for direct-path. Requires Workload Identity (workloadPool) must be non-empty).
|
11226
|
+
"""
|
11227
|
+
return pulumi.get(self, "enable_alts")
|
11228
|
+
|
11229
|
+
|
11193
11230
|
@pulumi.output_type
|
11194
11231
|
class ClusterWorkloadIdentityConfig(dict):
|
11195
11232
|
@staticmethod
|
@@ -16215,6 +16252,18 @@ class GetClusterVerticalPodAutoscalingResult(dict):
|
|
16215
16252
|
return pulumi.get(self, "enabled")
|
16216
16253
|
|
16217
16254
|
|
16255
|
+
@pulumi.output_type
|
16256
|
+
class GetClusterWorkloadAltsConfigResult(dict):
|
16257
|
+
def __init__(__self__, *,
|
16258
|
+
enable_alts: bool):
|
16259
|
+
pulumi.set(__self__, "enable_alts", enable_alts)
|
16260
|
+
|
16261
|
+
@property
|
16262
|
+
@pulumi.getter(name="enableAlts")
|
16263
|
+
def enable_alts(self) -> bool:
|
16264
|
+
return pulumi.get(self, "enable_alts")
|
16265
|
+
|
16266
|
+
|
16218
16267
|
@pulumi.output_type
|
16219
16268
|
class GetClusterWorkloadIdentityConfigResult(dict):
|
16220
16269
|
def __init__(__self__, *,
|
pulumi_gcp/dataflow/pipeline.py
CHANGED
@@ -909,7 +909,7 @@ class Pipeline(pulumi.CustomResource):
|
|
909
909
|
|
910
910
|
@property
|
911
911
|
@pulumi.getter(name="schedulerServiceAccountEmail")
|
912
|
-
def scheduler_service_account_email(self) -> pulumi.Output[
|
912
|
+
def scheduler_service_account_email(self) -> pulumi.Output[str]:
|
913
913
|
"""
|
914
914
|
Optional. A service account email to be used with the Cloud Scheduler job. If not specified, the default compute engine service account will be used.
|
915
915
|
"""
|