pulumi-gcp 7.38.0__py3-none-any.whl → 7.38.0a1723822337__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 (46) hide show
  1. pulumi_gcp/__init__.py +0 -32
  2. pulumi_gcp/appengine/flexible_app_version.py +0 -8
  3. pulumi_gcp/applicationintegration/client.py +2 -2
  4. pulumi_gcp/artifactregistry/__init__.py +0 -1
  5. pulumi_gcp/bigquery/connection.py +0 -12
  6. pulumi_gcp/clouddeploy/_inputs.py +1 -41
  7. pulumi_gcp/clouddeploy/outputs.py +1 -29
  8. pulumi_gcp/cloudfunctionsv2/function.py +0 -2
  9. pulumi_gcp/cloudidentity/__init__.py +0 -1
  10. pulumi_gcp/cloudidentity/get_group_memberships.py +0 -12
  11. pulumi_gcp/cloudidentity/outputs.py +0 -131
  12. pulumi_gcp/compute/_inputs.py +30 -36
  13. pulumi_gcp/compute/outputs.py +38 -48
  14. pulumi_gcp/compute/region_network_endpoint_group.py +0 -8
  15. pulumi_gcp/compute/subnetwork.py +0 -82
  16. pulumi_gcp/container/_inputs.py +18 -15
  17. pulumi_gcp/container/attached_cluster.py +7 -14
  18. pulumi_gcp/container/outputs.py +12 -10
  19. pulumi_gcp/discoveryengine/__init__.py +0 -1
  20. pulumi_gcp/dns/_inputs.py +76 -80
  21. pulumi_gcp/dns/outputs.py +52 -56
  22. pulumi_gcp/managedkafka/_inputs.py +6 -6
  23. pulumi_gcp/managedkafka/cluster.py +7 -7
  24. pulumi_gcp/managedkafka/outputs.py +4 -4
  25. pulumi_gcp/managedkafka/topic.py +7 -7
  26. pulumi_gcp/parallelstore/instance.py +15 -215
  27. pulumi_gcp/pulumi-plugin.json +1 -1
  28. pulumi_gcp/securitycenter/__init__.py +0 -2
  29. pulumi_gcp/securitycenter/_inputs.py +0 -186
  30. pulumi_gcp/securitycenter/outputs.py +0 -118
  31. pulumi_gcp/servicenetworking/connection.py +3 -50
  32. pulumi_gcp/sql/_inputs.py +0 -20
  33. pulumi_gcp/sql/outputs.py +0 -36
  34. pulumi_gcp/vertex/__init__.py +0 -1
  35. pulumi_gcp/vertex/_inputs.py +0 -438
  36. pulumi_gcp/vertex/outputs.py +0 -393
  37. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/METADATA +1 -1
  38. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/RECORD +40 -46
  39. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/WHEEL +1 -1
  40. pulumi_gcp/artifactregistry/get_locations.py +0 -167
  41. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +0 -93
  42. pulumi_gcp/discoveryengine/schema.py +0 -524
  43. pulumi_gcp/securitycenter/folder_notification_config.py +0 -486
  44. pulumi_gcp/securitycenter/v2_folder_notification_config.py +0 -575
  45. pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +0 -1170
  46. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/top_level.txt +0 -0
@@ -36,7 +36,6 @@ class SubnetworkArgs:
36
36
  region: Optional[pulumi.Input[str]] = None,
37
37
  role: Optional[pulumi.Input[str]] = None,
38
38
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input['SubnetworkSecondaryIpRangeArgs']]]] = None,
39
- send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
40
39
  stack_type: Optional[pulumi.Input[str]] = None):
