pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 +88 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
- pulumi_gcp/accesscontextmanager/outputs.py +369 -0
- pulumi_gcp/alloydb/_inputs.py +47 -1
- pulumi_gcp/alloydb/outputs.py +61 -3
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
- pulumi_gcp/applicationintegration/client.py +34 -12
- pulumi_gcp/artifactregistry/outputs.py +2 -2
- pulumi_gcp/certificateauthority/_inputs.py +32 -0
- pulumi_gcp/certificateauthority/ca_pool.py +2 -0
- pulumi_gcp/certificateauthority/outputs.py +22 -0
- pulumi_gcp/clouddeploy/_inputs.py +0 -6
- pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
- pulumi_gcp/clouddeploy/outputs.py +0 -4
- pulumi_gcp/cloudrunv2/_inputs.py +3 -3
- pulumi_gcp/cloudrunv2/outputs.py +4 -4
- pulumi_gcp/colab/runtime_template.py +3 -3
- pulumi_gcp/compute/__init__.py +7 -0
- pulumi_gcp/compute/_inputs.py +809 -1
- pulumi_gcp/compute/backend_service.py +89 -0
- pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
- pulumi_gcp/compute/get_storage_pool_types.py +268 -0
- pulumi_gcp/compute/outputs.py +743 -3
- pulumi_gcp/compute/resource_policy_attachment.py +476 -0
- pulumi_gcp/compute/storage_pool.py +1045 -0
- pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
- pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
- pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +63 -3
- pulumi_gcp/container/outputs.py +70 -6
- pulumi_gcp/dataproc/get_metastore_service.py +12 -1
- pulumi_gcp/dataproc/metastore_service.py +61 -0
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/discoveryengine/_inputs.py +38 -0
- pulumi_gcp/discoveryengine/chat_engine.py +6 -4
- pulumi_gcp/discoveryengine/outputs.py +26 -0
- pulumi_gcp/firebaserules/_inputs.py +6 -6
- pulumi_gcp/firebaserules/outputs.py +4 -4
- pulumi_gcp/gkebackup/__init__.py +2 -0
- pulumi_gcp/gkebackup/backup_channel.py +737 -0
- pulumi_gcp/gkebackup/restore_channel.py +737 -0
- pulumi_gcp/gkehub/_inputs.py +208 -0
- pulumi_gcp/gkehub/outputs.py +171 -1
- pulumi_gcp/healthcare/pipeline_job.py +2 -2
- pulumi_gcp/iap/__init__.py +4 -0
- pulumi_gcp/iap/_inputs.py +130 -0
- pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
- pulumi_gcp/iap/outputs.py +76 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
- pulumi_gcp/kms/key_ring_import_job.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +8 -4
- pulumi_gcp/managedkafka/connector.py +8 -4
- pulumi_gcp/monitoring/uptime_check_config.py +49 -0
- pulumi_gcp/networkconnectivity/internal_range.py +82 -0
- pulumi_gcp/projects/_inputs.py +0 -6
- pulumi_gcp/projects/api_key.py +28 -0
- pulumi_gcp/projects/outputs.py +0 -4
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +61 -0
- pulumi_gcp/sql/_inputs.py +86 -6
- pulumi_gcp/sql/outputs.py +156 -12
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +457 -0
- pulumi_gcp/storage/batch_operations_job.py +776 -0
- pulumi_gcp/storage/outputs.py +403 -0
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,268 @@
|
|
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 builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetStoragePoolTypesResult',
|
21
|
+
'AwaitableGetStoragePoolTypesResult',
|
22
|
+
'get_storage_pool_types',
|
23
|
+
'get_storage_pool_types_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetStoragePoolTypesResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getStoragePoolTypes.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, creation_timestamp=None, deprecateds=None, description=None, id=None, kind=None, max_pool_provisioned_capacity_gb=None, max_pool_provisioned_iops=None, max_pool_provisioned_throughput=None, min_pool_provisioned_capacity_gb=None, min_pool_provisioned_iops=None, min_pool_provisioned_throughput=None, name=None, project=None, self_link=None, self_link_with_id=None, storage_pool_type=None, supported_disk_types=None, zone=None):
|
32
|
+
if creation_timestamp and not isinstance(creation_timestamp, str):
|
33
|
+
raise TypeError("Expected argument 'creation_timestamp' to be a str")
|
34
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
35
|
+
if deprecateds and not isinstance(deprecateds, list):
|
36
|
+
raise TypeError("Expected argument 'deprecateds' to be a list")
|
37
|
+
pulumi.set(__self__, "deprecateds", deprecateds)
|
38
|
+
if description and not isinstance(description, str):
|
39
|
+
raise TypeError("Expected argument 'description' to be a str")
|
40
|
+
pulumi.set(__self__, "description", description)
|
41
|
+
if id and not isinstance(id, int):
|
42
|
+
raise TypeError("Expected argument 'id' to be a int")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if kind and not isinstance(kind, str):
|
45
|
+
raise TypeError("Expected argument 'kind' to be a str")
|
46
|
+
pulumi.set(__self__, "kind", kind)
|
47
|
+
if max_pool_provisioned_capacity_gb and not isinstance(max_pool_provisioned_capacity_gb, int):
|
48
|
+
raise TypeError("Expected argument 'max_pool_provisioned_capacity_gb' to be a int")
|
49
|
+
pulumi.set(__self__, "max_pool_provisioned_capacity_gb", max_pool_provisioned_capacity_gb)
|
50
|
+
if max_pool_provisioned_iops and not isinstance(max_pool_provisioned_iops, int):
|
51
|
+
raise TypeError("Expected argument 'max_pool_provisioned_iops' to be a int")
|
52
|
+
pulumi.set(__self__, "max_pool_provisioned_iops", max_pool_provisioned_iops)
|
53
|
+
if max_pool_provisioned_throughput and not isinstance(max_pool_provisioned_throughput, int):
|
54
|
+
raise TypeError("Expected argument 'max_pool_provisioned_throughput' to be a int")
|
55
|
+
pulumi.set(__self__, "max_pool_provisioned_throughput", max_pool_provisioned_throughput)
|
56
|
+
if min_pool_provisioned_capacity_gb and not isinstance(min_pool_provisioned_capacity_gb, int):
|
57
|
+
raise TypeError("Expected argument 'min_pool_provisioned_capacity_gb' to be a int")
|
58
|
+
pulumi.set(__self__, "min_pool_provisioned_capacity_gb", min_pool_provisioned_capacity_gb)
|
59
|
+
if min_pool_provisioned_iops and not isinstance(min_pool_provisioned_iops, int):
|
60
|
+
raise TypeError("Expected argument 'min_pool_provisioned_iops' to be a int")
|
61
|
+
pulumi.set(__self__, "min_pool_provisioned_iops", min_pool_provisioned_iops)
|
62
|
+
if min_pool_provisioned_throughput and not isinstance(min_pool_provisioned_throughput, int):
|
63
|
+
raise TypeError("Expected argument 'min_pool_provisioned_throughput' to be a int")
|
64
|
+
pulumi.set(__self__, "min_pool_provisioned_throughput", min_pool_provisioned_throughput)
|
65
|
+
if name and not isinstance(name, str):
|
66
|
+
raise TypeError("Expected argument 'name' to be a str")
|
67
|
+
pulumi.set(__self__, "name", name)
|
68
|
+
if project and not isinstance(project, str):
|
69
|
+
raise TypeError("Expected argument 'project' to be a str")
|
70
|
+
pulumi.set(__self__, "project", project)
|
71
|
+
if self_link and not isinstance(self_link, str):
|
72
|
+
raise TypeError("Expected argument 'self_link' to be a str")
|
73
|
+
pulumi.set(__self__, "self_link", self_link)
|
74
|
+
if self_link_with_id and not isinstance(self_link_with_id, str):
|
75
|
+
raise TypeError("Expected argument 'self_link_with_id' to be a str")
|
76
|
+
pulumi.set(__self__, "self_link_with_id", self_link_with_id)
|
77
|
+
if storage_pool_type and not isinstance(storage_pool_type, str):
|
78
|
+
raise TypeError("Expected argument 'storage_pool_type' to be a str")
|
79
|
+
pulumi.set(__self__, "storage_pool_type", storage_pool_type)
|
80
|
+
if supported_disk_types and not isinstance(supported_disk_types, list):
|
81
|
+
raise TypeError("Expected argument 'supported_disk_types' to be a list")
|
82
|
+
pulumi.set(__self__, "supported_disk_types", supported_disk_types)
|
83
|
+
if zone and not isinstance(zone, str):
|
84
|
+
raise TypeError("Expected argument 'zone' to be a str")
|
85
|
+
pulumi.set(__self__, "zone", zone)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="creationTimestamp")
|
89
|
+
def creation_timestamp(self) -> builtins.str:
|
90
|
+
return pulumi.get(self, "creation_timestamp")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter
|
94
|
+
def deprecateds(self) -> Sequence['outputs.GetStoragePoolTypesDeprecatedResult']:
|
95
|
+
return pulumi.get(self, "deprecateds")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter
|
99
|
+
def description(self) -> builtins.str:
|
100
|
+
return pulumi.get(self, "description")
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def id(self) -> builtins.int:
|
105
|
+
return pulumi.get(self, "id")
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter
|
109
|
+
def kind(self) -> builtins.str:
|
110
|
+
return pulumi.get(self, "kind")
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter(name="maxPoolProvisionedCapacityGb")
|
114
|
+
def max_pool_provisioned_capacity_gb(self) -> builtins.int:
|
115
|
+
return pulumi.get(self, "max_pool_provisioned_capacity_gb")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="maxPoolProvisionedIops")
|
119
|
+
def max_pool_provisioned_iops(self) -> builtins.int:
|
120
|
+
return pulumi.get(self, "max_pool_provisioned_iops")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter(name="maxPoolProvisionedThroughput")
|
124
|
+
def max_pool_provisioned_throughput(self) -> builtins.int:
|
125
|
+
return pulumi.get(self, "max_pool_provisioned_throughput")
|
126
|
+
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="minPoolProvisionedCapacityGb")
|
129
|
+
def min_pool_provisioned_capacity_gb(self) -> builtins.int:
|
130
|
+
return pulumi.get(self, "min_pool_provisioned_capacity_gb")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="minPoolProvisionedIops")
|
134
|
+
def min_pool_provisioned_iops(self) -> builtins.int:
|
135
|
+
return pulumi.get(self, "min_pool_provisioned_iops")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="minPoolProvisionedThroughput")
|
139
|
+
def min_pool_provisioned_throughput(self) -> builtins.int:
|
140
|
+
return pulumi.get(self, "min_pool_provisioned_throughput")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter
|
144
|
+
def name(self) -> builtins.str:
|
145
|
+
return pulumi.get(self, "name")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter
|
149
|
+
def project(self) -> builtins.str:
|
150
|
+
return pulumi.get(self, "project")
|
151
|
+
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="selfLink")
|
154
|
+
def self_link(self) -> builtins.str:
|
155
|
+
return pulumi.get(self, "self_link")
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="selfLinkWithId")
|
159
|
+
def self_link_with_id(self) -> builtins.str:
|
160
|
+
return pulumi.get(self, "self_link_with_id")
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="storagePoolType")
|
164
|
+
def storage_pool_type(self) -> builtins.str:
|
165
|
+
return pulumi.get(self, "storage_pool_type")
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="supportedDiskTypes")
|
169
|
+
def supported_disk_types(self) -> Sequence[builtins.str]:
|
170
|
+
return pulumi.get(self, "supported_disk_types")
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter
|
174
|
+
def zone(self) -> builtins.str:
|
175
|
+
return pulumi.get(self, "zone")
|
176
|
+
|
177
|
+
|
178
|
+
class AwaitableGetStoragePoolTypesResult(GetStoragePoolTypesResult):
|
179
|
+
# pylint: disable=using-constant-test
|
180
|
+
def __await__(self):
|
181
|
+
if False:
|
182
|
+
yield self
|
183
|
+
return GetStoragePoolTypesResult(
|
184
|
+
creation_timestamp=self.creation_timestamp,
|
185
|
+
deprecateds=self.deprecateds,
|
186
|
+
description=self.description,
|
187
|
+
id=self.id,
|
188
|
+
kind=self.kind,
|
189
|
+
max_pool_provisioned_capacity_gb=self.max_pool_provisioned_capacity_gb,
|
190
|
+
max_pool_provisioned_iops=self.max_pool_provisioned_iops,
|
191
|
+
max_pool_provisioned_throughput=self.max_pool_provisioned_throughput,
|
192
|
+
min_pool_provisioned_capacity_gb=self.min_pool_provisioned_capacity_gb,
|
193
|
+
min_pool_provisioned_iops=self.min_pool_provisioned_iops,
|
194
|
+
min_pool_provisioned_throughput=self.min_pool_provisioned_throughput,
|
195
|
+
name=self.name,
|
196
|
+
project=self.project,
|
197
|
+
self_link=self.self_link,
|
198
|
+
self_link_with_id=self.self_link_with_id,
|
199
|
+
storage_pool_type=self.storage_pool_type,
|
200
|
+
supported_disk_types=self.supported_disk_types,
|
201
|
+
zone=self.zone)
|
202
|
+
|
203
|
+
|
204
|
+
def get_storage_pool_types(project: Optional[builtins.str] = None,
|
205
|
+
storage_pool_type: Optional[builtins.str] = None,
|
206
|
+
zone: Optional[builtins.str] = None,
|
207
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStoragePoolTypesResult:
|
208
|
+
"""
|
209
|
+
Use this data source to access information about an existing resource.
|
210
|
+
"""
|
211
|
+
__args__ = dict()
|
212
|
+
__args__['project'] = project
|
213
|
+
__args__['storagePoolType'] = storage_pool_type
|
214
|
+
__args__['zone'] = zone
|
215
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
216
|
+
__ret__ = pulumi.runtime.invoke('gcp:compute/getStoragePoolTypes:getStoragePoolTypes', __args__, opts=opts, typ=GetStoragePoolTypesResult).value
|
217
|
+
|
218
|
+
return AwaitableGetStoragePoolTypesResult(
|
219
|
+
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
220
|
+
deprecateds=pulumi.get(__ret__, 'deprecateds'),
|
221
|
+
description=pulumi.get(__ret__, 'description'),
|
222
|
+
id=pulumi.get(__ret__, 'id'),
|
223
|
+
kind=pulumi.get(__ret__, 'kind'),
|
224
|
+
max_pool_provisioned_capacity_gb=pulumi.get(__ret__, 'max_pool_provisioned_capacity_gb'),
|
225
|
+
max_pool_provisioned_iops=pulumi.get(__ret__, 'max_pool_provisioned_iops'),
|
226
|
+
max_pool_provisioned_throughput=pulumi.get(__ret__, 'max_pool_provisioned_throughput'),
|
227
|
+
min_pool_provisioned_capacity_gb=pulumi.get(__ret__, 'min_pool_provisioned_capacity_gb'),
|
228
|
+
min_pool_provisioned_iops=pulumi.get(__ret__, 'min_pool_provisioned_iops'),
|
229
|
+
min_pool_provisioned_throughput=pulumi.get(__ret__, 'min_pool_provisioned_throughput'),
|
230
|
+
name=pulumi.get(__ret__, 'name'),
|
231
|
+
project=pulumi.get(__ret__, 'project'),
|
232
|
+
self_link=pulumi.get(__ret__, 'self_link'),
|
233
|
+
self_link_with_id=pulumi.get(__ret__, 'self_link_with_id'),
|
234
|
+
storage_pool_type=pulumi.get(__ret__, 'storage_pool_type'),
|
235
|
+
supported_disk_types=pulumi.get(__ret__, 'supported_disk_types'),
|
236
|
+
zone=pulumi.get(__ret__, 'zone'))
|
237
|
+
def get_storage_pool_types_output(project: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
238
|
+
storage_pool_type: Optional[pulumi.Input[builtins.str]] = None,
|
239
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
240
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStoragePoolTypesResult]:
|
241
|
+
"""
|
242
|
+
Use this data source to access information about an existing resource.
|
243
|
+
"""
|
244
|
+
__args__ = dict()
|
245
|
+
__args__['project'] = project
|
246
|
+
__args__['storagePoolType'] = storage_pool_type
|
247
|
+
__args__['zone'] = zone
|
248
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
249
|
+
__ret__ = pulumi.runtime.invoke_output('gcp:compute/getStoragePoolTypes:getStoragePoolTypes', __args__, opts=opts, typ=GetStoragePoolTypesResult)
|
250
|
+
return __ret__.apply(lambda __response__: GetStoragePoolTypesResult(
|
251
|
+
creation_timestamp=pulumi.get(__response__, 'creation_timestamp'),
|
252
|
+
deprecateds=pulumi.get(__response__, 'deprecateds'),
|
253
|
+
description=pulumi.get(__response__, 'description'),
|
254
|
+
id=pulumi.get(__response__, 'id'),
|
255
|
+
kind=pulumi.get(__response__, 'kind'),
|
256
|
+
max_pool_provisioned_capacity_gb=pulumi.get(__response__, 'max_pool_provisioned_capacity_gb'),
|
257
|
+
max_pool_provisioned_iops=pulumi.get(__response__, 'max_pool_provisioned_iops'),
|
258
|
+
max_pool_provisioned_throughput=pulumi.get(__response__, 'max_pool_provisioned_throughput'),
|
259
|
+
min_pool_provisioned_capacity_gb=pulumi.get(__response__, 'min_pool_provisioned_capacity_gb'),
|
260
|
+
min_pool_provisioned_iops=pulumi.get(__response__, 'min_pool_provisioned_iops'),
|
261
|
+
min_pool_provisioned_throughput=pulumi.get(__response__, 'min_pool_provisioned_throughput'),
|
262
|
+
name=pulumi.get(__response__, 'name'),
|
263
|
+
project=pulumi.get(__response__, 'project'),
|
264
|
+
self_link=pulumi.get(__response__, 'self_link'),
|
265
|
+
self_link_with_id=pulumi.get(__response__, 'self_link_with_id'),
|
266
|
+
storage_pool_type=pulumi.get(__response__, 'storage_pool_type'),
|
267
|
+
supported_disk_types=pulumi.get(__response__, 'supported_disk_types'),
|
268
|
+
zone=pulumi.get(__response__, 'zone')))
|