pulumi-gcp 8.10.0__py3-none-any.whl → 8.10.0a1731584999__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 -24
- pulumi_gcp/accesscontextmanager/__init__.py +0 -1
- pulumi_gcp/accesscontextmanager/_inputs.py +54 -90
- pulumi_gcp/accesscontextmanager/outputs.py +36 -60
- pulumi_gcp/artifactregistry/_inputs.py +0 -56
- pulumi_gcp/artifactregistry/outputs.py +0 -65
- pulumi_gcp/artifactregistry/repository.py +0 -48
- pulumi_gcp/backupdisasterrecovery/__init__.py +0 -1
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +0 -63
- pulumi_gcp/backupdisasterrecovery/outputs.py +0 -402
- pulumi_gcp/certificateauthority/authority.py +138 -28
- pulumi_gcp/cloudrun/service.py +10 -0
- pulumi_gcp/cloudrunv2/get_service.py +4 -15
- pulumi_gcp/cloudrunv2/service.py +2 -30
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -490
- pulumi_gcp/dataproc/outputs.py +0 -385
- pulumi_gcp/filestore/_inputs.py +0 -152
- pulumi_gcp/filestore/get_instance.py +1 -12
- pulumi_gcp/filestore/instance.py +0 -47
- pulumi_gcp/filestore/outputs.py +0 -229
- pulumi_gcp/iam/__init__.py +0 -2
- pulumi_gcp/iam/_inputs.py +0 -274
- pulumi_gcp/iam/outputs.py +0 -198
- pulumi_gcp/managedkafka/cluster.py +0 -4
- pulumi_gcp/managedkafka/topic.py +0 -4
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +0 -213
- pulumi_gcp/redis/cluster.py +0 -289
- pulumi_gcp/redis/outputs.py +0 -185
- pulumi_gcp/securesourcemanager/_inputs.py +0 -33
- pulumi_gcp/securesourcemanager/instance.py +3 -90
- pulumi_gcp/securesourcemanager/outputs.py +0 -19
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +0 -73
- pulumi_gcp/sql/database_instance.py +0 -60
- pulumi_gcp/sql/outputs.py +0 -146
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- pulumi_gcp/vertex/ai_endpoint.py +29 -22
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/RECORD +47 -52
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/WHEEL +1 -1
- pulumi_gcp/accesscontextmanager/get_access_policy.py +0 -158
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +0 -263
- pulumi_gcp/dataproc/gdc_spark_application.py +0 -1658
- pulumi_gcp/iam/folders_policy_binding.py +0 -917
- pulumi_gcp/iam/organizations_policy_binding.py +0 -901
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/top_level.txt +0 -0
@@ -797,24 +797,40 @@ class Authority(pulumi.CustomResource):
|
|
797
797
|
config={
|
798
798
|
"subject_config": {
|
799
799
|
"subject": {
|
800
|
-
"organization": "
|
800
|
+
"organization": "HashiCorp",
|
801
801
|
"common_name": "my-certificate-authority",
|
802
802
|
},
|
803
|
+
"subject_alt_name": {
|
804
|
+
"dns_names": ["hashicorp.com"],
|
805
|
+
},
|
803
806
|
},
|
804
807
|
"x509_config": {
|
805
808
|
"ca_options": {
|
806
809
|
"is_ca": True,
|
810
|
+
"max_issuer_path_length": 10,
|
807
811
|
},
|
808
812
|
"key_usage": {
|
809
813
|
"base_key_usage": {
|
814
|
+
"digital_signature": True,
|
815
|
+
"content_commitment": True,
|
816
|
+
"key_encipherment": False,
|
817
|
+
"data_encipherment": True,
|
818
|
+
"key_agreement": True,
|
810
819
|
"cert_sign": True,
|
811
820
|
"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,
|
812
829
|
},
|
813
|
-
"extended_key_usage": {},
|
814
830
|
},
|
815
831
|
},
|
816
832
|
},
|
817
|
-
lifetime=
|
833
|
+
lifetime="86400s",
|
818
834
|
key_spec={
|
819
835
|
"algorithm": "RSA_PKCS1_4096_SHA256",
|
820
836
|
})
|
@@ -832,9 +848,12 @@ class Authority(pulumi.CustomResource):
|
|
832
848
|
config={
|
833
849
|
"subject_config": {
|
834
850
|
"subject": {
|
835
|
-
"organization": "
|
851
|
+
"organization": "HashiCorp",
|
836
852
|
"common_name": "my-certificate-authority",
|
837
853
|
},
|
854
|
+
"subject_alt_name": {
|
855
|
+
"dns_names": ["hashicorp.com"],
|
856
|
+
},
|
838
857
|
},
|
839
858
|
"x509_config": {
|
840
859
|
"ca_options": {
|
@@ -845,7 +864,9 @@ class Authority(pulumi.CustomResource):
|
|
845
864
|
"cert_sign": True,
|
846
865
|
"crl_sign": True,
|
847
866
|
},
|
848
|
-
"extended_key_usage": {
|
867
|
+
"extended_key_usage": {
|
868
|
+
"server_auth": False,
|
869
|
+
},
|
849
870
|
},
|
850
871
|
},
|
851
872
|
},
|
@@ -866,27 +887,42 @@ class Authority(pulumi.CustomResource):
|
|
866
887
|
config={
|
867
888
|
"subject_config": {
|
868
889
|
"subject": {
|
869
|
-
"organization": "
|
890
|
+
"organization": "HashiCorp",
|
870
891
|
"common_name": "my-subordinate-authority",
|
871
892
|
},
|
893
|
+
"subject_alt_name": {
|
894
|
+
"dns_names": ["hashicorp.com"],
|
895
|
+
},
|
872
896
|
},
|
873
897
|
"x509_config": {
|
874
898
|
"ca_options": {
|
875
899
|
"is_ca": True,
|
876
|
-
"
|
900
|
+
"max_issuer_path_length": 0,
|
877
901
|
},
|
878
902
|
"key_usage": {
|
879
903
|
"base_key_usage": {
|
904
|
+
"digital_signature": True,
|
905
|
+
"content_commitment": True,
|
906
|
+
"key_encipherment": False,
|
907
|
+
"data_encipherment": True,
|
908
|
+
"key_agreement": True,
|
880
909
|
"cert_sign": True,
|
881
910
|
"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,
|
882
919
|
},
|
883
|
-
"extended_key_usage": {},
|
884
920
|
},
|
885
921
|
},
|
886
922
|
},
|
887
|
-
lifetime=
|
923
|
+
lifetime="86400s",
|
888
924
|
key_spec={
|
889
|
-
"algorithm": "
|
925
|
+
"algorithm": "RSA_PKCS1_4096_SHA256",
|
890
926
|
},
|
891
927
|
type="SUBORDINATE")
|
892
928
|
```
|
@@ -923,13 +959,16 @@ class Authority(pulumi.CustomResource):
|
|
923
959
|
"x509_config": {
|
924
960
|
"ca_options": {
|
925
961
|
"is_ca": True,
|
962
|
+
"max_issuer_path_length": 10,
|
926
963
|
},
|
927
964
|
"key_usage": {
|
928
965
|
"base_key_usage": {
|
929
966
|
"cert_sign": True,
|
930
967
|
"crl_sign": True,
|
931
968
|
},
|
932
|
-
"extended_key_usage": {
|
969
|
+
"extended_key_usage": {
|
970
|
+
"server_auth": False,
|
971
|
+
},
|
933
972
|
},
|
934
973
|
"name_constraints": {
|
935
974
|
"critical": True,
|
@@ -963,9 +1002,12 @@ class Authority(pulumi.CustomResource):
|
|
963
1002
|
config={
|
964
1003
|
"subject_config": {
|
965
1004
|
"subject": {
|
966
|
-
"organization": "
|
1005
|
+
"organization": "HashiCorp",
|
967
1006
|
"common_name": "my-certificate-authority",
|
968
1007
|
},
|
1008
|
+
"subject_alt_name": {
|
1009
|
+
"dns_names": ["hashicorp.com"],
|
1010
|
+
},
|
969
1011
|
},
|
970
1012
|
"subject_key_id": {
|
971
1013
|
"key_id": "4cf3372289b1d411b999dbb9ebcd44744b6b2fca",
|
@@ -973,17 +1015,30 @@ class Authority(pulumi.CustomResource):
|
|
973
1015
|
"x509_config": {
|
974
1016
|
"ca_options": {
|
975
1017
|
"is_ca": True,
|
1018
|
+
"max_issuer_path_length": 10,
|
976
1019
|
},
|
977
1020
|
"key_usage": {
|
978
1021
|
"base_key_usage": {
|
1022
|
+
"digital_signature": True,
|
1023
|
+
"content_commitment": True,
|
1024
|
+
"key_encipherment": False,
|
1025
|
+
"data_encipherment": True,
|
1026
|
+
"key_agreement": True,
|
979
1027
|
"cert_sign": True,
|
980
1028
|
"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,
|
981
1037
|
},
|
982
|
-
"extended_key_usage": {},
|
983
1038
|
},
|
984
1039
|
},
|
985
1040
|
},
|
986
|
-
lifetime=
|
1041
|
+
lifetime="86400s",
|
987
1042
|
key_spec={
|
988
1043
|
"cloud_kms_key_version": "projects/keys-project/locations/us-central1/keyRings/key-ring/cryptoKeys/crypto-key/cryptoKeyVersions/1",
|
989
1044
|
})
|
@@ -1084,24 +1139,40 @@ class Authority(pulumi.CustomResource):
|
|
1084
1139
|
config={
|
1085
1140
|
"subject_config": {
|
1086
1141
|
"subject": {
|
1087
|
-
"organization": "
|
1142
|
+
"organization": "HashiCorp",
|
1088
1143
|
"common_name": "my-certificate-authority",
|
1089
1144
|
},
|
1145
|
+
"subject_alt_name": {
|
1146
|
+
"dns_names": ["hashicorp.com"],
|
1147
|
+
},
|
1090
1148
|
},
|
1091
1149
|
"x509_config": {
|
1092
1150
|
"ca_options": {
|
1093
1151
|
"is_ca": True,
|
1152
|
+
"max_issuer_path_length": 10,
|
1094
1153
|
},
|
1095
1154
|
"key_usage": {
|
1096
1155
|
"base_key_usage": {
|
1156
|
+
"digital_signature": True,
|
1157
|
+
"content_commitment": True,
|
1158
|
+
"key_encipherment": False,
|
1159
|
+
"data_encipherment": True,
|
1160
|
+
"key_agreement": True,
|
1097
1161
|
"cert_sign": True,
|
1098
1162
|
"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,
|
1099
1171
|
},
|
1100
|
-
"extended_key_usage": {},
|
1101
1172
|
},
|
1102
1173
|
},
|
1103
1174
|
},
|
1104
|
-
lifetime=
|
1175
|
+
lifetime="86400s",
|
1105
1176
|
key_spec={
|
1106
1177
|
"algorithm": "RSA_PKCS1_4096_SHA256",
|
1107
1178
|
})
|
@@ -1119,9 +1190,12 @@ class Authority(pulumi.CustomResource):
|
|
1119
1190
|
config={
|
1120
1191
|
"subject_config": {
|
1121
1192
|
"subject": {
|
1122
|
-
"organization": "
|
1193
|
+
"organization": "HashiCorp",
|
1123
1194
|
"common_name": "my-certificate-authority",
|
1124
1195
|
},
|
1196
|
+
"subject_alt_name": {
|
1197
|
+
"dns_names": ["hashicorp.com"],
|
1198
|
+
},
|
1125
1199
|
},
|
1126
1200
|
"x509_config": {
|
1127
1201
|
"ca_options": {
|
@@ -1132,7 +1206,9 @@ class Authority(pulumi.CustomResource):
|
|
1132
1206
|
"cert_sign": True,
|
1133
1207
|
"crl_sign": True,
|
1134
1208
|
},
|
1135
|
-
"extended_key_usage": {
|
1209
|
+
"extended_key_usage": {
|
1210
|
+
"server_auth": False,
|
1211
|
+
},
|
1136
1212
|
},
|
1137
1213
|
},
|
1138
1214
|
},
|
@@ -1153,27 +1229,42 @@ class Authority(pulumi.CustomResource):
|
|
1153
1229
|
config={
|
1154
1230
|
"subject_config": {
|
1155
1231
|
"subject": {
|
1156
|
-
"organization": "
|
1232
|
+
"organization": "HashiCorp",
|
1157
1233
|
"common_name": "my-subordinate-authority",
|
1158
1234
|
},
|
1235
|
+
"subject_alt_name": {
|
1236
|
+
"dns_names": ["hashicorp.com"],
|
1237
|
+
},
|
1159
1238
|
},
|
1160
1239
|
"x509_config": {
|
1161
1240
|
"ca_options": {
|
1162
1241
|
"is_ca": True,
|
1163
|
-
"
|
1242
|
+
"max_issuer_path_length": 0,
|
1164
1243
|
},
|
1165
1244
|
"key_usage": {
|
1166
1245
|
"base_key_usage": {
|
1246
|
+
"digital_signature": True,
|
1247
|
+
"content_commitment": True,
|
1248
|
+
"key_encipherment": False,
|
1249
|
+
"data_encipherment": True,
|
1250
|
+
"key_agreement": True,
|
1167
1251
|
"cert_sign": True,
|
1168
1252
|
"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,
|
1169
1261
|
},
|
1170
|
-
"extended_key_usage": {},
|
1171
1262
|
},
|
1172
1263
|
},
|
1173
1264
|
},
|
1174
|
-
lifetime=
|
1265
|
+
lifetime="86400s",
|
1175
1266
|
key_spec={
|
1176
|
-
"algorithm": "
|
1267
|
+
"algorithm": "RSA_PKCS1_4096_SHA256",
|
1177
1268
|
},
|
1178
1269
|
type="SUBORDINATE")
|
1179
1270
|
```
|
@@ -1210,13 +1301,16 @@ class Authority(pulumi.CustomResource):
|
|
1210
1301
|
"x509_config": {
|
1211
1302
|
"ca_options": {
|
1212
1303
|
"is_ca": True,
|
1304
|
+
"max_issuer_path_length": 10,
|
1213
1305
|
},
|
1214
1306
|
"key_usage": {
|
1215
1307
|
"base_key_usage": {
|
1216
1308
|
"cert_sign": True,
|
1217
1309
|
"crl_sign": True,
|
1218
1310
|
},
|
1219
|
-
"extended_key_usage": {
|
1311
|
+
"extended_key_usage": {
|
1312
|
+
"server_auth": False,
|
1313
|
+
},
|
1220
1314
|
},
|
1221
1315
|
"name_constraints": {
|
1222
1316
|
"critical": True,
|
@@ -1250,9 +1344,12 @@ class Authority(pulumi.CustomResource):
|
|
1250
1344
|
config={
|
1251
1345
|
"subject_config": {
|
1252
1346
|
"subject": {
|
1253
|
-
"organization": "
|
1347
|
+
"organization": "HashiCorp",
|
1254
1348
|
"common_name": "my-certificate-authority",
|
1255
1349
|
},
|
1350
|
+
"subject_alt_name": {
|
1351
|
+
"dns_names": ["hashicorp.com"],
|
1352
|
+
},
|
1256
1353
|
},
|
1257
1354
|
"subject_key_id": {
|
1258
1355
|
"key_id": "4cf3372289b1d411b999dbb9ebcd44744b6b2fca",
|
@@ -1260,17 +1357,30 @@ class Authority(pulumi.CustomResource):
|
|
1260
1357
|
"x509_config": {
|
1261
1358
|
"ca_options": {
|
1262
1359
|
"is_ca": True,
|
1360
|
+
"max_issuer_path_length": 10,
|
1263
1361
|
},
|
1264
1362
|
"key_usage": {
|
1265
1363
|
"base_key_usage": {
|
1364
|
+
"digital_signature": True,
|
1365
|
+
"content_commitment": True,
|
1366
|
+
"key_encipherment": False,
|
1367
|
+
"data_encipherment": True,
|
1368
|
+
"key_agreement": True,
|
1266
1369
|
"cert_sign": True,
|
1267
1370
|
"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,
|
1268
1379
|
},
|
1269
|
-
"extended_key_usage": {},
|
1270
1380
|
},
|
1271
1381
|
},
|
1272
1382
|
},
|
1273
|
-
lifetime=
|
1383
|
+
lifetime="86400s",
|
1274
1384
|
key_spec={
|
1275
1385
|
"cloud_kms_key_version": "projects/keys-project/locations/us-central1/keyRings/key-ring/cryptoKeys/crypto-key/cryptoKeyVersions/1",
|
1276
1386
|
})
|
pulumi_gcp/cloudrun/service.py
CHANGED
@@ -555,6 +555,11 @@ 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
|
+
},
|
558
563
|
template={
|
559
564
|
"metadata": {
|
560
565
|
"annotations": {
|
@@ -880,6 +885,11 @@ class Service(pulumi.CustomResource):
|
|
880
885
|
default = gcp.cloudrun.Service("default",
|
881
886
|
name="cloudrun-srv",
|
882
887
|
location="us-central1",
|
888
|
+
metadata={
|
889
|
+
"annotations": {
|
890
|
+
"run.googleapis.com/launch-stage": "BETA",
|
891
|
+
},
|
892
|
+
},
|
883
893
|
template={
|
884
894
|
"metadata": {
|
885
895
|
"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):
|
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,9 +145,6 @@ 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)
|
151
148
|
|
152
149
|
@property
|
153
150
|
@pulumi.getter
|
@@ -347,11 +344,6 @@ class GetServiceResult:
|
|
347
344
|
def uri(self) -> str:
|
348
345
|
return pulumi.get(self, "uri")
|
349
346
|
|
350
|
-
@property
|
351
|
-
@pulumi.getter
|
352
|
-
def urls(self) -> Sequence[str]:
|
353
|
-
return pulumi.get(self, "urls")
|
354
|
-
|
355
347
|
|
356
348
|
class AwaitableGetServiceResult(GetServiceResult):
|
357
349
|
# pylint: disable=using-constant-test
|
@@ -397,8 +389,7 @@ class AwaitableGetServiceResult(GetServiceResult):
|
|
397
389
|
traffics=self.traffics,
|
398
390
|
uid=self.uid,
|
399
391
|
update_time=self.update_time,
|
400
|
-
uri=self.uri
|
401
|
-
urls=self.urls)
|
392
|
+
uri=self.uri)
|
402
393
|
|
403
394
|
|
404
395
|
def get_service(location: Optional[str] = None,
|
@@ -474,8 +465,7 @@ def get_service(location: Optional[str] = None,
|
|
474
465
|
traffics=pulumi.get(__ret__, 'traffics'),
|
475
466
|
uid=pulumi.get(__ret__, 'uid'),
|
476
467
|
update_time=pulumi.get(__ret__, 'update_time'),
|
477
|
-
uri=pulumi.get(__ret__, 'uri')
|
478
|
-
urls=pulumi.get(__ret__, 'urls'))
|
468
|
+
uri=pulumi.get(__ret__, 'uri'))
|
479
469
|
def get_service_output(location: Optional[pulumi.Input[Optional[str]]] = None,
|
480
470
|
name: Optional[pulumi.Input[str]] = None,
|
481
471
|
project: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -548,5 +538,4 @@ def get_service_output(location: Optional[pulumi.Input[Optional[str]]] = None,
|
|
548
538
|
traffics=pulumi.get(__response__, 'traffics'),
|
549
539
|
uid=pulumi.get(__response__, 'uid'),
|
550
540
|
update_time=pulumi.get(__response__, 'update_time'),
|
551
|
-
uri=pulumi.get(__response__, 'uri')
|
552
|
-
urls=pulumi.get(__response__, 'urls')))
|
541
|
+
uri=pulumi.get(__response__, 'uri')))
|
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -394,8 +394,7 @@ 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
|
398
|
-
urls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
397
|
+
uri: Optional[pulumi.Input[str]] = None):
|
399
398
|
"""
|
400
399
|
Input properties used for looking up and filtering Service resources.
|
401
400
|
: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
|
@@ -466,7 +465,6 @@ class _ServiceState:
|
|
466
465
|
:param pulumi.Input[str] update_time: The last-modified time.
|
467
466
|
:param pulumi.Input[str] uri: (Output)
|
468
467
|
Displays the target URI.
|
469
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] urls: All URLs serving traffic for this Service.
|
470
468
|
"""
|
471
469
|
if annotations is not None:
|
472
470
|
pulumi.set(__self__, "annotations", annotations)
|
@@ -544,8 +542,6 @@ class _ServiceState:
|
|
544
542
|
pulumi.set(__self__, "update_time", update_time)
|
545
543
|
if uri is not None:
|
546
544
|
pulumi.set(__self__, "uri", uri)
|
547
|
-
if urls is not None:
|
548
|
-
pulumi.set(__self__, "urls", urls)
|
549
545
|
|
550
546
|
@property
|
551
547
|
@pulumi.getter
|
@@ -1027,18 +1023,6 @@ class _ServiceState:
|
|
1027
1023
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
1028
1024
|
pulumi.set(self, "uri", value)
|
1029
1025
|
|
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
|
-
|
1042
1026
|
|
1043
1027
|
class Service(pulumi.CustomResource):
|
1044
1028
|
@overload
|
@@ -2184,7 +2168,6 @@ class Service(pulumi.CustomResource):
|
|
2184
2168
|
__props__.__dict__["uid"] = None
|
2185
2169
|
__props__.__dict__["update_time"] = None
|
2186
2170
|
__props__.__dict__["uri"] = None
|
2187
|
-
__props__.__dict__["urls"] = None
|
2188
2171
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
|
2189
2172
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
2190
2173
|
super(Service, __self__).__init__(
|
@@ -2234,8 +2217,7 @@ class Service(pulumi.CustomResource):
|
|
2234
2217
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceTrafficArgs', 'ServiceTrafficArgsDict']]]]] = None,
|
2235
2218
|
uid: Optional[pulumi.Input[str]] = None,
|
2236
2219
|
update_time: Optional[pulumi.Input[str]] = None,
|
2237
|
-
uri: Optional[pulumi.Input[str]] = None
|
2238
|
-
urls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'Service':
|
2220
|
+
uri: Optional[pulumi.Input[str]] = None) -> 'Service':
|
2239
2221
|
"""
|
2240
2222
|
Get an existing Service resource's state with the given name, id, and optional extra
|
2241
2223
|
properties used to qualify the lookup.
|
@@ -2311,7 +2293,6 @@ class Service(pulumi.CustomResource):
|
|
2311
2293
|
:param pulumi.Input[str] update_time: The last-modified time.
|
2312
2294
|
:param pulumi.Input[str] uri: (Output)
|
2313
2295
|
Displays the target URI.
|
2314
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] urls: All URLs serving traffic for this Service.
|
2315
2296
|
"""
|
2316
2297
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
2317
2298
|
|
@@ -2355,7 +2336,6 @@ class Service(pulumi.CustomResource):
|
|
2355
2336
|
__props__.__dict__["uid"] = uid
|
2356
2337
|
__props__.__dict__["update_time"] = update_time
|
2357
2338
|
__props__.__dict__["uri"] = uri
|
2358
|
-
__props__.__dict__["urls"] = urls
|
2359
2339
|
return Service(resource_name, opts=opts, __props__=__props__)
|
2360
2340
|
|
2361
2341
|
@property
|
@@ -2686,11 +2666,3 @@ class Service(pulumi.CustomResource):
|
|
2686
2666
|
"""
|
2687
2667
|
return pulumi.get(self, "uri")
|
2688
2668
|
|
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`, `
|
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`.
|
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`, `
|
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`.
|
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`, `
|
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`.
|
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
|
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
|
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
|
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
|
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
|
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
|
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.
|
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.
|
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.
|
16782
16782
|
"""
|
16783
16783
|
return pulumi.get(self, "nic_type")
|
16784
16784
|
|