41
40
  """
42
41
  The set of arguments for constructing a Subnetwork resource.
@@ -97,12 +96,6 @@ class SubnetworkArgs:
97
96
  to the primary ipCidrRange of the subnetwork. The alias IPs may belong
98
97
  to either primary or secondary ranges.
99
98
  Structure is documented below.
100
- :param pulumi.Input[bool] send_secondary_ip_range_if_empty: Controls the removal behavior of secondary_ip_range.
101
- When false, removing secondary_ip_range from config will not produce a diff as
102
- the provider will default to the API's value.
103
- When true, the provider will treat removing secondary_ip_range as sending an
104
- empty list of secondary IP ranges to the API.
105
- Defaults to false.
106
99
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
107
100
  If not specified IPV4_ONLY will be used.
108
101
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -135,8 +128,6 @@ class SubnetworkArgs:
135
128
  pulumi.set(__self__, "role", role)
136
129
  if secondary_ip_ranges is not None:
137
130
  pulumi.set(__self__, "secondary_ip_ranges", secondary_ip_ranges)
138
- if send_secondary_ip_range_if_empty is not None:
139
- pulumi.set(__self__, "send_secondary_ip_range_if_empty", send_secondary_ip_range_if_empty)
140
131
  if stack_type is not None:
141
132
  pulumi.set(__self__, "stack_type", stack_type)
142
133
 
@@ -362,23 +353,6 @@ class SubnetworkArgs:
362
353
  def secondary_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SubnetworkSecondaryIpRangeArgs']]]]):
363
354
  pulumi.set(self, "secondary_ip_ranges", value)
364
355
 
365
- @property
366
- @pulumi.getter(name="sendSecondaryIpRangeIfEmpty")
367
- def send_secondary_ip_range_if_empty(self) -> Optional[pulumi.Input[bool]]:
368
- """
369
- Controls the removal behavior of secondary_ip_range.
370
- When false, removing secondary_ip_range from config will not produce a diff as
371
- the provider will default to the API's value.
372
- When true, the provider will treat removing secondary_ip_range as sending an
373
- empty list of secondary IP ranges to the API.
374
- Defaults to false.
375
- """
376
- return pulumi.get(self, "send_secondary_ip_range_if_empty")
377
-
378
- @send_secondary_ip_range_if_empty.setter
379
- def send_secondary_ip_range_if_empty(self, value: Optional[pulumi.Input[bool]]):
380
- pulumi.set(self, "send_secondary_ip_range_if_empty", value)
381
-
382
356
  @property
383
357
  @pulumi.getter(name="stackType")
384
358
  def stack_type(self) -> Optional[pulumi.Input[str]]:
@@ -418,7 +392,6 @@ class _SubnetworkState:
418
392
  role: Optional[pulumi.Input[str]] = None,
419
393
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input['SubnetworkSecondaryIpRangeArgs']]]] = None,
420
394
  self_link: Optional[pulumi.Input[str]] = None,
421
- send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
422
395
  stack_type: Optional[pulumi.Input[str]] = None):
423
396
  """
424
397
  Input properties used for looking up and filtering Subnetwork resources.
@@ -486,12 +459,6 @@ class _SubnetworkState:
486
459
  to either primary or secondary ranges.
487
460
  Structure is documented below.
488
461
  :param pulumi.Input[str] self_link: The URI of the created resource.
489
- :param pulumi.Input[bool] send_secondary_ip_range_if_empty: Controls the removal behavior of secondary_ip_range.
490
- When false, removing secondary_ip_range from config will not produce a diff as
491
- the provider will default to the API's value.
492
- When true, the provider will treat removing secondary_ip_range as sending an
493
- empty list of secondary IP ranges to the API.
494
- Defaults to false.
495
462
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
496
463
  If not specified IPV4_ONLY will be used.
497
464
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -541,8 +508,6 @@ class _SubnetworkState:
541
508
  pulumi.set(__self__, "secondary_ip_ranges", secondary_ip_ranges)
542
509
  if self_link is not None:
543
510
  pulumi.set(__self__, "self_link", self_link)
544
- if send_secondary_ip_range_if_empty is not None:
545
- pulumi.set(__self__, "send_secondary_ip_range_if_empty", send_secondary_ip_range_if_empty)
546
511
  if stack_type is not None:
547
512
  pulumi.set(__self__, "stack_type", stack_type)
548
513
 
@@ -842,23 +807,6 @@ class _SubnetworkState:
842
807
  def self_link(self, value: Optional[pulumi.Input[str]]):
843
808
  pulumi.set(self, "self_link", value)
844
809
 
