pulumi-gcp 8.10.0__py3-none-any.whl → 8.10.0a1731739693__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 +0 -24
- pulumi_gcp/accesscontextmanager/__init__.py +0 -1
- pulumi_gcp/accesscontextmanager/_inputs.py +54 -90
- pulumi_gcp/accesscontextmanager/outputs.py +36 -60
- pulumi_gcp/artifactregistry/_inputs.py +0 -56
- pulumi_gcp/artifactregistry/outputs.py +0 -65
- pulumi_gcp/artifactregistry/repository.py +0 -48
- pulumi_gcp/backupdisasterrecovery/__init__.py +0 -1
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +0 -63
- pulumi_gcp/backupdisasterrecovery/outputs.py +0 -402
- pulumi_gcp/certificateauthority/authority.py +138 -28
- pulumi_gcp/cloudrun/service.py +10 -0
- pulumi_gcp/cloudrunv2/get_service.py +4 -15
- pulumi_gcp/cloudrunv2/service.py +2 -30
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -490
- pulumi_gcp/dataproc/outputs.py +0 -385
- pulumi_gcp/filestore/_inputs.py +0 -152
- pulumi_gcp/filestore/get_instance.py +1 -12
- pulumi_gcp/filestore/instance.py +0 -47
- pulumi_gcp/filestore/outputs.py +0 -229
- pulumi_gcp/iam/__init__.py +0 -2
- pulumi_gcp/iam/_inputs.py +0 -274
- pulumi_gcp/iam/outputs.py +0 -198
- pulumi_gcp/managedkafka/cluster.py +0 -4
- pulumi_gcp/managedkafka/topic.py +0 -4
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +0 -213
- pulumi_gcp/redis/cluster.py +0 -289
- pulumi_gcp/redis/outputs.py +0 -185
- pulumi_gcp/securesourcemanager/_inputs.py +0 -33
- pulumi_gcp/securesourcemanager/instance.py +3 -90
- pulumi_gcp/securesourcemanager/outputs.py +0 -19
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +0 -73
- pulumi_gcp/sql/database_instance.py +0 -60
- pulumi_gcp/sql/outputs.py +0 -146
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- pulumi_gcp/vertex/ai_endpoint.py +29 -22
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/RECORD +47 -52
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/WHEEL +1 -1
- pulumi_gcp/accesscontextmanager/get_access_policy.py +0 -158
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +0 -263
- pulumi_gcp/dataproc/gdc_spark_application.py +0 -1658
- pulumi_gcp/iam/folders_policy_binding.py +0 -917
- pulumi_gcp/iam/organizations_policy_binding.py +0 -901
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/top_level.txt +0 -0
@@ -1,263 +0,0 @@
|
|
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
|
-
from . import outputs
|
17
|
-
|
18
|
-
__all__ = [
|
19
|
-
'GetDataSourceResult',
|
20
|
-
'AwaitableGetDataSourceResult',
|
21
|
-
'get_data_source',
|
22
|
-
'get_data_source_output',
|
23
|
-
]
|
24
|
-
|
25
|
-
@pulumi.output_type
|
26
|
-
class GetDataSourceResult:
|
27
|
-
"""
|
28
|
-
A collection of values returned by getDataSource.
|
29
|
-
"""
|
30
|
-
def __init__(__self__, backup_config_infos=None, backup_count=None, backup_vault_id=None, config_state=None, create_time=None, data_source_backup_appliance_applications=None, data_source_gcp_resources=None, data_source_id=None, etag=None, id=None, labels=None, location=None, name=None, project=None, state=None, total_stored_bytes=None, update_time=None):
|
31
|
-
if backup_config_infos and not isinstance(backup_config_infos, list):
|
32
|
-
raise TypeError("Expected argument 'backup_config_infos' to be a list")
|
33
|
-
pulumi.set(__self__, "backup_config_infos", backup_config_infos)
|
34
|
-
if backup_count and not isinstance(backup_count, str):
|
35
|
-
raise TypeError("Expected argument 'backup_count' to be a str")
|
36
|
-
pulumi.set(__self__, "backup_count", backup_count)
|
37
|
-
if backup_vault_id and not isinstance(backup_vault_id, str):
|
38
|
-
raise TypeError("Expected argument 'backup_vault_id' to be a str")
|
39
|
-
pulumi.set(__self__, "backup_vault_id", backup_vault_id)
|
40
|
-
if config_state and not isinstance(config_state, str):
|
41
|
-
raise TypeError("Expected argument 'config_state' to be a str")
|
42
|
-
pulumi.set(__self__, "config_state", config_state)
|
43
|
-
if create_time and not isinstance(create_time, str):
|
44
|
-
raise TypeError("Expected argument 'create_time' to be a str")
|
45
|
-
pulumi.set(__self__, "create_time", create_time)
|
46
|
-
if data_source_backup_appliance_applications and not isinstance(data_source_backup_appliance_applications, list):
|
47
|
-
raise TypeError("Expected argument 'data_source_backup_appliance_applications' to be a list")
|
48
|
-
pulumi.set(__self__, "data_source_backup_appliance_applications", data_source_backup_appliance_applications)
|
49
|
-
if data_source_gcp_resources and not isinstance(data_source_gcp_resources, list):
|
50
|
-
raise TypeError("Expected argument 'data_source_gcp_resources' to be a list")
|
51
|
-
pulumi.set(__self__, "data_source_gcp_resources", data_source_gcp_resources)
|
52
|
-
if data_source_id and not isinstance(data_source_id, str):
|
53
|
-
raise TypeError("Expected argument 'data_source_id' to be a str")
|
54
|
-
pulumi.set(__self__, "data_source_id", data_source_id)
|
55
|
-
if etag and not isinstance(etag, str):
|
56
|
-
raise TypeError("Expected argument 'etag' to be a str")
|
57
|
-
pulumi.set(__self__, "etag", etag)
|
58
|
-
if id and not isinstance(id, str):
|
59
|
-
raise TypeError("Expected argument 'id' to be a str")
|
60
|
-
pulumi.set(__self__, "id", id)
|
61
|
-
if labels and not isinstance(labels, dict):
|
62
|
-
raise TypeError("Expected argument 'labels' to be a dict")
|
63
|
-
pulumi.set(__self__, "labels", labels)
|
64
|
-
if location and not isinstance(location, str):
|
65
|
-
raise TypeError("Expected argument 'location' to be a str")
|
66
|
-
pulumi.set(__self__, "location", location)
|
67
|
-
if name and not isinstance(name, str):
|
68
|
-
raise TypeError("Expected argument 'name' to be a str")
|
69
|
-
pulumi.set(__self__, "name", name)
|
70
|
-
if project and not isinstance(project, str):
|
71
|
-
raise TypeError("Expected argument 'project' to be a str")
|
72
|
-
pulumi.set(__self__, "project", project)
|
73
|
-
if state and not isinstance(state, str):
|
74
|
-
raise TypeError("Expected argument 'state' to be a str")
|
75
|
-
pulumi.set(__self__, "state", state)
|
76
|
-
if total_stored_bytes and not isinstance(total_stored_bytes, str):
|
77
|
-
raise TypeError("Expected argument 'total_stored_bytes' to be a str")
|
78
|
-
pulumi.set(__self__, "total_stored_bytes", total_stored_bytes)
|
79
|
-
if update_time and not isinstance(update_time, str):
|
80
|
-
raise TypeError("Expected argument 'update_time' to be a str")
|
81
|
-
pulumi.set(__self__, "update_time", update_time)
|
82
|
-
|
83
|
-
@property
|
84
|
-
@pulumi.getter(name="backupConfigInfos")
|
85
|
-
def backup_config_infos(self) -> Sequence['outputs.GetDataSourceBackupConfigInfoResult']:
|
86
|
-
return pulumi.get(self, "backup_config_infos")
|
87
|
-
|
88
|
-
@property
|
89
|
-
@pulumi.getter(name="backupCount")
|
90
|
-
def backup_count(self) -> str:
|
91
|
-
return pulumi.get(self, "backup_count")
|
92
|
-
|
93
|
-
@property
|
94
|
-
@pulumi.getter(name="backupVaultId")
|
95
|
-
def backup_vault_id(self) -> str:
|
96
|
-
return pulumi.get(self, "backup_vault_id")
|
97
|
-
|
98
|
-
@property
|
99
|
-
@pulumi.getter(name="configState")
|
100
|
-
def config_state(self) -> str:
|
101
|
-
return pulumi.get(self, "config_state")
|
102
|
-
|
103
|
-
@property
|
104
|
-
@pulumi.getter(name="createTime")
|
105
|
-
def create_time(self) -> str:
|
106
|
-
return pulumi.get(self, "create_time")
|
107
|
-
|
108
|
-
@property
|
109
|
-
@pulumi.getter(name="dataSourceBackupApplianceApplications")
|
110
|
-
def data_source_backup_appliance_applications(self) -> Sequence['outputs.GetDataSourceDataSourceBackupApplianceApplicationResult']:
|
111
|
-
return pulumi.get(self, "data_source_backup_appliance_applications")
|
112
|
-
|
113
|
-
@property
|
114
|
-
@pulumi.getter(name="dataSourceGcpResources")
|
115
|
-
def data_source_gcp_resources(self) -> Sequence['outputs.GetDataSourceDataSourceGcpResourceResult']:
|
116
|
-
return pulumi.get(self, "data_source_gcp_resources")
|
117
|
-
|
118
|
-
@property
|
119
|
-
@pulumi.getter(name="dataSourceId")
|
120
|
-
def data_source_id(self) -> str:
|
121
|
-
return pulumi.get(self, "data_source_id")
|
122
|
-
|
123
|
-
@property
|
124
|
-
@pulumi.getter
|
125
|
-
def etag(self) -> str:
|
126
|
-
return pulumi.get(self, "etag")
|
127
|
-
|
128
|
-
@property
|
129
|
-
@pulumi.getter
|
130
|
-
def id(self) -> str:
|
131
|
-
"""
|
132
|
-
The provider-assigned unique ID for this managed resource.
|
133
|
-
"""
|
134
|
-
return pulumi.get(self, "id")
|
135
|
-
|
136
|
-
@property
|
137
|
-
@pulumi.getter
|
138
|
-
def labels(self) -> Mapping[str, str]:
|
139
|
-
return pulumi.get(self, "labels")
|
140
|
-
|
141
|
-
@property
|
142
|
-
@pulumi.getter
|
143
|
-
def location(self) -> str:
|
144
|
-
return pulumi.get(self, "location")
|
145
|
-
|
146
|
-
@property
|
147
|
-
@pulumi.getter
|
148
|
-
def name(self) -> str:
|
149
|
-
return pulumi.get(self, "name")
|
150
|
-
|
151
|
-
@property
|
152
|
-
@pulumi.getter
|
153
|
-
def project(self) -> str:
|
154
|
-
return pulumi.get(self, "project")
|
155
|
-
|
156
|
-
@property
|
157
|
-
@pulumi.getter
|
158
|
-
def state(self) -> str:
|
159
|
-
return pulumi.get(self, "state")
|
160
|
-
|
161
|
-
@property
|
162
|
-
@pulumi.getter(name="totalStoredBytes")
|
163
|
-
def total_stored_bytes(self) -> str:
|
164
|
-
return pulumi.get(self, "total_stored_bytes")
|
165
|
-
|
166
|
-
@property
|
167
|
-
@pulumi.getter(name="updateTime")
|
168
|
-
def update_time(self) -> str:
|
169
|
-
return pulumi.get(self, "update_time")
|
170
|
-
|
171
|
-
|
172
|
-
class AwaitableGetDataSourceResult(GetDataSourceResult):
|
173
|
-
# pylint: disable=using-constant-test
|
174
|
-
def __await__(self):
|
175
|
-
if False:
|
176
|
-
yield self
|
177
|
-
return GetDataSourceResult(
|
178
|
-
backup_config_infos=self.backup_config_infos,
|
179
|
-
backup_count=self.backup_count,
|
180
|
-
backup_vault_id=self.backup_vault_id,
|
181
|
-
config_state=self.config_state,
|
182
|
-
create_time=self.create_time,
|
183
|
-
data_source_backup_appliance_applications=self.data_source_backup_appliance_applications,
|
184
|
-
data_source_gcp_resources=self.data_source_gcp_resources,
|
185
|
-
data_source_id=self.data_source_id,
|
186
|
-
etag=self.etag,
|
187
|
-
id=self.id,
|
188
|
-
labels=self.labels,
|
189
|
-
location=self.location,
|
190
|
-
name=self.name,
|
191
|
-
project=self.project,
|
192
|
-
state=self.state,
|
193
|
-
total_stored_bytes=self.total_stored_bytes,
|
194
|
-
update_time=self.update_time)
|
195
|
-
|
196
|
-
|
197
|
-
def get_data_source(backup_vault_id: Optional[str] = None,
|
198
|
-
data_source_id: Optional[str] = None,
|
199
|
-
location: Optional[str] = None,
|
200
|
-
project: Optional[str] = None,
|
201
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataSourceResult:
|
202
|
-
"""
|
203
|
-
Use this data source to access information about an existing resource.
|
204
|
-
"""
|
205
|
-
__args__ = dict()
|
206
|
-
__args__['backupVaultId'] = backup_vault_id
|
207
|
-
__args__['dataSourceId'] = data_source_id
|
208
|
-
__args__['location'] = location
|
209
|
-
__args__['project'] = project
|
210
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
211
|
-
__ret__ = pulumi.runtime.invoke('gcp:backupdisasterrecovery/getDataSource:getDataSource', __args__, opts=opts, typ=GetDataSourceResult).value
|
212
|
-
|
213
|
-
return AwaitableGetDataSourceResult(
|
214
|
-
backup_config_infos=pulumi.get(__ret__, 'backup_config_infos'),
|
215
|
-
backup_count=pulumi.get(__ret__, 'backup_count'),
|
216
|
-
backup_vault_id=pulumi.get(__ret__, 'backup_vault_id'),
|
217
|
-
config_state=pulumi.get(__ret__, 'config_state'),
|
218
|
-
create_time=pulumi.get(__ret__, 'create_time'),
|
219
|
-
data_source_backup_appliance_applications=pulumi.get(__ret__, 'data_source_backup_appliance_applications'),
|
220
|
-
data_source_gcp_resources=pulumi.get(__ret__, 'data_source_gcp_resources'),
|
221
|
-
data_source_id=pulumi.get(__ret__, 'data_source_id'),
|
222
|
-
etag=pulumi.get(__ret__, 'etag'),
|
223
|
-
id=pulumi.get(__ret__, 'id'),
|
224
|
-
labels=pulumi.get(__ret__, 'labels'),
|
225
|
-
location=pulumi.get(__ret__, 'location'),
|
226
|
-
name=pulumi.get(__ret__, 'name'),
|
227
|
-
project=pulumi.get(__ret__, 'project'),
|
228
|
-
state=pulumi.get(__ret__, 'state'),
|
229
|
-
total_stored_bytes=pulumi.get(__ret__, 'total_stored_bytes'),
|
230
|
-
update_time=pulumi.get(__ret__, 'update_time'))
|
231
|
-
def get_data_source_output(backup_vault_id: Optional[pulumi.Input[str]] = None,
|
232
|
-
data_source_id: Optional[pulumi.Input[str]] = None,
|
233
|
-
location: Optional[pulumi.Input[str]] = None,
|
234
|
-
project: Optional[pulumi.Input[str]] = None,
|
235
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDataSourceResult]:
|
236
|
-
"""
|
237
|
-
Use this data source to access information about an existing resource.
|
238
|
-
"""
|
239
|
-
__args__ = dict()
|
240
|
-
__args__['backupVaultId'] = backup_vault_id
|
241
|
-
__args__['dataSourceId'] = data_source_id
|
242
|
-
__args__['location'] = location
|
243
|
-
__args__['project'] = project
|
244
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
245
|
-
__ret__ = pulumi.runtime.invoke_output('gcp:backupdisasterrecovery/getDataSource:getDataSource', __args__, opts=opts, typ=GetDataSourceResult)
|
246
|
-
return __ret__.apply(lambda __response__: GetDataSourceResult(
|
247
|
-
backup_config_infos=pulumi.get(__response__, 'backup_config_infos'),
|
248
|
-
backup_count=pulumi.get(__response__, 'backup_count'),
|
249
|
-
backup_vault_id=pulumi.get(__response__, 'backup_vault_id'),
|
250
|
-
config_state=pulumi.get(__response__, 'config_state'),
|
251
|
-
create_time=pulumi.get(__response__, 'create_time'),
|
252
|
-
data_source_backup_appliance_applications=pulumi.get(__response__, 'data_source_backup_appliance_applications'),
|
253
|
-
data_source_gcp_resources=pulumi.get(__response__, 'data_source_gcp_resources'),
|
254
|
-
data_source_id=pulumi.get(__response__, 'data_source_id'),
|
255
|
-
etag=pulumi.get(__response__, 'etag'),
|
256
|
-
id=pulumi.get(__response__, 'id'),
|
257
|
-
labels=pulumi.get(__response__, 'labels'),
|
258
|
-
location=pulumi.get(__response__, 'location'),
|
259
|
-
name=pulumi.get(__response__, 'name'),
|
260
|
-
project=pulumi.get(__response__, 'project'),
|
261
|
-
state=pulumi.get(__response__, 'state'),
|
262
|
-
total_stored_bytes=pulumi.get(__response__, 'total_stored_bytes'),
|
263
|
-
update_time=pulumi.get(__response__, 'update_time')))
|