pulumi-gcp 7.38.0a1724479203__py3-none-any.whl → 7.39.0a1724911478__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.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/RECORD +46 -40
  45. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/WHEEL +1 -1
  46. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/top_level.txt +0 -0
@@ -28,6 +28,9 @@ __all__ = [
28
28
  'GetGroupMembershipsMembershipPreferredMemberKeyResult',
29
29
  'GetGroupMembershipsMembershipRoleResult',
30
30
  'GetGroupMembershipsMembershipRoleExpiryDetailResult',
31
+ 'GetGroupTransitiveMembershipsMembershipResult',
32
+ 'GetGroupTransitiveMembershipsMembershipPreferredMemberKeyResult',
33
+ 'GetGroupTransitiveMembershipsMembershipRoleResult',
31
34
  'GetGroupsGroupResult',
32
35
  'GetGroupsGroupAdditionalGroupKeyResult',
33
36
  'GetGroupsGroupGroupKeyResult',
@@ -618,6 +621,134 @@ class GetGroupMembershipsMembershipRoleExpiryDetailResult(dict):
618
621
  return pulumi.get(self, "expire_time")
619
622
 
620
623
 
624
+ @pulumi.output_type
625
+ class GetGroupTransitiveMembershipsMembershipResult(dict):
626
+ def __init__(__self__, *,
627
+ member: str,
628
+ preferred_member_keys: Sequence['outputs.GetGroupTransitiveMembershipsMembershipPreferredMemberKeyResult'],
629
+ relation_type: str,
630
+ roles: Sequence['outputs.GetGroupTransitiveMembershipsMembershipRoleResult']):
631
+ """
632
+ :param str member: Resource name for this member.
633
+ :param Sequence['GetGroupTransitiveMembershipsMembershipPreferredMemberKeyArgs'] preferred_member_keys: EntityKey of the member. Entity key has an id and a namespace. In case of discussion forums, the id will be an email address without a namespace.
634
+ :param str relation_type: The relation between the group and the transitive member. The value can be DIRECT, INDIRECT, or DIRECT_AND_INDIRECT
635
+ :param Sequence['GetGroupTransitiveMembershipsMembershipRoleArgs'] roles: The membership role details
636
+ """
637
+ pulumi.set(__self__, "member", member)
638
+ pulumi.set(__self__, "preferred_member_keys", preferred_member_keys)
639
+ pulumi.set(__self__, "relation_type", relation_type)
640
+ pulumi.set(__self__, "roles", roles)
641
+
642
+ @property
643
+ @pulumi.getter
644
+ def member(self) -> str:
645
+ """
646
+ Resource name for this member.
647
+ """
648
+ return pulumi.get(self, "member")
649
+
650
+ @property
651
+ @pulumi.getter(name="preferredMemberKeys")
652
+ def preferred_member_keys(self) -> Sequence['outputs.GetGroupTransitiveMembershipsMembershipPreferredMemberKeyResult']:
653
+ """
654
+ EntityKey of the member. Entity key has an id and a namespace. In case of discussion forums, the id will be an email address without a namespace.
655
+ """
656
+ return pulumi.get(self, "preferred_member_keys")
657
+
658
+ @property
659
+ @pulumi.getter(name="relationType")
660
+ def relation_type(self) -> str:
661
+ """
662
+ The relation between the group and the transitive member. The value can be DIRECT, INDIRECT, or DIRECT_AND_INDIRECT
663
+ """
664
+ return pulumi.get(self, "relation_type")
665
+
666
+ @property
667
+ @pulumi.getter
668
+ def roles(self) -> Sequence['outputs.GetGroupTransitiveMembershipsMembershipRoleResult']:
669
+ """
670
+ The membership role details
671
+ """
672
+ return pulumi.get(self, "roles")
673
+
674
+
675
+ @pulumi.output_type
676
+ class GetGroupTransitiveMembershipsMembershipPreferredMemberKeyResult(dict):
677
+ def __init__(__self__, *,
678
+ id: str,
679
+ namespace: str):
680
+ """
681
+ :param str id: The ID of the entity.
682
+
683
+ For Google-managed entities, the id must be the email address of an existing
684
+ group or user.
685
+
686
+ For external-identity-mapped entities, the id must be a string conforming
687
+ to the Identity Source's requirements.
688
+
689
+ Must be unique within a namespace.
690
+ :param str namespace: The namespace in which the entity exists.
691
+
692
+ If not specified, the EntityKey represents a Google-managed entity
693
+ such as a Google user or a Google Group.
694
+
695
+ If specified, the EntityKey represents an external-identity-mapped group.
696
+ The namespace must correspond to an identity source created in Admin Console
697
+ and must be in the form of 'identitysources/{identity_source_id}'.
698
+ """
699
+ pulumi.set(__self__, "id", id)
700
+ pulumi.set(__self__, "namespace", namespace)
701
+
702
+ @property
703
+ @pulumi.getter
704
+ def id(self) -> str:
705
+ """
706
+ The ID of the entity.
707
+
708
+ For Google-managed entities, the id must be the email address of an existing
709
+ group or user.
710
+
711
+ For external-identity-mapped entities, the id must be a string conforming
712
+ to the Identity Source's requirements.
713
+
714
+ Must be unique within a namespace.
715
+ """
716
+ return pulumi.get(self, "id")
717
+
718
+ @property
719
+ @pulumi.getter
720
+ def namespace(self) -> str:
721
+ """
722
+ The namespace in which the entity exists.
723
+
724
+ If not specified, the EntityKey represents a Google-managed entity
725
+ such as a Google user or a Google Group.
726
+
727
+ If specified, the EntityKey represents an external-identity-mapped group.
728
+ The namespace must correspond to an identity source created in Admin Console
729
+ and must be in the form of 'identitysources/{identity_source_id}'.
730
+ """
731
+ return pulumi.get(self, "namespace")
732
+
733
+
734
+ @pulumi.output_type
735
+ class GetGroupTransitiveMembershipsMembershipRoleResult(dict):
736
+ def __init__(__self__, *,
737
+ role: str):
738
+ """
739
+ :param str role: The name of the TransitiveMembershipRole. Possible values: ["OWNER", "MANAGER", "MEMBER"]
740
+ """
741
+ pulumi.set(__self__, "role", role)
742
+
743
+ @property
744
+ @pulumi.getter
745
+ def role(self) -> str:
746
+ """
747
+ The name of the TransitiveMembershipRole. Possible values: ["OWNER", "MANAGER", "MEMBER"]
748
+ """
749
+ return pulumi.get(self, "role")
750
+
751
+
621
752
  @pulumi.output_type
622
753
  class GetGroupsGroupResult(dict):
623
754
  def __init__(__self__, *,
@@ -9009,7 +9009,7 @@ if not MYPY:
9009
9009
  class InstanceConfidentialInstanceConfigArgsDict(TypedDict):
9010
9010
  confidential_instance_type: NotRequired[pulumi.Input[str]]
9011
9011
  """
9012
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
9012
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
9013
9013
  """
9014
9014
  enable_confidential_compute: NotRequired[pulumi.Input[bool]]
9015
9015
  """
@@ -9024,7 +9024,7 @@ class InstanceConfidentialInstanceConfigArgs:
9024
9024
  confidential_instance_type: Optional[pulumi.Input[str]] = None,
9025
9025
  enable_confidential_compute: Optional[pulumi.Input[bool]] = None):
9026
9026
  """
9027
- :param pulumi.Input[str] confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
9027
+ :param pulumi.Input[str] confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
9028
9028
  :param pulumi.Input[bool] enable_confidential_compute: Defines whether the instance should have confidential compute enabled with AMD SEV. If enabled, `on_host_maintenance` can be set to MIGRATE if `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
9029
9029
  """
9030
9030
  if confidential_instance_type is not None:
@@ -9036,7 +9036,7 @@ class InstanceConfidentialInstanceConfigArgs:
9036
9036
  @pulumi.getter(name="confidentialInstanceType")
9037
9037
  def confidential_instance_type(self) -> Optional[pulumi.Input[str]]:
9038
9038
  """
9039
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
9039
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
9040
9040
  """
9041
9041
  return pulumi.get(self, "confidential_instance_type")
9042
9042
 
@@ -9628,9 +9628,10 @@ if not MYPY:
9628
9628
  class InstanceFromMachineImageConfidentialInstanceConfigArgsDict(TypedDict):
9629
9629
  confidential_instance_type: NotRequired[pulumi.Input[str]]
9630
9630
  """
9631
- Specifies which confidential computing technology to use.
9632
- This could be one of the following values: SEV, SEV_SNP.
9633
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
9631
+ The confidential computing technology the instance uses.
9632
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
9633
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
9634
+ "AMD Milan" is currently required. TDX is only available in beta.
9634
9635
  """
9635
9636
  enable_confidential_compute: NotRequired[pulumi.Input[bool]]
9636
9637
  """
@@ -9645,9 +9646,10 @@ class InstanceFromMachineImageConfidentialInstanceConfigArgs:
9645
9646
  confidential_instance_type: Optional[pulumi.Input[str]] = None,
9646
9647
  enable_confidential_compute: Optional[pulumi.Input[bool]] = None):
9647
9648
  """
9648
- :param pulumi.Input[str] confidential_instance_type: Specifies which confidential computing technology to use.
9649
- This could be one of the following values: SEV, SEV_SNP.
9650
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
9649
+ :param pulumi.Input[str] confidential_instance_type: The confidential computing technology the instance uses.
9650
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
9651
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
9652
+ "AMD Milan" is currently required. TDX is only available in beta.
9651
9653
  :param pulumi.Input[bool] enable_confidential_compute: Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
9652
9654
  """
9653
9655
  if confidential_instance_type is not None:
@@ -9659,9 +9661,10 @@ class InstanceFromMachineImageConfidentialInstanceConfigArgs:
9659
9661
  @pulumi.getter(name="confidentialInstanceType")
9660
9662
  def confidential_instance_type(self) -> Optional[pulumi.Input[str]]:
9661
9663
  """
9662
- Specifies which confidential computing technology to use.
9663
- This could be one of the following values: SEV, SEV_SNP.
9664
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
9664
+ The confidential computing technology the instance uses.
9665
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
9666
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
9667
+ "AMD Milan" is currently required. TDX is only available in beta.
9665
9668
  """
9666
9669
  return pulumi.get(self, "confidential_instance_type")
9667
9670
 
@@ -11711,9 +11714,10 @@ if not MYPY:
11711
11714
  class InstanceFromTemplateConfidentialInstanceConfigArgsDict(TypedDict):
11712
11715
  confidential_instance_type: NotRequired[pulumi.Input[str]]
11713
11716
  """
11714
- Specifies which confidential computing technology to use.
11715
- This could be one of the following values: SEV, SEV_SNP.
11716
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
11717
+ The confidential computing technology the instance uses.
11718
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
11719
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
11720
+ "AMD Milan" is currently required. TDX is only available in beta.
11717
11721
  """
11718
11722
  enable_confidential_compute: NotRequired[pulumi.Input[bool]]
11719
11723
  """
@@ -11728,9 +11732,10 @@ class InstanceFromTemplateConfidentialInstanceConfigArgs:
11728
11732
  confidential_instance_type: Optional[pulumi.Input[str]] = None,
11729
11733
  enable_confidential_compute: Optional[pulumi.Input[bool]] = None):
11730
11734
  """
11731
- :param pulumi.Input[str] confidential_instance_type: Specifies which confidential computing technology to use.
11732
- This could be one of the following values: SEV, SEV_SNP.
11733
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
11735
+ :param pulumi.Input[str] confidential_instance_type: The confidential computing technology the instance uses.
11736
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
11737
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
11738
+ "AMD Milan" is currently required. TDX is only available in beta.
11734
11739
  :param pulumi.Input[bool] enable_confidential_compute: Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
11735
11740
  """
11736
11741
  if confidential_instance_type is not None:
@@ -11742,9 +11747,10 @@ class InstanceFromTemplateConfidentialInstanceConfigArgs:
11742
11747
  @pulumi.getter(name="confidentialInstanceType")
11743
11748
  def confidential_instance_type(self) -> Optional[pulumi.Input[str]]:
11744
11749
  """
11745
- Specifies which confidential computing technology to use.
11746
- This could be one of the following values: SEV, SEV_SNP.
11747
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
11750
+ The confidential computing technology the instance uses.
11751
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
11752
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
11753
+ "AMD Milan" is currently required. TDX is only available in beta.
11748
11754
  """
11749
11755
  return pulumi.get(self, "confidential_instance_type")
11750
11756
 
@@ -16238,7 +16244,7 @@ if not MYPY:
16238
16244
  class InstanceTemplateConfidentialInstanceConfigArgsDict(TypedDict):
16239
16245
  confidential_instance_type: NotRequired[pulumi.Input[str]]
16240
16246
  """
16241
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
16247
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
16242
16248
  """
16243
16249
  enable_confidential_compute: NotRequired[pulumi.Input[bool]]
16244
16250
  """
@@ -16253,7 +16259,7 @@ class InstanceTemplateConfidentialInstanceConfigArgs:
16253
16259
  confidential_instance_type: Optional[pulumi.Input[str]] = None,
16254
16260
  enable_confidential_compute: Optional[pulumi.Input[bool]] = None):
16255
16261
  """
16256
- :param pulumi.Input[str] confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
16262
+ :param pulumi.Input[str] confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
16257
16263
  :param pulumi.Input[bool] enable_confidential_compute: Defines whether the instance should have confidential compute enabled with AMD SEV. If enabled, `on_host_maintenance` can be set to MIGRATE if `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
16258
16264
  """
16259
16265
  if confidential_instance_type is not None:
@@ -16265,7 +16271,7 @@ class InstanceTemplateConfidentialInstanceConfigArgs:
16265
16271
  @pulumi.getter(name="confidentialInstanceType")
16266
16272
  def confidential_instance_type(self) -> Optional[pulumi.Input[str]]:
16267
16273
  """
16268
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
16274
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
16269
16275
  """
16270
16276
  return pulumi.get(self, "confidential_instance_type")
16271
16277
 
@@ -27501,7 +27507,7 @@ if not MYPY:
27501
27507
  class RegionInstanceTemplateConfidentialInstanceConfigArgsDict(TypedDict):
27502
27508
  confidential_instance_type: NotRequired[pulumi.Input[str]]
27503
27509
  """
27504
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
27510
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
27505
27511
  """
27506
27512
  enable_confidential_compute: NotRequired[pulumi.Input[bool]]
27507
27513
  """
@@ -27516,7 +27522,7 @@ class RegionInstanceTemplateConfidentialInstanceConfigArgs:
27516
27522
  confidential_instance_type: Optional[pulumi.Input[str]] = None,
27517
27523
  enable_confidential_compute: Optional[pulumi.Input[bool]] = None):
27518
27524
  """
27519
- :param pulumi.Input[str] confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
27525
+ :param pulumi.Input[str] confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
27520
27526
  :param pulumi.Input[bool] enable_confidential_compute: Defines whether the instance should have confidential compute enabled with AMD SEV. If enabled, `on_host_maintenance` can be set to MIGRATE if `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
27521
27527
  """
27522
27528
  if confidential_instance_type is not None:
@@ -27528,7 +27534,7 @@ class RegionInstanceTemplateConfidentialInstanceConfigArgs:
27528
27534
  @pulumi.getter(name="confidentialInstanceType")
27529
27535
  def confidential_instance_type(self) -> Optional[pulumi.Input[str]]:
27530
27536
  """
27531
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
27537
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
27532
27538
  """
27533
27539
  return pulumi.get(self, "confidential_instance_type")
27534
27540
 
@@ -29035,7 +29041,7 @@ if not MYPY:
29035
29041
  """
29036
29042
  provisioning_model: NotRequired[pulumi.Input[str]]
29037
29043
  """
29038
- Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
29044
+ Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
29039
29045
  `preemptible` should be `true` and `automatic_restart` should be
29040
29046
  `false`. For more info about
29041
29047
  `SPOT`, read [here](https://cloud.google.com/compute/docs/instances/spot)
@@ -29080,7 +29086,7 @@ class RegionInstanceTemplateSchedulingArgs:
29080
29086
  :param pulumi.Input[bool] preemptible: Allows instance to be preempted. This defaults to
29081
29087
  false. Read more on this
29082
29088
  [here](https://cloud.google.com/compute/docs/instances/preemptible).
29083
- :param pulumi.Input[str] provisioning_model: Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
29089
+ :param pulumi.Input[str] provisioning_model: Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
29084
29090
  `preemptible` should be `true` and `automatic_restart` should be
29085
29091
  `false`. For more info about
29086
29092
  `SPOT`, read [here](https://cloud.google.com/compute/docs/instances/spot)
@@ -29244,7 +29250,7 @@ class RegionInstanceTemplateSchedulingArgs:
29244
29250
  @pulumi.getter(name="provisioningModel")
29245
29251
  def provisioning_model(self) -> Optional[pulumi.Input[str]]:
29246
29252
  """
29247
- Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
29253
+ Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
29248
29254
  `preemptible` should be `true` and `automatic_restart` should be
29249
29255
  `false`. For more info about
29250
29256
  `SPOT`, read [here](https://cloud.google.com/compute/docs/instances/spot)
@@ -6549,7 +6549,7 @@ class InstanceConfidentialInstanceConfig(dict):
6549
6549
  confidential_instance_type: Optional[str] = None,
6550
6550
  enable_confidential_compute: Optional[bool] = None):
6551
6551
  """
6552
- :param str confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
6552
+ :param str confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
6553
6553
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled with AMD SEV. If enabled, `on_host_maintenance` can be set to MIGRATE if `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
6554
6554
  """
6555
6555
  if confidential_instance_type is not None:
@@ -6561,7 +6561,7 @@ class InstanceConfidentialInstanceConfig(dict):
6561
6561
  @pulumi.getter(name="confidentialInstanceType")
6562
6562
  def confidential_instance_type(self) -> Optional[str]:
6563
6563
  """
6564
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
6564
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
6565
6565
  """
6566
6566
  return pulumi.get(self, "confidential_instance_type")
6567
6567
 
@@ -7034,9 +7034,10 @@ class InstanceFromMachineImageConfidentialInstanceConfig(dict):
7034
7034
  confidential_instance_type: Optional[str] = None,
7035
7035
  enable_confidential_compute: Optional[bool] = None):
7036
7036
  """
7037
- :param str confidential_instance_type: Specifies which confidential computing technology to use.
7038
- This could be one of the following values: SEV, SEV_SNP.
7039
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
7037
+ :param str confidential_instance_type: The confidential computing technology the instance uses.
7038
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
7039
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
7040
+ "AMD Milan" is currently required. TDX is only available in beta.
7040
7041
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
7041
7042
  """
7042
7043
  if confidential_instance_type is not None:
@@ -7048,9 +7049,10 @@ class InstanceFromMachineImageConfidentialInstanceConfig(dict):
7048
7049
  @pulumi.getter(name="confidentialInstanceType")
7049
7050
  def confidential_instance_type(self) -> Optional[str]:
7050
7051
  """
7051
- Specifies which confidential computing technology to use.
7052
- This could be one of the following values: SEV, SEV_SNP.
7053
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
7052
+ The confidential computing technology the instance uses.
7053
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
7054
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
7055
+ "AMD Milan" is currently required. TDX is only available in beta.
7054
7056
  """
7055
7057
  return pulumi.get(self, "confidential_instance_type")
7056
7058
 
@@ -8640,9 +8642,10 @@ class InstanceFromTemplateConfidentialInstanceConfig(dict):
8640
8642
  confidential_instance_type: Optional[str] = None,
8641
8643
  enable_confidential_compute: Optional[bool] = None):
8642
8644
  """
8643
- :param str confidential_instance_type: Specifies which confidential computing technology to use.
8644
- This could be one of the following values: SEV, SEV_SNP.
8645
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
8645
+ :param str confidential_instance_type: The confidential computing technology the instance uses.
8646
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
8647
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
8648
+ "AMD Milan" is currently required. TDX is only available in beta.
8646
8649
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
8647
8650
  """
8648
8651
  if confidential_instance_type is not None:
@@ -8654,9 +8657,10 @@ class InstanceFromTemplateConfidentialInstanceConfig(dict):
8654
8657
  @pulumi.getter(name="confidentialInstanceType")
8655
8658
  def confidential_instance_type(self) -> Optional[str]:
8656
8659
  """
8657
- Specifies which confidential computing technology to use.
8658
- This could be one of the following values: SEV, SEV_SNP.
8659
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
8660
+ The confidential computing technology the instance uses.
8661
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
8662
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
8663
+ "AMD Milan" is currently required. TDX is only available in beta.
8660
8664
  """
8661
8665
  return pulumi.get(self, "confidential_instance_type")
8662
8666
 
@@ -12155,7 +12159,7 @@ class InstanceTemplateConfidentialInstanceConfig(dict):
12155
12159
  confidential_instance_type: Optional[str] = None,
12156
12160
  enable_confidential_compute: Optional[bool] = None):
12157
12161
  """
12158
- :param str confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
12162
+ :param str confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
12159
12163
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled with AMD SEV. If enabled, `on_host_maintenance` can be set to MIGRATE if `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
12160
12164
  """
12161
12165
  if confidential_instance_type is not None:
@@ -12167,7 +12171,7 @@ class InstanceTemplateConfidentialInstanceConfig(dict):
12167
12171
  @pulumi.getter(name="confidentialInstanceType")
12168
12172
  def confidential_instance_type(self) -> Optional[str]:
12169
12173
  """
12170
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
12174
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
12171
12175
  """
12172
12176
  return pulumi.get(self, "confidential_instance_type")
12173
12177
 
@@ -20634,7 +20638,7 @@ class RegionInstanceTemplateConfidentialInstanceConfig(dict):
20634
20638
  confidential_instance_type: Optional[str] = None,
20635
20639
  enable_confidential_compute: Optional[bool] = None):
20636
20640
  """
20637
- :param str confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
20641
+ :param str confidential_instance_type: Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
20638
20642
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled with AMD SEV. If enabled, `on_host_maintenance` can be set to MIGRATE if `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
20639
20643
  """
20640
20644
  if confidential_instance_type is not None:
@@ -20646,7 +20650,7 @@ class RegionInstanceTemplateConfidentialInstanceConfig(dict):
20646
20650
  @pulumi.getter(name="confidentialInstanceType")
20647
20651
  def confidential_instance_type(self) -> Optional[str]:
20648
20652
  """
20649
- Defines the confidential computing technology the instance uses. SEV is an AMD feature. One of the following values: `SEV`, `SEV_SNP`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM.
20653
+ Defines the confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: `SEV`, `SEV_SNP`, `TDX`. `on_host_maintenance` can be set to MIGRATE if `confidential_instance_type` is set to `SEV` and `min_cpu_platform` is set to `"AMD Milan"`. Otherwise, `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM. If `SEV_SNP`, currently `min_cpu_platform` has to be set to `"AMD Milan"` or this will fail to create the VM. TDX is only available in beta.
20650
20654
  """
20651
20655
  return pulumi.get(self, "confidential_instance_type")
20652
20656
 
@@ -21826,7 +21830,7 @@ class RegionInstanceTemplateScheduling(dict):
21826
21830
  :param bool preemptible: Allows instance to be preempted. This defaults to
21827
21831
  false. Read more on this
21828
21832
  [here](https://cloud.google.com/compute/docs/instances/preemptible).
21829
- :param str provisioning_model: Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
21833
+ :param str provisioning_model: Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
21830
21834
  `preemptible` should be `true` and `automatic_restart` should be
21831
21835
  `false`. For more info about
21832
21836
  `SPOT`, read [here](https://cloud.google.com/compute/docs/instances/spot)
@@ -21950,7 +21954,7 @@ class RegionInstanceTemplateScheduling(dict):
21950
21954
  @pulumi.getter(name="provisioningModel")
21951
21955
  def provisioning_model(self) -> Optional[str]:
21952
21956
  """
21953
- Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
21957
+ Describe the type of preemptible VM. This field accepts the value `STANDARD` or `SPOT`. If the value is `STANDARD`, there will be no discount. If this is set to `SPOT`,
21954
21958
  `preemptible` should be `true` and `automatic_restart` should be
21955
21959
  `false`. For more info about
21956
21960
  `SPOT`, read [here](https://cloud.google.com/compute/docs/instances/spot)
@@ -46054,9 +46058,10 @@ class GetInstanceConfidentialInstanceConfigResult(dict):
46054
46058
  confidential_instance_type: str,
46055
46059
  enable_confidential_compute: bool):
46056
46060
  """
46057
- :param str confidential_instance_type: Specifies which confidential computing technology to use.
46058
- This could be one of the following values: SEV, SEV_SNP.
46059
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
46061
+ :param str confidential_instance_type: The confidential computing technology the instance uses.
46062
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
46063
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
46064
+ "AMD Milan" is currently required. TDX is only available in beta.
46060
46065
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
46061
46066
  """
46062
46067
  pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
@@ -46066,9 +46071,10 @@ class GetInstanceConfidentialInstanceConfigResult(dict):
46066
46071
  @pulumi.getter(name="confidentialInstanceType")
46067
46072
  def confidential_instance_type(self) -> str:
46068
46073
  """
46069
- Specifies which confidential computing technology to use.
46070
- This could be one of the following values: SEV, SEV_SNP.
46071
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
46074
+ The confidential computing technology the instance uses.
46075
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
46076
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
46077
+ "AMD Milan" is currently required. TDX is only available in beta.
46072
46078
  """
46073
46079
  return pulumi.get(self, "confidential_instance_type")
46074
46080
 
@@ -47552,9 +47558,10 @@ class GetInstanceTemplateConfidentialInstanceConfigResult(dict):
47552
47558
  confidential_instance_type: str,
47553
47559
  enable_confidential_compute: bool):
47554
47560
  """
47555
- :param str confidential_instance_type: Specifies which confidential computing technology to use.
47556
- This could be one of the following values: SEV, SEV_SNP.
47557
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
47561
+ :param str confidential_instance_type: The confidential computing technology the instance uses.
47562
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
47563
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
47564
+ "AMD Milan" is currently required. TDX is only available in beta.
47558
47565
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled. `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
47559
47566
  """
47560
47567
  pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
@@ -47564,9 +47571,10 @@ class GetInstanceTemplateConfidentialInstanceConfigResult(dict):
47564
47571
  @pulumi.getter(name="confidentialInstanceType")
47565
47572
  def confidential_instance_type(self) -> str:
47566
47573
  """
47567
- Specifies which confidential computing technology to use.
47568
- This could be one of the following values: SEV, SEV_SNP.
47569
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
47574
+ The confidential computing technology the instance uses.
47575
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
47576
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
47577
+ "AMD Milan" is currently required. TDX is only available in beta.
47570
47578
  """
47571
47579
  return pulumi.get(self, "confidential_instance_type")
47572
47580
 
@@ -49214,9 +49222,10 @@ class GetRegionInstanceTemplateConfidentialInstanceConfigResult(dict):
49214
49222
  confidential_instance_type: str,
49215
49223
  enable_confidential_compute: bool):
49216
49224
  """
49217
- :param str confidential_instance_type: Specifies which confidential computing technology to use.
49218
- This could be one of the following values: SEV, SEV_SNP.
49219
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
49225
+ :param str confidential_instance_type: The confidential computing technology the instance uses.
49226
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
49227
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
49228
+ "AMD Milan" is currently required.
49220
49229
  :param bool enable_confidential_compute: Defines whether the instance should have confidential compute enabled. `on_host_maintenance` has to be set to TERMINATE or this will fail to create the VM.
49221
49230
  """
49222
49231
  pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
@@ -49226,9 +49235,10 @@ class GetRegionInstanceTemplateConfidentialInstanceConfigResult(dict):
49226
49235
  @pulumi.getter(name="confidentialInstanceType")
49227
49236
  def confidential_instance_type(self) -> str:
49228
49237
  """
49229
- Specifies which confidential computing technology to use.
49230
- This could be one of the following values: SEV, SEV_SNP.
49231
- If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
49238
+ The confidential computing technology the instance uses.
49239
+ SEV is an AMD feature. TDX is an Intel feature. One of the following
49240
+ values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform =
49241
+ "AMD Milan" is currently required.
49232
49242
  """
49233
49243
  return pulumi.get(self, "confidential_instance_type")
49234
49244
 
@@ -646,6 +646,10 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
646
646
  version_id="v1",
647
647
  service="appengine-network-endpoint-group",
648
648
  runtime="nodejs",
649
+ flexible_runtime_settings={
650
+ "operating_system": "ubuntu22",
651
+ "runtime_version": "20",
652
+ },
649
653
  entrypoint={
650
654
  "shell": "node ./app.js",
651
655
  },
@@ -986,6 +990,10 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
986
990
  version_id="v1",
987
991
  service="appengine-network-endpoint-group",
988
992
  runtime="nodejs",
993
+ flexible_runtime_settings={
994
+ "operating_system": "ubuntu22",
995
+ "runtime_version": "20",
996
+ },
989
997
  entrypoint={
990
998
  "shell": "node ./app.js",
991
999
  },