pulumi-gcp 8.2.0__py3-none-any.whl → 8.2.0a1726671837__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. pulumi_gcp/__init__.py +0 -38
  2. pulumi_gcp/bigquery/__init__.py +0 -1
  3. pulumi_gcp/bigquery/outputs.py +0 -30
  4. pulumi_gcp/compute/__init__.py +0 -1
  5. pulumi_gcp/compute/_inputs.py +286 -2209
  6. pulumi_gcp/compute/get_instance.py +0 -3
  7. pulumi_gcp/compute/outputs.py +0 -1383
  8. pulumi_gcp/compute/region_target_http_proxy.py +0 -159
  9. pulumi_gcp/compute/region_target_https_proxy.py +0 -175
  10. pulumi_gcp/compute/service_attachment.py +0 -75
  11. pulumi_gcp/compute/target_http_proxy.py +28 -49
  12. pulumi_gcp/compute/target_https_proxy.py +28 -49
  13. pulumi_gcp/config/__init__.pyi +0 -4
  14. pulumi_gcp/config/vars.py +0 -8
  15. pulumi_gcp/container/_inputs.py +0 -96
  16. pulumi_gcp/container/attached_cluster.py +1 -54
  17. pulumi_gcp/container/outputs.py +0 -102
  18. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  19. pulumi_gcp/dataproc/metastore_service.py +0 -2
  20. pulumi_gcp/datastream/stream.py +14 -21
  21. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  22. pulumi_gcp/gkeonprem/outputs.py +2 -2
  23. pulumi_gcp/netapp/volume.py +0 -101
  24. pulumi_gcp/organizations/folder.py +33 -52
  25. pulumi_gcp/provider.py +0 -40
  26. pulumi_gcp/pulumi-plugin.json +1 -1
  27. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  28. pulumi_gcp/vpcaccess/connector.py +28 -21
  29. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/METADATA +1 -1
  30. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/RECORD +32 -43
  31. pulumi_gcp/bigquery/get_tables.py +0 -143
  32. pulumi_gcp/compute/network_firewall_policy_with_rules.py +0 -826
  33. pulumi_gcp/developerconnect/__init__.py +0 -11
  34. pulumi_gcp/developerconnect/_inputs.py +0 -301
  35. pulumi_gcp/developerconnect/connection.py +0 -1034
  36. pulumi_gcp/developerconnect/git_repository_link.py +0 -873
  37. pulumi_gcp/developerconnect/outputs.py +0 -247
  38. pulumi_gcp/memorystore/__init__.py +0 -10
  39. pulumi_gcp/memorystore/_inputs.py +0 -731
  40. pulumi_gcp/memorystore/instance.py +0 -1663
  41. pulumi_gcp/memorystore/outputs.py +0 -598
  42. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/WHEEL +0 -0
  43. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/top_level.txt +0 -0
