pulumi-gcp 7.24.0a1715926460__py3-none-any.whl → 7.24.0a1716510380__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/bigquery/_inputs.py +16 -0
- pulumi_gcp/bigquery/dataset_access.py +56 -0
- pulumi_gcp/bigquery/outputs.py +16 -0
- pulumi_gcp/cloudfunctions/function.py +21 -0
- pulumi_gcp/compute/_inputs.py +280 -0
- pulumi_gcp/compute/backend_service.py +315 -0
- pulumi_gcp/compute/outputs.py +288 -0
- pulumi_gcp/compute/region_backend_service.py +315 -0
- pulumi_gcp/compute/router_peer.py +88 -0
- pulumi_gcp/compute/security_policy.py +49 -0
- pulumi_gcp/container/_inputs.py +12 -0
- pulumi_gcp/container/outputs.py +12 -0
- pulumi_gcp/dataproc/_inputs.py +120 -46
- pulumi_gcp/dataproc/outputs.py +120 -46
- pulumi_gcp/networkservices/_inputs.py +18 -0
- pulumi_gcp/networkservices/outputs.py +18 -0
- pulumi_gcp/organizations/_inputs.py +10 -0
- pulumi_gcp/organizations/outputs.py +10 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/RECORD +23 -23
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.24.0a1715926460.dist-info → pulumi_gcp-7.24.0a1716510380.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -1005,6 +1005,14 @@ class DatasetAccessArgs:
|
|
1005
1005
|
needs to be granted again via an update operation.
|
1006
1006
|
Structure is documented below.
|
1007
1007
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
1008
|
+
|
1009
|
+
* `projectOwners`: Owners of the enclosing project.
|
1010
|
+
|
1011
|
+
* `projectReaders`: Readers of the enclosing project.
|
1012
|
+
|
1013
|
+
* `projectWriters`: Writers of the enclosing project.
|
1014
|
+
|
1015
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1008
1016
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
1009
1017
|
fred@example.com
|
1010
1018
|
:param pulumi.Input['DatasetAccessViewArgs'] view: A view from a different dataset to grant access to. Queries
|
@@ -1122,6 +1130,14 @@ class DatasetAccessArgs:
|
|
1122
1130
|
def special_group(self) -> Optional[pulumi.Input[str]]:
|
1123
1131
|
"""
|
1124
1132
|
A special group to grant access to. Possible values include:
|
1133
|
+
|
1134
|
+
* `projectOwners`: Owners of the enclosing project.
|
1135
|
+
|
1136
|
+
* `projectReaders`: Readers of the enclosing project.
|
1137
|
+
|
1138
|
+
* `projectWriters`: Writers of the enclosing project.
|
1139
|
+
|
1140
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1125
1141
|
"""
|
1126
1142
|
return pulumi.get(self, "special_group")
|
1127
1143
|
|
@@ -57,6 +57,14 @@ class DatasetAccessInitArgs:
|
|
57
57
|
needs to be granted again via an update operation.
|
58
58
|
Structure is documented below.
|
59
59
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
60
|
+
|
61
|
+
* `projectOwners`: Owners of the enclosing project.
|
62
|
+
|
63
|
+
* `projectReaders`: Readers of the enclosing project.
|
64
|
+
|
65
|
+
* `projectWriters`: Writers of the enclosing project.
|
66
|
+
|
67
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
60
68
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
61
69
|
fred@example.com
|
62
70
|
:param pulumi.Input['DatasetAccessViewArgs'] view: A view from a different dataset to grant access to. Queries
|
@@ -208,6 +216,14 @@ class DatasetAccessInitArgs:
|
|
208
216
|
def special_group(self) -> Optional[pulumi.Input[str]]:
|
209
217
|
"""
|
210
218
|
A special group to grant access to. Possible values include:
|
219
|
+
|
220
|
+
* `projectOwners`: Owners of the enclosing project.
|
221
|
+
|
222
|
+
* `projectReaders`: Readers of the enclosing project.
|
223
|
+
|
224
|
+
* `projectWriters`: Writers of the enclosing project.
|
225
|
+
|
226
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
211
227
|
"""
|
212
228
|
return pulumi.get(self, "special_group")
|
213
229
|
|
@@ -293,6 +309,14 @@ class _DatasetAccessState:
|
|
293
309
|
needs to be granted again via an update operation.
|
294
310
|
Structure is documented below.
|
295
311
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
312
|
+
|
313
|
+
* `projectOwners`: Owners of the enclosing project.
|
314
|
+
|
315
|
+
* `projectReaders`: Readers of the enclosing project.
|
316
|
+
|
317
|
+
* `projectWriters`: Writers of the enclosing project.
|
318
|
+
|
319
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
296
320
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
297
321
|
fred@example.com
|
298
322
|
:param pulumi.Input['DatasetAccessViewArgs'] view: A view from a different dataset to grant access to. Queries
|
@@ -460,6 +484,14 @@ class _DatasetAccessState:
|
|
460
484
|
def special_group(self) -> Optional[pulumi.Input[str]]:
|
461
485
|
"""
|
462
486
|
A special group to grant access to. Possible values include:
|
487
|
+
|
488
|
+
* `projectOwners`: Owners of the enclosing project.
|
489
|
+
|
490
|
+
* `projectReaders`: Readers of the enclosing project.
|
491
|
+
|
492
|
+
* `projectWriters`: Writers of the enclosing project.
|
493
|
+
|
494
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
463
495
|
"""
|
464
496
|
return pulumi.get(self, "special_group")
|
465
497
|
|
@@ -650,6 +682,14 @@ class DatasetAccess(pulumi.CustomResource):
|
|
650
682
|
needs to be granted again via an update operation.
|
651
683
|
Structure is documented below.
|
652
684
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
685
|
+
|
686
|
+
* `projectOwners`: Owners of the enclosing project.
|
687
|
+
|
688
|
+
* `projectReaders`: Readers of the enclosing project.
|
689
|
+
|
690
|
+
* `projectWriters`: Writers of the enclosing project.
|
691
|
+
|
692
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
653
693
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
654
694
|
fred@example.com
|
655
695
|
:param pulumi.Input[pulumi.InputType['DatasetAccessViewArgs']] view: A view from a different dataset to grant access to. Queries
|
@@ -878,6 +918,14 @@ class DatasetAccess(pulumi.CustomResource):
|
|
878
918
|
needs to be granted again via an update operation.
|
879
919
|
Structure is documented below.
|
880
920
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
921
|
+
|
922
|
+
* `projectOwners`: Owners of the enclosing project.
|
923
|
+
|
924
|
+
* `projectReaders`: Readers of the enclosing project.
|
925
|
+
|
926
|
+
* `projectWriters`: Writers of the enclosing project.
|
927
|
+
|
928
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
881
929
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
882
930
|
fred@example.com
|
883
931
|
:param pulumi.Input[pulumi.InputType['DatasetAccessViewArgs']] view: A view from a different dataset to grant access to. Queries
|
@@ -1002,6 +1050,14 @@ class DatasetAccess(pulumi.CustomResource):
|
|
1002
1050
|
def special_group(self) -> pulumi.Output[Optional[str]]:
|
1003
1051
|
"""
|
1004
1052
|
A special group to grant access to. Possible values include:
|
1053
|
+
|
1054
|
+
* `projectOwners`: Owners of the enclosing project.
|
1055
|
+
|
1056
|
+
* `projectReaders`: Readers of the enclosing project.
|
1057
|
+
|
1058
|
+
* `projectWriters`: Writers of the enclosing project.
|
1059
|
+
|
1060
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1005
1061
|
"""
|
1006
1062
|
return pulumi.get(self, "special_group")
|
1007
1063
|
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -1119,6 +1119,14 @@ class DatasetAccess(dict):
|
|
1119
1119
|
needs to be granted again via an update operation.
|
1120
1120
|
Structure is documented below.
|
1121
1121
|
:param str special_group: A special group to grant access to. Possible values include:
|
1122
|
+
|
1123
|
+
* `projectOwners`: Owners of the enclosing project.
|
1124
|
+
|
1125
|
+
* `projectReaders`: Readers of the enclosing project.
|
1126
|
+
|
1127
|
+
* `projectWriters`: Writers of the enclosing project.
|
1128
|
+
|
1129
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1122
1130
|
:param str user_by_email: An email address of a user to grant access to. For example:
|
1123
1131
|
fred@example.com
|
1124
1132
|
:param 'DatasetAccessViewArgs' view: A view from a different dataset to grant access to. Queries
|
@@ -1212,6 +1220,14 @@ class DatasetAccess(dict):
|
|
1212
1220
|
def special_group(self) -> Optional[str]:
|
1213
1221
|
"""
|
1214
1222
|
A special group to grant access to. Possible values include:
|
1223
|
+
|
1224
|
+
* `projectOwners`: Owners of the enclosing project.
|
1225
|
+
|
1226
|
+
* `projectReaders`: Readers of the enclosing project.
|
1227
|
+
|
1228
|
+
* `projectWriters`: Writers of the enclosing project.
|
1229
|
+
|
1230
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1215
1231
|
"""
|
1216
1232
|
return pulumi.get(self, "special_group")
|
1217
1233
|
|
@@ -62,6 +62,9 @@ class FunctionArgs:
|
|
62
62
|
:param pulumi.Input[Mapping[str, Any]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
63
63
|
:param pulumi.Input['FunctionEventTriggerArgs'] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
64
64
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
65
|
+
|
66
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
67
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
65
68
|
:param pulumi.Input[str] https_trigger_url: URL which triggers function execution. Returned only if `trigger_http` is used.
|
66
69
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
67
70
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
@@ -275,6 +278,9 @@ class FunctionArgs:
|
|
275
278
|
def https_trigger_security_level(self) -> Optional[pulumi.Input[str]]:
|
276
279
|
"""
|
277
280
|
The security level for the function. The following options are available:
|
281
|
+
|
282
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
283
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
278
284
|
"""
|
279
285
|
return pulumi.get(self, "https_trigger_security_level")
|
280
286
|
|
@@ -566,6 +572,9 @@ class _FunctionState:
|
|
566
572
|
:param pulumi.Input[Mapping[str, Any]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
567
573
|
:param pulumi.Input['FunctionEventTriggerArgs'] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
568
574
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
575
|
+
|
576
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
577
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
569
578
|
:param pulumi.Input[str] https_trigger_url: URL which triggers function execution. Returned only if `trigger_http` is used.
|
570
579
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
571
580
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
@@ -793,6 +802,9 @@ class _FunctionState:
|
|
793
802
|
def https_trigger_security_level(self) -> Optional[pulumi.Input[str]]:
|
794
803
|
"""
|
795
804
|
The security level for the function. The following options are available:
|
805
|
+
|
806
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
807
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
796
808
|
"""
|
797
809
|
return pulumi.get(self, "https_trigger_security_level")
|
798
810
|
|
@@ -1237,6 +1249,9 @@ class Function(pulumi.CustomResource):
|
|
1237
1249
|
:param pulumi.Input[Mapping[str, Any]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
1238
1250
|
:param pulumi.Input[pulumi.InputType['FunctionEventTriggerArgs']] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
1239
1251
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
1252
|
+
|
1253
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
1254
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
1240
1255
|
:param pulumi.Input[str] https_trigger_url: URL which triggers function execution. Returned only if `trigger_http` is used.
|
1241
1256
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
1242
1257
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
@@ -1529,6 +1544,9 @@ class Function(pulumi.CustomResource):
|
|
1529
1544
|
:param pulumi.Input[Mapping[str, Any]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
1530
1545
|
:param pulumi.Input[pulumi.InputType['FunctionEventTriggerArgs']] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
1531
1546
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
1547
|
+
|
1548
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
1549
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
1532
1550
|
:param pulumi.Input[str] https_trigger_url: URL which triggers function execution. Returned only if `trigger_http` is used.
|
1533
1551
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
1534
1552
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
@@ -1687,6 +1705,9 @@ class Function(pulumi.CustomResource):
|
|
1687
1705
|
def https_trigger_security_level(self) -> pulumi.Output[str]:
|
1688
1706
|
"""
|
1689
1707
|
The security level for the function. The following options are available:
|
1708
|
+
|
1709
|
+
* `SECURE_ALWAYS` Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
|
1710
|
+
* `SECURE_OPTIONAL` Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
|
1690
1711
|
"""
|
1691
1712
|
return pulumi.get(self, "https_trigger_security_level")
|
1692
1713
|
|