pulumi-gcp 7.21.0a1714565535__py3-none-any.whl → 7.21.0a1714596856__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.0a1714596856.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714596856.dist-info}/RECORD +56 -50
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714596856.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714596856.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -29223,14 +29223,14 @@ class SecurityPolicyRuleMatchArgs:
|
|
29223
29223
|
expr: Optional[pulumi.Input['SecurityPolicyRuleMatchExprArgs']] = None,
|
29224
29224
|
versioned_expr: Optional[pulumi.Input[str]] = None):
|
29225
29225
|
"""
|
29226
|
-
:param pulumi.Input['SecurityPolicyRuleMatchConfigArgs'] config: The configuration options available when specifying
|
29227
|
-
This field must be specified if
|
29226
|
+
:param pulumi.Input['SecurityPolicyRuleMatchConfigArgs'] config: The configuration options available when specifying versionedExpr.
|
29227
|
+
This field must be specified if versionedExpr is specified and cannot be specified if versionedExpr is not specified.
|
29228
29228
|
Structure is documented below.
|
29229
|
-
:param pulumi.Input['SecurityPolicyRuleMatchExprArgs'] expr: User defined CEVAL expression. A CEVAL expression is used to specify match criteria
|
29230
|
-
such as `origin.ip`, `source.region_code` and `contents` in the request header.
|
29229
|
+
:param pulumi.Input['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.
|
29231
29230
|
Structure is documented below.
|
29232
|
-
:param pulumi.Input[str] versioned_expr:
|
29233
|
-
Available
|
29231
|
+
:param pulumi.Input[str] versioned_expr: Preconfigured versioned expression. If this field is specified, config must also be specified.
|
29232
|
+
Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding srcIpRange field in config.
|
29233
|
+
Possible values are: `SRC_IPS_V1`.
|
29234
29234
|
"""
|
29235
29235
|
if config is not None:
|
29236
29236
|
pulumi.set(__self__, "config", config)
|
@@ -29243,8 +29243,8 @@ class SecurityPolicyRuleMatchArgs:
|
|
29243
29243
|
@pulumi.getter
|
29244
29244
|
def config(self) -> Optional[pulumi.Input['SecurityPolicyRuleMatchConfigArgs']]:
|
29245
29245
|
"""
|
29246
|
-
The configuration options available when specifying
|
29247
|
-
This field must be specified if
|
29246
|
+
The configuration options available when specifying versionedExpr.
|
29247
|
+
This field must be specified if versionedExpr is specified and cannot be specified if versionedExpr is not specified.
|
29248
29248
|
Structure is documented below.
|
29249
29249
|
"""
|
29250
29250
|
return pulumi.get(self, "config")
|
@@ -29257,8 +29257,7 @@ class SecurityPolicyRuleMatchArgs:
|
|
29257
29257
|
@pulumi.getter
|
29258
29258
|
def expr(self) -> Optional[pulumi.Input['SecurityPolicyRuleMatchExprArgs']]:
|
29259
29259
|
"""
|
29260
|
-
User defined CEVAL expression. A CEVAL expression is used to specify match criteria
|
29261
|
-
such as `origin.ip`, `source.region_code` and `contents` in the request header.
|
29260
|
+
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.
|
29262
29261
|
Structure is documented below.
|
29263
29262
|
"""
|
29264
29263
|
return pulumi.get(self, "expr")
|
@@ -29271,8 +29270,9 @@ class SecurityPolicyRuleMatchArgs:
|
|
29271
29270
|
@pulumi.getter(name="versionedExpr")
|
29272
29271
|
def versioned_expr(self) -> Optional[pulumi.Input[str]]:
|
29273
29272
|
"""
|
29274
|
-
|
29275
|
-
Available
|
29273
|
+
Preconfigured versioned expression. If this field is specified, config must also be specified.
|
29274
|
+
Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding srcIpRange field in config.
|
29275
|
+
Possible values are: `SRC_IPS_V1`.
|
29276
29276
|
"""
|
29277
29277
|
return pulumi.get(self, "versioned_expr")
|
29278
29278
|
|
@@ -29284,26 +29284,23 @@ class SecurityPolicyRuleMatchArgs:
|
|
29284
29284
|
@pulumi.input_type
|
29285
29285
|
class SecurityPolicyRuleMatchConfigArgs:
|
29286
29286
|
def __init__(__self__, *,
|
29287
|
-
src_ip_ranges: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
29287
|
+
src_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
29288
29288
|
"""
|
29289
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] src_ip_ranges:
|
29290
|
-
to match against inbound traffic. There is a limit of 10 IP ranges per rule. A value of `*` matches all IPs
|
29291
|
-
(can be used to override the default behavior).
|
29289
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] src_ip_ranges: CIDR IP address range. Maximum number of srcIpRanges allowed is 10.
|
29292
29290
|
"""
|
29293
|
-
|
29291
|
+
if src_ip_ranges is not None:
|
29292
|
+
pulumi.set(__self__, "src_ip_ranges", src_ip_ranges)
|
29294
29293
|
|
29295
29294
|
@property
|
29296
29295
|
@pulumi.getter(name="srcIpRanges")
|
29297
|
-
def src_ip_ranges(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
29296
|
+
def src_ip_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
29298
29297
|
"""
|
29299
|
-
|
29300
|
-
to match against inbound traffic. There is a limit of 10 IP ranges per rule. A value of `*` matches all IPs
|
29301
|
-
(can be used to override the default behavior).
|
29298
|
+
CIDR IP address range. Maximum number of srcIpRanges allowed is 10.
|
29302
29299
|
"""
|
29303
29300
|
return pulumi.get(self, "src_ip_ranges")
|
29304
29301
|
|
29305
29302
|
@src_ip_ranges.setter
|
29306
|
-
def src_ip_ranges(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
29303
|
+
def src_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
29307
29304
|
pulumi.set(self, "src_ip_ranges", value)
|
29308
29305
|
|
29309
29306
|
|
@@ -29312,8 +29309,7 @@ class SecurityPolicyRuleMatchExprArgs:
|
|
29312
29309
|
def __init__(__self__, *,
|
29313
29310
|
expression: pulumi.Input[str]):
|
29314
29311
|
"""
|
29315
|
-
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
29316
|
-
The application context of the containing message determines which well-known feature set of CEL is supported.
|
29312
|
+
:param pulumi.Input[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.
|
29317
29313
|
"""
|
29318
29314
|
pulumi.set(__self__, "expression", expression)
|
29319
29315
|
|
@@ -29321,8 +29317,7 @@ class SecurityPolicyRuleMatchExprArgs:
|
|
29321
29317
|
@pulumi.getter
|
29322
29318
|
def expression(self) -> pulumi.Input[str]:
|
29323
29319
|
"""
|
29324
|
-
Textual representation of an expression in Common Expression Language syntax.
|
29325
|
-
The application context of the containing message determines which well-known feature set of CEL is supported.
|
29320
|
+
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.
|
29326
29321
|
"""
|
29327
29322
|
return pulumi.get(self, "expression")
|
29328
29323
|
|
@@ -29336,7 +29331,8 @@ class SecurityPolicyRulePreconfiguredWafConfigArgs:
|
|
29336
29331
|
def __init__(__self__, *,
|
29337
29332
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs']]]] = None):
|
29338
29333
|
"""
|
29339
|
-
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs']]] exclusions: An exclusion to apply during preconfigured WAF evaluation.
|
29334
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs']]] exclusions: An exclusion to apply during preconfigured WAF evaluation.
|
29335
|
+
Structure is documented below.
|
29340
29336
|
"""
|
29341
29337
|
if exclusions is not None:
|
29342
29338
|
pulumi.set(__self__, "exclusions", exclusions)
|
@@ -29345,7 +29341,8 @@ class SecurityPolicyRulePreconfiguredWafConfigArgs:
|
|
29345
29341
|
@pulumi.getter
|
29346
29342
|
def exclusions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs']]]]:
|
29347
29343
|
"""
|
29348
|
-
An exclusion to apply during preconfigured WAF evaluation.
|
29344
|
+
An exclusion to apply during preconfigured WAF evaluation.
|
29345
|
+
Structure is documented below.
|
29349
29346
|
"""
|
29350
29347
|
return pulumi.get(self, "exclusions")
|
29351
29348
|
|
@@ -29365,13 +29362,18 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29365
29362
|
target_rule_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
29366
29363
|
"""
|
29367
29364
|
:param pulumi.Input[str] target_rule_set: Target WAF rule set to apply the preconfigured WAF exclusion.
|
29368
|
-
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs']]] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29369
|
-
|
29370
|
-
:param pulumi.Input[Sequence[pulumi.Input['
|
29371
|
-
|
29372
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
29373
|
-
|
29374
|
-
|
29365
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs']]] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29366
|
+
Structure is documented below.
|
29367
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs']]] request_headers: Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29368
|
+
Structure is documented below.
|
29369
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs']]] request_query_params: Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29370
|
+
Note that the parameter can be in the query string or in the POST body.
|
29371
|
+
Structure is documented below.
|
29372
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs']]] request_uris: Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation.
|
29373
|
+
When specifying this field, the query or fragment part should be excluded.
|
29374
|
+
Structure is documented below.
|
29375
|
+
: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.
|
29376
|
+
If omitted, it refers to all the rule IDs under the WAF rule set.
|
29375
29377
|
"""
|
29376
29378
|
pulumi.set(__self__, "target_rule_set", target_rule_set)
|
29377
29379
|
if request_cookies is not None:
|
@@ -29401,7 +29403,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29401
29403
|
@pulumi.getter(name="requestCookies")
|
29402
29404
|
def request_cookies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs']]]]:
|
29403
29405
|
"""
|
29404
|
-
Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29406
|
+
Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29407
|
+
Structure is documented below.
|
29405
29408
|
"""
|
29406
29409
|
return pulumi.get(self, "request_cookies")
|
29407
29410
|
|
@@ -29413,7 +29416,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29413
29416
|
@pulumi.getter(name="requestHeaders")
|
29414
29417
|
def request_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs']]]]:
|
29415
29418
|
"""
|
29416
|
-
Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29419
|
+
Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29420
|
+
Structure is documented below.
|
29417
29421
|
"""
|
29418
29422
|
return pulumi.get(self, "request_headers")
|
29419
29423
|
|
@@ -29425,7 +29429,9 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29425
29429
|
@pulumi.getter(name="requestQueryParams")
|
29426
29430
|
def request_query_params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs']]]]:
|
29427
29431
|
"""
|
29428
|
-
Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29432
|
+
Request query parameter whose value will be excluded from inspection during preconfigured WAF evaluation.
|
29433
|
+
Note that the parameter can be in the query string or in the POST body.
|
29434
|
+
Structure is documented below.
|
29429
29435
|
"""
|
29430
29436
|
return pulumi.get(self, "request_query_params")
|
29431
29437
|
|
@@ -29437,7 +29443,9 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29437
29443
|
@pulumi.getter(name="requestUris")
|
29438
29444
|
def request_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs']]]]:
|
29439
29445
|
"""
|
29440
|
-
Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation.
|
29446
|
+
Request URI from the request line to be excluded from inspection during preconfigured WAF evaluation.
|
29447
|
+
When specifying this field, the query or fragment part should be excluded.
|
29448
|
+
Structure is documented below.
|
29441
29449
|
"""
|
29442
29450
|
return pulumi.get(self, "request_uris")
|
29443
29451
|
|
@@ -29449,9 +29457,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionArgs:
|
|
29449
29457
|
@pulumi.getter(name="targetRuleIds")
|
29450
29458
|
def target_rule_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
29451
29459
|
"""
|
29452
|
-
A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion.
|
29453
|
-
|
29454
|
-
<a name="nested_field_params"></a>The `request_header`, `request_cookie`, `request_uri` and `request_query_param` blocks support:
|
29460
|
+
A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion.
|
29461
|
+
If omitted, it refers to all the rule IDs under the WAF rule set.
|
29455
29462
|
"""
|
29456
29463
|
return pulumi.get(self, "target_rule_ids")
|
29457
29464
|
|
@@ -29466,8 +29473,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs:
|
|
29466
29473
|
operator: pulumi.Input[str],
|
29467
29474
|
value: Optional[pulumi.Input[str]] = None):
|
29468
29475
|
"""
|
29469
|
-
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29470
|
-
|
29476
|
+
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29477
|
+
Available options:
|
29478
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29479
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29480
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29481
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29482
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29483
|
+
:param pulumi.Input[str] value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29484
|
+
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.
|
29471
29485
|
"""
|
29472
29486
|
pulumi.set(__self__, "operator", operator)
|
29473
29487
|
if value is not None:
|
@@ -29477,7 +29491,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs:
|
|
29477
29491
|
@pulumi.getter
|
29478
29492
|
def operator(self) -> pulumi.Input[str]:
|
29479
29493
|
"""
|
29480
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
29494
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
29495
|
+
Available options:
|
29496
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29497
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29498
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29499
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29500
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29481
29501
|
"""
|
29482
29502
|
return pulumi.get(self, "operator")
|
29483
29503
|
|
@@ -29489,7 +29509,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs:
|
|
29489
29509
|
@pulumi.getter
|
29490
29510
|
def value(self) -> Optional[pulumi.Input[str]]:
|
29491
29511
|
"""
|
29492
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29512
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29513
|
+
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.
|
29493
29514
|
"""
|
29494
29515
|
return pulumi.get(self, "value")
|
29495
29516
|
|
@@ -29504,8 +29525,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs:
|
|
29504
29525
|
operator: pulumi.Input[str],
|
29505
29526
|
value: Optional[pulumi.Input[str]] = None):
|
29506
29527
|
"""
|
29507
|
-
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29508
|
-
|
29528
|
+
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29529
|
+
Available options:
|
29530
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29531
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29532
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29533
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29534
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29535
|
+
:param pulumi.Input[str] value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29536
|
+
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.
|
29509
29537
|
"""
|
29510
29538
|
pulumi.set(__self__, "operator", operator)
|
29511
29539
|
if value is not None:
|
@@ -29515,7 +29543,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs:
|
|
29515
29543
|
@pulumi.getter
|
29516
29544
|
def operator(self) -> pulumi.Input[str]:
|
29517
29545
|
"""
|
29518
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
29546
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
29547
|
+
Available options:
|
29548
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29549
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29550
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29551
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29552
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29519
29553
|
"""
|
29520
29554
|
return pulumi.get(self, "operator")
|
29521
29555
|
|
@@ -29527,7 +29561,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs:
|
|
29527
29561
|
@pulumi.getter
|
29528
29562
|
def value(self) -> Optional[pulumi.Input[str]]:
|
29529
29563
|
"""
|
29530
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29564
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29565
|
+
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.
|
29531
29566
|
"""
|
29532
29567
|
return pulumi.get(self, "value")
|
29533
29568
|
|
@@ -29542,8 +29577,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs:
|
|
29542
29577
|
operator: pulumi.Input[str],
|
29543
29578
|
value: Optional[pulumi.Input[str]] = None):
|
29544
29579
|
"""
|
29545
|
-
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29546
|
-
|
29580
|
+
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29581
|
+
Available options:
|
29582
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29583
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29584
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29585
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29586
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29587
|
+
:param pulumi.Input[str] value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29588
|
+
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.
|
29547
29589
|
"""
|
29548
29590
|
pulumi.set(__self__, "operator", operator)
|
29549
29591
|
if value is not None:
|
@@ -29553,7 +29595,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs:
|
|
29553
29595
|
@pulumi.getter
|
29554
29596
|
def operator(self) -> pulumi.Input[str]:
|
29555
29597
|
"""
|
29556
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
29598
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
29599
|
+
Available options:
|
29600
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29601
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29602
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29603
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29604
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29557
29605
|
"""
|
29558
29606
|
return pulumi.get(self, "operator")
|
29559
29607
|
|
@@ -29565,7 +29613,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParamArgs:
|
|
29565
29613
|
@pulumi.getter
|
29566
29614
|
def value(self) -> Optional[pulumi.Input[str]]:
|
29567
29615
|
"""
|
29568
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29616
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29617
|
+
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.
|
29569
29618
|
"""
|
29570
29619
|
return pulumi.get(self, "value")
|
29571
29620
|
|
@@ -29580,8 +29629,15 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs:
|
|
29580
29629
|
operator: pulumi.Input[str],
|
29581
29630
|
value: Optional[pulumi.Input[str]] = None):
|
29582
29631
|
"""
|
29583
|
-
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29584
|
-
|
29632
|
+
:param pulumi.Input[str] operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
29633
|
+
Available options:
|
29634
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29635
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29636
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29637
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29638
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29639
|
+
:param pulumi.Input[str] value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29640
|
+
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.
|
29585
29641
|
"""
|
29586
29642
|
pulumi.set(__self__, "operator", operator)
|
29587
29643
|
if value is not None:
|
@@ -29591,7 +29647,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs:
|
|
29591
29647
|
@pulumi.getter
|
29592
29648
|
def operator(self) -> pulumi.Input[str]:
|
29593
29649
|
"""
|
29594
|
-
You can specify an exact match or a partial match by using a field operator and a field value.
|
29650
|
+
You can specify an exact match or a partial match by using a field operator and a field value.
|
29651
|
+
Available options:
|
29652
|
+
EQUALS: The operator matches if the field value equals the specified value.
|
29653
|
+
STARTS_WITH: The operator matches if the field value starts with the specified value.
|
29654
|
+
ENDS_WITH: The operator matches if the field value ends with the specified value.
|
29655
|
+
CONTAINS: The operator matches if the field value contains the specified value.
|
29656
|
+
EQUALS_ANY: The operator matches if the field value is any value.
|
29595
29657
|
"""
|
29596
29658
|
return pulumi.get(self, "operator")
|
29597
29659
|
|
@@ -29603,7 +29665,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUriArgs:
|
|
29603
29665
|
@pulumi.getter
|
29604
29666
|
def value(self) -> Optional[pulumi.Input[str]]:
|
29605
29667
|
"""
|
29606
|
-
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29668
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation.
|
29669
|
+
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.
|
29607
29670
|
"""
|
29608
29671
|
return pulumi.get(self, "value")
|
29609
29672
|
|