@@ -37,8 +37,6 @@ __all__ = [
37
37
  'AttachedClusterProxyConfigArgsDict',
38
38
  'AttachedClusterProxyConfigKubernetesSecretArgs',
39
39
  'AttachedClusterProxyConfigKubernetesSecretArgsDict',
40
- 'AttachedClusterSecurityPostureConfigArgs',
41
- 'AttachedClusterSecurityPostureConfigArgsDict',
42
40
  'AttachedClusterWorkloadIdentityConfigArgs',
43
41
  'AttachedClusterWorkloadIdentityConfigArgsDict',
44
42
  'AwsClusterAuthorizationArgs',
@@ -1020,40 +1018,6 @@ class AttachedClusterProxyConfigKubernetesSecretArgs:
1020
1018
  pulumi.set(self, "namespace", value)
1021
1019
 
1022
1020
 
1023
- if not MYPY:
1024
- class AttachedClusterSecurityPostureConfigArgsDict(TypedDict):
1025
- vulnerability_mode: pulumi.Input[str]
1026
- """
1027
- Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
1028
- Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
1029
- """
1030
- elif False:
1031
- AttachedClusterSecurityPostureConfigArgsDict: TypeAlias = Mapping[str, Any]
1032
-
1033
- @pulumi.input_type
1034
- class AttachedClusterSecurityPostureConfigArgs:
1035
- def __init__(__self__, *,
1036
- vulnerability_mode: pulumi.Input[str]):
1037
- """
1038
- :param pulumi.Input[str] vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
1039
- Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
1040
- """
1041
- pulumi.set(__self__, "vulnerability_mode", vulnerability_mode)
1042
-
1043
- @property
1044
- @pulumi.getter(name="vulnerabilityMode")
1045
- def vulnerability_mode(self) -> pulumi.Input[str]:
1046
- """
1047
- Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
1048
- Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
1049
- """
1050
- return pulumi.get(self, "vulnerability_mode")
1051
-
1052
- @vulnerability_mode.setter
1053
- def vulnerability_mode(self, value: pulumi.Input[str]):
1054
- pulumi.set(self, "vulnerability_mode", value)
1055
-
1056
-
1057
1021
  if not MYPY:
1058
1022
  class AttachedClusterWorkloadIdentityConfigArgsDict(TypedDict):
1059
1023
  identity_provider: NotRequired[pulumi.Input[str]]
@@ -8239,10 +8203,6 @@ if not MYPY:
8239
8203
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
8240
8204
  for more information. Defaults to false.
8241
8205
  """
8242
- storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
8243
- """
8244
- The list of Storage Pools where boot disks are provisioned.
8245
- """
8246
8206
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
8247
8207
  """
8248
8208
  The list of instance tags applied to all nodes. Tags are used to identify
@@ -8307,7 +8267,6 @@ class ClusterNodeConfigArgs:
8307
8267
  shielded_instance_config: Optional[pulumi.Input['ClusterNodeConfigShieldedInstanceConfigArgs']] = None,
8308
8268
  sole_tenant_config: Optional[pulumi.Input['ClusterNodeConfigSoleTenantConfigArgs']] = None,
8309
8269
  spot: Optional[pulumi.Input[bool]] = None,
8310
- storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8311
8270
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8312
8271
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]]] = None,
8313
8272
  workload_metadata_config: Optional[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs']] = None):
@@ -8398,7 +8357,6 @@ class ClusterNodeConfigArgs:
8398
8357
  :param pulumi.Input[bool] spot: A boolean that represents whether the underlying node VMs are spot.
8399
8358
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
8400
8359
  for more information. Defaults to false.
8401
- :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
8402
8360
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes. Tags are used to identify
8403
8361
  valid sources or targets for network firewalls.
8404
8362
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
@@ -8486,8 +8444,6 @@ class ClusterNodeConfigArgs:
8486
8444
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
8487
8445
  if spot is not None:
8488
8446
  pulumi.set(__self__, "spot", spot)
8489
- if storage_pools is not None:
8490
- pulumi.set(__self__, "storage_pools", storage_pools)
8491
8447
  if tags is not None:
8492
8448
  pulumi.set(__self__, "tags", tags)
8493
8449
  if taints is not None:
@@ -8988,18 +8944,6 @@ class ClusterNodeConfigArgs:
8988
8944
  def spot(self, value: Optional[pulumi.Input[bool]]):
8989
8945
  pulumi.set(self, "spot", value)
8990
8946
 
8991
- @property
8992
- @pulumi.getter(name="storagePools")
8993
- def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
8994
- """
8995
- The list of Storage Pools where boot disks are provisioned.
8996
- """
8997
- return pulumi.get(self, "storage_pools")
8998
-
8999
- @storage_pools.setter
9000
- def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
9001
- pulumi.set(self, "storage_pools", value)
9002
-
9003
8947
  @property
9004
8948
  @pulumi.getter
9005
8949
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -12072,10 +12016,6 @@ if not MYPY:
12072
12016
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
12073
12017
  for more information. Defaults to false.
12074
12018
  """
12075
- storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
12076
- """
12077
- The list of Storage Pools where boot disks are provisioned.
12078
- """
12079
12019
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
12080
12020
  """
12081
12021
  The list of instance tags applied to all nodes. Tags are used to identify
@@ -12140,7 +12080,6 @@ class ClusterNodePoolNodeConfigArgs:
12140
12080
  shielded_instance_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
12141
12081
  sole_tenant_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigSoleTenantConfigArgs']] = None,
12142
12082
  spot: Optional[pulumi.Input[bool]] = None,
12143
- storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12144
12083
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12145
12084
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]]] = None,
12146
12085
  workload_metadata_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
@@ -12231,7 +12170,6 @@ class ClusterNodePoolNodeConfigArgs:
12231
12170
  :param pulumi.Input[bool] spot: A boolean that represents whether the underlying node VMs are spot.
12232
12171
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
12233
12172
  for more information. Defaults to false.
12234
- :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
12235
12173
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes. Tags are used to identify
12236
12174
  valid sources or targets for network firewalls.
12237
12175
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
@@ -12319,8 +12257,6 @@ class ClusterNodePoolNodeConfigArgs:
12319
12257
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
12320
12258
  if spot is not None:
12321
12259
  pulumi.set(__self__, "spot", spot)
12322
- if storage_pools is not None:
12323
- pulumi.set(__self__, "storage_pools", storage_pools)
12324
12260
  if tags is not None:
12325
12261
  pulumi.set(__self__, "tags", tags)
12326
12262
  if taints is not None:
@@ -12821,18 +12757,6 @@ class ClusterNodePoolNodeConfigArgs:
12821
12757
  def spot(self, value: Optional[pulumi.Input[bool]]):
