pulumi-digitalocean 4.44.0a1746675575__py3-none-any.whl → 4.45.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.
Potentially problematic release.
This version of pulumi-digitalocean might be problematic. Click here for more details.
- pulumi_digitalocean/__init__.py +9 -0
- pulumi_digitalocean/_enums.py +9 -1
- pulumi_digitalocean/_inputs.py +45 -12
- pulumi_digitalocean/app.py +1 -3
- pulumi_digitalocean/cdn.py +1 -3
- pulumi_digitalocean/certificate.py +1 -3
- pulumi_digitalocean/container_registry.py +1 -3
- pulumi_digitalocean/container_registry_docker_credentials.py +1 -3
- pulumi_digitalocean/custom_image.py +1 -3
- pulumi_digitalocean/database_cluster.py +1 -3
- pulumi_digitalocean/database_connection_pool.py +1 -3
- pulumi_digitalocean/database_db.py +1 -3
- pulumi_digitalocean/database_firewall.py +1 -3
- pulumi_digitalocean/database_kafka_config.py +1 -3
- pulumi_digitalocean/database_kafka_topic.py +1 -3
- pulumi_digitalocean/database_mongodb_config.py +1 -3
- pulumi_digitalocean/database_mysql_config.py +1 -3
- pulumi_digitalocean/database_opensearch_config.py +1 -3
- pulumi_digitalocean/database_postgresql_config.py +1 -3
- pulumi_digitalocean/database_redis_config.py +1 -3
- pulumi_digitalocean/database_replica.py +1 -3
- pulumi_digitalocean/database_user.py +1 -3
- pulumi_digitalocean/dns_record.py +1 -3
- pulumi_digitalocean/domain.py +1 -3
- pulumi_digitalocean/droplet.py +1 -3
- pulumi_digitalocean/droplet_autoscale.py +1 -3
- pulumi_digitalocean/droplet_snapshot.py +1 -3
- pulumi_digitalocean/firewall.py +1 -3
- pulumi_digitalocean/floating_ip.py +1 -3
- pulumi_digitalocean/floating_ip_assignment.py +1 -3
- pulumi_digitalocean/kubernetes_cluster.py +14 -3
- pulumi_digitalocean/kubernetes_node_pool.py +1 -3
- pulumi_digitalocean/load_balancer.py +1 -3
- pulumi_digitalocean/monitor_alert.py +1 -3
- pulumi_digitalocean/outputs.py +41 -19
- pulumi_digitalocean/partner_attachment.py +1 -3
- pulumi_digitalocean/project.py +1 -3
- pulumi_digitalocean/project_resources.py +1 -3
- pulumi_digitalocean/provider.py +21 -3
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- pulumi_digitalocean/reserved_ip.py +1 -3
- pulumi_digitalocean/reserved_ip_assignment.py +1 -3
- pulumi_digitalocean/reserved_ipv6.py +1 -3
- pulumi_digitalocean/reserved_ipv6_assignment.py +1 -3
- pulumi_digitalocean/spaces_bucket.py +1 -3
- pulumi_digitalocean/spaces_bucket_cors_configuration.py +1 -3
- pulumi_digitalocean/spaces_bucket_logging.py +347 -0
- pulumi_digitalocean/spaces_bucket_object.py +1 -3
- pulumi_digitalocean/spaces_bucket_policy.py +1 -3
- pulumi_digitalocean/spaces_key.py +1 -3
- pulumi_digitalocean/ssh_key.py +1 -3
- pulumi_digitalocean/tag.py +1 -3
- pulumi_digitalocean/uptime_alert.py +1 -3
- pulumi_digitalocean/uptime_check.py +1 -3
- pulumi_digitalocean/volume.py +1 -3
- pulumi_digitalocean/volume_attachment.py +1 -3
- pulumi_digitalocean/volume_snapshot.py +1 -3
- pulumi_digitalocean/vpc.py +1 -3
- pulumi_digitalocean/vpc_peering.py +1 -3
- {pulumi_digitalocean-4.44.0a1746675575.dist-info → pulumi_digitalocean-4.45.0.dist-info}/METADATA +3 -3
- pulumi_digitalocean-4.45.0.dist-info/RECORD +113 -0
- {pulumi_digitalocean-4.44.0a1746675575.dist-info → pulumi_digitalocean-4.45.0.dist-info}/WHEEL +1 -1
- pulumi_digitalocean-4.44.0a1746675575.dist-info/RECORD +0 -112
- {pulumi_digitalocean-4.44.0a1746675575.dist-info → pulumi_digitalocean-4.45.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,347 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = ['SpacesBucketLoggingArgs', 'SpacesBucketLogging']
|
|
19
|
+
|
|
20
|
+
@pulumi.input_type
|
|
21
|
+
class SpacesBucketLoggingArgs:
|
|
22
|
+
def __init__(__self__, *,
|
|
23
|
+
bucket: pulumi.Input[builtins.str],
|
|
24
|
+
region: pulumi.Input[builtins.str],
|
|
25
|
+
target_bucket: pulumi.Input[builtins.str],
|
|
26
|
+
target_prefix: pulumi.Input[builtins.str]):
|
|
27
|
+
"""
|
|
28
|
+
The set of arguments for constructing a SpacesBucketLogging resource.
|
|
29
|
+
:param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
|
|
30
|
+
:param pulumi.Input[builtins.str] region: The region where the bucket resides.
|
|
31
|
+
:param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
|
|
32
|
+
:param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
|
|
33
|
+
"""
|
|
34
|
+
pulumi.set(__self__, "bucket", bucket)
|
|
35
|
+
pulumi.set(__self__, "region", region)
|
|
36
|
+
pulumi.set(__self__, "target_bucket", target_bucket)
|
|
37
|
+
pulumi.set(__self__, "target_prefix", target_prefix)
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
@pulumi.getter
|
|
41
|
+
def bucket(self) -> pulumi.Input[builtins.str]:
|
|
42
|
+
"""
|
|
43
|
+
The name of the bucket which will be logged.
|
|
44
|
+
"""
|
|
45
|
+
return pulumi.get(self, "bucket")
|
|
46
|
+
|
|
47
|
+
@bucket.setter
|
|
48
|
+
def bucket(self, value: pulumi.Input[builtins.str]):
|
|
49
|
+
pulumi.set(self, "bucket", value)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def region(self) -> pulumi.Input[builtins.str]:
|
|
54
|
+
"""
|
|
55
|
+
The region where the bucket resides.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "region")
|
|
58
|
+
|
|
59
|
+
@region.setter
|
|
60
|
+
def region(self, value: pulumi.Input[builtins.str]):
|
|
61
|
+
pulumi.set(self, "region", value)
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter(name="targetBucket")
|
|
65
|
+
def target_bucket(self) -> pulumi.Input[builtins.str]:
|
|
66
|
+
"""
|
|
67
|
+
The name of the bucket which will store the logs.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "target_bucket")
|
|
70
|
+
|
|
71
|
+
@target_bucket.setter
|
|
72
|
+
def target_bucket(self, value: pulumi.Input[builtins.str]):
|
|
73
|
+
pulumi.set(self, "target_bucket", value)
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="targetPrefix")
|
|
77
|
+
def target_prefix(self) -> pulumi.Input[builtins.str]:
|
|
78
|
+
"""
|
|
79
|
+
The prefix for the log files.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "target_prefix")
|
|
82
|
+
|
|
83
|
+
@target_prefix.setter
|
|
84
|
+
def target_prefix(self, value: pulumi.Input[builtins.str]):
|
|
85
|
+
pulumi.set(self, "target_prefix", value)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
@pulumi.input_type
|
|
89
|
+
class _SpacesBucketLoggingState:
|
|
90
|
+
def __init__(__self__, *,
|
|
91
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
92
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
|
93
|
+
target_bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
94
|
+
target_prefix: Optional[pulumi.Input[builtins.str]] = None):
|
|
95
|
+
"""
|
|
96
|
+
Input properties used for looking up and filtering SpacesBucketLogging resources.
|
|
97
|
+
:param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
|
|
98
|
+
:param pulumi.Input[builtins.str] region: The region where the bucket resides.
|
|
99
|
+
:param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
|
|
100
|
+
:param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
|
|
101
|
+
"""
|
|
102
|
+
if bucket is not None:
|
|
103
|
+
pulumi.set(__self__, "bucket", bucket)
|
|
104
|
+
if region is not None:
|
|
105
|
+
pulumi.set(__self__, "region", region)
|
|
106
|
+
if target_bucket is not None:
|
|
107
|
+
pulumi.set(__self__, "target_bucket", target_bucket)
|
|
108
|
+
if target_prefix is not None:
|
|
109
|
+
pulumi.set(__self__, "target_prefix", target_prefix)
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
@pulumi.getter
|
|
113
|
+
def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
114
|
+
"""
|
|
115
|
+
The name of the bucket which will be logged.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "bucket")
|
|
118
|
+
|
|
119
|
+
@bucket.setter
|
|
120
|
+
def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
121
|
+
pulumi.set(self, "bucket", value)
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter
|
|
125
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
126
|
+
"""
|
|
127
|
+
The region where the bucket resides.
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "region")
|
|
130
|
+
|
|
131
|
+
@region.setter
|
|
132
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
133
|
+
pulumi.set(self, "region", value)
|
|
134
|
+
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter(name="targetBucket")
|
|
137
|
+
def target_bucket(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
138
|
+
"""
|
|
139
|
+
The name of the bucket which will store the logs.
|
|
140
|
+
"""
|
|
141
|
+
return pulumi.get(self, "target_bucket")
|
|
142
|
+
|
|
143
|
+
@target_bucket.setter
|
|
144
|
+
def target_bucket(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
145
|
+
pulumi.set(self, "target_bucket", value)
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
@pulumi.getter(name="targetPrefix")
|
|
149
|
+
def target_prefix(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
150
|
+
"""
|
|
151
|
+
The prefix for the log files.
|
|
152
|
+
"""
|
|
153
|
+
return pulumi.get(self, "target_prefix")
|
|
154
|
+
|
|
155
|
+
@target_prefix.setter
|
|
156
|
+
def target_prefix(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
157
|
+
pulumi.set(self, "target_prefix", value)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
@pulumi.type_token("digitalocean:index/spacesBucketLogging:SpacesBucketLogging")
|
|
161
|
+
class SpacesBucketLogging(pulumi.CustomResource):
|
|
162
|
+
@overload
|
|
163
|
+
def __init__(__self__,
|
|
164
|
+
resource_name: str,
|
|
165
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
166
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
167
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
|
168
|
+
target_bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
169
|
+
target_prefix: Optional[pulumi.Input[builtins.str]] = None,
|
|
170
|
+
__props__=None):
|
|
171
|
+
"""
|
|
172
|
+
## Example Usage
|
|
173
|
+
|
|
174
|
+
```python
|
|
175
|
+
import pulumi
|
|
176
|
+
import pulumi_digitalocean as digitalocean
|
|
177
|
+
|
|
178
|
+
assets = digitalocean.SpacesBucket("assets",
|
|
179
|
+
name="assets",
|
|
180
|
+
region=digitalocean.Region.NYC3)
|
|
181
|
+
logs = digitalocean.SpacesBucket("logs",
|
|
182
|
+
name="logs",
|
|
183
|
+
region=digitalocean.Region.NYC3)
|
|
184
|
+
example = digitalocean.SpacesBucketLogging("example",
|
|
185
|
+
region="%s",
|
|
186
|
+
bucket=assets.id,
|
|
187
|
+
target_bucket=logs.id,
|
|
188
|
+
target_prefix="access-logs/")
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
## Import
|
|
192
|
+
|
|
193
|
+
Spaces bucket logging can be imported using the `region` and `bucket` attributes (delimited by a comma):
|
|
194
|
+
|
|
195
|
+
```sh
|
|
196
|
+
$ pulumi import digitalocean:index/spacesBucketLogging:SpacesBucketLogging example `region`,`bucket`
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
:param str resource_name: The name of the resource.
|
|
200
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
201
|
+
:param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
|
|
202
|
+
:param pulumi.Input[builtins.str] region: The region where the bucket resides.
|
|
203
|
+
:param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
|
|
204
|
+
:param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
|
|
205
|
+
"""
|
|
206
|
+
...
|
|
207
|
+
@overload
|
|
208
|
+
def __init__(__self__,
|
|
209
|
+
resource_name: str,
|
|
210
|
+
args: SpacesBucketLoggingArgs,
|
|
211
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
212
|
+
"""
|
|
213
|
+
## Example Usage
|
|
214
|
+
|
|
215
|
+
```python
|
|
216
|
+
import pulumi
|
|
217
|
+
import pulumi_digitalocean as digitalocean
|
|
218
|
+
|
|
219
|
+
assets = digitalocean.SpacesBucket("assets",
|
|
220
|
+
name="assets",
|
|
221
|
+
region=digitalocean.Region.NYC3)
|
|
222
|
+
logs = digitalocean.SpacesBucket("logs",
|
|
223
|
+
name="logs",
|
|
224
|
+
region=digitalocean.Region.NYC3)
|
|
225
|
+
example = digitalocean.SpacesBucketLogging("example",
|
|
226
|
+
region="%s",
|
|
227
|
+
bucket=assets.id,
|
|
228
|
+
target_bucket=logs.id,
|
|
229
|
+
target_prefix="access-logs/")
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
## Import
|
|
233
|
+
|
|
234
|
+
Spaces bucket logging can be imported using the `region` and `bucket` attributes (delimited by a comma):
|
|
235
|
+
|
|
236
|
+
```sh
|
|
237
|
+
$ pulumi import digitalocean:index/spacesBucketLogging:SpacesBucketLogging example `region`,`bucket`
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
:param str resource_name: The name of the resource.
|
|
241
|
+
:param SpacesBucketLoggingArgs args: The arguments to use to populate this resource's properties.
|
|
242
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
243
|
+
"""
|
|
244
|
+
...
|
|
245
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
246
|
+
resource_args, opts = _utilities.get_resource_args_opts(SpacesBucketLoggingArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
247
|
+
if resource_args is not None:
|
|
248
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
249
|
+
else:
|
|
250
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
251
|
+
|
|
252
|
+
def _internal_init(__self__,
|
|
253
|
+
resource_name: str,
|
|
254
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
255
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
256
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
|
257
|
+
target_bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
258
|
+
target_prefix: Optional[pulumi.Input[builtins.str]] = None,
|
|
259
|
+
__props__=None):
|
|
260
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
261
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
262
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
263
|
+
if opts.id is None:
|
|
264
|
+
if __props__ is not None:
|
|
265
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
266
|
+
__props__ = SpacesBucketLoggingArgs.__new__(SpacesBucketLoggingArgs)
|
|
267
|
+
|
|
268
|
+
if bucket is None and not opts.urn:
|
|
269
|
+
raise TypeError("Missing required property 'bucket'")
|
|
270
|
+
__props__.__dict__["bucket"] = bucket
|
|
271
|
+
if region is None and not opts.urn:
|
|
272
|
+
raise TypeError("Missing required property 'region'")
|
|
273
|
+
__props__.__dict__["region"] = region
|
|
274
|
+
if target_bucket is None and not opts.urn:
|
|
275
|
+
raise TypeError("Missing required property 'target_bucket'")
|
|
276
|
+
__props__.__dict__["target_bucket"] = target_bucket
|
|
277
|
+
if target_prefix is None and not opts.urn:
|
|
278
|
+
raise TypeError("Missing required property 'target_prefix'")
|
|
279
|
+
__props__.__dict__["target_prefix"] = target_prefix
|
|
280
|
+
super(SpacesBucketLogging, __self__).__init__(
|
|
281
|
+
'digitalocean:index/spacesBucketLogging:SpacesBucketLogging',
|
|
282
|
+
resource_name,
|
|
283
|
+
__props__,
|
|
284
|
+
opts)
|
|
285
|
+
|
|
286
|
+
@staticmethod
|
|
287
|
+
def get(resource_name: str,
|
|
288
|
+
id: pulumi.Input[str],
|
|
289
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
290
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
291
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
|
292
|
+
target_bucket: Optional[pulumi.Input[builtins.str]] = None,
|
|
293
|
+
target_prefix: Optional[pulumi.Input[builtins.str]] = None) -> 'SpacesBucketLogging':
|
|
294
|
+
"""
|
|
295
|
+
Get an existing SpacesBucketLogging resource's state with the given name, id, and optional extra
|
|
296
|
+
properties used to qualify the lookup.
|
|
297
|
+
|
|
298
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
299
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
300
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
301
|
+
:param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
|
|
302
|
+
:param pulumi.Input[builtins.str] region: The region where the bucket resides.
|
|
303
|
+
:param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
|
|
304
|
+
:param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
|
|
305
|
+
"""
|
|
306
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
307
|
+
|
|
308
|
+
__props__ = _SpacesBucketLoggingState.__new__(_SpacesBucketLoggingState)
|
|
309
|
+
|
|
310
|
+
__props__.__dict__["bucket"] = bucket
|
|
311
|
+
__props__.__dict__["region"] = region
|
|
312
|
+
__props__.__dict__["target_bucket"] = target_bucket
|
|
313
|
+
__props__.__dict__["target_prefix"] = target_prefix
|
|
314
|
+
return SpacesBucketLogging(resource_name, opts=opts, __props__=__props__)
|
|
315
|
+
|
|
316
|
+
@property
|
|
317
|
+
@pulumi.getter
|
|
318
|
+
def bucket(self) -> pulumi.Output[builtins.str]:
|
|
319
|
+
"""
|
|
320
|
+
The name of the bucket which will be logged.
|
|
321
|
+
"""
|
|
322
|
+
return pulumi.get(self, "bucket")
|
|
323
|
+
|
|
324
|
+
@property
|
|
325
|
+
@pulumi.getter
|
|
326
|
+
def region(self) -> pulumi.Output[builtins.str]:
|
|
327
|
+
"""
|
|
328
|
+
The region where the bucket resides.
|
|
329
|
+
"""
|
|
330
|
+
return pulumi.get(self, "region")
|
|
331
|
+
|
|
332
|
+
@property
|
|
333
|
+
@pulumi.getter(name="targetBucket")
|
|
334
|
+
def target_bucket(self) -> pulumi.Output[builtins.str]:
|
|
335
|
+
"""
|
|
336
|
+
The name of the bucket which will store the logs.
|
|
337
|
+
"""
|
|
338
|
+
return pulumi.get(self, "target_bucket")
|
|
339
|
+
|
|
340
|
+
@property
|
|
341
|
+
@pulumi.getter(name="targetPrefix")
|
|
342
|
+
def target_prefix(self) -> pulumi.Output[builtins.str]:
|
|
343
|
+
"""
|
|
344
|
+
The prefix for the log files.
|
|
345
|
+
"""
|
|
346
|
+
return pulumi.get(self, "target_prefix")
|
|
347
|
+
|
|
@@ -578,10 +578,8 @@ class _SpacesBucketObjectState:
|
|
|
578
578
|
pulumi.set(self, "website_redirect", value)
|
|
579
579
|
|
|
580
580
|
|
|
581
|
+
@pulumi.type_token("digitalocean:index/spacesBucketObject:SpacesBucketObject")
|
|
581
582
|
class SpacesBucketObject(pulumi.CustomResource):
|
|
582
|
-
|
|
583
|
-
pulumi_type = "digitalocean:index/spacesBucketObject:SpacesBucketObject"
|
|
584
|
-
|
|
585
583
|
@overload
|
|
586
584
|
def __init__(__self__,
|
|
587
585
|
resource_name: str,
|
|
@@ -126,10 +126,8 @@ class _SpacesBucketPolicyState:
|
|
|
126
126
|
pulumi.set(self, "region", value)
|
|
127
127
|
|
|
128
128
|
|
|
129
|
+
@pulumi.type_token("digitalocean:index/spacesBucketPolicy:SpacesBucketPolicy")
|
|
129
130
|
class SpacesBucketPolicy(pulumi.CustomResource):
|
|
130
|
-
|
|
131
|
-
pulumi_type = "digitalocean:index/spacesBucketPolicy:SpacesBucketPolicy"
|
|
132
|
-
|
|
133
131
|
@overload
|
|
134
132
|
def __init__(__self__,
|
|
135
133
|
resource_name: str,
|
|
@@ -147,10 +147,8 @@ class _SpacesKeyState:
|
|
|
147
147
|
pulumi.set(self, "secret_key", value)
|
|
148
148
|
|
|
149
149
|
|
|
150
|
+
@pulumi.type_token("digitalocean:index/spacesKey:SpacesKey")
|
|
150
151
|
class SpacesKey(pulumi.CustomResource):
|
|
151
|
-
|
|
152
|
-
pulumi_type = "digitalocean:index/spacesKey:SpacesKey"
|
|
153
|
-
|
|
154
152
|
@overload
|
|
155
153
|
def __init__(__self__,
|
|
156
154
|
resource_name: str,
|
pulumi_digitalocean/ssh_key.py
CHANGED
|
@@ -116,10 +116,8 @@ class _SshKeyState:
|
|
|
116
116
|
pulumi.set(self, "public_key", value)
|
|
117
117
|
|
|
118
118
|
|
|
119
|
+
@pulumi.type_token("digitalocean:index/sshKey:SshKey")
|
|
119
120
|
class SshKey(pulumi.CustomResource):
|
|
120
|
-
|
|
121
|
-
pulumi_type = "digitalocean:index/sshKey:SshKey"
|
|
122
|
-
|
|
123
121
|
@overload
|
|
124
122
|
def __init__(__self__,
|
|
125
123
|
resource_name: str,
|
pulumi_digitalocean/tag.py
CHANGED
|
@@ -161,10 +161,8 @@ class _TagState:
|
|
|
161
161
|
pulumi.set(self, "volumes_count", value)
|
|
162
162
|
|
|
163
163
|
|
|
164
|
+
@pulumi.type_token("digitalocean:index/tag:Tag")
|
|
164
165
|
class Tag(pulumi.CustomResource):
|
|
165
|
-
|
|
166
|
-
pulumi_type = "digitalocean:index/tag:Tag"
|
|
167
|
-
|
|
168
166
|
@overload
|
|
169
167
|
def __init__(__self__,
|
|
170
168
|
resource_name: str,
|
|
@@ -256,10 +256,8 @@ class _UptimeAlertState:
|
|
|
256
256
|
pulumi.set(self, "type", value)
|
|
257
257
|
|
|
258
258
|
|
|
259
|
+
@pulumi.type_token("digitalocean:index/uptimeAlert:UptimeAlert")
|
|
259
260
|
class UptimeAlert(pulumi.CustomResource):
|
|
260
|
-
|
|
261
|
-
pulumi_type = "digitalocean:index/uptimeAlert:UptimeAlert"
|
|
262
|
-
|
|
263
261
|
@overload
|
|
264
262
|
def __init__(__self__,
|
|
265
263
|
resource_name: str,
|
|
@@ -192,10 +192,8 @@ class _UptimeCheckState:
|
|
|
192
192
|
pulumi.set(self, "type", value)
|
|
193
193
|
|
|
194
194
|
|
|
195
|
+
@pulumi.type_token("digitalocean:index/uptimeCheck:UptimeCheck")
|
|
195
196
|
class UptimeCheck(pulumi.CustomResource):
|
|
196
|
-
|
|
197
|
-
pulumi_type = "digitalocean:index/uptimeCheck:UptimeCheck"
|
|
198
|
-
|
|
199
197
|
@overload
|
|
200
198
|
def __init__(__self__,
|
|
201
199
|
resource_name: str,
|
pulumi_digitalocean/volume.py
CHANGED
|
@@ -376,10 +376,8 @@ class _VolumeState:
|
|
|
376
376
|
pulumi.set(self, "volume_urn", value)
|
|
377
377
|
|
|
378
378
|
|
|
379
|
+
@pulumi.type_token("digitalocean:index/volume:Volume")
|
|
379
380
|
class Volume(pulumi.CustomResource):
|
|
380
|
-
|
|
381
|
-
pulumi_type = "digitalocean:index/volume:Volume"
|
|
382
|
-
|
|
383
381
|
@overload
|
|
384
382
|
def __init__(__self__,
|
|
385
383
|
resource_name: str,
|
|
@@ -95,10 +95,8 @@ class _VolumeAttachmentState:
|
|
|
95
95
|
pulumi.set(self, "volume_id", value)
|
|
96
96
|
|
|
97
97
|
|
|
98
|
+
@pulumi.type_token("digitalocean:index/volumeAttachment:VolumeAttachment")
|
|
98
99
|
class VolumeAttachment(pulumi.CustomResource):
|
|
99
|
-
|
|
100
|
-
pulumi_type = "digitalocean:index/volumeAttachment:VolumeAttachment"
|
|
101
|
-
|
|
102
100
|
@overload
|
|
103
101
|
def __init__(__self__,
|
|
104
102
|
resource_name: str,
|
|
@@ -192,10 +192,8 @@ class _VolumeSnapshotState:
|
|
|
192
192
|
pulumi.set(self, "volume_id", value)
|
|
193
193
|
|
|
194
194
|
|
|
195
|
+
@pulumi.type_token("digitalocean:index/volumeSnapshot:VolumeSnapshot")
|
|
195
196
|
class VolumeSnapshot(pulumi.CustomResource):
|
|
196
|
-
|
|
197
|
-
pulumi_type = "digitalocean:index/volumeSnapshot:VolumeSnapshot"
|
|
198
|
-
|
|
199
197
|
@overload
|
|
200
198
|
def __init__(__self__,
|
|
201
199
|
resource_name: str,
|
pulumi_digitalocean/vpc.py
CHANGED
|
@@ -208,10 +208,8 @@ class _VpcState:
|
|
|
208
208
|
pulumi.set(self, "vpc_urn", value)
|
|
209
209
|
|
|
210
210
|
|
|
211
|
+
@pulumi.type_token("digitalocean:index/vpc:Vpc")
|
|
211
212
|
class Vpc(pulumi.CustomResource):
|
|
212
|
-
|
|
213
|
-
pulumi_type = "digitalocean:index/vpc:Vpc"
|
|
214
|
-
|
|
215
213
|
@overload
|
|
216
214
|
def __init__(__self__,
|
|
217
215
|
resource_name: str,
|
|
@@ -128,10 +128,8 @@ class _VpcPeeringState:
|
|
|
128
128
|
pulumi.set(self, "vpc_ids", value)
|
|
129
129
|
|
|
130
130
|
|
|
131
|
+
@pulumi.type_token("digitalocean:index/vpcPeering:VpcPeering")
|
|
131
132
|
class VpcPeering(pulumi.CustomResource):
|
|
132
|
-
|
|
133
|
-
pulumi_type = "digitalocean:index/vpcPeering:VpcPeering"
|
|
134
|
-
|
|
135
133
|
@overload
|
|
136
134
|
def __init__(__self__,
|
|
137
135
|
resource_name: str,
|
{pulumi_digitalocean-4.44.0a1746675575.dist-info → pulumi_digitalocean-4.45.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_digitalocean
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.45.0
|
|
4
4
|
Summary: A Pulumi package for creating and managing DigitalOcean cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -9,9 +9,9 @@ Keywords: pulumi,digitalocean
|
|
|
9
9
|
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-digitalocean/actions)
|
|
17
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
pulumi_digitalocean/__init__.py,sha256=3mwF9rQycuReF9FShT4SrR9cKNFggkRINWiX7c5e-0Q,13844
|
|
2
|
+
pulumi_digitalocean/_enums.py,sha256=kHO7SJ-JU5XRYeq6UrHK-hSeFJdWPAoJe55Zr2_y-dM,10217
|
|
3
|
+
pulumi_digitalocean/_inputs.py,sha256=866JFA7ir-hAcdF-7M1Rolt0frrCC3UsNkvbYoF7-50,664893
|
|
4
|
+
pulumi_digitalocean/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
5
|
+
pulumi_digitalocean/app.py,sha256=VxWYfmfzxceGjaXwjaJFrzy8FOgbBCwzUo2Asw9J7go,25076
|
|
6
|
+
pulumi_digitalocean/cdn.py,sha256=YXI56eR26vQUu7aL2hGLqr68tc0TKy8czQft1ufOTd8,22610
|
|
7
|
+
pulumi_digitalocean/certificate.py,sha256=CjczTVVzqIfbeR7qE_oXALGrDam2rt0Fp_uOY03eY9Q,29456
|
|
8
|
+
pulumi_digitalocean/container_registry.py,sha256=Q_GCVvAev5af6BEq-SdH1jaVSgq4Cfecp87RphsQVKU,17482
|
|
9
|
+
pulumi_digitalocean/container_registry_docker_credentials.py,sha256=EwwLhjnu3M_l9f71CwoAPS8fBfMahD_u3YXubAOPwR4,18092
|
|
10
|
+
pulumi_digitalocean/custom_image.py,sha256=FSMH6-KPyKl1YnayizUIfDE9qWRdLL3_q3170Es1m0M,28757
|
|
11
|
+
pulumi_digitalocean/database_cluster.py,sha256=k-ysVNDbeOW30jaFmCy0nzhq7E37iZr5kMS_1GI5Ldk,67131
|
|
12
|
+
pulumi_digitalocean/database_connection_pool.py,sha256=WemSDYBjJo_W2Qb0er1lca07Nivczl40r5xn2BR_u_I,26592
|
|
13
|
+
pulumi_digitalocean/database_db.py,sha256=FyIf-k-u0q7Ia-OoW6HANnk6YLRogMUtGky7qJ-vsEs,10005
|
|
14
|
+
pulumi_digitalocean/database_firewall.py,sha256=eoXku6qdWyCsgfUMJ-ZoJJcZKDH-bFVT8vFrprz8Rxk,15781
|
|
15
|
+
pulumi_digitalocean/database_kafka_config.py,sha256=nRTY64vopBkvitmPeUeBZkwx_KN-LlSpx-Ub0wV619c,62480
|
|
16
|
+
pulumi_digitalocean/database_kafka_topic.py,sha256=fEFD5rvWfHsGhyaoonBQvng7NsGf6D5VU27K365iYCc,22739
|
|
17
|
+
pulumi_digitalocean/database_mongodb_config.py,sha256=21qeNMBDrJ_fGqUCtgseGAvSCuncsy8d8oeK7GwwVnU,33707
|
|
18
|
+
pulumi_digitalocean/database_mysql_config.py,sha256=WNS8XAXCfQN8kDqV6P0cpBkJ4q7dxP-EWfFQzuMcKos,85857
|
|
19
|
+
pulumi_digitalocean/database_opensearch_config.py,sha256=TUlnw1fI_Iqccavb7bHZM4UzvFkI25hRJZN-iLyRxGA,138090
|
|
20
|
+
pulumi_digitalocean/database_postgresql_config.py,sha256=zat_aWx9S6sI1r2kqreobpJ52i6IuyFLNw-nOVs9P8Q,167736
|
|
21
|
+
pulumi_digitalocean/database_redis_config.py,sha256=8Zm1C6PP2En5aDjwKFw5Xs7s83AcMJNmvdv9xXzCDJU,41367
|
|
22
|
+
pulumi_digitalocean/database_replica.py,sha256=lbNBMrOyXGR09dV_qwRr0tzglT3vLxP-6f4Nwt9cTLY,33202
|
|
23
|
+
pulumi_digitalocean/database_user.py,sha256=z178okNoQUj_e7A-EUY7e-vZHi2B86GppqUq_g3UCOw,25692
|
|
24
|
+
pulumi_digitalocean/dns_record.py,sha256=lkU65BGQxvoarHv59jIhIMnlR8KMcBbjFN5C_kFDKrQ,28662
|
|
25
|
+
pulumi_digitalocean/domain.py,sha256=_-vXhTdY0lExJVwpYD2Ir3ax3fyjr1lIZxX1PiRbCbs,11157
|
|
26
|
+
pulumi_digitalocean/droplet.py,sha256=JEfhLVkouWJk14kNYl4rwVHbPfj9WhniPEBN3u25YS0,76237
|
|
27
|
+
pulumi_digitalocean/droplet_autoscale.py,sha256=TVjRMS5VjKq2yYdyQLC-idzVEAbU48OBbJhhH1dsUmA,21663
|
|
28
|
+
pulumi_digitalocean/droplet_snapshot.py,sha256=BM2eoYPAOn1OoKnDUpJ9izqpmyrUDkgI7s5gaEY8QzY,15012
|
|
29
|
+
pulumi_digitalocean/firewall.py,sha256=uX0mUivxT1W68M95ik4F5sjQeA4WagVt6o0UTqk2Edw,28372
|
|
30
|
+
pulumi_digitalocean/floating_ip.py,sha256=h7Q1jaTmhLUQ0_mPZz7zX0IICA14bYWOznez2vgd-1s,13671
|
|
31
|
+
pulumi_digitalocean/floating_ip_assignment.py,sha256=776FCvCS1mjNDyx8OSDrgovng2IuLcRYJQUV687xVMc,11050
|
|
32
|
+
pulumi_digitalocean/get_account.py,sha256=eWNvJWQyp09MAg8C_WohdVjcndV1F43eAV07FsgBd9k,6931
|
|
33
|
+
pulumi_digitalocean/get_app.py,sha256=9wUMm3MBwmvpLlcrjgS6x8tu4sZCQvxJDwSAOJpDn00,10194
|
|
34
|
+
pulumi_digitalocean/get_certificate.py,sha256=i-shN_vysw9VelDorbYa0ZU1Zjk6Vmar1i-0mI1s3gA,7402
|
|
35
|
+
pulumi_digitalocean/get_container_registry.py,sha256=aL3-79goOo7V2NgWtgbH6sE6rQWuY6MwT3nkCJUrMDg,8242
|
|
36
|
+
pulumi_digitalocean/get_database_ca.py,sha256=YxAPKQh2NuOhEEdMLP3wfqN2LSMsaHMamN97rHPri18,4404
|
|
37
|
+
pulumi_digitalocean/get_database_cluster.py,sha256=Ktd-jBpCPQV4xyJ_P4Xj8ZBCGlY3Mg6Ak6UyKIxWbHc,17822
|
|
38
|
+
pulumi_digitalocean/get_database_connection_pool.py,sha256=9eI9vX6VpTfS_jYUv5Icg0R_XzMQ0XJAhClWGvfiPSQ,10323
|
|
39
|
+
pulumi_digitalocean/get_database_replica.py,sha256=ak2oQqnSG-wLnyUJk8QUDHfRTfEU-y2S0Op6mkpwisQ,12160
|
|
40
|
+
pulumi_digitalocean/get_database_user.py,sha256=a84subXsDnADoeBuGY1AiJiZ1_3oOTlk10AVYt53cKI,8291
|
|
41
|
+
pulumi_digitalocean/get_domain.py,sha256=J8cUTjZcWHjU5prGLFlIIPEtdWSu9dqiYZu_77iy4kU,5771
|
|
42
|
+
pulumi_digitalocean/get_domains.py,sha256=8efRQANNKQONJUEOJIqUKd_PopfiY1NL8Yi6WH5s9s4,6890
|
|
43
|
+
pulumi_digitalocean/get_droplet.py,sha256=Kmf15nUIlbSCQnb_6h0sMCodfJyW7bfqRu-vD_CnLwY,19515
|
|
44
|
+
pulumi_digitalocean/get_droplet_autoscale.py,sha256=_qlqCfOKQEK40D-14PlJdwUlS5tU942npK8sTf44qjU,7755
|
|
45
|
+
pulumi_digitalocean/get_droplet_snapshot.py,sha256=mkrNa0ZMWXKWRmNcd4HT7Zk2iLPHVsUxrK7nPogNquA,11703
|
|
46
|
+
pulumi_digitalocean/get_droplets.py,sha256=U-iCiC4_E0ehLDsNgEXlrgr7ESgxOf0NLAe8cd4rpCw,8981
|
|
47
|
+
pulumi_digitalocean/get_firewall.py,sha256=0UTVRSAjqLHtGfk-dOhTwWVYoy9nEukOtr4sS8-fiWo,10479
|
|
48
|
+
pulumi_digitalocean/get_floating_ip.py,sha256=lX8WO2gPXLz1cNi4kbYvxg7sTnq3sxgNEzLJUAYabCc,6724
|
|
49
|
+
pulumi_digitalocean/get_image.py,sha256=WCpCXCvYz4SVxc-7Wx1O1M6Y5qTzQynN7Z0LiG-OwgA,14009
|
|
50
|
+
pulumi_digitalocean/get_images.py,sha256=jkWYcSiqnHK9LN1gVErEoYgYSEeGLw5nB0bycg01ZaM,7836
|
|
51
|
+
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=mvaDzQWDuGj2a8gXs2JncopW40rtRq5lrSYDKpJmI8Y,19617
|
|
52
|
+
pulumi_digitalocean/get_kubernetes_versions.py,sha256=UKgxMiEc-BnOoQ_H8amlUunRclIV4Kvtmbz1ebqeO6Y,7823
|
|
53
|
+
pulumi_digitalocean/get_load_balancer.py,sha256=Ix3tKK9l2rptFhcgyQUGmrs52kn_sQNdQiANDK0dCy4,19224
|
|
54
|
+
pulumi_digitalocean/get_partner_attachment.py,sha256=ZDawF2-9nsN3OyV4x0BMBgqsxwsYqqLmGbo7UIe-mKw,7272
|
|
55
|
+
pulumi_digitalocean/get_project.py,sha256=6oPHX1x1mOabfMX4lPETTbCVWH_iTvb91TUFkCuHqzY,9354
|
|
56
|
+
pulumi_digitalocean/get_projects.py,sha256=8cgH0wxEATLV-TroHAPzzaHFAVvesYc5cBPhRCvZlkw,7756
|
|
57
|
+
pulumi_digitalocean/get_record.py,sha256=Ualyt6ENvkhE3yZY9n9PPn_rW74QA6XzpLjYlbsLhO0,9124
|
|
58
|
+
pulumi_digitalocean/get_records.py,sha256=mR-tzaP3sgYegc8RNXscdZAO7ydz6qyg7AIpyUhFJgU,7070
|
|
59
|
+
pulumi_digitalocean/get_region.py,sha256=35Y5CIByzqFCJZV7L3KKCMuQeoURlAtKTIkwhlbTpJ0,5981
|
|
60
|
+
pulumi_digitalocean/get_regions.py,sha256=xOCZTH8VLkFWRTpXseeSmcBxajEADFB5SmJ0HphIptE,7517
|
|
61
|
+
pulumi_digitalocean/get_reserved_ip.py,sha256=vBgi0B2pVdkYCa2yPuHuyOuDDu_cJMdg8oZNlOrV0dU,5498
|
|
62
|
+
pulumi_digitalocean/get_reserved_ipv6.py,sha256=qCMDdUZIou1leg_79rN44hCMBcaK5NoF4P62nNGQ8-E,5317
|
|
63
|
+
pulumi_digitalocean/get_sizes.py,sha256=C5zDSUTAdp6dG2krQQWMS50BKyv5fYEOJRsyoIp3bgU,5239
|
|
64
|
+
pulumi_digitalocean/get_spaces_bucket.py,sha256=jcPRlN_DE6VxxlG0k4GEwjkeXSguZZUh6_HDFMFy2fI,6789
|
|
65
|
+
pulumi_digitalocean/get_spaces_bucket_object.py,sha256=NfVTy1PIjVXgRf4lSLTA8jPBCPtE_sc3tKjEX9pReNI,17516
|
|
66
|
+
pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=UNibTVrp32jAHT4zAd90WGIA58Cij-KJBCUAQSN2ZD4,10136
|
|
67
|
+
pulumi_digitalocean/get_spaces_buckets.py,sha256=8rk_VtcEYLYX3mxnKsYS86pROHp8vOvg0ZlIBVMDB_E,7423
|
|
68
|
+
pulumi_digitalocean/get_spaces_key.py,sha256=J5rclj6Oi_ZKc1_dPunVUZt_-sWJfneZk0zP4cpBy8Q,5378
|
|
69
|
+
pulumi_digitalocean/get_ssh_key.py,sha256=yMbWnRd697Zarf8fhd_sLA1FZKvg2V0-GEu2b6xRB2o,5617
|
|
70
|
+
pulumi_digitalocean/get_ssh_keys.py,sha256=Z6JC0a9FRnY870Hqek4QNvOSPhO26xS6e0FOyQbzM9c,6902
|
|
71
|
+
pulumi_digitalocean/get_tag.py,sha256=5PfrquC6npffC7KxHTt3dD4fe95vRx-J5yEd7Y80rA0,8409
|
|
72
|
+
pulumi_digitalocean/get_tags.py,sha256=6SwyOf6z7rhbBs_hdlz0joP-p1xZZdplaXwUxfKo--A,5678
|
|
73
|
+
pulumi_digitalocean/get_volume.py,sha256=9liGkSsGd-jz9jjrhYQPFZnjTo0Y86DZTgan4HnWcTk,10375
|
|
74
|
+
pulumi_digitalocean/get_volume_snapshot.py,sha256=06hMblHirXc9PnB0Re3IWch-ky73C4lflSSLuC5w3II,12120
|
|
75
|
+
pulumi_digitalocean/get_vpc.py,sha256=83m9RfT6oNy74eZxF2ntmh1JAGRwHXPFvMfdxGKKHQw,8934
|
|
76
|
+
pulumi_digitalocean/get_vpc_peering.py,sha256=8I1iYJrbvLlq7OejiQdYGjgAoLwDFXcroI8j-yLEJa4,8127
|
|
77
|
+
pulumi_digitalocean/kubernetes_cluster.py,sha256=EddZ8SgzifNwIPCHKnL0lDSi5BeJT7Ce1HO0eyI2qf4,70307
|
|
78
|
+
pulumi_digitalocean/kubernetes_node_pool.py,sha256=9YVX-D7KivfpViB00ubFxt_9kvdQawkYO5iIp9N1EmA,39053
|
|
79
|
+
pulumi_digitalocean/load_balancer.py,sha256=DHizTyEt0pN1CEhf8jn3RUQojAswBRRWrT37keCZWyQ,84150
|
|
80
|
+
pulumi_digitalocean/monitor_alert.py,sha256=XIfJa0u2nmswdjd0yKmNXlKobYWt3c0T8pkMBgCqTfo,38240
|
|
81
|
+
pulumi_digitalocean/outputs.py,sha256=s9AHk9tgRbXU4pgLZaIdjJ9XUp_s5hgSDCsjKwEgRdo,746254
|
|
82
|
+
pulumi_digitalocean/partner_attachment.py,sha256=HLV4PIZHno-i_FKpHJhXSXegq-_2S_xWCTuJ7vAMsUU,18698
|
|
83
|
+
pulumi_digitalocean/project.py,sha256=oX6w-0DqRWMO7eOXlghheueHKbyfN2JWy8yXsQYEEo0,25703
|
|
84
|
+
pulumi_digitalocean/project_resources.py,sha256=fax0kPmwVU_wqZx_vkGfc2GOR1qXjxy9AE1c-5uk5ig,10788
|
|
85
|
+
pulumi_digitalocean/provider.py,sha256=pkVyj7-kLrrE-BqFevh0LOvSlPAAJmHUVYmOSqBweKI,16188
|
|
86
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=_L5yESqf6DffQj5KcmXPLcNbM4kB9P99--HUPVgFn2Y,72
|
|
87
|
+
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
pulumi_digitalocean/reserved_ip.py,sha256=w5MWWwbzmhUiEmS0sXDARl5CpgR9XZo_FkO4Xt7OG7Y,13353
|
|
89
|
+
pulumi_digitalocean/reserved_ip_assignment.py,sha256=67MfxAZuWJODeA0qcu520C0dIwgVeioxP7oMQrtyKzc,10708
|
|
90
|
+
pulumi_digitalocean/reserved_ipv6.py,sha256=Ouq-udh040KCHPezVcfauXotgKfljk3QeFZ-exqM1e8,11118
|
|
91
|
+
pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=YMzzY_qoB7FGTg8WO2cfV5UrmV5-tHB97dp2azeYHKk,9216
|
|
92
|
+
pulumi_digitalocean/spaces_bucket.py,sha256=BITpfQMT0J5XJDqDf5gt1UVUJYEX7EeLINByzbZDDY8,31191
|
|
93
|
+
pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=99ucrSITZmERlmh-21aiW5pDNIO3vrTC5HTKMw9OPMU,14022
|
|
94
|
+
pulumi_digitalocean/spaces_bucket_logging.py,sha256=rBG_cibgx9xFeKD8-lTtwlItgigvjbPrhTeMTsgbsGg,13854
|
|
95
|
+
pulumi_digitalocean/spaces_bucket_object.py,sha256=oGaOEW8dwBHu-OBljiImtEhifcyalLBJOpOhYZyXTsQ,55186
|
|
96
|
+
pulumi_digitalocean/spaces_bucket_policy.py,sha256=VgIl8DqNw-yEMWMYEKRlc0NkDkTO7OD-UTfiMUXRqD0,12974
|
|
97
|
+
pulumi_digitalocean/spaces_key.py,sha256=brM7NdyR4ui0OE5RefQhogdQ0sgREM64PMWNeGcRv1Y,14959
|
|
98
|
+
pulumi_digitalocean/ssh_key.py,sha256=NlsuEL87h3QHkHGYJ7UsfOiB3wOrFc89YpPYWR1qaw4,11263
|
|
99
|
+
pulumi_digitalocean/tag.py,sha256=9EnSF70MZryWU8fUL_2zCqoCnOevWlkXA4AGMsJCAtQ,15197
|
|
100
|
+
pulumi_digitalocean/uptime_alert.py,sha256=LXJ6rIhP_pW_T6m_a1fjHwVrDw3XKcMDQxbsdZ2Gy-s,21702
|
|
101
|
+
pulumi_digitalocean/uptime_check.py,sha256=qioCmQMVcrkur7sdei0j7Gwupn9i8srpWJgJFBodYqY,15370
|
|
102
|
+
pulumi_digitalocean/volume.py,sha256=bdIKlqw6tJsNtLFrC2WesSheGk19wtbowc7_skbN0og,34784
|
|
103
|
+
pulumi_digitalocean/volume_attachment.py,sha256=s0N0JBlRmhEjDqbcNh3njmclAKILttqSHa4SJ7ZfS24,10284
|
|
104
|
+
pulumi_digitalocean/volume_snapshot.py,sha256=1xDaef_Fn8ownQJw_tkJfth6OXI2wKNTMKrpJsOi7-Y,16741
|
|
105
|
+
pulumi_digitalocean/vpc.py,sha256=2cQq2J3qXKAt4mdoDTh-z9dUuO3Nuth6taKwQhYa9rU,19876
|
|
106
|
+
pulumi_digitalocean/vpc_peering.py,sha256=oaNnXXEXYFtRDdpqm5vwqTnCJHGN1hCVqHOHBfLzKcY,14824
|
|
107
|
+
pulumi_digitalocean/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
108
|
+
pulumi_digitalocean/config/__init__.pyi,sha256=UvomcYgZ4UOIDQtny54lVKNTWnBhYaTZmEek-bjVjgA,1334
|
|
109
|
+
pulumi_digitalocean/config/vars.py,sha256=UXSxc4Sn20I1VTK4nT5gvURAcgMN96RsFLNxOb4Etis,2522
|
|
110
|
+
pulumi_digitalocean-4.45.0.dist-info/METADATA,sha256=GGsleZfAXDtE8LlAa1VUbi2Cjbe9cgiaQxIwu6XDx1A,3841
|
|
111
|
+
pulumi_digitalocean-4.45.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
112
|
+
pulumi_digitalocean-4.45.0.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
113
|
+
pulumi_digitalocean-4.45.0.dist-info/RECORD,,
|