845
- @property
846
- @pulumi.getter(name="sendSecondaryIpRangeIfEmpty")
847
- def send_secondary_ip_range_if_empty(self) -> Optional[pulumi.Input[bool]]:
848
- """
849
- Controls the removal behavior of secondary_ip_range.
850
- When false, removing secondary_ip_range from config will not produce a diff as
851
- the provider will default to the API's value.
852
- When true, the provider will treat removing secondary_ip_range as sending an
853
- empty list of secondary IP ranges to the API.
854
- Defaults to false.
855
- """
856
- return pulumi.get(self, "send_secondary_ip_range_if_empty")
857
-
858
- @send_secondary_ip_range_if_empty.setter
859
- def send_secondary_ip_range_if_empty(self, value: Optional[pulumi.Input[bool]]):
860
- pulumi.set(self, "send_secondary_ip_range_if_empty", value)
861
-
862
810
  @property
863
811
  @pulumi.getter(name="stackType")
864
812
  def stack_type(self) -> Optional[pulumi.Input[str]]:
@@ -894,7 +842,6 @@ class Subnetwork(pulumi.CustomResource):
894
842
  region: Optional[pulumi.Input[str]] = None,
895
843
  role: Optional[pulumi.Input[str]] = None,
896
844
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SubnetworkSecondaryIpRangeArgs', 'SubnetworkSecondaryIpRangeArgsDict']]]]] = None,
897
- send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
898
845
  stack_type: Optional[pulumi.Input[str]] = None,
899
846
  __props__=None):
900
847
  """
@@ -1143,12 +1090,6 @@ class Subnetwork(pulumi.CustomResource):
1143
1090
  to the primary ipCidrRange of the subnetwork. The alias IPs may belong
1144
1091
  to either primary or secondary ranges.
1145
1092
  Structure is documented below.
1146
- :param pulumi.Input[bool] send_secondary_ip_range_if_empty: Controls the removal behavior of secondary_ip_range.
1147
- When false, removing secondary_ip_range from config will not produce a diff as
1148
- the provider will default to the API's value.
1149
- When true, the provider will treat removing secondary_ip_range as sending an
1150
- empty list of secondary IP ranges to the API.
1151
- Defaults to false.
1152
1093
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
1153
1094
  If not specified IPV4_ONLY will be used.
1154
1095
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -1376,7 +1317,6 @@ class Subnetwork(pulumi.CustomResource):
1376
1317
  region: Optional[pulumi.Input[str]] = None,
1377
1318
  role: Optional[pulumi.Input[str]] = None,
1378
1319
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SubnetworkSecondaryIpRangeArgs', 'SubnetworkSecondaryIpRangeArgsDict']]]]] = None,
1379
- send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
1380
1320
  stack_type: Optional[pulumi.Input[str]] = None,
1381
1321
  __props__=None):
1382
1322
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -1406,7 +1346,6 @@ class Subnetwork(pulumi.CustomResource):
1406
1346
  __props__.__dict__["region"] = region
1407
1347
  __props__.__dict__["role"] = role
1408
1348
  __props__.__dict__["secondary_ip_ranges"] = secondary_ip_ranges
1409
- __props__.__dict__["send_secondary_ip_range_if_empty"] = send_secondary_ip_range_if_empty
1410
1349
  __props__.__dict__["stack_type"] = stack_type
1411
1350
  __props__.__dict__["creation_timestamp"] = None
1412
1351
  __props__.__dict__["fingerprint"] = None
@@ -1445,7 +1384,6 @@ class Subnetwork(pulumi.CustomResource):
1445
1384
  role: Optional[pulumi.Input[str]] = None,
1446
1385
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SubnetworkSecondaryIpRangeArgs', 'SubnetworkSecondaryIpRangeArgsDict']]]]] = None,
1447
1386
  self_link: Optional[pulumi.Input[str]] = None,
1448
- send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
1449
1387
  stack_type: Optional[pulumi.Input[str]] = None) -> 'Subnetwork':
1450
1388
  """
1451
1389
  Get an existing Subnetwork resource's state with the given name, id, and optional extra
@@ -1518,12 +1456,6 @@ class Subnetwork(pulumi.CustomResource):
1518
1456
  to either primary or secondary ranges.
1519
1457
  Structure is documented below.
1520
1458
  :param pulumi.Input[str] self_link: The URI of the created resource.
1521
- :param pulumi.Input[bool] send_secondary_ip_range_if_empty: Controls the removal behavior of secondary_ip_range.
1522
- When false, removing secondary_ip_range from config will not produce a diff as
1523
- the provider will default to the API's value.
1524
- When true, the provider will treat removing secondary_ip_range as sending an
1525
- empty list of secondary IP ranges to the API.
1526
- Defaults to false.
1527
1459
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
1528
1460
  If not specified IPV4_ONLY will be used.
