pulumi-gcp 8.31.0a1747205151__py3-none-any.whl → 8.31.0a1747312116__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 (45) hide show
  1. pulumi_gcp/__init__.py +8 -0
  2. pulumi_gcp/alloydb/_inputs.py +164 -0
  3. pulumi_gcp/alloydb/outputs.py +211 -0
  4. pulumi_gcp/apigee/_inputs.py +20 -0
  5. pulumi_gcp/apigee/outputs.py +12 -0
  6. pulumi_gcp/bigquery/routine.py +56 -0
  7. pulumi_gcp/bigtable/table.py +7 -7
  8. pulumi_gcp/certificateauthority/_inputs.py +20 -19
  9. pulumi_gcp/certificateauthority/authority.py +70 -0
  10. pulumi_gcp/certificateauthority/outputs.py +12 -11
  11. pulumi_gcp/cloudfunctionsv2/function.py +4 -4
  12. pulumi_gcp/compute/__init__.py +1 -0
  13. pulumi_gcp/compute/_inputs.py +312 -0
  14. pulumi_gcp/compute/cross_site_network.py +374 -0
  15. pulumi_gcp/compute/get_health_check.py +12 -1
  16. pulumi_gcp/compute/health_check.py +120 -0
  17. pulumi_gcp/compute/outputs.py +353 -0
  18. pulumi_gcp/compute/region_health_check.py +120 -0
  19. pulumi_gcp/container/_inputs.py +6 -6
  20. pulumi_gcp/container/outputs.py +4 -4
  21. pulumi_gcp/dataproc/get_metastore_service.py +1 -12
  22. pulumi_gcp/dataproc/metastore_service.py +0 -61
  23. pulumi_gcp/diagflow/_inputs.py +6280 -2644
  24. pulumi_gcp/diagflow/cx_flow.py +304 -0
  25. pulumi_gcp/diagflow/cx_page.py +290 -0
  26. pulumi_gcp/diagflow/outputs.py +4616 -1862
  27. pulumi_gcp/netapp/backup.py +56 -0
  28. pulumi_gcp/netapp/backup_vault.py +185 -0
  29. pulumi_gcp/netapp/storage_pool.py +2 -2
  30. pulumi_gcp/networkconnectivity/internal_range.py +47 -0
  31. pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
  32. pulumi_gcp/networkservices/_inputs.py +43 -0
  33. pulumi_gcp/networkservices/edge_cache_origin.py +61 -0
  34. pulumi_gcp/networkservices/outputs.py +43 -0
  35. pulumi_gcp/pulumi-plugin.json +1 -1
  36. pulumi_gcp/redis/get_instance.py +1 -12
  37. pulumi_gcp/redis/instance.py +0 -61
  38. pulumi_gcp/spanner/database.py +56 -0
  39. pulumi_gcp/spanner/get_database.py +12 -1
  40. pulumi_gcp/storage/bucket.py +4 -4
  41. pulumi_gcp/storage/get_bucket_object_content.py +29 -1
  42. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/METADATA +1 -1
  43. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/RECORD +45 -44
  44. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/WHEEL +1 -1
  45. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/top_level.txt +0 -0
