pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +62 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/__init__.py +1 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/get_tables.py +143 -0
- pulumi_gcp/bigquery/outputs.py +66 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2300 -257
- pulumi_gcp/compute/get_instance.py +4 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +1491 -6
- pulumi_gcp/compute/region_target_http_proxy.py +159 -0
- pulumi_gcp/compute/region_target_https_proxy.py +175 -0
- pulumi_gcp/compute/service_attachment.py +75 -0
- pulumi_gcp/compute/target_http_proxy.py +49 -28
- pulumi_gcp/compute/target_https_proxy.py +77 -28
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/_inputs.py +236 -3
- pulumi_gcp/container/attached_cluster.py +61 -8
- pulumi_gcp/container/outputs.py +276 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +2 -0
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +201 -7
- pulumi_gcp/developerconnect/__init__.py +11 -0
- pulumi_gcp/developerconnect/_inputs.py +301 -0
- pulumi_gcp/developerconnect/connection.py +1034 -0
- pulumi_gcp/developerconnect/git_repository_link.py +873 -0
- pulumi_gcp/developerconnect/outputs.py +247 -0
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/memorystore/__init__.py +10 -0
- pulumi_gcp/memorystore/_inputs.py +731 -0
- pulumi_gcp/memorystore/instance.py +1663 -0
- pulumi_gcp/memorystore/outputs.py +598 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +108 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/folder.py +52 -33
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- pulumi_gcp/vpcaccess/connector.py +21 -28
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +128 -111
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -35,7 +35,8 @@ class AttachedClusterArgs:
|
|
35
35
|
monitoring_config: Optional[pulumi.Input['AttachedClusterMonitoringConfigArgs']] = None,
|
36
36
|
name: Optional[pulumi.Input[str]] = None,
|
37
37
|
project: Optional[pulumi.Input[str]] = None,
|
38
|
-
proxy_config: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']] = None
|
38
|
+
proxy_config: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']] = None,
|
39
|
+
security_posture_config: Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']] = None):
|
39
40
|
"""
|
40
41
|
The set of arguments for constructing a AttachedCluster resource.
|
41
42
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
@@ -63,12 +64,13 @@ class AttachedClusterArgs:
|
|
63
64
|
'effective_annotations' for all of the annotations present on the resource.
|
64
65
|
:param pulumi.Input['AttachedClusterAuthorizationArgs'] authorization: Configuration related to the cluster RBAC settings.
|
65
66
|
:param pulumi.Input['AttachedClusterBinaryAuthorizationArgs'] binary_authorization: Binary Authorization configuration.
|
66
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
67
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
67
68
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
68
69
|
:param pulumi.Input['AttachedClusterLoggingConfigArgs'] logging_config: Logging configuration.
|
69
70
|
:param pulumi.Input['AttachedClusterMonitoringConfigArgs'] monitoring_config: Monitoring configuration.
|
70
71
|
:param pulumi.Input[str] name: The name of this resource.
|
71
72
|
:param pulumi.Input['AttachedClusterProxyConfigArgs'] proxy_config: Support for proxy configuration.
|
73
|
+
:param pulumi.Input['AttachedClusterSecurityPostureConfigArgs'] security_posture_config: Enable/Disable Security Posture API features for the cluster.
|
72
74
|
"""
|
73
75
|
pulumi.set(__self__, "distribution", distribution)
|
74
76
|
pulumi.set(__self__, "fleet", fleet)
|
@@ -95,6 +97,8 @@ class AttachedClusterArgs:
|
|
95
97
|
pulumi.set(__self__, "project", project)
|
96
98
|
if proxy_config is not None:
|
97
99
|
pulumi.set(__self__, "proxy_config", proxy_config)
|
100
|
+
if security_posture_config is not None:
|
101
|
+
pulumi.set(__self__, "security_posture_config", security_posture_config)
|
98
102
|
|
99
103
|
@property
|
100
104
|
@pulumi.getter
|
@@ -213,7 +217,7 @@ class AttachedClusterArgs:
|
|
213
217
|
@pulumi.getter(name="deletionPolicy")
|
214
218
|
def deletion_policy(self) -> Optional[pulumi.Input[str]]:
|
215
219
|
"""
|
216
|
-
Policy to determine what flags to send on delete.
|
220
|
+
Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
217
221
|
"""
|
218
222
|
return pulumi.get(self, "deletion_policy")
|
219
223
|
|
@@ -290,6 +294,18 @@ class AttachedClusterArgs:
|
|
290
294
|
def proxy_config(self, value: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']]):
|
291
295
|
pulumi.set(self, "proxy_config", value)
|
292
296
|
|
297
|
+
@property
|
298
|
+
@pulumi.getter(name="securityPostureConfig")
|
299
|
+
def security_posture_config(self) -> Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]:
|
300
|
+
"""
|
301
|
+
Enable/Disable Security Posture API features for the cluster.
|
302
|
+
"""
|
303
|
+
return pulumi.get(self, "security_posture_config")
|
304
|
+
|
305
|
+
@security_posture_config.setter
|
306
|
+
def security_posture_config(self, value: Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]):
|
307
|
+
pulumi.set(self, "security_posture_config", value)
|
308
|
+
|
293
309
|
|
294
310
|
@pulumi.input_type
|
295
311
|
class _AttachedClusterState:
|
@@ -315,6 +331,7 @@ class _AttachedClusterState:
|
|
315
331
|
project: Optional[pulumi.Input[str]] = None,
|
316
332
|
proxy_config: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']] = None,
|
317
333
|
reconciling: Optional[pulumi.Input[bool]] = None,
|
334
|
+
security_posture_config: Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']] = None,
|
318
335
|
state: Optional[pulumi.Input[str]] = None,
|
319
336
|
uid: Optional[pulumi.Input[str]] = None,
|
320
337
|
update_time: Optional[pulumi.Input[str]] = None,
|
@@ -333,7 +350,7 @@ class _AttachedClusterState:
|
|
333
350
|
For EKS clusters, this is an AWS region. For AKS clusters,
|
334
351
|
this is an Azure region.
|
335
352
|
:param pulumi.Input[str] create_time: Output only. The time at which this cluster was created.
|
336
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
353
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
337
354
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
338
355
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
339
356
|
"eks", "aks", "generic". The generic distribution provides the ability to register
|
@@ -360,6 +377,7 @@ class _AttachedClusterState:
|
|
360
377
|
:param pulumi.Input[str] platform_version: The platform version for the cluster (e.g. `1.23.0-gke.1`).
|
361
378
|
:param pulumi.Input['AttachedClusterProxyConfigArgs'] proxy_config: Support for proxy configuration.
|
362
379
|
:param pulumi.Input[bool] reconciling: If set, there are currently changes in flight to the cluster.
|
380
|
+
:param pulumi.Input['AttachedClusterSecurityPostureConfigArgs'] security_posture_config: Enable/Disable Security Posture API features for the cluster.
|
363
381
|
:param pulumi.Input[str] state: The current state of the cluster. Possible values:
|
364
382
|
STATE_UNSPECIFIED, PROVISIONING, RUNNING, RECONCILING, STOPPING, ERROR,
|
365
383
|
DEGRADED
|
@@ -410,6 +428,8 @@ class _AttachedClusterState:
|
|
410
428
|
pulumi.set(__self__, "proxy_config", proxy_config)
|
411
429
|
if reconciling is not None:
|
412
430
|
pulumi.set(__self__, "reconciling", reconciling)
|
431
|
+
if security_posture_config is not None:
|
432
|
+
pulumi.set(__self__, "security_posture_config", security_posture_config)
|
413
433
|
if state is not None:
|
414
434
|
pulumi.set(__self__, "state", state)
|
415
435
|
if uid is not None:
|
@@ -490,7 +510,7 @@ class _AttachedClusterState:
|
|
490
510
|
@pulumi.getter(name="deletionPolicy")
|
491
511
|
def deletion_policy(self) -> Optional[pulumi.Input[str]]:
|
492
512
|
"""
|
493
|
-
Policy to determine what flags to send on delete.
|
513
|
+
Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
494
514
|
"""
|
495
515
|
return pulumi.get(self, "deletion_policy")
|
496
516
|
|
@@ -685,6 +705,18 @@ class _AttachedClusterState:
|
|
685
705
|
def reconciling(self, value: Optional[pulumi.Input[bool]]):
|
686
706
|
pulumi.set(self, "reconciling", value)
|
687
707
|
|
708
|
+
@property
|
709
|
+
@pulumi.getter(name="securityPostureConfig")
|
710
|
+
def security_posture_config(self) -> Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]:
|
711
|
+
"""
|
712
|
+
Enable/Disable Security Posture API features for the cluster.
|
713
|
+
"""
|
714
|
+
return pulumi.get(self, "security_posture_config")
|
715
|
+
|
716
|
+
@security_posture_config.setter
|
717
|
+
def security_posture_config(self, value: Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]):
|
718
|
+
pulumi.set(self, "security_posture_config", value)
|
719
|
+
|
688
720
|
@property
|
689
721
|
@pulumi.getter
|
690
722
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -757,6 +789,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
757
789
|
platform_version: Optional[pulumi.Input[str]] = None,
|
758
790
|
project: Optional[pulumi.Input[str]] = None,
|
759
791
|
proxy_config: Optional[pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']]] = None,
|
792
|
+
security_posture_config: Optional[pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']]] = None,
|
760
793
|
__props__=None):
|
761
794
|
"""
|
762
795
|
An Anthos cluster running on customer owned infrastructure.
|
@@ -851,6 +884,9 @@ class AttachedCluster(pulumi.CustomResource):
|
|
851
884
|
"name": "proxy-config",
|
852
885
|
"namespace": "default",
|
853
886
|
},
|
887
|
+
},
|
888
|
+
security_posture_config={
|
889
|
+
"vulnerability_mode": "VULNERABILITY_ENTERPRISE",
|
854
890
|
})
|
855
891
|
```
|
856
892
|
### Container Attached Cluster Ignore Errors
|
@@ -912,7 +948,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
912
948
|
'effective_annotations' for all of the annotations present on the resource.
|
913
949
|
:param pulumi.Input[Union['AttachedClusterAuthorizationArgs', 'AttachedClusterAuthorizationArgsDict']] authorization: Configuration related to the cluster RBAC settings.
|
914
950
|
:param pulumi.Input[Union['AttachedClusterBinaryAuthorizationArgs', 'AttachedClusterBinaryAuthorizationArgsDict']] binary_authorization: Binary Authorization configuration.
|
915
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
951
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
916
952
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
917
953
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
918
954
|
"eks", "aks", "generic". The generic distribution provides the ability to register
|
@@ -935,6 +971,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
935
971
|
Structure is documented below.
|
936
972
|
:param pulumi.Input[str] platform_version: The platform version for the cluster (e.g. `1.23.0-gke.1`).
|
937
973
|
:param pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']] proxy_config: Support for proxy configuration.
|
974
|
+
:param pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']] security_posture_config: Enable/Disable Security Posture API features for the cluster.
|
938
975
|
"""
|
939
976
|
...
|
940
977
|
@overload
|
@@ -1035,6 +1072,9 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1035
1072
|
"name": "proxy-config",
|
1036
1073
|
"namespace": "default",
|
1037
1074
|
},
|
1075
|
+
},
|
1076
|
+
security_posture_config={
|
1077
|
+
"vulnerability_mode": "VULNERABILITY_ENTERPRISE",
|
1038
1078
|
})
|
1039
1079
|
```
|
1040
1080
|
### Container Attached Cluster Ignore Errors
|
@@ -1116,6 +1156,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1116
1156
|
platform_version: Optional[pulumi.Input[str]] = None,
|
1117
1157
|
project: Optional[pulumi.Input[str]] = None,
|
1118
1158
|
proxy_config: Optional[pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']]] = None,
|
1159
|
+
security_posture_config: Optional[pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']]] = None,
|
1119
1160
|
__props__=None):
|
1120
1161
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
1121
1162
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -1150,6 +1191,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1150
1191
|
__props__.__dict__["platform_version"] = platform_version
|
1151
1192
|
__props__.__dict__["project"] = project
|
1152
1193
|
__props__.__dict__["proxy_config"] = proxy_config
|
1194
|
+
__props__.__dict__["security_posture_config"] = security_posture_config
|
1153
1195
|
__props__.__dict__["cluster_region"] = None
|
1154
1196
|
__props__.__dict__["create_time"] = None
|
1155
1197
|
__props__.__dict__["effective_annotations"] = None
|
@@ -1191,6 +1233,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1191
1233
|
project: Optional[pulumi.Input[str]] = None,
|
1192
1234
|
proxy_config: Optional[pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']]] = None,
|
1193
1235
|
reconciling: Optional[pulumi.Input[bool]] = None,
|
1236
|
+
security_posture_config: Optional[pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']]] = None,
|
1194
1237
|
state: Optional[pulumi.Input[str]] = None,
|
1195
1238
|
uid: Optional[pulumi.Input[str]] = None,
|
1196
1239
|
update_time: Optional[pulumi.Input[str]] = None,
|
@@ -1214,7 +1257,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1214
1257
|
For EKS clusters, this is an AWS region. For AKS clusters,
|
1215
1258
|
this is an Azure region.
|
1216
1259
|
:param pulumi.Input[str] create_time: Output only. The time at which this cluster was created.
|
1217
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
1260
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
1218
1261
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
1219
1262
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
1220
1263
|
"eks", "aks", "generic". The generic distribution provides the ability to register
|
@@ -1241,6 +1284,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1241
1284
|
:param pulumi.Input[str] platform_version: The platform version for the cluster (e.g. `1.23.0-gke.1`).
|
1242
1285
|
:param pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']] proxy_config: Support for proxy configuration.
|
1243
1286
|
:param pulumi.Input[bool] reconciling: If set, there are currently changes in flight to the cluster.
|
1287
|
+
:param pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']] security_posture_config: Enable/Disable Security Posture API features for the cluster.
|
1244
1288
|
:param pulumi.Input[str] state: The current state of the cluster. Possible values:
|
1245
1289
|
STATE_UNSPECIFIED, PROVISIONING, RUNNING, RECONCILING, STOPPING, ERROR,
|
1246
1290
|
DEGRADED
|
@@ -1274,6 +1318,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1274
1318
|
__props__.__dict__["project"] = project
|
1275
1319
|
__props__.__dict__["proxy_config"] = proxy_config
|
1276
1320
|
__props__.__dict__["reconciling"] = reconciling
|
1321
|
+
__props__.__dict__["security_posture_config"] = security_posture_config
|
1277
1322
|
__props__.__dict__["state"] = state
|
1278
1323
|
__props__.__dict__["uid"] = uid
|
1279
1324
|
__props__.__dict__["update_time"] = update_time
|
@@ -1331,7 +1376,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1331
1376
|
@pulumi.getter(name="deletionPolicy")
|
1332
1377
|
def deletion_policy(self) -> pulumi.Output[Optional[str]]:
|
1333
1378
|
"""
|
1334
|
-
Policy to determine what flags to send on delete.
|
1379
|
+
Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
1335
1380
|
"""
|
1336
1381
|
return pulumi.get(self, "deletion_policy")
|
1337
1382
|
|
@@ -1462,6 +1507,14 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1462
1507
|
"""
|
1463
1508
|
return pulumi.get(self, "reconciling")
|
1464
1509
|
|
1510
|
+
@property
|
1511
|
+
@pulumi.getter(name="securityPostureConfig")
|
1512
|
+
def security_posture_config(self) -> pulumi.Output['outputs.AttachedClusterSecurityPostureConfig']:
|
1513
|
+
"""
|
1514
|
+
Enable/Disable Security Posture API features for the cluster.
|
1515
|
+
"""
|
1516
|
+
return pulumi.get(self, "security_posture_config")
|
1517
|
+
|
1465
1518
|
@property
|
1466
1519
|
@pulumi.getter
|
1467
1520
|
def state(self) -> pulumi.Output[str]:
|