pulumi-gcp 8.17.0a1738274430__py3-none-any.whl → 8.18.0__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 +115 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/alloydb/cluster.py +75 -7
- pulumi_gcp/alloydb/user.py +10 -1
- pulumi_gcp/apigee/_inputs.py +91 -0
- pulumi_gcp/apigee/endpoint_attachment.py +0 -64
- pulumi_gcp/apigee/environment.py +54 -0
- pulumi_gcp/apigee/outputs.py +54 -0
- pulumi_gcp/apihub/__init__.py +10 -0
- pulumi_gcp/apihub/_inputs.py +154 -0
- pulumi_gcp/apihub/api_hub_instance.py +784 -0
- pulumi_gcp/apihub/outputs.py +124 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/beyondcorp/__init__.py +4 -0
- pulumi_gcp/beyondcorp/_inputs.py +130 -0
- pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +180 -0
- pulumi_gcp/beyondcorp/outputs.py +76 -0
- pulumi_gcp/beyondcorp/security_gateway.py +52 -25
- pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_member.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +894 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/dataset.py +7 -7
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigquery/table.py +61 -7
- pulumi_gcp/chronicle/__init__.py +1 -0
- pulumi_gcp/chronicle/_inputs.py +124 -0
- pulumi_gcp/chronicle/outputs.py +112 -0
- pulumi_gcp/chronicle/retrohunt.py +629 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +23 -23
- pulumi_gcp/cloudrunv2/_inputs.py +197 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +256 -0
- pulumi_gcp/cloudrunv2/service.py +159 -0
- pulumi_gcp/colab/__init__.py +5 -0
- pulumi_gcp/colab/_inputs.py +131 -0
- pulumi_gcp/colab/get_runtime_template_iam_policy.py +182 -0
- pulumi_gcp/colab/outputs.py +92 -0
- pulumi_gcp/colab/runtime.py +696 -0
- pulumi_gcp/colab/runtime_template_iam_binding.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_member.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_policy.py +667 -0
- pulumi_gcp/compute/__init__.py +4 -0
- pulumi_gcp/compute/_inputs.py +535 -9
- pulumi_gcp/compute/firewall_policy_rule.py +104 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +114 -42
- pulumi_gcp/compute/get_instance_template_iam_policy.py +159 -0
- pulumi_gcp/compute/get_network.py +3 -3
- pulumi_gcp/compute/instance_template_iam_binding.py +998 -0
- pulumi_gcp/compute/instance_template_iam_member.py +998 -0
- pulumi_gcp/compute/instance_template_iam_policy.py +817 -0
- pulumi_gcp/compute/interconnect_attachment.py +189 -2
- pulumi_gcp/compute/network.py +7 -7
- pulumi_gcp/compute/network_firewall_policy_rule.py +122 -10
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +116 -44
- pulumi_gcp/compute/outputs.py +358 -6
- pulumi_gcp/compute/project_metadata_item.py +12 -0
- pulumi_gcp/compute/public_advertised_prefix.py +87 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +130 -10
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +104 -32
- pulumi_gcp/compute/router_peer.py +227 -3
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +79 -20
- pulumi_gcp/container/outputs.py +75 -12
- pulumi_gcp/dataproc/_inputs.py +34 -0
- pulumi_gcp/dataproc/outputs.py +37 -0
- pulumi_gcp/dataproc/workflow_template.py +47 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +75 -0
- pulumi_gcp/firestore/field.py +60 -0
- pulumi_gcp/gemini/code_repository_index.py +29 -33
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +28 -2
- pulumi_gcp/gemini/repository_group.py +76 -26
- pulumi_gcp/gemini/repository_group_iam_binding.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +258 -0
- pulumi_gcp/gkehub/_inputs.py +20 -0
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +26 -1
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/get_key_handles.py +172 -0
- pulumi_gcp/kms/outputs.py +45 -0
- pulumi_gcp/netapp/storage_pool.py +1 -1
- pulumi_gcp/networkconnectivity/spoke.py +76 -14
- pulumi_gcp/networksecurity/_inputs.py +72 -0
- pulumi_gcp/networksecurity/outputs.py +76 -0
- pulumi_gcp/networksecurity/security_profile.py +233 -7
- pulumi_gcp/networksecurity/security_profile_group.py +218 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_s.py +128 -0
- pulumi_gcp/organizations/outputs.py +63 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +6 -0
- pulumi_gcp/parametermanager/get_parameter.py +211 -0
- pulumi_gcp/parametermanager/get_parameter_version.py +216 -0
- pulumi_gcp/parametermanager/get_parameters.py +140 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +235 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
- pulumi_gcp/parametermanager/outputs.py +366 -0
- pulumi_gcp/parametermanager/parameter_version.py +496 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +10 -38
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +477 -1
- pulumi_gcp/pubsub/outputs.py +631 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +112 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/__init__.py +1 -0
- pulumi_gcp/redis/_inputs.py +342 -6
- pulumi_gcp/redis/cluster.py +223 -102
- pulumi_gcp/redis/cluster_user_created_connections.py +845 -0
- pulumi_gcp/redis/outputs.py +268 -4
- pulumi_gcp/resourcemanager/lien.py +12 -0
- pulumi_gcp/secretmanager/regional_secret.py +4 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +12 -0
- pulumi_gcp/secretmanager/secret.py +4 -0
- pulumi_gcp/secretmanager/secret_version.py +12 -0
- pulumi_gcp/securityposture/posture.py +4 -0
- pulumi_gcp/securityposture/posture_deployment.py +4 -0
- pulumi_gcp/serviceaccount/get_s.py +98 -8
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/backup_schedule.py +70 -4
- pulumi_gcp/spanner/outputs.py +60 -0
- pulumi_gcp/storage/get_bucket_object_content.py +4 -4
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/workflows/workflow.py +175 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/RECORD +137 -110
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/top_level.txt +0 -0
@@ -21,14 +21,13 @@ __all__ = ['SecurityGatewayArgs', 'SecurityGateway']
|
|
21
21
|
@pulumi.input_type
|
22
22
|
class SecurityGatewayArgs:
|
23
23
|
def __init__(__self__, *,
|
24
|
-
location: pulumi.Input[str],
|
25
24
|
security_gateway_id: pulumi.Input[str],
|
26
25
|
display_name: Optional[pulumi.Input[str]] = None,
|
27
26
|
hubs: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityGatewayHubArgs']]]] = None,
|
27
|
+
location: Optional[pulumi.Input[str]] = None,
|
28
28
|
project: Optional[pulumi.Input[str]] = None):
|
29
29
|
"""
|
30
30
|
The set of arguments for constructing a SecurityGateway resource.
|
31
|
-
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
|
32
31
|
:param pulumi.Input[str] security_gateway_id: Optional. User-settable SecurityGateway resource ID.
|
33
32
|
* Must start with a letter.
|
34
33
|
* Must contain between 4-63 characters from `/a-z-/`.
|
@@ -41,30 +40,26 @@ class SecurityGatewayArgs:
|
|
41
40
|
:param pulumi.Input[Sequence[pulumi.Input['SecurityGatewayHubArgs']]] hubs: Optional. Map of Hubs that represents regional data path deployment with GCP region
|
42
41
|
as a key.
|
43
42
|
Structure is documented below.
|
43
|
+
:param pulumi.Input[str] location: (Optional, Deprecated)
|
44
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
45
|
+
|
46
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
44
47
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
45
48
|
If it is not provided, the provider project is used.
|
46
49
|
"""
|
47
|
-
pulumi.set(__self__, "location", location)
|
48
50
|
pulumi.set(__self__, "security_gateway_id", security_gateway_id)
|
49
51
|
if display_name is not None:
|
50
52
|
pulumi.set(__self__, "display_name", display_name)
|
51
53
|
if hubs is not None:
|
52
54
|
pulumi.set(__self__, "hubs", hubs)
|
55
|
+
if location is not None:
|
56
|
+
warnings.warn("""`location` is deprecated and will be removed in a future major release.""", DeprecationWarning)
|
57
|
+
pulumi.log.warn("""location is deprecated: `location` is deprecated and will be removed in a future major release.""")
|
58
|
+
if location is not None:
|
59
|
+
pulumi.set(__self__, "location", location)
|
53
60
|
if project is not None:
|
54
61
|
pulumi.set(__self__, "project", project)
|
55
62
|
|
56
|
-
@property
|
57
|
-
@pulumi.getter
|
58
|
-
def location(self) -> pulumi.Input[str]:
|
59
|
-
"""
|
60
|
-
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
|
61
|
-
"""
|
62
|
-
return pulumi.get(self, "location")
|
63
|
-
|
64
|
-
@location.setter
|
65
|
-
def location(self, value: pulumi.Input[str]):
|
66
|
-
pulumi.set(self, "location", value)
|
67
|
-
|
68
63
|
@property
|
69
64
|
@pulumi.getter(name="securityGatewayId")
|
70
65
|
def security_gateway_id(self) -> pulumi.Input[str]:
|
@@ -110,6 +105,22 @@ class SecurityGatewayArgs:
|
|
110
105
|
def hubs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityGatewayHubArgs']]]]):
|
111
106
|
pulumi.set(self, "hubs", value)
|
112
107
|
|
108
|
+
@property
|
109
|
+
@pulumi.getter
|
110
|
+
@_utilities.deprecated("""`location` is deprecated and will be removed in a future major release.""")
|
111
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
112
|
+
"""
|
113
|
+
(Optional, Deprecated)
|
114
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
115
|
+
|
116
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "location")
|
119
|
+
|
120
|
+
@location.setter
|
121
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
122
|
+
pulumi.set(self, "location", value)
|
123
|
+
|
113
124
|
@property
|
114
125
|
@pulumi.getter
|
115
126
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -147,7 +158,10 @@ class _SecurityGatewayState:
|
|
147
158
|
:param pulumi.Input[Sequence[pulumi.Input['SecurityGatewayHubArgs']]] hubs: Optional. Map of Hubs that represents regional data path deployment with GCP region
|
148
159
|
as a key.
|
149
160
|
Structure is documented below.
|
150
|
-
:param pulumi.Input[str] location:
|
161
|
+
:param pulumi.Input[str] location: (Optional, Deprecated)
|
162
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
163
|
+
|
164
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
151
165
|
:param pulumi.Input[str] name: Identifier. Name of the resource.
|
152
166
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
153
167
|
If it is not provided, the provider project is used.
|
@@ -177,6 +191,9 @@ class _SecurityGatewayState:
|
|
177
191
|
pulumi.set(__self__, "external_ips", external_ips)
|
178
192
|
if hubs is not None:
|
179
193
|
pulumi.set(__self__, "hubs", hubs)
|
194
|
+
if location is not None:
|
195
|
+
warnings.warn("""`location` is deprecated and will be removed in a future major release.""", DeprecationWarning)
|
196
|
+
pulumi.log.warn("""location is deprecated: `location` is deprecated and will be removed in a future major release.""")
|
180
197
|
if location is not None:
|
181
198
|
pulumi.set(__self__, "location", location)
|
182
199
|
if name is not None:
|
@@ -244,9 +261,13 @@ class _SecurityGatewayState:
|
|
244
261
|
|
245
262
|
@property
|
246
263
|
@pulumi.getter
|
264
|
+
@_utilities.deprecated("""`location` is deprecated and will be removed in a future major release.""")
|
247
265
|
def location(self) -> Optional[pulumi.Input[str]]:
|
248
266
|
"""
|
249
|
-
|
267
|
+
(Optional, Deprecated)
|
268
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
269
|
+
|
270
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
250
271
|
"""
|
251
272
|
return pulumi.get(self, "location")
|
252
273
|
|
@@ -354,7 +375,6 @@ class SecurityGateway(pulumi.CustomResource):
|
|
354
375
|
|
355
376
|
example = gcp.beyondcorp.SecurityGateway("example",
|
356
377
|
security_gateway_id="default",
|
357
|
-
location="global",
|
358
378
|
display_name="My Security Gateway resource",
|
359
379
|
hubs=[{
|
360
380
|
"region": "us-central1",
|
@@ -392,7 +412,10 @@ class SecurityGateway(pulumi.CustomResource):
|
|
392
412
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecurityGatewayHubArgs', 'SecurityGatewayHubArgsDict']]]] hubs: Optional. Map of Hubs that represents regional data path deployment with GCP region
|
393
413
|
as a key.
|
394
414
|
Structure is documented below.
|
395
|
-
:param pulumi.Input[str] location:
|
415
|
+
:param pulumi.Input[str] location: (Optional, Deprecated)
|
416
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
417
|
+
|
418
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
396
419
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
397
420
|
If it is not provided, the provider project is used.
|
398
421
|
:param pulumi.Input[str] security_gateway_id: Optional. User-settable SecurityGateway resource ID.
|
@@ -422,7 +445,6 @@ class SecurityGateway(pulumi.CustomResource):
|
|
422
445
|
|
423
446
|
example = gcp.beyondcorp.SecurityGateway("example",
|
424
447
|
security_gateway_id="default",
|
425
|
-
location="global",
|
426
448
|
display_name="My Security Gateway resource",
|
427
449
|
hubs=[{
|
428
450
|
"region": "us-central1",
|
@@ -484,8 +506,6 @@ class SecurityGateway(pulumi.CustomResource):
|
|
484
506
|
|
485
507
|
__props__.__dict__["display_name"] = display_name
|
486
508
|
__props__.__dict__["hubs"] = hubs
|
487
|
-
if location is None and not opts.urn:
|
488
|
-
raise TypeError("Missing required property 'location'")
|
489
509
|
__props__.__dict__["location"] = location
|
490
510
|
__props__.__dict__["project"] = project
|
491
511
|
if security_gateway_id is None and not opts.urn:
|
@@ -531,7 +551,10 @@ class SecurityGateway(pulumi.CustomResource):
|
|
531
551
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecurityGatewayHubArgs', 'SecurityGatewayHubArgsDict']]]] hubs: Optional. Map of Hubs that represents regional data path deployment with GCP region
|
532
552
|
as a key.
|
533
553
|
Structure is documented below.
|
534
|
-
:param pulumi.Input[str] location:
|
554
|
+
:param pulumi.Input[str] location: (Optional, Deprecated)
|
555
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
556
|
+
|
557
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
535
558
|
:param pulumi.Input[str] name: Identifier. Name of the resource.
|
536
559
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
537
560
|
If it is not provided, the provider project is used.
|
@@ -607,9 +630,13 @@ class SecurityGateway(pulumi.CustomResource):
|
|
607
630
|
|
608
631
|
@property
|
609
632
|
@pulumi.getter
|
610
|
-
|
633
|
+
@_utilities.deprecated("""`location` is deprecated and will be removed in a future major release.""")
|
634
|
+
def location(self) -> pulumi.Output[Optional[str]]:
|
611
635
|
"""
|
612
|
-
|
636
|
+
(Optional, Deprecated)
|
637
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. Must be omitted or set to `global`.
|
638
|
+
|
639
|
+
> **Warning:** `location` is deprecated and will be removed in a future major release.
|
613
640
|
"""
|
614
641
|
return pulumi.get(self, "location")
|
615
642
|
|