pulumi-gcp 7.21.0__py3-none-any.whl → 7.21.0a1714002516__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 -40
- pulumi_gcp/alloydb/_inputs.py +0 -74
- pulumi_gcp/alloydb/backup.py +12 -0
- pulumi_gcp/alloydb/cluster.py +12 -0
- pulumi_gcp/alloydb/instance.py +81 -90
- pulumi_gcp/alloydb/outputs.py +0 -98
- pulumi_gcp/apigee/environment.py +0 -47
- pulumi_gcp/apigee/sharedflow.py +20 -0
- pulumi_gcp/appengine/flexible_app_version.py +20 -0
- pulumi_gcp/applicationintegration/__init__.py +0 -1
- pulumi_gcp/applicationintegration/_inputs.py +0 -843
- pulumi_gcp/applicationintegration/outputs.py +0 -891
- pulumi_gcp/bigquerydatapolicy/_inputs.py +4 -21
- pulumi_gcp/bigquerydatapolicy/data_policy.py +0 -78
- pulumi_gcp/bigquerydatapolicy/outputs.py +3 -16
- pulumi_gcp/certificateauthority/_inputs.py +12 -92
- pulumi_gcp/certificateauthority/authority.py +27 -117
- pulumi_gcp/certificateauthority/certificate.py +0 -176
- pulumi_gcp/certificateauthority/outputs.py +12 -144
- pulumi_gcp/cloudbuild/worker_pool.py +12 -0
- pulumi_gcp/cloudbuildv2/connection.py +12 -0
- pulumi_gcp/cloudbuildv2/repository.py +12 -0
- pulumi_gcp/clouddeploy/automation.py +12 -0
- pulumi_gcp/clouddeploy/custom_target_type.py +12 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +12 -0
- pulumi_gcp/clouddeploy/target.py +12 -0
- pulumi_gcp/cloudrunv2/job.py +12 -0
- pulumi_gcp/cloudrunv2/service.py +12 -0
- pulumi_gcp/composer/__init__.py +0 -1
- pulumi_gcp/composer/environment.py +47 -35
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +58 -121
- pulumi_gcp/compute/forwarding_rule.py +13 -0
- pulumi_gcp/compute/global_address.py +12 -0
- pulumi_gcp/compute/global_forwarding_rule.py +282 -0
- pulumi_gcp/compute/instance_from_machine_image.py +46 -14
- pulumi_gcp/compute/instance_from_template.py +46 -14
- pulumi_gcp/compute/outputs.py +65 -120
- pulumi_gcp/compute/region_instance_template.py +13 -0
- pulumi_gcp/compute/region_target_https_proxy.py +0 -257
- pulumi_gcp/compute/region_url_map.py +470 -0
- pulumi_gcp/container/attached_cluster.py +12 -0
- pulumi_gcp/container/aws_cluster.py +12 -0
- pulumi_gcp/container/aws_node_pool.py +12 -0
- pulumi_gcp/container/azure_cluster.py +12 -0
- pulumi_gcp/container/azure_node_pool.py +12 -0
- pulumi_gcp/container/cluster.py +20 -0
- pulumi_gcp/dataflow/flex_template_job.py +39 -0
- pulumi_gcp/dataloss/__init__.py +0 -1
- pulumi_gcp/dataloss/_inputs.py +0 -1040
- pulumi_gcp/dataloss/outputs.py +0 -1123
- pulumi_gcp/dataproc/cluster.py +20 -0
- pulumi_gcp/dataproc/workflow_template.py +26 -21
- pulumi_gcp/deploymentmanager/deployment.py +34 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +36 -2
- pulumi_gcp/filestore/get_instance.py +1 -11
- pulumi_gcp/filestore/instance.py +0 -101
- pulumi_gcp/firebase/_inputs.py +0 -16
- pulumi_gcp/firebase/android_app.py +27 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +0 -20
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +0 -10
- pulumi_gcp/firebase/app_check_service_config.py +125 -0
- pulumi_gcp/firebase/apple_app.py +27 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +27 -0
- pulumi_gcp/firebase/hosting_version.py +0 -44
- pulumi_gcp/firebase/outputs.py +0 -12
- pulumi_gcp/firebase/web_app.py +20 -0
- pulumi_gcp/firestore/database.py +68 -0
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +12 -0
- pulumi_gcp/logging/folder_sink.py +0 -54
- pulumi_gcp/logging/organization_sink.py +0 -54
- pulumi_gcp/monitoring/_inputs.py +2 -46
- pulumi_gcp/monitoring/outputs.py +2 -40
- pulumi_gcp/monitoring/uptime_check_config.py +0 -6
- pulumi_gcp/netapp/active_directory.py +20 -0
- pulumi_gcp/netapp/volume_replication.py +68 -0
- pulumi_gcp/networkconnectivity/__init__.py +0 -1
- pulumi_gcp/provider.py +1 -3
- pulumi_gcp/secretmanager/get_secret.py +3 -13
- pulumi_gcp/secretmanager/outputs.py +1 -20
- pulumi_gcp/secretmanager/secret.py +15 -90
- pulumi_gcp/servicenetworking/connection.py +20 -0
- pulumi_gcp/spanner/database.py +41 -0
- pulumi_gcp/spanner/instance.py +40 -0
- pulumi_gcp/storage/__init__.py +0 -1
- pulumi_gcp/storage/bucket.py +12 -0
- pulumi_gcp/storage/outputs.py +0 -63
- pulumi_gcp/workstations/workstation.py +12 -0
- pulumi_gcp/workstations/workstation_cluster.py +12 -0
- pulumi_gcp/workstations/workstation_config.py +12 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/RECORD +100 -106
- pulumi_gcp/applicationintegration/auth_config.py +0 -998
- pulumi_gcp/composer/user_workloads_secret.py +0 -441
- pulumi_gcp/compute/security_policy_rule.py +0 -850
- pulumi_gcp/dataloss/prevention_discovery_config.py +0 -737
- pulumi_gcp/networkconnectivity/internal_range.py +0 -1024
- pulumi_gcp/storage/get_bucket_objects.py +0 -153
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.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 `versioned_expr`.
|
30187
|
+
This field must be specified if `versioned_expr` is specified and cannot be specified if `versioned_expr` 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
|
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.
|
30190
30191
|
Structure is documented below.
|
30191
|
-
:param str versioned_expr:
|
30192
|
-
Available
|
30193
|
-
Possible values are: `SRC_IPS_V1`.
|
30192
|
+
:param str versioned_expr: Predefined rule expression. If this field is specified, `config` must also be specified.
|
30193
|
+
Available options:
|
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 `versioned_expr`.
|
30207
|
+
This field must be specified if `versioned_expr` is specified and cannot be specified if `versioned_expr` is not specified.
|
30208
30208
|
Structure is documented below.
|
30209
30209
|
"""
|
30210
30210
|
return pulumi.get(self, "config")
|
@@ -30213,7 +30213,8 @@ 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
|
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.
|
30217
30218
|
Structure is documented below.
|
30218
30219
|
"""
|
30219
30220
|
return pulumi.get(self, "expr")
|
@@ -30222,9 +30223,8 @@ class SecurityPolicyRuleMatch(dict):
|
|
30222
30223
|
@pulumi.getter(name="versionedExpr")
|
30223
30224
|
def versioned_expr(self) -> Optional[str]:
|
30224
30225
|
"""
|
30225
|
-
|
30226
|
-
Available
|
30227
|
-
Possible values are: `SRC_IPS_V1`.
|
30226
|
+
Predefined rule expression. If this field is specified, `config` must also be specified.
|
30227
|
+
Available options:
|
30228
30228
|
"""
|
30229
30229
|
return pulumi.get(self, "versioned_expr")
|
30230
30230
|
|
@@ -30249,18 +30249,21 @@ class SecurityPolicyRuleMatchConfig(dict):
|
|
30249
30249
|
return super().get(key, default)
|
30250
30250
|
|
30251
30251
|
def __init__(__self__, *,
|
30252
|
-
src_ip_ranges:
|
30252
|
+
src_ip_ranges: Sequence[str]):
|
30253
30253
|
"""
|
30254
|
-
:param Sequence[str] src_ip_ranges:
|
30254
|
+
:param Sequence[str] src_ip_ranges: Set of IP addresses or ranges (IPV4 or IPV6) in CIDR notation
|
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).
|
30255
30257
|
"""
|
30256
|
-
|
30257
|
-
pulumi.set(__self__, "src_ip_ranges", src_ip_ranges)
|
30258
|
+
pulumi.set(__self__, "src_ip_ranges", src_ip_ranges)
|
30258
30259
|
|
30259
30260
|
@property
|
30260
30261
|
@pulumi.getter(name="srcIpRanges")
|
30261
|
-
def src_ip_ranges(self) ->
|
30262
|
+
def src_ip_ranges(self) -> Sequence[str]:
|
30262
30263
|
"""
|
30263
|
-
|
30264
|
+
Set of IP addresses or ranges (IPV4 or IPV6) in CIDR notation
|
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).
|
30264
30267
|
"""
|
30265
30268
|
return pulumi.get(self, "src_ip_ranges")
|
30266
30269
|
|
@@ -30270,7 +30273,8 @@ class SecurityPolicyRuleMatchExpr(dict):
|
|
30270
30273
|
def __init__(__self__, *,
|
30271
30274
|
expression: str):
|
30272
30275
|
"""
|
30273
|
-
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
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.
|
30274
30278
|
"""
|
30275
30279
|
pulumi.set(__self__, "expression", expression)
|
30276
30280
|
|
@@ -30278,7 +30282,8 @@ class SecurityPolicyRuleMatchExpr(dict):
|
|
30278
30282
|
@pulumi.getter
|
30279
30283
|
def expression(self) -> str:
|
30280
30284
|
"""
|
30281
|
-
Textual representation of an expression in Common Expression Language syntax.
|
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.
|
30282
30287
|
"""
|
30283
30288
|
return pulumi.get(self, "expression")
|
30284
30289
|
|
@@ -30288,8 +30293,7 @@ class SecurityPolicyRulePreconfiguredWafConfig(dict):
|
|
30288
30293
|
def __init__(__self__, *,
|
30289
30294
|
exclusions: Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusion']] = None):
|
30290
30295
|
"""
|
30291
|
-
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs'] exclusions: An exclusion to apply during preconfigured WAF evaluation.
|
30292
|
-
Structure is documented below.
|
30296
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionArgs'] exclusions: An exclusion to apply during preconfigured WAF evaluation. Structure is documented below.
|
30293
30297
|
"""
|
30294
30298
|
if exclusions is not None:
|
30295
30299
|
pulumi.set(__self__, "exclusions", exclusions)
|
@@ -30298,8 +30302,7 @@ class SecurityPolicyRulePreconfiguredWafConfig(dict):
|
|
30298
30302
|
@pulumi.getter
|
30299
30303
|
def exclusions(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusion']]:
|
30300
30304
|
"""
|
30301
|
-
An exclusion to apply during preconfigured WAF evaluation.
|
30302
|
-
Structure is documented below.
|
30305
|
+
An exclusion to apply during preconfigured WAF evaluation. Structure is documented below.
|
30303
30306
|
"""
|
30304
30307
|
return pulumi.get(self, "exclusions")
|
30305
30308
|
|
@@ -30342,18 +30345,13 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30342
30345
|
target_rule_ids: Optional[Sequence[str]] = None):
|
30343
30346
|
"""
|
30344
30347
|
:param str target_rule_set: Target WAF rule set to apply the preconfigured WAF exclusion.
|
30345
|
-
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs'] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30346
|
-
|
30347
|
-
:param Sequence['
|
30348
|
-
|
30349
|
-
:param Sequence[
|
30350
|
-
|
30351
|
-
|
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.
|
30348
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyArgs'] request_cookies: Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
30349
|
+
:param Sequence['SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeaderArgs'] request_headers: Request header whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
30350
|
+
: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.
|
30351
|
+
: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.
|
30352
|
+
: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.
|
30353
|
+
|
30354
|
+
<a name="nested_field_params"></a>The `request_header`, `request_cookie`, `request_uri` and `request_query_param` blocks support:
|
30357
30355
|
"""
|
30358
30356
|
pulumi.set(__self__, "target_rule_set", target_rule_set)
|
30359
30357
|
if request_cookies is not None:
|
@@ -30379,8 +30377,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30379
30377
|
@pulumi.getter(name="requestCookies")
|
30380
30378
|
def request_cookies(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky']]:
|
30381
30379
|
"""
|
30382
|
-
Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30383
|
-
Structure is documented below.
|
30380
|
+
Request cookie whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
30384
30381
|
"""
|
30385
30382
|
return pulumi.get(self, "request_cookies")
|
30386
30383
|
|
@@ -30388,8 +30385,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30388
30385
|
@pulumi.getter(name="requestHeaders")
|
30389
30386
|
def request_headers(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader']]:
|
30390
30387
|
"""
|
30391
|
-
Request header whose value will be excluded from inspection during preconfigured WAF evaluation.
|
30392
|
-
Structure is documented below.
|
30388
|
+
Request header whose value will be excluded from inspection during preconfigured WAF evaluation. Structure is documented below.
|
30393
30389
|
"""
|
30394
30390
|
return pulumi.get(self, "request_headers")
|
30395
30391
|
|
@@ -30397,9 +30393,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30397
30393
|
@pulumi.getter(name="requestQueryParams")
|
30398
30394
|
def request_query_params(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam']]:
|
30399
30395
|
"""
|
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.
|
30396
|
+
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.
|
30403
30397
|
"""
|
30404
30398
|
return pulumi.get(self, "request_query_params")
|
30405
30399
|
|
@@ -30407,9 +30401,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30407
30401
|
@pulumi.getter(name="requestUris")
|
30408
30402
|
def request_uris(self) -> Optional[Sequence['outputs.SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri']]:
|
30409
30403
|
"""
|
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.
|
30404
|
+
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.
|
30413
30405
|
"""
|
30414
30406
|
return pulumi.get(self, "request_uris")
|
30415
30407
|
|
@@ -30417,8 +30409,9 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusion(dict):
|
|
30417
30409
|
@pulumi.getter(name="targetRuleIds")
|
30418
30410
|
def target_rule_ids(self) -> Optional[Sequence[str]]:
|
30419
30411
|
"""
|
30420
|
-
A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion.
|
30421
|
-
|
30412
|
+
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.
|
30413
|
+
|
30414
|
+
<a name="nested_field_params"></a>The `request_header`, `request_cookie`, `request_uri` and `request_query_param` blocks support:
|
30422
30415
|
"""
|
30423
30416
|
return pulumi.get(self, "target_rule_ids")
|
30424
30417
|
|
@@ -30429,15 +30422,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky(dict):
|
|
30429
30422
|
operator: str,
|
30430
30423
|
value: Optional[str] = None):
|
30431
30424
|
"""
|
30432
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30433
|
-
|
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.
|
30425
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30426
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30441
30427
|
"""
|
30442
30428
|
pulumi.set(__self__, "operator", operator)
|
30443
30429
|
if value is not None:
|
@@ -30447,13 +30433,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky(dict):
|
|
30447
30433
|
@pulumi.getter
|
30448
30434
|
def operator(self) -> str:
|
30449
30435
|
"""
|
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.
|
30436
|
+
You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30457
30437
|
"""
|
30458
30438
|
return pulumi.get(self, "operator")
|
30459
30439
|
|
@@ -30461,8 +30441,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky(dict):
|
|
30461
30441
|
@pulumi.getter
|
30462
30442
|
def value(self) -> Optional[str]:
|
30463
30443
|
"""
|
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.
|
30444
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30466
30445
|
"""
|
30467
30446
|
return pulumi.get(self, "value")
|
30468
30447
|
|
@@ -30473,15 +30452,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader(dict):
|
|
30473
30452
|
operator: str,
|
30474
30453
|
value: Optional[str] = None):
|
30475
30454
|
"""
|
30476
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30477
|
-
|
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.
|
30455
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30456
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30485
30457
|
"""
|
30486
30458
|
pulumi.set(__self__, "operator", operator)
|
30487
30459
|
if value is not None:
|
@@ -30491,13 +30463,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader(dict):
|
|
30491
30463
|
@pulumi.getter
|
30492
30464
|
def operator(self) -> str:
|
30493
30465
|
"""
|
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.
|
30466
|
+
You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30501
30467
|
"""
|
30502
30468
|
return pulumi.get(self, "operator")
|
30503
30469
|
|
@@ -30505,8 +30471,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestHeader(dict):
|
|
30505
30471
|
@pulumi.getter
|
30506
30472
|
def value(self) -> Optional[str]:
|
30507
30473
|
"""
|
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.
|
30474
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30510
30475
|
"""
|
30511
30476
|
return pulumi.get(self, "value")
|
30512
30477
|
|
@@ -30517,15 +30482,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam(dict):
|
|
30517
30482
|
operator: str,
|
30518
30483
|
value: Optional[str] = None):
|
30519
30484
|
"""
|
30520
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30521
|
-
|
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.
|
30485
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30486
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30529
30487
|
"""
|
30530
30488
|
pulumi.set(__self__, "operator", operator)
|
30531
30489
|
if value is not None:
|
@@ -30535,13 +30493,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam(dict):
|
|
30535
30493
|
@pulumi.getter
|
30536
30494
|
def operator(self) -> str:
|
30537
30495
|
"""
|
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.
|
30496
|
+
You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30545
30497
|
"""
|
30546
30498
|
return pulumi.get(self, "operator")
|
30547
30499
|
|
@@ -30549,8 +30501,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestQueryParam(dict):
|
|
30549
30501
|
@pulumi.getter
|
30550
30502
|
def value(self) -> Optional[str]:
|
30551
30503
|
"""
|
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.
|
30504
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30554
30505
|
"""
|
30555
30506
|
return pulumi.get(self, "value")
|
30556
30507
|
|
@@ -30561,15 +30512,8 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri(dict):
|
|
30561
30512
|
operator: str,
|
30562
30513
|
value: Optional[str] = None):
|
30563
30514
|
"""
|
30564
|
-
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value.
|
30565
|
-
|
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.
|
30515
|
+
:param str operator: You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30516
|
+
:param str value: A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30573
30517
|
"""
|
30574
30518
|
pulumi.set(__self__, "operator", operator)
|
30575
30519
|
if value is not None:
|
@@ -30579,13 +30523,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri(dict):
|
|
30579
30523
|
@pulumi.getter
|
30580
30524
|
def operator(self) -> str:
|
30581
30525
|
"""
|
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.
|
30526
|
+
You can specify an exact match or a partial match by using a field operator and a field value. Available options: EQUALS: The operator matches if the field value equals the specified value. STARTS_WITH: The operator matches if the field value starts with the specified value. ENDS_WITH: The operator matches if the field value ends with the specified value. CONTAINS: The operator matches if the field value contains the specified value. EQUALS_ANY: The operator matches if the field value is any value.
|
30589
30527
|
"""
|
30590
30528
|
return pulumi.get(self, "operator")
|
30591
30529
|
|
@@ -30593,8 +30531,7 @@ class SecurityPolicyRulePreconfiguredWafConfigExclusionRequestUri(dict):
|
|
30593
30531
|
@pulumi.getter
|
30594
30532
|
def value(self) -> Optional[str]:
|
30595
30533
|
"""
|
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.
|
30534
|
+
A request field matching the specified value will be excluded from inspection during preconfigured WAF evaluation. 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.
|
30598
30535
|
"""
|
30599
30536
|
return pulumi.get(self, "value")
|
30600
30537
|
|
@@ -40365,6 +40302,8 @@ class GetForwardingRulesRuleResult(dict):
|
|
40365
40302
|
For internal forwarding rules within the same VPC network, two or more
|
40366
40303
|
forwarding rules cannot use the same '[IPAddress, IPProtocol]' pair, and
|
40367
40304
|
cannot have overlapping 'portRange's.
|
40305
|
+
|
40306
|
+
@pattern: \\d+(?:-\\d+)?
|
40368
40307
|
:param Sequence[str] ports: The 'ports', 'portRange', and 'allPorts' fields are mutually exclusive.
|
40369
40308
|
Only packets addressed to ports in the specified range will be forwarded
|
40370
40309
|
to the backends configured with this forwarding rule.
|
@@ -40385,6 +40324,8 @@ class GetForwardingRulesRuleResult(dict):
|
|
40385
40324
|
For internal forwarding rules within the same VPC network, two or more
|
40386
40325
|
forwarding rules cannot use the same '[IPAddress, IPProtocol]' pair if
|
40387
40326
|
they share at least one port number.
|
40327
|
+
|
40328
|
+
@pattern: \\d+(?:-\\d+)?
|
40388
40329
|
:param str project: The name of the project.
|
40389
40330
|
:param str psc_connection_id: The PSC connection id of the PSC Forwarding Rule.
|
40390
40331
|
:param str psc_connection_status: The PSC connection status of the PSC Forwarding Rule. Possible values: 'STATUS_UNSPECIFIED', 'PENDING', 'ACCEPTED', 'REJECTED', 'CLOSED'
|
@@ -40770,6 +40711,8 @@ class GetForwardingRulesRuleResult(dict):
|
|
40770
40711
|
For internal forwarding rules within the same VPC network, two or more
|
40771
40712
|
forwarding rules cannot use the same '[IPAddress, IPProtocol]' pair, and
|
40772
40713
|
cannot have overlapping 'portRange's.
|
40714
|
+
|
40715
|
+
@pattern: \\d+(?:-\\d+)?
|
40773
40716
|
"""
|
40774
40717
|
return pulumi.get(self, "port_range")
|
40775
40718
|
|
@@ -40797,6 +40740,8 @@ class GetForwardingRulesRuleResult(dict):
|
|
40797
40740
|
For internal forwarding rules within the same VPC network, two or more
|
40798
40741
|
forwarding rules cannot use the same '[IPAddress, IPProtocol]' pair if
|
40799
40742
|
they share at least one port number.
|
40743
|
+
|
40744
|
+
@pattern: \\d+(?:-\\d+)?
|
40800
40745
|
"""
|
40801
40746
|
return pulumi.get(self, "ports")
|
40802
40747
|
|
@@ -75,6 +75,7 @@ class RegionInstanceTemplateArgs:
|
|
75
75
|
thus the two mechanisms are not allowed to be used simultaneously.
|
76
76
|
:param pulumi.Input[str] min_cpu_platform: Specifies a minimum CPU platform. Applicable values are the friendly names of CPU platforms, such as
|
77
77
|
`Intel Haswell` or `Intel Skylake`. See the complete list [here](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
|
78
|
+
:param pulumi.Input[str] name: The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
78
79
|
:param pulumi.Input[str] name_prefix: Creates a unique name beginning with the specified
|
79
80
|
prefix. Conflicts with `name`.
|
80
81
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateNetworkInterfaceArgs']]] network_interfaces: Networks to attach to instances created from
|
@@ -329,6 +330,9 @@ class RegionInstanceTemplateArgs:
|
|
329
330
|
@property
|
330
331
|
@pulumi.getter
|
331
332
|
def name(self) -> Optional[pulumi.Input[str]]:
|
333
|
+
"""
|
334
|
+
The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
335
|
+
"""
|
332
336
|
return pulumi.get(self, "name")
|
333
337
|
|
334
338
|
@name.setter
|
@@ -562,6 +566,7 @@ class _RegionInstanceTemplateState:
|
|
562
566
|
thus the two mechanisms are not allowed to be used simultaneously.
|
563
567
|
:param pulumi.Input[str] min_cpu_platform: Specifies a minimum CPU platform. Applicable values are the friendly names of CPU platforms, such as
|
564
568
|
`Intel Haswell` or `Intel Skylake`. See the complete list [here](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
|
569
|
+
:param pulumi.Input[str] name: The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
565
570
|
:param pulumi.Input[str] name_prefix: Creates a unique name beginning with the specified
|
566
571
|
prefix. Conflicts with `name`.
|
567
572
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateNetworkInterfaceArgs']]] network_interfaces: Networks to attach to instances created from
|
@@ -855,6 +860,9 @@ class _RegionInstanceTemplateState:
|
|
855
860
|
@property
|
856
861
|
@pulumi.getter
|
857
862
|
def name(self) -> Optional[pulumi.Input[str]]:
|
863
|
+
"""
|
864
|
+
The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
865
|
+
"""
|
858
866
|
return pulumi.get(self, "name")
|
859
867
|
|
860
868
|
@name.setter
|
@@ -1145,6 +1153,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1145
1153
|
thus the two mechanisms are not allowed to be used simultaneously.
|
1146
1154
|
:param pulumi.Input[str] min_cpu_platform: Specifies a minimum CPU platform. Applicable values are the friendly names of CPU platforms, such as
|
1147
1155
|
`Intel Haswell` or `Intel Skylake`. See the complete list [here](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
|
1156
|
+
:param pulumi.Input[str] name: The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
1148
1157
|
:param pulumi.Input[str] name_prefix: Creates a unique name beginning with the specified
|
1149
1158
|
prefix. Conflicts with `name`.
|
1150
1159
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceTemplateNetworkInterfaceArgs']]]] network_interfaces: Networks to attach to instances created from
|
@@ -1370,6 +1379,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1370
1379
|
thus the two mechanisms are not allowed to be used simultaneously.
|
1371
1380
|
:param pulumi.Input[str] min_cpu_platform: Specifies a minimum CPU platform. Applicable values are the friendly names of CPU platforms, such as
|
1372
1381
|
`Intel Haswell` or `Intel Skylake`. See the complete list [here](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
|
1382
|
+
:param pulumi.Input[str] name: The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
1373
1383
|
:param pulumi.Input[str] name_prefix: Creates a unique name beginning with the specified
|
1374
1384
|
prefix. Conflicts with `name`.
|
1375
1385
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceTemplateNetworkInterfaceArgs']]]] network_interfaces: Networks to attach to instances created from
|
@@ -1577,6 +1587,9 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1577
1587
|
@property
|
1578
1588
|
@pulumi.getter
|
1579
1589
|
def name(self) -> pulumi.Output[str]:
|
1590
|
+
"""
|
1591
|
+
The name of the instance template. If you leave this blank, Terraform will auto-generate a unique name.
|
1592
|
+
"""
|
1580
1593
|
return pulumi.get(self, "name")
|
1581
1594
|
|
1582
1595
|
@property
|