12822
12758
  pulumi.set(self, "spot", value)
12823
12759
 
12824
- @property
12825
- @pulumi.getter(name="storagePools")
12826
- def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
12827
- """
12828
- The list of Storage Pools where boot disks are provisioned.
12829
- """
12830
- return pulumi.get(self, "storage_pools")
12831
-
12832
- @storage_pools.setter
12833
- def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
12834
- pulumi.set(self, "storage_pools", value)
12835
-
12836
12760
  @property
12837
12761
  @pulumi.getter
12838
12762
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -16300,10 +16224,6 @@ if not MYPY:
16300
16224
  """
16301
16225
  Whether the nodes are created as spot VM instances.
16302
16226
  """
16303
- storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
16304
- """
16305
- The list of Storage Pools where boot disks are provisioned.
16306
- """
16307
16227
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
16308
16228
  """
16309
16229
  The list of instance tags applied to all nodes.
@@ -16359,7 +16279,6 @@ class NodePoolNodeConfigArgs:
16359
16279
  shielded_instance_config: Optional[pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
16360
16280
  sole_tenant_config: Optional[pulumi.Input['NodePoolNodeConfigSoleTenantConfigArgs']] = None,
16361
16281
  spot: Optional[pulumi.Input[bool]] = None,
16362
- storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
16363
16282
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
16364
16283
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]]] = None,
16365
16284
  workload_metadata_config: Optional[pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
@@ -16404,7 +16323,6 @@ class NodePoolNodeConfigArgs:
16404
16323
  :param pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs'] shielded_instance_config: Shielded Instance options.
16405
16324
  :param pulumi.Input['NodePoolNodeConfigSoleTenantConfigArgs'] sole_tenant_config: Node affinity options for sole tenant node pools.
16406
16325
  :param pulumi.Input[bool] spot: Whether the nodes are created as spot VM instances.
16407
- :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
16408
16326
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes.
16409
16327
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]] taints: List of Kubernetes taints to be applied to each node.
16410
16328
  :param pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: The workload metadata configuration for this node.
@@ -16483,8 +16401,6 @@ class NodePoolNodeConfigArgs:
16483
16401
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
16484
16402
  if spot is not None:
16485
16403
  pulumi.set(__self__, "spot", spot)
16486
- if storage_pools is not None:
16487
- pulumi.set(__self__, "storage_pools", storage_pools)
16488
16404
  if tags is not None:
16489
16405
  pulumi.set(__self__, "tags", tags)
16490
16406
  if taints is not None:
@@ -16939,18 +16855,6 @@ class NodePoolNodeConfigArgs:
16939
16855
  def spot(self, value: Optional[pulumi.Input[bool]]):
16940
16856
  pulumi.set(self, "spot", value)
16941
16857
 
16942
- @property
16943
- @pulumi.getter(name="storagePools")
16944
- def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
16945
- """
16946
- The list of Storage Pools where boot disks are provisioned.
16947
- """
16948
- return pulumi.get(self, "storage_pools")
16949
-
16950
- @storage_pools.setter
16951
- def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
16952
- pulumi.set(self, "storage_pools", value)
16953
-
16954
16858
  @property
16955
16859
  @pulumi.getter
16956
16860
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -35,8 +35,7 @@ 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,
39
- security_posture_config: Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']] = None):
38
+ proxy_config: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']] = None):
40
39
  """
41
40
  The set of arguments for constructing a AttachedCluster resource.
42
41
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
@@ -70,7 +69,6 @@ class AttachedClusterArgs:
70
69
  :param pulumi.Input['AttachedClusterMonitoringConfigArgs'] monitoring_config: Monitoring configuration.
71
70
  :param pulumi.Input[str] name: The name of this resource.
72
71
  :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.
74
72
  """
75
73
  pulumi.set(__self__, "distribution", distribution)
76
74
  pulumi.set(__self__, "fleet", fleet)
@@ -97,8 +95,6 @@ class AttachedClusterArgs:
97
95
  pulumi.set(__self__, "project", project)
98
96
  if proxy_config is not None:
99
97
  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)
102
98
 
103
99
  @property
104
100
  @pulumi.getter
@@ -294,18 +290,6 @@ class AttachedClusterArgs:
294
290
  def proxy_config(self, value: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']]):
295
291
  pulumi.set(self, "proxy_config", value)
296
292
 
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
-
309
293
 
310
294
  @pulumi.input_type
311
295
  class _AttachedClusterState:
@@ -331,7 +315,6 @@ class _AttachedClusterState:
331
315
  project: Optional[pulumi.Input[str]] = None,
332
316
  proxy_config: Optional[pulumi.Input['AttachedClusterProxyConfigArgs']] = None,
333
317
  reconciling: Optional[pulumi.Input[bool]] = None,
334
- security_posture_config: Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']] = None,
335
318
  state: Optional[pulumi.Input[str]] = None,
336
319
  uid: Optional[pulumi.Input[str]] = None,
337
320
  update_time: Optional[pulumi.Input[str]] = None,
@@ -377,7 +360,6 @@ class _AttachedClusterState:
377
360
  :param pulumi.Input[str] platform_version: The platform version for the cluster (e.g. `1.23.0-gke.1`).
378
361
  :param pulumi.Input['AttachedClusterProxyConfigArgs'] proxy_config: Support for proxy configuration.
379
362
  :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.
381
363
  :param pulumi.Input[str] state: The current state of the cluster. Possible values:
382
364
  STATE_UNSPECIFIED, PROVISIONING, RUNNING, RECONCILING, STOPPING, ERROR,
383
365
  DEGRADED
@@ -428,8 +410,6 @@ class _AttachedClusterState:
428
410
  pulumi.set(__self__, "proxy_config", proxy_config)
429
411
  if reconciling is not None:
430
412
  pulumi.set(__self__, "reconciling", reconciling)
431
- if security_posture_config is not None:
432
- pulumi.set(__self__, "security_posture_config", security_posture_config)
433
413
  if state is not None:
434
414
  pulumi.set(__self__, "state", state)
435
415
  if uid is not None:
@@ -705,18 +685,6 @@ class _AttachedClusterState:
705
685
  def reconciling(self, value: Optional[pulumi.Input[bool]]):
706
686
  pulumi.set(self, "reconciling", value)
707
687
 
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
-
720
688
  @property
721
689
  @pulumi.getter
722
690
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -789,7 +757,6 @@ class AttachedCluster(pulumi.CustomResource):
789
757
  platform_version: Optional[pulumi.Input[str]] = None,
790
758
  project: Optional[pulumi.Input[str]] = None,
791
759
  proxy_config: Optional[pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']]] = None,
792
- security_posture_config: Optional[pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']]] = None,
793
760
  __props__=None):
794
761
  """
795
762
  An Anthos cluster running on customer owned infrastructure.
@@ -884,9 +851,6 @@ class AttachedCluster(pulumi.CustomResource):
884
851
  "name": "proxy-config",
885
852
  "namespace": "default",
886
853
  },
887
- },
888
- security_posture_config={
889
- "vulnerability_mode": "VULNERABILITY_ENTERPRISE",
890
854
  })
891
855
  ```
892
856
  ### Container Attached Cluster Ignore Errors
@@ -971,7 +935,6 @@ class AttachedCluster(pulumi.CustomResource):
971
935
  Structure is documented below.
972
936
  :param pulumi.Input[str] platform_version: The platform version for the cluster (e.g. `1.23.0-gke.1`).
973
937
  :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.
975
938
  """
976
939
  ...
977
940
  @overload
@@ -1072,9 +1035,6 @@ class AttachedCluster(pulumi.CustomResource):
1072
1035
  "name": "proxy-config",
1073
1036
  "namespace": "default",
1074
1037
  },
1075
- },
1076
- security_posture_config={
1077
- "vulnerability_mode": "VULNERABILITY_ENTERPRISE",
1078
1038
  })
1079
1039
  ```
1080
1040
  ### Container Attached Cluster Ignore Errors
@@ -1156,7 +1116,6 @@ class AttachedCluster(pulumi.CustomResource):
1156
1116
  platform_version: Optional[pulumi.Input[str]] = None,
1157
1117
  project: Optional[pulumi.Input[str]] = None,
