pulumi-gcp 7.27.0a1718103841__py3-none-any.whl → 7.27.0a1718279079__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 +32 -0
- pulumi_gcp/appengine/_inputs.py +40 -0
- pulumi_gcp/appengine/flexible_app_version.py +47 -0
- pulumi_gcp/appengine/outputs.py +51 -0
- pulumi_gcp/bigtable/instance.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +16 -0
- pulumi_gcp/clouddeploy/outputs.py +12 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/_inputs.py +84 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/disk.py +68 -0
- pulumi_gcp/compute/get_backend_service.py +11 -1
- pulumi_gcp/compute/get_disk.py +11 -1
- pulumi_gcp/compute/get_instance.py +11 -1
- pulumi_gcp/compute/get_instance_group_manager.py +31 -1
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_security_policy.py +214 -0
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +47 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/instance_group_manager.py +185 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/outputs.py +1039 -0
- pulumi_gcp/compute/project_cloud_armor_tier.py +336 -0
- pulumi_gcp/compute/region_instance_group_manager.py +185 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +33 -4
- pulumi_gcp/container/cluster.py +61 -0
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +48 -4
- pulumi_gcp/dataloss/_inputs.py +185 -19
- pulumi_gcp/dataloss/outputs.py +206 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +54 -0
- pulumi_gcp/gkebackup/_inputs.py +282 -7
- pulumi_gcp/gkebackup/backup_plan.py +100 -0
- pulumi_gcp/gkebackup/outputs.py +312 -7
- pulumi_gcp/gkebackup/restore_plan.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +326 -0
- pulumi_gcp/healthcare/_inputs.py +17 -1
- pulumi_gcp/healthcare/dicom_store.py +2 -0
- pulumi_gcp/healthcare/fhir_store.py +44 -60
- pulumi_gcp/healthcare/outputs.py +15 -1
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +47 -0
- pulumi_gcp/kms/crypto_key.py +14 -7
- pulumi_gcp/netapp/_inputs.py +58 -0
- pulumi_gcp/netapp/outputs.py +67 -0
- pulumi_gcp/netapp/volume.py +54 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/_inputs.py +47 -0
- pulumi_gcp/networkservices/outputs.py +56 -0
- pulumi_gcp/networkservices/service_lb_policies.py +782 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +44 -0
- pulumi_gcp/redis/cluster.py +128 -3
- pulumi_gcp/redis/outputs.py +36 -0
- pulumi_gcp/secretmanager/_inputs.py +20 -0
- pulumi_gcp/secretmanager/outputs.py +20 -0
- pulumi_gcp/secretmanager/secret_iam_binding.py +244 -0
- pulumi_gcp/secretmanager/secret_iam_member.py +244 -0
- pulumi_gcp/secretmanager/secret_iam_policy.py +224 -0
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +568 -0
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/instance_config.py +569 -0
- pulumi_gcp/spanner/outputs.py +73 -0
- pulumi_gcp/sql/_inputs.py +8 -2
- pulumi_gcp/sql/outputs.py +9 -6
- pulumi_gcp/workstations/_inputs.py +51 -1
- pulumi_gcp/workstations/outputs.py +46 -2
- pulumi_gcp/workstations/workstation_config.py +10 -4
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/RECORD +81 -76
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -219,6 +219,7 @@ __all__ = [
|
|
219
219
|
'ClusterReleaseChannelArgs',
|
220
220
|
'ClusterResourceUsageExportConfigArgs',
|
221
221
|
'ClusterResourceUsageExportConfigBigqueryDestinationArgs',
|
222
|
+
'ClusterSecretManagerConfigArgs',
|
222
223
|
'ClusterSecurityPostureConfigArgs',
|
223
224
|
'ClusterServiceExternalIpsConfigArgs',
|
224
225
|
'ClusterTpuConfigArgs',
|
@@ -11063,6 +11064,28 @@ class ClusterResourceUsageExportConfigBigqueryDestinationArgs:
|
|
11063
11064
|
pulumi.set(self, "dataset_id", value)
|
11064
11065
|
|
11065
11066
|
|
11067
|
+
@pulumi.input_type
|
11068
|
+
class ClusterSecretManagerConfigArgs:
|
11069
|
+
def __init__(__self__, *,
|
11070
|
+
enabled: pulumi.Input[bool]):
|
11071
|
+
"""
|
11072
|
+
:param pulumi.Input[bool] enabled: Enable the Secret Manager add-on for this cluster.
|
11073
|
+
"""
|
11074
|
+
pulumi.set(__self__, "enabled", enabled)
|
11075
|
+
|
11076
|
+
@property
|
11077
|
+
@pulumi.getter
|
11078
|
+
def enabled(self) -> pulumi.Input[bool]:
|
11079
|
+
"""
|
11080
|
+
Enable the Secret Manager add-on for this cluster.
|
11081
|
+
"""
|
11082
|
+
return pulumi.get(self, "enabled")
|
11083
|
+
|
11084
|
+
@enabled.setter
|
11085
|
+
def enabled(self, value: pulumi.Input[bool]):
|
11086
|
+
pulumi.set(self, "enabled", value)
|
11087
|
+
|
11088
|
+
|
11066
11089
|
@pulumi.input_type
|
11067
11090
|
class ClusterSecurityPostureConfigArgs:
|
11068
11091
|
def __init__(__self__, *,
|
@@ -11409,8 +11432,8 @@ class NodePoolNetworkConfigArgs:
|
|
11409
11432
|
Structure is documented below
|
11410
11433
|
:param pulumi.Input[bool] create_pod_range: Whether to create a new range for pod IPs in this node pool. Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are not specified.
|
11411
11434
|
:param pulumi.Input[bool] enable_private_nodes: Whether nodes have internal IP addresses only.
|
11412
|
-
:param pulumi.Input['NodePoolNetworkConfigNetworkPerformanceConfigArgs'] network_performance_config: Network bandwidth tier configuration.
|
11413
|
-
:param pulumi.Input['NodePoolNetworkConfigPodCidrOverprovisionConfigArgs'] pod_cidr_overprovision_config: Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited
|
11435
|
+
:param pulumi.Input['NodePoolNetworkConfigNetworkPerformanceConfigArgs'] network_performance_config: Network bandwidth tier configuration. Structure is documented below.
|
11436
|
+
:param pulumi.Input['NodePoolNetworkConfigPodCidrOverprovisionConfigArgs'] pod_cidr_overprovision_config: Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited. Structure is documented below.
|
11414
11437
|
:param pulumi.Input[str] pod_ipv4_cidr_block: The IP address range for pod IPs in this node pool. Only applicable if createPodRange is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) to pick a specific range to use.
|
11415
11438
|
:param pulumi.Input[str] pod_range: The ID of the secondary range for pod IPs. If `create_pod_range` is true, this ID is used for the new range. If `create_pod_range` is false, uses an existing secondary range with this ID.
|
11416
11439
|
"""
|
@@ -11485,7 +11508,7 @@ class NodePoolNetworkConfigArgs:
|
|
11485
11508
|
@pulumi.getter(name="networkPerformanceConfig")
|
11486
11509
|
def network_performance_config(self) -> Optional[pulumi.Input['NodePoolNetworkConfigNetworkPerformanceConfigArgs']]:
|
11487
11510
|
"""
|
11488
|
-
Network bandwidth tier configuration.
|
11511
|
+
Network bandwidth tier configuration. Structure is documented below.
|
11489
11512
|
"""
|
11490
11513
|
return pulumi.get(self, "network_performance_config")
|
11491
11514
|
|
@@ -11497,7 +11520,7 @@ class NodePoolNetworkConfigArgs:
|
|
11497
11520
|
@pulumi.getter(name="podCidrOverprovisionConfig")
|
11498
11521
|
def pod_cidr_overprovision_config(self) -> Optional[pulumi.Input['NodePoolNetworkConfigPodCidrOverprovisionConfigArgs']]:
|
11499
11522
|
"""
|
11500
|
-
Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited
|
11523
|
+
Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited. Structure is documented below.
|
11501
11524
|
"""
|
11502
11525
|
return pulumi.get(self, "pod_cidr_overprovision_config")
|
11503
11526
|
|
@@ -11650,11 +11673,17 @@ class NodePoolNetworkConfigNetworkPerformanceConfigArgs:
|
|
11650
11673
|
class NodePoolNetworkConfigPodCidrOverprovisionConfigArgs:
|
11651
11674
|
def __init__(__self__, *,
|
11652
11675
|
disabled: pulumi.Input[bool]):
|
11676
|
+
"""
|
11677
|
+
:param pulumi.Input[bool] disabled: Whether pod cidr overprovision is disabled.
|
11678
|
+
"""
|
11653
11679
|
pulumi.set(__self__, "disabled", disabled)
|
11654
11680
|
|
11655
11681
|
@property
|
11656
11682
|
@pulumi.getter
|
11657
11683
|
def disabled(self) -> pulumi.Input[bool]:
|
11684
|
+
"""
|
11685
|
+
Whether pod cidr overprovision is disabled.
|
11686
|
+
"""
|
11658
11687
|
return pulumi.get(self, "disabled")
|
11659
11688
|
|
11660
11689
|
@disabled.setter
|
pulumi_gcp/container/cluster.py
CHANGED
@@ -78,6 +78,7 @@ class ClusterArgs:
|
|
78
78
|
remove_default_node_pool: Optional[pulumi.Input[bool]] = None,
|
79
79
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
80
80
|
resource_usage_export_config: Optional[pulumi.Input['ClusterResourceUsageExportConfigArgs']] = None,
|
81
|
+
secret_manager_config: Optional[pulumi.Input['ClusterSecretManagerConfigArgs']] = None,
|
81
82
|
security_posture_config: Optional[pulumi.Input['ClusterSecurityPostureConfigArgs']] = None,
|
82
83
|
service_external_ips_config: Optional[pulumi.Input['ClusterServiceExternalIpsConfigArgs']] = None,
|
83
84
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
@@ -275,6 +276,9 @@ class ClusterArgs:
|
|
275
276
|
:param pulumi.Input['ClusterResourceUsageExportConfigArgs'] resource_usage_export_config: Configuration for the
|
276
277
|
[ResourceUsageExportConfig](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-usage-metering) feature.
|
277
278
|
Structure is documented below.
|
279
|
+
:param pulumi.Input['ClusterSecretManagerConfigArgs'] secret_manager_config: Configuration for the
|
280
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
281
|
+
Structure is documented below.
|
278
282
|
:param pulumi.Input['ClusterSecurityPostureConfigArgs'] security_posture_config: Enable/Disable Security Posture API features for the cluster. Structure is documented below.
|
279
283
|
:param pulumi.Input['ClusterServiceExternalIpsConfigArgs'] service_external_ips_config: Structure is documented below.
|
280
284
|
:param pulumi.Input[str] subnetwork: The name or self_link of the Google Compute Engine
|
@@ -413,6 +417,8 @@ class ClusterArgs:
|
|
413
417
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
414
418
|
if resource_usage_export_config is not None:
|
415
419
|
pulumi.set(__self__, "resource_usage_export_config", resource_usage_export_config)
|
420
|
+
if secret_manager_config is not None:
|
421
|
+
pulumi.set(__self__, "secret_manager_config", secret_manager_config)
|
416
422
|
if security_posture_config is not None:
|
417
423
|
pulumi.set(__self__, "security_posture_config", security_posture_config)
|
418
424
|
if service_external_ips_config is not None:
|
@@ -1296,6 +1302,20 @@ class ClusterArgs:
|
|
1296
1302
|
def resource_usage_export_config(self, value: Optional[pulumi.Input['ClusterResourceUsageExportConfigArgs']]):
|
1297
1303
|
pulumi.set(self, "resource_usage_export_config", value)
|
1298
1304
|
|
1305
|
+
@property
|
1306
|
+
@pulumi.getter(name="secretManagerConfig")
|
1307
|
+
def secret_manager_config(self) -> Optional[pulumi.Input['ClusterSecretManagerConfigArgs']]:
|
1308
|
+
"""
|
1309
|
+
Configuration for the
|
1310
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
1311
|
+
Structure is documented below.
|
1312
|
+
"""
|
1313
|
+
return pulumi.get(self, "secret_manager_config")
|
1314
|
+
|
1315
|
+
@secret_manager_config.setter
|
1316
|
+
def secret_manager_config(self, value: Optional[pulumi.Input['ClusterSecretManagerConfigArgs']]):
|
1317
|
+
pulumi.set(self, "secret_manager_config", value)
|
1318
|
+
|
1299
1319
|
@property
|
1300
1320
|
@pulumi.getter(name="securityPostureConfig")
|
1301
1321
|
def security_posture_config(self) -> Optional[pulumi.Input['ClusterSecurityPostureConfigArgs']]:
|
@@ -1456,6 +1476,7 @@ class _ClusterState:
|
|
1456
1476
|
remove_default_node_pool: Optional[pulumi.Input[bool]] = None,
|
1457
1477
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1458
1478
|
resource_usage_export_config: Optional[pulumi.Input['ClusterResourceUsageExportConfigArgs']] = None,
|
1479
|
+
secret_manager_config: Optional[pulumi.Input['ClusterSecretManagerConfigArgs']] = None,
|
1459
1480
|
security_posture_config: Optional[pulumi.Input['ClusterSecurityPostureConfigArgs']] = None,
|
1460
1481
|
self_link: Optional[pulumi.Input[str]] = None,
|
1461
1482
|
service_external_ips_config: Optional[pulumi.Input['ClusterServiceExternalIpsConfigArgs']] = None,
|
@@ -1661,6 +1682,9 @@ class _ClusterState:
|
|
1661
1682
|
:param pulumi.Input['ClusterResourceUsageExportConfigArgs'] resource_usage_export_config: Configuration for the
|
1662
1683
|
[ResourceUsageExportConfig](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-usage-metering) feature.
|
1663
1684
|
Structure is documented below.
|
1685
|
+
:param pulumi.Input['ClusterSecretManagerConfigArgs'] secret_manager_config: Configuration for the
|
1686
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
1687
|
+
Structure is documented below.
|
1664
1688
|
:param pulumi.Input['ClusterSecurityPostureConfigArgs'] security_posture_config: Enable/Disable Security Posture API features for the cluster. Structure is documented below.
|
1665
1689
|
:param pulumi.Input[str] self_link: The server-defined URL for the resource.
|
1666
1690
|
:param pulumi.Input['ClusterServiceExternalIpsConfigArgs'] service_external_ips_config: Structure is documented below.
|
@@ -1815,6 +1839,8 @@ class _ClusterState:
|
|
1815
1839
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
1816
1840
|
if resource_usage_export_config is not None:
|
1817
1841
|
pulumi.set(__self__, "resource_usage_export_config", resource_usage_export_config)
|
1842
|
+
if secret_manager_config is not None:
|
1843
|
+
pulumi.set(__self__, "secret_manager_config", secret_manager_config)
|
1818
1844
|
if security_posture_config is not None:
|
1819
1845
|
pulumi.set(__self__, "security_posture_config", security_posture_config)
|
1820
1846
|
if self_link is not None:
|
@@ -2751,6 +2777,20 @@ class _ClusterState:
|
|
2751
2777
|
def resource_usage_export_config(self, value: Optional[pulumi.Input['ClusterResourceUsageExportConfigArgs']]):
|
2752
2778
|
pulumi.set(self, "resource_usage_export_config", value)
|
2753
2779
|
|
2780
|
+
@property
|
2781
|
+
@pulumi.getter(name="secretManagerConfig")
|
2782
|
+
def secret_manager_config(self) -> Optional[pulumi.Input['ClusterSecretManagerConfigArgs']]:
|
2783
|
+
"""
|
2784
|
+
Configuration for the
|
2785
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
2786
|
+
Structure is documented below.
|
2787
|
+
"""
|
2788
|
+
return pulumi.get(self, "secret_manager_config")
|
2789
|
+
|
2790
|
+
@secret_manager_config.setter
|
2791
|
+
def secret_manager_config(self, value: Optional[pulumi.Input['ClusterSecretManagerConfigArgs']]):
|
2792
|
+
pulumi.set(self, "secret_manager_config", value)
|
2793
|
+
|
2754
2794
|
@property
|
2755
2795
|
@pulumi.getter(name="securityPostureConfig")
|
2756
2796
|
def security_posture_config(self) -> Optional[pulumi.Input['ClusterSecurityPostureConfigArgs']]:
|
@@ -2950,6 +2990,7 @@ class Cluster(pulumi.CustomResource):
|
|
2950
2990
|
remove_default_node_pool: Optional[pulumi.Input[bool]] = None,
|
2951
2991
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
2952
2992
|
resource_usage_export_config: Optional[pulumi.Input[pulumi.InputType['ClusterResourceUsageExportConfigArgs']]] = None,
|
2993
|
+
secret_manager_config: Optional[pulumi.Input[pulumi.InputType['ClusterSecretManagerConfigArgs']]] = None,
|
2953
2994
|
security_posture_config: Optional[pulumi.Input[pulumi.InputType['ClusterSecurityPostureConfigArgs']]] = None,
|
2954
2995
|
service_external_ips_config: Optional[pulumi.Input[pulumi.InputType['ClusterServiceExternalIpsConfigArgs']]] = None,
|
2955
2996
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
@@ -3269,6 +3310,9 @@ class Cluster(pulumi.CustomResource):
|
|
3269
3310
|
:param pulumi.Input[pulumi.InputType['ClusterResourceUsageExportConfigArgs']] resource_usage_export_config: Configuration for the
|
3270
3311
|
[ResourceUsageExportConfig](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-usage-metering) feature.
|
3271
3312
|
Structure is documented below.
|
3313
|
+
:param pulumi.Input[pulumi.InputType['ClusterSecretManagerConfigArgs']] secret_manager_config: Configuration for the
|
3314
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
3315
|
+
Structure is documented below.
|
3272
3316
|
:param pulumi.Input[pulumi.InputType['ClusterSecurityPostureConfigArgs']] security_posture_config: Enable/Disable Security Posture API features for the cluster. Structure is documented below.
|
3273
3317
|
:param pulumi.Input[pulumi.InputType['ClusterServiceExternalIpsConfigArgs']] service_external_ips_config: Structure is documented below.
|
3274
3318
|
:param pulumi.Input[str] subnetwork: The name or self_link of the Google Compute Engine
|
@@ -3487,6 +3531,7 @@ class Cluster(pulumi.CustomResource):
|
|
3487
3531
|
remove_default_node_pool: Optional[pulumi.Input[bool]] = None,
|
3488
3532
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
3489
3533
|
resource_usage_export_config: Optional[pulumi.Input[pulumi.InputType['ClusterResourceUsageExportConfigArgs']]] = None,
|
3534
|
+
secret_manager_config: Optional[pulumi.Input[pulumi.InputType['ClusterSecretManagerConfigArgs']]] = None,
|
3490
3535
|
security_posture_config: Optional[pulumi.Input[pulumi.InputType['ClusterSecurityPostureConfigArgs']]] = None,
|
3491
3536
|
service_external_ips_config: Optional[pulumi.Input[pulumi.InputType['ClusterServiceExternalIpsConfigArgs']]] = None,
|
3492
3537
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
@@ -3565,6 +3610,7 @@ class Cluster(pulumi.CustomResource):
|
|
3565
3610
|
__props__.__dict__["remove_default_node_pool"] = remove_default_node_pool
|
3566
3611
|
__props__.__dict__["resource_labels"] = resource_labels
|
3567
3612
|
__props__.__dict__["resource_usage_export_config"] = resource_usage_export_config
|
3613
|
+
__props__.__dict__["secret_manager_config"] = secret_manager_config
|
3568
3614
|
__props__.__dict__["security_posture_config"] = security_posture_config
|
3569
3615
|
__props__.__dict__["service_external_ips_config"] = service_external_ips_config
|
3570
3616
|
__props__.__dict__["subnetwork"] = subnetwork
|
@@ -3655,6 +3701,7 @@ class Cluster(pulumi.CustomResource):
|
|
3655
3701
|
remove_default_node_pool: Optional[pulumi.Input[bool]] = None,
|
3656
3702
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
3657
3703
|
resource_usage_export_config: Optional[pulumi.Input[pulumi.InputType['ClusterResourceUsageExportConfigArgs']]] = None,
|
3704
|
+
secret_manager_config: Optional[pulumi.Input[pulumi.InputType['ClusterSecretManagerConfigArgs']]] = None,
|
3658
3705
|
security_posture_config: Optional[pulumi.Input[pulumi.InputType['ClusterSecurityPostureConfigArgs']]] = None,
|
3659
3706
|
self_link: Optional[pulumi.Input[str]] = None,
|
3660
3707
|
service_external_ips_config: Optional[pulumi.Input[pulumi.InputType['ClusterServiceExternalIpsConfigArgs']]] = None,
|
@@ -3865,6 +3912,9 @@ class Cluster(pulumi.CustomResource):
|
|
3865
3912
|
:param pulumi.Input[pulumi.InputType['ClusterResourceUsageExportConfigArgs']] resource_usage_export_config: Configuration for the
|
3866
3913
|
[ResourceUsageExportConfig](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-usage-metering) feature.
|
3867
3914
|
Structure is documented below.
|
3915
|
+
:param pulumi.Input[pulumi.InputType['ClusterSecretManagerConfigArgs']] secret_manager_config: Configuration for the
|
3916
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
3917
|
+
Structure is documented below.
|
3868
3918
|
:param pulumi.Input[pulumi.InputType['ClusterSecurityPostureConfigArgs']] security_posture_config: Enable/Disable Security Posture API features for the cluster. Structure is documented below.
|
3869
3919
|
:param pulumi.Input[str] self_link: The server-defined URL for the resource.
|
3870
3920
|
:param pulumi.Input[pulumi.InputType['ClusterServiceExternalIpsConfigArgs']] service_external_ips_config: Structure is documented below.
|
@@ -3957,6 +4007,7 @@ class Cluster(pulumi.CustomResource):
|
|
3957
4007
|
__props__.__dict__["remove_default_node_pool"] = remove_default_node_pool
|
3958
4008
|
__props__.__dict__["resource_labels"] = resource_labels
|
3959
4009
|
__props__.__dict__["resource_usage_export_config"] = resource_usage_export_config
|
4010
|
+
__props__.__dict__["secret_manager_config"] = secret_manager_config
|
3960
4011
|
__props__.__dict__["security_posture_config"] = security_posture_config
|
3961
4012
|
__props__.__dict__["self_link"] = self_link
|
3962
4013
|
__props__.__dict__["service_external_ips_config"] = service_external_ips_config
|
@@ -4620,6 +4671,16 @@ class Cluster(pulumi.CustomResource):
|
|
4620
4671
|
"""
|
4621
4672
|
return pulumi.get(self, "resource_usage_export_config")
|
4622
4673
|
|
4674
|
+
@property
|
4675
|
+
@pulumi.getter(name="secretManagerConfig")
|
4676
|
+
def secret_manager_config(self) -> pulumi.Output[Optional['outputs.ClusterSecretManagerConfig']]:
|
4677
|
+
"""
|
4678
|
+
Configuration for the
|
4679
|
+
[SecretManagerConfig](https://cloud.google.com/secret-manager/docs/secret-manager-managed-csi-component) feature.
|
4680
|
+
Structure is documented below.
|
4681
|
+
"""
|
4682
|
+
return pulumi.get(self, "secret_manager_config")
|
4683
|
+
|
4623
4684
|
@property
|
4624
4685
|
@pulumi.getter(name="securityPostureConfig")
|
4625
4686
|
def security_posture_config(self) -> pulumi.Output['outputs.ClusterSecurityPostureConfig']:
|
@@ -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_cilium_clusterwide_network_policy=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):
|
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_cilium_clusterwide_network_policy=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, secret_manager_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)
|
@@ -224,6 +224,9 @@ class GetClusterResult:
|
|
224
224
|
if resource_usage_export_configs and not isinstance(resource_usage_export_configs, list):
|
225
225
|
raise TypeError("Expected argument 'resource_usage_export_configs' to be a list")
|
226
226
|
pulumi.set(__self__, "resource_usage_export_configs", resource_usage_export_configs)
|
227
|
+
if secret_manager_configs and not isinstance(secret_manager_configs, list):
|
228
|
+
raise TypeError("Expected argument 'secret_manager_configs' to be a list")
|
229
|
+
pulumi.set(__self__, "secret_manager_configs", secret_manager_configs)
|
227
230
|
if security_posture_configs and not isinstance(security_posture_configs, list):
|
228
231
|
raise TypeError("Expected argument 'security_posture_configs' to be a list")
|
229
232
|
pulumi.set(__self__, "security_posture_configs", security_posture_configs)
|
@@ -593,6 +596,11 @@ class GetClusterResult:
|
|
593
596
|
def resource_usage_export_configs(self) -> Sequence['outputs.GetClusterResourceUsageExportConfigResult']:
|
594
597
|
return pulumi.get(self, "resource_usage_export_configs")
|
595
598
|
|
599
|
+
@property
|
600
|
+
@pulumi.getter(name="secretManagerConfigs")
|
601
|
+
def secret_manager_configs(self) -> Sequence['outputs.GetClusterSecretManagerConfigResult']:
|
602
|
+
return pulumi.get(self, "secret_manager_configs")
|
603
|
+
|
596
604
|
@property
|
597
605
|
@pulumi.getter(name="securityPostureConfigs")
|
598
606
|
def security_posture_configs(self) -> Sequence['outputs.GetClusterSecurityPostureConfigResult']:
|
@@ -717,6 +725,7 @@ class AwaitableGetClusterResult(GetClusterResult):
|
|
717
725
|
remove_default_node_pool=self.remove_default_node_pool,
|
718
726
|
resource_labels=self.resource_labels,
|
719
727
|
resource_usage_export_configs=self.resource_usage_export_configs,
|
728
|
+
secret_manager_configs=self.secret_manager_configs,
|
720
729
|
security_posture_configs=self.security_posture_configs,
|
721
730
|
self_link=self.self_link,
|
722
731
|
service_external_ips_configs=self.service_external_ips_configs,
|
@@ -821,6 +830,7 @@ def get_cluster(location: Optional[str] = None,
|
|
821
830
|
remove_default_node_pool=pulumi.get(__ret__, 'remove_default_node_pool'),
|
822
831
|
resource_labels=pulumi.get(__ret__, 'resource_labels'),
|
823
832
|
resource_usage_export_configs=pulumi.get(__ret__, 'resource_usage_export_configs'),
|
833
|
+
secret_manager_configs=pulumi.get(__ret__, 'secret_manager_configs'),
|
824
834
|
security_posture_configs=pulumi.get(__ret__, 'security_posture_configs'),
|
825
835
|
self_link=pulumi.get(__ret__, 'self_link'),
|
826
836
|
service_external_ips_configs=pulumi.get(__ret__, 'service_external_ips_configs'),
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -220,6 +220,7 @@ __all__ = [
|
|
220
220
|
'ClusterReleaseChannel',
|
221
221
|
'ClusterResourceUsageExportConfig',
|
222
222
|
'ClusterResourceUsageExportConfigBigqueryDestination',
|
223
|
+
'ClusterSecretManagerConfig',
|
223
224
|
'ClusterSecurityPostureConfig',
|
224
225
|
'ClusterServiceExternalIpsConfig',
|
225
226
|
'ClusterTpuConfig',
|
@@ -408,6 +409,7 @@ __all__ = [
|
|
408
409
|
'GetClusterReleaseChannelResult',
|
409
410
|
'GetClusterResourceUsageExportConfigResult',
|
410
411
|
'GetClusterResourceUsageExportConfigBigqueryDestinationResult',
|
412
|
+
'GetClusterSecretManagerConfigResult',
|
411
413
|
'GetClusterSecurityPostureConfigResult',
|
412
414
|
'GetClusterServiceExternalIpsConfigResult',
|
413
415
|
'GetClusterTpuConfigResult',
|
@@ -12019,6 +12021,24 @@ class ClusterResourceUsageExportConfigBigqueryDestination(dict):
|
|
12019
12021
|
return pulumi.get(self, "dataset_id")
|
12020
12022
|
|
12021
12023
|
|
12024
|
+
@pulumi.output_type
|
12025
|
+
class ClusterSecretManagerConfig(dict):
|
12026
|
+
def __init__(__self__, *,
|
12027
|
+
enabled: bool):
|
12028
|
+
"""
|
12029
|
+
:param bool enabled: Enable the Secret Manager add-on for this cluster.
|
12030
|
+
"""
|
12031
|
+
pulumi.set(__self__, "enabled", enabled)
|
12032
|
+
|
12033
|
+
@property
|
12034
|
+
@pulumi.getter
|
12035
|
+
def enabled(self) -> bool:
|
12036
|
+
"""
|
12037
|
+
Enable the Secret Manager add-on for this cluster.
|
12038
|
+
"""
|
12039
|
+
return pulumi.get(self, "enabled")
|
12040
|
+
|
12041
|
+
|
12022
12042
|
@pulumi.output_type
|
12023
12043
|
class ClusterSecurityPostureConfig(dict):
|
12024
12044
|
@staticmethod
|
@@ -12446,8 +12466,8 @@ class NodePoolNetworkConfig(dict):
|
|
12446
12466
|
Structure is documented below
|
12447
12467
|
:param bool create_pod_range: Whether to create a new range for pod IPs in this node pool. Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are not specified.
|
12448
12468
|
:param bool enable_private_nodes: Whether nodes have internal IP addresses only.
|
12449
|
-
:param 'NodePoolNetworkConfigNetworkPerformanceConfigArgs' network_performance_config: Network bandwidth tier configuration.
|
12450
|
-
:param 'NodePoolNetworkConfigPodCidrOverprovisionConfigArgs' pod_cidr_overprovision_config: Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited
|
12469
|
+
:param 'NodePoolNetworkConfigNetworkPerformanceConfigArgs' network_performance_config: Network bandwidth tier configuration. Structure is documented below.
|
12470
|
+
:param 'NodePoolNetworkConfigPodCidrOverprovisionConfigArgs' pod_cidr_overprovision_config: Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited. Structure is documented below.
|
12451
12471
|
:param str pod_ipv4_cidr_block: The IP address range for pod IPs in this node pool. Only applicable if createPodRange is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) to pick a specific range to use.
|
12452
12472
|
:param str pod_range: The ID of the secondary range for pod IPs. If `create_pod_range` is true, this ID is used for the new range. If `create_pod_range` is false, uses an existing secondary range with this ID.
|
12453
12473
|
"""
|
@@ -12506,7 +12526,7 @@ class NodePoolNetworkConfig(dict):
|
|
12506
12526
|
@pulumi.getter(name="networkPerformanceConfig")
|
12507
12527
|
def network_performance_config(self) -> Optional['outputs.NodePoolNetworkConfigNetworkPerformanceConfig']:
|
12508
12528
|
"""
|
12509
|
-
Network bandwidth tier configuration.
|
12529
|
+
Network bandwidth tier configuration. Structure is documented below.
|
12510
12530
|
"""
|
12511
12531
|
return pulumi.get(self, "network_performance_config")
|
12512
12532
|
|
@@ -12514,7 +12534,7 @@ class NodePoolNetworkConfig(dict):
|
|
12514
12534
|
@pulumi.getter(name="podCidrOverprovisionConfig")
|
12515
12535
|
def pod_cidr_overprovision_config(self) -> Optional['outputs.NodePoolNetworkConfigPodCidrOverprovisionConfig']:
|
12516
12536
|
"""
|
12517
|
-
Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited
|
12537
|
+
Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited. Structure is documented below.
|
12518
12538
|
"""
|
12519
12539
|
return pulumi.get(self, "pod_cidr_overprovision_config")
|
12520
12540
|
|
@@ -12667,11 +12687,17 @@ class NodePoolNetworkConfigNetworkPerformanceConfig(dict):
|
|
12667
12687
|
class NodePoolNetworkConfigPodCidrOverprovisionConfig(dict):
|
12668
12688
|
def __init__(__self__, *,
|
12669
12689
|
disabled: bool):
|
12690
|
+
"""
|
12691
|
+
:param bool disabled: Whether pod cidr overprovision is disabled.
|
12692
|
+
"""
|
12670
12693
|
pulumi.set(__self__, "disabled", disabled)
|
12671
12694
|
|
12672
12695
|
@property
|
12673
12696
|
@pulumi.getter
|
12674
12697
|
def disabled(self) -> bool:
|
12698
|
+
"""
|
12699
|
+
Whether pod cidr overprovision is disabled.
|
12700
|
+
"""
|
12675
12701
|
return pulumi.get(self, "disabled")
|
12676
12702
|
|
12677
12703
|
|
@@ -19797,6 +19823,24 @@ class GetClusterResourceUsageExportConfigBigqueryDestinationResult(dict):
|
|
19797
19823
|
return pulumi.get(self, "dataset_id")
|
19798
19824
|
|
19799
19825
|
|
19826
|
+
@pulumi.output_type
|
19827
|
+
class GetClusterSecretManagerConfigResult(dict):
|
19828
|
+
def __init__(__self__, *,
|
19829
|
+
enabled: bool):
|
19830
|
+
"""
|
19831
|
+
:param bool enabled: Enable the Secret manager csi component.
|
19832
|
+
"""
|
19833
|
+
pulumi.set(__self__, "enabled", enabled)
|
19834
|
+
|
19835
|
+
@property
|
19836
|
+
@pulumi.getter
|
19837
|
+
def enabled(self) -> bool:
|
19838
|
+
"""
|
19839
|
+
Enable the Secret manager csi component.
|
19840
|
+
"""
|
19841
|
+
return pulumi.get(self, "enabled")
|
19842
|
+
|
19843
|
+
|
19800
19844
|
@pulumi.output_type
|
19801
19845
|
class GetClusterSecurityPostureConfigResult(dict):
|
19802
19846
|
def __init__(__self__, *,
|