pulumi-gcp 8.31.0__py3-none-any.whl → 8.31.0a1747205151__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 +0 -8
- pulumi_gcp/alloydb/_inputs.py +0 -164
- pulumi_gcp/alloydb/outputs.py +0 -211
- pulumi_gcp/apigee/_inputs.py +0 -20
- pulumi_gcp/apigee/outputs.py +0 -12
- pulumi_gcp/bigquery/routine.py +0 -56
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/certificateauthority/_inputs.py +19 -20
- pulumi_gcp/certificateauthority/authority.py +0 -70
- pulumi_gcp/certificateauthority/outputs.py +11 -12
- pulumi_gcp/cloudfunctionsv2/function.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +0 -312
- pulumi_gcp/compute/get_health_check.py +1 -12
- pulumi_gcp/compute/health_check.py +0 -120
- pulumi_gcp/compute/outputs.py +0 -353
- pulumi_gcp/compute/region_health_check.py +0 -120
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataproc/get_metastore_service.py +12 -1
- pulumi_gcp/dataproc/metastore_service.py +61 -0
- pulumi_gcp/diagflow/_inputs.py +2894 -6530
- pulumi_gcp/diagflow/cx_flow.py +0 -304
- pulumi_gcp/diagflow/cx_page.py +0 -290
- pulumi_gcp/diagflow/outputs.py +1876 -4630
- pulumi_gcp/netapp/backup.py +0 -56
- pulumi_gcp/netapp/backup_vault.py +0 -185
- pulumi_gcp/netapp/storage_pool.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +0 -47
- pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
- pulumi_gcp/networkservices/_inputs.py +0 -43
- pulumi_gcp/networkservices/edge_cache_origin.py +0 -61
- pulumi_gcp/networkservices/outputs.py +0 -43
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +61 -0
- pulumi_gcp/spanner/database.py +0 -56
- pulumi_gcp/spanner/get_database.py +1 -12
- pulumi_gcp/storage/bucket.py +4 -4
- pulumi_gcp/storage/get_bucket_object_content.py +1 -29
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/RECORD +44 -45
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/WHEEL +1 -1
- pulumi_gcp/compute/cross_site_network.py +0 -374
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -158,8 +158,6 @@ __all__ = [
|
|
158
158
|
'HaVpnGatewayVpnInterfaceArgsDict',
|
159
159
|
'HealthCheckGrpcHealthCheckArgs',
|
160
160
|
'HealthCheckGrpcHealthCheckArgsDict',
|
161
|
-
'HealthCheckGrpcTlsHealthCheckArgs',
|
162
|
-
'HealthCheckGrpcTlsHealthCheckArgsDict',
|
163
161
|
'HealthCheckHttp2HealthCheckArgs',
|
164
162
|
'HealthCheckHttp2HealthCheckArgsDict',
|
165
163
|
'HealthCheckHttpHealthCheckArgs',
|
@@ -644,8 +642,6 @@ __all__ = [
|
|
644
642
|
'RegionDiskSourceSnapshotEncryptionKeyArgsDict',
|
645
643
|
'RegionHealthCheckGrpcHealthCheckArgs',
|
646
644
|
'RegionHealthCheckGrpcHealthCheckArgsDict',
|
647
|
-
'RegionHealthCheckGrpcTlsHealthCheckArgs',
|
648
|
-
'RegionHealthCheckGrpcTlsHealthCheckArgsDict',
|
649
645
|
'RegionHealthCheckHttp2HealthCheckArgs',
|
650
646
|
'RegionHealthCheckHttp2HealthCheckArgsDict',
|
651
647
|
'RegionHealthCheckHttpHealthCheckArgs',
|
@@ -9393,120 +9389,6 @@ class HealthCheckGrpcHealthCheckArgs:
|
|
9393
9389
|
pulumi.set(self, "port_specification", value)
|
9394
9390
|
|
9395
9391
|
|
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
|
-
|
9510
9392
|
if not MYPY:
|
9511
9393
|
class HealthCheckHttp2HealthCheckArgsDict(TypedDict):
|
9512
9394
|
host: NotRequired[pulumi.Input[builtins.str]]
|
@@ -22239,10 +22121,6 @@ class InstanceTemplateConfidentialInstanceConfigArgs:
|
|
22239
22121
|
|
22240
22122
|
if not MYPY:
|
22241
22123
|
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
|
-
"""
|
22246
22124
|
auto_delete: NotRequired[pulumi.Input[builtins.bool]]
|
22247
22125
|
"""
|
22248
22126
|
Whether or not the disk should be auto-deleted.
|
@@ -22286,10 +22164,6 @@ if not MYPY:
|
|
22286
22164
|
The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
22287
22165
|
`"pd-balanced"` or `"pd-standard"`, `"hyperdisk-balanced"`, `"hyperdisk-throughput"` or `"hyperdisk-extreme"`.
|
22288
22166
|
"""
|
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
|
-
"""
|
22293
22167
|
interface: NotRequired[pulumi.Input[builtins.str]]
|
22294
22168
|
"""
|
22295
22169
|
Specifies the disk interface to use for attaching this disk,
|
@@ -22376,7 +22250,6 @@ elif False:
|
|
22376
22250
|
@pulumi.input_type
|
22377
22251
|
class InstanceTemplateDiskArgs:
|
22378
22252
|
def __init__(__self__, *,
|
22379
|
-
architecture: Optional[pulumi.Input[builtins.str]] = None,
|
22380
22253
|
auto_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
22381
22254
|
boot: Optional[pulumi.Input[builtins.bool]] = None,
|
22382
22255
|
device_name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -22384,7 +22257,6 @@ class InstanceTemplateDiskArgs:
|
|
22384
22257
|
disk_name: Optional[pulumi.Input[builtins.str]] = None,
|
22385
22258
|
disk_size_gb: Optional[pulumi.Input[builtins.int]] = None,
|
22386
22259
|
disk_type: Optional[pulumi.Input[builtins.str]] = None,
|
22387
|
-
guest_os_features: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
22388
22260
|
interface: Optional[pulumi.Input[builtins.str]] = None,
|
22389
22261
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
22390
22262
|
mode: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -22399,7 +22271,6 @@ class InstanceTemplateDiskArgs:
|
|
22399
22271
|
source_snapshot_encryption_key: Optional[pulumi.Input['InstanceTemplateDiskSourceSnapshotEncryptionKeyArgs']] = None,
|
22400
22272
|
type: Optional[pulumi.Input[builtins.str]] = None):
|
22401
22273
|
"""
|
22402
|
-
:param pulumi.Input[builtins.str] architecture: The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
22403
22274
|
:param pulumi.Input[builtins.bool] auto_delete: Whether or not the disk should be auto-deleted.
|
22404
22275
|
This defaults to true.
|
22405
22276
|
:param pulumi.Input[builtins.bool] boot: Indicates that this is a boot disk.
|
@@ -22422,7 +22293,6 @@ class InstanceTemplateDiskArgs:
|
|
22422
22293
|
the size must be exactly 375GB.
|
22423
22294
|
:param pulumi.Input[builtins.str] disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
22424
22295
|
`"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.
|
22426
22296
|
:param pulumi.Input[builtins.str] interface: Specifies the disk interface to use for attaching this disk,
|
22427
22297
|
which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
|
22428
22298
|
and the request will fail if you attempt to attach a persistent disk in any other format
|
@@ -22465,8 +22335,6 @@ class InstanceTemplateDiskArgs:
|
|
22465
22335
|
:param pulumi.Input[builtins.str] type: The type of GCE disk, can be either `"SCRATCH"` or
|
22466
22336
|
`"PERSISTENT"`.
|
22467
22337
|
"""
|
22468
|
-
if architecture is not None:
|
22469
|
-
pulumi.set(__self__, "architecture", architecture)
|
22470
22338
|
if auto_delete is not None:
|
22471
22339
|
pulumi.set(__self__, "auto_delete", auto_delete)
|
22472
22340
|
if boot is not None:
|
@@ -22481,8 +22349,6 @@ class InstanceTemplateDiskArgs:
|
|
22481
22349
|
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
22482
22350
|
if disk_type is not None:
|
22483
22351
|
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)
|
22486
22352
|
if interface is not None:
|
22487
22353
|
pulumi.set(__self__, "interface", interface)
|
22488
22354
|
if labels is not None:
|
@@ -22510,18 +22376,6 @@ class InstanceTemplateDiskArgs:
|
|
22510
22376
|
if type is not None:
|
22511
22377
|
pulumi.set(__self__, "type", type)
|
22512
22378
|
|
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
|
-
|
22525
22379
|
@property
|
22526
22380
|
@pulumi.getter(name="autoDelete")
|
22527
22381
|
def auto_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -22621,18 +22475,6 @@ class InstanceTemplateDiskArgs:
|
|
22621
22475
|
def disk_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
22622
22476
|
pulumi.set(self, "disk_type", value)
|
22623
22477
|
|
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
|
-
|
22636
22478
|
@property
|
22637
22479
|
@pulumi.getter
|
22638
22480
|
def interface(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -34636,120 +34478,6 @@ class RegionHealthCheckGrpcHealthCheckArgs:
|
|
34636
34478
|
pulumi.set(self, "port_specification", value)
|
34637
34479
|
|
34638
34480
|
|
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
|
-
|
34753
34481
|
if not MYPY:
|
34754
34482
|
class RegionHealthCheckHttp2HealthCheckArgsDict(TypedDict):
|
34755
34483
|
host: NotRequired[pulumi.Input[builtins.str]]
|
@@ -37203,10 +36931,6 @@ class RegionInstanceTemplateConfidentialInstanceConfigArgs:
|
|
37203
36931
|
|
37204
36932
|
if not MYPY:
|
37205
36933
|
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
|
-
"""
|
37210
36934
|
auto_delete: NotRequired[pulumi.Input[builtins.bool]]
|
37211
36935
|
"""
|
37212
36936
|
Whether or not the disk should be auto-deleted.
|
@@ -37250,10 +36974,6 @@ if not MYPY:
|
|
37250
36974
|
The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
37251
36975
|
`"pd-balanced"` or `"pd-standard"`.
|
37252
36976
|
"""
|
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
|
-
"""
|
37257
36977
|
interface: NotRequired[pulumi.Input[builtins.str]]
|
37258
36978
|
"""
|
37259
36979
|
Specifies the disk interface to use for attaching this disk,
|
@@ -37340,7 +37060,6 @@ elif False:
|
|
37340
37060
|
@pulumi.input_type
|
37341
37061
|
class RegionInstanceTemplateDiskArgs:
|
37342
37062
|
def __init__(__self__, *,
|
37343
|
-
architecture: Optional[pulumi.Input[builtins.str]] = None,
|
37344
37063
|
auto_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
37345
37064
|
boot: Optional[pulumi.Input[builtins.bool]] = None,
|
37346
37065
|
device_name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -37348,7 +37067,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37348
37067
|
disk_name: Optional[pulumi.Input[builtins.str]] = None,
|
37349
37068
|
disk_size_gb: Optional[pulumi.Input[builtins.int]] = None,
|
37350
37069
|
disk_type: Optional[pulumi.Input[builtins.str]] = None,
|
37351
|
-
guest_os_features: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
37352
37070
|
interface: Optional[pulumi.Input[builtins.str]] = None,
|
37353
37071
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
37354
37072
|
mode: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -37363,7 +37081,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37363
37081
|
source_snapshot_encryption_key: Optional[pulumi.Input['RegionInstanceTemplateDiskSourceSnapshotEncryptionKeyArgs']] = None,
|
37364
37082
|
type: Optional[pulumi.Input[builtins.str]] = None):
|
37365
37083
|
"""
|
37366
|
-
:param pulumi.Input[builtins.str] architecture: The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
|
37367
37084
|
:param pulumi.Input[builtins.bool] auto_delete: Whether or not the disk should be auto-deleted.
|
37368
37085
|
This defaults to true.
|
37369
37086
|
:param pulumi.Input[builtins.bool] boot: Indicates that this is a boot disk.
|
@@ -37386,7 +37103,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37386
37103
|
the size must be exactly 375GB.
|
37387
37104
|
:param pulumi.Input[builtins.str] disk_type: The GCE disk type. Such as `"pd-ssd"`, `"local-ssd"`,
|
37388
37105
|
`"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.
|
37390
37106
|
:param pulumi.Input[builtins.str] interface: Specifies the disk interface to use for attaching this disk,
|
37391
37107
|
which is either SCSI or NVME. The default is SCSI. Persistent disks must always use SCSI
|
37392
37108
|
and the request will fail if you attempt to attach a persistent disk in any other format
|
@@ -37429,8 +37145,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37429
37145
|
:param pulumi.Input[builtins.str] type: The type of GCE disk, can be either `"SCRATCH"` or
|
37430
37146
|
`"PERSISTENT"`.
|
37431
37147
|
"""
|
37432
|
-
if architecture is not None:
|
37433
|
-
pulumi.set(__self__, "architecture", architecture)
|
37434
37148
|
if auto_delete is not None:
|
37435
37149
|
pulumi.set(__self__, "auto_delete", auto_delete)
|
37436
37150
|
if boot is not None:
|
@@ -37445,8 +37159,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37445
37159
|
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
37446
37160
|
if disk_type is not None:
|
37447
37161
|
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)
|
37450
37162
|
if interface is not None:
|
37451
37163
|
pulumi.set(__self__, "interface", interface)
|
37452
37164
|
if labels is not None:
|
@@ -37474,18 +37186,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37474
37186
|
if type is not None:
|
37475
37187
|
pulumi.set(__self__, "type", type)
|
37476
37188
|
|
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
|
-
|
37489
37189
|
@property
|
37490
37190
|
@pulumi.getter(name="autoDelete")
|
37491
37191
|
def auto_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -37585,18 +37285,6 @@ class RegionInstanceTemplateDiskArgs:
|
|
37585
37285
|
def disk_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
37586
37286
|
pulumi.set(self, "disk_type", value)
|
37587
37287
|
|
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
|
-
|
37600
37288
|
@property
|
37601
37289
|
@pulumi.getter
|
37602
37290
|
def interface(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -28,7 +28,7 @@ class GetHealthCheckResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getHealthCheck.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, check_interval_sec=None, creation_timestamp=None, description=None, grpc_health_checks=None,
|
31
|
+
def __init__(__self__, check_interval_sec=None, creation_timestamp=None, description=None, grpc_health_checks=None, healthy_threshold=None, http2_health_checks=None, http_health_checks=None, https_health_checks=None, id=None, log_configs=None, name=None, project=None, self_link=None, source_regions=None, ssl_health_checks=None, tcp_health_checks=None, timeout_sec=None, type=None, unhealthy_threshold=None):
|
32
32
|
if check_interval_sec and not isinstance(check_interval_sec, int):
|
33
33
|
raise TypeError("Expected argument 'check_interval_sec' to be a int")
|
34
34
|
pulumi.set(__self__, "check_interval_sec", check_interval_sec)
|
@@ -41,9 +41,6 @@ class GetHealthCheckResult:
|
|
41
41
|
if grpc_health_checks and not isinstance(grpc_health_checks, list):
|
42
42
|
raise TypeError("Expected argument 'grpc_health_checks' to be a list")
|
43
43
|
pulumi.set(__self__, "grpc_health_checks", grpc_health_checks)
|
44
|
-
if grpc_tls_health_checks and not isinstance(grpc_tls_health_checks, list):
|
45
|
-
raise TypeError("Expected argument 'grpc_tls_health_checks' to be a list")
|
46
|
-
pulumi.set(__self__, "grpc_tls_health_checks", grpc_tls_health_checks)
|
47
44
|
if healthy_threshold and not isinstance(healthy_threshold, int):
|
48
45
|
raise TypeError("Expected argument 'healthy_threshold' to be a int")
|
49
46
|
pulumi.set(__self__, "healthy_threshold", healthy_threshold)
|
@@ -110,11 +107,6 @@ class GetHealthCheckResult:
|
|
110
107
|
def grpc_health_checks(self) -> Sequence['outputs.GetHealthCheckGrpcHealthCheckResult']:
|
111
108
|
return pulumi.get(self, "grpc_health_checks")
|
112
109
|
|
113
|
-
@property
|
114
|
-
@pulumi.getter(name="grpcTlsHealthChecks")
|
115
|
-
def grpc_tls_health_checks(self) -> Sequence['outputs.GetHealthCheckGrpcTlsHealthCheckResult']:
|
116
|
-
return pulumi.get(self, "grpc_tls_health_checks")
|
117
|
-
|
118
110
|
@property
|
119
111
|
@pulumi.getter(name="healthyThreshold")
|
120
112
|
def healthy_threshold(self) -> builtins.int:
|
@@ -204,7 +196,6 @@ class AwaitableGetHealthCheckResult(GetHealthCheckResult):
|
|
204
196
|
creation_timestamp=self.creation_timestamp,
|
205
197
|
description=self.description,
|
206
198
|
grpc_health_checks=self.grpc_health_checks,
|
207
|
-
grpc_tls_health_checks=self.grpc_tls_health_checks,
|
208
199
|
healthy_threshold=self.healthy_threshold,
|
209
200
|
http2_health_checks=self.http2_health_checks,
|
210
201
|
http_health_checks=self.http_health_checks,
|
@@ -255,7 +246,6 @@ def get_health_check(name: Optional[builtins.str] = None,
|
|
255
246
|
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
256
247
|
description=pulumi.get(__ret__, 'description'),
|
257
248
|
grpc_health_checks=pulumi.get(__ret__, 'grpc_health_checks'),
|
258
|
-
grpc_tls_health_checks=pulumi.get(__ret__, 'grpc_tls_health_checks'),
|
259
249
|
healthy_threshold=pulumi.get(__ret__, 'healthy_threshold'),
|
260
250
|
http2_health_checks=pulumi.get(__ret__, 'http2_health_checks'),
|
261
251
|
http_health_checks=pulumi.get(__ret__, 'http_health_checks'),
|
@@ -303,7 +293,6 @@ def get_health_check_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
303
293
|
creation_timestamp=pulumi.get(__response__, 'creation_timestamp'),
|
304
294
|
description=pulumi.get(__response__, 'description'),
|
305
295
|
grpc_health_checks=pulumi.get(__response__, 'grpc_health_checks'),
|
306
|
-
grpc_tls_health_checks=pulumi.get(__response__, 'grpc_tls_health_checks'),
|
307
296
|
healthy_threshold=pulumi.get(__response__, 'healthy_threshold'),
|
308
297
|
http2_health_checks=pulumi.get(__response__, 'http2_health_checks'),
|
309
298
|
http_health_checks=pulumi.get(__response__, 'http_health_checks'),
|