pulumi-gcp 8.9.3a1731934815__py3-none-any.whl → 8.10.0__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 +24 -0
- pulumi_gcp/accesscontextmanager/__init__.py +1 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +90 -54
- pulumi_gcp/accesscontextmanager/get_access_policy.py +158 -0
- pulumi_gcp/accesscontextmanager/outputs.py +60 -36
- pulumi_gcp/artifactregistry/_inputs.py +56 -0
- pulumi_gcp/artifactregistry/outputs.py +65 -0
- pulumi_gcp/artifactregistry/repository.py +48 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +63 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +263 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +402 -0
- pulumi_gcp/certificateauthority/authority.py +28 -138
- pulumi_gcp/cloudrun/service.py +0 -10
- pulumi_gcp/cloudrunv2/get_service.py +15 -4
- pulumi_gcp/cloudrunv2/service.py +30 -2
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +490 -0
- pulumi_gcp/dataproc/gdc_spark_application.py +1658 -0
- pulumi_gcp/dataproc/outputs.py +385 -0
- pulumi_gcp/filestore/_inputs.py +152 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +47 -0
- pulumi_gcp/filestore/outputs.py +229 -0
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +274 -0
- pulumi_gcp/iam/folders_policy_binding.py +917 -0
- pulumi_gcp/iam/organizations_policy_binding.py +901 -0
- pulumi_gcp/iam/outputs.py +198 -0
- pulumi_gcp/managedkafka/cluster.py +4 -0
- pulumi_gcp/managedkafka/topic.py +4 -0
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +213 -0
- pulumi_gcp/redis/cluster.py +289 -0
- pulumi_gcp/redis/outputs.py +185 -0
- pulumi_gcp/securesourcemanager/_inputs.py +33 -0
- pulumi_gcp/securesourcemanager/instance.py +90 -3
- pulumi_gcp/securesourcemanager/outputs.py +19 -0
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +73 -0
- pulumi_gcp/sql/database_instance.py +60 -0
- pulumi_gcp/sql/outputs.py +146 -0
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/RECORD +51 -46
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/top_level.txt +0 -0
@@ -797,40 +797,24 @@ class Authority(pulumi.CustomResource):
|
|
797
797
|
config={
|
798
798
|
"subject_config": {
|
799
799
|
"subject": {
|
800
|
-
"organization": "
|
800
|
+
"organization": "ACME",
|
801
801
|
"common_name": "my-certificate-authority",
|
802
802
|
},
|
803
|
-
"subject_alt_name": {
|
804
|
-
"dns_names": ["hashicorp.com"],
|
805
|
-
},
|
806
803
|
},
|
807
804
|
"x509_config": {
|
808
805
|
"ca_options": {
|
809
806
|
"is_ca": True,
|
810
|
-
"max_issuer_path_length": 10,
|
811
807
|
},
|
812
808
|
"key_usage": {
|
813
809
|
"base_key_usage": {
|
814
|
-
"digital_signature": True,
|
815
|
-
"content_commitment": True,
|
816
|
-
"key_encipherment": False,
|
817
|
-
"data_encipherment": True,
|
818
|
-
"key_agreement": True,
|
819
810
|
"cert_sign": True,
|
820
811
|
"crl_sign": True,
|
821
|
-
"decipher_only": True,
|
822
|
-
},
|
823
|
-
"extended_key_usage": {
|
824
|
-
"server_auth": True,
|
825
|
-
"client_auth": False,
|
826
|
-
"email_protection": True,
|
827
|
-
"code_signing": True,
|
828
|
-
"time_stamping": True,
|
829
812
|
},
|
813
|
+
"extended_key_usage": {},
|
830
814
|
},
|
831
815
|
},
|
832
816
|
},
|
833
|
-
lifetime="
|
817
|
+
lifetime=f"{10 * 365 * 24 * 3600}s",
|
834
818
|
key_spec={
|
835
819
|
"algorithm": "RSA_PKCS1_4096_SHA256",
|
836
820
|
})
|
@@ -848,12 +832,9 @@ class Authority(pulumi.CustomResource):
|
|
848
832
|
config={
|
849
833
|
"subject_config": {
|
850
834
|
"subject": {
|
851
|
-
"organization": "
|
835
|
+
"organization": "ACME",
|
852
836
|
"common_name": "my-certificate-authority",
|
853
837
|
},
|
854
|
-
"subject_alt_name": {
|
855
|
-
"dns_names": ["hashicorp.com"],
|
856
|
-
},
|
857
838
|
},
|
858
839
|
"x509_config": {
|
859
840
|
"ca_options": {
|
@@ -864,9 +845,7 @@ class Authority(pulumi.CustomResource):
|
|
864
845
|
"cert_sign": True,
|
865
846
|
"crl_sign": True,
|
866
847
|
},
|
867
|
-
"extended_key_usage": {
|
868
|
-
"server_auth": False,
|
869
|
-
},
|
848
|
+
"extended_key_usage": {},
|
870
849
|
},
|
871
850
|
},
|
872
851
|
},
|
@@ -887,42 +866,27 @@ class Authority(pulumi.CustomResource):
|
|
887
866
|
config={
|
888
867
|
"subject_config": {
|
889
868
|
"subject": {
|
890
|
-
"organization": "
|
869
|
+
"organization": "ACME",
|
891
870
|
"common_name": "my-subordinate-authority",
|
892
871
|
},
|
893
|
-
"subject_alt_name": {
|
894
|
-
"dns_names": ["hashicorp.com"],
|
895
|
-
},
|
896
872
|
},
|
897
873
|
"x509_config": {
|
898
874
|
"ca_options": {
|
899
875
|
"is_ca": True,
|
900
|
-
"
|
876
|
+
"zero_max_issuer_path_length": True,
|
901
877
|
},
|
902
878
|
"key_usage": {
|
903
879
|
"base_key_usage": {
|
904
|
-
"digital_signature": True,
|
905
|
-
"content_commitment": True,
|
906
|
-
"key_encipherment": False,
|
907
|
-
"data_encipherment": True,
|
908
|
-
"key_agreement": True,
|
909
880
|
"cert_sign": True,
|
910
881
|
"crl_sign": True,
|
911
|
-
"decipher_only": True,
|
912
|
-
},
|
913
|
-
"extended_key_usage": {
|
914
|
-
"server_auth": True,
|
915
|
-
"client_auth": False,
|
916
|
-
"email_protection": True,
|
917
|
-
"code_signing": True,
|
918
|
-
"time_stamping": True,
|
919
882
|
},
|
883
|
+
"extended_key_usage": {},
|
920
884
|
},
|
921
885
|
},
|
922
886
|
},
|
923
|
-
lifetime="
|
887
|
+
lifetime=f"{5 * 365 * 24 * 3600}s",
|
924
888
|
key_spec={
|
925
|
-
"algorithm": "
|
889
|
+
"algorithm": "RSA_PKCS1_2048_SHA256",
|
926
890
|
},
|
927
891
|
type="SUBORDINATE")
|
928
892
|
```
|
@@ -959,16 +923,13 @@ class Authority(pulumi.CustomResource):
|
|
959
923
|
"x509_config": {
|
960
924
|
"ca_options": {
|
961
925
|
"is_ca": True,
|
962
|
-
"max_issuer_path_length": 10,
|
963
926
|
},
|
964
927
|
"key_usage": {
|
965
928
|
"base_key_usage": {
|
966
929
|
"cert_sign": True,
|
967
930
|
"crl_sign": True,
|
968
931
|
},
|
969
|
-
"extended_key_usage": {
|
970
|
-
"server_auth": False,
|
971
|
-
},
|
932
|
+
"extended_key_usage": {},
|
972
933
|
},
|
973
934
|
"name_constraints": {
|
974
935
|
"critical": True,
|
@@ -1002,12 +963,9 @@ class Authority(pulumi.CustomResource):
|
|
1002
963
|
config={
|
1003
964
|
"subject_config": {
|
1004
965
|
"subject": {
|
1005
|
-
"organization": "
|
966
|
+
"organization": "ACME",
|
1006
967
|
"common_name": "my-certificate-authority",
|
1007
968
|
},
|
1008
|
-
"subject_alt_name": {
|
1009
|
-
"dns_names": ["hashicorp.com"],
|
1010
|
-
},
|
1011
969
|
},
|
1012
970
|
"subject_key_id": {
|
1013
971
|
"key_id": "4cf3372289b1d411b999dbb9ebcd44744b6b2fca",
|
@@ -1015,30 +973,17 @@ class Authority(pulumi.CustomResource):
|
|
1015
973
|
"x509_config": {
|
1016
974
|
"ca_options": {
|
1017
975
|
"is_ca": True,
|
1018
|
-
"max_issuer_path_length": 10,
|
1019
976
|
},
|
1020
977
|
"key_usage": {
|
1021
978
|
"base_key_usage": {
|
1022
|
-
"digital_signature": True,
|
1023
|
-
"content_commitment": True,
|
1024
|
-
"key_encipherment": False,
|
1025
|
-
"data_encipherment": True,
|
1026
|
-
"key_agreement": True,
|
1027
979
|
"cert_sign": True,
|
1028
980
|
"crl_sign": True,
|
1029
|
-
"decipher_only": True,
|
1030
|
-
},
|
1031
|
-
"extended_key_usage": {
|
1032
|
-
"server_auth": True,
|
1033
|
-
"client_auth": False,
|
1034
|
-
"email_protection": True,
|
1035
|
-
"code_signing": True,
|
1036
|
-
"time_stamping": True,
|
1037
981
|
},
|
982
|
+
"extended_key_usage": {},
|
1038
983
|
},
|
1039
984
|
},
|
1040
985
|
},
|
1041
|
-
lifetime="
|
986
|
+
lifetime=f"{10 * 365 * 24 * 3600}s",
|
1042
987
|
key_spec={
|
1043
988
|
"cloud_kms_key_version": "projects/keys-project/locations/us-central1/keyRings/key-ring/cryptoKeys/crypto-key/cryptoKeyVersions/1",
|
1044
989
|
})
|
@@ -1139,40 +1084,24 @@ class Authority(pulumi.CustomResource):
|
|
1139
1084
|
config={
|
1140
1085
|
"subject_config": {
|
1141
1086
|
"subject": {
|
1142
|
-
"organization": "
|
1087
|
+
"organization": "ACME",
|
1143
1088
|
"common_name": "my-certificate-authority",
|
1144
1089
|
},
|
1145
|
-
"subject_alt_name": {
|
1146
|
-
"dns_names": ["hashicorp.com"],
|
1147
|
-
},
|
1148
1090
|
},
|
1149
1091
|
"x509_config": {
|
1150
1092
|
"ca_options": {
|
1151
1093
|
"is_ca": True,
|
1152
|
-
"max_issuer_path_length": 10,
|
1153
1094
|
},
|
1154
1095
|
"key_usage": {
|
1155
1096
|
"base_key_usage": {
|
1156
|
-
"digital_signature": True,
|
1157
|
-
"content_commitment": True,
|
1158
|
-
"key_encipherment": False,
|
1159
|
-
"data_encipherment": True,
|
1160
|
-
"key_agreement": True,
|
1161
1097
|
"cert_sign": True,
|
1162
1098
|
"crl_sign": True,
|
1163
|
-
"decipher_only": True,
|
1164
|
-
},
|
1165
|
-
"extended_key_usage": {
|
1166
|
-
"server_auth": True,
|
1167
|
-
"client_auth": False,
|
1168
|
-
"email_protection": True,
|
1169
|
-
"code_signing": True,
|
1170
|
-
"time_stamping": True,
|
1171
1099
|
},
|
1100
|
+
"extended_key_usage": {},
|
1172
1101
|
},
|
1173
1102
|
},
|
1174
1103
|
},
|
1175
|
-
lifetime="
|
1104
|
+
lifetime=f"{10 * 365 * 24 * 3600}s",
|
1176
1105
|
key_spec={
|
1177
1106
|
"algorithm": "RSA_PKCS1_4096_SHA256",
|
1178
1107
|
})
|
@@ -1190,12 +1119,9 @@ class Authority(pulumi.CustomResource):
|
|
1190
1119
|
config={
|
1191
1120
|
"subject_config": {
|
1192
1121
|
"subject": {
|
1193
|
-
"organization": "
|
1122
|
+
"organization": "ACME",
|
1194
1123
|
"common_name": "my-certificate-authority",
|
1195
1124
|
},
|
1196
|
-
"subject_alt_name": {
|
1197
|
-
"dns_names": ["hashicorp.com"],
|
1198
|
-
},
|
1199
1125
|
},
|
1200
1126
|
"x509_config": {
|
1201
1127
|
"ca_options": {
|
@@ -1206,9 +1132,7 @@ class Authority(pulumi.CustomResource):
|
|
1206
1132
|
"cert_sign": True,
|
1207
1133
|
"crl_sign": True,
|
1208
1134
|
},
|
1209
|
-
"extended_key_usage": {
|
1210
|
-
"server_auth": False,
|
1211
|
-
},
|
1135
|
+
"extended_key_usage": {},
|
1212
1136
|
},
|
1213
1137
|
},
|
1214
1138
|
},
|
@@ -1229,42 +1153,27 @@ class Authority(pulumi.CustomResource):
|
|
1229
1153
|
config={
|
1230
1154
|
"subject_config": {
|
1231
1155
|
"subject": {
|
1232
|
-
"organization": "
|
1156
|
+
"organization": "ACME",
|
1233
1157
|
"common_name": "my-subordinate-authority",
|
1234
1158
|
},
|
1235
|
-
"subject_alt_name": {
|
1236
|
-
"dns_names": ["hashicorp.com"],
|
1237
|
-
},
|
1238
1159
|
},
|
1239
1160
|
"x509_config": {
|
1240
1161
|
"ca_options": {
|
1241
1162
|
"is_ca": True,
|
1242
|
-
"
|
1163
|
+
"zero_max_issuer_path_length": True,
|
1243
1164
|
},
|
1244
1165
|
"key_usage": {
|
1245
1166
|
"base_key_usage": {
|
1246
|
-
"digital_signature": True,
|
1247
|
-
"content_commitment": True,
|
1248
|
-
"key_encipherment": False,
|
1249
|
-
"data_encipherment": True,
|
1250
|
-
"key_agreement": True,
|
1251
1167
|
"cert_sign": True,
|
1252
1168
|
"crl_sign": True,
|
1253
|
-
"decipher_only": True,
|
1254
|
-
},
|
1255
|
-
"extended_key_usage": {
|
1256
|
-
"server_auth": True,
|
1257
|
-
"client_auth": False,
|
1258
|
-
"email_protection": True,
|
1259
|
-
"code_signing": True,
|
1260
|
-
"time_stamping": True,
|
1261
1169
|
},
|
1170
|
+
"extended_key_usage": {},
|
1262
1171
|
},
|
1263
1172
|
},
|
1264
1173
|
},
|
1265
|
-
lifetime="
|
1174
|
+
lifetime=f"{5 * 365 * 24 * 3600}s",
|
1266
1175
|
key_spec={
|
1267
|
-
"algorithm": "
|
1176
|
+
"algorithm": "RSA_PKCS1_2048_SHA256",
|
1268
1177
|
},
|
1269
1178
|
type="SUBORDINATE")
|
1270
1179
|
```
|
@@ -1301,16 +1210,13 @@ class Authority(pulumi.CustomResource):
|
|
1301
1210
|
"x509_config": {
|
1302
1211
|
"ca_options": {
|
1303
1212
|
"is_ca": True,
|
1304
|
-
"max_issuer_path_length": 10,
|
1305
1213
|
},
|
1306
1214
|
"key_usage": {
|
1307
1215
|
"base_key_usage": {
|
1308
1216
|
"cert_sign": True,
|
1309
1217
|
"crl_sign": True,
|
1310
1218
|
},
|
1311
|
-
"extended_key_usage": {
|
1312
|
-
"server_auth": False,
|
1313
|
-
},
|
1219
|
+
"extended_key_usage": {},
|
1314
1220
|
},
|
1315
1221
|
"name_constraints": {
|
1316
1222
|
"critical": True,
|
@@ -1344,12 +1250,9 @@ class Authority(pulumi.CustomResource):
|
|
1344
1250
|
config={
|
1345
1251
|
"subject_config": {
|
1346
1252
|
"subject": {
|
1347
|
-
"organization": "
|
1253
|
+
"organization": "ACME",
|
1348
1254
|
"common_name": "my-certificate-authority",
|
1349
1255
|
},
|
1350
|
-
"subject_alt_name": {
|
1351
|
-
"dns_names": ["hashicorp.com"],
|
1352
|
-
},
|
1353
1256
|
},
|
1354
1257
|
"subject_key_id": {
|
1355
1258
|
"key_id": "4cf3372289b1d411b999dbb9ebcd44744b6b2fca",
|
@@ -1357,30 +1260,17 @@ class Authority(pulumi.CustomResource):
|
|
1357
1260
|
"x509_config": {
|
1358
1261
|
"ca_options": {
|
1359
1262
|
"is_ca": True,
|
1360
|
-
"max_issuer_path_length": 10,
|
1361
1263
|
},
|
1362
1264
|
"key_usage": {
|
1363
1265
|
"base_key_usage": {
|
1364
|
-
"digital_signature": True,
|
1365
|
-
"content_commitment": True,
|
1366
|
-
"key_encipherment": False,
|
1367
|
-
"data_encipherment": True,
|
1368
|
-
"key_agreement": True,
|
1369
1266
|
"cert_sign": True,
|
1370
1267
|
"crl_sign": True,
|
1371
|
-
"decipher_only": True,
|
1372
|
-
},
|
1373
|
-
"extended_key_usage": {
|
1374
|
-
"server_auth": True,
|
1375
|
-
"client_auth": False,
|
1376
|
-
"email_protection": True,
|
1377
|
-
"code_signing": True,
|
1378
|
-
"time_stamping": True,
|
1379
1268
|
},
|
1269
|
+
"extended_key_usage": {},
|
1380
1270
|
},
|
1381
1271
|
},
|
1382
1272
|
},
|
1383
|
-
lifetime="
|
1273
|
+
lifetime=f"{10 * 365 * 24 * 3600}s",
|
1384
1274
|
key_spec={
|
1385
1275
|
"cloud_kms_key_version": "projects/keys-project/locations/us-central1/keyRings/key-ring/cryptoKeys/crypto-key/cryptoKeyVersions/1",
|
1386
1276
|
})
|
pulumi_gcp/cloudrun/service.py
CHANGED
@@ -555,11 +555,6 @@ class Service(pulumi.CustomResource):
|
|
555
555
|
default = gcp.cloudrun.Service("default",
|
556
556
|
name="cloudrun-srv",
|
557
557
|
location="us-central1",
|
558
|
-
metadata={
|
559
|
-
"annotations": {
|
560
|
-
"run.googleapis.com/launch-stage": "BETA",
|
561
|
-
},
|
562
|
-
},
|
563
558
|
template={
|
564
559
|
"metadata": {
|
565
560
|
"annotations": {
|
@@ -885,11 +880,6 @@ class Service(pulumi.CustomResource):
|
|
885
880
|
default = gcp.cloudrun.Service("default",
|
886
881
|
name="cloudrun-srv",
|
887
882
|
location="us-central1",
|
888
|
-
metadata={
|
889
|
-
"annotations": {
|
890
|
-
"run.googleapis.com/launch-stage": "BETA",
|
891
|
-
},
|
892
|
-
},
|
893
883
|
template={
|
894
884
|
"metadata": {
|
895
885
|
"annotations": {
|
@@ -27,7 +27,7 @@ class GetServiceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getService.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, annotations=None, binary_authorizations=None, client=None, client_version=None, conditions=None, create_time=None, creator=None, custom_audiences=None, default_uri_disabled=None, delete_time=None, deletion_protection=None, description=None, effective_annotations=None, effective_labels=None, etag=None, expire_time=None, generation=None, id=None, ingress=None, invoker_iam_disabled=None, labels=None, last_modifier=None, latest_created_revision=None, latest_ready_revision=None, launch_stage=None, location=None, name=None, observed_generation=None, project=None, pulumi_labels=None, reconciling=None, scalings=None, templates=None, terminal_conditions=None, traffic_statuses=None, traffics=None, uid=None, update_time=None, uri=None):
|
30
|
+
def __init__(__self__, annotations=None, binary_authorizations=None, client=None, client_version=None, conditions=None, create_time=None, creator=None, custom_audiences=None, default_uri_disabled=None, delete_time=None, deletion_protection=None, description=None, effective_annotations=None, effective_labels=None, etag=None, expire_time=None, generation=None, id=None, ingress=None, invoker_iam_disabled=None, labels=None, last_modifier=None, latest_created_revision=None, latest_ready_revision=None, launch_stage=None, location=None, name=None, observed_generation=None, project=None, pulumi_labels=None, reconciling=None, scalings=None, templates=None, terminal_conditions=None, traffic_statuses=None, traffics=None, uid=None, update_time=None, uri=None, urls=None):
|
31
31
|
if annotations and not isinstance(annotations, dict):
|
32
32
|
raise TypeError("Expected argument 'annotations' to be a dict")
|
33
33
|
pulumi.set(__self__, "annotations", annotations)
|
@@ -145,6 +145,9 @@ class GetServiceResult:
|
|
145
145
|
if uri and not isinstance(uri, str):
|
146
146
|
raise TypeError("Expected argument 'uri' to be a str")
|
147
147
|
pulumi.set(__self__, "uri", uri)
|
148
|
+
if urls and not isinstance(urls, list):
|
149
|
+
raise TypeError("Expected argument 'urls' to be a list")
|
150
|
+
pulumi.set(__self__, "urls", urls)
|
148
151
|
|
149
152
|
@property
|
150
153
|
@pulumi.getter
|
@@ -344,6 +347,11 @@ class GetServiceResult:
|
|
344
347
|
def uri(self) -> str:
|
345
348
|
return pulumi.get(self, "uri")
|
346
349
|
|
350
|
+
@property
|
351
|
+
@pulumi.getter
|
352
|
+
def urls(self) -> Sequence[str]:
|
353
|
+
return pulumi.get(self, "urls")
|
354
|
+
|
347
355
|
|
348
356
|
class AwaitableGetServiceResult(GetServiceResult):
|
349
357
|
# pylint: disable=using-constant-test
|
@@ -389,7 +397,8 @@ class AwaitableGetServiceResult(GetServiceResult):
|
|
389
397
|
traffics=self.traffics,
|
390
398
|
uid=self.uid,
|
391
399
|
update_time=self.update_time,
|
392
|
-
uri=self.uri
|
400
|
+
uri=self.uri,
|
401
|
+
urls=self.urls)
|
393
402
|
|
394
403
|
|
395
404
|
def get_service(location: Optional[str] = None,
|
@@ -465,7 +474,8 @@ def get_service(location: Optional[str] = None,
|
|
465
474
|
traffics=pulumi.get(__ret__, 'traffics'),
|
466
475
|
uid=pulumi.get(__ret__, 'uid'),
|
467
476
|
update_time=pulumi.get(__ret__, 'update_time'),
|
468
|
-
uri=pulumi.get(__ret__, 'uri')
|
477
|
+
uri=pulumi.get(__ret__, 'uri'),
|
478
|
+
urls=pulumi.get(__ret__, 'urls'))
|
469
479
|
def get_service_output(location: Optional[pulumi.Input[Optional[str]]] = None,
|
470
480
|
name: Optional[pulumi.Input[str]] = None,
|
471
481
|
project: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -538,4 +548,5 @@ def get_service_output(location: Optional[pulumi.Input[Optional[str]]] = None,
|
|
538
548
|
traffics=pulumi.get(__response__, 'traffics'),
|
539
549
|
uid=pulumi.get(__response__, 'uid'),
|
540
550
|
update_time=pulumi.get(__response__, 'update_time'),
|
541
|
-
uri=pulumi.get(__response__, 'uri')
|
551
|
+
uri=pulumi.get(__response__, 'uri'),
|
552
|
+
urls=pulumi.get(__response__, 'urls')))
|
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -394,7 +394,8 @@ class _ServiceState:
|
|
394
394
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]] = None,
|
395
395
|
uid: Optional[pulumi.Input[str]] = None,
|
396
396
|
update_time: Optional[pulumi.Input[str]] = None,
|
397
|
-
uri: Optional[pulumi.Input[str]] = None
|
397
|
+
uri: Optional[pulumi.Input[str]] = None,
|
398
|
+
urls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
398
399
|
"""
|
399
400
|
Input properties used for looking up and filtering Service resources.
|
400
401
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Unstructured key value map that may be set by external tools to store and arbitrary metadata. They are not queryable and
|
@@ -465,6 +466,7 @@ class _ServiceState:
|
|
465
466
|
:param pulumi.Input[str] update_time: The last-modified time.
|
466
467
|
:param pulumi.Input[str] uri: (Output)
|
467
468
|
Displays the target URI.
|
469
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] urls: All URLs serving traffic for this Service.
|
468
470
|
"""
|
469
471
|
if annotations is not None:
|
470
472
|
pulumi.set(__self__, "annotations", annotations)
|
@@ -542,6 +544,8 @@ class _ServiceState:
|
|
542
544
|
pulumi.set(__self__, "update_time", update_time)
|
543
545
|
if uri is not None:
|
544
546
|
pulumi.set(__self__, "uri", uri)
|
547
|
+
if urls is not None:
|
548
|
+
pulumi.set(__self__, "urls", urls)
|
545
549
|
|
546
550
|
@property
|
547
551
|
@pulumi.getter
|
@@ -1023,6 +1027,18 @@ class _ServiceState:
|
|
1023
1027
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
1024
1028
|
pulumi.set(self, "uri", value)
|
1025
1029
|
|
1030
|
+
@property
|
1031
|
+
@pulumi.getter
|
1032
|
+
def urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1033
|
+
"""
|
1034
|
+
All URLs serving traffic for this Service.
|
1035
|
+
"""
|
1036
|
+
return pulumi.get(self, "urls")
|
1037
|
+
|
1038
|
+
@urls.setter
|
1039
|
+
def urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1040
|
+
pulumi.set(self, "urls", value)
|
1041
|
+
|
1026
1042
|
|
1027
1043
|
class Service(pulumi.CustomResource):
|
1028
1044
|
@overload
|
@@ -2168,6 +2184,7 @@ class Service(pulumi.CustomResource):
|
|
2168
2184
|
__props__.__dict__["uid"] = None
|
2169
2185
|
__props__.__dict__["update_time"] = None
|
2170
2186
|
__props__.__dict__["uri"] = None
|
2187
|
+
__props__.__dict__["urls"] = None
|
2171
2188
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
|
2172
2189
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
2173
2190
|
super(Service, __self__).__init__(
|
@@ -2217,7 +2234,8 @@ class Service(pulumi.CustomResource):
|
|
2217
2234
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceTrafficArgs', 'ServiceTrafficArgsDict']]]]] = None,
|
2218
2235
|
uid: Optional[pulumi.Input[str]] = None,
|
2219
2236
|
update_time: Optional[pulumi.Input[str]] = None,
|
2220
|
-
uri: Optional[pulumi.Input[str]] = None
|
2237
|
+
uri: Optional[pulumi.Input[str]] = None,
|
2238
|
+
urls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'Service':
|
2221
2239
|
"""
|
2222
2240
|
Get an existing Service resource's state with the given name, id, and optional extra
|
2223
2241
|
properties used to qualify the lookup.
|
@@ -2293,6 +2311,7 @@ class Service(pulumi.CustomResource):
|
|
2293
2311
|
:param pulumi.Input[str] update_time: The last-modified time.
|
2294
2312
|
:param pulumi.Input[str] uri: (Output)
|
2295
2313
|
Displays the target URI.
|
2314
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] urls: All URLs serving traffic for this Service.
|
2296
2315
|
"""
|
2297
2316
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
2298
2317
|
|
@@ -2336,6 +2355,7 @@ class Service(pulumi.CustomResource):
|
|
2336
2355
|
__props__.__dict__["uid"] = uid
|
2337
2356
|
__props__.__dict__["update_time"] = update_time
|
2338
2357
|
__props__.__dict__["uri"] = uri
|
2358
|
+
__props__.__dict__["urls"] = urls
|
2339
2359
|
return Service(resource_name, opts=opts, __props__=__props__)
|
2340
2360
|
|
2341
2361
|
@property
|
@@ -2666,3 +2686,11 @@ class Service(pulumi.CustomResource):
|
|
2666
2686
|
"""
|
2667
2687
|
return pulumi.get(self, "uri")
|
2668
2688
|
|
2689
|
+
@property
|
2690
|
+
@pulumi.getter
|
2691
|
+
def urls(self) -> pulumi.Output[Sequence[str]]:
|
2692
|
+
"""
|
2693
|
+
All URLs serving traffic for this Service.
|
2694
|
+
"""
|
2695
|
+
return pulumi.get(self, "urls")
|
2696
|
+
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -9632,7 +9632,7 @@ if not MYPY:
|
|
9632
9632
|
type: pulumi.Input[str]
|
9633
9633
|
"""
|
9634
9634
|
The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
9635
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
9635
|
+
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `IDPF`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
9636
9636
|
"""
|
9637
9637
|
elif False:
|
9638
9638
|
ImageGuestOsFeatureArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -9643,7 +9643,7 @@ class ImageGuestOsFeatureArgs:
|
|
9643
9643
|
type: pulumi.Input[str]):
|
9644
9644
|
"""
|
9645
9645
|
:param pulumi.Input[str] type: The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
9646
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
9646
|
+
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `IDPF`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
9647
9647
|
"""
|
9648
9648
|
pulumi.set(__self__, "type", type)
|
9649
9649
|
|
@@ -9652,7 +9652,7 @@ class ImageGuestOsFeatureArgs:
|
|
9652
9652
|
def type(self) -> pulumi.Input[str]:
|
9653
9653
|
"""
|
9654
9654
|
The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
9655
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
9655
|
+
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `IDPF`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
9656
9656
|
"""
|
9657
9657
|
return pulumi.get(self, "type")
|
9658
9658
|
|
@@ -11599,7 +11599,7 @@ if not MYPY:
|
|
11599
11599
|
"""
|
11600
11600
|
nic_type: NotRequired[pulumi.Input[str]]
|
11601
11601
|
"""
|
11602
|
-
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
|
11602
|
+
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET, IDPF
|
11603
11603
|
"""
|
11604
11604
|
queue_count: NotRequired[pulumi.Input[int]]
|
11605
11605
|
"""
|
@@ -11655,7 +11655,7 @@ class InstanceFromMachineImageNetworkInterfaceArgs:
|
|
11655
11655
|
:param pulumi.Input[str] network: The name or self_link of the network attached to this interface.
|
11656
11656
|
:param pulumi.Input[str] network_attachment: The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
|
11657
11657
|
:param pulumi.Input[str] network_ip: The private IP address assigned to the instance.
|
11658
|
-
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
|
11658
|
+
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET, IDPF
|
11659
11659
|
:param pulumi.Input[int] queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
|
11660
11660
|
:param pulumi.Input[str] security_policy: A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
|
11661
11661
|
:param pulumi.Input[str] stack_type: The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
|
@@ -11820,7 +11820,7 @@ class InstanceFromMachineImageNetworkInterfaceArgs:
|
|
11820
11820
|
@pulumi.getter(name="nicType")
|
11821
11821
|
def nic_type(self) -> Optional[pulumi.Input[str]]:
|
11822
11822
|
"""
|
11823
|
-
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
|
11823
|
+
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET, IDPF
|
11824
11824
|
"""
|
11825
11825
|
return pulumi.get(self, "nic_type")
|
11826
11826
|
|
@@ -13765,7 +13765,7 @@ if not MYPY:
|
|
13765
13765
|
"""
|
13766
13766
|
nic_type: NotRequired[pulumi.Input[str]]
|
13767
13767
|
"""
|
13768
|
-
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
|
13768
|
+
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET, IDPF
|
13769
13769
|
"""
|
13770
13770
|
queue_count: NotRequired[pulumi.Input[int]]
|
13771
13771
|
"""
|
@@ -13821,7 +13821,7 @@ class InstanceFromTemplateNetworkInterfaceArgs:
|
|
13821
13821
|
:param pulumi.Input[str] network: The name or self_link of the network attached to this interface.
|
13822
13822
|
:param pulumi.Input[str] network_attachment: The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
|
13823
13823
|
:param pulumi.Input[str] network_ip: The private IP address assigned to the instance.
|
13824
|
-
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
|
13824
|
+
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET, IDPF
|
13825
13825
|
:param pulumi.Input[int] queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
|
13826
13826
|
:param pulumi.Input[str] security_policy: A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
|
13827
13827
|
:param pulumi.Input[str] stack_type: The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
|
@@ -13986,7 +13986,7 @@ class InstanceFromTemplateNetworkInterfaceArgs:
|
|
13986
13986
|
@pulumi.getter(name="nicType")
|
13987
13987
|
def nic_type(self) -> Optional[pulumi.Input[str]]:
|
13988
13988
|
"""
|
13989
|
-
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
|
13989
|
+
The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET, IDPF
|
13990
13990
|
"""
|
13991
13991
|
return pulumi.get(self, "nic_type")
|
13992
13992
|
|
@@ -16523,7 +16523,7 @@ if not MYPY:
|
|
16523
16523
|
"""
|
16524
16524
|
nic_type: NotRequired[pulumi.Input[str]]
|
16525
16525
|
"""
|
16526
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET.
|
16526
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF.
|
16527
16527
|
"""
|
16528
16528
|
queue_count: NotRequired[pulumi.Input[int]]
|
16529
16529
|
"""
|
@@ -16596,7 +16596,7 @@ class InstanceNetworkInterfaceArgs:
|
|
16596
16596
|
:param pulumi.Input[str] network_attachment: The URL of the network attachment that this interface should connect to in the following format: `projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}`.
|
16597
16597
|
:param pulumi.Input[str] network_ip: The private IP address to assign to the instance. If
|
16598
16598
|
empty, the address will be automatically assigned.
|
16599
|
-
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET.
|
16599
|
+
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF.
|
16600
16600
|
:param pulumi.Input[int] queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
|
16601
16601
|
:param pulumi.Input[str] security_policy: A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
|
16602
16602
|
:param pulumi.Input[str] stack_type: The stack type for this network interface to identify whether the IPv6 feature is enabled or not. Values are IPV4_IPV6 or IPV4_ONLY. If not specified, IPV4_ONLY will be used.
|
@@ -16778,7 +16778,7 @@ class InstanceNetworkInterfaceArgs:
|
|
16778
16778
|
@pulumi.getter(name="nicType")
|
16779
16779
|
def nic_type(self) -> Optional[pulumi.Input[str]]:
|
16780
16780
|
"""
|
16781
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET.
|
16781
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF.
|
16782
16782
|
"""
|
16783
16783
|
return pulumi.get(self, "nic_type")
|
16784
16784
|
|