pulumi-gcp 7.14.1__py3-none-any.whl → 7.15.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 +94 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apphub/__init__.py +15 -0
- pulumi_gcp/apphub/_inputs.py +1016 -0
- pulumi_gcp/apphub/application.py +775 -0
- pulumi_gcp/apphub/get_discovered_service.py +180 -0
- pulumi_gcp/apphub/get_discovered_workload.py +180 -0
- pulumi_gcp/apphub/outputs.py +1206 -0
- pulumi_gcp/apphub/service.py +1121 -0
- pulumi_gcp/apphub/service_project_attachment.py +516 -0
- pulumi_gcp/apphub/workload.py +1197 -0
- pulumi_gcp/cloudquota/__init__.py +9 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +322 -0
- pulumi_gcp/cloudquota/outputs.py +105 -0
- pulumi_gcp/cloudrunv2/_inputs.py +26 -2
- pulumi_gcp/cloudrunv2/get_service.py +11 -1
- pulumi_gcp/cloudrunv2/outputs.py +58 -2
- pulumi_gcp/cloudrunv2/service.py +54 -0
- pulumi_gcp/compute/_inputs.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -4
- pulumi_gcp/compute/region_network_endpoint_group.py +30 -0
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +572 -0
- pulumi_gcp/firestore/_inputs.py +69 -0
- pulumi_gcp/firestore/database.py +206 -0
- pulumi_gcp/firestore/outputs.py +80 -0
- pulumi_gcp/gkeonprem/_inputs.py +1 -3
- pulumi_gcp/gkeonprem/outputs.py +1 -3
- pulumi_gcp/gkeonprem/v_mware_cluster.py +2 -0
- pulumi_gcp/iap/__init__.py +5 -0
- pulumi_gcp/iap/_inputs.py +100 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +172 -0
- pulumi_gcp/iap/outputs.py +76 -0
- pulumi_gcp/iap/tunnel_dest_group.py +524 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +858 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +858 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +760 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/_inputs.py +246 -0
- pulumi_gcp/kms/ekm_connection.py +610 -0
- pulumi_gcp/kms/outputs.py +242 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +753 -0
- pulumi_gcp/notebooks/instance.py +8 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/securityposture/posture.py +2 -2
- pulumi_gcp/securityposture/posture_deployment.py +2 -2
- pulumi_gcp/storage/_inputs.py +32 -15
- pulumi_gcp/storage/outputs.py +29 -14
- pulumi_gcp/workstations/_inputs.py +134 -4
- pulumi_gcp/workstations/outputs.py +152 -4
- pulumi_gcp/workstations/workstation_config.py +54 -0
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/RECORD +62 -42
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -29,6 +29,7 @@ class ServiceArgs:
|
|
29
29
|
launch_stage: Optional[pulumi.Input[str]] = None,
|
30
30
|
name: Optional[pulumi.Input[str]] = None,
|
31
31
|
project: Optional[pulumi.Input[str]] = None,
|
32
|
+
scaling: Optional[pulumi.Input['ServiceScalingArgs']] = None,
|
32
33
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]] = None):
|
33
34
|
"""
|
34
35
|
The set of arguments for constructing a Service resource.
|
@@ -63,6 +64,8 @@ class ServiceArgs:
|
|
63
64
|
:param pulumi.Input[str] name: Name of the Service.
|
64
65
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
65
66
|
If it is not provided, the provider project is used.
|
67
|
+
:param pulumi.Input['ServiceScalingArgs'] scaling: Scaling settings that apply to the whole service
|
68
|
+
Structure is documented below.
|
66
69
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100%!t(MISSING)raffic to the latest Ready Revision.
|
67
70
|
Structure is documented below.
|
68
71
|
"""
|
@@ -90,6 +93,8 @@ class ServiceArgs:
|
|
90
93
|
pulumi.set(__self__, "name", name)
|
91
94
|
if project is not None:
|
92
95
|
pulumi.set(__self__, "project", project)
|
96
|
+
if scaling is not None:
|
97
|
+
pulumi.set(__self__, "scaling", scaling)
|
93
98
|
if traffics is not None:
|
94
99
|
pulumi.set(__self__, "traffics", traffics)
|
95
100
|
|
@@ -267,6 +272,19 @@ class ServiceArgs:
|
|
267
272
|
def project(self, value: Optional[pulumi.Input[str]]):
|
268
273
|
pulumi.set(self, "project", value)
|
269
274
|
|
275
|
+
@property
|
276
|
+
@pulumi.getter
|
277
|
+
def scaling(self) -> Optional[pulumi.Input['ServiceScalingArgs']]:
|
278
|
+
"""
|
279
|
+
Scaling settings that apply to the whole service
|
280
|
+
Structure is documented below.
|
281
|
+
"""
|
282
|
+
return pulumi.get(self, "scaling")
|
283
|
+
|
284
|
+
@scaling.setter
|
285
|
+
def scaling(self, value: Optional[pulumi.Input['ServiceScalingArgs']]):
|
286
|
+
pulumi.set(self, "scaling", value)
|
287
|
+
|
270
288
|
@property
|
271
289
|
@pulumi.getter
|
272
290
|
def traffics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]]:
|
@@ -311,6 +329,7 @@ class _ServiceState:
|
|
311
329
|
project: Optional[pulumi.Input[str]] = None,
|
312
330
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
313
331
|
reconciling: Optional[pulumi.Input[bool]] = None,
|
332
|
+
scaling: Optional[pulumi.Input['ServiceScalingArgs']] = None,
|
314
333
|
template: Optional[pulumi.Input['ServiceTemplateArgs']] = None,
|
315
334
|
terminal_conditions: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTerminalConditionArgs']]]] = None,
|
316
335
|
traffic_statuses: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficStatusArgs']]]] = None,
|
@@ -370,6 +389,8 @@ class _ServiceState:
|
|
370
389
|
When a new Service is created, or an existing one is updated, Cloud Run will asynchronously perform all necessary steps to bring the Service to the desired serving state. This process is called reconciliation. While reconciliation is in process, observedGeneration, latest_ready_revison, trafficStatuses, and uri will have transient values that might mismatch the intended state: Once reconciliation is over (and this field is false), there are two possible outcomes: reconciliation succeeded and the serving state matches the Service, or there was an error, and reconciliation failed. This state can be found in terminalCondition.state.
|
371
390
|
If reconciliation succeeded, the following fields will match: traffic and trafficStatuses, observedGeneration and generation, latestReadyRevision and latestCreatedRevision.
|
372
391
|
If reconciliation failed, trafficStatuses, observedGeneration, and latestReadyRevision will have the state of the last serving revision, or empty for newly created Services. Additional information on the failure can be found in terminalCondition and conditions.
|
392
|
+
:param pulumi.Input['ServiceScalingArgs'] scaling: Scaling settings that apply to the whole service
|
393
|
+
Structure is documented below.
|
373
394
|
:param pulumi.Input['ServiceTemplateArgs'] template: The template used to create revisions for this Service.
|
374
395
|
Structure is documented below.
|
375
396
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceTerminalConditionArgs']]] terminal_conditions: The Condition of this Service, containing its readiness status, and detailed error information in case it did not reach a serving state. See comments in reconciling for additional information on reconciliation process in Cloud Run.
|
@@ -437,6 +458,8 @@ class _ServiceState:
|
|
437
458
|
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
438
459
|
if reconciling is not None:
|
439
460
|
pulumi.set(__self__, "reconciling", reconciling)
|
461
|
+
if scaling is not None:
|
462
|
+
pulumi.set(__self__, "scaling", scaling)
|
440
463
|
if template is not None:
|
441
464
|
pulumi.set(__self__, "template", template)
|
442
465
|
if terminal_conditions is not None:
|
@@ -799,6 +822,19 @@ class _ServiceState:
|
|
799
822
|
def reconciling(self, value: Optional[pulumi.Input[bool]]):
|
800
823
|
pulumi.set(self, "reconciling", value)
|
801
824
|
|
825
|
+
@property
|
826
|
+
@pulumi.getter
|
827
|
+
def scaling(self) -> Optional[pulumi.Input['ServiceScalingArgs']]:
|
828
|
+
"""
|
829
|
+
Scaling settings that apply to the whole service
|
830
|
+
Structure is documented below.
|
831
|
+
"""
|
832
|
+
return pulumi.get(self, "scaling")
|
833
|
+
|
834
|
+
@scaling.setter
|
835
|
+
def scaling(self, value: Optional[pulumi.Input['ServiceScalingArgs']]):
|
836
|
+
pulumi.set(self, "scaling", value)
|
837
|
+
|
802
838
|
@property
|
803
839
|
@pulumi.getter
|
804
840
|
def template(self) -> Optional[pulumi.Input['ServiceTemplateArgs']]:
|
@@ -906,6 +942,7 @@ class Service(pulumi.CustomResource):
|
|
906
942
|
location: Optional[pulumi.Input[str]] = None,
|
907
943
|
name: Optional[pulumi.Input[str]] = None,
|
908
944
|
project: Optional[pulumi.Input[str]] = None,
|
945
|
+
scaling: Optional[pulumi.Input[pulumi.InputType['ServiceScalingArgs']]] = None,
|
909
946
|
template: Optional[pulumi.Input[pulumi.InputType['ServiceTemplateArgs']]] = None,
|
910
947
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]]] = None,
|
911
948
|
__props__=None):
|
@@ -1367,6 +1404,8 @@ class Service(pulumi.CustomResource):
|
|
1367
1404
|
:param pulumi.Input[str] name: Name of the Service.
|
1368
1405
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1369
1406
|
If it is not provided, the provider project is used.
|
1407
|
+
:param pulumi.Input[pulumi.InputType['ServiceScalingArgs']] scaling: Scaling settings that apply to the whole service
|
1408
|
+
Structure is documented below.
|
1370
1409
|
:param pulumi.Input[pulumi.InputType['ServiceTemplateArgs']] template: The template used to create revisions for this Service.
|
1371
1410
|
Structure is documented below.
|
1372
1411
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100%!t(MISSING)raffic to the latest Ready Revision.
|
@@ -1832,6 +1871,7 @@ class Service(pulumi.CustomResource):
|
|
1832
1871
|
location: Optional[pulumi.Input[str]] = None,
|
1833
1872
|
name: Optional[pulumi.Input[str]] = None,
|
1834
1873
|
project: Optional[pulumi.Input[str]] = None,
|
1874
|
+
scaling: Optional[pulumi.Input[pulumi.InputType['ServiceScalingArgs']]] = None,
|
1835
1875
|
template: Optional[pulumi.Input[pulumi.InputType['ServiceTemplateArgs']]] = None,
|
1836
1876
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]]] = None,
|
1837
1877
|
__props__=None):
|
@@ -1857,6 +1897,7 @@ class Service(pulumi.CustomResource):
|
|
1857
1897
|
__props__.__dict__["location"] = location
|
1858
1898
|
__props__.__dict__["name"] = name
|
1859
1899
|
__props__.__dict__["project"] = project
|
1900
|
+
__props__.__dict__["scaling"] = scaling
|
1860
1901
|
if template is None and not opts.urn:
|
1861
1902
|
raise TypeError("Missing required property 'template'")
|
1862
1903
|
__props__.__dict__["template"] = template
|
@@ -1920,6 +1961,7 @@ class Service(pulumi.CustomResource):
|
|
1920
1961
|
project: Optional[pulumi.Input[str]] = None,
|
1921
1962
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1922
1963
|
reconciling: Optional[pulumi.Input[bool]] = None,
|
1964
|
+
scaling: Optional[pulumi.Input[pulumi.InputType['ServiceScalingArgs']]] = None,
|
1923
1965
|
template: Optional[pulumi.Input[pulumi.InputType['ServiceTemplateArgs']]] = None,
|
1924
1966
|
terminal_conditions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTerminalConditionArgs']]]]] = None,
|
1925
1967
|
traffic_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficStatusArgs']]]]] = None,
|
@@ -1984,6 +2026,8 @@ class Service(pulumi.CustomResource):
|
|
1984
2026
|
When a new Service is created, or an existing one is updated, Cloud Run will asynchronously perform all necessary steps to bring the Service to the desired serving state. This process is called reconciliation. While reconciliation is in process, observedGeneration, latest_ready_revison, trafficStatuses, and uri will have transient values that might mismatch the intended state: Once reconciliation is over (and this field is false), there are two possible outcomes: reconciliation succeeded and the serving state matches the Service, or there was an error, and reconciliation failed. This state can be found in terminalCondition.state.
|
1985
2027
|
If reconciliation succeeded, the following fields will match: traffic and trafficStatuses, observedGeneration and generation, latestReadyRevision and latestCreatedRevision.
|
1986
2028
|
If reconciliation failed, trafficStatuses, observedGeneration, and latestReadyRevision will have the state of the last serving revision, or empty for newly created Services. Additional information on the failure can be found in terminalCondition and conditions.
|
2029
|
+
:param pulumi.Input[pulumi.InputType['ServiceScalingArgs']] scaling: Scaling settings that apply to the whole service
|
2030
|
+
Structure is documented below.
|
1987
2031
|
:param pulumi.Input[pulumi.InputType['ServiceTemplateArgs']] template: The template used to create revisions for this Service.
|
1988
2032
|
Structure is documented below.
|
1989
2033
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTerminalConditionArgs']]]] terminal_conditions: The Condition of this Service, containing its readiness status, and detailed error information in case it did not reach a serving state. See comments in reconciling for additional information on reconciliation process in Cloud Run.
|
@@ -2028,6 +2072,7 @@ class Service(pulumi.CustomResource):
|
|
2028
2072
|
__props__.__dict__["project"] = project
|
2029
2073
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
2030
2074
|
__props__.__dict__["reconciling"] = reconciling
|
2075
|
+
__props__.__dict__["scaling"] = scaling
|
2031
2076
|
__props__.__dict__["template"] = template
|
2032
2077
|
__props__.__dict__["terminal_conditions"] = terminal_conditions
|
2033
2078
|
__props__.__dict__["traffic_statuses"] = traffic_statuses
|
@@ -2276,6 +2321,15 @@ class Service(pulumi.CustomResource):
|
|
2276
2321
|
"""
|
2277
2322
|
return pulumi.get(self, "reconciling")
|
2278
2323
|
|
2324
|
+
@property
|
2325
|
+
@pulumi.getter
|
2326
|
+
def scaling(self) -> pulumi.Output[Optional['outputs.ServiceScaling']]:
|
2327
|
+
"""
|
2328
|
+
Scaling settings that apply to the whole service
|
2329
|
+
Structure is documented below.
|
2330
|
+
"""
|
2331
|
+
return pulumi.get(self, "scaling")
|
2332
|
+
|
2279
2333
|
@property
|
2280
2334
|
@pulumi.getter
|
2281
2335
|
def template(self) -> pulumi.Output['outputs.ServiceTemplate']:
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -29215,8 +29215,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29215
29215
|
:param pulumi.Input[str] target_rule_set: Target WAF rule set to apply the preconfigured WAF exclusion.
|
29216
29216
|
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs']]] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
29217
29217
|
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs']]] request_headers: Request header whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
29218
|
-
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs']]] request_query_params: Request
|
29219
|
-
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs']]] request_uris: Request
|
29218
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs']]] request_query_params: Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation. Note that the parameter can be in the query string or in the POST body. Structure is documented below.
|
29219
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs']]] request_uris: Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation. When specifying this field, the query or fragment part should be excluded. Structure is documented below.
|
29220
29220
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_rule_ids: A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion. If omitted, it refers to all the rule IDs under the WAF rule set.
|
29221
29221
|
|
29222
29222
|
<a name="nested_field_params"></a>The `request_header`, `request_cookie`, `request_uri` and `request_query_param` blocks support:
|
@@ -29273,7 +29273,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29273
29273
|
@pulumi.getter(name="requestQueryParams")
|
29274
29274
|
def request_query_params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs']]]]:
|
29275
29275
|
"""
|
29276
|
-
Request
|
29276
|
+
Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation. Note that the parameter can be in the query string or in the POST body. Structure is documented below.
|
29277
29277
|
"""
|
29278
29278
|
return pulumi.get(self, "request_query_params")
|
29279
29279
|
|
@@ -29285,7 +29285,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29285
29285
|
@pulumi.getter(name="requestUris")
|
29286
29286
|
def request_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs']]]]:
|
29287
29287
|
"""
|
29288
|
-
Request
|
29288
|
+
Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation. When specifying this field, the query or fragment part should be excluded. Structure is documented below.
|
29289
29289
|
"""
|
29290
29290
|
return pulumi.get(self, "request_uris")
|
29291
29291
|
|
pulumi_gcp/compute/outputs.py
CHANGED
@@ -30148,8 +30148,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30148
30148
|
:param str target_rule_set: Target WAF rule set to apply the preconfigured WAF exclusion.
|
30149
30149
|
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs'] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
30150
30150
|
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs'] request_headers: Request header whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
30151
|
-
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs'] request_query_params: Request
|
30152
|
-
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs'] request_uris: Request
|
30151
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs'] request_query_params: Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation. Note that the parameter can be in the query string or in the POST body. Structure is documented below.
|
30152
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs'] request_uris: Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation. When specifying this field, the query or fragment part should be excluded. Structure is documented below.
|
30153
30153
|
:param Sequence[str] target_rule_ids: A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion. If omitted, it refers to all the rule IDs under the WAF rule set.
|
30154
30154
|
|
30155
30155
|
<a name="nested_field_params"></a>The `request_header`, `request_cookie`, `request_uri` and `request_query_param` blocks support:
|
@@ -30194,7 +30194,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30194
30194
|
@pulumi.getter(name="requestQueryParams")
|
30195
30195
|
def request_query_params(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam']]:
|
30196
30196
|
"""
|
30197
|
-
Request
|
30197
|
+
Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation. Note that the parameter can be in the query string or in the POST body. Structure is documented below.
|
30198
30198
|
"""
|
30199
30199
|
return pulumi.get(self, "request_query_params")
|
30200
30200
|
|
@@ -30202,7 +30202,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30202
30202
|
@pulumi.getter(name="requestUris")
|
30203
30203
|
def request_uris(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri']]:
|
30204
30204
|
"""
|
30205
|
-
Request
|
30205
|
+
Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation. When specifying this field, the query or fragment part should be excluded. Structure is documented below.
|
30206
30206
|
"""
|
30207
30207
|
return pulumi.get(self, "request_uris")
|
30208
30208
|
|
@@ -690,6 +690,21 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
690
690
|
))
|
691
691
|
```
|
692
692
|
<!--End PulumiCodeChooser -->
|
693
|
+
### Region Network Endpoint Group Appengine Empty
|
694
|
+
|
695
|
+
<!--Start PulumiCodeChooser -->
|
696
|
+
```python
|
697
|
+
import pulumi
|
698
|
+
import pulumi_gcp as gcp
|
699
|
+
|
700
|
+
# App Engine Example
|
701
|
+
appengine_neg = gcp.compute.RegionNetworkEndpointGroup("appengine_neg",
|
702
|
+
name="appengine-neg",
|
703
|
+
network_endpoint_type="SERVERLESS",
|
704
|
+
region="us-central1",
|
705
|
+
app_engine=gcp.compute.RegionNetworkEndpointGroupAppEngineArgs())
|
706
|
+
```
|
707
|
+
<!--End PulumiCodeChooser -->
|
693
708
|
### Region Network Endpoint Group Psc
|
694
709
|
|
695
710
|
<!--Start PulumiCodeChooser -->
|
@@ -1007,6 +1022,21 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1007
1022
|
))
|
1008
1023
|
```
|
1009
1024
|
<!--End PulumiCodeChooser -->
|
1025
|
+
### Region Network Endpoint Group Appengine Empty
|
1026
|
+
|
1027
|
+
<!--Start PulumiCodeChooser -->
|
1028
|
+
```python
|
1029
|
+
import pulumi
|
1030
|
+
import pulumi_gcp as gcp
|
1031
|
+
|
1032
|
+
# App Engine Example
|
1033
|
+
appengine_neg = gcp.compute.RegionNetworkEndpointGroup("appengine_neg",
|
1034
|
+
name="appengine-neg",
|
1035
|
+
network_endpoint_type="SERVERLESS",
|
1036
|
+
region="us-central1",
|
1037
|
+
app_engine=gcp.compute.RegionNetworkEndpointGroupAppEngineArgs())
|
1038
|
+
```
|
1039
|
+
<!--End PulumiCodeChooser -->
|
1010
1040
|
### Region Network Endpoint Group Psc
|
1011
1041
|
|
1012
1042
|
<!--Start PulumiCodeChooser -->
|
pulumi_gcp/config/__init__.pyi
CHANGED
@@ -30,6 +30,8 @@ apikeysCustomEndpoint: Optional[str]
|
|
30
30
|
|
31
31
|
appEngineCustomEndpoint: Optional[str]
|
32
32
|
|
33
|
+
apphubCustomEndpoint: Optional[str]
|
34
|
+
|
33
35
|
artifactRegistryCustomEndpoint: Optional[str]
|
34
36
|
|
35
37
|
assuredWorkloadsCustomEndpoint: Optional[str]
|
@@ -80,6 +82,8 @@ cloudIdentityCustomEndpoint: Optional[str]
|
|
80
82
|
|
81
83
|
cloudIdsCustomEndpoint: Optional[str]
|
82
84
|
|
85
|
+
cloudQuotasCustomEndpoint: Optional[str]
|
86
|
+
|
83
87
|
cloudResourceManagerCustomEndpoint: Optional[str]
|
84
88
|
|
85
89
|
cloudRunCustomEndpoint: Optional[str]
|
pulumi_gcp/config/vars.py
CHANGED
@@ -56,6 +56,10 @@ class _ExportableConfig(types.ModuleType):
|
|
56
56
|
def app_engine_custom_endpoint(self) -> Optional[str]:
|
57
57
|
return __config__.get('appEngineCustomEndpoint')
|
58
58
|
|
59
|
+
@property
|
60
|
+
def apphub_custom_endpoint(self) -> Optional[str]:
|
61
|
+
return __config__.get('apphubCustomEndpoint')
|
62
|
+
|
59
63
|
@property
|
60
64
|
def artifact_registry_custom_endpoint(self) -> Optional[str]:
|
61
65
|
return __config__.get('artifactRegistryCustomEndpoint')
|
@@ -156,6 +160,10 @@ class _ExportableConfig(types.ModuleType):
|
|
156
160
|
def cloud_ids_custom_endpoint(self) -> Optional[str]:
|
157
161
|
return __config__.get('cloudIdsCustomEndpoint')
|
158
162
|
|
163
|
+
@property
|
164
|
+
def cloud_quotas_custom_endpoint(self) -> Optional[str]:
|
165
|
+
return __config__.get('cloudQuotasCustomEndpoint')
|
166
|
+
|
159
167
|
@property
|
160
168
|
def cloud_resource_manager_custom_endpoint(self) -> Optional[str]:
|
161
169
|
return __config__.get('cloudResourceManagerCustomEndpoint')
|
pulumi_gcp/firebase/__init__.py
CHANGED
@@ -8,6 +8,7 @@ import typing
|
|
8
8
|
from .android_app import *
|
9
9
|
from .app_check_app_attest_config import *
|
10
10
|
from .app_check_debug_token import *
|
11
|
+
from .app_check_device_check_config import *
|
11
12
|
from .app_check_play_integrity_config import *
|
12
13
|
from .app_check_recaptcha_enterprise_config import *
|
13
14
|
from .app_check_recaptcha_v3_config import *
|