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
@@ -27,13 +27,13 @@ class RegionNetworkFirewallPolicyAssociationArgs:
|
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a RegionNetworkFirewallPolicyAssociation resource.
|
29
29
|
:param pulumi.Input[str] attachment_target: The target that the firewall policy is attached to.
|
30
|
-
:param pulumi.Input[str] firewall_policy: The firewall policy
|
31
|
-
:param pulumi.Input[str] name: The name for an association.
|
32
|
-
|
30
|
+
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
33
31
|
|
34
32
|
|
35
33
|
- - -
|
36
|
-
:param pulumi.Input[str]
|
34
|
+
:param pulumi.Input[str] name: The name for an association.
|
35
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
36
|
+
If it is not provided, the provider project is used.
|
37
37
|
:param pulumi.Input[str] region: The location of this resource.
|
38
38
|
"""
|
39
39
|
pulumi.set(__self__, "attachment_target", attachment_target)
|
@@ -61,7 +61,10 @@ class RegionNetworkFirewallPolicyAssociationArgs:
|
|
61
61
|
@pulumi.getter(name="firewallPolicy")
|
62
62
|
def firewall_policy(self) -> pulumi.Input[str]:
|
63
63
|
"""
|
64
|
-
The firewall policy
|
64
|
+
The firewall policy of the resource.
|
65
|
+
|
66
|
+
|
67
|
+
- - -
|
65
68
|
"""
|
66
69
|
return pulumi.get(self, "firewall_policy")
|
67
70
|
|
@@ -74,10 +77,6 @@ class RegionNetworkFirewallPolicyAssociationArgs:
|
|
74
77
|
def name(self) -> Optional[pulumi.Input[str]]:
|
75
78
|
"""
|
76
79
|
The name for an association.
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
- - -
|
81
80
|
"""
|
82
81
|
return pulumi.get(self, "name")
|
83
82
|
|
@@ -89,7 +88,8 @@ class RegionNetworkFirewallPolicyAssociationArgs:
|
|
89
88
|
@pulumi.getter
|
90
89
|
def project(self) -> Optional[pulumi.Input[str]]:
|
91
90
|
"""
|
92
|
-
The project
|
91
|
+
The ID of the project in which the resource belongs.
|
92
|
+
If it is not provided, the provider project is used.
|
93
93
|
"""
|
94
94
|
return pulumi.get(self, "project")
|
95
95
|
|
@@ -122,13 +122,13 @@ class _RegionNetworkFirewallPolicyAssociationState:
|
|
122
122
|
"""
|
123
123
|
Input properties used for looking up and filtering RegionNetworkFirewallPolicyAssociation resources.
|
124
124
|
:param pulumi.Input[str] attachment_target: The target that the firewall policy is attached to.
|
125
|
-
:param pulumi.Input[str] firewall_policy: The firewall policy
|
126
|
-
:param pulumi.Input[str] name: The name for an association.
|
127
|
-
|
125
|
+
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
128
126
|
|
129
127
|
|
130
128
|
- - -
|
131
|
-
:param pulumi.Input[str]
|
129
|
+
:param pulumi.Input[str] name: The name for an association.
|
130
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
131
|
+
If it is not provided, the provider project is used.
|
132
132
|
:param pulumi.Input[str] region: The location of this resource.
|
133
133
|
:param pulumi.Input[str] short_name: The short name of the firewall policy of the association.
|
134
134
|
"""
|
@@ -161,7 +161,10 @@ class _RegionNetworkFirewallPolicyAssociationState:
|
|
161
161
|
@pulumi.getter(name="firewallPolicy")
|
162
162
|
def firewall_policy(self) -> Optional[pulumi.Input[str]]:
|
163
163
|
"""
|
164
|
-
The firewall policy
|
164
|
+
The firewall policy of the resource.
|
165
|
+
|
166
|
+
|
167
|
+
- - -
|
165
168
|
"""
|
166
169
|
return pulumi.get(self, "firewall_policy")
|
167
170
|
|
@@ -174,10 +177,6 @@ class _RegionNetworkFirewallPolicyAssociationState:
|
|
174
177
|
def name(self) -> Optional[pulumi.Input[str]]:
|
175
178
|
"""
|
176
179
|
The name for an association.
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
- - -
|
181
180
|
"""
|
182
181
|
return pulumi.get(self, "name")
|
183
182
|
|
@@ -189,7 +188,8 @@ class _RegionNetworkFirewallPolicyAssociationState:
|
|
189
188
|
@pulumi.getter
|
190
189
|
def project(self) -> Optional[pulumi.Input[str]]:
|
191
190
|
"""
|
192
|
-
The project
|
191
|
+
The ID of the project in which the resource belongs.
|
192
|
+
If it is not provided, the provider project is used.
|
193
193
|
"""
|
194
194
|
return pulumi.get(self, "project")
|
195
195
|
|
@@ -236,36 +236,49 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
236
236
|
"""
|
237
237
|
The Compute NetworkFirewallPolicyAssociation resource
|
238
238
|
|
239
|
+
To get more information about RegionNetworkFirewallPolicyAssociation, see:
|
240
|
+
|
241
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionNetworkFirewallPolicies/addAssociation)
|
242
|
+
|
239
243
|
## Example Usage
|
240
244
|
|
241
|
-
###
|
245
|
+
### Region Network Firewall Policy Association
|
246
|
+
|
242
247
|
```python
|
243
248
|
import pulumi
|
244
249
|
import pulumi_gcp as gcp
|
245
250
|
|
246
|
-
|
247
|
-
name="policy",
|
251
|
+
policy = gcp.compute.RegionNetworkFirewallPolicy("policy",
|
252
|
+
name="my-policy",
|
248
253
|
project="my-project-name",
|
249
254
|
description="Sample global network firewall policy",
|
250
255
|
region="us-west1")
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
+
network = gcp.compute.Network("network",
|
257
|
+
name="my-network",
|
258
|
+
auto_create_subnetworks=False)
|
259
|
+
default = gcp.compute.RegionNetworkFirewallPolicyAssociation("default",
|
260
|
+
name="my-association",
|
256
261
|
project="my-project-name",
|
262
|
+
attachment_target=network.id,
|
263
|
+
firewall_policy=policy.id,
|
257
264
|
region="us-west1")
|
258
265
|
```
|
259
266
|
|
260
267
|
## Import
|
261
268
|
|
262
|
-
|
269
|
+
RegionNetworkFirewallPolicyAssociation can be imported using any of these accepted formats:
|
263
270
|
|
264
271
|
* `projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/associations/{{name}}`
|
265
272
|
|
266
273
|
* `{{project}}/{{region}}/{{firewall_policy}}/{{name}}`
|
267
274
|
|
268
|
-
|
275
|
+
* `{{region}}/{{firewall_policy}}/{{name}}`
|
276
|
+
|
277
|
+
* `{{project}}/{{firewall_policy}}/{{name}}`
|
278
|
+
|
279
|
+
* `{{firewall_policy}}/{{name}}`
|
280
|
+
|
281
|
+
When using the `pulumi import` command, RegionNetworkFirewallPolicyAssociation can be imported using one of the formats above. For example:
|
269
282
|
|
270
283
|
```sh
|
271
284
|
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/associations/{{name}}
|
@@ -275,16 +288,28 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
275
288
|
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{project}}/{{region}}/{{firewall_policy}}/{{name}}
|
276
289
|
```
|
277
290
|
|
291
|
+
```sh
|
292
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{region}}/{{firewall_policy}}/{{name}}
|
293
|
+
```
|
294
|
+
|
295
|
+
```sh
|
296
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{project}}/{{firewall_policy}}/{{name}}
|
297
|
+
```
|
298
|
+
|
299
|
+
```sh
|
300
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{firewall_policy}}/{{name}}
|
301
|
+
```
|
302
|
+
|
278
303
|
:param str resource_name: The name of the resource.
|
279
304
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
280
305
|
:param pulumi.Input[str] attachment_target: The target that the firewall policy is attached to.
|
281
|
-
:param pulumi.Input[str] firewall_policy: The firewall policy
|
282
|
-
:param pulumi.Input[str] name: The name for an association.
|
283
|
-
|
306
|
+
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
284
307
|
|
285
308
|
|
286
309
|
- - -
|
287
|
-
:param pulumi.Input[str]
|
310
|
+
:param pulumi.Input[str] name: The name for an association.
|
311
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
312
|
+
If it is not provided, the provider project is used.
|
288
313
|
:param pulumi.Input[str] region: The location of this resource.
|
289
314
|
"""
|
290
315
|
...
|
@@ -296,36 +321,49 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
296
321
|
"""
|
297
322
|
The Compute NetworkFirewallPolicyAssociation resource
|
298
323
|
|
324
|
+
To get more information about RegionNetworkFirewallPolicyAssociation, see:
|
325
|
+
|
326
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionNetworkFirewallPolicies/addAssociation)
|
327
|
+
|
299
328
|
## Example Usage
|
300
329
|
|
301
|
-
###
|
330
|
+
### Region Network Firewall Policy Association
|
331
|
+
|
302
332
|
```python
|
303
333
|
import pulumi
|
304
334
|
import pulumi_gcp as gcp
|
305
335
|
|
306
|
-
|
307
|
-
name="policy",
|
336
|
+
policy = gcp.compute.RegionNetworkFirewallPolicy("policy",
|
337
|
+
name="my-policy",
|
308
338
|
project="my-project-name",
|
309
339
|
description="Sample global network firewall policy",
|
310
340
|
region="us-west1")
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
341
|
+
network = gcp.compute.Network("network",
|
342
|
+
name="my-network",
|
343
|
+
auto_create_subnetworks=False)
|
344
|
+
default = gcp.compute.RegionNetworkFirewallPolicyAssociation("default",
|
345
|
+
name="my-association",
|
316
346
|
project="my-project-name",
|
347
|
+
attachment_target=network.id,
|
348
|
+
firewall_policy=policy.id,
|
317
349
|
region="us-west1")
|
318
350
|
```
|
319
351
|
|
320
352
|
## Import
|
321
353
|
|
322
|
-
|
354
|
+
RegionNetworkFirewallPolicyAssociation can be imported using any of these accepted formats:
|
323
355
|
|
324
356
|
* `projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/associations/{{name}}`
|
325
357
|
|
326
358
|
* `{{project}}/{{region}}/{{firewall_policy}}/{{name}}`
|
327
359
|
|
328
|
-
|
360
|
+
* `{{region}}/{{firewall_policy}}/{{name}}`
|
361
|
+
|
362
|
+
* `{{project}}/{{firewall_policy}}/{{name}}`
|
363
|
+
|
364
|
+
* `{{firewall_policy}}/{{name}}`
|
365
|
+
|
366
|
+
When using the `pulumi import` command, RegionNetworkFirewallPolicyAssociation can be imported using one of the formats above. For example:
|
329
367
|
|
330
368
|
```sh
|
331
369
|
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/associations/{{name}}
|
@@ -335,6 +373,18 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
335
373
|
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{project}}/{{region}}/{{firewall_policy}}/{{name}}
|
336
374
|
```
|
337
375
|
|
376
|
+
```sh
|
377
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{region}}/{{firewall_policy}}/{{name}}
|
378
|
+
```
|
379
|
+
|
380
|
+
```sh
|
381
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{project}}/{{firewall_policy}}/{{name}}
|
382
|
+
```
|
383
|
+
|
384
|
+
```sh
|
385
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{firewall_policy}}/{{name}}
|
386
|
+
```
|
387
|
+
|
338
388
|
:param str resource_name: The name of the resource.
|
339
389
|
:param RegionNetworkFirewallPolicyAssociationArgs args: The arguments to use to populate this resource's properties.
|
340
390
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
@@ -398,13 +448,13 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
398
448
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
399
449
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
400
450
|
:param pulumi.Input[str] attachment_target: The target that the firewall policy is attached to.
|
401
|
-
:param pulumi.Input[str] firewall_policy: The firewall policy
|
402
|
-
:param pulumi.Input[str] name: The name for an association.
|
403
|
-
|
451
|
+
:param pulumi.Input[str] firewall_policy: The firewall policy of the resource.
|
404
452
|
|
405
453
|
|
406
454
|
- - -
|
407
|
-
:param pulumi.Input[str]
|
455
|
+
:param pulumi.Input[str] name: The name for an association.
|
456
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
457
|
+
If it is not provided, the provider project is used.
|
408
458
|
:param pulumi.Input[str] region: The location of this resource.
|
409
459
|
:param pulumi.Input[str] short_name: The short name of the firewall policy of the association.
|
410
460
|
"""
|
@@ -432,7 +482,10 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
432
482
|
@pulumi.getter(name="firewallPolicy")
|
433
483
|
def firewall_policy(self) -> pulumi.Output[str]:
|
434
484
|
"""
|
435
|
-
The firewall policy
|
485
|
+
The firewall policy of the resource.
|
486
|
+
|
487
|
+
|
488
|
+
- - -
|
436
489
|
"""
|
437
490
|
return pulumi.get(self, "firewall_policy")
|
438
491
|
|
@@ -441,10 +494,6 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
441
494
|
def name(self) -> pulumi.Output[str]:
|
442
495
|
"""
|
443
496
|
The name for an association.
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
- - -
|
448
497
|
"""
|
449
498
|
return pulumi.get(self, "name")
|
450
499
|
|
@@ -452,7 +501,8 @@ class RegionNetworkFirewallPolicyAssociation(pulumi.CustomResource):
|
|
452
501
|
@pulumi.getter
|
453
502
|
def project(self) -> pulumi.Output[str]:
|
454
503
|
"""
|
455
|
-
The project
|
504
|
+
The ID of the project in which the resource belongs.
|
505
|
+
If it is not provided, the provider project is used.
|
456
506
|
"""
|
457
507
|
return pulumi.get(self, "project")
|
458
508
|
|