1529
1461
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -1553,7 +1485,6 @@ class Subnetwork(pulumi.CustomResource):
1553
1485
  __props__.__dict__["role"] = role
1554
1486
  __props__.__dict__["secondary_ip_ranges"] = secondary_ip_ranges
1555
1487
  __props__.__dict__["self_link"] = self_link
1556
- __props__.__dict__["send_secondary_ip_range_if_empty"] = send_secondary_ip_range_if_empty
1557
1488
  __props__.__dict__["stack_type"] = stack_type
1558
1489
  return Subnetwork(resource_name, opts=opts, __props__=__props__)
1559
1490
 
@@ -1769,19 +1700,6 @@ class Subnetwork(pulumi.CustomResource):
1769
1700
  """
1770
1701
  return pulumi.get(self, "self_link")
1771
1702
 
1772
- @property
1773
- @pulumi.getter(name="sendSecondaryIpRangeIfEmpty")
1774
- def send_secondary_ip_range_if_empty(self) -> pulumi.Output[Optional[bool]]:
1775
- """
1776
- Controls the removal behavior of secondary_ip_range.
1777
- When false, removing secondary_ip_range from config will not produce a diff as
1778
- the provider will default to the API's value.
1779
- When true, the provider will treat removing secondary_ip_range as sending an
1780
- empty list of secondary IP ranges to the API.
1781
- Defaults to false.
1782
- """
1783
- return pulumi.get(self, "send_secondary_ip_range_if_empty")
1784
-
1785
1703
  @property
1786
1704
  @pulumi.getter(name="stackType")
1787
1705
  def stack_type(self) -> pulumi.Output[str]:
@@ -8040,7 +8040,7 @@ if not MYPY:
8040
8040
  """
8041
8041
  confidential_nodes: NotRequired[pulumi.Input['ClusterNodeConfigConfidentialNodesArgsDict']]
8042
8042
  """
8043
- Configuration for Confidential Nodes feature. Structure is documented below.
8043
+ Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
8044
8044
  """
8045
8045
  containerd_config: NotRequired[pulumi.Input['ClusterNodeConfigContainerdConfigArgsDict']]
8046
8046
  """
@@ -8297,7 +8297,7 @@ class ClusterNodeConfigArgs:
8297
8297
  :param pulumi.Input['ClusterNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling
8298
8298
  advanced machine features. Structure is documented below.
8299
8299
  :param pulumi.Input[str] boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: <https://cloud.google.com/compute/docs/disks/customer-managed-encryption>
8300
- :param pulumi.Input['ClusterNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for Confidential Nodes feature. Structure is documented below.
8300
+ :param pulumi.Input['ClusterNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
8301
8301
  :param pulumi.Input['ClusterNodeConfigContainerdConfigArgs'] containerd_config: Parameters to customize containerd runtime. Structure is documented below.
8302
8302
  :param pulumi.Input[int] disk_size_gb: Size of the disk attached to each node, specified
8303
8303
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
@@ -8503,7 +8503,7 @@ class ClusterNodeConfigArgs:
8503
8503
  @pulumi.getter(name="confidentialNodes")
8504
8504
  def confidential_nodes(self) -> Optional[pulumi.Input['ClusterNodeConfigConfidentialNodesArgs']]:
8505
8505
  """
8506
- Configuration for Confidential Nodes feature. Structure is documented below.
8506
+ Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
8507
8507
  """
8508
8508
  return pulumi.get(self, "confidential_nodes")
8509
8509
 
@@ -11758,7 +11758,7 @@ if not MYPY:
11758
11758
  """
11759
11759
  confidential_nodes: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigConfidentialNodesArgsDict']]
11760
11760
  """
11761
- Configuration for Confidential Nodes feature. Structure is documented below.
11761
+ Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
11762
11762
  """
11763
11763
  containerd_config: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigArgsDict']]
11764
11764
  """
@@ -12015,7 +12015,7 @@ class ClusterNodePoolNodeConfigArgs:
12015
12015
  :param pulumi.Input['ClusterNodePoolNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling
12016
12016
  advanced machine features. Structure is documented below.
12017
12017
  :param pulumi.Input[str] boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: <https://cloud.google.com/compute/docs/disks/customer-managed-encryption>
12018
- :param pulumi.Input['ClusterNodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for Confidential Nodes feature. Structure is documented below.
12018
+ :param pulumi.Input['ClusterNodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
12019
12019
  :param pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigArgs'] containerd_config: Parameters to customize containerd runtime. Structure is documented below.
12020
12020
  :param pulumi.Input[int] disk_size_gb: Size of the disk attached to each node, specified
12021
12021
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
@@ -12221,7 +12221,7 @@ class ClusterNodePoolNodeConfigArgs:
12221
12221
  @pulumi.getter(name="confidentialNodes")
12222
12222
  def confidential_nodes(self) -> Optional[pulumi.Input['ClusterNodePoolNodeConfigConfidentialNodesArgs']]:
12223
12223
  """
12224
- Configuration for Confidential Nodes feature. Structure is documented below.
12224
+ Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
12225
12225
  """
12226
12226
  return pulumi.get(self, "confidential_nodes")
12227
12227
 
@@ -15988,7 +15988,7 @@ if not MYPY:
15988
15988
  """
15989
15989
  confidential_nodes: NotRequired[pulumi.Input['NodePoolNodeConfigConfidentialNodesArgsDict']]
15990
15990
  """
15991
- Configuration for the confidential nodes feature, which makes nodes run on confidential VMs. Warning: This configuration can't be changed (or added/removed) after pool creation without deleting and recreating the entire pool.
15991
+ Configuration for Confidential Nodes feature. Structure is documented below.
15992
15992
  """
15993
15993
  containerd_config: NotRequired[pulumi.Input['NodePoolNodeConfigContainerdConfigArgsDict']]
15994
15994
  """
@@ -16190,7 +16190,7 @@ class NodePoolNodeConfigArgs:
16190
16190
  """
16191
16191
  :param pulumi.Input['NodePoolNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling advanced machine features.
16192
16192
  :param pulumi.Input[str] boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool.
16193
- :param pulumi.Input['NodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs. Warning: This configuration can't be changed (or added/removed) after pool creation without deleting and recreating the entire pool.
16193
+ :param pulumi.Input['NodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for Confidential Nodes feature. Structure is documented below.
16194
16194
  :param pulumi.Input['NodePoolNodeConfigContainerdConfigArgs'] containerd_config: Parameters for containerd configuration.
16195
16195
  :param pulumi.Input[int] disk_size_gb: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB.
16196
16196
  :param pulumi.Input[str] disk_type: Type of the disk attached to each node. Such as pd-standard, pd-balanced or pd-ssd
@@ -16341,7 +16341,7 @@ class NodePoolNodeConfigArgs:
16341
16341
  @pulumi.getter(name="confidentialNodes")
16342
16342
  def confidential_nodes(self) -> Optional[pulumi.Input['NodePoolNodeConfigConfidentialNodesArgs']]:
16343
16343
  """
16344
- Configuration for the confidential nodes feature, which makes nodes run on confidential VMs. Warning: This configuration can't be changed (or added/removed) after pool creation without deleting and recreating the entire pool.
16344
+ Configuration for Confidential Nodes feature. Structure is documented below.
16345
16345
  """
16346
16346
  return pulumi.get(self, "confidential_nodes")
16347
16347
 
@@ -16852,7 +16852,8 @@ if not MYPY:
16852
16852
  class NodePoolNodeConfigConfidentialNodesArgsDict(TypedDict):
16853
16853
  enabled: pulumi.Input[bool]
16854
16854
  """
16855
- Whether Confidential Nodes feature is enabled for all nodes in this pool.
16855
+ Enable Confidential GKE Nodes for this cluster, to
16856
+ enforce encryption of data in-use.
16856
16857
  """
16857
16858
  elif False:
16858
16859
  NodePoolNodeConfigConfidentialNodesArgsDict: TypeAlias = Mapping[str, Any]
@@ -16862,7 +16863,8 @@ class NodePoolNodeConfigConfidentialNodesArgs:
16862
16863
  def __init__(__self__, *,
16863
16864
  enabled: pulumi.Input[bool]):
16864
16865
  """
16865
- :param pulumi.Input[bool] enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
16866
+ :param pulumi.Input[bool] enabled: Enable Confidential GKE Nodes for this cluster, to
16867
+ enforce encryption of data in-use.
16866
16868
  """
16867
16869
  pulumi.set(__self__, "enabled", enabled)
16868
16870
 
@@ -16870,7 +16872,8 @@ class NodePoolNodeConfigConfidentialNodesArgs:
16870
16872
  @pulumi.getter
16871
16873
  def enabled(self) -> pulumi.Input[bool]:
16872
16874
  """
16873
- Whether Confidential Nodes feature is enabled for all nodes in this pool.
16875
+ Enable Confidential GKE Nodes for this cluster, to
16876
+ enforce encryption of data in-use.
16874
16877
  """
16875
16878
  return pulumi.get(self, "enabled")
16876
16879
 
@@ -18226,7 +18229,7 @@ if not MYPY:
18226
18229
  """
18227
18230
  strategy: NotRequired[pulumi.Input[str]]
18228
18231
  """
18229
- The upgrade strategy to be used for upgrading the nodes.
18232
+ The upgrade stragey to be used for upgrading the nodes.
18230
18233
  """
18231
18234
  elif False:
18232
18235
  NodePoolUpgradeSettingsArgsDict: TypeAlias = Mapping[str, Any]
@@ -18249,7 +18252,7 @@ class NodePoolUpgradeSettingsArgs:
18249
18252
  parallel. Can be set to 0 or greater.
18250
18253
 
18251
18254
  `max_surge` and `max_unavailable` must not be negative and at least one of them must be greater than zero.
18252
- :param pulumi.Input[str] strategy: The upgrade strategy to be used for upgrading the nodes.
18255
+ :param pulumi.Input[str] strategy: The upgrade stragey to be used for upgrading the nodes.
18253
18256
  """
18254
18257
  if blue_green_settings is not None:
18255
18258
  pulumi.set(__self__, "blue_green_settings", blue_green_settings)
@@ -18307,7 +18310,7 @@ class NodePoolUpgradeSettingsArgs:
18307
18310
  @pulumi.getter
18308
18311
  def strategy(self) -> Optional[pulumi.Input[str]]:
18309
18312
  """
18310
- The upgrade strategy to be used for upgrading the nodes.
18313
+ The upgrade stragey to be used for upgrading the nodes.
18311
18314
  """
18312
18315
  return pulumi.get(self, "strategy")
18313
18316
 
@@ -39,8 +39,7 @@ class AttachedClusterArgs:
39
39
  """
40
40
  The set of arguments for constructing a AttachedCluster resource.
41
41
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
42
- "eks", "aks", "generic". The generic distribution provides the ability to register
43
- or migrate any CNCF conformant cluster.
42
+ "eks", "aks".
44
43
  :param pulumi.Input['AttachedClusterFleetArgs'] fleet: Fleet configuration.
45
44
  Structure is documented below.
46
45
  :param pulumi.Input[str] location: The location for the resource
@@ -101,8 +100,7 @@ class AttachedClusterArgs:
101
100
  def distribution(self) -> pulumi.Input[str]:
102
101
  """
103
102
  The Kubernetes distribution of the underlying attached cluster. Supported values:
104
- "eks", "aks", "generic". The generic distribution provides the ability to register
105
- or migrate any CNCF conformant cluster.
103
+ "eks", "aks".
106
104
  """
107
105
  return pulumi.get(self, "distribution")
108
106
 
@@ -336,8 +334,7 @@ class _AttachedClusterState:
336
334
  :param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
337
335
  :param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
338
336
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
339
- "eks", "aks", "generic". The generic distribution provides the ability to register
340
- or migrate any CNCF conformant cluster.
337
+ "eks", "aks".
341
338
  :param pulumi.Input[Sequence[pulumi.Input['AttachedClusterErrorArgs']]] errors: A set of errors found in the cluster.
342
339
  Structure is documented below.
343
340
  :param pulumi.Input['AttachedClusterFleetArgs'] fleet: Fleet configuration.
@@ -515,8 +512,7 @@ class _AttachedClusterState:
515
512
  def distribution(self) -> Optional[pulumi.Input[str]]:
516
513
  """
517
514
  The Kubernetes distribution of the underlying attached cluster. Supported values:
518
- "eks", "aks", "generic". The generic distribution provides the ability to register
519
- or migrate any CNCF conformant cluster.
515
+ "eks", "aks".
520
516
  """
521
517
  return pulumi.get(self, "distribution")
522
518
 
@@ -915,8 +911,7 @@ class AttachedCluster(pulumi.CustomResource):
915
911
  :param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
916
912
  :param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
917
913
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
918
- "eks", "aks", "generic". The generic distribution provides the ability to register
919
- or migrate any CNCF conformant cluster.
914
+ "eks", "aks".
920
915
  :param pulumi.Input[Union['AttachedClusterFleetArgs', 'AttachedClusterFleetArgsDict']] fleet: Fleet configuration.
921
916
  Structure is documented below.
922
917
  :param pulumi.Input[str] location: The location for the resource
@@ -1217,8 +1212,7 @@ class AttachedCluster(pulumi.CustomResource):
1217
1212
  :param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
1218
1213
  :param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
1219
1214
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
1220
- "eks", "aks", "generic". The generic distribution provides the ability to register
1221
- or migrate any CNCF conformant cluster.
1215
+ "eks", "aks".
1222
1216
  :param pulumi.Input[Sequence[pulumi.Input[Union['AttachedClusterErrorArgs', 'AttachedClusterErrorArgsDict']]]] errors: A set of errors found in the cluster.
1223
1217
  Structure is documented below.
1224
1218
  :param pulumi.Input[Union['AttachedClusterFleetArgs', 'AttachedClusterFleetArgsDict']] fleet: Fleet configuration.
@@ -1348,8 +1342,7 @@ class AttachedCluster(pulumi.CustomResource):
1348
1342
  def distribution(self) -> pulumi.Output[str]:
1349
1343
  """
1350
1344
  The Kubernetes distribution of the underlying attached cluster. Supported values:
1351
- "eks", "aks", "generic". The generic distribution provides the ability to register
1352
- or migrate any CNCF conformant cluster.
1345
+ "eks", "aks".
1353
1346
  """
1354
1347
  return pulumi.get(self, "distribution")
1355
1348
 
@@ -6704,7 +6704,7 @@ class ClusterNodeConfig(dict):
6704
6704
  :param 'ClusterNodeConfigAdvancedMachineFeaturesArgs' advanced_machine_features: Specifies options for controlling
6705
6705
  advanced machine features. Structure is documented below.
6706
6706
  :param str boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: <https://cloud.google.com/compute/docs/disks/customer-managed-encryption>
6707
- :param 'ClusterNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for Confidential Nodes feature. Structure is documented below.
6707
+ :param 'ClusterNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
6708
6708
  :param 'ClusterNodeConfigContainerdConfigArgs' containerd_config: Parameters to customize containerd runtime. Structure is documented below.
6709
6709
  :param int disk_size_gb: Size of the disk attached to each node, specified
6710
6710
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
@@ -6902,7 +6902,7 @@ class ClusterNodeConfig(dict):
6902
6902
  @pulumi.getter(name="confidentialNodes")
6903
6903
  def confidential_nodes(self) -> Optional['outputs.ClusterNodeConfigConfidentialNodes']:
6904
6904
  """
6905
- Configuration for Confidential Nodes feature. Structure is documented below.
6905
+ Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
6906
6906
  """
6907
6907
  return pulumi.get(self, "confidential_nodes")
6908
6908
 
@@ -9633,7 +9633,7 @@ class ClusterNodePoolNodeConfig(dict):
9633
9633
  :param 'ClusterNodePoolNodeConfigAdvancedMachineFeaturesArgs' advanced_machine_features: Specifies options for controlling
9634
9634
  advanced machine features. Structure is documented below.
9635
9635
  :param str boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: <https://cloud.google.com/compute/docs/disks/customer-managed-encryption>
9636
- :param 'ClusterNodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for Confidential Nodes feature. Structure is documented below.
9636
+ :param 'ClusterNodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
9637
9637
  :param 'ClusterNodePoolNodeConfigContainerdConfigArgs' containerd_config: Parameters to customize containerd runtime. Structure is documented below.
9638
9638
  :param int disk_size_gb: Size of the disk attached to each node, specified
9639
9639
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
@@ -9831,7 +9831,7 @@ class ClusterNodePoolNodeConfig(dict):
9831
9831
  @pulumi.getter(name="confidentialNodes")
9832
9832
  def confidential_nodes(self) -> Optional['outputs.ClusterNodePoolNodeConfigConfidentialNodes']:
9833
9833
  """
9834
- Configuration for Confidential Nodes feature. Structure is documented below.
9834
+ Configuration for [Confidential Nodes](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
9835
9835
  """
9836
9836
  return pulumi.get(self, "confidential_nodes")
9837
9837
 
@@ -12972,7 +12972,7 @@ class NodePoolNodeConfig(dict):
12972
12972
  """
12973
12973
  :param 'NodePoolNodeConfigAdvancedMachineFeaturesArgs' advanced_machine_features: Specifies options for controlling advanced machine features.
12974
12974
  :param str boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool.
12975
- :param 'NodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs. Warning: This configuration can't be changed (or added/removed) after pool creation without deleting and recreating the entire pool.
12975
+ :param 'NodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for Confidential Nodes feature. Structure is documented below.
12976
12976
  :param 'NodePoolNodeConfigContainerdConfigArgs' containerd_config: Parameters for containerd configuration.
12977
12977
  :param int disk_size_gb: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB.
12978
12978
  :param str disk_type: Type of the disk attached to each node. Such as pd-standard, pd-balanced or pd-ssd
@@ -13115,7 +13115,7 @@ class NodePoolNodeConfig(dict):
13115
13115
  @pulumi.getter(name="confidentialNodes")
13116
13116
  def confidential_nodes(self) -> Optional['outputs.NodePoolNodeConfigConfidentialNodes']:
13117
13117
  """
13118
- Configuration for the confidential nodes feature, which makes nodes run on confidential VMs. Warning: This configuration can't be changed (or added/removed) after pool creation without deleting and recreating the entire pool.
13118
+ Configuration for Confidential Nodes feature. Structure is documented below.
13119
13119
  """
13120
13120
  return pulumi.get(self, "confidential_nodes")
13121
13121
 
@@ -13473,7 +13473,8 @@ class NodePoolNodeConfigConfidentialNodes(dict):
13473
13473
  def __init__(__self__, *,
13474
13474
  enabled: bool):
13475
13475
  """
13476
- :param bool enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
13476
+ :param bool enabled: Enable Confidential GKE Nodes for this cluster, to
13477
+ enforce encryption of data in-use.
13477
13478
  """
13478
13479
  pulumi.set(__self__, "enabled", enabled)
13479
13480
 
@@ -13481,7 +13482,8 @@ class NodePoolNodeConfigConfidentialNodes(dict):
13481
13482
  @pulumi.getter
13482
13483
  def enabled(self) -> bool:
13483
13484
  """
13484
- Whether Confidential Nodes feature is enabled for all nodes in this pool.
13485
+ Enable Confidential GKE Nodes for this cluster, to
13486
+ enforce encryption of data in-use.
13485
13487
  """
13486
13488
  return pulumi.get(self, "enabled")
13487
13489
 
@@ -14643,7 +14645,7 @@ class NodePoolUpgradeSettings(dict):
14643
14645
  parallel. Can be set to 0 or greater.
14644
14646
 
14645
14647
  `max_surge` and `max_unavailable` must not be negative and at least one of them must be greater than zero.
14646
- :param str strategy: The upgrade strategy to be used for upgrading the nodes.
14648
+ :param str strategy: The upgrade stragey to be used for upgrading the nodes.
14647
14649
  """
14648
14650
  if blue_green_settings is not None:
14649
14651
  pulumi.set(__self__, "blue_green_settings", blue_green_settings)
@@ -14689,7 +14691,7 @@ class NodePoolUpgradeSettings(dict):
14689
14691
  @pulumi.getter
14690
14692
  def strategy(self) -> Optional[str]:
14691
14693
  """
14692
- The upgrade strategy to be used for upgrading the nodes.
14694
+ The upgrade stragey to be used for upgrading the nodes.
14693
14695
  """
14694
14696
  return pulumi.get(self, "strategy")
14695
14697
 
@@ -7,7 +7,6 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .chat_engine import *
9
9
  from .data_store import *
10
- from .schema import *
11
10
  from .search_engine import *
12
11
  from ._inputs import *
13
12
  from . import outputs