pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.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 +96 -0
- pulumi_gcp/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +6 -0
- pulumi_gcp/compute/_inputs.py +1370 -17
- pulumi_gcp/compute/backend_service.py +209 -14
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +403 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +78 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1952 -29
- pulumi_gcp/compute/region_backend_service.py +207 -14
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +2 -0
- pulumi_gcp/eventarc/_inputs.py +80 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +82 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +84 -27
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +56 -18
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +128 -12
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- pulumi_gcp/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/RECORD +110 -95
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,203 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetRegionSSLPolicyResult',
|
19
|
+
'AwaitableGetRegionSSLPolicyResult',
|
20
|
+
'get_region_ssl_policy',
|
21
|
+
'get_region_ssl_policy_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetRegionSSLPolicyResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getRegionSSLPolicy.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, creation_timestamp=None, custom_features=None, description=None, enabled_features=None, fingerprint=None, id=None, min_tls_version=None, name=None, profile=None, project=None, region=None, self_link=None):
|
30
|
+
if creation_timestamp and not isinstance(creation_timestamp, str):
|
31
|
+
raise TypeError("Expected argument 'creation_timestamp' to be a str")
|
32
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
33
|
+
if custom_features and not isinstance(custom_features, list):
|
34
|
+
raise TypeError("Expected argument 'custom_features' to be a list")
|
35
|
+
pulumi.set(__self__, "custom_features", custom_features)
|
36
|
+
if description and not isinstance(description, str):
|
37
|
+
raise TypeError("Expected argument 'description' to be a str")
|
38
|
+
pulumi.set(__self__, "description", description)
|
39
|
+
if enabled_features and not isinstance(enabled_features, list):
|
40
|
+
raise TypeError("Expected argument 'enabled_features' to be a list")
|
41
|
+
pulumi.set(__self__, "enabled_features", enabled_features)
|
42
|
+
if fingerprint and not isinstance(fingerprint, str):
|
43
|
+
raise TypeError("Expected argument 'fingerprint' to be a str")
|
44
|
+
pulumi.set(__self__, "fingerprint", fingerprint)
|
45
|
+
if id and not isinstance(id, str):
|
46
|
+
raise TypeError("Expected argument 'id' to be a str")
|
47
|
+
pulumi.set(__self__, "id", id)
|
48
|
+
if min_tls_version and not isinstance(min_tls_version, str):
|
49
|
+
raise TypeError("Expected argument 'min_tls_version' to be a str")
|
50
|
+
pulumi.set(__self__, "min_tls_version", min_tls_version)
|
51
|
+
if name and not isinstance(name, str):
|
52
|
+
raise TypeError("Expected argument 'name' to be a str")
|
53
|
+
pulumi.set(__self__, "name", name)
|
54
|
+
if profile and not isinstance(profile, str):
|
55
|
+
raise TypeError("Expected argument 'profile' to be a str")
|
56
|
+
pulumi.set(__self__, "profile", profile)
|
57
|
+
if project and not isinstance(project, str):
|
58
|
+
raise TypeError("Expected argument 'project' to be a str")
|
59
|
+
pulumi.set(__self__, "project", project)
|
60
|
+
if region and not isinstance(region, str):
|
61
|
+
raise TypeError("Expected argument 'region' to be a str")
|
62
|
+
pulumi.set(__self__, "region", region)
|
63
|
+
if self_link and not isinstance(self_link, str):
|
64
|
+
raise TypeError("Expected argument 'self_link' to be a str")
|
65
|
+
pulumi.set(__self__, "self_link", self_link)
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="creationTimestamp")
|
69
|
+
def creation_timestamp(self) -> str:
|
70
|
+
return pulumi.get(self, "creation_timestamp")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="customFeatures")
|
74
|
+
def custom_features(self) -> Sequence[str]:
|
75
|
+
return pulumi.get(self, "custom_features")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter
|
79
|
+
def description(self) -> str:
|
80
|
+
return pulumi.get(self, "description")
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="enabledFeatures")
|
84
|
+
def enabled_features(self) -> Sequence[str]:
|
85
|
+
return pulumi.get(self, "enabled_features")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter
|
89
|
+
def fingerprint(self) -> str:
|
90
|
+
return pulumi.get(self, "fingerprint")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter
|
94
|
+
def id(self) -> str:
|
95
|
+
"""
|
96
|
+
The provider-assigned unique ID for this managed resource.
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "id")
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="minTlsVersion")
|
102
|
+
def min_tls_version(self) -> str:
|
103
|
+
return pulumi.get(self, "min_tls_version")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter
|
107
|
+
def name(self) -> str:
|
108
|
+
return pulumi.get(self, "name")
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter
|
112
|
+
def profile(self) -> str:
|
113
|
+
return pulumi.get(self, "profile")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter
|
117
|
+
def project(self) -> Optional[str]:
|
118
|
+
return pulumi.get(self, "project")
|
119
|
+
|
120
|
+
@property
|
121
|
+
@pulumi.getter
|
122
|
+
def region(self) -> Optional[str]:
|
123
|
+
return pulumi.get(self, "region")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="selfLink")
|
127
|
+
def self_link(self) -> str:
|
128
|
+
return pulumi.get(self, "self_link")
|
129
|
+
|
130
|
+
|
131
|
+
class AwaitableGetRegionSSLPolicyResult(GetRegionSSLPolicyResult):
|
132
|
+
# pylint: disable=using-constant-test
|
133
|
+
def __await__(self):
|
134
|
+
if False:
|
135
|
+
yield self
|
136
|
+
return GetRegionSSLPolicyResult(
|
137
|
+
creation_timestamp=self.creation_timestamp,
|
138
|
+
custom_features=self.custom_features,
|
139
|
+
description=self.description,
|
140
|
+
enabled_features=self.enabled_features,
|
141
|
+
fingerprint=self.fingerprint,
|
142
|
+
id=self.id,
|
143
|
+
min_tls_version=self.min_tls_version,
|
144
|
+
name=self.name,
|
145
|
+
profile=self.profile,
|
146
|
+
project=self.project,
|
147
|
+
region=self.region,
|
148
|
+
self_link=self.self_link)
|
149
|
+
|
150
|
+
|
151
|
+
def get_region_ssl_policy(name: Optional[str] = None,
|
152
|
+
project: Optional[str] = None,
|
153
|
+
region: Optional[str] = None,
|
154
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegionSSLPolicyResult:
|
155
|
+
"""
|
156
|
+
Use this data source to access information about an existing resource.
|
157
|
+
"""
|
158
|
+
__args__ = dict()
|
159
|
+
__args__['name'] = name
|
160
|
+
__args__['project'] = project
|
161
|
+
__args__['region'] = region
|
162
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
163
|
+
__ret__ = pulumi.runtime.invoke('gcp:compute/getRegionSSLPolicy:getRegionSSLPolicy', __args__, opts=opts, typ=GetRegionSSLPolicyResult).value
|
164
|
+
|
165
|
+
return AwaitableGetRegionSSLPolicyResult(
|
166
|
+
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
167
|
+
custom_features=pulumi.get(__ret__, 'custom_features'),
|
168
|
+
description=pulumi.get(__ret__, 'description'),
|
169
|
+
enabled_features=pulumi.get(__ret__, 'enabled_features'),
|
170
|
+
fingerprint=pulumi.get(__ret__, 'fingerprint'),
|
171
|
+
id=pulumi.get(__ret__, 'id'),
|
172
|
+
min_tls_version=pulumi.get(__ret__, 'min_tls_version'),
|
173
|
+
name=pulumi.get(__ret__, 'name'),
|
174
|
+
profile=pulumi.get(__ret__, 'profile'),
|
175
|
+
project=pulumi.get(__ret__, 'project'),
|
176
|
+
region=pulumi.get(__ret__, 'region'),
|
177
|
+
self_link=pulumi.get(__ret__, 'self_link'))
|
178
|
+
def get_region_ssl_policy_output(name: Optional[pulumi.Input[str]] = None,
|
179
|
+
project: Optional[pulumi.Input[Optional[str]]] = None,
|
180
|
+
region: Optional[pulumi.Input[Optional[str]]] = None,
|
181
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegionSSLPolicyResult]:
|
182
|
+
"""
|
183
|
+
Use this data source to access information about an existing resource.
|
184
|
+
"""
|
185
|
+
__args__ = dict()
|
186
|
+
__args__['name'] = name
|
187
|
+
__args__['project'] = project
|
188
|
+
__args__['region'] = region
|
189
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
190
|
+
__ret__ = pulumi.runtime.invoke_output('gcp:compute/getRegionSSLPolicy:getRegionSSLPolicy', __args__, opts=opts, typ=GetRegionSSLPolicyResult)
|
191
|
+
return __ret__.apply(lambda __response__: GetRegionSSLPolicyResult(
|
192
|
+
creation_timestamp=pulumi.get(__response__, 'creation_timestamp'),
|
193
|
+
custom_features=pulumi.get(__response__, 'custom_features'),
|
194
|
+
description=pulumi.get(__response__, 'description'),
|
195
|
+
enabled_features=pulumi.get(__response__, 'enabled_features'),
|
196
|
+
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
197
|
+
id=pulumi.get(__response__, 'id'),
|
198
|
+
min_tls_version=pulumi.get(__response__, 'min_tls_version'),
|
199
|
+
name=pulumi.get(__response__, 'name'),
|
200
|
+
profile=pulumi.get(__response__, 'profile'),
|
201
|
+
project=pulumi.get(__response__, 'project'),
|
202
|
+
region=pulumi.get(__response__, 'region'),
|
203
|
+
self_link=pulumi.get(__response__, 'self_link')))
|