@@ -88,6 +88,7 @@ __all__ = [
88
88
  'GlobalForwardingRuleServiceDirectoryRegistrations',
89
89
  'HaVpnGatewayVpnInterface',
90
90
  'HealthCheckGrpcHealthCheck',
91
+ 'HealthCheckGrpcTlsHealthCheck',
91
92
  'HealthCheckHttp2HealthCheck',
92
93
  'HealthCheckHttpHealthCheck',
93
94
  'HealthCheckHttpsHealthCheck',
@@ -330,6 +331,7 @@ __all__ = [
330
331
  'RegionDiskIamMemberCondition',
331
332
  'RegionDiskSourceSnapshotEncryptionKey',
332
333
  'RegionHealthCheckGrpcHealthCheck',
334
+ 'RegionHealthCheckGrpcTlsHealthCheck',
333
335
  'RegionHealthCheckHttp2HealthCheck',
334
336
  'RegionHealthCheckHttpHealthCheck',
335
337
  'RegionHealthCheckHttpsHealthCheck',
@@ -755,6 +757,7 @@ __all__ = [
755
757
  'GetGlobalForwardingRuleServiceDirectoryRegistrationResult',
756
758
  'GetHcVpnGatewayVpnInterfaceResult',
757
759
  'GetHealthCheckGrpcHealthCheckResult',
760
+ 'GetHealthCheckGrpcTlsHealthCheckResult',
758
761
  'GetHealthCheckHttp2HealthCheckResult',
759
762
  'GetHealthCheckHttpHealthCheckResult',
760
763
  'GetHealthCheckHttpsHealthCheckResult',
@@ -6839,6 +6842,96 @@ class HealthCheckGrpcHealthCheck(dict):
6839
6842
  return pulumi.get(self, "port_specification")
6840
6843
 
6841
6844
 
6845
+ @pulumi.output_type
6846
+ class HealthCheckGrpcTlsHealthCheck(dict):
6847
+ @staticmethod
6848
+ def __key_warning(key: str):
6849
+ suggest = None
6850
+ if key == "grpcServiceName":
6851
+ suggest = "grpc_service_name"
6852
+ elif key == "portSpecification":
6853
+ suggest = "port_specification"
6854
+
6855
+ if suggest:
6856
+ pulumi.log.warn(f"Key '{key}' not found in HealthCheckGrpcTlsHealthCheck. Access the value via the '{suggest}' property getter instead.")
6857
+
6858
+ def __getitem__(self, key: str) -> Any:
6859
+ HealthCheckGrpcTlsHealthCheck.__key_warning(key)
6860
+ return super().__getitem__(key)
6861
+
6862
+ def get(self, key: str, default = None) -> Any:
6863
+ HealthCheckGrpcTlsHealthCheck.__key_warning(key)
6864
+ return super().get(key, default)
6865
+
6866
+ def __init__(__self__, *,
6867
+ grpc_service_name: Optional[builtins.str] = None,
6868
+ port: Optional[builtins.int] = None,
6869
+ port_specification: Optional[builtins.str] = None):
6870
+ """
6871
+ :param builtins.str grpc_service_name: The gRPC service name for the health check.
6872
+ The value of grpcServiceName has the following meanings by convention:
6873
+ - Empty serviceName means the overall status of all services at the backend.
6874
+ - Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
6875
+ The grpcServiceName can only be ASCII.
6876
+ :param builtins.int port: The port number for the health check request.
6877
+ Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
6878
+ :param builtins.str port_specification: Specifies how port is selected for health checking, can be one of the
6879
+ following values:
6880
+ * `USE_FIXED_PORT`: The port number in `port` is used for health checking.
6881
+ * `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
6882
+ * `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
6883
+ network endpoint is used for health checking. For other backends, the
6884
+ port or named port specified in the Backend Service is used for health
6885
+ checking.
6886
+ If not specified, gRPC with TLS health check follows behavior specified in the `port` field.
6887
+ Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
6888
+ """
6889
+ if grpc_service_name is not None:
6890
+ pulumi.set(__self__, "grpc_service_name", grpc_service_name)
6891
+ if port is not None:
6892
+ pulumi.set(__self__, "port", port)
6893
+ if port_specification is not None:
6894
+ pulumi.set(__self__, "port_specification", port_specification)
6895
+
6896
+ @property
6897
+ @pulumi.getter(name="grpcServiceName")
6898
+ def grpc_service_name(self) -> Optional[builtins.str]:
6899
+ """
6900
+ The gRPC service name for the health check.
6901
+ The value of grpcServiceName has the following meanings by convention:
6902
+ - Empty serviceName means the overall status of all services at the backend.
6903
+ - Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
6904
+ The grpcServiceName can only be ASCII.
6905
+ """
6906
+ return pulumi.get(self, "grpc_service_name")
6907
+
6908
+ @property
6909
+ @pulumi.getter
6910
+ def port(self) -> Optional[builtins.int]:
6911
+ """
6912
+ The port number for the health check request.
6913
+ Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
6914
+ """
6915
+ return pulumi.get(self, "port")
6916
+
6917
+ @property
6918
+ @pulumi.getter(name="portSpecification")
6919
+ def port_specification(self) -> Optional[builtins.str]:
6920
+ """
6921
+ Specifies how port is selected for health checking, can be one of the
6922
+ following values:
6923
+ * `USE_FIXED_PORT`: The port number in `port` is used for health checking.
6924
+ * `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
6925
+ * `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
6926
+ network endpoint is used for health checking. For other backends, the
6927
+ port or named port specified in the Backend Service is used for health
6928
+ checking.
6929
+ If not specified, gRPC with TLS health check follows behavior specified in the `port` field.
6930
+ Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
6931
+ """
6932
+ return pulumi.get(self, "port_specification")
6933
+
6934
+
6842
6935
  @pulumi.output_type
6843
6936
  class HealthCheckHttp2HealthCheck(dict):
6844
6937
  @staticmethod
@@ -16571,6 +16664,8 @@ class InstanceTemplateDisk(dict):
16571
16664
  suggest = "disk_size_gb"
16572
16665
  elif key == "diskType":
16573
16666
  suggest = "disk_type"
16667
+ elif key == "guestOsFeatures":
16668
+ suggest = "guest_os_features"
16574
16669
  elif key == "provisionedIops":
16575
16670
  suggest = "provisioned_iops"
16576
16671
  elif key == "provisionedThroughput":
@@ -16600,6 +16695,7 @@ class InstanceTemplateDisk(dict):
16600
16695
  return super().get(key, default)
16601
16696
 
16602
16697
  def __init__(__self__, *,
16698
+ architecture: Optional[builtins.str] = None,
16603
16699
  auto_delete: Optional[builtins.bool] = None,
16604
16700
  boot: Optional[builtins.bool] = None,
16605
16701
  device_name: Optional[builtins.str] = None,
@@ -16607,6 +16703,7 @@ class InstanceTemplateDisk(dict):
16607
16703
  disk_name: Optional[builtins.str] = None,
16608
16704
  disk_size_gb: Optional[builtins.int] = None,
16609
16705
  disk_type: Optional[builtins.str] = None,
16706
+ guest_os_features: Optional[Sequence[builtins.str]] = None,
16610
16707
  interface: Optional[builtins.str] = None,
16611
16708
  labels: Optional[Mapping[str, builtins.str]] = None,
16612
16709
  mode: Optional[builtins.str] = None,
@@ -16621,6 +16718,7 @@ class InstanceTemplateDisk(dict):
16621
16718
  source_snapshot_encryption_key: Optional['outputs.InstanceTemplateDiskSourceSnapshotEncryptionKey'] = None,
16622
16719
  type: Optional[builtins.str] = None):
16623
16720
  """
16721
+ :param builtins.str architecture: The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
16624
16722
  :param builtins.bool auto_delete: Whether or not the disk should be auto-deleted.
16625
16723
  This defaults to true.
16626
16724
  :param builtins.bool boot: Indicates that this is a boot disk.
@@ -16643,6 +16741,7 @@ class InstanceTemplateDisk(dict):
16643
16741
  the size must be exactly 375GB.
16644
16742
  :param builtins.str disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
16645
16743
  `"pd-balanced"` or `"pd-standard"`, `"hyperdisk-balanced"`, `"hyperdisk-throughput"` or `"hyperdisk-extreme"`.
16744
+ :param Sequence[builtins.str] guest_os_features: A list of features to enable on the guest operating system. Applicable only for bootable images. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
16646
16745
  :param builtins.str interface: Specifies the disk interface to use for attaching this disk,
16647
16746
  which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
16648
16747
  and the request will fail if you attempt to attach a persistent disk in any other format
@@ -16685,6 +16784,8 @@ class InstanceTemplateDisk(dict):
16685
16784
  :param builtins.str type: The type of GCE disk, can be either `"SCRATCH"` or
16686
16785
  `"PERSISTENT"`.
16687
16786
  """
16787
+ if architecture is not None:
16788
+ pulumi.set(__self__, "architecture", architecture)
16688
16789
  if auto_delete is not None:
16689
16790
  pulumi.set(__self__, "auto_delete", auto_delete)
16690
16791
  if boot is not None:
@@ -16699,6 +16800,8 @@ class InstanceTemplateDisk(dict):
16699
16800
  pulumi.set(__self__, "disk_size_gb", disk_size_gb)
16700
16801
  if disk_type is not None:
16701
16802
  pulumi.set(__self__, "disk_type", disk_type)
16803
+ if guest_os_features is not None:
16804
+ pulumi.set(__self__, "guest_os_features", guest_os_features)
16702
16805
  if interface is not None:
16703
16806
  pulumi.set(__self__, "interface", interface)
16704
16807
  if labels is not None:
@@ -16726,6 +16829,14 @@ class InstanceTemplateDisk(dict):
16726
16829
  if type is not None:
16727
16830
  pulumi.set(__self__, "type", type)
16728
16831
 
16832
+ @property
16833
+ @pulumi.getter
16834
+ def architecture(self) -> Optional[builtins.str]:
16835
+ """
16836
+ The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
16837
+ """
16838
+ return pulumi.get(self, "architecture")
16839
+
16729
16840
  @property
16730
16841
  @pulumi.getter(name="autoDelete")
16731
16842
  def auto_delete(self) -> Optional[builtins.bool]:
@@ -16797,6 +16908,14 @@ class InstanceTemplateDisk(dict):
16797
16908
  """
16798
16909
  return pulumi.get(self, "disk_type")
16799
16910
 
16911
+ @property
16912
+ @pulumi.getter(name="guestOsFeatures")
16913
+ def guest_os_features(self) -> Optional[Sequence[builtins.str]]:
16914
+ """
16915
+ A list of features to enable on the guest operating system. Applicable only for bootable images. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
16916
+ """
16917
+ return pulumi.get(self, "guest_os_features")
16918
+
16800
16919
  @property
16801
16920
  @pulumi.getter
16802
16921
  def interface(self) -> Optional[builtins.str]:
@@ -25626,6 +25745,96 @@ class RegionHealthCheckGrpcHealthCheck(dict):
25626
25745
  return pulumi.get(self, "port_specification")
25627
25746
 
25628
25747
 
25748
+ @pulumi.output_type
25749
+ class RegionHealthCheckGrpcTlsHealthCheck(dict):
25750
+ @staticmethod
25751
+ def __key_warning(key: str):
25752
+ suggest = None
25753
+ if key == "grpcServiceName":
25754
+ suggest = "grpc_service_name"
25755
+ elif key == "portSpecification":
25756
+ suggest = "port_specification"
25757
+
25758
+ if suggest:
25759
+ pulumi.log.warn(f"Key '{key}' not found in RegionHealthCheckGrpcTlsHealthCheck. Access the value via the '{suggest}' property getter instead.")
25760
+
25761
+ def __getitem__(self, key: str) -> Any:
25762
+ RegionHealthCheckGrpcTlsHealthCheck.__key_warning(key)
25763
+ return super().__getitem__(key)
25764
+
25765
+ def get(self, key: str, default = None) -> Any:
25766
+ RegionHealthCheckGrpcTlsHealthCheck.__key_warning(key)
25767
+ return super().get(key, default)
25768
+
25769
+ def __init__(__self__, *,
25770
+ grpc_service_name: Optional[builtins.str] = None,
25771
+ port: Optional[builtins.int] = None,
25772
+ port_specification: Optional[builtins.str] = None):
25773
+ """
25774
+ :param builtins.str grpc_service_name: The gRPC service name for the health check.
25775
+ The value of grpcServiceName has the following meanings by convention:
25776
+ * Empty serviceName means the overall status of all services at the backend.
25777
+ * Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
25778
+ The grpcServiceName can only be ASCII.
25779
+ :param builtins.int port: The port number for the health check request.
25780
+ Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
25781
+ :param builtins.str port_specification: Specifies how port is selected for health checking, can be one of the
25782
+ following values:
25783
+ * `USE_FIXED_PORT`: The port number in `port` is used for health checking.
25784
+ * `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
25785
+ * `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
25786
+ network endpoint is used for health checking. For other backends, the
25787
+ port or named port specified in the Backend Service is used for health
25788
+ checking.
25789
+ If not specified, gRPC health check follows behavior specified in the `port` field.
25790
+ Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
25791
+ """
25792
+ if grpc_service_name is not None:
25793
+ pulumi.set(__self__, "grpc_service_name", grpc_service_name)
25794
+ if port is not None:
25795
+ pulumi.set(__self__, "port", port)
25796
+ if port_specification is not None:
25797
+ pulumi.set(__self__, "port_specification", port_specification)
25798
+
25799
+ @property
25800
+ @pulumi.getter(name="grpcServiceName")
25801
+ def grpc_service_name(self) -> Optional[builtins.str]:
25802
+ """
25803
+ The gRPC service name for the health check.
25804
+ The value of grpcServiceName has the following meanings by convention:
25805
+ * Empty serviceName means the overall status of all services at the backend.
25806
+ * Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
25807
+ The grpcServiceName can only be ASCII.
25808
+ """
25809
+ return pulumi.get(self, "grpc_service_name")
25810
+
25811
+ @property
25812
+ @pulumi.getter
25813
+ def port(self) -> Optional[builtins.int]:
25814
+ """
25815
+ The port number for the health check request.
25816
+ Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
25817
+ """
25818
+ return pulumi.get(self, "port")
25819
+
25820
+ @property
25821
+ @pulumi.getter(name="portSpecification")
25822
+ def port_specification(self) -> Optional[builtins.str]:
25823
+ """
25824
+ Specifies how port is selected for health checking, can be one of the
25825
+ following values:
25826
+ * `USE_FIXED_PORT`: The port number in `port` is used for health checking.
25827
+ * `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
25828
+ * `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
25829
+ network endpoint is used for health checking. For other backends, the
25830
+ port or named port specified in the Backend Service is used for health
25831
+ checking.
25832
+ If not specified, gRPC health check follows behavior specified in the `port` field.
25833
+ Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
25834
+ """
25835
+ return pulumi.get(self, "port_specification")
25836
+
25837
+
25629
25838
  @pulumi.output_type
25630
25839
  class RegionHealthCheckHttp2HealthCheck(dict):
25631
25840
  @staticmethod
@@ -27593,6 +27802,8 @@ class RegionInstanceTemplateDisk(dict):
27593
27802
  suggest = "disk_size_gb"
27594
27803
  elif key == "diskType":
27595
27804
  suggest = "disk_type"
27805
+ elif key == "guestOsFeatures":
27806
+ suggest = "guest_os_features"
27596
27807
  elif key == "provisionedIops":
27597
27808
  suggest = "provisioned_iops"
27598
27809
  elif key == "provisionedThroughput":
@@ -27622,6 +27833,7 @@ class RegionInstanceTemplateDisk(dict):
27622
27833
  return super().get(key, default)
27623
27834
 
27624
27835
  def __init__(__self__, *,
27836
+ architecture: Optional[builtins.str] = None,
27625
27837
  auto_delete: Optional[builtins.bool] = None,
27626
27838
  boot: Optional[builtins.bool] = None,
27627
27839
  device_name: Optional[builtins.str] = None,
@@ -27629,6 +27841,7 @@ class RegionInstanceTemplateDisk(dict):
27629
27841
  disk_name: Optional[builtins.str] = None,
27630
27842
  disk_size_gb: Optional[builtins.int] = None,
27631
27843
  disk_type: Optional[builtins.str] = None,
27844
+ guest_os_features: Optional[Sequence[builtins.str]] = None,
27632
27845
  interface: Optional[builtins.str] = None,
27633
27846
  labels: Optional[Mapping[str, builtins.str]] = None,
27634
27847
  mode: Optional[builtins.str] = None,
@@ -27643,6 +27856,7 @@ class RegionInstanceTemplateDisk(dict):
27643
27856
  source_snapshot_encryption_key: Optional['outputs.RegionInstanceTemplateDiskSourceSnapshotEncryptionKey'] = None,
27644
27857
  type: Optional[builtins.str] = None):
27645
27858
  """
27859
+ :param builtins.str architecture: The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
27646
27860
  :param builtins.bool auto_delete: Whether or not the disk should be auto-deleted.
27647
27861
  This defaults to true.
27648
27862
  :param builtins.bool boot: Indicates that this is a boot disk.
@@ -27665,6 +27879,7 @@ class RegionInstanceTemplateDisk(dict):
27665
27879
  the size must be exactly 375GB.
27666
27880
  :param builtins.str disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
27667
27881
  `"pd-balanced"` or `"pd-standard"`.
27882
+ :param Sequence[builtins.str] guest_os_features: A list of features to enable on the guest operating system. Applicable only for bootable images. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
27668
27883
  :param builtins.str interface: Specifies the disk interface to use for attaching this disk,
27669
27884
  which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
27670
27885
  and the request will fail if you attempt to attach a persistent disk in any other format
@@ -27707,6 +27922,8 @@ class RegionInstanceTemplateDisk(dict):
27707
27922
  :param builtins.str type: The type of GCE disk, can be either `"SCRATCH"` or
27708
27923
  `"PERSISTENT"`.
27709
27924
  """
27925
+ if architecture is not None:
27926
+ pulumi.set(__self__, "architecture", architecture)
27710
27927
  if auto_delete is not None:
27711
27928
  pulumi.set(__self__, "auto_delete", auto_delete)
27712
27929
  if boot is not None:
@@ -27721,6 +27938,8 @@ class RegionInstanceTemplateDisk(dict):
27721
27938
  pulumi.set(__self__, "disk_size_gb", disk_size_gb)
27722
27939
  if disk_type is not None:
27723
27940
  pulumi.set(__self__, "disk_type", disk_type)
27941
+ if guest_os_features is not None:
27942
+ pulumi.set(__self__, "guest_os_features", guest_os_features)
27724
27943
  if interface is not None:
27725
27944
  pulumi.set(__self__, "interface", interface)
27726
27945
  if labels is not None:
@@ -27748,6 +27967,14 @@ class RegionInstanceTemplateDisk(dict):
27748
27967
  if type is not None:
27749
27968
  pulumi.set(__self__, "type", type)
27750
27969
 
27970
+ @property
27971
+ @pulumi.getter
27972
+ def architecture(self) -> Optional[builtins.str]:
27973
+ """
27974
+ The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
27975
+ """
27976
+ return pulumi.get(self, "architecture")
27977
+
27751
27978
  @property
27752
27979
  @pulumi.getter(name="autoDelete")
27753
27980
  def auto_delete(self) -> Optional[builtins.bool]:
@@ -27819,6 +28046,14 @@ class RegionInstanceTemplateDisk(dict):
27819
28046
  """
27820
28047
  return pulumi.get(self, "disk_type")
27821
28048
 
28049
+ @property
28050
+ @pulumi.getter(name="guestOsFeatures")
28051
+ def guest_os_features(self) -> Optional[Sequence[builtins.str]]:
28052
+ """
28053
+ A list of features to enable on the guest operating system. Applicable only for bootable images. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
28054
+ """
28055
+ return pulumi.get(self, "guest_os_features")
28056
+
27822
28057
  @property
27823
28058
  @pulumi.getter
27824
28059
  def interface(self) -> Optional[builtins.str]:
@@ -57234,6 +57469,80 @@ class GetHealthCheckGrpcHealthCheckResult(dict):
57234
57469
  return pulumi.get(self, "port_specification")
57235
57470
 
57236
57471
 
57472
+ @pulumi.output_type
57473
+ class GetHealthCheckGrpcTlsHealthCheckResult(dict):
57474
+ def __init__(__self__, *,
57475
+ grpc_service_name: builtins.str,
57476
+ port: builtins.int,
57477
+ port_specification: builtins.str):
57478
+ """
57479
+ :param builtins.str grpc_service_name: The gRPC service name for the health check.
57480
+ The value of grpcServiceName has the following meanings by convention:
57481
+ - Empty serviceName means the overall status of all services at the backend.
57482
+ - Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
57483
+ The grpcServiceName can only be ASCII.
57484
+ :param builtins.int port: The port number for the health check request.
57485
+ Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
57486
+ :param builtins.str port_specification: Specifies how port is selected for health checking, can be one of the
57487
+ following values:
57488
+
57489
+ * 'USE_FIXED_PORT': The port number in 'port' is used for health checking.
57490
+
57491
+ * 'USE_NAMED_PORT': Not supported for GRPC with TLS health checking.
57492
+
57493
+ * 'USE_SERVING_PORT': For NetworkEndpointGroup, the port specified for each
57494
+ network endpoint is used for health checking. For other backends, the
57495
+ port or named port specified in the Backend Service is used for health
57496
+ checking.
57497
+
57498
+ If not specified, gRPC with TLS health check follows behavior specified in the 'port' field. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"]
57499
+ """
57500
+ pulumi.set(__self__, "grpc_service_name", grpc_service_name)
57501
+ pulumi.set(__self__, "port", port)
57502
+ pulumi.set(__self__, "port_specification", port_specification)
57503
+
57504
+ @property
57505
+ @pulumi.getter(name="grpcServiceName")
57506
+ def grpc_service_name(self) -> builtins.str:
57507
+ """
57508
+ The gRPC service name for the health check.
57509
+ The value of grpcServiceName has the following meanings by convention:
57510
+ - Empty serviceName means the overall status of all services at the backend.
57511
+ - Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
57512
+ The grpcServiceName can only be ASCII.
57513
+ """
57514
+ return pulumi.get(self, "grpc_service_name")
57515
+
57516
+ @property
57517
+ @pulumi.getter
57518
+ def port(self) -> builtins.int:
57519
+ """
57520
+ The port number for the health check request.
57521
+ Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
57522
+ """
57523
+ return pulumi.get(self, "port")
57524
+
57525
+ @property
57526
+ @pulumi.getter(name="portSpecification")
57527
+ def port_specification(self) -> builtins.str:
57528
+ """
57529
+ Specifies how port is selected for health checking, can be one of the
57530
+ following values:
57531
+
57532
+ * 'USE_FIXED_PORT': The port number in 'port' is used for health checking.
57533
+
57534
+ * 'USE_NAMED_PORT': Not supported for GRPC with TLS health checking.
57535
+
57536
+ * 'USE_SERVING_PORT': For NetworkEndpointGroup, the port specified for each
57537
+ network endpoint is used for health checking. For other backends, the
57538
+ port or named port specified in the Backend Service is used for health
57539
+ checking.
57540
+
57541
+ If not specified, gRPC with TLS health check follows behavior specified in the 'port' field. Possible values: ["USE_FIXED_PORT", "USE_NAMED_PORT", "USE_SERVING_PORT"]
57542
+ """
57543
+ return pulumi.get(self, "port_specification")
57544
+
57545
+
57237
57546
  @pulumi.output_type
57238
57547
  class GetHealthCheckHttp2HealthCheckResult(dict):
57239
57548
  def __init__(__self__, *,
@@ -60383,6 +60692,7 @@ class GetInstanceTemplateConfidentialInstanceConfigResult(dict):
60383
60692
  @pulumi.output_type
60384
60693
  class GetInstanceTemplateDiskResult(dict):
60385
60694
  def __init__(__self__, *,
60695
+ architecture: builtins.str,
60386
60696
  auto_delete: builtins.bool,
60387
60697
  boot: builtins.bool,
60388
60698
  device_name: builtins.str,
@@ -60390,6 +60700,7 @@ class GetInstanceTemplateDiskResult(dict):
60390
60700
  disk_name: builtins.str,
60391
60701
  disk_size_gb: builtins.int,
60392
60702
  disk_type: builtins.str,
60703
+ guest_os_features: Sequence[builtins.str],
60393
60704
  interface: builtins.str,
60394
60705
  labels: Mapping[str, builtins.str],
60395
60706
  mode: builtins.str,
@@ -60404,6 +60715,7 @@ class GetInstanceTemplateDiskResult(dict):
60404
60715
  source_snapshot_encryption_keys: Sequence['outputs.GetInstanceTemplateDiskSourceSnapshotEncryptionKeyResult'],
60405
60716
  type: builtins.str):
60406
60717
  """
60718
+ :param builtins.str architecture: The architecture of the image. Allowed values are ARM64 or X86_64.
60407
60719
  :param builtins.bool auto_delete: Whether or not the disk should be auto-deleted.
60408
60720
  This defaults to true.
60409
60721
  :param builtins.bool boot: Indicates that this is a boot disk.
@@ -60418,6 +60730,7 @@ class GetInstanceTemplateDiskResult(dict):
60418
60730
  the size must be exactly 375GB.
60419
60731
  :param builtins.str disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
60420
60732
  `"pd-balanced"` or `"pd-standard"`.
60733
+ :param Sequence[builtins.str] guest_os_features: A list of features to enable on the guest operating system. Applicable only for bootable images.
60421
60734
  :param builtins.str interface: Specifies the disk interface to use for attaching this disk,
60422
60735
  which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
60423
60736
  and the request will fail if you attempt to attach a persistent disk in any other format
@@ -60459,6 +60772,7 @@ class GetInstanceTemplateDiskResult(dict):
60459
60772
  :param Sequence['GetInstanceTemplateDiskSourceSnapshotEncryptionKeyArgs'] source_snapshot_encryption_keys: The customer-supplied encryption key of the source snapshot.
60460
60773
  :param builtins.str type: The accelerator type resource to expose to this instance. E.g. `nvidia-tesla-k80`.
60461
60774
  """
60775
+ pulumi.set(__self__, "architecture", architecture)
60462
60776
  pulumi.set(__self__, "auto_delete", auto_delete)
60463
60777
  pulumi.set(__self__, "boot", boot)
60464
60778
  pulumi.set(__self__, "device_name", device_name)
@@ -60466,6 +60780,7 @@ class GetInstanceTemplateDiskResult(dict):
60466
60780
  pulumi.set(__self__, "disk_name", disk_name)
60467
60781
  pulumi.set(__self__, "disk_size_gb", disk_size_gb)
60468
60782
  pulumi.set(__self__, "disk_type", disk_type)
60783
+ pulumi.set(__self__, "guest_os_features", guest_os_features)
60469
60784
  pulumi.set(__self__, "interface", interface)
60470
60785
  pulumi.set(__self__, "labels", labels)
60471
60786
  pulumi.set(__self__, "mode", mode)
@@ -60480,6 +60795,14 @@ class GetInstanceTemplateDiskResult(dict):
60480
60795
  pulumi.set(__self__, "source_snapshot_encryption_keys", source_snapshot_encryption_keys)
60481
60796
  pulumi.set(__self__, "type", type)
60482
60797
 
60798
+ @property
60799
+ @pulumi.getter
60800
+ def architecture(self) -> builtins.str:
60801
+ """
60802
+ The architecture of the image. Allowed values are ARM64 or X86_64.
60803
+ """
60804
+ return pulumi.get(self, "architecture")
60805
+
60483
60806
  @property
60484
60807
  @pulumi.getter(name="autoDelete")
60485
60808
  def auto_delete(self) -> builtins.bool:
@@ -60543,6 +60866,14 @@ class GetInstanceTemplateDiskResult(dict):
60543
60866
  """
60544
60867
  return pulumi.get(self, "disk_type")
60545
60868
 
60869
+ @property
60870
+ @pulumi.getter(name="guestOsFeatures")
60871
+ def guest_os_features(self) -> Sequence[builtins.str]:
60872
+ """
60873
+ A list of features to enable on the guest operating system. Applicable only for bootable images.
60874
+ """
60875
+ return pulumi.get(self, "guest_os_features")
60876
+
60546
60877
  @property
60547
60878
  @pulumi.getter
60548
60879
  def interface(self) -> builtins.str:
@@ -64447,6 +64778,7 @@ class GetRegionInstanceTemplateConfidentialInstanceConfigResult(dict):
64447
64778
  @pulumi.output_type
64448
64779
  class GetRegionInstanceTemplateDiskResult(dict):
64449
64780
  def __init__(__self__, *,
64781
+ architecture: builtins.str,
64450
64782
  auto_delete: builtins.bool,
64451
64783
  boot: builtins.bool,
64452
64784
  device_name: builtins.str,
@@ -64454,6 +64786,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
64454
64786
  disk_name: builtins.str,
64455
64787
  disk_size_gb: builtins.int,
64456
64788
  disk_type: builtins.str,
64789
+ guest_os_features: Sequence[builtins.str],
64457
64790
  interface: builtins.str,
64458
64791
  labels: Mapping[str, builtins.str],
64459
64792
  mode: builtins.str,
@@ -64468,6 +64801,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
64468
64801
  source_snapshot_encryption_keys: Sequence['outputs.GetRegionInstanceTemplateDiskSourceSnapshotEncryptionKeyResult'],
64469
64802
  type: builtins.str):
64470
64803
  """
64804
+ :param builtins.str architecture: The architecture of the image. Allowed values are ARM64 or X86_64.
64471
64805
  :param builtins.bool auto_delete: Whether or not the disk should be auto-deleted.
64472
64806
  This defaults to true.
64473
64807
  :param builtins.bool boot: Indicates that this is a boot disk.
@@ -64482,6 +64816,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
64482
64816
  the size must be exactly 375GB.
64483
64817
  :param builtins.str disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
64484
64818
  `"pd-balanced"` or `"pd-standard"`.
64819
+ :param Sequence[builtins.str] guest_os_features: A list of features to enable on the guest operating system. Applicable only for bootable images.
64485
64820
  :param builtins.str interface: Specifies the disk interface to use for attaching this disk,
64486
64821
  which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
64487
64822
  and the request will fail if you attempt to attach a persistent disk in any other format
@@ -64523,6 +64858,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
64523
64858
  :param Sequence['GetRegionInstanceTemplateDiskSourceSnapshotEncryptionKeyArgs'] source_snapshot_encryption_keys: The customer-supplied encryption key of the source snapshot.
64524
64859
  :param builtins.str type: The accelerator type resource to expose to this instance. E.g. `nvidia-tesla-k80`.
64525
64860
  """
64861
+ pulumi.set(__self__, "architecture", architecture)
64526
64862
  pulumi.set(__self__, "auto_delete", auto_delete)
64527
64863
  pulumi.set(__self__, "boot", boot)
64528
64864
  pulumi.set(__self__, "device_name", device_name)
@@ -64530,6 +64866,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
64530
64866
  pulumi.set(__self__, "disk_name", disk_name)
64531
64867
  pulumi.set(__self__, "disk_size_gb", disk_size_gb)
64532
64868
  pulumi.set(__self__, "disk_type", disk_type)
64869
+ pulumi.set(__self__, "guest_os_features", guest_os_features)
64533
64870
  pulumi.set(__self__, "interface", interface)
64534
64871
  pulumi.set(__self__, "labels", labels)
64535
64872
  pulumi.set(__self__, "mode", mode)
@@ -64544,6 +64881,14 @@ class GetRegionInstanceTemplateDiskResult(dict):
64544
64881
  pulumi.set(__self__, "source_snapshot_encryption_keys", source_snapshot_encryption_keys)
64545
64882
  pulumi.set(__self__, "type", type)
64546
64883
 
64884
+ @property
64885
+ @pulumi.getter
64886
+ def architecture(self) -> builtins.str:
64887
+ """
64888
+ The architecture of the image. Allowed values are ARM64 or X86_64.
64889
+ """
64890
+ return pulumi.get(self, "architecture")
64891
+
64547
64892
  @property
64548
64893
  @pulumi.getter(name="autoDelete")
64549
64894
  def auto_delete(self) -> builtins.bool:
@@ -64607,6 +64952,14 @@ class GetRegionInstanceTemplateDiskResult(dict):
64607
64952
  """
64608
64953
  return pulumi.get(self, "disk_type")
64609
64954
 
64955
+ @property
64956
+ @pulumi.getter(name="guestOsFeatures")
64957
+ def guest_os_features(self) -> Sequence[builtins.str]:
64958
+ """
64959
+ A list of features to enable on the guest operating system. Applicable only for bootable images.
64960
+ """
64961
+ return pulumi.get(self, "guest_os_features")
64962
+
64610
64963
  @property
64611
64964
  @pulumi.getter
64612
64965
  def interface(self) -> builtins.str: