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.
- pulumi_gcp/__init__.py +8 -0
- pulumi_gcp/alloydb/_inputs.py +164 -0
- pulumi_gcp/alloydb/outputs.py +211 -0
- pulumi_gcp/apigee/_inputs.py +20 -0
- pulumi_gcp/apigee/outputs.py +12 -0
- pulumi_gcp/bigquery/routine.py +56 -0
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/certificateauthority/_inputs.py +20 -19
- pulumi_gcp/certificateauthority/authority.py +70 -0
- pulumi_gcp/certificateauthority/outputs.py +12 -11
- pulumi_gcp/cloudfunctionsv2/function.py +4 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +312 -0
- pulumi_gcp/compute/cross_site_network.py +374 -0
- pulumi_gcp/compute/get_health_check.py +12 -1
- pulumi_gcp/compute/health_check.py +120 -0
- pulumi_gcp/compute/outputs.py +353 -0
- pulumi_gcp/compute/region_health_check.py +120 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataproc/get_metastore_service.py +1 -12
- pulumi_gcp/dataproc/metastore_service.py +0 -61
- pulumi_gcp/diagflow/_inputs.py +6280 -2644
- pulumi_gcp/diagflow/cx_flow.py +304 -0
- pulumi_gcp/diagflow/cx_page.py +290 -0
- pulumi_gcp/diagflow/outputs.py +4616 -1862
- pulumi_gcp/netapp/backup.py +56 -0
- pulumi_gcp/netapp/backup_vault.py +185 -0
- pulumi_gcp/netapp/storage_pool.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +47 -0
- pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
- pulumi_gcp/networkservices/_inputs.py +43 -0
- pulumi_gcp/networkservices/edge_cache_origin.py +61 -0
- pulumi_gcp/networkservices/outputs.py +43 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +1 -12
- pulumi_gcp/redis/instance.py +0 -61
- pulumi_gcp/spanner/database.py +56 -0
- pulumi_gcp/spanner/get_database.py +12 -1
- pulumi_gcp/storage/bucket.py +4 -4
- pulumi_gcp/storage/get_bucket_object_content.py +29 -1
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/RECORD +45 -44
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -158,6 +158,8 @@ __all__ = [
|
|
158
158
|
'HaVpnGatewayVpnInterfaceArgsDict',
|
159
159
|
'HealthCheckGrpcHealthCheckArgs',
|
160
160
|
'HealthCheckGrpcHealthCheckArgsDict',
|
161
|
+
'HealthCheckGrpcTlsHealthCheckArgs',
|
162
|
+
'HealthCheckGrpcTlsHealthCheckArgsDict',
|
161
163
|
'HealthCheckHttp2HealthCheckArgs',
|
162
164
|
'HealthCheckHttp2HealthCheckArgsDict',
|
163
165
|
'HealthCheckHttpHealthCheckArgs',
|
@@ -642,6 +644,8 @@ __all__ = [
|
|
642
644
|
'RegionDiskSourceSnapshotEncryptionKeyArgsDict',
|
643
645
|
'RegionHealthCheckGrpcHealthCheckArgs',
|
644
646
|
'RegionHealthCheckGrpcHealthCheckArgsDict',
|
647
|
+
'RegionHealthCheckGrpcTlsHealthCheckArgs',
|
648
|
+
'RegionHealthCheckGrpcTlsHealthCheckArgsDict',
|
645
649
|
'RegionHealthCheckHttp2HealthCheckArgs',
|
646
650
|
'RegionHealthCheckHttp2HealthCheckArgsDict',
|
647
651
|
'RegionHealthCheckHttpHealthCheckArgs',
|
@@ -9389,6 +9393,120 @@ class HealthCheckGrpcHealthCheckArgs:
|
|
9389
9393
|
pulumi.set(self, "port_specification", value)
|
9390
9394
|
|
9391
9395
|
|
9396
|
+
if not MYPY:
|
9397
|
+
class HealthCheckGrpcTlsHealthCheckArgsDict(TypedDict):
|
9398
|
+
grpc_service_name: NotRequired[pulumi.Input[builtins.str]]
|
9399
|
+
"""
|
9400
|
+
The gRPC service name for the health check.
|
9401
|
+
The value of grpcServiceName has the following meanings by convention:
|
9402
|
+
- Empty serviceName means the overall status of all services at the backend.
|
9403
|
+
- Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
|
9404
|
+
The grpcServiceName can only be ASCII.
|
9405
|
+
"""
|
9406
|
+
port: NotRequired[pulumi.Input[builtins.int]]
|
9407
|
+
"""
|
9408
|
+
The port number for the health check request.
|
9409
|
+
Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
|
9410
|
+
"""
|
9411
|
+
port_specification: NotRequired[pulumi.Input[builtins.str]]
|
9412
|
+
"""
|
9413
|
+
Specifies how port is selected for health checking, can be one of the
|
9414
|
+
following values:
|
9415
|
+
* `USE_FIXED_PORT`: The port number in `port` is used for health checking.
|
9416
|
+
* `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
|
9417
|
+
* `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
|
9418
|
+
network endpoint is used for health checking. For other backends, the
|
9419
|
+
port or named port specified in the Backend Service is used for health
|
9420
|
+
checking.
|
9421
|
+
If not specified, gRPC with TLS health check follows behavior specified in the `port` field.
|
9422
|
+
Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
|
9423
|
+
"""
|
9424
|
+
elif False:
|
9425
|
+
HealthCheckGrpcTlsHealthCheckArgsDict: TypeAlias = Mapping[str, Any]
|
9426
|
+
|
9427
|
+
@pulumi.input_type
|
9428
|
+
class HealthCheckGrpcTlsHealthCheckArgs:
|
9429
|
+
def __init__(__self__, *,
|
9430
|
+
grpc_service_name: Optional[pulumi.Input[builtins.str]] = None,
|
9431
|
+
port: Optional[pulumi.Input[builtins.int]] = None,
|
9432
|
+
port_specification: Optional[pulumi.Input[builtins.str]] = None):
|
9433
|
+
"""
|
9434
|
+
:param pulumi.Input[builtins.str] grpc_service_name: The gRPC service name for the health check.
|
9435
|
+
The value of grpcServiceName has the following meanings by convention:
|
9436
|
+
- Empty serviceName means the overall status of all services at the backend.
|
9437
|
+
- Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
|
9438
|
+
The grpcServiceName can only be ASCII.
|
9439
|
+
:param pulumi.Input[builtins.int] port: The port number for the health check request.
|
9440
|
+
Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
|
9441
|
+
:param pulumi.Input[builtins.str] port_specification: Specifies how port is selected for health checking, can be one of the
|
9442
|
+
following values:
|
9443
|
+
* `USE_FIXED_PORT`: The port number in `port` is used for health checking.
|
9444
|
+
* `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
|
9445
|
+
* `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
|
9446
|
+
network endpoint is used for health checking. For other backends, the
|
9447
|
+
port or named port specified in the Backend Service is used for health
|
9448
|
+
checking.
|
9449
|
+
If not specified, gRPC with TLS health check follows behavior specified in the `port` field.
|
9450
|
+
Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
|
9451
|
+
"""
|
9452
|
+
if grpc_service_name is not None:
|
9453
|
+
pulumi.set(__self__, "grpc_service_name", grpc_service_name)
|
9454
|
+
if port is not None:
|
9455
|
+
pulumi.set(__self__, "port", port)
|
9456
|
+
if port_specification is not None:
|
9457
|
+
pulumi.set(__self__, "port_specification", port_specification)
|
9458
|
+
|
9459
|
+
@property
|
9460
|
+
@pulumi.getter(name="grpcServiceName")
|
9461
|
+
def grpc_service_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
9462
|
+
"""
|
9463
|
+
The gRPC service name for the health check.
|
9464
|
+
The value of grpcServiceName has the following meanings by convention:
|
9465
|
+
- Empty serviceName means the overall status of all services at the backend.
|
9466
|
+
- Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
|
9467
|
+
The grpcServiceName can only be ASCII.
|
9468
|
+
"""
|
9469
|
+
return pulumi.get(self, "grpc_service_name")
|
9470
|
+
|
9471
|
+
@grpc_service_name.setter
|
9472
|
+
def grpc_service_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
9473
|
+
pulumi.set(self, "grpc_service_name", value)
|
9474
|
+
|
9475
|
+
@property
|
9476
|
+
@pulumi.getter
|
9477
|
+
def port(self) -> Optional[pulumi.Input[builtins.int]]:
|
9478
|
+
"""
|
9479
|
+
The port number for the health check request.
|
9480
|
+
Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
|
9481
|
+
"""
|
9482
|
+
return pulumi.get(self, "port")
|
9483
|
+
|
9484
|
+
@port.setter
|
9485
|
+
def port(self, value: Optional[pulumi.Input[builtins.int]]):
|
9486
|
+
pulumi.set(self, "port", value)
|
9487
|
+
|
9488
|
+
@property
|
9489
|
+
@pulumi.getter(name="portSpecification")
|
9490
|
+
def port_specification(self) -> Optional[pulumi.Input[builtins.str]]:
|
9491
|
+
"""
|
9492
|
+
Specifies how port is selected for health checking, can be one of the
|
9493
|
+
following values:
|
9494
|
+
* `USE_FIXED_PORT`: The port number in `port` is used for health checking.
|
9495
|
+
* `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
|
9496
|
+
* `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
|
9497
|
+
network endpoint is used for health checking. For other backends, the
|
9498
|
+
port or named port specified in the Backend Service is used for health
|
9499
|
+
checking.
|
9500
|
+
If not specified, gRPC with TLS health check follows behavior specified in the `port` field.
|
9501
|
+
Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
|
9502
|
+
"""
|
9503
|
+
return pulumi.get(self, "port_specification")
|
9504
|
+
|
9505
|
+
@port_specification.setter
|
9506
|
+
def port_specification(self, value: Optional[pulumi.Input[builtins.str]]):
|
9507
|
+
pulumi.set(self, "port_specification", value)
|
9508
|
+
|
9509
|
+
|
9392
9510
|
if not MYPY:
|
9393
9511
|
class HealthCheckHttp2HealthCheckArgsDict(TypedDict):
|
9394
9512
|
host: NotRequired[pulumi.Input[builtins.str]]
|
@@ -22121,6 +22239,10 @@ class InstanceTemplateConfidentialInstanceConfigArgs:
|
|
22121
22239
|
|
22122
22240
|
if not MYPY:
|
22123
22241
|
class InstanceTemplateDiskArgsDict(TypedDict):
|
22242
|
+
architecture: NotRequired[pulumi.Input[builtins.str]]
|
22243
|
+
"""
|
22244
|
+
The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
22245
|
+
"""
|
22124
22246
|
auto_delete: NotRequired[pulumi.Input[builtins.bool]]
|
22125
22247
|
"""
|
22126
22248
|
Whether or not the disk should be auto-deleted.
|
@@ -22164,6 +22286,10 @@ if not MYPY:
|
|
22164
22286
|
The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
22165
22287
|
`"pd-balanced"` or `"pd-standard"`, `"hyperdisk-balanced"`, `"hyperdisk-throughput"` or `"hyperdisk-extreme"`.
|
22166
22288
|
"""
|
22289
|
+
guest_os_features: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
22290
|
+
"""
|
22291
|
+
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.
|
22292
|
+
"""
|
22167
22293
|
interface: NotRequired[pulumi.Input[builtins.str]]
|
22168
22294
|
"""
|
22169
22295
|
Specifies the disk interface to use for attaching this disk,
|
@@ -22250,6 +22376,7 @@ elif False:
|
|
22250
22376
|
@pulumi.input_type
|
22251
22377
|
class InstanceTemplateDiskArgs:
|
22252
22378
|
def __init__(__self__, *,
|
22379
|
+
architecture: Optional[pulumi.Input[builtins.str]] = None,
|
22253
22380
|
auto_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
22254
22381
|
boot: Optional[pulumi.Input[builtins.bool]] = None,
|
22255
22382
|
device_name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -22257,6 +22384,7 @@ class InstanceTemplateDiskArgs:
|
|
22257
22384
|
disk_name: Optional[pulumi.Input[builtins.str]] = None,
|
22258
22385
|
disk_size_gb: Optional[pulumi.Input[builtins.int]] = None,
|
22259
22386
|
disk_type: Optional[pulumi.Input[builtins.str]] = None,
|
22387
|
+
guest_os_features: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
22260
22388
|
interface: Optional[pulumi.Input[builtins.str]] = None,
|
22261
22389
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
22262
22390
|
mode: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -22271,6 +22399,7 @@ class InstanceTemplateDiskArgs:
|
|
22271
22399
|
source_snapshot_encryption_key: Optional[pulumi.Input['InstanceTemplateDiskSourceSnapshotEncryptionKeyArgs']] = None,
|
22272
22400
|
type: Optional[pulumi.Input[builtins.str]] = None):
|
22273
22401
|
"""
|
22402
|
+
:param pulumi.Input[builtins.str] architecture: The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
22274
22403
|
:param pulumi.Input[builtins.bool] auto_delete: Whether or not the disk should be auto-deleted.
|
22275
22404
|
This defaults to true.
|
22276
22405
|
:param pulumi.Input[builtins.bool] boot: Indicates that this is a boot disk.
|
@@ -22293,6 +22422,7 @@ class InstanceTemplateDiskArgs:
|
|
22293
22422
|
the size must be exactly 375GB.
|
22294
22423
|
:param pulumi.Input[builtins.str] disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
22295
22424
|
`"pd-balanced"` or `"pd-standard"`, `"hyperdisk-balanced"`, `"hyperdisk-throughput"` or `"hyperdisk-extreme"`.
|
22425
|
+
:param pulumi.Input[Sequence[pulumi.Input[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.
|
22296
22426
|
:param pulumi.Input[builtins.str] interface: Specifies the disk interface to use for attaching this disk,
|
22297
22427
|
which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
|
22298
22428
|
and the request will fail if you attempt to attach a persistent disk in any other format
|
@@ -22335,6 +22465,8 @@ class InstanceTemplateDiskArgs:
|
|
22335
22465
|
:param pulumi.Input[builtins.str] type: The type of GCE disk, can be either `"SCRATCH"` or
|
22336
22466
|
`"PERSISTENT"`.
|
22337
22467
|
"""
|
22468
|
+
if architecture is not None:
|
22469
|
+
pulumi.set(__self__, "architecture", architecture)
|
22338
22470
|
if auto_delete is not None:
|
22339
22471
|
pulumi.set(__self__, "auto_delete", auto_delete)
|
22340
22472
|
if boot is not None:
|
@@ -22349,6 +22481,8 @@ class InstanceTemplateDiskArgs:
|
|
22349
22481
|
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
22350
22482
|
if disk_type is not None:
|
22351
22483
|
pulumi.set(__self__, "disk_type", disk_type)
|
22484
|
+
if guest_os_features is not None:
|
22485
|
+
pulumi.set(__self__, "guest_os_features", guest_os_features)
|
22352
22486
|
if interface is not None:
|
22353
22487
|
pulumi.set(__self__, "interface", interface)
|
22354
22488
|
if labels is not None:
|
@@ -22376,6 +22510,18 @@ class InstanceTemplateDiskArgs:
|
|
22376
22510
|
if type is not None:
|
22377
22511
|
pulumi.set(__self__, "type", type)
|
22378
22512
|
|
22513
|
+
@property
|
22514
|
+
@pulumi.getter
|
22515
|
+
def architecture(self) -> Optional[pulumi.Input[builtins.str]]:
|
22516
|
+
"""
|
22517
|
+
The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
22518
|
+
"""
|
22519
|
+
return pulumi.get(self, "architecture")
|
22520
|
+
|
22521
|
+
@architecture.setter
|
22522
|
+
def architecture(self, value: Optional[pulumi.Input[builtins.str]]):
|
22523
|
+
pulumi.set(self, "architecture", value)
|
22524
|
+
|
22379
22525
|
@property
|
22380
22526
|
@pulumi.getter(name="autoDelete")
|
22381
22527
|
def auto_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -22475,6 +22621,18 @@ class InstanceTemplateDiskArgs:
|
|
22475
22621
|
def disk_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
22476
22622
|
pulumi.set(self, "disk_type", value)
|
22477
22623
|
|
22624
|
+
@property
|
22625
|
+
@pulumi.getter(name="guestOsFeatures")
|
22626
|
+
def guest_os_features(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
22627
|
+
"""
|
22628
|
+
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.
|
22629
|
+
"""
|
22630
|
+
return pulumi.get(self, "guest_os_features")
|
22631
|
+
|
22632
|
+
@guest_os_features.setter
|
22633
|
+
def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
22634
|
+
pulumi.set(self, "guest_os_features", value)
|
22635
|
+
|
22478
22636
|
@property
|
22479
22637
|
@pulumi.getter
|
22480
22638
|
def interface(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -34478,6 +34636,120 @@ class RegionHealthCheckGrpcHealthCheckArgs:
|
|
34478
34636
|
pulumi.set(self, "port_specification", value)
|
34479
34637
|
|
34480
34638
|
|
34639
|
+
if not MYPY:
|
34640
|
+
class RegionHealthCheckGrpcTlsHealthCheckArgsDict(TypedDict):
|
34641
|
+
grpc_service_name: NotRequired[pulumi.Input[builtins.str]]
|
34642
|
+
"""
|
34643
|
+
The gRPC service name for the health check.
|
34644
|
+
The value of grpcServiceName has the following meanings by convention:
|
34645
|
+
* Empty serviceName means the overall status of all services at the backend.
|
34646
|
+
* Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
|
34647
|
+
The grpcServiceName can only be ASCII.
|
34648
|
+
"""
|
34649
|
+
port: NotRequired[pulumi.Input[builtins.int]]
|
34650
|
+
"""
|
34651
|
+
The port number for the health check request.
|
34652
|
+
Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
|
34653
|
+
"""
|
34654
|
+
port_specification: NotRequired[pulumi.Input[builtins.str]]
|
34655
|
+
"""
|
34656
|
+
Specifies how port is selected for health checking, can be one of the
|
34657
|
+
following values:
|
34658
|
+
* `USE_FIXED_PORT`: The port number in `port` is used for health checking.
|
34659
|
+
* `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
|
34660
|
+
* `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
|
34661
|
+
network endpoint is used for health checking. For other backends, the
|
34662
|
+
port or named port specified in the Backend Service is used for health
|
34663
|
+
checking.
|
34664
|
+
If not specified, gRPC health check follows behavior specified in the `port` field.
|
34665
|
+
Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
|
34666
|
+
"""
|
34667
|
+
elif False:
|
34668
|
+
RegionHealthCheckGrpcTlsHealthCheckArgsDict: TypeAlias = Mapping[str, Any]
|
34669
|
+
|
34670
|
+
@pulumi.input_type
|
34671
|
+
class RegionHealthCheckGrpcTlsHealthCheckArgs:
|
34672
|
+
def __init__(__self__, *,
|
34673
|
+
grpc_service_name: Optional[pulumi.Input[builtins.str]] = None,
|
34674
|
+
port: Optional[pulumi.Input[builtins.int]] = None,
|
34675
|
+
port_specification: Optional[pulumi.Input[builtins.str]] = None):
|
34676
|
+
"""
|
34677
|
+
:param pulumi.Input[builtins.str] grpc_service_name: The gRPC service name for the health check.
|
34678
|
+
The value of grpcServiceName has the following meanings by convention:
|
34679
|
+
* Empty serviceName means the overall status of all services at the backend.
|
34680
|
+
* Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
|
34681
|
+
The grpcServiceName can only be ASCII.
|
34682
|
+
:param pulumi.Input[builtins.int] port: The port number for the health check request.
|
34683
|
+
Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
|
34684
|
+
:param pulumi.Input[builtins.str] port_specification: Specifies how port is selected for health checking, can be one of the
|
34685
|
+
following values:
|
34686
|
+
* `USE_FIXED_PORT`: The port number in `port` is used for health checking.
|
34687
|
+
* `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
|
34688
|
+
* `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
|
34689
|
+
network endpoint is used for health checking. For other backends, the
|
34690
|
+
port or named port specified in the Backend Service is used for health
|
34691
|
+
checking.
|
34692
|
+
If not specified, gRPC health check follows behavior specified in the `port` field.
|
34693
|
+
Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
|
34694
|
+
"""
|
34695
|
+
if grpc_service_name is not None:
|
34696
|
+
pulumi.set(__self__, "grpc_service_name", grpc_service_name)
|
34697
|
+
if port is not None:
|
34698
|
+
pulumi.set(__self__, "port", port)
|
34699
|
+
if port_specification is not None:
|
34700
|
+
pulumi.set(__self__, "port_specification", port_specification)
|
34701
|
+
|
34702
|
+
@property
|
34703
|
+
@pulumi.getter(name="grpcServiceName")
|
34704
|
+
def grpc_service_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
34705
|
+
"""
|
34706
|
+
The gRPC service name for the health check.
|
34707
|
+
The value of grpcServiceName has the following meanings by convention:
|
34708
|
+
* Empty serviceName means the overall status of all services at the backend.
|
34709
|
+
* Non-empty serviceName means the health of that gRPC service, as defined by the owner of the service.
|
34710
|
+
The grpcServiceName can only be ASCII.
|
34711
|
+
"""
|
34712
|
+
return pulumi.get(self, "grpc_service_name")
|
34713
|
+
|
34714
|
+
@grpc_service_name.setter
|
34715
|
+
def grpc_service_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
34716
|
+
pulumi.set(self, "grpc_service_name", value)
|
34717
|
+
|
34718
|
+
@property
|
34719
|
+
@pulumi.getter
|
34720
|
+
def port(self) -> Optional[pulumi.Input[builtins.int]]:
|
34721
|
+
"""
|
34722
|
+
The port number for the health check request.
|
34723
|
+
Must be specified if port_specification is USE_FIXED_PORT. Valid values are 1 through 65535.
|
34724
|
+
"""
|
34725
|
+
return pulumi.get(self, "port")
|
34726
|
+
|
34727
|
+
@port.setter
|
34728
|
+
def port(self, value: Optional[pulumi.Input[builtins.int]]):
|
34729
|
+
pulumi.set(self, "port", value)
|
34730
|
+
|
34731
|
+
@property
|
34732
|
+
@pulumi.getter(name="portSpecification")
|
34733
|
+
def port_specification(self) -> Optional[pulumi.Input[builtins.str]]:
|
34734
|
+
"""
|
34735
|
+
Specifies how port is selected for health checking, can be one of the
|
34736
|
+
following values:
|
34737
|
+
* `USE_FIXED_PORT`: The port number in `port` is used for health checking.
|
34738
|
+
* `USE_NAMED_PORT`: Not supported for GRPC with TLS health checking.
|
34739
|
+
* `USE_SERVING_PORT`: For NetworkEndpointGroup, the port specified for each
|
34740
|
+
network endpoint is used for health checking. For other backends, the
|
34741
|
+
port or named port specified in the Backend Service is used for health
|
34742
|
+
checking.
|
34743
|
+
If not specified, gRPC health check follows behavior specified in the `port` field.
|
34744
|
+
Possible values are: `USE_FIXED_PORT`, `USE_NAMED_PORT`, `USE_SERVING_PORT`.
|
34745
|
+
"""
|
34746
|
+
return pulumi.get(self, "port_specification")
|
34747
|
+
|
34748
|
+
@port_specification.setter
|
34749
|
+
def port_specification(self, value: Optional[pulumi.Input[builtins.str]]):
|
34750
|
+
pulumi.set(self, "port_specification", value)
|
34751
|
+
|
34752
|
+
|
34481
34753
|
if not MYPY:
|
34482
34754
|
class RegionHealthCheckHttp2HealthCheckArgsDict(TypedDict):
|
34483
34755
|
host: NotRequired[pulumi.Input[builtins.str]]
|
@@ -36931,6 +37203,10 @@ class RegionInstanceTemplateConfidentialInstanceConfigArgs:
|
|
36931
37203
|
|
36932
37204
|
if not MYPY:
|
36933
37205
|
class RegionInstanceTemplateDiskArgsDict(TypedDict):
|
37206
|
+
architecture: NotRequired[pulumi.Input[builtins.str]]
|
37207
|
+
"""
|
37208
|
+
The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
37209
|
+
"""
|
36934
37210
|
auto_delete: NotRequired[pulumi.Input[builtins.bool]]
|
36935
37211
|
"""
|
36936
37212
|
Whether or not the disk should be auto-deleted.
|
@@ -36974,6 +37250,10 @@ if not MYPY:
|
|
36974
37250
|
The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
36975
37251
|
`"pd-balanced"` or `"pd-standard"`.
|
36976
37252
|
"""
|
37253
|
+
guest_os_features: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
37254
|
+
"""
|
37255
|
+
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.
|
37256
|
+
"""
|
36977
37257
|
interface: NotRequired[pulumi.Input[builtins.str]]
|
36978
37258
|
"""
|
36979
37259
|
Specifies the disk interface to use for attaching this disk,
|
@@ -37060,6 +37340,7 @@ elif False:
|
|
37060
37340
|
@pulumi.input_type
|
37061
37341
|
class RegionInstanceTemplateDiskArgs:
|
37062
37342
|
def __init__(__self__, *,
|
37343
|
+
architecture: Optional[pulumi.Input[builtins.str]] = None,
|
37063
37344
|
auto_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
37064
37345
|
boot: Optional[pulumi.Input[builtins.bool]] = None,
|
37065
37346
|
device_name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -37067,6 +37348,7 @@ class RegionInstanceTemplateDiskArgs:
|
|
37067
37348
|
disk_name: Optional[pulumi.Input[builtins.str]] = None,
|
37068
37349
|
disk_size_gb: Optional[pulumi.Input[builtins.int]] = None,
|
37069
37350
|
disk_type: Optional[pulumi.Input[builtins.str]] = None,
|
37351
|
+
guest_os_features: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
37070
37352
|
interface: Optional[pulumi.Input[builtins.str]] = None,
|
37071
37353
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
37072
37354
|
mode: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -37081,6 +37363,7 @@ class RegionInstanceTemplateDiskArgs:
|
|
37081
37363
|
source_snapshot_encryption_key: Optional[pulumi.Input['RegionInstanceTemplateDiskSourceSnapshotEncryptionKeyArgs']] = None,
|
37082
37364
|
type: Optional[pulumi.Input[builtins.str]] = None):
|
37083
37365
|
"""
|
37366
|
+
:param pulumi.Input[builtins.str] architecture: The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
37084
37367
|
:param pulumi.Input[builtins.bool] auto_delete: Whether or not the disk should be auto-deleted.
|
37085
37368
|
This defaults to true.
|
37086
37369
|
:param pulumi.Input[builtins.bool] boot: Indicates that this is a boot disk.
|
@@ -37103,6 +37386,7 @@ class RegionInstanceTemplateDiskArgs:
|
|
37103
37386
|
the size must be exactly 375GB.
|
37104
37387
|
:param pulumi.Input[builtins.str] disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
37105
37388
|
`"pd-balanced"` or `"pd-standard"`.
|
37389
|
+
:param pulumi.Input[Sequence[pulumi.Input[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.
|
37106
37390
|
:param pulumi.Input[builtins.str] interface: Specifies the disk interface to use for attaching this disk,
|
37107
37391
|
which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
|
37108
37392
|
and the request will fail if you attempt to attach a persistent disk in any other format
|
@@ -37145,6 +37429,8 @@ class RegionInstanceTemplateDiskArgs:
|
|
37145
37429
|
:param pulumi.Input[builtins.str] type: The type of GCE disk, can be either `"SCRATCH"` or
|
37146
37430
|
`"PERSISTENT"`.
|
37147
37431
|
"""
|
37432
|
+
if architecture is not None:
|
37433
|
+
pulumi.set(__self__, "architecture", architecture)
|
37148
37434
|
if auto_delete is not None:
|
37149
37435
|
pulumi.set(__self__, "auto_delete", auto_delete)
|
37150
37436
|
if boot is not None:
|
@@ -37159,6 +37445,8 @@ class RegionInstanceTemplateDiskArgs:
|
|
37159
37445
|
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
37160
37446
|
if disk_type is not None:
|
37161
37447
|
pulumi.set(__self__, "disk_type", disk_type)
|
37448
|
+
if guest_os_features is not None:
|
37449
|
+
pulumi.set(__self__, "guest_os_features", guest_os_features)
|
37162
37450
|
if interface is not None:
|
37163
37451
|
pulumi.set(__self__, "interface", interface)
|
37164
37452
|
if labels is not None:
|
@@ -37186,6 +37474,18 @@ class RegionInstanceTemplateDiskArgs:
|
|
37186
37474
|
if type is not None:
|
37187
37475
|
pulumi.set(__self__, "type", type)
|
37188
37476
|
|
37477
|
+
@property
|
37478
|
+
@pulumi.getter
|
37479
|
+
def architecture(self) -> Optional[pulumi.Input[builtins.str]]:
|
37480
|
+
"""
|
37481
|
+
The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
37482
|
+
"""
|
37483
|
+
return pulumi.get(self, "architecture")
|
37484
|
+
|
37485
|
+
@architecture.setter
|
37486
|
+
def architecture(self, value: Optional[pulumi.Input[builtins.str]]):
|
37487
|
+
pulumi.set(self, "architecture", value)
|
37488
|
+
|
37189
37489
|
@property
|
37190
37490
|
@pulumi.getter(name="autoDelete")
|
37191
37491
|
def auto_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -37285,6 +37585,18 @@ class RegionInstanceTemplateDiskArgs:
|
|
37285
37585
|
def disk_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
37286
37586
|
pulumi.set(self, "disk_type", value)
|
37287
37587
|
|
37588
|
+
@property
|
37589
|
+
@pulumi.getter(name="guestOsFeatures")
|
37590
|
+
def guest_os_features(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
37591
|
+
"""
|
37592
|
+
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.
|
37593
|
+
"""
|
37594
|
+
return pulumi.get(self, "guest_os_features")
|
37595
|
+
|
37596
|
+
@guest_os_features.setter
|
37597
|
+
def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
37598
|
+
pulumi.set(self, "guest_os_features", value)
|
37599
|
+
|
37288
37600
|
@property
|
37289
37601
|
@pulumi.getter
|
37290
37602
|
def interface(self) -> Optional[pulumi.Input[builtins.str]]:
|