pulumi-gcp 7.21.0a1714565535__py3-none-any.whl → 7.21.0a1714768411__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 +40 -0
- pulumi_gcp/alloydb/_inputs.py +74 -0
- pulumi_gcp/alloydb/instance.py +90 -0
- pulumi_gcp/alloydb/outputs.py +98 -0
- pulumi_gcp/apigee/environment.py +47 -0
- pulumi_gcp/applicationintegration/__init__.py +1 -0
- pulumi_gcp/applicationintegration/_inputs.py +843 -0
- pulumi_gcp/applicationintegration/auth_config.py +998 -0
- pulumi_gcp/applicationintegration/outputs.py +891 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +21 -4
- pulumi_gcp/bigquerydatapolicy/data_policy.py +78 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +16 -3
- pulumi_gcp/certificateauthority/_inputs.py +92 -12
- pulumi_gcp/certificateauthority/authority.py +110 -0
- pulumi_gcp/certificateauthority/certificate.py +176 -0
- pulumi_gcp/certificateauthority/outputs.py +144 -12
- pulumi_gcp/composer/__init__.py +1 -0
- pulumi_gcp/composer/user_workloads_secret.py +441 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +121 -58
- pulumi_gcp/compute/global_forwarding_rule.py +0 -282
- pulumi_gcp/compute/outputs.py +120 -57
- pulumi_gcp/compute/region_target_https_proxy.py +257 -0
- pulumi_gcp/compute/region_url_map.py +0 -470
- pulumi_gcp/compute/security_policy_rule.py +850 -0
- pulumi_gcp/dataloss/__init__.py +1 -0
- pulumi_gcp/dataloss/_inputs.py +1040 -0
- pulumi_gcp/dataloss/outputs.py +1123 -0
- pulumi_gcp/dataloss/prevention_discovery_config.py +737 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +2 -2
- pulumi_gcp/filestore/get_instance.py +11 -1
- pulumi_gcp/filestore/instance.py +101 -0
- pulumi_gcp/firebase/_inputs.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +20 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +10 -0
- pulumi_gcp/firebase/hosting_version.py +44 -0
- pulumi_gcp/firebase/outputs.py +12 -0
- pulumi_gcp/logging/folder_sink.py +54 -0
- pulumi_gcp/logging/organization_sink.py +54 -0
- pulumi_gcp/monitoring/_inputs.py +46 -2
- pulumi_gcp/monitoring/outputs.py +40 -2
- pulumi_gcp/monitoring/uptime_check_config.py +6 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/internal_range.py +1024 -0
- pulumi_gcp/secretmanager/get_secret.py +13 -3
- pulumi_gcp/secretmanager/outputs.py +20 -1
- pulumi_gcp/secretmanager/secret.py +90 -3
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/get_bucket_objects.py +153 -0
- pulumi_gcp/storage/outputs.py +63 -0
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/RECORD +56 -50
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/outputs.py
CHANGED
@@ -30183,14 +30183,14 @@ class SecurityPolicyRuleMatch(dict):
|
|
30183
30183
|
expr: Optional['outputs.SecurityPolicyRuleMatchExpr'] = None,
|
30184
30184
|
versioned_expr: Optional[str] = None):
|
30185
30185
|
"""
|
30186
|
-
:param 'SecurityPolicyRuleMatchConfigArgs' config: The configuration options available when specifying
|
30187
|
-
This field must be specified if
|
30186
|
+
:param 'SecurityPolicyRuleMatchConfigArgs' config: The configuration options available when specifying versionedExpr.
|
30187
|
+
This field must be specified if versionedExpr is specified and cannot be specified if versionedExpr is not specified.
|
30188
30188
|
Structure is documented below.
|
30189
|
-
:param 'SecurityPolicyRuleMatchExprArgs' expr: User defined CEVAL expression. A CEVAL expression is used to specify match criteria
|
30190
|
-
such as `origin.ip`, `source.region_code` and `contents` in the request header.
|
30189
|
+
:param 'SecurityPolicyRuleMatchExprArgs' expr: User defined CEVAL expression. A CEVAL expression is used to specify match criteria such as origin.ip, source.region_code and contents in the request header.
|
30191
30190
|
Structure is documented below.
|
30192
|
-
:param str versioned_expr:
|
30193
|
-
Available
|
30191
|
+
:param str versioned_expr: Preconfigured versioned expression. If this field is specified, config must also be specified.
|
30192
|
+
Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding srcIpRange field in config.
|
30193
|
+
Possible values are: `SRC_IPS_V1`.
|
30194
30194
|
"""
|
30195
30195
|
if config is not None:
|
30196
30196
|
pulumi.set(__self__, "config", config)
|
@@ -30203,8 +30203,8 @@ class SecurityPolicyRuleMatch(dict):
|
|
30203
30203
|
@pulumi.getter
|
30204
30204
|
def config(self) -> Optional['outputs.SecurityPolicyRuleMatchConfig']:
|
30205
30205
|
"""
|
30206
|
-
The configuration options available when specifying
|
30207
|
-
This field must be specified if
|
30206
|
+
The configuration options available when specifying versionedExpr.
|
30207
|
+
This field must be specified if versionedExpr is specified and cannot be specified if versionedExpr is not specified.
|
30208
30208
|
Structure is documented below.
|
30209
30209
|
"""
|
30210
30210
|
return pulumi.get(self, "config")
|
@@ -30213,8 +30213,7 @@ class SecurityPolicyRuleMatch(dict):
|
|
30213
30213
|
@pulumi.getter
|
30214
30214
|
def expr(self) -> Optional['outputs.SecurityPolicyRuleMatchExpr']:
|
30215
30215
|
"""
|
30216
|
-
User defined CEVAL expression. A CEVAL expression is used to specify match criteria
|
30217
|
-
such as `origin.ip`, `source.region_code` and `contents` in the request header.
|
30216
|
+
User defined CEVAL expression. A CEVAL expression is used to specify match criteria such as origin.ip, source.region_code and contents in the request header.
|
30218
30217
|
Structure is documented below.
|
30219
30218
|
"""
|
30220
30219
|
return pulumi.get(self, "expr")
|
@@ -30223,8 +30222,9 @@ class SecurityPolicyRuleMatch(dict):
|
|
30223
30222
|
@pulumi.getter(name="versionedExpr")
|
30224
30223
|
def versioned_expr(self) -> Optional[str]:
|
30225
30224
|
"""
|
30226
|
-
|
30227
|
-
Available
|
30225
|
+
Preconfigured versioned expression. If this field is specified, config must also be specified.
|
30226
|
+
Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding srcIpRange field in config.
|
30227
|
+
Possible values are: `SRC_IPS_V1`.
|
30228
30228
|
"""
|
30229
30229
|
return pulumi.get(self, "versioned_expr")
|
30230
30230
|
|
@@ -30249,21 +30249,18 @@ class SecurityPolicyRuleMatchConfig(dict):
|
|
30249
30249
|
return super().get(key, default)
|
30250
30250
|
|
30251
30251
|
def __init__(__self__, *,
|
30252
|
-
src_ip_ranges: Sequence[str]):
|
30252
|
+
src_ip_ranges: Optional[Sequence[str]] = None):
|
30253
30253
|
"""
|
30254
|
-
:param Sequence[str] src_ip_ranges:
|
30255
|
-
to match against inbound traffic. There is a limit of 10 IP ranges per rule. A value of `*` matches all IPs
|
30256
|
-
(can be used to override the default behavior).
|
30254
|
+
:param Sequence[str] src_ip_ranges: CIDR IP address range. Maximum number of srcIpRanges allowed is 10.
|
30257
30255
|
"""
|
30258
|
-
|
30256
|
+
if src_ip_ranges is not None:
|
30257
|
+
pulumi.set(__self__, "src_ip_ranges", src_ip_ranges)
|
30259
30258
|
|
30260
30259
|
@property
|
30261
30260
|
@pulumi.getter(name="srcIpRanges")
|
30262
|
-
def src_ip_ranges(self) -> Sequence[str]:
|
30261
|
+
def src_ip_ranges(self) -> Optional[Sequence[str]]:
|
30263
30262
|
"""
|
30264
|
-
|
30265
|
-
to match against inbound traffic. There is a limit of 10 IP ranges per rule. A value of `*` matches all IPs
|
30266
|
-
(can be used to override the default behavior).
|
30263
|
+
CIDR IP address range. Maximum number of srcIpRanges allowed is 10.
|
30267
30264
|
"""
|
30268
30265
|
return pulumi.get(self, "src_ip_ranges")
|
30269
30266
|
|
@@ -30273,8 +30270,7 @@ class SecurityPolicyRuleMatchExpr(dict):
|
|
30273
30270
|
def __init__(__self__, *,
|
30274
30271
|
expression: str):
|
30275
30272
|
"""
|
30276
|
-
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
30277
|
-
The application context of the containing message determines which well-known feature set of CEL is supported.
|
30273
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax. The application context of the containing message determines which well-known feature set of CEL is supported.
|
30278
30274
|
"""
|
30279
30275
|
pulumi.set(__self__, "expression", expression)
|
30280
30276
|
|
@@ -30282,8 +30278,7 @@ class SecurityPolicyRuleMatchExpr(dict):
|
|
30282
30278
|
@pulumi.getter
|
30283
30279
|
def expression(self) -> str:
|
30284
30280
|
"""
|
30285
|
-
Textual representation of an expression in Common Expression Language syntax.
|
30286
|
-
The application context of the containing message determines which well-known feature set of CEL is supported.
|
30281
|
+
Textual representation of an expression in Common Expression Language syntax. The application context of the containing message determines which well-known feature set of CEL is supported.
|
30287
30282
|
"""
|
30288
30283
|
return pulumi.get(self, "expression")
|
30289
30284
|
|
@@ -30293,7 +30288,8 @@ class SecurityPolicyRulePreconfiguredWafConfig(dict):
|
|
30293
30288
|
def __init__(__self__, *,
|
30294
30289
|
exclusions: Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusion']] = None):
|
30295
30290
|
"""
|
30296
|
-
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs'] exclusions: An exclusion to apply during preconfigured WAF evaluation.
|
30291
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs'] exclusions: An exclusion to apply during preconfigured WAF evaluation.
|
30292
|
+
Structure is documented below.
|
30297
30293
|
"""
|
30298
30294
|
if exclusions is not None:
|
30299
30295
|
pulumi.set(__self__, "exclusions", exclusions)
|
@@ -30302,7 +30298,8 @@ class SecurityPolicyRulePreconfiguredWafConfig(dict):
|
|
30302
30298
|
@pulumi.getter
|
30303
30299
|
def exclusions(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusion']]:
|
30304
30300
|
"""
|
30305
|
-
An exclusion to apply during preconfigured WAF evaluation.
|
30301
|
+
An exclusion to apply during preconfigured WAF evaluation.
|
30302
|
+
Structure is documented below.
|
30306
30303
|
"""
|
30307
30304
|
return pulumi.get(self, "exclusions")
|
30308
30305
|
|
@@ -30345,13 +30342,18 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30345
30342
|
target_rule_ids: Optional[Sequence[str]] = None):
|
30346
30343
|
"""
|
30347
30344
|
:param str target_rule_set: Target WAF rule set to apply the preconfigured WAF exclusion.
|
30348
|
-
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs'] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30349
|
-
|
30350
|
-
:param Sequence['
|
30351
|
-
|
30352
|
-
:param Sequence[
|
30353
|
-
|
30354
|
-
|
30345
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs'] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30346
|
+
Structure is documented below.
|
30347
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs'] request_headers: Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30348
|
+
Structure is documented below.
|
30349
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs'] request_query_params: Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30350
|
+
Note that the parameter can be in the query string or in the POST body.
|
30351
|
+
Structure is documented below.
|
30352
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs'] request_uris: Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation.
|
30353
|
+
When specifying this field, the query or fragment part should be excluded.
|
30354
|
+
Structure is documented below.
|
30355
|
+
:param Sequence[str] target_rule_ids: A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion.
|
30356
|
+
If omitted, it refers to all the rule IDs under the WAF rule set.
|
30355
30357
|
"""
|
30356
30358
|
pulumi.set(__self__, "target_rule_set", target_rule_set)
|
30357
30359
|
if request_cookies is not None:
|
@@ -30377,7 +30379,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30377
30379
|
@pulumi.getter(name="requestCookies")
|
30378
30380
|
def request_cookies(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky']]:
|
30379
30381
|
"""
|
30380
|
-
Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30382
|
+
Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30383
|
+
Structure is documented below.
|
30381
30384
|
"""
|
30382
30385
|
return pulumi.get(self, "request_cookies")
|
30383
30386
|
|
@@ -30385,7 +30388,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30385
30388
|
@pulumi.getter(name="requestHeaders")
|
30386
30389
|
def request_headers(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader']]:
|
30387
30390
|
"""
|
30388
|
-
Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30391
|
+
Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30392
|
+
Structure is documented below.
|
30389
30393
|
"""
|
30390
30394
|
return pulumi.get(self, "request_headers")
|
30391
30395
|
|
@@ -30393,7 +30397,9 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30393
30397
|
@pulumi.getter(name="requestQueryParams")
|
30394
30398
|
def request_query_params(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam']]:
|
30395
30399
|
"""
|
30396
|
-
Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30400
|
+
Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30401
|
+
Note that the parameter can be in the query string or in the POST body.
|
30402
|
+
Structure is documented below.
|
30397
30403
|
"""
|
30398
30404
|
return pulumi.get(self, "request_query_params")
|
30399
30405
|
|
@@ -30401,7 +30407,9 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30401
30407
|
@pulumi.getter(name="requestUris")
|
30402
30408
|
def request_uris(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri']]:
|
30403
30409
|
"""
|
30404
|
-
Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation.
|
30410
|
+
Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation.
|
30411
|
+
When specifying this field, the query or fragment part should be excluded.
|
30412
|
+
Structure is documented below.
|
30405
30413
|
"""
|
30406
30414
|
return pulumi.get(self, "request_uris")
|
30407
30415
|
|
@@ -30409,9 +30417,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30409
30417
|
@pulumi.getter(name="targetRuleIds")
|
30410
30418
|
def target_rule_ids(self) -> Optional[Sequence[str]]:
|
30411
30419
|
"""
|
30412
|
-
A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion.
|
30413
|
-
|
30414
|
-
<a name="nested_field_params"></a>The `request_header`, `request_cookie`, `request_uri` and `request_query_param` blocks support:
|
30420
|
+
A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion.
|
30421
|
+
If omitted, it refers to all the rule IDs under the WAF rule set.
|
30415
30422
|
"""
|
30416
30423
|
return pulumi.get(self, "target_rule_ids")
|
30417
30424
|
|
@@ -30422,8 +30429,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky(dict):
|
|
30422
30429
|
operator: str,
|
30423
30430
|
value: Optional[str] = None):
|
30424
30431
|
"""
|
30425
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30426
|
-
|
30432
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30433
|
+
Available options:
|
30434
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30435
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30436
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30437
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30438
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30439
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30440
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30427
30441
|
"""
|
30428
30442
|
pulumi.set(__self__, "operator", operator)
|
30429
30443
|
if value is not None:
|
@@ -30433,7 +30447,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky(dict):
|
|
30433
30447
|
@pulumi.getter
|
30434
30448
|
def operator(self) -> str:
|
30435
30449
|
"""
|
30436
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
30450
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
30451
|
+
Available options:
|
30452
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30453
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30454
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30455
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30456
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30437
30457
|
"""
|
30438
30458
|
return pulumi.get(self, "operator")
|
30439
30459
|
|
@@ -30441,7 +30461,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky(dict):
|
|
30441
30461
|
@pulumi.getter
|
30442
30462
|
def value(self) -> Optional[str]:
|
30443
30463
|
"""
|
30444
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30464
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30465
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30445
30466
|
"""
|
30446
30467
|
return pulumi.get(self, "value")
|
30447
30468
|
|
@@ -30452,8 +30473,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader(dict):
|
|
30452
30473
|
operator: str,
|
30453
30474
|
value: Optional[str] = None):
|
30454
30475
|
"""
|
30455
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30456
|
-
|
30476
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30477
|
+
Available options:
|
30478
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30479
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30480
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30481
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30482
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30483
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30484
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30457
30485
|
"""
|
30458
30486
|
pulumi.set(__self__, "operator", operator)
|
30459
30487
|
if value is not None:
|
@@ -30463,7 +30491,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader(dict):
|
|
30463
30491
|
@pulumi.getter
|
30464
30492
|
def operator(self) -> str:
|
30465
30493
|
"""
|
30466
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
30494
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
30495
|
+
Available options:
|
30496
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30497
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30498
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30499
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30500
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30467
30501
|
"""
|
30468
30502
|
return pulumi.get(self, "operator")
|
30469
30503
|
|
@@ -30471,7 +30505,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader(dict):
|
|
30471
30505
|
@pulumi.getter
|
30472
30506
|
def value(self) -> Optional[str]:
|
30473
30507
|
"""
|
30474
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30508
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30509
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30475
30510
|
"""
|
30476
30511
|
return pulumi.get(self, "value")
|
30477
30512
|
|
@@ -30482,8 +30517,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam(dict):
|
|
30482
30517
|
operator: str,
|
30483
30518
|
value: Optional[str] = None):
|
30484
30519
|
"""
|
30485
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30486
|
-
|
30520
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30521
|
+
Available options:
|
30522
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30523
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30524
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30525
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30526
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30527
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30528
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30487
30529
|
"""
|
30488
30530
|
pulumi.set(__self__, "operator", operator)
|
30489
30531
|
if value is not None:
|
@@ -30493,7 +30535,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam(dict):
|
|
30493
30535
|
@pulumi.getter
|
30494
30536
|
def operator(self) -> str:
|
30495
30537
|
"""
|
30496
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
30538
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
30539
|
+
Available options:
|
30540
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30541
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30542
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30543
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30544
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30497
30545
|
"""
|
30498
30546
|
return pulumi.get(self, "operator")
|
30499
30547
|
|
@@ -30501,7 +30549,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam(dict):
|
|
30501
30549
|
@pulumi.getter
|
30502
30550
|
def value(self) -> Optional[str]:
|
30503
30551
|
"""
|
30504
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30552
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30553
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30505
30554
|
"""
|
30506
30555
|
return pulumi.get(self, "value")
|
30507
30556
|
|
@@ -30512,8 +30561,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri(dict):
|
|
30512
30561
|
operator: str,
|
30513
30562
|
value: Optional[str] = None):
|
30514
30563
|
"""
|
30515
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30516
|
-
|
30564
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30565
|
+
Available options:
|
30566
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30567
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30568
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30569
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30570
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30571
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30572
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30517
30573
|
"""
|
30518
30574
|
pulumi.set(__self__, "operator", operator)
|
30519
30575
|
if value is not None:
|
@@ -30523,7 +30579,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri(dict):
|
|
30523
30579
|
@pulumi.getter
|
30524
30580
|
def operator(self) -> str:
|
30525
30581
|
"""
|
30526
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
30582
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
30583
|
+
Available options:
|
30584
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
30585
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
30586
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
30587
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
30588
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
30527
30589
|
"""
|
30528
30590
|
return pulumi.get(self, "operator")
|
30529
30591
|
|
@@ -30531,7 +30593,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri(dict):
|
|
30531
30593
|
@pulumi.getter
|
30532
30594
|
def value(self) -> Optional[str]:
|
30533
30595
|
"""
|
30534
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30596
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
30597
|
+
The field value must be given if the field operator is not EQUALS_ANY, and cannot be given if the field operator is EQUALS_ANY.
|
30535
30598
|
"""
|
30536
30599
|
return pulumi.get(self, "value")
|
30537
30600
|
|