pulumi-gcp 7.15.0__py3-none-any.whl → 7.15.0a1711023156__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 -94
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/cloudrunv2/_inputs.py +2 -26
- pulumi_gcp/cloudrunv2/get_service.py +1 -11
- pulumi_gcp/cloudrunv2/outputs.py +2 -58
- pulumi_gcp/cloudrunv2/service.py +0 -54
- pulumi_gcp/compute/_inputs.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -4
- pulumi_gcp/compute/region_network_endpoint_group.py +0 -30
- pulumi_gcp/config/__init__.pyi +0 -4
- pulumi_gcp/config/vars.py +0 -8
- pulumi_gcp/firebase/__init__.py +0 -1
- pulumi_gcp/firestore/_inputs.py +0 -69
- pulumi_gcp/firestore/database.py +0 -206
- pulumi_gcp/firestore/outputs.py +0 -80
- pulumi_gcp/gkeonprem/_inputs.py +3 -1
- pulumi_gcp/gkeonprem/outputs.py +3 -1
- pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -2
- pulumi_gcp/iap/__init__.py +0 -5
- pulumi_gcp/iap/_inputs.py +0 -100
- pulumi_gcp/iap/outputs.py +0 -76
- pulumi_gcp/kms/__init__.py +0 -1
- pulumi_gcp/kms/_inputs.py +0 -246
- pulumi_gcp/kms/outputs.py +0 -242
- pulumi_gcp/networksecurity/__init__.py +0 -1
- pulumi_gcp/notebooks/instance.py +0 -8
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +0 -40
- 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 +15 -32
- pulumi_gcp/storage/outputs.py +14 -29
- pulumi_gcp/workstations/_inputs.py +4 -134
- pulumi_gcp/workstations/outputs.py +4 -152
- pulumi_gcp/workstations/workstation_config.py +0 -54
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1711023156.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1711023156.dist-info}/RECORD +42 -62
- pulumi_gcp/apphub/__init__.py +0 -15
- pulumi_gcp/apphub/_inputs.py +0 -1016
- pulumi_gcp/apphub/application.py +0 -775
- pulumi_gcp/apphub/get_discovered_service.py +0 -180
- pulumi_gcp/apphub/get_discovered_workload.py +0 -180
- pulumi_gcp/apphub/outputs.py +0 -1206
- pulumi_gcp/apphub/service.py +0 -1121
- pulumi_gcp/apphub/service_project_attachment.py +0 -516
- pulumi_gcp/apphub/workload.py +0 -1197
- pulumi_gcp/cloudquota/__init__.py +0 -9
- pulumi_gcp/cloudquota/get_s_quota_info.py +0 -322
- pulumi_gcp/cloudquota/outputs.py +0 -105
- pulumi_gcp/firebase/app_check_device_check_config.py +0 -572
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +0 -172
- pulumi_gcp/iap/tunnel_dest_group.py +0 -524
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +0 -760
- pulumi_gcp/kms/ekm_connection.py +0 -610
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -753
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1711023156.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1711023156.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -29,7 +29,6 @@ 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,
|
33
32
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]] = None):
|
34
33
|
"""
|
35
34
|
The set of arguments for constructing a Service resource.
|
@@ -64,8 +63,6 @@ class ServiceArgs:
|
|
64
63
|
:param pulumi.Input[str] name: Name of the Service.
|
65
64
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
66
65
|
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.
|
69
66
|
: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.
|
70
67
|
Structure is documented below.
|
71
68
|
"""
|
@@ -93,8 +90,6 @@ class ServiceArgs:
|
|
93
90
|
pulumi.set(__self__, "name", name)
|
94
91
|
if project is not None:
|
95
92
|
pulumi.set(__self__, "project", project)
|
96
|
-
if scaling is not None:
|
97
|
-
pulumi.set(__self__, "scaling", scaling)
|
98
93
|
if traffics is not None:
|
99
94
|
pulumi.set(__self__, "traffics", traffics)
|
100
95
|
|
@@ -272,19 +267,6 @@ class ServiceArgs:
|
|
272
267
|
def project(self, value: Optional[pulumi.Input[str]]):
|
273
268
|
pulumi.set(self, "project", value)
|
274
269
|
|
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
|
-
|
288
270
|
@property
|
289
271
|
@pulumi.getter
|
290
272
|
def traffics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]]:
|
@@ -329,7 +311,6 @@ class _ServiceState:
|
|
329
311
|
project: Optional[pulumi.Input[str]] = None,
|
330
312
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
331
313
|
reconciling: Optional[pulumi.Input[bool]] = None,
|
332
|
-
scaling: Optional[pulumi.Input['ServiceScalingArgs']] = None,
|
333
314
|
template: Optional[pulumi.Input['ServiceTemplateArgs']] = None,
|
334
315
|
terminal_conditions: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTerminalConditionArgs']]]] = None,
|
335
316
|
traffic_statuses: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficStatusArgs']]]] = None,
|
@@ -389,8 +370,6 @@ class _ServiceState:
|
|
389
370
|
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.
|
390
371
|
If reconciliation succeeded, the following fields will match: traffic and trafficStatuses, observedGeneration and generation, latestReadyRevision and latestCreatedRevision.
|
391
372
|
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.
|
394
373
|
:param pulumi.Input['ServiceTemplateArgs'] template: The template used to create revisions for this Service.
|
395
374
|
Structure is documented below.
|
396
375
|
: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.
|
@@ -458,8 +437,6 @@ class _ServiceState:
|
|
458
437
|
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
459
438
|
if reconciling is not None:
|
460
439
|
pulumi.set(__self__, "reconciling", reconciling)
|
461
|
-
if scaling is not None:
|
462
|
-
pulumi.set(__self__, "scaling", scaling)
|
463
440
|
if template is not None:
|
464
441
|
pulumi.set(__self__, "template", template)
|
465
442
|
if terminal_conditions is not None:
|
@@ -822,19 +799,6 @@ class _ServiceState:
|
|
822
799
|
def reconciling(self, value: Optional[pulumi.Input[bool]]):
|
823
800
|
pulumi.set(self, "reconciling", value)
|
824
801
|
|
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
|
-
|
838
802
|
@property
|
839
803
|
@pulumi.getter
|
840
804
|
def template(self) -> Optional[pulumi.Input['ServiceTemplateArgs']]:
|
@@ -942,7 +906,6 @@ class Service(pulumi.CustomResource):
|
|
942
906
|
location: Optional[pulumi.Input[str]] = None,
|
943
907
|
name: Optional[pulumi.Input[str]] = None,
|
944
908
|
project: Optional[pulumi.Input[str]] = None,
|
945
|
-
scaling: Optional[pulumi.Input[pulumi.InputType['ServiceScalingArgs']]] = None,
|
946
909
|
template: Optional[pulumi.Input[pulumi.InputType['ServiceTemplateArgs']]] = None,
|
947
910
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]]] = None,
|
948
911
|
__props__=None):
|
@@ -1404,8 +1367,6 @@ class Service(pulumi.CustomResource):
|
|
1404
1367
|
:param pulumi.Input[str] name: Name of the Service.
|
1405
1368
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1406
1369
|
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.
|
1409
1370
|
:param pulumi.Input[pulumi.InputType['ServiceTemplateArgs']] template: The template used to create revisions for this Service.
|
1410
1371
|
Structure is documented below.
|
1411
1372
|
: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.
|
@@ -1871,7 +1832,6 @@ class Service(pulumi.CustomResource):
|
|
1871
1832
|
location: Optional[pulumi.Input[str]] = None,
|
1872
1833
|
name: Optional[pulumi.Input[str]] = None,
|
1873
1834
|
project: Optional[pulumi.Input[str]] = None,
|
1874
|
-
scaling: Optional[pulumi.Input[pulumi.InputType['ServiceScalingArgs']]] = None,
|
1875
1835
|
template: Optional[pulumi.Input[pulumi.InputType['ServiceTemplateArgs']]] = None,
|
1876
1836
|
traffics: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]]] = None,
|
1877
1837
|
__props__=None):
|
@@ -1897,7 +1857,6 @@ class Service(pulumi.CustomResource):
|
|
1897
1857
|
__props__.__dict__["location"] = location
|
1898
1858
|
__props__.__dict__["name"] = name
|
1899
1859
|
__props__.__dict__["project"] = project
|
1900
|
-
__props__.__dict__["scaling"] = scaling
|
1901
1860
|
if template is None and not opts.urn:
|
1902
1861
|
raise TypeError("Missing required property 'template'")
|
1903
1862
|
__props__.__dict__["template"] = template
|
@@ -1961,7 +1920,6 @@ class Service(pulumi.CustomResource):
|
|
1961
1920
|
project: Optional[pulumi.Input[str]] = None,
|
1962
1921
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1963
1922
|
reconciling: Optional[pulumi.Input[bool]] = None,
|
1964
|
-
scaling: Optional[pulumi.Input[pulumi.InputType['ServiceScalingArgs']]] = None,
|
1965
1923
|
template: Optional[pulumi.Input[pulumi.InputType['ServiceTemplateArgs']]] = None,
|
1966
1924
|
terminal_conditions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTerminalConditionArgs']]]]] = None,
|
1967
1925
|
traffic_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficStatusArgs']]]]] = None,
|
@@ -2026,8 +1984,6 @@ class Service(pulumi.CustomResource):
|
|
2026
1984
|
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.
|
2027
1985
|
If reconciliation succeeded, the following fields will match: traffic and trafficStatuses, observedGeneration and generation, latestReadyRevision and latestCreatedRevision.
|
2028
1986
|
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.
|
2031
1987
|
:param pulumi.Input[pulumi.InputType['ServiceTemplateArgs']] template: The template used to create revisions for this Service.
|
2032
1988
|
Structure is documented below.
|
2033
1989
|
: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.
|
@@ -2072,7 +2028,6 @@ class Service(pulumi.CustomResource):
|
|
2072
2028
|
__props__.__dict__["project"] = project
|
2073
2029
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
2074
2030
|
__props__.__dict__["reconciling"] = reconciling
|
2075
|
-
__props__.__dict__["scaling"] = scaling
|
2076
2031
|
__props__.__dict__["template"] = template
|
2077
2032
|
__props__.__dict__["terminal_conditions"] = terminal_conditions
|
2078
2033
|
__props__.__dict__["traffic_statuses"] = traffic_statuses
|
@@ -2321,15 +2276,6 @@ class Service(pulumi.CustomResource):
|
|
2321
2276
|
"""
|
2322
2277
|
return pulumi.get(self, "reconciling")
|
2323
2278
|
|
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
|
-
|
2333
2279
|
@property
|
2334
2280
|
@pulumi.getter
|
2335
2281
|
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 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.
|
29219
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs']]] request_uris: 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.
|
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 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.
|
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 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.
|
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 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.
|
30152
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs'] request_uris: 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.
|
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 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.
|
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 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.
|
30206
30206
|
"""
|
30207
30207
|
return pulumi.get(self, "request_uris")
|
30208
30208
|
|
@@ -690,21 +690,6 @@ 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 -->
|
708
693
|
### Region Network Endpoint Group Psc
|
709
694
|
|
710
695
|
<!--Start PulumiCodeChooser -->
|
@@ -1022,21 +1007,6 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1022
1007
|
))
|
1023
1008
|
```
|
1024
1009
|
<!--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 -->
|
1040
1010
|
### Region Network Endpoint Group Psc
|
1041
1011
|
|
1042
1012
|
<!--Start PulumiCodeChooser -->
|
pulumi_gcp/config/__init__.pyi
CHANGED
@@ -30,8 +30,6 @@ apikeysCustomEndpoint: Optional[str]
|
|
30
30
|
|
31
31
|
appEngineCustomEndpoint: Optional[str]
|
32
32
|
|
33
|
-
apphubCustomEndpoint: Optional[str]
|
34
|
-
|
35
33
|
artifactRegistryCustomEndpoint: Optional[str]
|
36
34
|
|
37
35
|
assuredWorkloadsCustomEndpoint: Optional[str]
|
@@ -82,8 +80,6 @@ cloudIdentityCustomEndpoint: Optional[str]
|
|
82
80
|
|
83
81
|
cloudIdsCustomEndpoint: Optional[str]
|
84
82
|
|
85
|
-
cloudQuotasCustomEndpoint: Optional[str]
|
86
|
-
|
87
83
|
cloudResourceManagerCustomEndpoint: Optional[str]
|
88
84
|
|
89
85
|
cloudRunCustomEndpoint: Optional[str]
|
pulumi_gcp/config/vars.py
CHANGED
@@ -56,10 +56,6 @@ 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
|
-
|
63
59
|
@property
|
64
60
|
def artifact_registry_custom_endpoint(self) -> Optional[str]:
|
65
61
|
return __config__.get('artifactRegistryCustomEndpoint')
|
@@ -160,10 +156,6 @@ class _ExportableConfig(types.ModuleType):
|
|
160
156
|
def cloud_ids_custom_endpoint(self) -> Optional[str]:
|
161
157
|
return __config__.get('cloudIdsCustomEndpoint')
|
162
158
|
|
163
|
-
@property
|
164
|
-
def cloud_quotas_custom_endpoint(self) -> Optional[str]:
|
165
|
-
return __config__.get('cloudQuotasCustomEndpoint')
|
166
|
-
|
167
159
|
@property
|
168
160
|
def cloud_resource_manager_custom_endpoint(self) -> Optional[str]:
|
169
161
|
return __config__.get('cloudResourceManagerCustomEndpoint')
|
pulumi_gcp/firebase/__init__.py
CHANGED
@@ -8,7 +8,6 @@ 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 *
|
12
11
|
from .app_check_play_integrity_config import *
|
13
12
|
from .app_check_recaptcha_enterprise_config import *
|
14
13
|
from .app_check_recaptcha_v3_config import *
|
pulumi_gcp/firestore/_inputs.py
CHANGED
@@ -12,7 +12,6 @@ from .. import _utilities
|
|
12
12
|
__all__ = [
|
13
13
|
'BackupScheduleDailyRecurrenceArgs',
|
14
14
|
'BackupScheduleWeeklyRecurrenceArgs',
|
15
|
-
'DatabaseCmekConfigArgs',
|
16
15
|
'FieldIndexConfigArgs',
|
17
16
|
'FieldIndexConfigIndexArgs',
|
18
17
|
'FieldTtlConfigArgs',
|
@@ -50,74 +49,6 @@ class BackupScheduleWeeklyRecurrenceArgs:
|
|
50
49
|
pulumi.set(self, "day", value)
|
51
50
|
|
52
51
|
|
53
|
-
@pulumi.input_type
|
54
|
-
class DatabaseCmekConfigArgs:
|
55
|
-
def __init__(__self__, *,
|
56
|
-
kms_key_name: pulumi.Input[str],
|
57
|
-
active_key_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
58
|
-
"""
|
59
|
-
:param pulumi.Input[str] kms_key_name: The resource ID of a Cloud KMS key. If set, the database created will
|
60
|
-
be a Customer-managed Encryption Key (CMEK) database encrypted with
|
61
|
-
this key. This feature is allowlist only in initial launch.
|
62
|
-
Only keys in the same location as this database are allowed to be used
|
63
|
-
for encryption. For Firestore's nam5 multi-region, this corresponds to Cloud KMS
|
64
|
-
multi-region us. For Firestore's eur3 multi-region, this corresponds to
|
65
|
-
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
66
|
-
This value should be the KMS key resource ID in the format of
|
67
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
68
|
-
How to retrive this resource ID is listed at
|
69
|
-
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
70
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] active_key_versions: (Output)
|
71
|
-
Currently in-use KMS key versions (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions).
|
72
|
-
During key rotation (https://cloud.google.com/kms/docs/key-rotation), there can be
|
73
|
-
multiple in-use key versions.
|
74
|
-
The expected format is
|
75
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{key_version}`.
|
76
|
-
"""
|
77
|
-
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
78
|
-
if active_key_versions is not None:
|
79
|
-
pulumi.set(__self__, "active_key_versions", active_key_versions)
|
80
|
-
|
81
|
-
@property
|
82
|
-
@pulumi.getter(name="kmsKeyName")
|
83
|
-
def kms_key_name(self) -> pulumi.Input[str]:
|
84
|
-
"""
|
85
|
-
The resource ID of a Cloud KMS key. If set, the database created will
|
86
|
-
be a Customer-managed Encryption Key (CMEK) database encrypted with
|
87
|
-
this key. This feature is allowlist only in initial launch.
|
88
|
-
Only keys in the same location as this database are allowed to be used
|
89
|
-
for encryption. For Firestore's nam5 multi-region, this corresponds to Cloud KMS
|
90
|
-
multi-region us. For Firestore's eur3 multi-region, this corresponds to
|
91
|
-
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
92
|
-
This value should be the KMS key resource ID in the format of
|
93
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
94
|
-
How to retrive this resource ID is listed at
|
95
|
-
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
96
|
-
"""
|
97
|
-
return pulumi.get(self, "kms_key_name")
|
98
|
-
|
99
|
-
@kms_key_name.setter
|
100
|
-
def kms_key_name(self, value: pulumi.Input[str]):
|
101
|
-
pulumi.set(self, "kms_key_name", value)
|
102
|
-
|
103
|
-
@property
|
104
|
-
@pulumi.getter(name="activeKeyVersions")
|
105
|
-
def active_key_versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
106
|
-
"""
|
107
|
-
(Output)
|
108
|
-
Currently in-use KMS key versions (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions).
|
109
|
-
During key rotation (https://cloud.google.com/kms/docs/key-rotation), there can be
|
110
|
-
multiple in-use key versions.
|
111
|
-
The expected format is
|
112
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{key_version}`.
|
113
|
-
"""
|
114
|
-
return pulumi.get(self, "active_key_versions")
|
115
|
-
|
116
|
-
@active_key_versions.setter
|
117
|
-
def active_key_versions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
118
|
-
pulumi.set(self, "active_key_versions", value)
|
119
|
-
|
120
|
-
|
121
52
|
@pulumi.input_type
|
122
53
|
class FieldIndexConfigArgs:
|
123
54
|
def __init__(__self__, *,
|