pulumi-gcp 8.7.0a1730183903__py3-none-any.whl → 8.7.0a1730196225__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 +70 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +108 -0
- pulumi_gcp/apigee/app_group.py +811 -0
- pulumi_gcp/apigee/developer.py +757 -0
- pulumi_gcp/apigee/outputs.py +64 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
- pulumi_gcp/bigquery/connection.py +12 -12
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +92 -0
- pulumi_gcp/compute/_inputs.py +214 -116
- pulumi_gcp/compute/backend_service.py +76 -0
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_instance.py +29 -1
- pulumi_gcp/compute/get_instance_template.py +29 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
- pulumi_gcp/compute/get_region_instance_template.py +29 -1
- pulumi_gcp/compute/instance.py +89 -0
- pulumi_gcp/compute/instance_from_machine_image.py +82 -0
- pulumi_gcp/compute/instance_from_template.py +82 -0
- pulumi_gcp/compute/instance_template.py +75 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
- pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
- pulumi_gcp/compute/outputs.py +170 -80
- pulumi_gcp/compute/region_backend_service.py +94 -0
- pulumi_gcp/compute/region_instance_template.py +75 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
- pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/attached_cluster.py +9 -6
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/datastream/stream.py +2 -2
- pulumi_gcp/diagflow/_inputs.py +472 -2
- pulumi_gcp/diagflow/cx_agent.py +64 -4
- pulumi_gcp/diagflow/cx_flow.py +30 -0
- pulumi_gcp/diagflow/outputs.py +378 -2
- pulumi_gcp/gkehub/feature.py +2 -4
- pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
- pulumi_gcp/looker/instance.py +104 -2
- pulumi_gcp/monitoring/_inputs.py +23 -0
- pulumi_gcp/monitoring/get_secret_version.py +22 -3
- pulumi_gcp/monitoring/outputs.py +16 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/_inputs.py +148 -0
- pulumi_gcp/networkconnectivity/group.py +764 -0
- pulumi_gcp/networkconnectivity/outputs.py +125 -0
- pulumi_gcp/networkconnectivity/spoke.py +144 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
- pulumi_gcp/oracledatabase/__init__.py +20 -0
- pulumi_gcp/oracledatabase/_inputs.py +4745 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
- pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
- pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
- pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
- pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
- pulumi_gcp/oracledatabase/outputs.py +9304 -0
- pulumi_gcp/organizations/folder.py +7 -7
- pulumi_gcp/organizations/project.py +7 -7
- pulumi_gcp/orgpolicy/_inputs.py +3 -3
- pulumi_gcp/orgpolicy/outputs.py +2 -2
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
- pulumi_gcp/secretmanager/get_secret_version.py +22 -3
- pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
- pulumi_gcp/secretmanager/regional_secret.py +2 -2
- pulumi_gcp/siteverification/get_token.py +0 -16
- pulumi_gcp/siteverification/owner.py +0 -16
- pulumi_gcp/spanner/_inputs.py +29 -5
- pulumi_gcp/spanner/outputs.py +20 -3
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/sql/user.py +28 -21
- pulumi_gcp/storage/_inputs.py +36 -0
- pulumi_gcp/storage/bucket.py +47 -0
- pulumi_gcp/storage/get_bucket.py +12 -1
- pulumi_gcp/storage/outputs.py +40 -0
- pulumi_gcp/transcoder/__init__.py +11 -0
- pulumi_gcp/transcoder/_inputs.py +3991 -0
- pulumi_gcp/transcoder/job.py +2134 -0
- pulumi_gcp/transcoder/job_template.py +1524 -0
- pulumi_gcp/transcoder/outputs.py +2918 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
- pulumi_gcp/vmwareengine/_inputs.py +440 -0
- pulumi_gcp/vmwareengine/cluster.py +100 -2
- pulumi_gcp/vmwareengine/get_cluster.py +12 -1
- pulumi_gcp/vmwareengine/outputs.py +615 -0
- pulumi_gcp/workstations/_inputs.py +54 -0
- pulumi_gcp/workstations/outputs.py +32 -0
- pulumi_gcp/workstations/workstation_config.py +205 -0
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
@@ -39,30 +39,33 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
39
39
|
"""
|
40
40
|
The set of arguments for constructing a RegionNetworkFirewallPolicyRule resource.
|
41
41
|
:param pulumi.Input[str] action: The Action to perform when the client connection triggers the rule. Valid actions are "allow", "deny", "goto_next" and "apply_security_profile_group".
|
42
|
-
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
42
|
+
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
43
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
43
44
|
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
44
45
|
:param pulumi.Input['RegionNetworkFirewallPolicyRuleMatchArgs'] match: A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
45
|
-
|
46
|
+
Structure is documented below.
|
47
|
+
:param pulumi.Input[int] priority: An integer indicating the priority of a rule in the list.
|
48
|
+
The priority must be a positive value between 0 and 2147483647.
|
49
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
46
50
|
:param pulumi.Input[str] description: An optional description for this resource.
|
47
51
|
:param pulumi.Input[bool] disabled: Denotes whether the firewall policy rule is disabled. When set to true, the firewall policy rule is not enforced and
|
48
52
|
traffic behaves as if it did not exist. If this is unspecified, the firewall policy rule will be enabled.
|
49
53
|
:param pulumi.Input[bool] enable_logging: Denotes whether to enable logging for a particular rule. If logging is enabled, logs will be exported to the configured
|
50
54
|
export destination in Stackdriver. Logs may be exported to BigQuery or Pub/Sub. Note: you cannot enable logging on
|
51
55
|
"goto_next" rules.
|
52
|
-
:param pulumi.Input[str] project: The project for the resource
|
53
56
|
:param pulumi.Input[str] region: The location of this resource.
|
54
57
|
:param pulumi.Input[str] rule_name: An optional name for the rule. This field is not a unique identifier and can be updated.
|
55
|
-
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a
|
56
|
-
https://networksecurity.googleapis.com/v1/
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
58
|
+
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a SecurityProfile resource instance. Example:
|
59
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
60
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
61
|
+
Group and Firewall Policy Rule must be in the same scope.
|
62
|
+
:param pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyRuleTargetSecureTagArgs']]] target_secure_tags: A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
63
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
64
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
65
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
66
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
64
67
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_service_accounts: A list of service accounts indicating the sets of instances that are applied with this rule.
|
65
|
-
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted.
|
68
|
+
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
66
69
|
'apply_security_profile_group' and cannot be set for other actions.
|
67
70
|
"""
|
68
71
|
pulumi.set(__self__, "action", action)
|
@@ -107,7 +110,8 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
107
110
|
@pulumi.getter
|
108
111
|
def direction(self) -> pulumi.Input[str]:
|
109
112
|
"""
|
110
|
-
The direction in which this rule applies.
|
113
|
+
The direction in which this rule applies.
|
114
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
111
115
|
"""
|
112
116
|
return pulumi.get(self, "direction")
|
113
117
|
|
@@ -132,6 +136,7 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
132
136
|
def match(self) -> pulumi.Input['RegionNetworkFirewallPolicyRuleMatchArgs']:
|
133
137
|
"""
|
134
138
|
A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
139
|
+
Structure is documented below.
|
135
140
|
"""
|
136
141
|
return pulumi.get(self, "match")
|
137
142
|
|
@@ -143,7 +148,9 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
143
148
|
@pulumi.getter
|
144
149
|
def priority(self) -> pulumi.Input[int]:
|
145
150
|
"""
|
146
|
-
An integer indicating the priority of a rule in the list.
|
151
|
+
An integer indicating the priority of a rule in the list.
|
152
|
+
The priority must be a positive value between 0 and 2147483647.
|
153
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
147
154
|
"""
|
148
155
|
return pulumi.get(self, "priority")
|
149
156
|
|
@@ -193,9 +200,6 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
193
200
|
@property
|
194
201
|
@pulumi.getter
|
195
202
|
def project(self) -> Optional[pulumi.Input[str]]:
|
196
|
-
"""
|
197
|
-
The project for the resource
|
198
|
-
"""
|
199
203
|
return pulumi.get(self, "project")
|
200
204
|
|
201
205
|
@project.setter
|
@@ -230,9 +234,10 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
230
234
|
@pulumi.getter(name="securityProfileGroup")
|
231
235
|
def security_profile_group(self) -> Optional[pulumi.Input[str]]:
|
232
236
|
"""
|
233
|
-
A fully-qualified URL of a
|
234
|
-
https://networksecurity.googleapis.com/v1/
|
235
|
-
|
237
|
+
A fully-qualified URL of a SecurityProfile resource instance. Example:
|
238
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
239
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
240
|
+
Group and Firewall Policy Rule must be in the same scope.
|
236
241
|
"""
|
237
242
|
return pulumi.get(self, "security_profile_group")
|
238
243
|
|
@@ -244,12 +249,11 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
244
249
|
@pulumi.getter(name="targetSecureTags")
|
245
250
|
def target_secure_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyRuleTargetSecureTagArgs']]]]:
|
246
251
|
"""
|
247
|
-
A list of secure tags that controls which instances the firewall rule applies to. If
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
252
|
+
A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
253
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
254
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
255
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
256
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
253
257
|
"""
|
254
258
|
return pulumi.get(self, "target_secure_tags")
|
255
259
|
|
@@ -273,7 +277,7 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
273
277
|
@pulumi.getter(name="tlsInspect")
|
274
278
|
def tls_inspect(self) -> Optional[pulumi.Input[bool]]:
|
275
279
|
"""
|
276
|
-
Boolean flag indicating if the traffic should be TLS decrypted.
|
280
|
+
Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
277
281
|
'apply_security_profile_group' and cannot be set for other actions.
|
278
282
|
"""
|
279
283
|
return pulumi.get(self, "tls_inspect")
|
@@ -287,6 +291,7 @@ class RegionNetworkFirewallPolicyRuleArgs:
|
|
287
291
|
class _RegionNetworkFirewallPolicyRuleState:
|
288
292
|
def __init__(__self__, *,
|
289
293
|
action: Optional[pulumi.Input[str]] = None,
|
294
|
+
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
290
295
|
description: Optional[pulumi.Input[str]] = None,
|
291
296
|
direction: Optional[pulumi.Input[str]] = None,
|
292
297
|
disabled: Optional[pulumi.Input[bool]] = None,
|
@@ -306,8 +311,10 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
306
311
|
"""
|
307
312
|
Input properties used for looking up and filtering RegionNetworkFirewallPolicyRule resources.
|
308
313
|
:param pulumi.Input[str] action: The Action to perform when the client connection triggers the rule. Valid actions are "allow", "deny", "goto_next" and "apply_security_profile_group".
|
314
|
+
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
309
315
|
:param pulumi.Input[str] description: An optional description for this resource.
|
310
|
-
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
316
|
+
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
317
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
311
318
|
:param pulumi.Input[bool] disabled: Denotes whether the firewall policy rule is disabled. When set to true, the firewall policy rule is not enforced and
|
312
319
|
traffic behaves as if it did not exist. If this is unspecified, the firewall policy rule will be enabled.
|
313
320
|
:param pulumi.Input[bool] enable_logging: Denotes whether to enable logging for a particular rule. If logging is enabled, logs will be exported to the configured
|
@@ -316,26 +323,30 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
316
323
|
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
317
324
|
:param pulumi.Input[str] kind: Type of the resource. Always `compute#firewallPolicyRule` for firewall policy rules
|
318
325
|
:param pulumi.Input['RegionNetworkFirewallPolicyRuleMatchArgs'] match: A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
319
|
-
|
320
|
-
:param pulumi.Input[
|
326
|
+
Structure is documented below.
|
327
|
+
:param pulumi.Input[int] priority: An integer indicating the priority of a rule in the list.
|
328
|
+
The priority must be a positive value between 0 and 2147483647.
|
329
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
321
330
|
:param pulumi.Input[str] region: The location of this resource.
|
322
331
|
:param pulumi.Input[str] rule_name: An optional name for the rule. This field is not a unique identifier and can be updated.
|
323
332
|
:param pulumi.Input[int] rule_tuple_count: Calculation of the complexity of a single firewall policy rule.
|
324
|
-
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a
|
325
|
-
https://networksecurity.googleapis.com/v1/
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
333
|
+
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a SecurityProfile resource instance. Example:
|
334
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
335
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
336
|
+
Group and Firewall Policy Rule must be in the same scope.
|
337
|
+
:param pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyRuleTargetSecureTagArgs']]] target_secure_tags: A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
338
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
339
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
340
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
341
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
333
342
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_service_accounts: A list of service accounts indicating the sets of instances that are applied with this rule.
|
334
|
-
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted.
|
343
|
+
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
335
344
|
'apply_security_profile_group' and cannot be set for other actions.
|
336
345
|
"""
|
337
346
|
if action is not None:
|
338
347
|
pulumi.set(__self__, "action", action)
|
348
|
+
if creation_timestamp is not None:
|
349
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
339
350
|
if description is not None:
|
340
351
|
pulumi.set(__self__, "description", description)
|
341
352
|
if direction is not None:
|
@@ -381,6 +392,18 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
381
392
|
def action(self, value: Optional[pulumi.Input[str]]):
|
382
393
|
pulumi.set(self, "action", value)
|
383
394
|
|
395
|
+
@property
|
396
|
+
@pulumi.getter(name="creationTimestamp")
|
397
|
+
def creation_timestamp(self) -> Optional[pulumi.Input[str]]:
|
398
|
+
"""
|
399
|
+
Creation timestamp in RFC3339 text format.
|
400
|
+
"""
|
401
|
+
return pulumi.get(self, "creation_timestamp")
|
402
|
+
|
403
|
+
@creation_timestamp.setter
|
404
|
+
def creation_timestamp(self, value: Optional[pulumi.Input[str]]):
|
405
|
+
pulumi.set(self, "creation_timestamp", value)
|
406
|
+
|
384
407
|
@property
|
385
408
|
@pulumi.getter
|
386
409
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -397,7 +420,8 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
397
420
|
@pulumi.getter
|
398
421
|
def direction(self) -> Optional[pulumi.Input[str]]:
|
399
422
|
"""
|
400
|
-
The direction in which this rule applies.
|
423
|
+
The direction in which this rule applies.
|
424
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
401
425
|
"""
|
402
426
|
return pulumi.get(self, "direction")
|
403
427
|
|
@@ -461,6 +485,7 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
461
485
|
def match(self) -> Optional[pulumi.Input['RegionNetworkFirewallPolicyRuleMatchArgs']]:
|
462
486
|
"""
|
463
487
|
A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
488
|
+
Structure is documented below.
|
464
489
|
"""
|
465
490
|
return pulumi.get(self, "match")
|
466
491
|
|
@@ -472,7 +497,9 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
472
497
|
@pulumi.getter
|
473
498
|
def priority(self) -> Optional[pulumi.Input[int]]:
|
474
499
|
"""
|
475
|
-
An integer indicating the priority of a rule in the list.
|
500
|
+
An integer indicating the priority of a rule in the list.
|
501
|
+
The priority must be a positive value between 0 and 2147483647.
|
502
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
476
503
|
"""
|
477
504
|
return pulumi.get(self, "priority")
|
478
505
|
|
@@ -483,9 +510,6 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
483
510
|
@property
|
484
511
|
@pulumi.getter
|
485
512
|
def project(self) -> Optional[pulumi.Input[str]]:
|
486
|
-
"""
|
487
|
-
The project for the resource
|
488
|
-
"""
|
489
513
|
return pulumi.get(self, "project")
|
490
514
|
|
491
515
|
@project.setter
|
@@ -532,9 +556,10 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
532
556
|
@pulumi.getter(name="securityProfileGroup")
|
533
557
|
def security_profile_group(self) -> Optional[pulumi.Input[str]]:
|
534
558
|
"""
|
535
|
-
A fully-qualified URL of a
|
536
|
-
https://networksecurity.googleapis.com/v1/
|
537
|
-
|
559
|
+
A fully-qualified URL of a SecurityProfile resource instance. Example:
|
560
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
561
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
562
|
+
Group and Firewall Policy Rule must be in the same scope.
|
538
563
|
"""
|
539
564
|
return pulumi.get(self, "security_profile_group")
|
540
565
|
|
@@ -546,12 +571,11 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
546
571
|
@pulumi.getter(name="targetSecureTags")
|
547
572
|
def target_secure_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyRuleTargetSecureTagArgs']]]]:
|
548
573
|
"""
|
549
|
-
A list of secure tags that controls which instances the firewall rule applies to. If
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
574
|
+
A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
575
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
576
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
577
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
578
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
555
579
|
"""
|
556
580
|
return pulumi.get(self, "target_secure_tags")
|
557
581
|
|
@@ -575,7 +599,7 @@ class _RegionNetworkFirewallPolicyRuleState:
|
|
575
599
|
@pulumi.getter(name="tlsInspect")
|
576
600
|
def tls_inspect(self) -> Optional[pulumi.Input[bool]]:
|
577
601
|
"""
|
578
|
-
Boolean flag indicating if the traffic should be TLS decrypted.
|
602
|
+
Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
579
603
|
'apply_security_profile_group' and cannot be set for other actions.
|
580
604
|
"""
|
581
605
|
return pulumi.get(self, "tls_inspect")
|
@@ -607,17 +631,22 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
607
631
|
tls_inspect: Optional[pulumi.Input[bool]] = None,
|
608
632
|
__props__=None):
|
609
633
|
"""
|
610
|
-
|
634
|
+
Represents a rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (allow or deny).
|
635
|
+
|
636
|
+
To get more information about RegionNetworkFirewallPolicyRule, see:
|
637
|
+
|
638
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionNetworkFirewallPolicies/addRule)
|
611
639
|
|
612
640
|
## Example Usage
|
613
641
|
|
614
|
-
###
|
642
|
+
### Region Network Firewall Policy Rule
|
643
|
+
|
615
644
|
```python
|
616
645
|
import pulumi
|
617
646
|
import pulumi_gcp as gcp
|
618
647
|
|
619
648
|
basic_regional_networksecurity_address_group = gcp.networksecurity.AddressGroup("basic_regional_networksecurity_address_group",
|
620
|
-
name="
|
649
|
+
name="address",
|
621
650
|
parent="projects/my-project-name",
|
622
651
|
description="Sample regional networksecurity_address_group",
|
623
652
|
location="us-west1",
|
@@ -670,7 +699,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
670
699
|
|
671
700
|
## Import
|
672
701
|
|
673
|
-
|
702
|
+
RegionNetworkFirewallPolicyRule can be imported using any of these accepted formats:
|
674
703
|
|
675
704
|
* `projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/{{priority}}`
|
676
705
|
|
@@ -680,7 +709,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
680
709
|
|
681
710
|
* `{{firewall_policy}}/{{priority}}`
|
682
711
|
|
683
|
-
When using the `pulumi import` command,
|
712
|
+
When using the `pulumi import` command, RegionNetworkFirewallPolicyRule can be imported using one of the formats above. For example:
|
684
713
|
|
685
714
|
```sh
|
686
715
|
$ pulumi import gcp:compute/regionNetworkFirewallPolicyRule:RegionNetworkFirewallPolicyRule default projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/{{priority}}
|
@@ -702,7 +731,8 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
702
731
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
703
732
|
:param pulumi.Input[str] action: The Action to perform when the client connection triggers the rule. Valid actions are "allow", "deny", "goto_next" and "apply_security_profile_group".
|
704
733
|
:param pulumi.Input[str] description: An optional description for this resource.
|
705
|
-
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
734
|
+
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
735
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
706
736
|
:param pulumi.Input[bool] disabled: Denotes whether the firewall policy rule is disabled. When set to true, the firewall policy rule is not enforced and
|
707
737
|
traffic behaves as if it did not exist. If this is unspecified, the firewall policy rule will be enabled.
|
708
738
|
:param pulumi.Input[bool] enable_logging: Denotes whether to enable logging for a particular rule. If logging is enabled, logs will be exported to the configured
|
@@ -710,21 +740,23 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
710
740
|
"goto_next" rules.
|
711
741
|
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
712
742
|
:param pulumi.Input[Union['RegionNetworkFirewallPolicyRuleMatchArgs', 'RegionNetworkFirewallPolicyRuleMatchArgsDict']] match: A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
713
|
-
|
714
|
-
:param pulumi.Input[
|
743
|
+
Structure is documented below.
|
744
|
+
:param pulumi.Input[int] priority: An integer indicating the priority of a rule in the list.
|
745
|
+
The priority must be a positive value between 0 and 2147483647.
|
746
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
715
747
|
:param pulumi.Input[str] region: The location of this resource.
|
716
748
|
:param pulumi.Input[str] rule_name: An optional name for the rule. This field is not a unique identifier and can be updated.
|
717
|
-
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a
|
718
|
-
https://networksecurity.googleapis.com/v1/
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
749
|
+
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a SecurityProfile resource instance. Example:
|
750
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
751
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
752
|
+
Group and Firewall Policy Rule must be in the same scope.
|
753
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyRuleTargetSecureTagArgs', 'RegionNetworkFirewallPolicyRuleTargetSecureTagArgsDict']]]] target_secure_tags: A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
754
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
755
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
756
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
757
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
726
758
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_service_accounts: A list of service accounts indicating the sets of instances that are applied with this rule.
|
727
|
-
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted.
|
759
|
+
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
728
760
|
'apply_security_profile_group' and cannot be set for other actions.
|
729
761
|
"""
|
730
762
|
...
|
@@ -734,17 +766,22 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
734
766
|
args: RegionNetworkFirewallPolicyRuleArgs,
|
735
767
|
opts: Optional[pulumi.ResourceOptions] = None):
|
736
768
|
"""
|
737
|
-
|
769
|
+
Represents a rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (allow or deny).
|
770
|
+
|
771
|
+
To get more information about RegionNetworkFirewallPolicyRule, see:
|
772
|
+
|
773
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionNetworkFirewallPolicies/addRule)
|
738
774
|
|
739
775
|
## Example Usage
|
740
776
|
|
741
|
-
###
|
777
|
+
### Region Network Firewall Policy Rule
|
778
|
+
|
742
779
|
```python
|
743
780
|
import pulumi
|
744
781
|
import pulumi_gcp as gcp
|
745
782
|
|
746
783
|
basic_regional_networksecurity_address_group = gcp.networksecurity.AddressGroup("basic_regional_networksecurity_address_group",
|
747
|
-
name="
|
784
|
+
name="address",
|
748
785
|
parent="projects/my-project-name",
|
749
786
|
description="Sample regional networksecurity_address_group",
|
750
787
|
location="us-west1",
|
@@ -797,7 +834,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
797
834
|
|
798
835
|
## Import
|
799
836
|
|
800
|
-
|
837
|
+
RegionNetworkFirewallPolicyRule can be imported using any of these accepted formats:
|
801
838
|
|
802
839
|
* `projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/{{priority}}`
|
803
840
|
|
@@ -807,7 +844,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
807
844
|
|
808
845
|
* `{{firewall_policy}}/{{priority}}`
|
809
846
|
|
810
|
-
When using the `pulumi import` command,
|
847
|
+
When using the `pulumi import` command, RegionNetworkFirewallPolicyRule can be imported using one of the formats above. For example:
|
811
848
|
|
812
849
|
```sh
|
813
850
|
$ pulumi import gcp:compute/regionNetworkFirewallPolicyRule:RegionNetworkFirewallPolicyRule default projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/{{priority}}
|
@@ -889,6 +926,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
889
926
|
__props__.__dict__["target_secure_tags"] = target_secure_tags
|
890
927
|
__props__.__dict__["target_service_accounts"] = target_service_accounts
|
891
928
|
__props__.__dict__["tls_inspect"] = tls_inspect
|
929
|
+
__props__.__dict__["creation_timestamp"] = None
|
892
930
|
__props__.__dict__["kind"] = None
|
893
931
|
__props__.__dict__["rule_tuple_count"] = None
|
894
932
|
super(RegionNetworkFirewallPolicyRule, __self__).__init__(
|
@@ -902,6 +940,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
902
940
|
id: pulumi.Input[str],
|
903
941
|
opts: Optional[pulumi.ResourceOptions] = None,
|
904
942
|
action: Optional[pulumi.Input[str]] = None,
|
943
|
+
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
905
944
|
description: Optional[pulumi.Input[str]] = None,
|
906
945
|
direction: Optional[pulumi.Input[str]] = None,
|
907
946
|
disabled: Optional[pulumi.Input[bool]] = None,
|
@@ -926,8 +965,10 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
926
965
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
927
966
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
928
967
|
:param pulumi.Input[str] action: The Action to perform when the client connection triggers the rule. Valid actions are "allow", "deny", "goto_next" and "apply_security_profile_group".
|
968
|
+
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
929
969
|
:param pulumi.Input[str] description: An optional description for this resource.
|
930
|
-
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
970
|
+
:param pulumi.Input[str] direction: The direction in which this rule applies.
|
971
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
931
972
|
:param pulumi.Input[bool] disabled: Denotes whether the firewall policy rule is disabled. When set to true, the firewall policy rule is not enforced and
|
932
973
|
traffic behaves as if it did not exist. If this is unspecified, the firewall policy rule will be enabled.
|
933
974
|
:param pulumi.Input[bool] enable_logging: Denotes whether to enable logging for a particular rule. If logging is enabled, logs will be exported to the configured
|
@@ -936,22 +977,24 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
936
977
|
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
937
978
|
:param pulumi.Input[str] kind: Type of the resource. Always `compute#firewallPolicyRule` for firewall policy rules
|
938
979
|
:param pulumi.Input[Union['RegionNetworkFirewallPolicyRuleMatchArgs', 'RegionNetworkFirewallPolicyRuleMatchArgsDict']] match: A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
939
|
-
|
940
|
-
:param pulumi.Input[
|
980
|
+
Structure is documented below.
|
981
|
+
:param pulumi.Input[int] priority: An integer indicating the priority of a rule in the list.
|
982
|
+
The priority must be a positive value between 0 and 2147483647.
|
983
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
941
984
|
:param pulumi.Input[str] region: The location of this resource.
|
942
985
|
:param pulumi.Input[str] rule_name: An optional name for the rule. This field is not a unique identifier and can be updated.
|
943
986
|
:param pulumi.Input[int] rule_tuple_count: Calculation of the complexity of a single firewall policy rule.
|
944
|
-
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a
|
945
|
-
https://networksecurity.googleapis.com/v1/
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
987
|
+
:param pulumi.Input[str] security_profile_group: A fully-qualified URL of a SecurityProfile resource instance. Example:
|
988
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
989
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
990
|
+
Group and Firewall Policy Rule must be in the same scope.
|
991
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyRuleTargetSecureTagArgs', 'RegionNetworkFirewallPolicyRuleTargetSecureTagArgsDict']]]] target_secure_tags: A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
992
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
993
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
994
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
995
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
953
996
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_service_accounts: A list of service accounts indicating the sets of instances that are applied with this rule.
|
954
|
-
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted.
|
997
|
+
:param pulumi.Input[bool] tls_inspect: Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
955
998
|
'apply_security_profile_group' and cannot be set for other actions.
|
956
999
|
"""
|
957
1000
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -959,6 +1002,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
959
1002
|
__props__ = _RegionNetworkFirewallPolicyRuleState.__new__(_RegionNetworkFirewallPolicyRuleState)
|
960
1003
|
|
961
1004
|
__props__.__dict__["action"] = action
|
1005
|
+
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
962
1006
|
__props__.__dict__["description"] = description
|
963
1007
|
__props__.__dict__["direction"] = direction
|
964
1008
|
__props__.__dict__["disabled"] = disabled
|
@@ -985,6 +1029,14 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
985
1029
|
"""
|
986
1030
|
return pulumi.get(self, "action")
|
987
1031
|
|
1032
|
+
@property
|
1033
|
+
@pulumi.getter(name="creationTimestamp")
|
1034
|
+
def creation_timestamp(self) -> pulumi.Output[str]:
|
1035
|
+
"""
|
1036
|
+
Creation timestamp in RFC3339 text format.
|
1037
|
+
"""
|
1038
|
+
return pulumi.get(self, "creation_timestamp")
|
1039
|
+
|
988
1040
|
@property
|
989
1041
|
@pulumi.getter
|
990
1042
|
def description(self) -> pulumi.Output[Optional[str]]:
|
@@ -997,7 +1049,8 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
997
1049
|
@pulumi.getter
|
998
1050
|
def direction(self) -> pulumi.Output[str]:
|
999
1051
|
"""
|
1000
|
-
The direction in which this rule applies.
|
1052
|
+
The direction in which this rule applies.
|
1053
|
+
Possible values are: `INGRESS`, `EGRESS`.
|
1001
1054
|
"""
|
1002
1055
|
return pulumi.get(self, "direction")
|
1003
1056
|
|
@@ -1041,6 +1094,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
1041
1094
|
def match(self) -> pulumi.Output['outputs.RegionNetworkFirewallPolicyRuleMatch']:
|
1042
1095
|
"""
|
1043
1096
|
A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
1097
|
+
Structure is documented below.
|
1044
1098
|
"""
|
1045
1099
|
return pulumi.get(self, "match")
|
1046
1100
|
|
@@ -1048,16 +1102,15 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
1048
1102
|
@pulumi.getter
|
1049
1103
|
def priority(self) -> pulumi.Output[int]:
|
1050
1104
|
"""
|
1051
|
-
An integer indicating the priority of a rule in the list.
|
1105
|
+
An integer indicating the priority of a rule in the list.
|
1106
|
+
The priority must be a positive value between 0 and 2147483647.
|
1107
|
+
Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest prority.
|
1052
1108
|
"""
|
1053
1109
|
return pulumi.get(self, "priority")
|
1054
1110
|
|
1055
1111
|
@property
|
1056
1112
|
@pulumi.getter
|
1057
1113
|
def project(self) -> pulumi.Output[str]:
|
1058
|
-
"""
|
1059
|
-
The project for the resource
|
1060
|
-
"""
|
1061
1114
|
return pulumi.get(self, "project")
|
1062
1115
|
|
1063
1116
|
@property
|
@@ -1088,9 +1141,10 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
1088
1141
|
@pulumi.getter(name="securityProfileGroup")
|
1089
1142
|
def security_profile_group(self) -> pulumi.Output[Optional[str]]:
|
1090
1143
|
"""
|
1091
|
-
A fully-qualified URL of a
|
1092
|
-
https://networksecurity.googleapis.com/v1/
|
1093
|
-
|
1144
|
+
A fully-qualified URL of a SecurityProfile resource instance. Example:
|
1145
|
+
https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
|
1146
|
+
Must be specified if action = 'apply_security_profile_group' and cannot be specified for other actions. Security Profile
|
1147
|
+
Group and Firewall Policy Rule must be in the same scope.
|
1094
1148
|
"""
|
1095
1149
|
return pulumi.get(self, "security_profile_group")
|
1096
1150
|
|
@@ -1098,12 +1152,11 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
1098
1152
|
@pulumi.getter(name="targetSecureTags")
|
1099
1153
|
def target_secure_tags(self) -> pulumi.Output[Optional[Sequence['outputs.RegionNetworkFirewallPolicyRuleTargetSecureTag']]]:
|
1100
1154
|
"""
|
1101
|
-
A list of secure tags that controls which instances the firewall rule applies to. If
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
instances on the specified network. Maximum number of target label tags allowed is 256.
|
1155
|
+
A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then
|
1156
|
+
the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the
|
1157
|
+
targetSecureTag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same
|
1158
|
+
time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule
|
1159
|
+
applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
|
1107
1160
|
"""
|
1108
1161
|
return pulumi.get(self, "target_secure_tags")
|
1109
1162
|
|
@@ -1119,7 +1172,7 @@ class RegionNetworkFirewallPolicyRule(pulumi.CustomResource):
|
|
1119
1172
|
@pulumi.getter(name="tlsInspect")
|
1120
1173
|
def tls_inspect(self) -> pulumi.Output[Optional[bool]]:
|
1121
1174
|
"""
|
1122
|
-
Boolean flag indicating if the traffic should be TLS decrypted.
|
1175
|
+
Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action =
|
1123
1176
|
'apply_security_profile_group' and cannot be set for other actions.
|
1124
1177
|
"""
|
1125
1178
|
return pulumi.get(self, "tls_inspect")
|
pulumi_gcp/config/__init__.pyi
CHANGED
@@ -259,6 +259,8 @@ networkServicesCustomEndpoint: Optional[str]
|
|
259
259
|
|
260
260
|
notebooksCustomEndpoint: Optional[str]
|
261
261
|
|
262
|
+
oracleDatabaseCustomEndpoint: Optional[str]
|
263
|
+
|
262
264
|
orgPolicyCustomEndpoint: Optional[str]
|
263
265
|
|
264
266
|
osConfigCustomEndpoint: Optional[str]
|
@@ -349,6 +351,8 @@ tpuCustomEndpoint: Optional[str]
|
|
349
351
|
|
350
352
|
tpuV2CustomEndpoint: Optional[str]
|
351
353
|
|
354
|
+
transcoderCustomEndpoint: Optional[str]
|
355
|
+
|
352
356
|
universeDomain: Optional[str]
|
353
357
|
|
354
358
|
userProjectOverride: Optional[bool]
|