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 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,
|
29
28
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
30
29
|
http2_health_check: Optional[pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs']] = None,
|
31
30
|
http_health_check: Optional[pulumi.Input['RegionHealthCheckHttpHealthCheckArgs']] = None,
|
@@ -46,8 +45,6 @@ class RegionHealthCheckArgs:
|
|
46
45
|
you create the resource.
|
47
46
|
:param pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
48
47
|
Structure is documented below.
|
49
|
-
:param pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs'] 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['RegionHealthCheckHttp2HealthCheckArgs'] http2_health_check: A nested object resource.
|
@@ -88,8 +85,6 @@ class RegionHealthCheckArgs:
|
|
88
85
|
pulumi.set(__self__, "description", description)
|
89
86
|
if grpc_health_check is not None:
|
90
87
|
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)
|
93
88
|
if healthy_threshold is not None:
|
94
89
|
pulumi.set(__self__, "healthy_threshold", healthy_threshold)
|
95
90
|
if http2_health_check is not None:
|
@@ -154,19 +149,6 @@ class RegionHealthCheckArgs:
|
|
154
149
|
def grpc_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']]):
|
155
150
|
pulumi.set(self, "grpc_health_check", value)
|
156
151
|
|
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
|
-
|
170
152
|
@property
|
171
153
|
@pulumi.getter(name="healthyThreshold")
|
172
154
|
def healthy_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -340,7 +322,6 @@ class _RegionHealthCheckState:
|
|
340
322
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
341
323
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
342
324
|
grpc_health_check: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']] = None,
|
343
|
-
grpc_tls_health_check: Optional[pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs']] = None,
|
344
325
|
health_check_id: Optional[pulumi.Input[builtins.int]] = None,
|
345
326
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
346
327
|
http2_health_check: Optional[pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs']] = None,
|
@@ -365,8 +346,6 @@ class _RegionHealthCheckState:
|
|
365
346
|
you create the resource.
|
366
347
|
:param pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
367
348
|
Structure is documented below.
|
368
|
-
:param pulumi.Input['RegionHealthCheckGrpcTlsHealthCheckArgs'] grpc_tls_health_check: A nested object resource.
|
369
|
-
Structure is documented below.
|
370
349
|
:param pulumi.Input[builtins.int] health_check_id: The unique identifier number for the resource. This identifier is defined by the server.
|
371
350
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
372
351
|
consecutive successes. The default value is 2.
|
@@ -412,8 +391,6 @@ class _RegionHealthCheckState:
|
|
412
391
|
pulumi.set(__self__, "description", description)
|
413
392
|
if grpc_health_check is not None:
|
414
393
|
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)
|
417
394
|
if health_check_id is not None:
|
418
395
|
pulumi.set(__self__, "health_check_id", health_check_id)
|
419
396
|
if healthy_threshold is not None:
|
@@ -496,19 +473,6 @@ class _RegionHealthCheckState:
|
|
496
473
|
def grpc_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']]):
|
497
474
|
pulumi.set(self, "grpc_health_check", value)
|
498
475
|
|
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
|
-
|
512
476
|
@property
|
513
477
|
@pulumi.getter(name="healthCheckId")
|
514
478
|
def health_check_id(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -720,7 +684,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
720
684
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
721
685
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
722
686
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
723
|
-
grpc_tls_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
724
687
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
725
688
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
726
689
|
http_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttpHealthCheckArgs', 'RegionHealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -980,39 +943,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
980
943
|
"grpc_service_name": "testservice",
|
981
944
|
})
|
982
945
|
```
|
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
|
-
```
|
1016
946
|
|
1017
947
|
## Import
|
1018
948
|
|
@@ -1052,8 +982,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1052
982
|
you create the resource.
|
1053
983
|
:param pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
1054
984
|
Structure is documented below.
|
1055
|
-
:param pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']] grpc_tls_health_check: A nested object resource.
|
1056
|
-
Structure is documented below.
|
1057
985
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
1058
986
|
consecutive successes. The default value is 2.
|
1059
987
|
:param pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']] http2_health_check: A nested object resource.
|
@@ -1340,39 +1268,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1340
1268
|
"grpc_service_name": "testservice",
|
1341
1269
|
})
|
1342
1270
|
```
|
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
|
-
```
|
1376
1271
|
|
1377
1272
|
## Import
|
1378
1273
|
|
@@ -1422,7 +1317,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1422
1317
|
check_interval_sec: Optional[pulumi.Input[builtins.int]] = None,
|
1423
1318
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1424
1319
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1425
|
-
grpc_tls_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
1426
1320
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
1427
1321
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
1428
1322
|
http_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttpHealthCheckArgs', 'RegionHealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -1447,7 +1341,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1447
1341
|
__props__.__dict__["check_interval_sec"] = check_interval_sec
|
1448
1342
|
__props__.__dict__["description"] = description
|
1449
1343
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1450
|
-
__props__.__dict__["grpc_tls_health_check"] = grpc_tls_health_check
|
1451
1344
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1452
1345
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
1453
1346
|
__props__.__dict__["http_health_check"] = http_health_check
|
@@ -1478,7 +1371,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1478
1371
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
1479
1372
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1480
1373
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1481
|
-
grpc_tls_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']]] = None,
|
1482
1374
|
health_check_id: Optional[pulumi.Input[builtins.int]] = None,
|
1483
1375
|
healthy_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
1484
1376
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
@@ -1508,8 +1400,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1508
1400
|
you create the resource.
|
1509
1401
|
:param pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
1510
1402
|
Structure is documented below.
|
1511
|
-
:param pulumi.Input[Union['RegionHealthCheckGrpcTlsHealthCheckArgs', 'RegionHealthCheckGrpcTlsHealthCheckArgsDict']] grpc_tls_health_check: A nested object resource.
|
1512
|
-
Structure is documented below.
|
1513
1403
|
:param pulumi.Input[builtins.int] health_check_id: The unique identifier number for the resource. This identifier is defined by the server.
|
1514
1404
|
:param pulumi.Input[builtins.int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
1515
1405
|
consecutive successes. The default value is 2.
|
@@ -1555,7 +1445,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1555
1445
|
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
1556
1446
|
__props__.__dict__["description"] = description
|
1557
1447
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1558
|
-
__props__.__dict__["grpc_tls_health_check"] = grpc_tls_health_check
|
1559
1448
|
__props__.__dict__["health_check_id"] = health_check_id
|
1560
1449
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1561
1450
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
@@ -1608,15 +1497,6 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1608
1497
|
"""
|
1609
1498
|
return pulumi.get(self, "grpc_health_check")
|
1610
1499
|
|
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
|
-
|
1620
1500
|
@property
|
1621
1501
|
@pulumi.getter(name="healthCheckId")
|
1622
1502
|
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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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_LTSC2019]. 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, telemetry_configs=None, tier=None, uid=None, update_time=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, tags=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,6 +104,9 @@ 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)
|
107
110
|
if telemetry_configs and not isinstance(telemetry_configs, list):
|
108
111
|
raise TypeError("Expected argument 'telemetry_configs' to be a list")
|
109
112
|
pulumi.set(__self__, "telemetry_configs", telemetry_configs)
|
@@ -245,6 +248,11 @@ class GetMetastoreServiceResult:
|
|
245
248
|
def state_message(self) -> builtins.str:
|
246
249
|
return pulumi.get(self, "state_message")
|
247
250
|
|
251
|
+
@property
|
252
|
+
@pulumi.getter
|
253
|
+
def tags(self) -> Mapping[str, builtins.str]:
|
254
|
+
return pulumi.get(self, "tags")
|
255
|
+
|
248
256
|
@property
|
249
257
|
@pulumi.getter(name="telemetryConfigs")
|
250
258
|
def telemetry_configs(self) -> Sequence['outputs.GetMetastoreServiceTelemetryConfigResult']:
|
@@ -297,6 +305,7 @@ class AwaitableGetMetastoreServiceResult(GetMetastoreServiceResult):
|
|
297
305
|
service_id=self.service_id,
|
298
306
|
state=self.state,
|
299
307
|
state_message=self.state_message,
|
308
|
+
tags=self.tags,
|
300
309
|
telemetry_configs=self.telemetry_configs,
|
301
310
|
tier=self.tier,
|
302
311
|
uid=self.uid,
|
@@ -361,6 +370,7 @@ def get_metastore_service(location: Optional[builtins.str] = None,
|
|
361
370
|
service_id=pulumi.get(__ret__, 'service_id'),
|
362
371
|
state=pulumi.get(__ret__, 'state'),
|
363
372
|
state_message=pulumi.get(__ret__, 'state_message'),
|
373
|
+
tags=pulumi.get(__ret__, 'tags'),
|
364
374
|
telemetry_configs=pulumi.get(__ret__, 'telemetry_configs'),
|
365
375
|
tier=pulumi.get(__ret__, 'tier'),
|
366
376
|
uid=pulumi.get(__ret__, 'uid'),
|
@@ -422,6 +432,7 @@ def get_metastore_service_output(location: Optional[pulumi.Input[builtins.str]]
|
|
422
432
|
service_id=pulumi.get(__response__, 'service_id'),
|
423
433
|
state=pulumi.get(__response__, 'state'),
|
424
434
|
state_message=pulumi.get(__response__, 'state_message'),
|
435
|
+
tags=pulumi.get(__response__, 'tags'),
|
425
436
|
telemetry_configs=pulumi.get(__response__, 'telemetry_configs'),
|
426
437
|
tier=pulumi.get(__response__, 'tier'),
|
427
438
|
uid=pulumi.get(__response__, 'uid'),
|
@@ -38,6 +38,7 @@ 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,
|
41
42
|
telemetry_config: Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']] = None,
|
42
43
|
tier: Optional[pulumi.Input[builtins.str]] = None):
|
43
44
|
"""
|
@@ -82,6 +83,9 @@ class MetastoreServiceArgs:
|
|
82
83
|
|
83
84
|
|
84
85
|
- - -
|
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}.
|
85
89
|
:param pulumi.Input['MetastoreServiceTelemetryConfigArgs'] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
86
90
|
Structure is documented below.
|
87
91
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -119,6 +123,8 @@ class MetastoreServiceArgs:
|
|
119
123
|
pulumi.set(__self__, "scheduled_backup", scheduled_backup)
|
120
124
|
if service_id is not None:
|
121
125
|
pulumi.set(__self__, "service_id", service_id)
|
126
|
+
if tags is not None:
|
127
|
+
pulumi.set(__self__, "tags", tags)
|
122
128
|
if telemetry_config is not None:
|
123
129
|
pulumi.set(__self__, "telemetry_config", telemetry_config)
|
124
130
|
if tier is not None:
|
@@ -340,6 +346,20 @@ class MetastoreServiceArgs:
|
|
340
346
|
def service_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
341
347
|
pulumi.set(self, "service_id", value)
|
342
348
|
|
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
|
+
|
343
363
|
@property
|
344
364
|
@pulumi.getter(name="telemetryConfig")
|
345
365
|
def telemetry_config(self) -> Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']]:
|
@@ -394,6 +414,7 @@ class _MetastoreServiceState:
|
|
394
414
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
395
415
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
396
416
|
state_message: Optional[pulumi.Input[builtins.str]] = None,
|
417
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
397
418
|
telemetry_config: Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']] = None,
|
398
419
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
399
420
|
uid: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -449,6 +470,9 @@ class _MetastoreServiceState:
|
|
449
470
|
- - -
|
450
471
|
:param pulumi.Input[builtins.str] state: The current state of the metastore service.
|
451
472
|
: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}.
|
452
476
|
:param pulumi.Input['MetastoreServiceTelemetryConfigArgs'] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
453
477
|
Structure is documented below.
|
454
478
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -504,6 +528,8 @@ class _MetastoreServiceState:
|
|
504
528
|
pulumi.set(__self__, "state", state)
|
505
529
|
if state_message is not None:
|
506
530
|
pulumi.set(__self__, "state_message", state_message)
|
531
|
+
if tags is not None:
|
532
|
+
pulumi.set(__self__, "tags", tags)
|
507
533
|
if telemetry_config is not None:
|
508
534
|
pulumi.set(__self__, "telemetry_config", telemetry_config)
|
509
535
|
if tier is not None:
|
@@ -826,6 +852,20 @@ class _MetastoreServiceState:
|
|
826
852
|
def state_message(self, value: Optional[pulumi.Input[builtins.str]]):
|
827
853
|
pulumi.set(self, "state_message", value)
|
828
854
|
|
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
|
+
|
829
869
|
@property
|
830
870
|
@pulumi.getter(name="telemetryConfig")
|
831
871
|
def telemetry_config(self) -> Optional[pulumi.Input['MetastoreServiceTelemetryConfigArgs']]:
|
@@ -899,6 +939,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
899
939
|
scaling_config: Optional[pulumi.Input[Union['MetastoreServiceScalingConfigArgs', 'MetastoreServiceScalingConfigArgsDict']]] = None,
|
900
940
|
scheduled_backup: Optional[pulumi.Input[Union['MetastoreServiceScheduledBackupArgs', 'MetastoreServiceScheduledBackupArgsDict']]] = None,
|
901
941
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
942
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
902
943
|
telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
|
903
944
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
904
945
|
__props__=None):
|
@@ -1255,6 +1296,9 @@ class MetastoreService(pulumi.CustomResource):
|
|
1255
1296
|
|
1256
1297
|
|
1257
1298
|
- - -
|
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}.
|
1258
1302
|
:param pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
1259
1303
|
Structure is documented below.
|
1260
1304
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -1608,6 +1652,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
1608
1652
|
scaling_config: Optional[pulumi.Input[Union['MetastoreServiceScalingConfigArgs', 'MetastoreServiceScalingConfigArgsDict']]] = None,
|
1609
1653
|
scheduled_backup: Optional[pulumi.Input[Union['MetastoreServiceScheduledBackupArgs', 'MetastoreServiceScheduledBackupArgsDict']]] = None,
|
1610
1654
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
1655
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1611
1656
|
telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
|
1612
1657
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
1613
1658
|
__props__=None):
|
@@ -1635,6 +1680,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
1635
1680
|
__props__.__dict__["scaling_config"] = scaling_config
|
1636
1681
|
__props__.__dict__["scheduled_backup"] = scheduled_backup
|
1637
1682
|
__props__.__dict__["service_id"] = service_id
|
1683
|
+
__props__.__dict__["tags"] = tags
|
1638
1684
|
__props__.__dict__["telemetry_config"] = telemetry_config
|
1639
1685
|
__props__.__dict__["tier"] = tier
|
1640
1686
|
__props__.__dict__["artifact_gcs_uri"] = None
|
@@ -1683,6 +1729,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
1683
1729
|
service_id: Optional[pulumi.Input[builtins.str]] = None,
|
1684
1730
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
1685
1731
|
state_message: Optional[pulumi.Input[builtins.str]] = None,
|
1732
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1686
1733
|
telemetry_config: Optional[pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']]] = None,
|
1687
1734
|
tier: Optional[pulumi.Input[builtins.str]] = None,
|
1688
1735
|
uid: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1743,6 +1790,9 @@ class MetastoreService(pulumi.CustomResource):
|
|
1743
1790
|
- - -
|
1744
1791
|
:param pulumi.Input[builtins.str] state: The current state of the metastore service.
|
1745
1792
|
: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}.
|
1746
1796
|
:param pulumi.Input[Union['MetastoreServiceTelemetryConfigArgs', 'MetastoreServiceTelemetryConfigArgsDict']] telemetry_config: The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON.
|
1747
1797
|
Structure is documented below.
|
1748
1798
|
:param pulumi.Input[builtins.str] tier: The tier of the service.
|
@@ -1778,6 +1828,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
1778
1828
|
__props__.__dict__["service_id"] = service_id
|
1779
1829
|
__props__.__dict__["state"] = state
|
1780
1830
|
__props__.__dict__["state_message"] = state_message
|
1831
|
+
__props__.__dict__["tags"] = tags
|
1781
1832
|
__props__.__dict__["telemetry_config"] = telemetry_config
|
1782
1833
|
__props__.__dict__["tier"] = tier
|
1783
1834
|
__props__.__dict__["uid"] = uid
|
@@ -2001,6 +2052,16 @@ class MetastoreService(pulumi.CustomResource):
|
|
2001
2052
|
"""
|
2002
2053
|
return pulumi.get(self, "state_message")
|
2003
2054
|
|
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
|
+
|
2004
2065
|
@property
|
2005
2066
|
@pulumi.getter(name="telemetryConfig")
|
2006
2067
|
def telemetry_config(self) -> pulumi.Output['outputs.MetastoreServiceTelemetryConfig']:
|