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
@@ -25,7 +25,6 @@ class HealthCheckArgs:
|
|
25
25
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
26
26
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
27
27
|
grpc_health_check: Optional[pulumi.Input['HealthCheckGrpcHealthCheckArgs']] = None,
|
28
|
-
grpc_tls_health_check: Optional[pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs']] = None,
|
29
28
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
30
29
|
http2_health_check: Optional[pulumi.Input['HealthCheckHttp2HealthCheckArgs']] = None,
|
31
30
|
http_health_check: Optional[pulumi.Input['HealthCheckHttpHealthCheckArgs']] = None,
|
@@ -46,8 +45,6 @@ class HealthCheckArgs:
|
|
46
45
|
you create the resource.
|
47
46
|
:param pulumi.Input['HealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
48
47
|
Structure is documented below.
|
49
|
-
:param pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs'] grpc_tls_health_check: A nested object resource.
|
50
|
-
Structure is documented below.
|
51
48
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
52
49
|
consecutive successes. The default value is 2.
|
53
50
|
:param pulumi.Input['HealthCheckHttp2HealthCheckArgs'] http2_health_check: A nested object resource.
|
@@ -98,8 +95,6 @@ class HealthCheckArgs:
|
|
98
95
|
pulumi.set(__self__, "description", description)
|
99
96
|
if grpc_health_check is not None:
|
100
97
|
pulumi.set(__self__, "grpc_health_check", grpc_health_check)
|
101
|
-
if grpc_tls_health_check is not None:
|
102
|
-
pulumi.set(__self__, "grpc_tls_health_check", grpc_tls_health_check)
|
103
98
|
if healthy_threshold is not None:
|
104
99
|
pulumi.set(__self__, "healthy_threshold", healthy_threshold)
|
105
100
|
if http2_health_check is not None:
|
@@ -164,19 +159,6 @@ class HealthCheckArgs:
|
|
164
159
|
def grpc_health_check(self, value: Optional[pulumi.Input['HealthCheckGrpcHealthCheckArgs']]):
|
165
160
|
pulumi.set(self, "grpc_health_check", value)
|
166
161
|
|
167
|
-
@property
|
168
|
-
@pulumi.getter(name="grpcTlsHealthCheck")
|
169
|
-
def grpc_tls_health_check(self) -> Optional[pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs']]:
|
170
|
-
"""
|
171
|
-
A nested object resource.
|
172
|
-
Structure is documented below.
|
173
|
-
"""
|
174
|
-
return pulumi.get(self, "grpc_tls_health_check")
|
175
|
-
|
176
|
-
@grpc_tls_health_check.setter
|
177
|
-
def grpc_tls_health_check(self, value: Optional[pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs']]):
|
178
|
-
pulumi.set(self, "grpc_tls_health_check", value)
|
179
|
-
|
180
162
|
@property
|
181
163
|
@pulumi.getter(name="healthyThreshold")
|
182
164
|
def healthy_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -360,7 +342,6 @@ class _HealthCheckState:
|
|
360
342
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
361
343
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
362
344
|
grpc_health_check: Optional[pulumi.Input['HealthCheckGrpcHealthCheckArgs']] = None,
|
363
|
-
grpc_tls_health_check: Optional[pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs']] = None,
|
364
345
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
365
346
|
http2_health_check: Optional[pulumi.Input['HealthCheckHttp2HealthCheckArgs']] = None,
|
366
347
|
http_health_check: Optional[pulumi.Input['HealthCheckHttpHealthCheckArgs']] = None,
|
@@ -384,8 +365,6 @@ class _HealthCheckState:
|
|
384
365
|
you create the resource.
|
385
366
|
:param pulumi.Input['HealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
386
367
|
Structure is documented below.
|
387
|
-
:param pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs'] grpc_tls_health_check: A nested object resource.
|
388
|
-
Structure is documented below.
|
389
368
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
390
369
|
consecutive successes. The default value is 2.
|
391
370
|
:param pulumi.Input['HealthCheckHttp2HealthCheckArgs'] http2_health_check: A nested object resource.
|
@@ -440,8 +419,6 @@ class _HealthCheckState:
|
|
440
419
|
pulumi.set(__self__, "description", description)
|
441
420
|
if grpc_health_check is not None:
|
442
421
|
pulumi.set(__self__, "grpc_health_check", grpc_health_check)
|
443
|
-
if grpc_tls_health_check is not None:
|
444
|
-
pulumi.set(__self__, "grpc_tls_health_check", grpc_tls_health_check)
|
445
422
|
if healthy_threshold is not None:
|
446
423
|
pulumi.set(__self__, "healthy_threshold", healthy_threshold)
|
447
424
|
if http2_health_check is not None:
|
@@ -522,19 +499,6 @@ class _HealthCheckState:
|
|
522
499
|
def grpc_health_check(self, value: Optional[pulumi.Input['HealthCheckGrpcHealthCheckArgs']]):
|
523
500
|
pulumi.set(self, "grpc_health_check", value)
|
524
501
|
|
525
|
-
@property
|
526
|
-
@pulumi.getter(name="grpcTlsHealthCheck")
|
527
|
-
def grpc_tls_health_check(self) -> Optional[pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs']]:
|
528
|
-
"""
|
529
|
-
A nested object resource.
|
530
|
-
Structure is documented below.
|
531
|
-
"""
|
532
|
-
return pulumi.get(self, "grpc_tls_health_check")
|
533
|
-
|
534
|
-
@grpc_tls_health_check.setter
|
535
|
-
def grpc_tls_health_check(self, value: Optional[pulumi.Input['HealthCheckGrpcTlsHealthCheckArgs']]):
|
536
|
-
pulumi.set(self, "grpc_tls_health_check", value)
|
537
|
-
|
538
502
|
@property
|
539
503
|
@pulumi.getter(name="healthyThreshold")
|
540
504
|
def healthy_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -744,7 +708,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
744
708
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
745
709
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
746
710
|
grpc_health_check: Optional[pulumi.Input[Union['HealthCheckGrpcHealthCheckArgs', 'HealthCheckGrpcHealthCheckArgsDict']]] = None,
|
747
|
-
grpc_tls_health_check: Optional[pulumi.Input[Union['HealthCheckGrpcTlsHealthCheckArgs', 'HealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
748
711
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
749
712
|
http2_health_check: Optional[pulumi.Input[Union['HealthCheckHttp2HealthCheckArgs', 'HealthCheckHttp2HealthCheckArgsDict']]] = None,
|
750
713
|
http_health_check: Optional[pulumi.Input[Union['HealthCheckHttpHealthCheckArgs', 'HealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -991,39 +954,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
991
954
|
"grpc_service_name": "testservice",
|
992
955
|
})
|
993
956
|
```
|
994
|
-
### Health Check Grpc With Tls
|
995
|
-
|
996
|
-
```python
|
997
|
-
import pulumi
|
998
|
-
import pulumi_gcp as gcp
|
999
|
-
|
1000
|
-
grpc_with_tls_health_check = gcp.compute.HealthCheck("grpc-with-tls-health-check",
|
1001
|
-
name="grpc-with-tls-health-check",
|
1002
|
-
timeout_sec=1,
|
1003
|
-
check_interval_sec=1,
|
1004
|
-
grpc_tls_health_check={
|
1005
|
-
"port": 443,
|
1006
|
-
})
|
1007
|
-
```
|
1008
|
-
### Health Check Grpc With Tls Full
|
1009
|
-
|
1010
|
-
```python
|
1011
|
-
import pulumi
|
1012
|
-
import pulumi_gcp as gcp
|
1013
|
-
|
1014
|
-
grpc_with_tls_health_check = gcp.compute.HealthCheck("grpc-with-tls-health-check",
|
1015
|
-
name="grpc-with-tls-health-check",
|
1016
|
-
description="Health check via grpc with TLS",
|
1017
|
-
timeout_sec=1,
|
1018
|
-
check_interval_sec=1,
|
1019
|
-
healthy_threshold=4,
|
1020
|
-
unhealthy_threshold=5,
|
1021
|
-
grpc_tls_health_check={
|
1022
|
-
"port_specification": "USE_FIXED_PORT",
|
1023
|
-
"port": 443,
|
1024
|
-
"grpc_service_name": "testservice",
|
1025
|
-
})
|
1026
|
-
```
|
1027
957
|
### Health Check With Logging
|
1028
958
|
|
1029
959
|
```python
|
@@ -1131,8 +1061,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1131
1061
|
you create the resource.
|
1132
1062
|
:param pulumi.Input[Union['HealthCheckGrpcHealthCheckArgs', 'HealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
1133
1063
|
Structure is documented below.
|
1134
|
-
:param pulumi.Input[Union['HealthCheckGrpcTlsHealthCheckArgs', 'HealthCheckGrpcTlsHealthCheckArgsDict']] grpc_tls_health_check: A nested object resource.
|
1135
|
-
Structure is documented below.
|
1136
1064
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
1137
1065
|
consecutive successes. The default value is 2.
|
1138
1066
|
:param pulumi.Input[Union['HealthCheckHttp2HealthCheckArgs', 'HealthCheckHttp2HealthCheckArgsDict']] http2_health_check: A nested object resource.
|
@@ -1416,39 +1344,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1416
1344
|
"grpc_service_name": "testservice",
|
1417
1345
|
})
|
1418
1346
|
```
|
1419
|
-
### Health Check Grpc With Tls
|
1420
|
-
|
1421
|
-
```python
|
1422
|
-
import pulumi
|
1423
|
-
import pulumi_gcp as gcp
|
1424
|
-
|
1425
|
-
grpc_with_tls_health_check = gcp.compute.HealthCheck("grpc-with-tls-health-check",
|
1426
|
-
name="grpc-with-tls-health-check",
|
1427
|
-
timeout_sec=1,
|
1428
|
-
check_interval_sec=1,
|
1429
|
-
grpc_tls_health_check={
|
1430
|
-
"port": 443,
|
1431
|
-
})
|
1432
|
-
```
|
1433
|
-
### Health Check Grpc With Tls Full
|
1434
|
-
|
1435
|
-
```python
|
1436
|
-
import pulumi
|
1437
|
-
import pulumi_gcp as gcp
|
1438
|
-
|
1439
|
-
grpc_with_tls_health_check = gcp.compute.HealthCheck("grpc-with-tls-health-check",
|
1440
|
-
name="grpc-with-tls-health-check",
|
1441
|
-
description="Health check via grpc with TLS",
|
1442
|
-
timeout_sec=1,
|
1443
|
-
check_interval_sec=1,
|
1444
|
-
healthy_threshold=4,
|
1445
|
-
unhealthy_threshold=5,
|
1446
|
-
grpc_tls_health_check={
|
1447
|
-
"port_specification": "USE_FIXED_PORT",
|
1448
|
-
"port": 443,
|
1449
|
-
"grpc_service_name": "testservice",
|
1450
|
-
})
|
1451
|
-
```
|
1452
1347
|
### Health Check With Logging
|
1453
1348
|
|
1454
1349
|
```python
|
@@ -1566,7 +1461,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1566
1461
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
1567
1462
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1568
1463
|
grpc_health_check: Optional[pulumi.Input[Union['HealthCheckGrpcHealthCheckArgs', 'HealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1569
|
-
grpc_tls_health_check: Optional[pulumi.Input[Union['HealthCheckGrpcTlsHealthCheckArgs', 'HealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
1570
1464
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
1571
1465
|
http2_health_check: Optional[pulumi.Input[Union['HealthCheckHttp2HealthCheckArgs', 'HealthCheckHttp2HealthCheckArgsDict']]] = None,
|
1572
1466
|
http_health_check: Optional[pulumi.Input[Union['HealthCheckHttpHealthCheckArgs', 'HealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -1591,7 +1485,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1591
1485
|
__props__.__dict__["check_interval_sec"] = check_interval_sec
|
1592
1486
|
__props__.__dict__["description"] = description
|
1593
1487
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1594
|
-
__props__.__dict__["grpc_tls_health_check"] = grpc_tls_health_check
|
1595
1488
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1596
1489
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
1597
1490
|
__props__.__dict__["http_health_check"] = http_health_check
|
@@ -1621,7 +1514,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1621
1514
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
1622
1515
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1623
1516
|
grpc_health_check: Optional[pulumi.Input[Union['HealthCheckGrpcHealthCheckArgs', 'HealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1624
|
-
grpc_tls_health_check: Optional[pulumi.Input[Union['HealthCheckGrpcTlsHealthCheckArgs', 'HealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
1625
1517
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
1626
1518
|
http2_health_check: Optional[pulumi.Input[Union['HealthCheckHttp2HealthCheckArgs', 'HealthCheckHttp2HealthCheckArgsDict']]] = None,
|
1627
1519
|
http_health_check: Optional[pulumi.Input[Union['HealthCheckHttpHealthCheckArgs', 'HealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -1650,8 +1542,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1650
1542
|
you create the resource.
|
1651
1543
|
:param pulumi.Input[Union['HealthCheckGrpcHealthCheckArgs', 'HealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
1652
1544
|
Structure is documented below.
|
1653
|
-
:param pulumi.Input[Union['HealthCheckGrpcTlsHealthCheckArgs', 'HealthCheckGrpcTlsHealthCheckArgsDict']] grpc_tls_health_check: A nested object resource.
|
1654
|
-
Structure is documented below.
|
1655
1545
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
1656
1546
|
consecutive successes. The default value is 2.
|
1657
1547
|
:param pulumi.Input[Union['HealthCheckHttp2HealthCheckArgs', 'HealthCheckHttp2HealthCheckArgsDict']] http2_health_check: A nested object resource.
|
@@ -1706,7 +1596,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1706
1596
|
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
1707
1597
|
__props__.__dict__["description"] = description
|
1708
1598
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1709
|
-
__props__.__dict__["grpc_tls_health_check"] = grpc_tls_health_check
|
1710
1599
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1711
1600
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
1712
1601
|
__props__.__dict__["http_health_check"] = http_health_check
|
@@ -1758,15 +1647,6 @@ class HealthCheck(pulumi.CustomResource):
|
|
1758
1647
|
"""
|
1759
1648
|
return pulumi.get(self, "grpc_health_check")
|
1760
1649
|
|
1761
|
-
@property
|
1762
|
-
@pulumi.getter(name="grpcTlsHealthCheck")
|
1763
|
-
def grpc_tls_health_check(self) -> pulumi.Output[Optional['outputs.HealthCheckGrpcTlsHealthCheck']]:
|
1764
|
-
"""
|
1765
|
-
A nested object resource.
|
1766
|
-
Structure is documented below.
|
1767
|
-
"""
|
1768
|
-
return pulumi.get(self, "grpc_tls_health_check")
|
1769
|
-
|
1770
1650
|
@property
|
1771
1651
|
@pulumi.getter(name="healthyThreshold")
|
1772
1652
|
def healthy_threshold(self) -> pulumi.Output[Optional[builtins.int]]:
|