pulumi-gcp 7.37.0a1723638212__py3-none-any.whl → 7.38.0a1723822337__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/appengine/application_url_dispatch_rules.py +10 -2
- pulumi_gcp/appengine/engine_split_traffic.py +32 -8
- pulumi_gcp/appengine/flexible_app_version.py +10 -2
- pulumi_gcp/appengine/service_network_settings.py +10 -2
- pulumi_gcp/appengine/standard_app_version.py +20 -4
- pulumi_gcp/assuredworkloads/workload.py +14 -14
- pulumi_gcp/biglake/database.py +10 -2
- pulumi_gcp/biglake/table.py +20 -4
- pulumi_gcp/bigquery/job.py +20 -4
- pulumi_gcp/cloudbuild/worker_pool.py +5 -5
- pulumi_gcp/clouddeploy/delivery_pipeline.py +19 -19
- pulumi_gcp/clouddeploy/target.py +19 -19
- pulumi_gcp/cloudfunctions/function.py +42 -42
- pulumi_gcp/cloudfunctions/get_function.py +3 -3
- pulumi_gcp/cloudquota/outputs.py +6 -6
- pulumi_gcp/composer/get_user_workloads_secret.py +1 -1
- pulumi_gcp/composer/user_workloads_secret.py +14 -14
- pulumi_gcp/compute/_inputs.py +55 -55
- pulumi_gcp/compute/get_instance_serial_port.py +12 -4
- pulumi_gcp/compute/get_instance_template.py +1 -1
- pulumi_gcp/compute/get_region_instance_template.py +1 -1
- pulumi_gcp/compute/instance_template.py +14 -14
- pulumi_gcp/compute/outputs.py +45 -45
- pulumi_gcp/compute/region_instance_template.py +14 -14
- pulumi_gcp/compute/region_network_endpoint_group.py +10 -2
- pulumi_gcp/container/_inputs.py +20 -20
- pulumi_gcp/container/aws_cluster.py +5 -5
- pulumi_gcp/container/aws_node_pool.py +5 -5
- pulumi_gcp/container/azure_cluster.py +5 -5
- pulumi_gcp/container/azure_node_pool.py +5 -5
- pulumi_gcp/container/outputs.py +21 -21
- pulumi_gcp/databasemigrationservice/_inputs.py +5 -5
- pulumi_gcp/databasemigrationservice/outputs.py +3 -3
- pulumi_gcp/dataflow/flex_template_job.py +42 -42
- pulumi_gcp/dataflow/job.py +42 -42
- pulumi_gcp/datafusion/instance.py +10 -2
- pulumi_gcp/dataloss/_inputs.py +5 -5
- pulumi_gcp/dataloss/outputs.py +3 -3
- pulumi_gcp/dataloss/prevention_stored_info_type.py +10 -2
- pulumi_gcp/dataplex/asset.py +14 -14
- pulumi_gcp/dataplex/lake.py +14 -14
- pulumi_gcp/dataplex/zone.py +14 -14
- pulumi_gcp/dataproc/_inputs.py +10 -10
- pulumi_gcp/dataproc/outputs.py +6 -6
- pulumi_gcp/dataproc/workflow_template.py +12 -12
- pulumi_gcp/eventarc/trigger.py +14 -14
- pulumi_gcp/firebase/_inputs.py +5 -5
- pulumi_gcp/firebase/outputs.py +3 -3
- pulumi_gcp/healthcare/dicom_store.py +12 -2
- pulumi_gcp/healthcare/fhir_store.py +10 -2
- pulumi_gcp/iam/access_boundary_policy.py +10 -2
- pulumi_gcp/monitoring/get_app_engine_service.py +10 -2
- pulumi_gcp/networkconnectivity/_inputs.py +5 -5
- pulumi_gcp/networkconnectivity/outputs.py +3 -3
- pulumi_gcp/projects/default_service_accounts.py +7 -7
- pulumi_gcp/pubsub/subscription.py +36 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/enterprise_key.py +14 -14
- pulumi_gcp/securitycenter/instance_iam_binding.py +10 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +10 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +10 -2
- pulumi_gcp/serviceaccount/key.py +14 -14
- pulumi_gcp/vertex/ai_feature_group.py +12 -2
- pulumi_gcp/vertex/ai_feature_group_feature.py +12 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +48 -8
- pulumi_gcp/workstations/_inputs.py +10 -10
- pulumi_gcp/workstations/outputs.py +6 -6
- pulumi_gcp/workstations/workstation_config.py +14 -6
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/RECORD +72 -72
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/top_level.txt +0 -0
pulumi_gcp/serviceaccount/key.py
CHANGED
@@ -20,7 +20,7 @@ __all__ = ['KeyArgs', 'Key']
|
|
20
20
|
class KeyArgs:
|
21
21
|
def __init__(__self__, *,
|
22
22
|
service_account_id: pulumi.Input[str],
|
23
|
-
keepers: Optional[pulumi.Input[Mapping[str,
|
23
|
+
keepers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
24
24
|
key_algorithm: Optional[pulumi.Input[str]] = None,
|
25
25
|
private_key_type: Optional[pulumi.Input[str]] = None,
|
26
26
|
public_key_data: Optional[pulumi.Input[str]] = None,
|
@@ -33,7 +33,7 @@ class KeyArgs:
|
|
33
33
|
automatically be inferred from the account. Otherwise, if the `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`
|
34
34
|
syntax is used, the `{ACCOUNT}` specified can be the full email address of the service account or the service account's
|
35
35
|
unique id. Substituting `-` as a wildcard for the `{PROJECT_ID}` will infer the project from the account.
|
36
|
-
:param pulumi.Input[Mapping[str,
|
36
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] keepers: Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
37
37
|
:param pulumi.Input[str] key_algorithm: The algorithm used to generate the key. KEY_ALG_RSA_2048 is the default algorithm.
|
38
38
|
Valid values are listed at
|
39
39
|
[ServiceAccountPrivateKeyType](https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts.keys#ServiceAccountKeyAlgorithm)
|
@@ -73,14 +73,14 @@ class KeyArgs:
|
|
73
73
|
|
74
74
|
@property
|
75
75
|
@pulumi.getter
|
76
|
-
def keepers(self) -> Optional[pulumi.Input[Mapping[str,
|
76
|
+
def keepers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
77
77
|
"""
|
78
78
|
Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
79
79
|
"""
|
80
80
|
return pulumi.get(self, "keepers")
|
81
81
|
|
82
82
|
@keepers.setter
|
83
|
-
def keepers(self, value: Optional[pulumi.Input[Mapping[str,
|
83
|
+
def keepers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
84
84
|
pulumi.set(self, "keepers", value)
|
85
85
|
|
86
86
|
@property
|
@@ -138,7 +138,7 @@ class KeyArgs:
|
|
138
138
|
@pulumi.input_type
|
139
139
|
class _KeyState:
|
140
140
|
def __init__(__self__, *,
|
141
|
-
keepers: Optional[pulumi.Input[Mapping[str,
|
141
|
+
keepers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
142
142
|
key_algorithm: Optional[pulumi.Input[str]] = None,
|
143
143
|
name: Optional[pulumi.Input[str]] = None,
|
144
144
|
private_key: Optional[pulumi.Input[str]] = None,
|
@@ -151,7 +151,7 @@ class _KeyState:
|
|
151
151
|
valid_before: Optional[pulumi.Input[str]] = None):
|
152
152
|
"""
|
153
153
|
Input properties used for looking up and filtering Key resources.
|
154
|
-
:param pulumi.Input[Mapping[str,
|
154
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] keepers: Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
155
155
|
:param pulumi.Input[str] key_algorithm: The algorithm used to generate the key. KEY_ALG_RSA_2048 is the default algorithm.
|
156
156
|
Valid values are listed at
|
157
157
|
[ServiceAccountPrivateKeyType](https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts.keys#ServiceAccountKeyAlgorithm)
|
@@ -198,14 +198,14 @@ class _KeyState:
|
|
198
198
|
|
199
199
|
@property
|
200
200
|
@pulumi.getter
|
201
|
-
def keepers(self) -> Optional[pulumi.Input[Mapping[str,
|
201
|
+
def keepers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
202
202
|
"""
|
203
203
|
Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
204
204
|
"""
|
205
205
|
return pulumi.get(self, "keepers")
|
206
206
|
|
207
207
|
@keepers.setter
|
208
|
-
def keepers(self, value: Optional[pulumi.Input[Mapping[str,
|
208
|
+
def keepers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
209
209
|
pulumi.set(self, "keepers", value)
|
210
210
|
|
211
211
|
@property
|
@@ -344,7 +344,7 @@ class Key(pulumi.CustomResource):
|
|
344
344
|
def __init__(__self__,
|
345
345
|
resource_name: str,
|
346
346
|
opts: Optional[pulumi.ResourceOptions] = None,
|
347
|
-
keepers: Optional[pulumi.Input[Mapping[str,
|
347
|
+
keepers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
348
348
|
key_algorithm: Optional[pulumi.Input[str]] = None,
|
349
349
|
private_key_type: Optional[pulumi.Input[str]] = None,
|
350
350
|
public_key_data: Optional[pulumi.Input[str]] = None,
|
@@ -416,7 +416,7 @@ class Key(pulumi.CustomResource):
|
|
416
416
|
|
417
417
|
:param str resource_name: The name of the resource.
|
418
418
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
419
|
-
:param pulumi.Input[Mapping[str,
|
419
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] keepers: Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
420
420
|
:param pulumi.Input[str] key_algorithm: The algorithm used to generate the key. KEY_ALG_RSA_2048 is the default algorithm.
|
421
421
|
Valid values are listed at
|
422
422
|
[ServiceAccountPrivateKeyType](https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts.keys#ServiceAccountKeyAlgorithm)
|
@@ -515,7 +515,7 @@ class Key(pulumi.CustomResource):
|
|
515
515
|
def _internal_init(__self__,
|
516
516
|
resource_name: str,
|
517
517
|
opts: Optional[pulumi.ResourceOptions] = None,
|
518
|
-
keepers: Optional[pulumi.Input[Mapping[str,
|
518
|
+
keepers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
519
519
|
key_algorithm: Optional[pulumi.Input[str]] = None,
|
520
520
|
private_key_type: Optional[pulumi.Input[str]] = None,
|
521
521
|
public_key_data: Optional[pulumi.Input[str]] = None,
|
@@ -557,7 +557,7 @@ class Key(pulumi.CustomResource):
|
|
557
557
|
def get(resource_name: str,
|
558
558
|
id: pulumi.Input[str],
|
559
559
|
opts: Optional[pulumi.ResourceOptions] = None,
|
560
|
-
keepers: Optional[pulumi.Input[Mapping[str,
|
560
|
+
keepers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
561
561
|
key_algorithm: Optional[pulumi.Input[str]] = None,
|
562
562
|
name: Optional[pulumi.Input[str]] = None,
|
563
563
|
private_key: Optional[pulumi.Input[str]] = None,
|
@@ -575,7 +575,7 @@ class Key(pulumi.CustomResource):
|
|
575
575
|
:param str resource_name: The unique name of the resulting resource.
|
576
576
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
577
577
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
578
|
-
:param pulumi.Input[Mapping[str,
|
578
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] keepers: Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
579
579
|
:param pulumi.Input[str] key_algorithm: The algorithm used to generate the key. KEY_ALG_RSA_2048 is the default algorithm.
|
580
580
|
Valid values are listed at
|
581
581
|
[ServiceAccountPrivateKeyType](https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts.keys#ServiceAccountKeyAlgorithm)
|
@@ -616,7 +616,7 @@ class Key(pulumi.CustomResource):
|
|
616
616
|
|
617
617
|
@property
|
618
618
|
@pulumi.getter
|
619
|
-
def keepers(self) -> pulumi.Output[Optional[Mapping[str,
|
619
|
+
def keepers(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
620
620
|
"""
|
621
621
|
Arbitrary map of values that, when changed, will trigger a new key to be generated.
|
622
622
|
"""
|
@@ -384,7 +384,12 @@ class AiFeatureGroup(pulumi.CustomResource):
|
|
384
384
|
},
|
385
385
|
big_query={
|
386
386
|
"big_query_source": {
|
387
|
-
"input_uri": pulumi.Output.all(
|
387
|
+
"input_uri": pulumi.Output.all(
|
388
|
+
project=sample_table.project,
|
389
|
+
dataset_id=sample_table.dataset_id,
|
390
|
+
table_id=sample_table.table_id
|
391
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
392
|
+
,
|
388
393
|
},
|
389
394
|
"entity_id_columns": ["feature_id"],
|
390
395
|
})
|
@@ -487,7 +492,12 @@ class AiFeatureGroup(pulumi.CustomResource):
|
|
487
492
|
},
|
488
493
|
big_query={
|
489
494
|
"big_query_source": {
|
490
|
-
"input_uri": pulumi.Output.all(
|
495
|
+
"input_uri": pulumi.Output.all(
|
496
|
+
project=sample_table.project,
|
497
|
+
dataset_id=sample_table.dataset_id,
|
498
|
+
table_id=sample_table.table_id
|
499
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
500
|
+
,
|
491
501
|
},
|
492
502
|
"entity_id_columns": ["feature_id"],
|
493
503
|
})
|
@@ -410,7 +410,12 @@ class AiFeatureGroupFeature(pulumi.CustomResource):
|
|
410
410
|
},
|
411
411
|
big_query={
|
412
412
|
"big_query_source": {
|
413
|
-
"input_uri": pulumi.Output.all(
|
413
|
+
"input_uri": pulumi.Output.all(
|
414
|
+
project=sample_table.project,
|
415
|
+
dataset_id=sample_table.dataset_id,
|
416
|
+
table_id=sample_table.table_id
|
417
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
418
|
+
,
|
414
419
|
},
|
415
420
|
"entity_id_columns": ["feature_id"],
|
416
421
|
})
|
@@ -529,7 +534,12 @@ class AiFeatureGroupFeature(pulumi.CustomResource):
|
|
529
534
|
},
|
530
535
|
big_query={
|
531
536
|
"big_query_source": {
|
532
|
-
"input_uri": pulumi.Output.all(
|
537
|
+
"input_uri": pulumi.Output.all(
|
538
|
+
project=sample_table.project,
|
539
|
+
dataset_id=sample_table.dataset_id,
|
540
|
+
table_id=sample_table.table_id
|
541
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
542
|
+
,
|
533
543
|
},
|
534
544
|
"entity_id_columns": ["feature_id"],
|
535
545
|
})
|
@@ -513,7 +513,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
513
513
|
"cron": "0 0 * * *",
|
514
514
|
},
|
515
515
|
big_query_source={
|
516
|
-
"uri": pulumi.Output.all(
|
516
|
+
"uri": pulumi.Output.all(
|
517
|
+
project=tf_test_table.project,
|
518
|
+
dataset_id=tf_test_table.dataset_id,
|
519
|
+
table_id=tf_test_table.table_id
|
520
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
521
|
+
,
|
517
522
|
"entity_id_columns": ["test_entity_column"],
|
518
523
|
})
|
519
524
|
project = gcp.organizations.get_project()
|
@@ -573,7 +578,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
573
578
|
},
|
574
579
|
big_query={
|
575
580
|
"big_query_source": {
|
576
|
-
"input_uri": pulumi.Output.all(
|
581
|
+
"input_uri": pulumi.Output.all(
|
582
|
+
project=sample_table.project,
|
583
|
+
dataset_id=sample_table.dataset_id,
|
584
|
+
table_id=sample_table.table_id
|
585
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
586
|
+
,
|
577
587
|
},
|
578
588
|
"entity_id_columns": ["feature_id"],
|
579
589
|
})
|
@@ -678,7 +688,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
678
688
|
},
|
679
689
|
big_query={
|
680
690
|
"big_query_source": {
|
681
|
-
"input_uri": pulumi.Output.all(
|
691
|
+
"input_uri": pulumi.Output.all(
|
692
|
+
project=sample_table.project,
|
693
|
+
dataset_id=sample_table.dataset_id,
|
694
|
+
table_id=sample_table.table_id
|
695
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
696
|
+
,
|
682
697
|
},
|
683
698
|
"entity_id_columns": ["feature_id"],
|
684
699
|
})
|
@@ -794,7 +809,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
794
809
|
"cron": "0 0 * * *",
|
795
810
|
},
|
796
811
|
big_query_source={
|
797
|
-
"uri": pulumi.Output.all(
|
812
|
+
"uri": pulumi.Output.all(
|
813
|
+
project=tf_test_table.project,
|
814
|
+
dataset_id=tf_test_table.dataset_id,
|
815
|
+
table_id=tf_test_table.table_id
|
816
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
817
|
+
,
|
798
818
|
"entity_id_columns": ["test_entity_column"],
|
799
819
|
},
|
800
820
|
vector_search_config={
|
@@ -937,7 +957,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
937
957
|
"cron": "0 0 * * *",
|
938
958
|
},
|
939
959
|
big_query_source={
|
940
|
-
"uri": pulumi.Output.all(
|
960
|
+
"uri": pulumi.Output.all(
|
961
|
+
project=tf_test_table.project,
|
962
|
+
dataset_id=tf_test_table.dataset_id,
|
963
|
+
table_id=tf_test_table.table_id
|
964
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
965
|
+
,
|
941
966
|
"entity_id_columns": ["test_entity_column"],
|
942
967
|
})
|
943
968
|
project = gcp.organizations.get_project()
|
@@ -997,7 +1022,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
997
1022
|
},
|
998
1023
|
big_query={
|
999
1024
|
"big_query_source": {
|
1000
|
-
"input_uri": pulumi.Output.all(
|
1025
|
+
"input_uri": pulumi.Output.all(
|
1026
|
+
project=sample_table.project,
|
1027
|
+
dataset_id=sample_table.dataset_id,
|
1028
|
+
table_id=sample_table.table_id
|
1029
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
1030
|
+
,
|
1001
1031
|
},
|
1002
1032
|
"entity_id_columns": ["feature_id"],
|
1003
1033
|
})
|
@@ -1102,7 +1132,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
1102
1132
|
},
|
1103
1133
|
big_query={
|
1104
1134
|
"big_query_source": {
|
1105
|
-
"input_uri": pulumi.Output.all(
|
1135
|
+
"input_uri": pulumi.Output.all(
|
1136
|
+
project=sample_table.project,
|
1137
|
+
dataset_id=sample_table.dataset_id,
|
1138
|
+
table_id=sample_table.table_id
|
1139
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
1140
|
+
,
|
1106
1141
|
},
|
1107
1142
|
"entity_id_columns": ["feature_id"],
|
1108
1143
|
})
|
@@ -1218,7 +1253,12 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
1218
1253
|
"cron": "0 0 * * *",
|
1219
1254
|
},
|
1220
1255
|
big_query_source={
|
1221
|
-
"uri": pulumi.Output.all(
|
1256
|
+
"uri": pulumi.Output.all(
|
1257
|
+
project=tf_test_table.project,
|
1258
|
+
dataset_id=tf_test_table.dataset_id,
|
1259
|
+
table_id=tf_test_table.table_id
|
1260
|
+
).apply(lambda resolved_outputs: f"bq://{resolved_outputs['project']}.{resolved_outputs['dataset_id']}.{resolved_outputs['table_id']}")
|
1261
|
+
,
|
1222
1262
|
"entity_id_columns": ["test_entity_column"],
|
1223
1263
|
},
|
1224
1264
|
vector_search_config={
|
@@ -70,7 +70,7 @@ if not MYPY:
|
|
70
70
|
(Output)
|
71
71
|
The status code, which should be an enum value of google.rpc.Code.
|
72
72
|
"""
|
73
|
-
details: NotRequired[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
73
|
+
details: NotRequired[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]
|
74
74
|
"""
|
75
75
|
(Output)
|
76
76
|
A list of messages that carry the error details.
|
@@ -87,12 +87,12 @@ elif False:
|
|
87
87
|
class WorkstationClusterConditionArgs:
|
88
88
|
def __init__(__self__, *,
|
89
89
|
code: Optional[pulumi.Input[int]] = None,
|
90
|
-
details: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
90
|
+
details: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]] = None,
|
91
91
|
message: Optional[pulumi.Input[str]] = None):
|
92
92
|
"""
|
93
93
|
:param pulumi.Input[int] code: (Output)
|
94
94
|
The status code, which should be an enum value of google.rpc.Code.
|
95
|
-
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
95
|
+
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]] details: (Output)
|
96
96
|
A list of messages that carry the error details.
|
97
97
|
:param pulumi.Input[str] message: (Output)
|
98
98
|
Human readable message indicating details about the current status.
|
@@ -119,7 +119,7 @@ class WorkstationClusterConditionArgs:
|
|
119
119
|
|
120
120
|
@property
|
121
121
|
@pulumi.getter
|
122
|
-
def details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
122
|
+
def details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]:
|
123
123
|
"""
|
124
124
|
(Output)
|
125
125
|
A list of messages that carry the error details.
|
@@ -127,7 +127,7 @@ class WorkstationClusterConditionArgs:
|
|
127
127
|
return pulumi.get(self, "details")
|
128
128
|
|
129
129
|
@details.setter
|
130
|
-
def details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
130
|
+
def details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]):
|
131
131
|
pulumi.set(self, "details", value)
|
132
132
|
|
133
133
|
@property
|
@@ -294,7 +294,7 @@ if not MYPY:
|
|
294
294
|
(Output)
|
295
295
|
The status code, which should be an enum value of google.rpc.Code.
|
296
296
|
"""
|
297
|
-
details: NotRequired[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
297
|
+
details: NotRequired[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]
|
298
298
|
"""
|
299
299
|
(Output)
|
300
300
|
A list of messages that carry the error details.
|
@@ -311,12 +311,12 @@ elif False:
|
|
311
311
|
class WorkstationConfigConditionArgs:
|
312
312
|
def __init__(__self__, *,
|
313
313
|
code: Optional[pulumi.Input[int]] = None,
|
314
|
-
details: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
314
|
+
details: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]] = None,
|
315
315
|
message: Optional[pulumi.Input[str]] = None):
|
316
316
|
"""
|
317
317
|
:param pulumi.Input[int] code: (Output)
|
318
318
|
The status code, which should be an enum value of google.rpc.Code.
|
319
|
-
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
319
|
+
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]] details: (Output)
|
320
320
|
A list of messages that carry the error details.
|
321
321
|
:param pulumi.Input[str] message: (Output)
|
322
322
|
Human readable message indicating details about the current status.
|
@@ -343,7 +343,7 @@ class WorkstationConfigConditionArgs:
|
|
343
343
|
|
344
344
|
@property
|
345
345
|
@pulumi.getter
|
346
|
-
def details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
346
|
+
def details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]:
|
347
347
|
"""
|
348
348
|
(Output)
|
349
349
|
A list of messages that carry the error details.
|
@@ -351,7 +351,7 @@ class WorkstationConfigConditionArgs:
|
|
351
351
|
return pulumi.get(self, "details")
|
352
352
|
|
353
353
|
@details.setter
|
354
|
-
def details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
354
|
+
def details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]):
|
355
355
|
pulumi.set(self, "details", value)
|
356
356
|
|
357
357
|
@property
|
@@ -44,12 +44,12 @@ __all__ = [
|
|
44
44
|
class WorkstationClusterCondition(dict):
|
45
45
|
def __init__(__self__, *,
|
46
46
|
code: Optional[int] = None,
|
47
|
-
details: Optional[Sequence[Mapping[str,
|
47
|
+
details: Optional[Sequence[Mapping[str, str]]] = None,
|
48
48
|
message: Optional[str] = None):
|
49
49
|
"""
|
50
50
|
:param int code: (Output)
|
51
51
|
The status code, which should be an enum value of google.rpc.Code.
|
52
|
-
:param Sequence[Mapping[str,
|
52
|
+
:param Sequence[Mapping[str, str]] details: (Output)
|
53
53
|
A list of messages that carry the error details.
|
54
54
|
:param str message: (Output)
|
55
55
|
Human readable message indicating details about the current status.
|
@@ -72,7 +72,7 @@ class WorkstationClusterCondition(dict):
|
|
72
72
|
|
73
73
|
@property
|
74
74
|
@pulumi.getter
|
75
|
-
def details(self) -> Optional[Sequence[Mapping[str,
|
75
|
+
def details(self) -> Optional[Sequence[Mapping[str, str]]]:
|
76
76
|
"""
|
77
77
|
(Output)
|
78
78
|
A list of messages that carry the error details.
|
@@ -202,12 +202,12 @@ class WorkstationClusterPrivateClusterConfig(dict):
|
|
202
202
|
class WorkstationConfigCondition(dict):
|
203
203
|
def __init__(__self__, *,
|
204
204
|
code: Optional[int] = None,
|
205
|
-
details: Optional[Sequence[Mapping[str,
|
205
|
+
details: Optional[Sequence[Mapping[str, str]]] = None,
|
206
206
|
message: Optional[str] = None):
|
207
207
|
"""
|
208
208
|
:param int code: (Output)
|
209
209
|
The status code, which should be an enum value of google.rpc.Code.
|
210
|
-
:param Sequence[Mapping[str,
|
210
|
+
:param Sequence[Mapping[str, str]] details: (Output)
|
211
211
|
A list of messages that carry the error details.
|
212
212
|
:param str message: (Output)
|
213
213
|
Human readable message indicating details about the current status.
|
@@ -230,7 +230,7 @@ class WorkstationConfigCondition(dict):
|
|
230
230
|
|
231
231
|
@property
|
232
232
|
@pulumi.getter
|
233
|
-
def details(self) -> Optional[Sequence[Mapping[str,
|
233
|
+
def details(self) -> Optional[Sequence[Mapping[str, str]]]:
|
234
234
|
"""
|
235
235
|
(Output)
|
236
236
|
A list of messages that carry the error details.
|
@@ -913,9 +913,13 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
913
913
|
"boot_disk_size_gb": 35,
|
914
914
|
"disable_public_ip_addresses": True,
|
915
915
|
"disable_ssh": False,
|
916
|
-
"vm_tags": pulumi.Output.all(
|
917
|
-
|
918
|
-
|
916
|
+
"vm_tags": pulumi.Output.all(
|
917
|
+
tagKey1Name=tag_key1.name,
|
918
|
+
tagValue1Name=tag_value1.name
|
919
|
+
).apply(lambda resolved_outputs: {
|
920
|
+
"": f"tagValues/{resolved_outputs['tagValue1Name']}",
|
921
|
+
})
|
922
|
+
,
|
919
923
|
},
|
920
924
|
})
|
921
925
|
```
|
@@ -1372,9 +1376,13 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1372
1376
|
"boot_disk_size_gb": 35,
|
1373
1377
|
"disable_public_ip_addresses": True,
|
1374
1378
|
"disable_ssh": False,
|
1375
|
-
"vm_tags": pulumi.Output.all(
|
1376
|
-
|
1377
|
-
|
1379
|
+
"vm_tags": pulumi.Output.all(
|
1380
|
+
tagKey1Name=tag_key1.name,
|
1381
|
+
tagValue1Name=tag_value1.name
|
1382
|
+
).apply(lambda resolved_outputs: {
|
1383
|
+
"": f"tagValues/{resolved_outputs['tagValue1Name']}",
|
1384
|
+
})
|
1385
|
+
,
|
1378
1386
|
},
|
1379
1387
|
})
|
1380
1388
|
```
|