1158
1118
  proxy_config: Optional[pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']]] = None,
1159
- security_posture_config: Optional[pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']]] = None,
1160
1119
  __props__=None):
1161
1120
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
1162
1121
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -1191,7 +1150,6 @@ class AttachedCluster(pulumi.CustomResource):
1191
1150
  __props__.__dict__["platform_version"] = platform_version
1192
1151
  __props__.__dict__["project"] = project
1193
1152
  __props__.__dict__["proxy_config"] = proxy_config
1194
- __props__.__dict__["security_posture_config"] = security_posture_config
1195
1153
  __props__.__dict__["cluster_region"] = None
1196
1154
  __props__.__dict__["create_time"] = None
1197
1155
  __props__.__dict__["effective_annotations"] = None
@@ -1233,7 +1191,6 @@ class AttachedCluster(pulumi.CustomResource):
1233
1191
  project: Optional[pulumi.Input[str]] = None,
1234
1192
  proxy_config: Optional[pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']]] = None,
1235
1193
  reconciling: Optional[pulumi.Input[bool]] = None,
1236
- security_posture_config: Optional[pulumi.Input[Union['AttachedClusterSecurityPostureConfigArgs', 'AttachedClusterSecurityPostureConfigArgsDict']]] = None,
1237
1194
  state: Optional[pulumi.Input[str]] = None,
1238
1195
  uid: Optional[pulumi.Input[str]] = None,
1239
1196
  update_time: Optional[pulumi.Input[str]] = None,
@@ -1284,7 +1241,6 @@ class AttachedCluster(pulumi.CustomResource):
1284
1241
  :param pulumi.Input[str] platform_version: The platform version for the cluster (e.g. `1.23.0-gke.1`).
1285
1242
  :param pulumi.Input[Union['AttachedClusterProxyConfigArgs', 'AttachedClusterProxyConfigArgsDict']] proxy_config: Support for proxy configuration.
1286
1243
  :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.
1288
1244
  :param pulumi.Input[str] state: The current state of the cluster. Possible values:
1289
1245
  STATE_UNSPECIFIED, PROVISIONING, RUNNING, RECONCILING, STOPPING, ERROR,
1290
1246
  DEGRADED
@@ -1318,7 +1274,6 @@ class AttachedCluster(pulumi.CustomResource):
1318
1274
  __props__.__dict__["project"] = project
1319
1275
  __props__.__dict__["proxy_config"] = proxy_config
1320
1276
  __props__.__dict__["reconciling"] = reconciling
1321
- __props__.__dict__["security_posture_config"] = security_posture_config
1322
1277
  __props__.__dict__["state"] = state
1323
1278
  __props__.__dict__["uid"] = uid
1324
1279
  __props__.__dict__["update_time"] = update_time
@@ -1507,14 +1462,6 @@ class AttachedCluster(pulumi.CustomResource):
1507
1462
  """
1508
1463
  return pulumi.get(self, "reconciling")
1509
1464
 
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
-
1518
1465
  @property
1519
1466
  @pulumi.getter
1520
1467
  def state(self) -> pulumi.Output[str]:
@@ -27,7 +27,6 @@ __all__ = [
27
27
  'AttachedClusterOidcConfig',
28
28
  'AttachedClusterProxyConfig',
29
29
  'AttachedClusterProxyConfigKubernetesSecret',
30
- 'AttachedClusterSecurityPostureConfig',
31
30
  'AttachedClusterWorkloadIdentityConfig',
32
31
  'AwsClusterAuthorization',
33
32
  'AwsClusterAuthorizationAdminGroup',
@@ -840,43 +839,6 @@ class AttachedClusterProxyConfigKubernetesSecret(dict):
840
839
  return pulumi.get(self, "namespace")
841
840
 
842
841
 
843
- @pulumi.output_type
844
- class AttachedClusterSecurityPostureConfig(dict):
845
- @staticmethod
846
- def __key_warning(key: str):
847
- suggest = None
848
- if key == "vulnerabilityMode":
849
- suggest = "vulnerability_mode"
850
-
851
- if suggest:
852
- pulumi.log.warn(f"Key '{key}' not found in AttachedClusterSecurityPostureConfig. Access the value via the '{suggest}' property getter instead.")
853
-
854
- def __getitem__(self, key: str) -> Any:
855
- AttachedClusterSecurityPostureConfig.__key_warning(key)
856
- return super().__getitem__(key)
857
-
858
- def get(self, key: str, default = None) -> Any:
859
- AttachedClusterSecurityPostureConfig.__key_warning(key)
860
- return super().get(key, default)
861
-
862
- def __init__(__self__, *,
863
- vulnerability_mode: str):
864
- """
865
- :param str vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
866
- Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
867
- """
868
- pulumi.set(__self__, "vulnerability_mode", vulnerability_mode)
869
-
870
- @property
871
- @pulumi.getter(name="vulnerabilityMode")
872
- def vulnerability_mode(self) -> str:
873
- """
874
- Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
875
- Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
876
- """
877
- return pulumi.get(self, "vulnerability_mode")
878
-
879
-
880
842
  @pulumi.output_type
881
843
  class AttachedClusterWorkloadIdentityConfig(dict):
882
844
  @staticmethod
@@ -6669,8 +6631,6 @@ class ClusterNodeConfig(dict):
6669
6631
  suggest = "shielded_instance_config"
6670
6632
  elif key == "soleTenantConfig":
6671
6633
  suggest = "sole_tenant_config"
6672
- elif key == "storagePools":
6673
- suggest = "storage_pools"
6674
6634
  elif key == "workloadMetadataConfig":
6675
6635
  suggest = "workload_metadata_config"
6676
6636
 
@@ -6723,7 +6683,6 @@ class ClusterNodeConfig(dict):
6723
6683
  shielded_instance_config: Optional['outputs.ClusterNodeConfigShieldedInstanceConfig'] = None,
6724
6684
  sole_tenant_config: Optional['outputs.ClusterNodeConfigSoleTenantConfig'] = None,
6725
6685
  spot: Optional[bool] = None,
6726
- storage_pools: Optional[Sequence[str]] = None,
6727
6686
  tags: Optional[Sequence[str]] = None,
6728
6687
  taints: Optional[Sequence['outputs.ClusterNodeConfigTaint']] = None,
6729
6688
  workload_metadata_config: Optional['outputs.ClusterNodeConfigWorkloadMetadataConfig'] = None):
@@ -6814,7 +6773,6 @@ class ClusterNodeConfig(dict):
6814
6773
  :param bool spot: A boolean that represents whether the underlying node VMs are spot.
6815
6774
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
6816
6775
  for more information. Defaults to false.
6817
- :param Sequence[str] storage_pools: The list of Storage Pools where boot disks are provisioned.
6818
6776
  :param Sequence[str] tags: The list of instance tags applied to all nodes. Tags are used to identify
6819
6777
  valid sources or targets for network firewalls.
6820
6778
  :param Sequence['ClusterNodeConfigTaintArgs'] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
@@ -6902,8 +6860,6 @@ class ClusterNodeConfig(dict):
6902
6860
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
6903
6861
  if spot is not None:
6904
6862
  pulumi.set(__self__, "spot", spot)
6905
- if storage_pools is not None:
6906
- pulumi.set(__self__, "storage_pools", storage_pools)
6907
6863
  if tags is not None:
6908
6864
  pulumi.set(__self__, "tags", tags)
6909
6865
  if taints is not None:
@@ -7256,14 +7212,6 @@ class ClusterNodeConfig(dict):
7256
7212
  """
7257
7213
  return pulumi.get(self, "spot")
7258
7214
 
7259
- @property
7260
- @pulumi.getter(name="storagePools")
7261
- def storage_pools(self) -> Optional[Sequence[str]]:
7262
- """
7263
- The list of Storage Pools where boot disks are provisioned.
7264
- """
7265
- return pulumi.get(self, "storage_pools")
7266
-
7267
7215
  @property
7268
7216
  @pulumi.getter
7269
7217
  def tags(self) -> Optional[Sequence[str]]:
@@ -9692,8 +9640,6 @@ class ClusterNodePoolNodeConfig(dict):
9692
9640
  suggest = "shielded_instance_config"
9693
9641
  elif key == "soleTenantConfig":
9694
9642
  suggest = "sole_tenant_config"
9695
- elif key == "storagePools":
9696
- suggest = "storage_pools"
9697
9643
  elif key == "workloadMetadataConfig":
9698
9644
  suggest = "workload_metadata_config"
9699
9645
 
@@ -9746,7 +9692,6 @@ class ClusterNodePoolNodeConfig(dict):
9746
9692
  shielded_instance_config: Optional['outputs.ClusterNodePoolNodeConfigShieldedInstanceConfig'] = None,
9747
9693
  sole_tenant_config: Optional['outputs.ClusterNodePoolNodeConfigSoleTenantConfig'] = None,
9748
9694
  spot: Optional[bool] = None,
9749
- storage_pools: Optional[Sequence[str]] = None,
9750
9695
  tags: Optional[Sequence[str]] = None,
9751
9696
  taints: Optional[Sequence['outputs.ClusterNodePoolNodeConfigTaint']] = None,
9752
9697
  workload_metadata_config: Optional['outputs.ClusterNodePoolNodeConfigWorkloadMetadataConfig'] = None):
@@ -9837,7 +9782,6 @@ class ClusterNodePoolNodeConfig(dict):
9837
9782
  :param bool spot: A boolean that represents whether the underlying node VMs are spot.
9838
9783
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
9839
9784
  for more information. Defaults to false.
9840
- :param Sequence[str] storage_pools: The list of Storage Pools where boot disks are provisioned.
9841
9785
  :param Sequence[str] tags: The list of instance tags applied to all nodes. Tags are used to identify
9842
9786
  valid sources or targets for network firewalls.
9843
9787
  :param Sequence['ClusterNodePoolNodeConfigTaintArgs'] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
@@ -9925,8 +9869,6 @@ class ClusterNodePoolNodeConfig(dict):
9925
9869
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
9926
9870
  if spot is not None:
9927
9871
  pulumi.set(__self__, "spot", spot)
9928
- if storage_pools is not None:
9929
- pulumi.set(__self__, "storage_pools", storage_pools)
9930
9872
  if tags is not None:
9931
9873
  pulumi.set(__self__, "tags", tags)
9932
9874
  if taints is not None:
@@ -10279,14 +10221,6 @@ class ClusterNodePoolNodeConfig(dict):
10279
10221
  """
10280
10222
  return pulumi.get(self, "spot")
10281
10223
 
10282
- @property
10283
- @pulumi.getter(name="storagePools")
10284
- def storage_pools(self) -> Optional[Sequence[str]]:
10285
- """
10286
- The list of Storage Pools where boot disks are provisioned.
10287
- """
10288
- return pulumi.get(self, "storage_pools")
10289
-
10290
10224
  @property
10291
10225
  @pulumi.getter
10292
10226
  def tags(self) -> Optional[Sequence[str]]:
@@ -13062,8 +12996,6 @@ class NodePoolNodeConfig(dict):
13062
12996
  suggest = "shielded_instance_config"
13063
12997
  elif key == "soleTenantConfig":
13064
12998
  suggest = "sole_tenant_config"
13065
- elif key == "storagePools":
13066
- suggest = "storage_pools"
13067
12999
  elif key == "workloadMetadataConfig":
13068
13000
  suggest = "workload_metadata_config"
13069
13001
 
@@ -13116,7 +13048,6 @@ class NodePoolNodeConfig(dict):
13116
13048
  shielded_instance_config: Optional['outputs.NodePoolNodeConfigShieldedInstanceConfig'] = None,
13117
13049
  sole_tenant_config: Optional['outputs.NodePoolNodeConfigSoleTenantConfig'] = None,
13118
13050
  spot: Optional[bool] = None,
13119
- storage_pools: Optional[Sequence[str]] = None,
13120
13051
  tags: Optional[Sequence[str]] = None,
13121
13052
  taints: Optional[Sequence['outputs.NodePoolNodeConfigTaint']] = None,
13122
13053
  workload_metadata_config: Optional['outputs.NodePoolNodeConfigWorkloadMetadataConfig'] = None):
@@ -13161,7 +13092,6 @@ class NodePoolNodeConfig(dict):
13161
13092
  :param 'NodePoolNodeConfigShieldedInstanceConfigArgs' shielded_instance_config: Shielded Instance options.
13162
13093
  :param 'NodePoolNodeConfigSoleTenantConfigArgs' sole_tenant_config: Node affinity options for sole tenant node pools.
13163
13094
  :param bool spot: Whether the nodes are created as spot VM instances.
13164
- :param Sequence[str] storage_pools: The list of Storage Pools where boot disks are provisioned.
13165
13095
  :param Sequence[str] tags: The list of instance tags applied to all nodes.
13166
13096
  :param Sequence['NodePoolNodeConfigTaintArgs'] taints: List of Kubernetes taints to be applied to each node.
13167
13097
  :param 'NodePoolNodeConfigWorkloadMetadataConfigArgs' workload_metadata_config: The workload metadata configuration for this node.
@@ -13240,8 +13170,6 @@ class NodePoolNodeConfig(dict):
13240
13170
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
13241
13171
  if spot is not None:
13242
13172
  pulumi.set(__self__, "spot", spot)
13243
- if storage_pools is not None:
13244
- pulumi.set(__self__, "storage_pools", storage_pools)
13245
13173
  if tags is not None:
13246
13174
  pulumi.set(__self__, "tags", tags)
13247
13175
  if taints is not None:
@@ -13548,14 +13476,6 @@ class NodePoolNodeConfig(dict):
13548
13476
  """
13549
13477
  return pulumi.get(self, "spot")
13550
13478
 
13551
- @property
13552
- @pulumi.getter(name="storagePools")
13553
- def storage_pools(self) -> Optional[Sequence[str]]:
13554
- """
13555
- The list of Storage Pools where boot disks are provisioned.
13556
- """
13557
- return pulumi.get(self, "storage_pools")
13558
-
13559
13479
  @property
13560
13480
  @pulumi.getter
13561
13481
  def tags(self) -> Optional[Sequence[str]]:
@@ -16723,7 +16643,6 @@ class GetClusterNodeConfigResult(dict):
16723
16643
  shielded_instance_configs: Sequence['outputs.GetClusterNodeConfigShieldedInstanceConfigResult'],
16724
16644
  sole_tenant_configs: Sequence['outputs.GetClusterNodeConfigSoleTenantConfigResult'],
16725
16645
  spot: bool,
16726
- storage_pools: Sequence[str],
16727
16646
  tags: Sequence[str],
16728
16647
  taints: Sequence['outputs.GetClusterNodeConfigTaintResult'],
16729
16648
  workload_metadata_configs: Sequence['outputs.GetClusterNodeConfigWorkloadMetadataConfigResult']):
@@ -16765,7 +16684,6 @@ class GetClusterNodeConfigResult(dict):
16765
16684
  :param Sequence['GetClusterNodeConfigShieldedInstanceConfigArgs'] shielded_instance_configs: Shielded Instance options.
16766
16685
  :param Sequence['GetClusterNodeConfigSoleTenantConfigArgs'] sole_tenant_configs: Node affinity options for sole tenant node pools.
16767
16686
  :param bool spot: Whether the nodes are created as spot VM instances.
16768
- :param Sequence[str] storage_pools: The list of Storage Pools where boot disks are provisioned.
16769
16687
  :param Sequence[str] tags: The list of instance tags applied to all nodes.
16770
16688
  :param Sequence['GetClusterNodeConfigTaintArgs'] taints: List of Kubernetes taints to be applied to each node.
16771
16689
  :param Sequence['GetClusterNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_configs: The workload metadata configuration for this node.
@@ -16807,7 +16725,6 @@ class GetClusterNodeConfigResult(dict):
16807
16725
  pulumi.set(__self__, "shielded_instance_configs", shielded_instance_configs)
16808
16726
  pulumi.set(__self__, "sole_tenant_configs", sole_tenant_configs)
16809
16727
  pulumi.set(__self__, "spot", spot)
16810
- pulumi.set(__self__, "storage_pools", storage_pools)
16811
16728
  pulumi.set(__self__, "tags", tags)
16812
16729
  pulumi.set(__self__, "taints", taints)
16813
16730
  pulumi.set(__self__, "workload_metadata_configs", workload_metadata_configs)
@@ -17108,14 +17025,6 @@ class GetClusterNodeConfigResult(dict):
17108
17025
  """
17109
17026
  return pulumi.get(self, "spot")
17110
17027
 
17111
- @property
17112
- @pulumi.getter(name="storagePools")
17113
- def storage_pools(self) -> Sequence[str]:
17114
- """
17115
- The list of Storage Pools where boot disks are provisioned.
17116
- """
17117
- return pulumi.get(self, "storage_pools")
17118
-
17119
17028
  @property
17120
17029
  @pulumi.getter
17121
17030
  def tags(self) -> Sequence[str]:
@@ -18641,7 +18550,6 @@ class GetClusterNodePoolNodeConfigResult(dict):
18641
18550
  shielded_instance_configs: Sequence['outputs.GetClusterNodePoolNodeConfigShieldedInstanceConfigResult'],
18642
18551
  sole_tenant_configs: Sequence['outputs.GetClusterNodePoolNodeConfigSoleTenantConfigResult'],
18643
18552
  spot: bool,
18644
- storage_pools: Sequence[str],
18645
18553
  tags: Sequence[str],
18646
18554
  taints: Sequence['outputs.GetClusterNodePoolNodeConfigTaintResult'],
18647
18555
  workload_metadata_configs: Sequence['outputs.GetClusterNodePoolNodeConfigWorkloadMetadataConfigResult']):
@@ -18683,7 +18591,6 @@ class GetClusterNodePoolNodeConfigResult(dict):
18683
18591
  :param Sequence['GetClusterNodePoolNodeConfigShieldedInstanceConfigArgs'] shielded_instance_configs: Shielded Instance options.
18684
18592
  :param Sequence['GetClusterNodePoolNodeConfigSoleTenantConfigArgs'] sole_tenant_configs: Node affinity options for sole tenant node pools.
18685
18593
  :param bool spot: Whether the nodes are created as spot VM instances.
18686
- :param Sequence[str] storage_pools: The list of Storage Pools where boot disks are provisioned.
18687
18594
  :param Sequence[str] tags: The list of instance tags applied to all nodes.
18688
18595
  :param Sequence['GetClusterNodePoolNodeConfigTaintArgs'] taints: List of Kubernetes taints to be applied to each node.
18689
18596
  :param Sequence['GetClusterNodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_configs: The workload metadata configuration for this node.
@@ -18725,7 +18632,6 @@ class GetClusterNodePoolNodeConfigResult(dict):
18725
18632
  pulumi.set(__self__, "shielded_instance_configs", shielded_instance_configs)
18726
18633
  pulumi.set(__self__, "sole_tenant_configs", sole_tenant_configs)
18727
18634
  pulumi.set(__self__, "spot", spot)
18728
- pulumi.set(__self__, "storage_pools", storage_pools)
18729
18635
  pulumi.set(__self__, "tags", tags)
18730
18636
  pulumi.set(__self__, "taints", taints)
18731
18637
  pulumi.set(__self__, "workload_metadata_configs", workload_metadata_configs)
@@ -19026,14 +18932,6 @@ class GetClusterNodePoolNodeConfigResult(dict):
19026
18932
  """
19027
18933
  return pulumi.get(self, "spot")
19028
18934
 
19029
- @property
19030
- @pulumi.getter(name="storagePools")
19031
- def storage_pools(self) -> Sequence[str]:
19032
- """
19033
- The list of Storage Pools where boot disks are provisioned.
19034
- """
19035
- return pulumi.get(self, "storage_pools")
19036
-
19037
18935
  @property
19038
18936
  @pulumi.getter
19039
18937
  def tags(self) -> Sequence[str]: