pulumi-gcp 7.38.0a1724220350__py3-none-any.whl → 7.38.0a1724673520__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 +32 -0
  2. pulumi_gcp/appengine/flexible_app_version.py +8 -0
  3. pulumi_gcp/applicationintegration/client.py +2 -2
  4. pulumi_gcp/artifactregistry/__init__.py +1 -0
  5. pulumi_gcp/artifactregistry/get_locations.py +167 -0
  6. pulumi_gcp/bigquery/connection.py +12 -0
  7. pulumi_gcp/clouddeploy/_inputs.py +41 -1
  8. pulumi_gcp/clouddeploy/outputs.py +29 -1
  9. pulumi_gcp/cloudfunctionsv2/function.py +2 -0
  10. pulumi_gcp/cloudidentity/__init__.py +1 -0
  11. pulumi_gcp/cloudidentity/get_group_memberships.py +12 -0
  12. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +93 -0
  13. pulumi_gcp/cloudidentity/outputs.py +131 -0
  14. pulumi_gcp/compute/_inputs.py +36 -30
  15. pulumi_gcp/compute/outputs.py +48 -38
  16. pulumi_gcp/compute/region_network_endpoint_group.py +8 -0
  17. pulumi_gcp/compute/subnetwork.py +82 -0
  18. pulumi_gcp/container/_inputs.py +15 -18
  19. pulumi_gcp/container/attached_cluster.py +14 -7
  20. pulumi_gcp/container/outputs.py +10 -12
  21. pulumi_gcp/discoveryengine/__init__.py +1 -0
  22. pulumi_gcp/discoveryengine/schema.py +524 -0
  23. pulumi_gcp/dns/_inputs.py +80 -76
  24. pulumi_gcp/dns/outputs.py +56 -52
  25. pulumi_gcp/managedkafka/_inputs.py +6 -6
  26. pulumi_gcp/managedkafka/cluster.py +7 -7
  27. pulumi_gcp/managedkafka/outputs.py +4 -4
  28. pulumi_gcp/managedkafka/topic.py +7 -7
  29. pulumi_gcp/parallelstore/instance.py +215 -15
  30. pulumi_gcp/pulumi-plugin.json +1 -1
  31. pulumi_gcp/securitycenter/__init__.py +2 -0
  32. pulumi_gcp/securitycenter/_inputs.py +186 -0
  33. pulumi_gcp/securitycenter/folder_notification_config.py +486 -0
  34. pulumi_gcp/securitycenter/outputs.py +118 -0
  35. pulumi_gcp/securitycenter/v2_folder_notification_config.py +575 -0
  36. pulumi_gcp/servicenetworking/connection.py +50 -3
  37. pulumi_gcp/sql/_inputs.py +20 -0
  38. pulumi_gcp/sql/outputs.py +36 -0
  39. pulumi_gcp/vertex/__init__.py +1 -0
  40. pulumi_gcp/vertex/_inputs.py +438 -0
  41. pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +1170 -0
  42. pulumi_gcp/vertex/outputs.py +393 -0
  43. {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/RECORD +46 -40
  45. {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/WHEEL +0 -0
  46. {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,7 @@ 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,
39
40
  stack_type: Optional[pulumi.Input[str]] = None):
40
41
  """
41
42
  The set of arguments for constructing a Subnetwork resource.
@@ -96,6 +97,12 @@ class SubnetworkArgs:
96
97
  to the primary ipCidrRange of the subnetwork. The alias IPs may belong
97
98
  to either primary or secondary ranges.
98
99
  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.
99
106
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
100
107
  If not specified IPV4_ONLY will be used.
101
108
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -128,6 +135,8 @@ class SubnetworkArgs:
128
135
  pulumi.set(__self__, "role", role)
129
136
  if secondary_ip_ranges is not None:
130
137
  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)
131
140
  if stack_type is not None:
132
141
  pulumi.set(__self__, "stack_type", stack_type)
133
142
 
@@ -353,6 +362,23 @@ class SubnetworkArgs:
353
362
  def secondary_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SubnetworkSecondaryIpRangeArgs']]]]):
354
363
  pulumi.set(self, "secondary_ip_ranges", value)
355
364
 
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
+
356
382
  @property
357
383
  @pulumi.getter(name="stackType")
358
384
  def stack_type(self) -> Optional[pulumi.Input[str]]:
@@ -392,6 +418,7 @@ class _SubnetworkState:
392
418
  role: Optional[pulumi.Input[str]] = None,
393
419
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input['SubnetworkSecondaryIpRangeArgs']]]] = None,
394
420
  self_link: Optional[pulumi.Input[str]] = None,
421
+ send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
395
422
  stack_type: Optional[pulumi.Input[str]] = None):
396
423
  """
397
424
  Input properties used for looking up and filtering Subnetwork resources.
@@ -459,6 +486,12 @@ class _SubnetworkState:
459
486
  to either primary or secondary ranges.
460
487
  Structure is documented below.
461
488
  :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.
462
495
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
463
496
  If not specified IPV4_ONLY will be used.
464
497
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -508,6 +541,8 @@ class _SubnetworkState:
508
541
  pulumi.set(__self__, "secondary_ip_ranges", secondary_ip_ranges)
509
542
  if self_link is not None:
510
543
  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)
511
546
  if stack_type is not None:
512
547
  pulumi.set(__self__, "stack_type", stack_type)
513
548
 
@@ -807,6 +842,23 @@ class _SubnetworkState:
807
842
  def self_link(self, value: Optional[pulumi.Input[str]]):
808
843
  pulumi.set(self, "self_link", value)
809
844
 
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
+
810
862
  @property
811
863
  @pulumi.getter(name="stackType")
812
864
  def stack_type(self) -> Optional[pulumi.Input[str]]:
@@ -842,6 +894,7 @@ class Subnetwork(pulumi.CustomResource):
842
894
  region: Optional[pulumi.Input[str]] = None,
843
895
  role: Optional[pulumi.Input[str]] = None,
844
896
  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,
845
898
  stack_type: Optional[pulumi.Input[str]] = None,
846
899
  __props__=None):
847
900
  """
@@ -1090,6 +1143,12 @@ class Subnetwork(pulumi.CustomResource):
1090
1143
  to the primary ipCidrRange of the subnetwork. The alias IPs may belong
1091
1144
  to either primary or secondary ranges.
1092
1145
  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.
1093
1152
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
1094
1153
  If not specified IPV4_ONLY will be used.
1095
1154
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -1317,6 +1376,7 @@ class Subnetwork(pulumi.CustomResource):
1317
1376
  region: Optional[pulumi.Input[str]] = None,
1318
1377
  role: Optional[pulumi.Input[str]] = None,
1319
1378
  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,
1320
1380
  stack_type: Optional[pulumi.Input[str]] = None,
1321
1381
  __props__=None):
1322
1382
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -1346,6 +1406,7 @@ class Subnetwork(pulumi.CustomResource):
1346
1406
  __props__.__dict__["region"] = region
1347
1407
  __props__.__dict__["role"] = role
1348
1408
  __props__.__dict__["secondary_ip_ranges"] = secondary_ip_ranges
1409
+ __props__.__dict__["send_secondary_ip_range_if_empty"] = send_secondary_ip_range_if_empty
1349
1410
  __props__.__dict__["stack_type"] = stack_type
1350
1411
  __props__.__dict__["creation_timestamp"] = None
1351
1412
  __props__.__dict__["fingerprint"] = None
@@ -1384,6 +1445,7 @@ class Subnetwork(pulumi.CustomResource):
1384
1445
  role: Optional[pulumi.Input[str]] = None,
1385
1446
  secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SubnetworkSecondaryIpRangeArgs', 'SubnetworkSecondaryIpRangeArgsDict']]]]] = None,
1386
1447
  self_link: Optional[pulumi.Input[str]] = None,
1448
+ send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
1387
1449
  stack_type: Optional[pulumi.Input[str]] = None) -> 'Subnetwork':
1388
1450
  """
1389
1451
  Get an existing Subnetwork resource's state with the given name, id, and optional extra
@@ -1456,6 +1518,12 @@ class Subnetwork(pulumi.CustomResource):
1456
1518
  to either primary or secondary ranges.
1457
1519
  Structure is documented below.
1458
1520
  :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.
1459
1527
  :param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
1460
1528
  If not specified IPV4_ONLY will be used.
1461
1529
  Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
@@ -1485,6 +1553,7 @@ class Subnetwork(pulumi.CustomResource):
1485
1553
  __props__.__dict__["role"] = role
1486
1554
  __props__.__dict__["secondary_ip_ranges"] = secondary_ip_ranges
1487
1555
  __props__.__dict__["self_link"] = self_link
1556
+ __props__.__dict__["send_secondary_ip_range_if_empty"] = send_secondary_ip_range_if_empty
1488
1557
  __props__.__dict__["stack_type"] = stack_type
1489
1558
  return Subnetwork(resource_name, opts=opts, __props__=__props__)
1490
1559
 
@@ -1700,6 +1769,19 @@ class Subnetwork(pulumi.CustomResource):
1700
1769
  """
1701
1770
  return pulumi.get(self, "self_link")
1702
1771
 
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
+
1703
1785
  @property
1704
1786
  @pulumi.getter(name="stackType")
1705
1787
  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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
8043
+ Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
8300
+ :param pulumi.Input['ClusterNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
8506
+ Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
11761
+ Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
12018
+ :param pulumi.Input['ClusterNodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
12224
+ Configuration for Confidential Nodes feature. Structure is 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 Confidential Nodes feature. Structure is documented below.
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.
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 Confidential Nodes feature. Structure is documented below.
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.
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 Confidential Nodes feature. Structure is documented below.
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.
16345
16345
  """
16346
16346
  return pulumi.get(self, "confidential_nodes")
16347
16347
 
@@ -16852,8 +16852,7 @@ if not MYPY:
16852
16852
  class NodePoolNodeConfigConfidentialNodesArgsDict(TypedDict):
16853
16853
  enabled: pulumi.Input[bool]
16854
16854
  """
16855
- Enable Confidential GKE Nodes for this cluster, to
16856
- enforce encryption of data in-use.
16855
+ Whether Confidential Nodes feature is enabled for all nodes in this pool.
16857
16856
  """
16858
16857
  elif False:
16859
16858
  NodePoolNodeConfigConfidentialNodesArgsDict: TypeAlias = Mapping[str, Any]
@@ -16863,8 +16862,7 @@ class NodePoolNodeConfigConfidentialNodesArgs:
16863
16862
  def __init__(__self__, *,
16864
16863
  enabled: pulumi.Input[bool]):
16865
16864
  """
16866
- :param pulumi.Input[bool] enabled: Enable Confidential GKE Nodes for this cluster, to
16867
- enforce encryption of data in-use.
16865
+ :param pulumi.Input[bool] enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
16868
16866
  """
16869
16867
  pulumi.set(__self__, "enabled", enabled)
16870
16868
 
@@ -16872,8 +16870,7 @@ class NodePoolNodeConfigConfidentialNodesArgs:
16872
16870
  @pulumi.getter
16873
16871
  def enabled(self) -> pulumi.Input[bool]:
16874
16872
  """
16875
- Enable Confidential GKE Nodes for this cluster, to
16876
- enforce encryption of data in-use.
16873
+ Whether Confidential Nodes feature is enabled for all nodes in this pool.
16877
16874
  """
16878
16875
  return pulumi.get(self, "enabled")
16879
16876
 
@@ -18229,7 +18226,7 @@ if not MYPY:
18229
18226
  """
18230
18227
  strategy: NotRequired[pulumi.Input[str]]
18231
18228
  """
18232
- The upgrade stragey to be used for upgrading the nodes.
18229
+ The upgrade strategy to be used for upgrading the nodes.
18233
18230
  """
18234
18231
  elif False:
18235
18232
  NodePoolUpgradeSettingsArgsDict: TypeAlias = Mapping[str, Any]
@@ -18252,7 +18249,7 @@ class NodePoolUpgradeSettingsArgs:
18252
18249
  parallel. Can be set to 0 or greater.
18253
18250
 
18254
18251
  `max_surge` and `max_unavailable` must not be negative and at least one of them must be greater than zero.
18255
- :param pulumi.Input[str] strategy: The upgrade stragey to be used for upgrading the nodes.
18252
+ :param pulumi.Input[str] strategy: The upgrade strategy to be used for upgrading the nodes.
18256
18253
  """
18257
18254
  if blue_green_settings is not None:
18258
18255
  pulumi.set(__self__, "blue_green_settings", blue_green_settings)
@@ -18310,7 +18307,7 @@ class NodePoolUpgradeSettingsArgs:
18310
18307
  @pulumi.getter
18311
18308
  def strategy(self) -> Optional[pulumi.Input[str]]:
18312
18309
  """
18313
- The upgrade stragey to be used for upgrading the nodes.
18310
+ The upgrade strategy to be used for upgrading the nodes.
18314
18311
  """
18315
18312
  return pulumi.get(self, "strategy")
18316
18313
 
@@ -39,7 +39,8 @@ 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".
42
+ "eks", "aks", "generic". The generic distribution provides the ability to register
43
+ or migrate any CNCF conformant cluster.
43
44
  :param pulumi.Input['AttachedClusterFleetArgs'] fleet: Fleet configuration.
44
45
  Structure is documented below.
45
46
  :param pulumi.Input[str] location: The location for the resource
@@ -100,7 +101,8 @@ class AttachedClusterArgs:
100
101
  def distribution(self) -> pulumi.Input[str]:
101
102
  """
102
103
  The Kubernetes distribution of the underlying attached cluster. Supported values:
103
- "eks", "aks".
104
+ "eks", "aks", "generic". The generic distribution provides the ability to register
105
+ or migrate any CNCF conformant cluster.
104
106
  """
105
107
  return pulumi.get(self, "distribution")
106
108
 
@@ -334,7 +336,8 @@ class _AttachedClusterState:
334
336
  :param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
335
337
  :param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
336
338
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
337
- "eks", "aks".
339
+ "eks", "aks", "generic". The generic distribution provides the ability to register
340
+ or migrate any CNCF conformant cluster.
338
341
  :param pulumi.Input[Sequence[pulumi.Input['AttachedClusterErrorArgs']]] errors: A set of errors found in the cluster.
339
342
  Structure is documented below.
340
343
  :param pulumi.Input['AttachedClusterFleetArgs'] fleet: Fleet configuration.
@@ -512,7 +515,8 @@ class _AttachedClusterState:
512
515
  def distribution(self) -> Optional[pulumi.Input[str]]:
513
516
  """
514
517
  The Kubernetes distribution of the underlying attached cluster. Supported values:
515
- "eks", "aks".
518
+ "eks", "aks", "generic". The generic distribution provides the ability to register
519
+ or migrate any CNCF conformant cluster.
516
520
  """
517
521
  return pulumi.get(self, "distribution")
518
522
 
@@ -911,7 +915,8 @@ class AttachedCluster(pulumi.CustomResource):
911
915
  :param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
912
916
  :param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
913
917
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
914
- "eks", "aks".
918
+ "eks", "aks", "generic". The generic distribution provides the ability to register
919
+ or migrate any CNCF conformant cluster.
915
920
  :param pulumi.Input[Union['AttachedClusterFleetArgs', 'AttachedClusterFleetArgsDict']] fleet: Fleet configuration.
916
921
  Structure is documented below.
917
922
  :param pulumi.Input[str] location: The location for the resource
@@ -1212,7 +1217,8 @@ class AttachedCluster(pulumi.CustomResource):
1212
1217
  :param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
1213
1218
  :param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
1214
1219
  :param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
1215
- "eks", "aks".
1220
+ "eks", "aks", "generic". The generic distribution provides the ability to register
1221
+ or migrate any CNCF conformant cluster.
1216
1222
  :param pulumi.Input[Sequence[pulumi.Input[Union['AttachedClusterErrorArgs', 'AttachedClusterErrorArgsDict']]]] errors: A set of errors found in the cluster.
1217
1223
  Structure is documented below.
1218
1224
  :param pulumi.Input[Union['AttachedClusterFleetArgs', 'AttachedClusterFleetArgsDict']] fleet: Fleet configuration.
@@ -1342,7 +1348,8 @@ class AttachedCluster(pulumi.CustomResource):
1342
1348
  def distribution(self) -> pulumi.Output[str]:
1343
1349
  """
1344
1350
  The Kubernetes distribution of the underlying attached cluster. Supported values:
1345
- "eks", "aks".
1351
+ "eks", "aks", "generic". The generic distribution provides the ability to register
1352
+ or migrate any CNCF conformant cluster.
1346
1353
  """
1347
1354
  return pulumi.get(self, "distribution")
1348
1355
 
@@ -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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
6707
+ :param 'ClusterNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
6905
+ Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
9636
+ :param 'ClusterNodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for Confidential Nodes feature. Structure is 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](https://cloud.google.com/kubernetes-engine/docs/how-to/confidential-gke-nodes) feature. Structure is documented below documented below.
9834
+ Configuration for Confidential Nodes feature. Structure is 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 Confidential Nodes feature. Structure is documented below.
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.
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 Confidential Nodes feature. Structure is documented below.
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.
13119
13119
  """
13120
13120
  return pulumi.get(self, "confidential_nodes")
13121
13121
 
@@ -13473,8 +13473,7 @@ class NodePoolNodeConfigConfidentialNodes(dict):
13473
13473
  def __init__(__self__, *,
13474
13474
  enabled: bool):
13475
13475
  """
13476
- :param bool enabled: Enable Confidential GKE Nodes for this cluster, to
13477
- enforce encryption of data in-use.
13476
+ :param bool enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
13478
13477
  """
13479
13478
  pulumi.set(__self__, "enabled", enabled)
13480
13479
 
@@ -13482,8 +13481,7 @@ class NodePoolNodeConfigConfidentialNodes(dict):
13482
13481
  @pulumi.getter
13483
13482
  def enabled(self) -> bool:
13484
13483
  """
13485
- Enable Confidential GKE Nodes for this cluster, to
13486
- enforce encryption of data in-use.
13484
+ Whether Confidential Nodes feature is enabled for all nodes in this pool.
13487
13485
  """
13488
13486
  return pulumi.get(self, "enabled")
13489
13487
 
@@ -14645,7 +14643,7 @@ class NodePoolUpgradeSettings(dict):
14645
14643
  parallel. Can be set to 0 or greater.
14646
14644
 
14647
14645
  `max_surge` and `max_unavailable` must not be negative and at least one of them must be greater than zero.
14648
- :param str strategy: The upgrade stragey to be used for upgrading the nodes.
14646
+ :param str strategy: The upgrade strategy to be used for upgrading the nodes.
14649
14647
  """
14650
14648
  if blue_green_settings is not None:
14651
14649
  pulumi.set(__self__, "blue_green_settings", blue_green_settings)
@@ -14691,7 +14689,7 @@ class NodePoolUpgradeSettings(dict):
14691
14689
  @pulumi.getter
14692
14690
  def strategy(self) -> Optional[str]:
14693
14691
  """
14694
- The upgrade stragey to be used for upgrading the nodes.
14692
+ The upgrade strategy to be used for upgrading the nodes.
14695
14693
  """
14696
14694
  return pulumi.get(self, "strategy")
14697
14695
 
@@ -7,6 +7,7 @@ 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 *
10
11
  from .search_engine import *
11
12
  from ._inputs import *
12
13
  from . import outputs