pulumi-digitalocean 4.27.0a1710332933__py3-none-any.whl → 4.39.0a1736849637__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 +75 -0
- pulumi_digitalocean/_enums.py +131 -52
- pulumi_digitalocean/_inputs.py +5767 -399
- pulumi_digitalocean/_utilities.py +41 -5
- pulumi_digitalocean/app.py +199 -67
- pulumi_digitalocean/cdn.py +20 -23
- pulumi_digitalocean/certificate.py +45 -42
- pulumi_digitalocean/config/__init__.pyi +5 -0
- pulumi_digitalocean/config/vars.py +5 -0
- pulumi_digitalocean/container_registry.py +11 -6
- pulumi_digitalocean/container_registry_docker_credentials.py +53 -12
- pulumi_digitalocean/custom_image.py +13 -8
- pulumi_digitalocean/database_cluster.py +298 -120
- pulumi_digitalocean/database_connection_pool.py +15 -10
- pulumi_digitalocean/database_db.py +19 -12
- pulumi_digitalocean/database_firewall.py +78 -75
- pulumi_digitalocean/database_kafka_config.py +1040 -0
- pulumi_digitalocean/database_kafka_topic.py +66 -61
- pulumi_digitalocean/database_mongodb_config.py +452 -0
- pulumi_digitalocean/database_mysql_config.py +15 -12
- pulumi_digitalocean/database_opensearch_config.py +2069 -0
- pulumi_digitalocean/database_postgresql_config.py +2614 -0
- pulumi_digitalocean/database_redis_config.py +29 -12
- pulumi_digitalocean/database_replica.py +29 -24
- pulumi_digitalocean/database_user.py +90 -75
- pulumi_digitalocean/dns_record.py +13 -8
- pulumi_digitalocean/domain.py +7 -6
- pulumi_digitalocean/droplet.py +89 -31
- pulumi_digitalocean/droplet_autoscale.py +474 -0
- pulumi_digitalocean/droplet_snapshot.py +23 -14
- pulumi_digitalocean/firewall.py +118 -106
- pulumi_digitalocean/floating_ip.py +19 -16
- pulumi_digitalocean/floating_ip_assignment.py +19 -16
- pulumi_digitalocean/get_account.py +18 -9
- pulumi_digitalocean/get_app.py +57 -10
- pulumi_digitalocean/get_certificate.py +19 -9
- pulumi_digitalocean/get_container_registry.py +19 -9
- pulumi_digitalocean/get_database_ca.py +14 -9
- pulumi_digitalocean/get_database_cluster.py +119 -11
- pulumi_digitalocean/get_database_connection_pool.py +25 -9
- pulumi_digitalocean/get_database_replica.py +29 -9
- pulumi_digitalocean/get_database_user.py +21 -9
- pulumi_digitalocean/get_domain.py +16 -9
- pulumi_digitalocean/get_domains.py +34 -27
- pulumi_digitalocean/get_droplet.py +66 -23
- pulumi_digitalocean/get_droplet_autoscale.py +197 -0
- pulumi_digitalocean/get_droplet_snapshot.py +36 -23
- pulumi_digitalocean/get_droplets.py +80 -54
- pulumi_digitalocean/get_firewall.py +29 -13
- pulumi_digitalocean/get_floating_ip.py +16 -9
- pulumi_digitalocean/get_image.py +42 -27
- pulumi_digitalocean/get_images.py +56 -53
- pulumi_digitalocean/get_kubernetes_cluster.py +53 -6
- pulumi_digitalocean/get_kubernetes_versions.py +43 -41
- pulumi_digitalocean/get_load_balancer.py +81 -17
- pulumi_digitalocean/get_project.py +23 -9
- pulumi_digitalocean/get_projects.py +56 -53
- pulumi_digitalocean/get_record.py +23 -9
- pulumi_digitalocean/get_records.py +62 -13
- pulumi_digitalocean/get_region.py +17 -9
- pulumi_digitalocean/get_regions.py +56 -53
- pulumi_digitalocean/get_reserved_ip.py +16 -9
- pulumi_digitalocean/get_reserved_ipv6.py +118 -0
- pulumi_digitalocean/get_sizes.py +24 -13
- pulumi_digitalocean/get_spaces_bucket.py +18 -9
- pulumi_digitalocean/get_spaces_bucket_object.py +41 -14
- pulumi_digitalocean/get_spaces_bucket_objects.py +26 -5
- pulumi_digitalocean/get_spaces_buckets.py +48 -45
- pulumi_digitalocean/get_ssh_key.py +27 -19
- pulumi_digitalocean/get_ssh_keys.py +40 -37
- pulumi_digitalocean/get_tag.py +31 -19
- pulumi_digitalocean/get_tags.py +32 -25
- pulumi_digitalocean/get_volume.py +35 -23
- pulumi_digitalocean/get_volume_snapshot.py +35 -21
- pulumi_digitalocean/get_vpc.py +33 -23
- pulumi_digitalocean/get_vpc_peering.py +244 -0
- pulumi_digitalocean/kubernetes_cluster.py +86 -35
- pulumi_digitalocean/kubernetes_node_pool.py +46 -43
- pulumi_digitalocean/load_balancer.py +320 -157
- pulumi_digitalocean/monitor_alert.py +17 -12
- pulumi_digitalocean/outputs.py +3419 -344
- pulumi_digitalocean/project.py +19 -16
- pulumi_digitalocean/project_resources.py +11 -8
- pulumi_digitalocean/provider.py +5 -0
- pulumi_digitalocean/pulumi-plugin.json +2 -1
- pulumi_digitalocean/reserved_ip.py +19 -16
- pulumi_digitalocean/reserved_ip_assignment.py +19 -16
- pulumi_digitalocean/reserved_ipv6.py +232 -0
- pulumi_digitalocean/reserved_ipv6_assignment.py +171 -0
- pulumi_digitalocean/spaces_bucket.py +70 -79
- pulumi_digitalocean/spaces_bucket_cors_configuration.py +30 -25
- pulumi_digitalocean/spaces_bucket_object.py +11 -12
- pulumi_digitalocean/spaces_bucket_policy.py +21 -16
- pulumi_digitalocean/ssh_key.py +19 -10
- pulumi_digitalocean/tag.py +13 -10
- pulumi_digitalocean/uptime_alert.py +10 -5
- pulumi_digitalocean/uptime_check.py +5 -0
- pulumi_digitalocean/volume.py +47 -50
- pulumi_digitalocean/volume_attachment.py +25 -20
- pulumi_digitalocean/volume_snapshot.py +17 -10
- pulumi_digitalocean/vpc.py +27 -22
- pulumi_digitalocean/vpc_peering.py +378 -0
- {pulumi_digitalocean-4.27.0a1710332933.dist-info → pulumi_digitalocean-4.39.0a1736849637.dist-info}/METADATA +7 -6
- pulumi_digitalocean-4.39.0a1736849637.dist-info/RECORD +108 -0
- {pulumi_digitalocean-4.27.0a1710332933.dist-info → pulumi_digitalocean-4.39.0a1736849637.dist-info}/WHEEL +1 -1
- pulumi_digitalocean-4.27.0a1710332933.dist-info/RECORD +0 -97
- {pulumi_digitalocean-4.27.0a1710332933.dist-info → pulumi_digitalocean-4.39.0a1736849637.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,378 @@
|
|
|
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__ = ['VpcPeeringArgs', 'VpcPeering']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class VpcPeeringArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
vpc_ids: pulumi.Input[Sequence[pulumi.Input[str]]],
|
|
23
|
+
name: Optional[pulumi.Input[str]] = None):
|
|
24
|
+
"""
|
|
25
|
+
The set of arguments for constructing a VpcPeering resource.
|
|
26
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
27
|
+
:param pulumi.Input[str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "vpc_ids", vpc_ids)
|
|
30
|
+
if name is not None:
|
|
31
|
+
pulumi.set(__self__, "name", name)
|
|
32
|
+
|
|
33
|
+
@property
|
|
34
|
+
@pulumi.getter(name="vpcIds")
|
|
35
|
+
def vpc_ids(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
36
|
+
"""
|
|
37
|
+
A set of two VPC IDs to be peered.
|
|
38
|
+
"""
|
|
39
|
+
return pulumi.get(self, "vpc_ids")
|
|
40
|
+
|
|
41
|
+
@vpc_ids.setter
|
|
42
|
+
def vpc_ids(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
43
|
+
pulumi.set(self, "vpc_ids", value)
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
@pulumi.getter
|
|
47
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
|
48
|
+
"""
|
|
49
|
+
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
50
|
+
"""
|
|
51
|
+
return pulumi.get(self, "name")
|
|
52
|
+
|
|
53
|
+
@name.setter
|
|
54
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
|
55
|
+
pulumi.set(self, "name", value)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
@pulumi.input_type
|
|
59
|
+
class _VpcPeeringState:
|
|
60
|
+
def __init__(__self__, *,
|
|
61
|
+
created_at: Optional[pulumi.Input[str]] = None,
|
|
62
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
63
|
+
status: Optional[pulumi.Input[str]] = None,
|
|
64
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
65
|
+
"""
|
|
66
|
+
Input properties used for looking up and filtering VpcPeering resources.
|
|
67
|
+
:param pulumi.Input[str] created_at: The date and time of when the VPC Peering was created.
|
|
68
|
+
:param pulumi.Input[str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
69
|
+
:param pulumi.Input[str] status: The status of the VPC Peering.
|
|
70
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
71
|
+
"""
|
|
72
|
+
if created_at is not None:
|
|
73
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
74
|
+
if name is not None:
|
|
75
|
+
pulumi.set(__self__, "name", name)
|
|
76
|
+
if status is not None:
|
|
77
|
+
pulumi.set(__self__, "status", status)
|
|
78
|
+
if vpc_ids is not None:
|
|
79
|
+
pulumi.set(__self__, "vpc_ids", vpc_ids)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="createdAt")
|
|
83
|
+
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
84
|
+
"""
|
|
85
|
+
The date and time of when the VPC Peering was created.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "created_at")
|
|
88
|
+
|
|
89
|
+
@created_at.setter
|
|
90
|
+
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
91
|
+
pulumi.set(self, "created_at", value)
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter
|
|
95
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
|
96
|
+
"""
|
|
97
|
+
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "name")
|
|
100
|
+
|
|
101
|
+
@name.setter
|
|
102
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
|
103
|
+
pulumi.set(self, "name", value)
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
|
108
|
+
"""
|
|
109
|
+
The status of the VPC Peering.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "status")
|
|
112
|
+
|
|
113
|
+
@status.setter
|
|
114
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
|
115
|
+
pulumi.set(self, "status", value)
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
@pulumi.getter(name="vpcIds")
|
|
119
|
+
def vpc_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
120
|
+
"""
|
|
121
|
+
A set of two VPC IDs to be peered.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "vpc_ids")
|
|
124
|
+
|
|
125
|
+
@vpc_ids.setter
|
|
126
|
+
def vpc_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
127
|
+
pulumi.set(self, "vpc_ids", value)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
class VpcPeering(pulumi.CustomResource):
|
|
131
|
+
@overload
|
|
132
|
+
def __init__(__self__,
|
|
133
|
+
resource_name: str,
|
|
134
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
135
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
137
|
+
__props__=None):
|
|
138
|
+
"""
|
|
139
|
+
> VPC peering is currently in alpha. If you are not a member of the alpha group for this feature, you will not be able to use it until it has been more widely released. Please follow the official [DigitalOcean changelog](https://docs.digitalocean.com/release-notes/) for updates.
|
|
140
|
+
|
|
141
|
+
Provides a DigitalOcean VPC Peering resource.
|
|
142
|
+
|
|
143
|
+
VPC Peerings are used to connect two VPC networks allowing resources in each
|
|
144
|
+
VPC to communicate with each other privately.
|
|
145
|
+
|
|
146
|
+
## Example Usage
|
|
147
|
+
|
|
148
|
+
```python
|
|
149
|
+
import pulumi
|
|
150
|
+
import pulumi_digitalocean as digitalocean
|
|
151
|
+
|
|
152
|
+
example = digitalocean.VpcPeering("example",
|
|
153
|
+
name="example-peering",
|
|
154
|
+
vpc_ids=[
|
|
155
|
+
vpc1["id"],
|
|
156
|
+
vpc2["id"],
|
|
157
|
+
])
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Resource Assignment
|
|
161
|
+
|
|
162
|
+
You can use the VPC Peering resource to allow communication between resources
|
|
163
|
+
in different VPCs. For example:
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
import pulumi
|
|
167
|
+
import pulumi_digitalocean as digitalocean
|
|
168
|
+
|
|
169
|
+
vpc1 = digitalocean.Vpc("vpc1",
|
|
170
|
+
name="vpc1",
|
|
171
|
+
region="nyc3")
|
|
172
|
+
vpc2 = digitalocean.Vpc("vpc2",
|
|
173
|
+
name="vpc2",
|
|
174
|
+
region="nyc3")
|
|
175
|
+
example = digitalocean.VpcPeering("example",
|
|
176
|
+
name="example-peering",
|
|
177
|
+
vpc_ids=[
|
|
178
|
+
vpc1.id,
|
|
179
|
+
vpc2.id,
|
|
180
|
+
])
|
|
181
|
+
example1 = digitalocean.Droplet("example1",
|
|
182
|
+
name="example1",
|
|
183
|
+
size=digitalocean.DropletSlug.DROPLET_S1_VCPU1_GB,
|
|
184
|
+
image="ubuntu-18-04-x64",
|
|
185
|
+
region=digitalocean.Region.NYC3,
|
|
186
|
+
vpc_uuid=vpc1.id)
|
|
187
|
+
example2 = digitalocean.Droplet("example2",
|
|
188
|
+
name="example2",
|
|
189
|
+
size=digitalocean.DropletSlug.DROPLET_S1_VCPU1_GB,
|
|
190
|
+
image="ubuntu-18-04-x64",
|
|
191
|
+
region=digitalocean.Region.NYC3,
|
|
192
|
+
vpc_uuid=vpc2.id)
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
## Import
|
|
196
|
+
|
|
197
|
+
A VPC Peering can be imported using its `id`, e.g.
|
|
198
|
+
|
|
199
|
+
```sh
|
|
200
|
+
$ pulumi import digitalocean:index/vpcPeering:VpcPeering example 771ad360-c017-4b4e-a34e-73934f5f0190
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
:param str resource_name: The name of the resource.
|
|
204
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
205
|
+
:param pulumi.Input[str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
206
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
207
|
+
"""
|
|
208
|
+
...
|
|
209
|
+
@overload
|
|
210
|
+
def __init__(__self__,
|
|
211
|
+
resource_name: str,
|
|
212
|
+
args: VpcPeeringArgs,
|
|
213
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
214
|
+
"""
|
|
215
|
+
> VPC peering is currently in alpha. If you are not a member of the alpha group for this feature, you will not be able to use it until it has been more widely released. Please follow the official [DigitalOcean changelog](https://docs.digitalocean.com/release-notes/) for updates.
|
|
216
|
+
|
|
217
|
+
Provides a DigitalOcean VPC Peering resource.
|
|
218
|
+
|
|
219
|
+
VPC Peerings are used to connect two VPC networks allowing resources in each
|
|
220
|
+
VPC to communicate with each other privately.
|
|
221
|
+
|
|
222
|
+
## Example Usage
|
|
223
|
+
|
|
224
|
+
```python
|
|
225
|
+
import pulumi
|
|
226
|
+
import pulumi_digitalocean as digitalocean
|
|
227
|
+
|
|
228
|
+
example = digitalocean.VpcPeering("example",
|
|
229
|
+
name="example-peering",
|
|
230
|
+
vpc_ids=[
|
|
231
|
+
vpc1["id"],
|
|
232
|
+
vpc2["id"],
|
|
233
|
+
])
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### Resource Assignment
|
|
237
|
+
|
|
238
|
+
You can use the VPC Peering resource to allow communication between resources
|
|
239
|
+
in different VPCs. For example:
|
|
240
|
+
|
|
241
|
+
```python
|
|
242
|
+
import pulumi
|
|
243
|
+
import pulumi_digitalocean as digitalocean
|
|
244
|
+
|
|
245
|
+
vpc1 = digitalocean.Vpc("vpc1",
|
|
246
|
+
name="vpc1",
|
|
247
|
+
region="nyc3")
|
|
248
|
+
vpc2 = digitalocean.Vpc("vpc2",
|
|
249
|
+
name="vpc2",
|
|
250
|
+
region="nyc3")
|
|
251
|
+
example = digitalocean.VpcPeering("example",
|
|
252
|
+
name="example-peering",
|
|
253
|
+
vpc_ids=[
|
|
254
|
+
vpc1.id,
|
|
255
|
+
vpc2.id,
|
|
256
|
+
])
|
|
257
|
+
example1 = digitalocean.Droplet("example1",
|
|
258
|
+
name="example1",
|
|
259
|
+
size=digitalocean.DropletSlug.DROPLET_S1_VCPU1_GB,
|
|
260
|
+
image="ubuntu-18-04-x64",
|
|
261
|
+
region=digitalocean.Region.NYC3,
|
|
262
|
+
vpc_uuid=vpc1.id)
|
|
263
|
+
example2 = digitalocean.Droplet("example2",
|
|
264
|
+
name="example2",
|
|
265
|
+
size=digitalocean.DropletSlug.DROPLET_S1_VCPU1_GB,
|
|
266
|
+
image="ubuntu-18-04-x64",
|
|
267
|
+
region=digitalocean.Region.NYC3,
|
|
268
|
+
vpc_uuid=vpc2.id)
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
## Import
|
|
272
|
+
|
|
273
|
+
A VPC Peering can be imported using its `id`, e.g.
|
|
274
|
+
|
|
275
|
+
```sh
|
|
276
|
+
$ pulumi import digitalocean:index/vpcPeering:VpcPeering example 771ad360-c017-4b4e-a34e-73934f5f0190
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
:param str resource_name: The name of the resource.
|
|
280
|
+
:param VpcPeeringArgs args: The arguments to use to populate this resource's properties.
|
|
281
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
282
|
+
"""
|
|
283
|
+
...
|
|
284
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
285
|
+
resource_args, opts = _utilities.get_resource_args_opts(VpcPeeringArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
286
|
+
if resource_args is not None:
|
|
287
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
288
|
+
else:
|
|
289
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
290
|
+
|
|
291
|
+
def _internal_init(__self__,
|
|
292
|
+
resource_name: str,
|
|
293
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
294
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
295
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
296
|
+
__props__=None):
|
|
297
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
298
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
299
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
300
|
+
if opts.id is None:
|
|
301
|
+
if __props__ is not None:
|
|
302
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
303
|
+
__props__ = VpcPeeringArgs.__new__(VpcPeeringArgs)
|
|
304
|
+
|
|
305
|
+
__props__.__dict__["name"] = name
|
|
306
|
+
if vpc_ids is None and not opts.urn:
|
|
307
|
+
raise TypeError("Missing required property 'vpc_ids'")
|
|
308
|
+
__props__.__dict__["vpc_ids"] = vpc_ids
|
|
309
|
+
__props__.__dict__["created_at"] = None
|
|
310
|
+
__props__.__dict__["status"] = None
|
|
311
|
+
super(VpcPeering, __self__).__init__(
|
|
312
|
+
'digitalocean:index/vpcPeering:VpcPeering',
|
|
313
|
+
resource_name,
|
|
314
|
+
__props__,
|
|
315
|
+
opts)
|
|
316
|
+
|
|
317
|
+
@staticmethod
|
|
318
|
+
def get(resource_name: str,
|
|
319
|
+
id: pulumi.Input[str],
|
|
320
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
321
|
+
created_at: Optional[pulumi.Input[str]] = None,
|
|
322
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
323
|
+
status: Optional[pulumi.Input[str]] = None,
|
|
324
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'VpcPeering':
|
|
325
|
+
"""
|
|
326
|
+
Get an existing VpcPeering resource's state with the given name, id, and optional extra
|
|
327
|
+
properties used to qualify the lookup.
|
|
328
|
+
|
|
329
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
330
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
331
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
332
|
+
:param pulumi.Input[str] created_at: The date and time of when the VPC Peering was created.
|
|
333
|
+
:param pulumi.Input[str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
334
|
+
:param pulumi.Input[str] status: The status of the VPC Peering.
|
|
335
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
336
|
+
"""
|
|
337
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
338
|
+
|
|
339
|
+
__props__ = _VpcPeeringState.__new__(_VpcPeeringState)
|
|
340
|
+
|
|
341
|
+
__props__.__dict__["created_at"] = created_at
|
|
342
|
+
__props__.__dict__["name"] = name
|
|
343
|
+
__props__.__dict__["status"] = status
|
|
344
|
+
__props__.__dict__["vpc_ids"] = vpc_ids
|
|
345
|
+
return VpcPeering(resource_name, opts=opts, __props__=__props__)
|
|
346
|
+
|
|
347
|
+
@property
|
|
348
|
+
@pulumi.getter(name="createdAt")
|
|
349
|
+
def created_at(self) -> pulumi.Output[str]:
|
|
350
|
+
"""
|
|
351
|
+
The date and time of when the VPC Peering was created.
|
|
352
|
+
"""
|
|
353
|
+
return pulumi.get(self, "created_at")
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter
|
|
357
|
+
def name(self) -> pulumi.Output[str]:
|
|
358
|
+
"""
|
|
359
|
+
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
360
|
+
"""
|
|
361
|
+
return pulumi.get(self, "name")
|
|
362
|
+
|
|
363
|
+
@property
|
|
364
|
+
@pulumi.getter
|
|
365
|
+
def status(self) -> pulumi.Output[str]:
|
|
366
|
+
"""
|
|
367
|
+
The status of the VPC Peering.
|
|
368
|
+
"""
|
|
369
|
+
return pulumi.get(self, "status")
|
|
370
|
+
|
|
371
|
+
@property
|
|
372
|
+
@pulumi.getter(name="vpcIds")
|
|
373
|
+
def vpc_ids(self) -> pulumi.Output[Sequence[str]]:
|
|
374
|
+
"""
|
|
375
|
+
A set of two VPC IDs to be peered.
|
|
376
|
+
"""
|
|
377
|
+
return pulumi.get(self, "vpc_ids")
|
|
378
|
+
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: pulumi_digitalocean
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.39.0a1736849637
|
|
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
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-digitalocean
|
|
8
8
|
Keywords: pulumi,digitalocean
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver
|
|
12
|
-
Requires-Dist: pulumi
|
|
13
|
-
Requires-Dist: semver
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.142.0
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://github.com/pulumi/pulumi-digitalocean/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
pulumi_digitalocean/__init__.py,sha256=PNHXKozQTBUoTumasz2v5XRJlsCP_Axmng7xyvFHk_M,13087
|
|
2
|
+
pulumi_digitalocean/_enums.py,sha256=m99PgcFIp9L5hxL_7GpvgZ_GLNhObSDnzVeKTlH3Vrs,9694
|
|
3
|
+
pulumi_digitalocean/_inputs.py,sha256=uqEcesHOjPs7NnY6Hy2-e0-sVMMByO4_E2dZiCJgcic,605204
|
|
4
|
+
pulumi_digitalocean/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
5
|
+
pulumi_digitalocean/app.py,sha256=GWQcDYeTcUQf7ZzUiVTQnkqLyXhBFUxlqN9bYWUDUGc,24444
|
|
6
|
+
pulumi_digitalocean/cdn.py,sha256=kAb0ouZ8_DJAYQv5xC-_BMet2gT8CjKaVh7xcVWYKyI,21789
|
|
7
|
+
pulumi_digitalocean/certificate.py,sha256=FUUI94hAjpbxdxVj_inFK0JCEoSlWt4XfVxt_GyZETY,28385
|
|
8
|
+
pulumi_digitalocean/container_registry.py,sha256=eg8nlPaYdClphz0vh5lt1gOGDtLvKqTZg-uVmkiLUtc,16759
|
|
9
|
+
pulumi_digitalocean/container_registry_docker_credentials.py,sha256=Ru4ib-QtLHzjvgqzXL15iV1QwKda2CAuizeLW5g3JJ0,17461
|
|
10
|
+
pulumi_digitalocean/custom_image.py,sha256=zGXveT8uEu9Y9IQI-K6zc0XAMoW09ajn7EEQCEu2m_Y,27339
|
|
11
|
+
pulumi_digitalocean/database_cluster.py,sha256=c6wfQOmm7FAWLtBYIl701lxMWwJicCM5TN3gEKlF84E,64127
|
|
12
|
+
pulumi_digitalocean/database_connection_pool.py,sha256=G58uEqpW4AaFdZnY36j3SVB0YSO0Ur5EmZSwOgtt6VA,25355
|
|
13
|
+
pulumi_digitalocean/database_db.py,sha256=DZY751l8-gloMei6opGhVdzVw6G1nKgz0Dx6iFZkCYI,9674
|
|
14
|
+
pulumi_digitalocean/database_firewall.py,sha256=p9HkS72_yJ2lXVXep6ts6VeqiPAjzxNDFr1HNsEZWw8,15564
|
|
15
|
+
pulumi_digitalocean/database_kafka_config.py,sha256=NkAavcQzybn2XdCWEf4EplM9gF5wjNC2tq2q38tBmbg,60115
|
|
16
|
+
pulumi_digitalocean/database_kafka_topic.py,sha256=t6Cp64IuQS6TFMl_NRW9m-mOIiFAvju7nFHE0uMYDvY,22077
|
|
17
|
+
pulumi_digitalocean/database_mongodb_config.py,sha256=lxIePHjNm9g52VlL38zV2_lbIPUDPM95Egj16BJOpMU,32850
|
|
18
|
+
pulumi_digitalocean/database_mysql_config.py,sha256=5UwT8tcU1UYUaHXyAIujA4Q58_iL50Lw5O5VW4TcZt0,82232
|
|
19
|
+
pulumi_digitalocean/database_opensearch_config.py,sha256=2T9B0Zn5b_b8xixlmCGvGjYMEPBSWO6NjogDCmP0Cpw,133069
|
|
20
|
+
pulumi_digitalocean/database_postgresql_config.py,sha256=3AG4dCODF1f9A8XZz4u4l-fwKbL1xxI3kyg_-tHscvw,161329
|
|
21
|
+
pulumi_digitalocean/database_redis_config.py,sha256=wsxFahW9likbHte5ohffVE72NtWuolOvLc5tanN1lF0,39758
|
|
22
|
+
pulumi_digitalocean/database_replica.py,sha256=z3adKd6d1Uyq-ayScqL9dP_QqoR4YDhBAseY3zMZ9ic,31700
|
|
23
|
+
pulumi_digitalocean/database_user.py,sha256=EpJ1XqZKtSYQM9BJnRzIdzaEu9JVL_M0rP8hDIGmn7Y,24979
|
|
24
|
+
pulumi_digitalocean/dns_record.py,sha256=vpikg5aun79eMQrdIO8B9Ow54fibuCtnzrdQ9r5SQD8,27226
|
|
25
|
+
pulumi_digitalocean/domain.py,sha256=GHz3WqliW4HLYz7ejFuENUET3GD9LRHW8rXvByCjs4M,10708
|
|
26
|
+
pulumi_digitalocean/droplet.py,sha256=pcAo7AZPnwk4KqDF3xyHMDQ9IpTZGNU1koFWtAQGJxI,72539
|
|
27
|
+
pulumi_digitalocean/droplet_autoscale.py,sha256=laewev7_xV9knfRtb9Cqa64cyhyZlGl6oCyEMRANbdo,21257
|
|
28
|
+
pulumi_digitalocean/droplet_snapshot.py,sha256=A5N3GNcwbL6H0m1lefFTt3DQ0SvbbDxWlpMXH0IgsBo,14419
|
|
29
|
+
pulumi_digitalocean/firewall.py,sha256=mJ7CaERuaiINha3oqoqlmPIL_fjWv2Nqxu5I4cqfZ8Y,27793
|
|
30
|
+
pulumi_digitalocean/floating_ip.py,sha256=ZGXvgY_84tgqmqABgtj9dfxbP5LtFT0i_FLaURjhxaw,13151
|
|
31
|
+
pulumi_digitalocean/floating_ip_assignment.py,sha256=41dCjOYZK5CsPTKg4xF18ymqLhyXwRoC9Vhu3QAtdt0,10699
|
|
32
|
+
pulumi_digitalocean/get_account.py,sha256=0sWrGRncSuvZEZEdKgHnQuTlGAp5ua1QDBW4IJ8IKr0,6843
|
|
33
|
+
pulumi_digitalocean/get_app.py,sha256=__WoCm3WR3wOxHTnII4O_1ij53Lkw4QGG3L26ekkKiE,10052
|
|
34
|
+
pulumi_digitalocean/get_certificate.py,sha256=OWLh_MxSikZ1ZFIkwJRm-07iVe42isL1833BrEtqe88,7278
|
|
35
|
+
pulumi_digitalocean/get_container_registry.py,sha256=75zqeW-NeLrer3iq56wvzfRIBQW-gEFSXX-UzTSiXQQ,8118
|
|
36
|
+
pulumi_digitalocean/get_database_ca.py,sha256=ATyjPVwB8lOsnJr3A-VjSS-GTWZeQgaraSbhHz1J53E,4325
|
|
37
|
+
pulumi_digitalocean/get_database_cluster.py,sha256=t9ruS4iYJ49ZeHI5uCFDZ9-q-g3nMdN_iOftJOkBoyc,17518
|
|
38
|
+
pulumi_digitalocean/get_database_connection_pool.py,sha256=pXNv0DSRF9sZeQT_cmWQPBl9aNqzFvFUZi_UlAWgvvc,10118
|
|
39
|
+
pulumi_digitalocean/get_database_replica.py,sha256=UB8on8Q4RTyPA6ti5Zvkk6TGe6lMbDYvShcIeJgiKw4,11892
|
|
40
|
+
pulumi_digitalocean/get_database_user.py,sha256=wYOi9y_QlakNYrcuH39nXq5M1QkOkEDlUGFzwXVrxF8,8131
|
|
41
|
+
pulumi_digitalocean/get_domain.py,sha256=bhIqE1HYTpJ2PB3cm3Ced5FfFwtdrOqXf75knpLzuU0,5674
|
|
42
|
+
pulumi_digitalocean/get_domains.py,sha256=0Jwm1DIIY_Pw_nb2Sw9ka_jwK_gPlmMob9QCXmADdqE,6865
|
|
43
|
+
pulumi_digitalocean/get_droplet.py,sha256=HRe4Tidib6gmilCelTffxfnaC6sRqy1u8WlNhkSyJnY,19112
|
|
44
|
+
pulumi_digitalocean/get_droplet_autoscale.py,sha256=bxxXhhxZgEc_1OEg-cLUrAFCRwnhlG95_TQYj3fX-PA,7622
|
|
45
|
+
pulumi_digitalocean/get_droplet_snapshot.py,sha256=JLLYdmn5DSkr_e0_yZkDy0DOp33ik64cy9oJ0L7WunE,11453
|
|
46
|
+
pulumi_digitalocean/get_droplets.py,sha256=oe6OqhxfwDhhWqZ12z3mTIC0otHOg6kHsmeYR2Q84yo,8911
|
|
47
|
+
pulumi_digitalocean/get_firewall.py,sha256=KBDTa3hSZaKSINGj9-ej6oNKD_0Vgeq270_K3iUGrRI,10292
|
|
48
|
+
pulumi_digitalocean/get_floating_ip.py,sha256=lBYZJo5kePL3rJNzraudX2AbtJvra4-lu23E8FZz8H0,6627
|
|
49
|
+
pulumi_digitalocean/get_image.py,sha256=3oUdVmSfcurjAM0S67UqBOnKGVVeIbruzbL_Zof9-fs,13705
|
|
50
|
+
pulumi_digitalocean/get_images.py,sha256=EFSSpZmb6egFroqlwAE-VY_KdR4_KoztTVhIAM05yYE,7811
|
|
51
|
+
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=vago1CykpzQOIzz3K1Mr8ZPt-qvrsklJNec425pPkAA,14985
|
|
52
|
+
pulumi_digitalocean/get_kubernetes_versions.py,sha256=K_wql5XJkOBfriplIbtGLArjyzuXlfqi6t8aS2Pirgw,7735
|
|
53
|
+
pulumi_digitalocean/get_load_balancer.py,sha256=V4SHgyzpPIdhRRU-86B2W-ncZkd0dCWnuEG-24b4nx4,18551
|
|
54
|
+
pulumi_digitalocean/get_project.py,sha256=2zPk5T3bHxBfpJBRtgcQNwapDq4CK6sHnmCiMwPQJuU,9167
|
|
55
|
+
pulumi_digitalocean/get_projects.py,sha256=G7D4G6Uek_-fFiC8riB8v5gKRx1JSOY0rUm7mTbmugY,7731
|
|
56
|
+
pulumi_digitalocean/get_record.py,sha256=M0fwL5pE0cnGzQgjloToCbFTgQrr5-OE822CPDTJO-Q,8937
|
|
57
|
+
pulumi_digitalocean/get_records.py,sha256=Ql6p_8xxO32LZ8SlOFjezb3DHjkprG9bOEpnDM0zuIE,7000
|
|
58
|
+
pulumi_digitalocean/get_region.py,sha256=I7CyU536raTbbNBVr0thYv7S2dm5dOfg6IeMjbaa_FE,5875
|
|
59
|
+
pulumi_digitalocean/get_regions.py,sha256=0qEc4k2GWeNNFjnkzz-StpCcggvW6oki8Fsjvtd1zTM,7492
|
|
60
|
+
pulumi_digitalocean/get_reserved_ip.py,sha256=D0sx5EPHa_sSYAPV1pNpmk9b_58l_-SSMHq7cYiw6Lw,5401
|
|
61
|
+
pulumi_digitalocean/get_reserved_ipv6.py,sha256=E3nEEDiiyyxs_S2ruQEmHhPm8HEvoft8aTJwct1Vu_g,4410
|
|
62
|
+
pulumi_digitalocean/get_sizes.py,sha256=Q9lPeJPk2ItO4Rht0mFfIpH2tYYe0Ou-PVPjPU4fyzk,5214
|
|
63
|
+
pulumi_digitalocean/get_spaces_bucket.py,sha256=w97UTfZja4GD-X3ojQxW9pk_5wlu7SUqMU4Qn8tYvX4,6647
|
|
64
|
+
pulumi_digitalocean/get_spaces_bucket_object.py,sha256=9iC_T2LBqAkvV-xcKvwflbjKaX5nhBHig7tzWnXAaaQ,17167
|
|
65
|
+
pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=w8Oq0ojQc1csEZwwt3PkWD0RLRONm9tDEBP88rSwGHA,9814
|
|
66
|
+
pulumi_digitalocean/get_spaces_buckets.py,sha256=R4g1jP3t96MsdU-n4nRRDO3ECB1AKa1oPvR1xp13cOM,7398
|
|
67
|
+
pulumi_digitalocean/get_ssh_key.py,sha256=3vVPvdfCBcHklFYvfjeqWkjgre6xihu11jdkA-yMjEc,5529
|
|
68
|
+
pulumi_digitalocean/get_ssh_keys.py,sha256=AASB1AnyEqAcr26cuD2wJ7bF7Yqyqc5AtAOh10-3Lsc,6877
|
|
69
|
+
pulumi_digitalocean/get_tag.py,sha256=2p28faexVr9QZDtyfqXyGxVuxlw2gg0GVH1Hp0ns2b8,8285
|
|
70
|
+
pulumi_digitalocean/get_tags.py,sha256=waFX1GRI21kU48peVxjVJScS4uODLu75m-OKRJNu5KQ,5653
|
|
71
|
+
pulumi_digitalocean/get_volume.py,sha256=paXMeQzLzfZ675E4d1toOBtvfrZTJ3kzVzXxTZLonjI,10161
|
|
72
|
+
pulumi_digitalocean/get_volume_snapshot.py,sha256=YLBGvzY2JZMaygPG-7sqIW9EbFXia1zD-BgZfJvVF9U,11861
|
|
73
|
+
pulumi_digitalocean/get_vpc.py,sha256=MBJisuZArVWvaZ6rwi2YQAhJAA2LouJjAZg8VfIuRrg,8738
|
|
74
|
+
pulumi_digitalocean/get_vpc_peering.py,sha256=jec2rz2NwlMlgZRsYT1janpPgs5xi9kTvCygBItaQxk,7958
|
|
75
|
+
pulumi_digitalocean/kubernetes_cluster.py,sha256=_tYvRc9dO1a76arkTLTSQcIa2BfGXR3tH3lQ-h7v9eU,56054
|
|
76
|
+
pulumi_digitalocean/kubernetes_node_pool.py,sha256=xDplKBhopgyUOsYWVy5ngTv3l1NB2SJPMz6ssLMdjmQ,37761
|
|
77
|
+
pulumi_digitalocean/load_balancer.py,sha256=giOtw-3cv4RQGzcYcDMxE1HgABHs7DB_NnvticDvcVY,76590
|
|
78
|
+
pulumi_digitalocean/monitor_alert.py,sha256=Q6x8QbJsgBZi2Us1qgxbITTkwnxM9r_WtqZkudQ6wRs,37464
|
|
79
|
+
pulumi_digitalocean/outputs.py,sha256=k1LksIknK17dHi5u6jDBjKZu6vGmcKMdyDNgAeccw30,679128
|
|
80
|
+
pulumi_digitalocean/project.py,sha256=jZWmhLSY2UMUHVuq9CYBaERJos26o_6j0TO56sPNYkg,24622
|
|
81
|
+
pulumi_digitalocean/project_resources.py,sha256=AYkWlrmdHpwHU2ejGeKIUVxu371J77JcFzdyJ4zeuy8,10445
|
|
82
|
+
pulumi_digitalocean/provider.py,sha256=_s9QkDZle1wCa634xdXzAXN2mJZr4kvb1b-pp1CqHOc,14633
|
|
83
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=MHiSdlwizNwWoHqP7P7GfD9PCHRYV7YtMDOR7M8oVng,89
|
|
84
|
+
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
pulumi_digitalocean/reserved_ip.py,sha256=oPOxhrFp7nqKLv-vG6rpi5az-3P-4vlGAoh9XDQywOc,12833
|
|
86
|
+
pulumi_digitalocean/reserved_ip_assignment.py,sha256=wetSmcYFaI122KO-wDixcJgDP_WG-OF3CW4QYGzK8V8,10357
|
|
87
|
+
pulumi_digitalocean/reserved_ipv6.py,sha256=M3JQ7Axnnrn1kDixCfszntDUhavvGDppryA2vI-JiD8,8747
|
|
88
|
+
pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=5ZJ-o8Pbs1bgsDEugvWxmfLChoNmGcTxNN9N-0ktxV8,6689
|
|
89
|
+
pulumi_digitalocean/spaces_bucket.py,sha256=gkFES_GlPmyMG3s3coYqEMyZ77F257628D_hTYgaL0w,30415
|
|
90
|
+
pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=wN3BA4-AwhuJiFpdbkV9u0lHyyVIenhlWlYcL1GD1Z8,13653
|
|
91
|
+
pulumi_digitalocean/spaces_bucket_object.py,sha256=hvkHqJTEo4sVX0jhqxrGvQXRnYs9fLE0w62CgO2cTqE,53012
|
|
92
|
+
pulumi_digitalocean/spaces_bucket_policy.py,sha256=pmZi3F7ODDO77d8m-6m8ytjXZ1jR8B6PARLLbWehoQw,12501
|
|
93
|
+
pulumi_digitalocean/ssh_key.py,sha256=zx3syx0rfO2E-iSiQcOkUTGk_0thnggfu1iuIa5KmP0,10877
|
|
94
|
+
pulumi_digitalocean/tag.py,sha256=_3p4Hz3rL9EKlKkO-E_Fw7zZ7EHp4HOZ47gMY2QCr2o,14628
|
|
95
|
+
pulumi_digitalocean/uptime_alert.py,sha256=mbOOjYPSXVqTsmq48LKYcL8WSE8mHoDenXMPujDv-68,20847
|
|
96
|
+
pulumi_digitalocean/uptime_check.py,sha256=E5UliUrao8G3ye_B-W7TGB_VPi_9XrrTY25DxhH2NQQ,14661
|
|
97
|
+
pulumi_digitalocean/volume.py,sha256=7tbF15bK1Uc1oSlGwahQhhW64BhbelBydqGgmC-Qt3E,33390
|
|
98
|
+
pulumi_digitalocean/volume_attachment.py,sha256=4s2VQ5LV5jydFVoOdjdB9G94EU2T5x5lB0ANZNWMTw8,9941
|
|
99
|
+
pulumi_digitalocean/volume_snapshot.py,sha256=X5pUrAts4VxFSF1iFG312o9OUXu9N_tGTHhKjDULw6M,16024
|
|
100
|
+
pulumi_digitalocean/vpc.py,sha256=9TYwBzsTw6ToXpMfHExsU3ewKZ21NuMPduOrevL_5vw,19120
|
|
101
|
+
pulumi_digitalocean/vpc_peering.py,sha256=PaVzwhbdORafLdMiYyb66ZuuMUgCq5popHO10QmAms4,14367
|
|
102
|
+
pulumi_digitalocean/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
103
|
+
pulumi_digitalocean/config/__init__.pyi,sha256=Ldryf5hmAV_RpYiaKYb8T8MwEqFG-77lHmOOLbJlXR8,1318
|
|
104
|
+
pulumi_digitalocean/config/vars.py,sha256=rTFGUSJ8ymj00a7GZTGgWBk4OoyMW05038qmLb3tMho,2506
|
|
105
|
+
pulumi_digitalocean-4.39.0a1736849637.dist-info/METADATA,sha256=HjHPrtzGSJJx-j0ARXwDsNAUFMVO8E046rKJywQ-EEA,3849
|
|
106
|
+
pulumi_digitalocean-4.39.0a1736849637.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
107
|
+
pulumi_digitalocean-4.39.0a1736849637.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
108
|
+
pulumi_digitalocean-4.39.0a1736849637.dist-info/RECORD,,
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
pulumi_digitalocean/__init__.py,sha256=0fyHdhBxthkoFFn-rro-pFh8ZHKzkpbNoI9oYe4Al8s,11049
|
|
2
|
-
pulumi_digitalocean/_enums.py,sha256=PnoXofiMQYEU6D3sTDy_obPc_9X7o9csON9rpKN1k7M,5272
|
|
3
|
-
pulumi_digitalocean/_inputs.py,sha256=gvFD1OIyrmyRtLit7DNgkD17oRie9bfonsmf4Ew7CdE,389376
|
|
4
|
-
pulumi_digitalocean/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
5
|
-
pulumi_digitalocean/app.py,sha256=Q4y7VwoYh-PCY9mkGkv7Z8FIlkqkLP-wzJzJuBdvN6I,18925
|
|
6
|
-
pulumi_digitalocean/cdn.py,sha256=DevyiE3s7tH2pEIIKG2TC3fJbZYqzglPBX2QqmDqAc0,22261
|
|
7
|
-
pulumi_digitalocean/certificate.py,sha256=R8uU6rIgyBWXRWIpfIEOKqEdPsr38nQ-gCtMDQ2GsJo,28259
|
|
8
|
-
pulumi_digitalocean/container_registry.py,sha256=vjf5YBfrp8OSA_a10MuwTNmiwomA3ZcxdJ0eZxqtOUQ,16663
|
|
9
|
-
pulumi_digitalocean/container_registry_docker_credentials.py,sha256=LnTtMLPHk1OQY6UXlfcUWbTGI7tFaw_12IoQdBZgt5w,15967
|
|
10
|
-
pulumi_digitalocean/custom_image.py,sha256=QBejn4pbFtLSnuXyavN_baKvmO5WJzOtdiH8EC2iyP8,27105
|
|
11
|
-
pulumi_digitalocean/database_cluster.py,sha256=sMH8yBPQ1d8HGcsxjwywp_2aFmeGI2dq2giEAVYqZfc,57159
|
|
12
|
-
pulumi_digitalocean/database_connection_pool.py,sha256=KqQ1lbhSn0hudbhNM-0z3yHxtEgwdi1kb4-JsNv_Ws0,25107
|
|
13
|
-
pulumi_digitalocean/database_db.py,sha256=MeqssWhutty8FqYIiKmB-gcnsKkxeoF4zHAMVHk2qdc,9404
|
|
14
|
-
pulumi_digitalocean/database_firewall.py,sha256=P52uD0waIEfM0TeYjrjiLCrqBBIpMDN64ehtnLUjAO8,15171
|
|
15
|
-
pulumi_digitalocean/database_kafka_topic.py,sha256=90q0g7ROdn_qzrgbvnXR4QsGwzzuFvdrwGHYW4-LnVU,21700
|
|
16
|
-
pulumi_digitalocean/database_mysql_config.py,sha256=3OnIV7Z1TeIp9crA7MZBuTTx-CZdmvQunK6q1wlaEz0,82158
|
|
17
|
-
pulumi_digitalocean/database_redis_config.py,sha256=UctMiK_beJ30-Yp6lgCYATEiH3zmEG23VKLgrAwPCiY,38179
|
|
18
|
-
pulumi_digitalocean/database_replica.py,sha256=ifwWPnStotgGEnz5WpLIOpIGJBggvPXSFu3PR17EBJQ,31414
|
|
19
|
-
pulumi_digitalocean/database_user.py,sha256=ntby170ucErw_kC3cHu6aAEc1QW5zUZTkbXU6kRURcI,24639
|
|
20
|
-
pulumi_digitalocean/dns_record.py,sha256=UN6Vmf8debDZeXc7ZEi-ZfS8xsq8gveMiDChp3MWrBU,27028
|
|
21
|
-
pulumi_digitalocean/domain.py,sha256=KtTJDeZW0VBegTNcDGtba6ayiTcttdC-ULeTM7DLfz4,10740
|
|
22
|
-
pulumi_digitalocean/droplet.py,sha256=IoXJGK4h0Vmc7rNm_ovEzifSCT8ayCt-3fI3T_tq_Uc,68698
|
|
23
|
-
pulumi_digitalocean/droplet_snapshot.py,sha256=i4u4CLLfbVTgwyyjhEiUbzfLzFqD8f6dAdQIiD17Cq4,14001
|
|
24
|
-
pulumi_digitalocean/firewall.py,sha256=ZRypUKZY4XF_QjjlIulKrKrcmtaLOFvEhPXheT6AEbE,26804
|
|
25
|
-
pulumi_digitalocean/floating_ip.py,sha256=xHCTfKZnEjyIW4G_tsi92tDVhtLfW09mgCNZqbwbWpU,13069
|
|
26
|
-
pulumi_digitalocean/floating_ip_assignment.py,sha256=8OQLhY8aiG7UyUyXNYx_kiI7pRgFS6JKgda-Qk8RGew,10657
|
|
27
|
-
pulumi_digitalocean/get_account.py,sha256=ssADZl7G3UART4P5S8nF7i8t43w-Poa4nyZ0JUt0Cek,6058
|
|
28
|
-
pulumi_digitalocean/get_app.py,sha256=D8aG_gJ2widex9Gzz-z5zu6KLQmm0TB_Qo8S5taS_-g,7209
|
|
29
|
-
pulumi_digitalocean/get_certificate.py,sha256=spOKOmpDxr1t8_ujFSrHitU5-qMRb96_3l3P1jwUsMo,6501
|
|
30
|
-
pulumi_digitalocean/get_container_registry.py,sha256=m_o-2GNo5EuTVaNejkW7EUM-N2fMjAExFLEhJ8qM7nE,7264
|
|
31
|
-
pulumi_digitalocean/get_database_ca.py,sha256=ow8DL1uoHunpfgVda65-4GPgeYrr14R9YR3OEFicjDM,3792
|
|
32
|
-
pulumi_digitalocean/get_database_cluster.py,sha256=kIaR2YD0PrJhDMYaqvjcahDJCRLcN65tbDIDKV_vU2M,12708
|
|
33
|
-
pulumi_digitalocean/get_database_connection_pool.py,sha256=qUoMaEVFtFPadjlj0cjvfqiNM28RvwPKE81qlYpGqaQ,9024
|
|
34
|
-
pulumi_digitalocean/get_database_replica.py,sha256=-VWCXeIwHv1OvDW0GZsUGsnqiKTKUn6u0v-CLxNX-dY,10587
|
|
35
|
-
pulumi_digitalocean/get_database_user.py,sha256=UNinVX6-Dh1iudeLz6iyNoXdUiasrMVGUGHrH-lZRgM,7228
|
|
36
|
-
pulumi_digitalocean/get_domain.py,sha256=UAYbt34dxZ7yINcVETetmxHJqdecV0GYpEWp-Pk6o1c,5075
|
|
37
|
-
pulumi_digitalocean/get_domains.py,sha256=3RyFRXgyZTv79Kcsn-Xb5tl_Npd3gDyhL7BtCEfq3E0,6200
|
|
38
|
-
pulumi_digitalocean/get_droplet.py,sha256=SkqlDrtzfsStEc3mmjRVYgkWrEMWhxbTuwBcrWOFWdo,16679
|
|
39
|
-
pulumi_digitalocean/get_droplet_snapshot.py,sha256=xClI1p5q_OSI5nqP-RzRGdpHv9Ujn0pZUP3CYbmBUS4,10419
|
|
40
|
-
pulumi_digitalocean/get_droplets.py,sha256=W5nbODHd_Tr3Z-GP5V6gGcFCG8keHyi89i-BVlyFjJo,7556
|
|
41
|
-
pulumi_digitalocean/get_firewall.py,sha256=AyzZknrKduoia8vdN6Iyvg9aLxstX--v2zxxliol7dY,9100
|
|
42
|
-
pulumi_digitalocean/get_floating_ip.py,sha256=EI-eLrew8N2jh11Rv0e80zYfmjxCCPztV4TCFqZsefc,5976
|
|
43
|
-
pulumi_digitalocean/get_image.py,sha256=y3M5pxTav6-eO6bay0F60-6EBJDYFfkYx15uFnHA_QU,12582
|
|
44
|
-
pulumi_digitalocean/get_images.py,sha256=qFFORIm3MTq7Y9rf_PKscr4lARftmkVgHG6NgxhFWYc,7455
|
|
45
|
-
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=anoeM1MXeWCwJD2SJMVSatxgiLI4b9LWl5-hZwKVj8o,12929
|
|
46
|
-
pulumi_digitalocean/get_kubernetes_versions.py,sha256=ax8XtgPJmjqBstxCIoFSwfK0O_v6VunO-mTNfLiN1nY,7301
|
|
47
|
-
pulumi_digitalocean/get_load_balancer.py,sha256=AlIjqtY5Fnbrt-cI7BwoyDXDLRUPku-I5aUy8qR9LLE,14699
|
|
48
|
-
pulumi_digitalocean/get_project.py,sha256=pspnJJsRlY6AFEUXZlR4dFKpWHP8VLdDVRjIK5wjAL0,8179
|
|
49
|
-
pulumi_digitalocean/get_projects.py,sha256=ekcghsS54H9b49nBbBLs_NC89UeDbC11Zvo0jLJ65WY,7365
|
|
50
|
-
pulumi_digitalocean/get_record.py,sha256=nSW90M9k4r7NMScjCZFDVmwcMTl-c-N_XyM6Oi6XU2M,8030
|
|
51
|
-
pulumi_digitalocean/get_records.py,sha256=o7kbwbpctaIjM7CYz3lQaVsEMdeO4Bbo6KVai4XYcOE,5144
|
|
52
|
-
pulumi_digitalocean/get_region.py,sha256=Bw-ZGWyO5vYmUqEhmF5nAs_CvjXp7Fu97cWBokWBltY,5229
|
|
53
|
-
pulumi_digitalocean/get_regions.py,sha256=H_WdpVRre9aGMh9WopxqKMOpZdj5ZeHRogAXR1JcT7A,7131
|
|
54
|
-
pulumi_digitalocean/get_reserved_ip.py,sha256=kzChWHv7-trl7X0tKShvMMh_sV_VvlLPiJiYCsX4AH8,4774
|
|
55
|
-
pulumi_digitalocean/get_sizes.py,sha256=s4J4echse-Ljgp4XcUdl2L_eT5FsQ86UgBYGgkAzNRk,4387
|
|
56
|
-
pulumi_digitalocean/get_spaces_bucket.py,sha256=McHqpn704nzsKg2Kok5BtgnfQXnW-adGqQBoWPFPeVs,5934
|
|
57
|
-
pulumi_digitalocean/get_spaces_bucket_object.py,sha256=qs5o9n5ZPgp7OlrTLtuYbg2Bl_Wce9D5HDpL6EBEZ1I,15385
|
|
58
|
-
pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=R66E4i5yXviK2wPObJusyqXDhcwcv-V6M-aGbZCxuC4,8563
|
|
59
|
-
pulumi_digitalocean/get_spaces_buckets.py,sha256=_B4yeYWEO9NdVfr40AwHMlXsg675B-t_OFcaeZ34YkQ,6954
|
|
60
|
-
pulumi_digitalocean/get_ssh_key.py,sha256=I4adbMAg6qp7Xf8QoBOHvkxaDUQWLX6Xs5o6gltzMyA,4868
|
|
61
|
-
pulumi_digitalocean/get_ssh_keys.py,sha256=2wW7rHtVGzSHK37xYM5SExXjT0_ZAOuuAfQ1ED3LckE,6407
|
|
62
|
-
pulumi_digitalocean/get_tag.py,sha256=Ne3Tbpuy71EckpMhPxeyMd8LUWY9vVKLL5aZm6X7xT0,7310
|
|
63
|
-
pulumi_digitalocean/get_tags.py,sha256=ucnJrM_E6m8I0kLfnBPdLgQegqX29mIXkLXgHpLDdyY,5023
|
|
64
|
-
pulumi_digitalocean/get_volume.py,sha256=Lrp3J4u0ENZSVt_gKdAW8UicbnydRq6w8MgA3jq54l4,9241
|
|
65
|
-
pulumi_digitalocean/get_volume_snapshot.py,sha256=y7cgqbcsDu4hadY1KLuzoh6e1EG_maFjFO2Lz6ekQK4,10853
|
|
66
|
-
pulumi_digitalocean/get_vpc.py,sha256=aivIt3K7YYx0D6JV-Crh5a9cnAF6gZiltlUEIVPg-9o,7947
|
|
67
|
-
pulumi_digitalocean/kubernetes_cluster.py,sha256=-q5CIBwrFENwUkcCPW8BRGXQBnfQswxynLL7qX-Ys6g,50972
|
|
68
|
-
pulumi_digitalocean/kubernetes_node_pool.py,sha256=jzRhQv1YDeRAvX-e94kxyAdKZKsnqnxCzfYW4BCOUp4,37583
|
|
69
|
-
pulumi_digitalocean/load_balancer.py,sha256=h-ysd3r1l9rZV1AsjwKVzVsdxqXmNpUMYv0d83o5gvo,64700
|
|
70
|
-
pulumi_digitalocean/monitor_alert.py,sha256=JS28U21XPKRo6WgctayQU8gejO2O3rOInsIdMb9kS2E,37258
|
|
71
|
-
pulumi_digitalocean/outputs.py,sha256=6CVSmYJ5smh5UNEbWRL2PCbKwI84JeMowt9ljYiPloM,561665
|
|
72
|
-
pulumi_digitalocean/project.py,sha256=i1koIbrdao1MkC_U9Bo00tRIJUu2sdhmFMUey35qOu8,24482
|
|
73
|
-
pulumi_digitalocean/project_resources.py,sha256=JJXSwkeGSXrpTPWGYbRLKw63WSCo23wYziFGGeUneeQ,10273
|
|
74
|
-
pulumi_digitalocean/provider.py,sha256=jyrlf821aiTGilsy1pomMx_3ueAlDxJ-zzFBByAVSy8,14459
|
|
75
|
-
pulumi_digitalocean/pulumi-plugin.json,sha256=RIR6mhnpAFj53tNsEmOEQl3HvslmxYJf914-K7sJkd8,49
|
|
76
|
-
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
pulumi_digitalocean/reserved_ip.py,sha256=n1Dy6zm9tBxaJrJpfn5GPmCLewBSX6tAgS9xbQxMWgY,12743
|
|
78
|
-
pulumi_digitalocean/reserved_ip_assignment.py,sha256=Tj_YIREhYvkprxV1Hx3DMq5c62-_d7ogj_jKasShiLk,10315
|
|
79
|
-
pulumi_digitalocean/spaces_bucket.py,sha256=YdmmZXizgqrF7FiCiGcE-2sevs4gn2XMjlZPc1IrMfA,30921
|
|
80
|
-
pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=MpVw1YLlhNqe7OOe9UrmAFiOu845Nq08iXvmKorrUeY,13409
|
|
81
|
-
pulumi_digitalocean/spaces_bucket_object.py,sha256=Q8P86EKA4lmHBpjWbgq6sGgBVQ38f8Uf0qswuaY6OJI,53064
|
|
82
|
-
pulumi_digitalocean/spaces_bucket_policy.py,sha256=xO0i1N5FpX2cIjRJCZSIwPsRh1v-M7Fi5Uak_khGgeY,12569
|
|
83
|
-
pulumi_digitalocean/ssh_key.py,sha256=0OFI64RqYe5NSpwsLF4oe7NJ0Ymd79MUapciMiOtyfo,10585
|
|
84
|
-
pulumi_digitalocean/tag.py,sha256=R19RoMEvFo2IA22-3WSpgVc6zi2qIQoVSp-ogiwOZ28,14430
|
|
85
|
-
pulumi_digitalocean/uptime_alert.py,sha256=ZYCap2S06aD8VKtCxOvw4K5NONsfQqKky62KGHMBFo0,20553
|
|
86
|
-
pulumi_digitalocean/uptime_check.py,sha256=KOnIzMSxWn6gh7AVIem2WQlJB5uBN2K0PL4ZC7Pqy4Y,14487
|
|
87
|
-
pulumi_digitalocean/volume.py,sha256=kR6mx_YA_3fRiFIr6ra-9HFxW4WtJuHL9sxEqgu5TcY,34134
|
|
88
|
-
pulumi_digitalocean/volume_attachment.py,sha256=5YpaDKF2aRKFrBpgeIXKXcbIWfaAuuWr9BITPc8mnrs,9727
|
|
89
|
-
pulumi_digitalocean/volume_snapshot.py,sha256=7ATrOQWFDN05Kz_4vdtOCSTFZVW4l416zGKpfNNq9uQ,15918
|
|
90
|
-
pulumi_digitalocean/vpc.py,sha256=P99c5jBf5_0FLVjwjVFzPo8I8F25HWytTBUgVDrlh08,18934
|
|
91
|
-
pulumi_digitalocean/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
92
|
-
pulumi_digitalocean/config/__init__.pyi,sha256=mOcX528kloQX4grC61mM9t0dkWIuJplgcjOwMpO2-p4,1144
|
|
93
|
-
pulumi_digitalocean/config/vars.py,sha256=9eJyHt4CXIMf8k8_Y706-k_1ViDDeJgMHKy-aAtojzk,2332
|
|
94
|
-
pulumi_digitalocean-4.27.0a1710332933.dist-info/METADATA,sha256=45RR2GKZKwlRH6-ESxnWyiTmC8UmPk01o3TUjA3pGE0,3786
|
|
95
|
-
pulumi_digitalocean-4.27.0a1710332933.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
96
|
-
pulumi_digitalocean-4.27.0a1710332933.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
97
|
-
pulumi_digitalocean-4.27.0a1710332933.dist-info/RECORD,,
|
|
File without changes
|