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
@@ -25,6 +25,7 @@ class RegionHealthCheckArgs:
|
|
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['RegionHealthCheckGrpcHealthCheckArgs']] = None,
|
28
|
+
grpc_tls_health_check: Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']] = None,
|
28
29
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
29
30
|
http2_health_check: Optional[pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs']] = None,
|
30
31
|
http_health_check: Optional[pulumi.Input['RegionHealthCheckHttpHealthCheckArgs']] = None,
|
@@ -45,6 +46,8 @@ class RegionHealthCheckArgs:
|
|
45
46
|
you create the resource.
|
46
47
|
:param pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
47
48
|
Structure is documented below.
|
49
|
+
:param pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs'] grpc_tls_health_check: A nested object resource.
|
50
|
+
Structure is documented below.
|
48
51
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
49
52
|
consecutive successes. The default value is 2.
|
50
53
|
:param pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs'] http2_health_check: A nested object resource.
|
@@ -85,6 +88,8 @@ class RegionHealthCheckArgs:
|
|
85
88
|
pulumi.set(__self__, "description", description)
|
86
89
|
if grpc_health_check is not None:
|
87
90
|
pulumi.set(__self__, "grpc_health_check", grpc_health_check)
|
91
|
+
if grpc_tls_health_check is not None:
|
92
|
+
pulumi.set(__self__, "grpc_tls_health_check", grpc_tls_health_check)
|
88
93
|
if healthy_threshold is not None:
|
89
94
|
pulumi.set(__self__, "healthy_threshold", healthy_threshold)
|
90
95
|
if http2_health_check is not None:
|
@@ -149,6 +154,19 @@ class RegionHealthCheckArgs:
|
|
149
154
|
def grpc_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']]):
|
150
155
|
pulumi.set(self, "grpc_health_check", value)
|
151
156
|
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="grpcTlsHealthCheck")
|
159
|
+
def grpc_tls_health_check(self) -> Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']]:
|
160
|
+
"""
|
161
|
+
A nested object resource.
|
162
|
+
Structure is documented below.
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "grpc_tls_health_check")
|
165
|
+
|
166
|
+
@grpc_tls_health_check.setter
|
167
|
+
def grpc_tls_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']]):
|
168
|
+
pulumi.set(self, "grpc_tls_health_check", value)
|
169
|
+
|
152
170
|
@property
|
153
171
|
@pulumi.getter(name="healthyThreshold")
|
154
172
|
def healthy_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -322,6 +340,7 @@ class _RegionHealthCheckState:
|
|
322
340
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
323
341
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
324
342
|
grpc_health_check: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']] = None,
|
343
|
+
grpc_tls_health_check: Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']] = None,
|
325
344
|
health_check_id: Optional[pulumi.Input[builtins.int]] = None,
|
326
345
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
327
346
|
http2_health_check: Optional[pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs']] = None,
|
@@ -346,6 +365,8 @@ class _RegionHealthCheckState:
|
|
346
365
|
you create the resource.
|
347
366
|
:param pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
348
367
|
Structure is documented below.
|
368
|
+
:param pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs'] grpc_tls_health_check: A nested object resource.
|
369
|
+
Structure is documented below.
|
349
370
|
:param pulumi.Input[builtins.int] health_check_id: The unique identifier number for the resource. This identifier is defined by the server.
|
350
371
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
351
372
|
consecutive successes. The default value is 2.
|
@@ -391,6 +412,8 @@ class _RegionHealthCheckState:
|
|
391
412
|
pulumi.set(__self__, "description", description)
|
392
413
|
if grpc_health_check is not None:
|
393
414
|
pulumi.set(__self__, "grpc_health_check", grpc_health_check)
|
415
|
+
if grpc_tls_health_check is not None:
|
416
|
+
pulumi.set(__self__, "grpc_tls_health_check", grpc_tls_health_check)
|
394
417
|
if health_check_id is not None:
|
395
418
|
pulumi.set(__self__, "health_check_id", health_check_id)
|
396
419
|
if healthy_threshold is not None:
|
@@ -473,6 +496,19 @@ class _RegionHealthCheckState:
|
|
473
496
|
def grpc_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']]):
|
474
497
|
pulumi.set(self, "grpc_health_check", value)
|
475
498
|
|
499
|
+
@property
|
500
|
+
@pulumi.getter(name="grpcTlsHealthCheck")
|
501
|
+
def grpc_tls_health_check(self) -> Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']]:
|
502
|
+
"""
|
503
|
+
A nested object resource.
|
504
|
+
Structure is documented below.
|
505
|
+
"""
|
506
|
+
return pulumi.get(self, "grpc_tls_health_check")
|
507
|
+
|
508
|
+
@grpc_tls_health_check.setter
|
509
|
+
def grpc_tls_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']]):
|
510
|
+
pulumi.set(self, "grpc_tls_health_check", value)
|
511
|
+
|
476
512
|
@property
|
477
513
|
@pulumi.getter(name="healthCheckId")
|
478
514
|
def health_check_id(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -684,6 +720,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
684
720
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
685
721
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
686
722
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
723
|
+
grpc_tls_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
687
724
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
688
725
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
689
726
|
http_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttpHealthCheckArgs', 'RegionHealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -943,6 +980,39 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
943
980
|
"grpc_service_name": "testservice",
|
944
981
|
})
|
945
982
|
```
|
983
|
+
### Region Health Check Grpc With Tls
|
984
|
+
|
985
|
+
```python
|
986
|
+
import pulumi
|
987
|
+
import pulumi_gcp as gcp
|
988
|
+
|
989
|
+
grpc_with_tls_region_health_check = gcp.compute.RegionHealthCheck("grpc-with-tls-region-health-check",
|
990
|
+
name="grpc-with-tls-region-health-check",
|
991
|
+
timeout_sec=1,
|
992
|
+
check_interval_sec=1,
|
993
|
+
grpc_tls_health_check={
|
994
|
+
"port": 443,
|
995
|
+
})
|
996
|
+
```
|
997
|
+
### Region Health Check Grpc With Tls Full
|
998
|
+
|
999
|
+
```python
|
1000
|
+
import pulumi
|
1001
|
+
import pulumi_gcp as gcp
|
1002
|
+
|
1003
|
+
grpc_with_tls_region_health_check = gcp.compute.RegionHealthCheck("grpc-with-tls-region-health-check",
|
1004
|
+
name="grpc-with-tls-region-health-check",
|
1005
|
+
description="regional health check via GRPC with TLS",
|
1006
|
+
timeout_sec=1,
|
1007
|
+
check_interval_sec=1,
|
1008
|
+
healthy_threshold=4,
|
1009
|
+
unhealthy_threshold=5,
|
1010
|
+
grpc_tls_health_check={
|
1011
|
+
"port_specification": "USE_FIXED_PORT",
|
1012
|
+
"port": 443,
|
1013
|
+
"grpc_service_name": "testservice",
|
1014
|
+
})
|
1015
|
+
```
|
946
1016
|
|
947
1017
|
## Import
|
948
1018
|
|
@@ -982,6 +1052,8 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
982
1052
|
you create the resource.
|
983
1053
|
:param pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
984
1054
|
Structure is documented below.
|
1055
|
+
:param pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']] grpc_tls_health_check: A nested object resource.
|
1056
|
+
Structure is documented below.
|
985
1057
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
986
1058
|
consecutive successes. The default value is 2.
|
987
1059
|
:param pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']] http2_health_check: A nested object resource.
|
@@ -1268,6 +1340,39 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1268
1340
|
"grpc_service_name": "testservice",
|
1269
1341
|
})
|
1270
1342
|
```
|
1343
|
+
### Region Health Check Grpc With Tls
|
1344
|
+
|
1345
|
+
```python
|
1346
|
+
import pulumi
|
1347
|
+
import pulumi_gcp as gcp
|
1348
|
+
|
1349
|
+
grpc_with_tls_region_health_check = gcp.compute.RegionHealthCheck("grpc-with-tls-region-health-check",
|
1350
|
+
name="grpc-with-tls-region-health-check",
|
1351
|
+
timeout_sec=1,
|
1352
|
+
check_interval_sec=1,
|
1353
|
+
grpc_tls_health_check={
|
1354
|
+
"port": 443,
|
1355
|
+
})
|
1356
|
+
```
|
1357
|
+
### Region Health Check Grpc With Tls Full
|
1358
|
+
|
1359
|
+
```python
|
1360
|
+
import pulumi
|
1361
|
+
import pulumi_gcp as gcp
|
1362
|
+
|
1363
|
+
grpc_with_tls_region_health_check = gcp.compute.RegionHealthCheck("grpc-with-tls-region-health-check",
|
1364
|
+
name="grpc-with-tls-region-health-check",
|
1365
|
+
description="regional health check via GRPC with TLS",
|
1366
|
+
timeout_sec=1,
|
1367
|
+
check_interval_sec=1,
|
1368
|
+
healthy_threshold=4,
|
1369
|
+
unhealthy_threshold=5,
|
1370
|
+
grpc_tls_health_check={
|
1371
|
+
"port_specification": "USE_FIXED_PORT",
|
1372
|
+
"port": 443,
|
1373
|
+
"grpc_service_name": "testservice",
|
1374
|
+
})
|
1375
|
+
```
|
1271
1376
|
|
1272
1377
|
## Import
|
1273
1378
|
|
@@ -1317,6 +1422,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1317
1422
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
1318
1423
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1319
1424
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1425
|
+
grpc_tls_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
1320
1426
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
1321
1427
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
1322
1428
|
http_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttpHealthCheckArgs', 'RegionHealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -1341,6 +1447,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1341
1447
|
__props__.__dict__["check_interval_sec"] = check_interval_sec
|
1342
1448
|
__props__.__dict__["description"] = description
|
1343
1449
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1450
|
+
__props__.__dict__["grpc_tls_health_check"] = grpc_tls_health_check
|
1344
1451
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1345
1452
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
1346
1453
|
__props__.__dict__["http_health_check"] = http_health_check
|
@@ -1371,6 +1478,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1371
1478
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
1372
1479
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1373
1480
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1481
|
+
grpc_tls_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
1374
1482
|
health_check_id: Optional[pulumi.Input[builtins.int]] = None,
|
1375
1483
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
1376
1484
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
@@ -1400,6 +1508,8 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1400
1508
|
you create the resource.
|
1401
1509
|
:param pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
1402
1510
|
Structure is documented below.
|
1511
|
+
:param pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']] grpc_tls_health_check: A nested object resource.
|
1512
|
+
Structure is documented below.
|
1403
1513
|
:param pulumi.Input[builtins.int] health_check_id: The unique identifier number for the resource. This identifier is defined by the server.
|
1404
1514
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
1405
1515
|
consecutive successes. The default value is 2.
|
@@ -1445,6 +1555,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1445
1555
|
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
1446
1556
|
__props__.__dict__["description"] = description
|
1447
1557
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1558
|
+
__props__.__dict__["grpc_tls_health_check"] = grpc_tls_health_check
|
1448
1559
|
__props__.__dict__["health_check_id"] = health_check_id
|
1449
1560
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1450
1561
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
@@ -1497,6 +1608,15 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1497
1608
|
"""
|
1498
1609
|
return pulumi.get(self, "grpc_health_check")
|
1499
1610
|
|
1611
|
+
@property
|
1612
|
+
@pulumi.getter(name="grpcTlsHealthCheck")
|
1613
|
+
def grpc_tls_health_check(self) -> pulumi.Output[Optional['outputs.RegionHealthCheckGrpcTlsHealthCheck']]:
|
1614
|
+
"""
|
1615
|
+
A nested object resource.
|
1616
|
+
Structure is documented below.
|
1617
|
+
"""
|
1618
|
+
return pulumi.get(self, "grpc_tls_health_check")
|
1619
|
+
|
1500
1620
|
@property
|
1501
1621
|
@pulumi.getter(name="healthCheckId")
|
1502
1622
|
def health_check_id(self) -> pulumi.Output[builtins.int]:
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -8710,7 +8710,7 @@ if not MYPY:
|
|
8710
8710
|
"""
|
8711
8711
|
windows_node_config: NotRequired[pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgsDict']]
|
8712
8712
|
"""
|
8713
|
-
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
8713
|
+
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
8714
8714
|
"""
|
8715
8715
|
workload_metadata_config: NotRequired[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgsDict']]
|
8716
8716
|
"""
|
@@ -8872,7 +8872,7 @@ class ClusterNodeConfigArgs:
|
|
8872
8872
|
Kubernetes (eg. through `kubectl`), and it's recommended that you do not use
|
8873
8873
|
this field to manage taints. If you do, `lifecycle.ignore_changes` is
|
8874
8874
|
recommended. Structure is documented below.
|
8875
|
-
:param pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs'] windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
8875
|
+
:param pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs'] windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
8876
8876
|
:param pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: Metadata configuration to expose to workloads on the node pool.
|
8877
8877
|
Structure is documented below.
|
8878
8878
|
"""
|
@@ -9547,7 +9547,7 @@ class ClusterNodeConfigArgs:
|
|
9547
9547
|
@pulumi.getter(name="windowsNodeConfig")
|
9548
9548
|
def windows_node_config(self) -> Optional[pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs']]:
|
9549
9549
|
"""
|
9550
|
-
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
9550
|
+
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
9551
9551
|
"""
|
9552
9552
|
return pulumi.get(self, "windows_node_config")
|
9553
9553
|
|
@@ -12964,7 +12964,7 @@ if not MYPY:
|
|
12964
12964
|
"""
|
12965
12965
|
windows_node_config: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgsDict']]
|
12966
12966
|
"""
|
12967
|
-
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
12967
|
+
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
12968
12968
|
"""
|
12969
12969
|
workload_metadata_config: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgsDict']]
|
12970
12970
|
"""
|
@@ -13126,7 +13126,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
13126
13126
|
Kubernetes (eg. through `kubectl`), and it's recommended that you do not use
|
13127
13127
|
this field to manage taints. If you do, `lifecycle.ignore_changes` is
|
13128
13128
|
recommended. Structure is documented below.
|
13129
|
-
:param pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs'] windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
13129
|
+
:param pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs'] windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
13130
13130
|
:param pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: Metadata configuration to expose to workloads on the node pool.
|
13131
13131
|
Structure is documented below.
|
13132
13132
|
"""
|
@@ -13801,7 +13801,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
13801
13801
|
@pulumi.getter(name="windowsNodeConfig")
|
13802
13802
|
def windows_node_config(self) -> Optional[pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs']]:
|
13803
13803
|
"""
|
13804
|
-
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
13804
|
+
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
13805
13805
|
"""
|
13806
13806
|
return pulumi.get(self, "windows_node_config")
|
13807
13807
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -7210,7 +7210,7 @@ class ClusterNodeConfig(dict):
|
|
7210
7210
|
Kubernetes (eg. through `kubectl`), and it's recommended that you do not use
|
7211
7211
|
this field to manage taints. If you do, `lifecycle.ignore_changes` is
|
7212
7212
|
recommended. Structure is documented below.
|
7213
|
-
:param 'ClusterNodeConfigWindowsNodeConfigArgs' windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
7213
|
+
:param 'ClusterNodeConfigWindowsNodeConfigArgs' windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
7214
7214
|
:param 'ClusterNodeConfigWorkloadMetadataConfigArgs' workload_metadata_config: Metadata configuration to expose to workloads on the node pool.
|
7215
7215
|
Structure is documented below.
|
7216
7216
|
"""
|
@@ -7713,7 +7713,7 @@ class ClusterNodeConfig(dict):
|
|
7713
7713
|
@pulumi.getter(name="windowsNodeConfig")
|
7714
7714
|
def windows_node_config(self) -> Optional['outputs.ClusterNodeConfigWindowsNodeConfig']:
|
7715
7715
|
"""
|
7716
|
-
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
7716
|
+
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
7717
7717
|
"""
|
7718
7718
|
return pulumi.get(self, "windows_node_config")
|
7719
7719
|
|
@@ -10551,7 +10551,7 @@ class ClusterNodePoolNodeConfig(dict):
|
|
10551
10551
|
Kubernetes (eg. through `kubectl`), and it's recommended that you do not use
|
10552
10552
|
this field to manage taints. If you do, `lifecycle.ignore_changes` is
|
10553
10553
|
recommended. Structure is documented below.
|
10554
|
-
:param 'ClusterNodePoolNodeConfigWindowsNodeConfigArgs' windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
10554
|
+
:param 'ClusterNodePoolNodeConfigWindowsNodeConfigArgs' windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
10555
10555
|
:param 'ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs' workload_metadata_config: Metadata configuration to expose to workloads on the node pool.
|
10556
10556
|
Structure is documented below.
|
10557
10557
|
"""
|
@@ -11054,7 +11054,7 @@ class ClusterNodePoolNodeConfig(dict):
|
|
11054
11054
|
@pulumi.getter(name="windowsNodeConfig")
|
11055
11055
|
def windows_node_config(self) -> Optional['outputs.ClusterNodePoolNodeConfigWindowsNodeConfig']:
|
11056
11056
|
"""
|
11057
|
-
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019,
|
11057
|
+
Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2022]. For example:
|
11058
11058
|
"""
|
11059
11059
|
return pulumi.get(self, "windows_node_config")
|
11060
11060
|
|
@@ -28,7 +28,7 @@ class GetMetastoreServiceResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getMetastoreService.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, artifact_gcs_uri=None, create_time=None, database_type=None, deletion_protection=None, effective_labels=None, encryption_configs=None, endpoint_uri=None, hive_metastore_configs=None, id=None, labels=None, location=None, maintenance_windows=None, metadata_integrations=None, name=None, network=None, network_configs=None, port=None, project=None, pulumi_labels=None, release_channel=None, scaling_configs=None, scheduled_backups=None, service_id=None, state=None, state_message=None,
|
31
|
+
def __init__(__self__, artifact_gcs_uri=None, create_time=None, database_type=None, deletion_protection=None, effective_labels=None, encryption_configs=None, endpoint_uri=None, hive_metastore_configs=None, id=None, labels=None, location=None, maintenance_windows=None, metadata_integrations=None, name=None, network=None, network_configs=None, port=None, project=None, pulumi_labels=None, release_channel=None, scaling_configs=None, scheduled_backups=None, service_id=None, state=None, state_message=None, telemetry_configs=None, tier=None, uid=None, update_time=None):
|
32
32
|
if artifact_gcs_uri and not isinstance(artifact_gcs_uri, str):
|
33
33
|
raise TypeError("Expected argument 'artifact_gcs_uri' to be a str")
|
34
34
|
pulumi.set(__self__, "artifact_gcs_uri", artifact_gcs_uri)
|
@@ -104,9 +104,6 @@ class GetMetastoreServiceResult:
|
|
104
104
|
if state_message and not isinstance(state_message, str):
|
105
105
|
raise TypeError("Expected argument 'state_message' to be a str")
|
106
106
|
pulumi.set(__self__, "state_message", state_message)
|
107
|
-
if tags and not isinstance(tags, dict):
|
108
|
-
raise TypeError("Expected argument 'tags' to be a dict")
|
109
|
-
pulumi.set(__self__, "tags", tags)
|
110
107
|
if telemetry_configs and not isinstance(telemetry_configs, list):
|
111
108
|
raise TypeError("Expected argument 'telemetry_configs' to be a list")
|
112
109
|
pulumi.set(__self__, "telemetry_configs", telemetry_configs)
|
@@ -248,11 +245,6 @@ class GetMetastoreServiceResult:
|
|
248
245
|
def state_message(self) -> builtins.str:
|
249
246
|
return pulumi.get(self, "state_message")
|
250
247
|
|
251
|
-
@property
|
252
|
-
@pulumi.getter
|
253
|
-
def tags(self) -> Mapping[str, builtins.str]:
|
254
|
-
return pulumi.get(self, "tags")
|
255
|
-
|
256
248
|
@property
|
257
249
|
@pulumi.getter(name="telemetryConfigs")
|
258
250
|
def telemetry_configs(self) -> Sequence['outputs.GetMetastoreServiceTelemetryConfigResult']:
|
@@ -305,7 +297,6 @@ class AwaitableGetMetastoreServiceResult(GetMetastoreServiceResult):
|
|
305
297
|
service_id=self.service_id,
|
306
298
|
state=self.state,
|
307
299
|
state_message=self.state_message,
|
308
|
-
tags=self.tags,
|
309
300
|
telemetry_configs=self.telemetry_configs,
|
310
301
|
tier=self.tier,
|
311
302
|
uid=self.uid,
|
@@ -370,7 +361,6 @@ def get_metastore_service(location: Optional[builtins.str] = None,
|
|
370
361
|
service_id=pulumi.get(__ret__, 'service_id'),
|
371
362
|
state=pulumi.get(__ret__, 'state'),
|
372
363
|
state_message=pulumi.get(__ret__, 'state_message'),
|
373
|
-
tags=pulumi.get(__ret__, 'tags'),
|
374
364
|
telemetry_configs=pulumi.get(__ret__, 'telemetry_configs'),
|
375
365
|
tier=pulumi.get(__ret__, 'tier'),
|
376
366
|
uid=pulumi.get(__ret__, 'uid'),
|
@@ -432,7 +422,6 @@ def get_metastore_service_output(location: Optional[pulumi.Input[builtins.str]]
|
|
432
422
|
service_id=pulumi.get(__response__, 'service_id'),
|
433
423
|
state=pulumi.get(__response__, 'state'),
|
434
424
|
state_message=pulumi.get(__response__, 'state_message'),
|
435
|
-
tags=pulumi.get(__response__, 'tags'),
|
436
425
|
telemetry_configs=pulumi.get(__response__, 'telemetry_configs'),
|
437
426
|
tier=pulumi.get(__response__, 'tier'),
|
438
427
|
uid=pulumi.get(__response__, 'uid'),
|
@@ -38,7 +38,6 @@ class MetastoreServiceArgs:
|
|
38
38
|
scaling_config: Optional[pulumi.Input['MetastoreServiceScalingConfigArgs']] = None,
|
39
39
|
scheduled_backup: Optional[pulumi.Input['MetastoreServiceScheduledBackupArgs']] = None,
|
40
40
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
41
|
-
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
42
41
|
telemetry_config: Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']] = None,
|
43
42
|
tier: Optional[pulumi.Input[builtins.str]] = None):
|
44
43
|
"""
|
@@ -83,9 +82,6 @@ class MetastoreServiceArgs:
|
|
83
82
|
|
84
83
|
|
85
84
|
- - -
|
86
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A map of resource manager tags.
|
87
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
88
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
89
85
|
:param pulumi.Input['MetastoreServiceTelemetryConfigArgs'] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
90
86
|
Structure is documented below.
|
91
87
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -123,8 +119,6 @@ class MetastoreServiceArgs:
|
|
123
119
|
pulumi.set(__self__, "scheduled_backup", scheduled_backup)
|
124
120
|
if service_id is not None:
|
125
121
|
pulumi.set(__self__, "service_id", service_id)
|
126
|
-
if tags is not None:
|
127
|
-
pulumi.set(__self__, "tags", tags)
|
128
122
|
if telemetry_config is not None:
|
129
123
|
pulumi.set(__self__, "telemetry_config", telemetry_config)
|
130
124
|
if tier is not None:
|
@@ -346,20 +340,6 @@ class MetastoreServiceArgs:
|
|
346
340
|
def service_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
347
341
|
pulumi.set(self, "service_id", value)
|
348
342
|
|
349
|
-
@property
|
350
|
-
@pulumi.getter
|
351
|
-
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
352
|
-
"""
|
353
|
-
A map of resource manager tags.
|
354
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
355
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
356
|
-
"""
|
357
|
-
return pulumi.get(self, "tags")
|
358
|
-
|
359
|
-
@tags.setter
|
360
|
-
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
361
|
-
pulumi.set(self, "tags", value)
|
362
|
-
|
363
343
|
@property
|
364
344
|
@pulumi.getter(name="telemetryConfig")
|
365
345
|
def telemetry_config(self) -> Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']]:
|
@@ -414,7 +394,6 @@ class _MetastoreServiceState:
|
|
414
394
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
415
395
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
416
396
|
state_message: Optional[pulumi.Input[builtins.str]] = None,
|
417
|
-
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
418
397
|
telemetry_config: Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']] = None,
|
419
398
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
420
399
|
uid: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -470,9 +449,6 @@ class _MetastoreServiceState:
|
|
470
449
|
- - -
|
471
450
|
:param pulumi.Input[builtins.str] state: The current state of the metastore service.
|
472
451
|
:param pulumi.Input[builtins.str] state_message: Additional information about the current state of the metastore service, if available.
|
473
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A map of resource manager tags.
|
474
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
475
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
476
452
|
:param pulumi.Input['MetastoreServiceTelemetryConfigArgs'] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
477
453
|
Structure is documented below.
|
478
454
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -528,8 +504,6 @@ class _MetastoreServiceState:
|
|
528
504
|
pulumi.set(__self__, "state", state)
|
529
505
|
if state_message is not None:
|
530
506
|
pulumi.set(__self__, "state_message", state_message)
|
531
|
-
if tags is not None:
|
532
|
-
pulumi.set(__self__, "tags", tags)
|
533
507
|
if telemetry_config is not None:
|
534
508
|
pulumi.set(__self__, "telemetry_config", telemetry_config)
|
535
509
|
if tier is not None:
|
@@ -852,20 +826,6 @@ class _MetastoreServiceState:
|
|
852
826
|
def state_message(self, value: Optional[pulumi.Input[builtins.str]]):
|
853
827
|
pulumi.set(self, "state_message", value)
|
854
828
|
|
855
|
-
@property
|
856
|
-
@pulumi.getter
|
857
|
-
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
858
|
-
"""
|
859
|
-
A map of resource manager tags.
|
860
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
861
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
862
|
-
"""
|
863
|
-
return pulumi.get(self, "tags")
|
864
|
-
|
865
|
-
@tags.setter
|
866
|
-
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
867
|
-
pulumi.set(self, "tags", value)
|
868
|
-
|
869
829
|
@property
|
870
830
|
@pulumi.getter(name="telemetryConfig")
|
871
831
|
def telemetry_config(self) -> Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']]:
|
@@ -939,7 +899,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
939
899
|
scaling_config: Optional[pulumi.Input[Union['MetastoreServiceScalingConfigArgs', 'MetastoreServiceScalingConfigArgsDict']]] = None,
|
940
900
|
scheduled_backup: Optional[pulumi.Input[Union['MetastoreServiceScheduledBackupArgs', 'MetastoreServiceScheduledBackupArgsDict']]] = None,
|
941
901
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
942
|
-
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
943
902
|
telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
|
944
903
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
945
904
|
__props__=None):
|
@@ -1296,9 +1255,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
1296
1255
|
|
1297
1256
|
|
1298
1257
|
- - -
|
1299
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A map of resource manager tags.
|
1300
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
1301
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
1302
1258
|
:param pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
1303
1259
|
Structure is documented below.
|
1304
1260
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -1652,7 +1608,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
1652
1608
|
scaling_config: Optional[pulumi.Input[Union['MetastoreServiceScalingConfigArgs', 'MetastoreServiceScalingConfigArgsDict']]] = None,
|
1653
1609
|
scheduled_backup: Optional[pulumi.Input[Union['MetastoreServiceScheduledBackupArgs', 'MetastoreServiceScheduledBackupArgsDict']]] = None,
|
1654
1610
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
1655
|
-
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1656
1611
|
telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
|
1657
1612
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
1658
1613
|
__props__=None):
|
@@ -1680,7 +1635,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
1680
1635
|
__props__.__dict__["scaling_config"] = scaling_config
|
1681
1636
|
__props__.__dict__["scheduled_backup"] = scheduled_backup
|
1682
1637
|
__props__.__dict__["service_id"] = service_id
|
1683
|
-
__props__.__dict__["tags"] = tags
|
1684
1638
|
__props__.__dict__["telemetry_config"] = telemetry_config
|
1685
1639
|
__props__.__dict__["tier"] = tier
|
1686
1640
|
__props__.__dict__["artifact_gcs_uri"] = None
|
@@ -1729,7 +1683,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
1729
1683
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
1730
1684
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
1731
1685
|
state_message: Optional[pulumi.Input[builtins.str]] = None,
|
1732
|
-
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1733
1686
|
telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
|
1734
1687
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
1735
1688
|
uid: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1790,9 +1743,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
1790
1743
|
- - -
|
1791
1744
|
:param pulumi.Input[builtins.str] state: The current state of the metastore service.
|
1792
1745
|
:param pulumi.Input[builtins.str] state_message: Additional information about the current state of the metastore service, if available.
|
1793
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A map of resource manager tags.
|
1794
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
1795
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
1796
1746
|
:param pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
1797
1747
|
Structure is documented below.
|
1798
1748
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -1828,7 +1778,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
1828
1778
|
__props__.__dict__["service_id"] = service_id
|
1829
1779
|
__props__.__dict__["state"] = state
|
1830
1780
|
__props__.__dict__["state_message"] = state_message
|
1831
|
-
__props__.__dict__["tags"] = tags
|
1832
1781
|
__props__.__dict__["telemetry_config"] = telemetry_config
|
1833
1782
|
__props__.__dict__["tier"] = tier
|
1834
1783
|
__props__.__dict__["uid"] = uid
|
@@ -2052,16 +2001,6 @@ class MetastoreService(pulumi.CustomResource):
|
|
2052
2001
|
"""
|
2053
2002
|
return pulumi.get(self, "state_message")
|
2054
2003
|
|
2055
|
-
@property
|
2056
|
-
@pulumi.getter
|
2057
|
-
def tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
2058
|
-
"""
|
2059
|
-
A map of resource manager tags.
|
2060
|
-
Resource manager tag keys and values have the same definition as resource manager tags.
|
2061
|
-
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
2062
|
-
"""
|
2063
|
-
return pulumi.get(self, "tags")
|
2064
|
-
|
2065
2004
|
@property
|
2066
2005
|
@pulumi.getter(name="telemetryConfig")
|
2067
2006
|
def telemetry_config(self) -> pulumi.Output['outputs.MetastoreServiceTelemetryConfig']:
|