pulumi-digitalocean 4.46.0a1747979086__py3-none-any.whl → 4.56.0a1766428645__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_digitalocean/__init__.py +195 -2
- pulumi_digitalocean/_enums.py +10 -10
- pulumi_digitalocean/_inputs.py +16851 -4937
- pulumi_digitalocean/_utilities.py +1 -1
- pulumi_digitalocean/app.py +237 -89
- pulumi_digitalocean/byoip_prefix.py +452 -0
- pulumi_digitalocean/cdn.py +105 -106
- pulumi_digitalocean/certificate.py +138 -139
- pulumi_digitalocean/config/__init__.py +2 -2
- pulumi_digitalocean/config/__init__.pyi +2 -3
- pulumi_digitalocean/config/vars.py +11 -12
- pulumi_digitalocean/container_registries.py +285 -0
- pulumi_digitalocean/container_registry.py +89 -90
- pulumi_digitalocean/container_registry_docker_credentials.py +83 -84
- pulumi_digitalocean/custom_image.py +176 -177
- pulumi_digitalocean/database_cluster.py +375 -348
- pulumi_digitalocean/database_connection_pool.py +158 -159
- pulumi_digitalocean/database_db.py +36 -37
- pulumi_digitalocean/database_firewall.py +22 -23
- pulumi_digitalocean/database_kafka_config.py +308 -309
- pulumi_digitalocean/database_kafka_schema_registry.py +360 -0
- pulumi_digitalocean/database_kafka_topic.py +82 -83
- pulumi_digitalocean/database_logsink_opensearch.py +680 -0
- pulumi_digitalocean/database_logsink_rsyslog.py +842 -0
- pulumi_digitalocean/database_mongodb_config.py +104 -105
- pulumi_digitalocean/database_mysql_config.py +478 -479
- pulumi_digitalocean/database_online_migration.py +460 -0
- pulumi_digitalocean/database_opensearch_config.py +665 -666
- pulumi_digitalocean/database_postgresql_config.py +858 -859
- pulumi_digitalocean/database_redis_config.py +210 -207
- pulumi_digitalocean/database_replica.py +198 -199
- pulumi_digitalocean/database_user.py +92 -93
- pulumi_digitalocean/database_valkey_config.py +776 -0
- pulumi_digitalocean/dns_record.py +181 -182
- pulumi_digitalocean/domain.py +54 -55
- pulumi_digitalocean/droplet.py +389 -390
- pulumi_digitalocean/droplet_autoscale.py +54 -55
- pulumi_digitalocean/droplet_snapshot.py +72 -73
- pulumi_digitalocean/firewall.py +79 -80
- pulumi_digitalocean/floating_ip.py +62 -63
- pulumi_digitalocean/floating_ip_assignment.py +36 -37
- pulumi_digitalocean/genai_agent.py +1903 -0
- pulumi_digitalocean/genai_agent_knowledge_base_attachment.py +198 -0
- pulumi_digitalocean/genai_agent_route.py +354 -0
- pulumi_digitalocean/genai_function.py +464 -0
- pulumi_digitalocean/genai_indexing_job_cancel.py +542 -0
- pulumi_digitalocean/genai_knowledge_base.py +627 -0
- pulumi_digitalocean/genai_knowledge_base_data_source.py +220 -0
- pulumi_digitalocean/genai_openai_api_key.py +386 -0
- pulumi_digitalocean/get_account.py +18 -19
- pulumi_digitalocean/get_app.py +28 -29
- pulumi_digitalocean/get_byoip_prefix.py +214 -0
- pulumi_digitalocean/get_byoip_prefix_resources.py +150 -0
- pulumi_digitalocean/get_certificate.py +22 -23
- pulumi_digitalocean/get_container_registries.py +151 -0
- pulumi_digitalocean/get_container_registry.py +22 -23
- pulumi_digitalocean/get_database_ca.py +12 -13
- pulumi_digitalocean/get_database_cluster.py +76 -63
- pulumi_digitalocean/get_database_connection_pool.py +36 -37
- pulumi_digitalocean/get_database_metrics_credentials.py +120 -0
- pulumi_digitalocean/get_database_replica.py +46 -47
- pulumi_digitalocean/get_database_user.py +27 -28
- pulumi_digitalocean/get_domain.py +16 -17
- pulumi_digitalocean/get_domains.py +7 -8
- pulumi_digitalocean/get_droplet.py +72 -73
- pulumi_digitalocean/get_droplet_autoscale.py +23 -24
- pulumi_digitalocean/get_droplet_snapshot.py +38 -39
- pulumi_digitalocean/get_droplets.py +13 -14
- pulumi_digitalocean/get_firewall.py +31 -32
- pulumi_digitalocean/get_floating_ip.py +16 -17
- pulumi_digitalocean/get_genai_agent.py +572 -0
- pulumi_digitalocean/get_genai_agent_versions.py +128 -0
- pulumi_digitalocean/get_genai_agents.py +128 -0
- pulumi_digitalocean/get_genai_agents_by_openai_api_key.py +97 -0
- pulumi_digitalocean/get_genai_indexing_job.py +239 -0
- pulumi_digitalocean/get_genai_indexing_job_data_sources.py +97 -0
- pulumi_digitalocean/get_genai_knowledge_base.py +259 -0
- pulumi_digitalocean/get_genai_knowledge_base_data_sources.py +97 -0
- pulumi_digitalocean/get_genai_knowledge_base_indexing_jobs.py +108 -0
- pulumi_digitalocean/get_genai_knowledge_bases.py +113 -0
- pulumi_digitalocean/get_genai_models.py +113 -0
- pulumi_digitalocean/get_genai_openai_api_key.py +152 -0
- pulumi_digitalocean/get_genai_openai_api_keys.py +113 -0
- pulumi_digitalocean/get_genai_regions.py +113 -0
- pulumi_digitalocean/get_image.py +50 -51
- pulumi_digitalocean/get_images.py +7 -8
- pulumi_digitalocean/get_kubernetes_cluster.py +117 -58
- pulumi_digitalocean/get_kubernetes_versions.py +14 -15
- pulumi_digitalocean/get_load_balancer.py +60 -61
- pulumi_digitalocean/get_nfs.py +205 -0
- pulumi_digitalocean/get_nfs_snapshot.py +188 -0
- pulumi_digitalocean/get_partner_attachment.py +61 -25
- pulumi_digitalocean/get_partner_attachment_service_key.py +118 -0
- pulumi_digitalocean/get_project.py +32 -33
- pulumi_digitalocean/get_projects.py +7 -8
- pulumi_digitalocean/get_record.py +32 -33
- pulumi_digitalocean/get_records.py +13 -14
- pulumi_digitalocean/get_region.py +18 -19
- pulumi_digitalocean/get_regions.py +7 -8
- pulumi_digitalocean/get_reserved_ip.py +16 -17
- pulumi_digitalocean/get_reserved_ipv6.py +16 -17
- pulumi_digitalocean/get_sizes.py +141 -8
- pulumi_digitalocean/get_spaces_bucket.py +22 -23
- pulumi_digitalocean/get_spaces_bucket_object.py +58 -59
- pulumi_digitalocean/get_spaces_bucket_objects.py +46 -47
- pulumi_digitalocean/get_spaces_buckets.py +7 -8
- pulumi_digitalocean/get_spaces_key.py +15 -16
- pulumi_digitalocean/get_ssh_key.py +14 -15
- pulumi_digitalocean/get_ssh_keys.py +7 -8
- pulumi_digitalocean/get_tag.py +22 -23
- pulumi_digitalocean/get_tags.py +7 -8
- pulumi_digitalocean/get_volume.py +34 -35
- pulumi_digitalocean/get_volume_snapshot.py +40 -41
- pulumi_digitalocean/get_vpc.py +30 -31
- pulumi_digitalocean/get_vpc_nat_gateway.py +263 -0
- pulumi_digitalocean/get_vpc_peering.py +24 -25
- pulumi_digitalocean/kubernetes_cluster.py +483 -296
- pulumi_digitalocean/kubernetes_node_pool.py +169 -170
- pulumi_digitalocean/load_balancer.py +375 -376
- pulumi_digitalocean/monitor_alert.py +150 -151
- pulumi_digitalocean/nfs.py +481 -0
- pulumi_digitalocean/nfs_attachment.py +289 -0
- pulumi_digitalocean/nfs_snapshot.py +379 -0
- pulumi_digitalocean/outputs.py +26671 -7785
- pulumi_digitalocean/partner_attachment.py +231 -110
- pulumi_digitalocean/project.py +140 -141
- pulumi_digitalocean/project_resources.py +36 -37
- pulumi_digitalocean/provider.py +85 -86
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- pulumi_digitalocean/reserved_ip.py +62 -63
- pulumi_digitalocean/reserved_ip_assignment.py +36 -37
- pulumi_digitalocean/reserved_ipv6.py +64 -65
- pulumi_digitalocean/reserved_ipv6_assignment.py +36 -37
- pulumi_digitalocean/spaces_bucket.py +106 -107
- pulumi_digitalocean/spaces_bucket_cors_configuration.py +39 -40
- pulumi_digitalocean/spaces_bucket_logging.py +70 -71
- pulumi_digitalocean/spaces_bucket_object.py +283 -284
- pulumi_digitalocean/spaces_bucket_policy.py +53 -54
- pulumi_digitalocean/spaces_key.py +49 -50
- pulumi_digitalocean/ssh_key.py +45 -46
- pulumi_digitalocean/tag.py +73 -74
- pulumi_digitalocean/uptime_alert.py +107 -108
- pulumi_digitalocean/uptime_check.py +87 -88
- pulumi_digitalocean/volume.py +182 -183
- pulumi_digitalocean/volume_attachment.py +36 -37
- pulumi_digitalocean/volume_snapshot.py +89 -90
- pulumi_digitalocean/vpc.py +97 -98
- pulumi_digitalocean/vpc_nat_gateway.py +722 -0
- pulumi_digitalocean/vpc_peering.py +54 -59
- {pulumi_digitalocean-4.46.0a1747979086.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/METADATA +1 -1
- pulumi_digitalocean-4.56.0a1766428645.dist-info/RECORD +154 -0
- {pulumi_digitalocean-4.46.0a1747979086.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/WHEEL +1 -1
- pulumi_digitalocean-4.46.0a1747979086.dist-info/RECORD +0 -113
- {pulumi_digitalocean-4.46.0a1747979086.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -20,55 +19,55 @@ __all__ = ['VpcPeeringArgs', 'VpcPeering']
|
|
|
20
19
|
@pulumi.input_type
|
|
21
20
|
class VpcPeeringArgs:
|
|
22
21
|
def __init__(__self__, *,
|
|
23
|
-
vpc_ids: pulumi.Input[Sequence[pulumi.Input[
|
|
24
|
-
name: Optional[pulumi.Input[
|
|
22
|
+
vpc_ids: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
23
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
25
24
|
"""
|
|
26
25
|
The set of arguments for constructing a VpcPeering resource.
|
|
27
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
28
|
-
:param pulumi.Input[
|
|
26
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
27
|
+
:param pulumi.Input[_builtins.str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
29
28
|
"""
|
|
30
29
|
pulumi.set(__self__, "vpc_ids", vpc_ids)
|
|
31
30
|
if name is not None:
|
|
32
31
|
pulumi.set(__self__, "name", name)
|
|
33
32
|
|
|
34
|
-
@property
|
|
33
|
+
@_builtins.property
|
|
35
34
|
@pulumi.getter(name="vpcIds")
|
|
36
|
-
def vpc_ids(self) -> pulumi.Input[Sequence[pulumi.Input[
|
|
35
|
+
def vpc_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
37
36
|
"""
|
|
38
37
|
A set of two VPC IDs to be peered.
|
|
39
38
|
"""
|
|
40
39
|
return pulumi.get(self, "vpc_ids")
|
|
41
40
|
|
|
42
41
|
@vpc_ids.setter
|
|
43
|
-
def vpc_ids(self, value: pulumi.Input[Sequence[pulumi.Input[
|
|
42
|
+
def vpc_ids(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
44
43
|
pulumi.set(self, "vpc_ids", value)
|
|
45
44
|
|
|
46
|
-
@property
|
|
45
|
+
@_builtins.property
|
|
47
46
|
@pulumi.getter
|
|
48
|
-
def name(self) -> Optional[pulumi.Input[
|
|
47
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
49
48
|
"""
|
|
50
49
|
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
51
50
|
"""
|
|
52
51
|
return pulumi.get(self, "name")
|
|
53
52
|
|
|
54
53
|
@name.setter
|
|
55
|
-
def name(self, value: Optional[pulumi.Input[
|
|
54
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
56
55
|
pulumi.set(self, "name", value)
|
|
57
56
|
|
|
58
57
|
|
|
59
58
|
@pulumi.input_type
|
|
60
59
|
class _VpcPeeringState:
|
|
61
60
|
def __init__(__self__, *,
|
|
62
|
-
created_at: Optional[pulumi.Input[
|
|
63
|
-
name: Optional[pulumi.Input[
|
|
64
|
-
status: Optional[pulumi.Input[
|
|
65
|
-
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
61
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
62
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
63
|
+
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
64
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
66
65
|
"""
|
|
67
66
|
Input properties used for looking up and filtering VpcPeering resources.
|
|
68
|
-
:param pulumi.Input[
|
|
69
|
-
:param pulumi.Input[
|
|
70
|
-
:param pulumi.Input[
|
|
71
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
67
|
+
:param pulumi.Input[_builtins.str] created_at: The date and time of when the VPC Peering was created.
|
|
68
|
+
:param pulumi.Input[_builtins.str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
69
|
+
:param pulumi.Input[_builtins.str] status: The status of the VPC Peering.
|
|
70
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
72
71
|
"""
|
|
73
72
|
if created_at is not None:
|
|
74
73
|
pulumi.set(__self__, "created_at", created_at)
|
|
@@ -79,52 +78,52 @@ class _VpcPeeringState:
|
|
|
79
78
|
if vpc_ids is not None:
|
|
80
79
|
pulumi.set(__self__, "vpc_ids", vpc_ids)
|
|
81
80
|
|
|
82
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
83
82
|
@pulumi.getter(name="createdAt")
|
|
84
|
-
def created_at(self) -> Optional[pulumi.Input[
|
|
83
|
+
def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
85
84
|
"""
|
|
86
85
|
The date and time of when the VPC Peering was created.
|
|
87
86
|
"""
|
|
88
87
|
return pulumi.get(self, "created_at")
|
|
89
88
|
|
|
90
89
|
@created_at.setter
|
|
91
|
-
def created_at(self, value: Optional[pulumi.Input[
|
|
90
|
+
def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
92
91
|
pulumi.set(self, "created_at", value)
|
|
93
92
|
|
|
94
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
95
94
|
@pulumi.getter
|
|
96
|
-
def name(self) -> Optional[pulumi.Input[
|
|
95
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97
96
|
"""
|
|
98
97
|
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
99
98
|
"""
|
|
100
99
|
return pulumi.get(self, "name")
|
|
101
100
|
|
|
102
101
|
@name.setter
|
|
103
|
-
def name(self, value: Optional[pulumi.Input[
|
|
102
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
104
103
|
pulumi.set(self, "name", value)
|
|
105
104
|
|
|
106
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
107
106
|
@pulumi.getter
|
|
108
|
-
def status(self) -> Optional[pulumi.Input[
|
|
107
|
+
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
109
108
|
"""
|
|
110
109
|
The status of the VPC Peering.
|
|
111
110
|
"""
|
|
112
111
|
return pulumi.get(self, "status")
|
|
113
112
|
|
|
114
113
|
@status.setter
|
|
115
|
-
def status(self, value: Optional[pulumi.Input[
|
|
114
|
+
def status(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
116
115
|
pulumi.set(self, "status", value)
|
|
117
116
|
|
|
118
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
119
118
|
@pulumi.getter(name="vpcIds")
|
|
120
|
-
def vpc_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
119
|
+
def vpc_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
121
120
|
"""
|
|
122
121
|
A set of two VPC IDs to be peered.
|
|
123
122
|
"""
|
|
124
123
|
return pulumi.get(self, "vpc_ids")
|
|
125
124
|
|
|
126
125
|
@vpc_ids.setter
|
|
127
|
-
def vpc_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
126
|
+
def vpc_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
128
127
|
pulumi.set(self, "vpc_ids", value)
|
|
129
128
|
|
|
130
129
|
|
|
@@ -134,12 +133,10 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
134
133
|
def __init__(__self__,
|
|
135
134
|
resource_name: str,
|
|
136
135
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
137
|
-
name: Optional[pulumi.Input[
|
|
138
|
-
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
136
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
137
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
139
138
|
__props__=None):
|
|
140
139
|
"""
|
|
141
|
-
> 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.
|
|
142
|
-
|
|
143
140
|
Provides a DigitalOcean VPC Peering resource.
|
|
144
141
|
|
|
145
142
|
VPC Peerings are used to connect two VPC networks allowing resources in each
|
|
@@ -204,8 +201,8 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
204
201
|
|
|
205
202
|
:param str resource_name: The name of the resource.
|
|
206
203
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
207
|
-
:param pulumi.Input[
|
|
208
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
204
|
+
:param pulumi.Input[_builtins.str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
205
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
209
206
|
"""
|
|
210
207
|
...
|
|
211
208
|
@overload
|
|
@@ -214,8 +211,6 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
214
211
|
args: VpcPeeringArgs,
|
|
215
212
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
216
213
|
"""
|
|
217
|
-
> 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.
|
|
218
|
-
|
|
219
214
|
Provides a DigitalOcean VPC Peering resource.
|
|
220
215
|
|
|
221
216
|
VPC Peerings are used to connect two VPC networks allowing resources in each
|
|
@@ -293,8 +288,8 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
293
288
|
def _internal_init(__self__,
|
|
294
289
|
resource_name: str,
|
|
295
290
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
296
|
-
name: Optional[pulumi.Input[
|
|
297
|
-
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
291
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
292
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
298
293
|
__props__=None):
|
|
299
294
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
300
295
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -320,10 +315,10 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
320
315
|
def get(resource_name: str,
|
|
321
316
|
id: pulumi.Input[str],
|
|
322
317
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
323
|
-
created_at: Optional[pulumi.Input[
|
|
324
|
-
name: Optional[pulumi.Input[
|
|
325
|
-
status: Optional[pulumi.Input[
|
|
326
|
-
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
318
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
319
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
320
|
+
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
321
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None) -> 'VpcPeering':
|
|
327
322
|
"""
|
|
328
323
|
Get an existing VpcPeering resource's state with the given name, id, and optional extra
|
|
329
324
|
properties used to qualify the lookup.
|
|
@@ -331,10 +326,10 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
331
326
|
:param str resource_name: The unique name of the resulting resource.
|
|
332
327
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
333
328
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
334
|
-
:param pulumi.Input[
|
|
335
|
-
:param pulumi.Input[
|
|
336
|
-
:param pulumi.Input[
|
|
337
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
329
|
+
:param pulumi.Input[_builtins.str] created_at: The date and time of when the VPC Peering was created.
|
|
330
|
+
:param pulumi.Input[_builtins.str] name: A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
331
|
+
:param pulumi.Input[_builtins.str] status: The status of the VPC Peering.
|
|
332
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] vpc_ids: A set of two VPC IDs to be peered.
|
|
338
333
|
"""
|
|
339
334
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
340
335
|
|
|
@@ -346,33 +341,33 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
346
341
|
__props__.__dict__["vpc_ids"] = vpc_ids
|
|
347
342
|
return VpcPeering(resource_name, opts=opts, __props__=__props__)
|
|
348
343
|
|
|
349
|
-
@property
|
|
344
|
+
@_builtins.property
|
|
350
345
|
@pulumi.getter(name="createdAt")
|
|
351
|
-
def created_at(self) -> pulumi.Output[
|
|
346
|
+
def created_at(self) -> pulumi.Output[_builtins.str]:
|
|
352
347
|
"""
|
|
353
348
|
The date and time of when the VPC Peering was created.
|
|
354
349
|
"""
|
|
355
350
|
return pulumi.get(self, "created_at")
|
|
356
351
|
|
|
357
|
-
@property
|
|
352
|
+
@_builtins.property
|
|
358
353
|
@pulumi.getter
|
|
359
|
-
def name(self) -> pulumi.Output[
|
|
354
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
360
355
|
"""
|
|
361
356
|
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
362
357
|
"""
|
|
363
358
|
return pulumi.get(self, "name")
|
|
364
359
|
|
|
365
|
-
@property
|
|
360
|
+
@_builtins.property
|
|
366
361
|
@pulumi.getter
|
|
367
|
-
def status(self) -> pulumi.Output[
|
|
362
|
+
def status(self) -> pulumi.Output[_builtins.str]:
|
|
368
363
|
"""
|
|
369
364
|
The status of the VPC Peering.
|
|
370
365
|
"""
|
|
371
366
|
return pulumi.get(self, "status")
|
|
372
367
|
|
|
373
|
-
@property
|
|
368
|
+
@_builtins.property
|
|
374
369
|
@pulumi.getter(name="vpcIds")
|
|
375
|
-
def vpc_ids(self) -> pulumi.Output[Sequence[
|
|
370
|
+
def vpc_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
376
371
|
"""
|
|
377
372
|
A set of two VPC IDs to be peered.
|
|
378
373
|
"""
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
pulumi_digitalocean/__init__.py,sha256=OeY8M8BKaidVsfl7NlGhCxCIT546Ff21dxi653A--s8,19281
|
|
2
|
+
pulumi_digitalocean/_enums.py,sha256=BjPVHb6LBzb5rTS4gHQ4xcGbGDQyrw1B5GDlI4Yqdr8,10220
|
|
3
|
+
pulumi_digitalocean/_inputs.py,sha256=-j29jB71L-bWJlfZ91asIBTQ6bvh01gsBkzJeECOSvA,1106908
|
|
4
|
+
pulumi_digitalocean/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
5
|
+
pulumi_digitalocean/app.py,sha256=qAnmXi49p1ltx7g6TK_hdVKVjJLZiHiH8ZnwZV58fwE,32301
|
|
6
|
+
pulumi_digitalocean/byoip_prefix.py,sha256=Fvl8S0Zk0gfVYD17N47KJezS5Jj3ORID0KECAXbuKek,19598
|
|
7
|
+
pulumi_digitalocean/cdn.py,sha256=vFT92zO_tpmpm1VDIA_7NJLVkxMl_MYZpmL79dkYNzU,22867
|
|
8
|
+
pulumi_digitalocean/certificate.py,sha256=TuZINt-SHeFcVCvLbJWGs-BCkAuTo4CaM2KfvWju8HE,29809
|
|
9
|
+
pulumi_digitalocean/container_registries.py,sha256=XhlTUdbDP0Iufi2woUkHN-tRkFd2Ar3HjS7g0Gks2Ck,12049
|
|
10
|
+
pulumi_digitalocean/container_registry.py,sha256=16t_9Y1QtEooeO6cwrpkT_SMvUKcBPeeOFF2HFWssxw,17705
|
|
11
|
+
pulumi_digitalocean/container_registry_docker_credentials.py,sha256=wX8S82HboowyOXQdZAEOqjvj_ZPIwVtrE7yACE11S50,18245
|
|
12
|
+
pulumi_digitalocean/custom_image.py,sha256=Q2plMzQiEiuJywqTh5IB5otoTQarrw5Xz3U6nlZAvqg,29220
|
|
13
|
+
pulumi_digitalocean/database_cluster.py,sha256=szn8481HM5WLIXdF6cNBNztmblwkkYW4QxeEYAdKVxo,69836
|
|
14
|
+
pulumi_digitalocean/database_connection_pool.py,sha256=qoGxJhzl_kWQ3f9pJtGlbskaP3m42ZtvjvxJhipplyo,27001
|
|
15
|
+
pulumi_digitalocean/database_db.py,sha256=Cu7HFtbxW7cJACri3FlTzgncpPBoP1R63a8HbgIll-w,10076
|
|
16
|
+
pulumi_digitalocean/database_firewall.py,sha256=mG29TMfhXJEYnCV8E4dldCtfPtJ-p__na4SOsowIsvg,15838
|
|
17
|
+
pulumi_digitalocean/database_kafka_config.py,sha256=aVeIrYgzxlqjoGOFKC1AuW1V-3LkQYUvvJRUmhT5r8U,63255
|
|
18
|
+
pulumi_digitalocean/database_kafka_schema_registry.py,sha256=NVaKb4aJvpBRADaeb_SB-6vbTzLOMJsxIQfLlPD7XYA,14905
|
|
19
|
+
pulumi_digitalocean/database_kafka_topic.py,sha256=MuuQXviGjG6UvnGd_ZtMkh_E1_6IIKHUYt9-sXt0Fqg,22955
|
|
20
|
+
pulumi_digitalocean/database_logsink_opensearch.py,sha256=WLZFQdDWGFhDXGN9cTERWMfRrqNbOb4q_IoEe6MV888,31315
|
|
21
|
+
pulumi_digitalocean/database_logsink_rsyslog.py,sha256=FCZwHY5I0d4ZXh-jp0HLkQQXquO3bjNFOPudHNan29k,39323
|
|
22
|
+
pulumi_digitalocean/database_mongodb_config.py,sha256=YNRoBm3WwnMnFSS3PHPCghtd9r0F_lwbtcPBTso2MAc,33954
|
|
23
|
+
pulumi_digitalocean/database_mysql_config.py,sha256=lpXfSzrjB2tgw5_W0BFBxGZ-gZ8Fz8ri22F3BQsjFC4,87072
|
|
24
|
+
pulumi_digitalocean/database_online_migration.py,sha256=Gc-TmtBVFo5Przjtl98NoRjxy_orbEuXyGHstIAWfS8,20240
|
|
25
|
+
pulumi_digitalocean/database_opensearch_config.py,sha256=lWSoO8dx-TIqgUD1cykA0si5x9V1eVkHIBN_byxinXE,139789
|
|
26
|
+
pulumi_digitalocean/database_postgresql_config.py,sha256=96-z7UpGLcInYAxM0BRu_eO7OwNoyzNgPxJgmGQkAgg,169979
|
|
27
|
+
pulumi_digitalocean/database_redis_config.py,sha256=AtEvBM6aIbgjHPrdnpkzcP5P9DSMGTa3ULdI05oh_5o,42314
|
|
28
|
+
pulumi_digitalocean/database_replica.py,sha256=qkqzhiwKHCgv5ZQp-m8dmop8TRXYXCNz6l-CAnPaIUo,33732
|
|
29
|
+
pulumi_digitalocean/database_user.py,sha256=tuvzSzPMe1A2yxEQ8BTDIUHJ4QR4ALSBehko4Iabwxk,25945
|
|
30
|
+
pulumi_digitalocean/database_valkey_config.py,sha256=tOymIE07Uiyz0sAxR1A7koq4cX3GXNpyM-u26SEu0zI,45556
|
|
31
|
+
pulumi_digitalocean/dns_record.py,sha256=bmj63Cxou9YkKsukMUbJPwJusb5O1Yg4ovYviG7P6fo,29112
|
|
32
|
+
pulumi_digitalocean/domain.py,sha256=tRbBaWJiIFSEhKf-pEwu2astpKTb1uW91UsOnpHAClk,11282
|
|
33
|
+
pulumi_digitalocean/droplet.py,sha256=SR6Qxc4lrDN2UT1_dRjvOFYtc_S6OUdeH8PRsxLTjCU,77291
|
|
34
|
+
pulumi_digitalocean/droplet_autoscale.py,sha256=_R35ee-2RAI-nkugcwR8rUKlNV3Jfc99N43t-7LD1fA,21851
|
|
35
|
+
pulumi_digitalocean/droplet_snapshot.py,sha256=_tJP7gMAMIxhuze-hY3MLt5Avk8qQTyCSPCsr0tFWgY,15191
|
|
36
|
+
pulumi_digitalocean/firewall.py,sha256=3gNpDlVh4Usr_suXC8xBSks9n4RoXVo91JhWMSB6XEA,28621
|
|
37
|
+
pulumi_digitalocean/floating_ip.py,sha256=19062VkZIrKiMI01hPTKzQRZfi-28tL_bpw6s_rYhLY,13813
|
|
38
|
+
pulumi_digitalocean/floating_ip_assignment.py,sha256=SiegBBt00ZZ3b6vpaBFgD_1S5s50ZIxU25YIy5_CNZU,11121
|
|
39
|
+
pulumi_digitalocean/genai_agent.py,sha256=W_1Nc_ELgqi4OtqdP_Lmgv0g14vj9DWcWiQUw4F7Hhc,91246
|
|
40
|
+
pulumi_digitalocean/genai_agent_knowledge_base_attachment.py,sha256=5BM4EEyACEz0m6pTVuw3_OxRblWkhzHD8OGqmevCOr8,9053
|
|
41
|
+
pulumi_digitalocean/genai_agent_route.py,sha256=2LydmOq0HFUVDtyc86MYfpy6LEH0Q1Y5umrWxuYFXYI,14856
|
|
42
|
+
pulumi_digitalocean/genai_function.py,sha256=nI-O2p09_ecQbLkCpA-YbcQzlgs2zuveK_yXF8qnF-w,20424
|
|
43
|
+
pulumi_digitalocean/genai_indexing_job_cancel.py,sha256=a9OCm5IigT3zsnZdvbpHa3KA2xA64U3lzHPxUDRpOm4,23877
|
|
44
|
+
pulumi_digitalocean/genai_knowledge_base.py,sha256=GdNKnCsMB-U3j5aXwvdUpgTdCVM7MGX_sbjixqn1VY4,30433
|
|
45
|
+
pulumi_digitalocean/genai_knowledge_base_data_source.py,sha256=c0Sbu-28XwtjfAcwDDmyVfzoDUu7GC50cKypNqvpo1g,11586
|
|
46
|
+
pulumi_digitalocean/genai_openai_api_key.py,sha256=ZbkmVz49a_otzKgDGI7ad-wyVtP9q1JuqEzvXbWJtF4,15878
|
|
47
|
+
pulumi_digitalocean/get_account.py,sha256=M9gzfNnGMB8gPm8uGRC3NwuGhDUm8huV3VBgmQk4Tz4,7002
|
|
48
|
+
pulumi_digitalocean/get_app.py,sha256=21CADiN2yoHLfpt1wkdoByhDrfoczVYXOFQM4NHPB-U,10311
|
|
49
|
+
pulumi_digitalocean/get_byoip_prefix.py,sha256=Qfcz30mplc4enz-13J_1P9nc5DolsHktLmv-aCKKm40,7573
|
|
50
|
+
pulumi_digitalocean/get_byoip_prefix_resources.py,sha256=Htw4iNmQkF56UE9YgmFhUFQhkbVdK0ltQltMCQecP1o,6382
|
|
51
|
+
pulumi_digitalocean/get_certificate.py,sha256=mVQ6mCvxWKW2o0I0cGawaZhm1_HpjAJHcf4zwcojF1I,7477
|
|
52
|
+
pulumi_digitalocean/get_container_registries.py,sha256=WFFeGrKM0bgA1oorJZd_yQu6lK2I5bR4dhoTbiq3RK4,6551
|
|
53
|
+
pulumi_digitalocean/get_container_registry.py,sha256=L8GkqfvveuyNSbRrmkRoWUJe3v-v7IA0jzGbhWmULeg,8317
|
|
54
|
+
pulumi_digitalocean/get_database_ca.py,sha256=3nZECUQxpiOBaTmu-ayGEKyqslSpi_doUQTZ0yP1ZYA,4424
|
|
55
|
+
pulumi_digitalocean/get_database_cluster.py,sha256=HDaKseqXR0GRJHn_dXWjwl3XwWSf3KvpJ9aOxGRkTOk,18875
|
|
56
|
+
pulumi_digitalocean/get_database_connection_pool.py,sha256=f4GuZGVrvDbpA5M7zaL-Rkq22wlWspxLoBKG6H4M5HI,10457
|
|
57
|
+
pulumi_digitalocean/get_database_metrics_credentials.py,sha256=1JKmDdq_r6jQPm9FHGz98xmgVOHbUo71DGER5eNhxHE,4748
|
|
58
|
+
pulumi_digitalocean/get_database_replica.py,sha256=3OABQ4h9ZeZFMMuGzwsyrht1ZK8xTRuNb1V_gBHQAk4,12331
|
|
59
|
+
pulumi_digitalocean/get_database_user.py,sha256=GbpTPtStGilOi7j8hFux9auk0xuprMNpc4ao86BqTbM,8380
|
|
60
|
+
pulumi_digitalocean/get_domain.py,sha256=y9Snyz4PQ6Z-Sj2Sa5hav7wztJAzKXMM16NO_8_PFAg,5813
|
|
61
|
+
pulumi_digitalocean/get_domains.py,sha256=6XfhLFcCWLs58wZhDLxvnCHClUi4whd-i6D4FFQcr9c,6914
|
|
62
|
+
pulumi_digitalocean/get_droplet.py,sha256=tjDCBFl4nFWK9opSzi1Jw6aNUXReaEWdH2VIN8irjKc,19811
|
|
63
|
+
pulumi_digitalocean/get_droplet_autoscale.py,sha256=-5chgctvnRPof_SElJFYHT7CRWkpPaU94oGltclX36A,7831
|
|
64
|
+
pulumi_digitalocean/get_droplet_snapshot.py,sha256=qLoReVUi23nzS-WboEncGgxErTWUv407S6C_mpzo7Xc,11812
|
|
65
|
+
pulumi_digitalocean/get_droplets.py,sha256=O_VqeB2oum84axJD_Jm7IcVKYSdabWt-SogFEsg7Yw4,9020
|
|
66
|
+
pulumi_digitalocean/get_firewall.py,sha256=YlMtlm_EYLkw3g_vrbOk9LFmL85sswd3ny58k5h8n24,10581
|
|
67
|
+
pulumi_digitalocean/get_floating_ip.py,sha256=mD4j7mQIdXGO9DIlF_GPWOi_N5rfCQxKKl0PGlU3gmk,6766
|
|
68
|
+
pulumi_digitalocean/get_genai_agent.py,sha256=vHEMDK-VtX8ubC-HGyljH6bVZYb2l8jl8cl9Rbd9ogw,29483
|
|
69
|
+
pulumi_digitalocean/get_genai_agent_versions.py,sha256=kEarOol-L1wVkfbiuR1ey9maKrNWGVV0ZFY15i9dZnE,5777
|
|
70
|
+
pulumi_digitalocean/get_genai_agents.py,sha256=OiHncsxnTkx0TUZpU-d1Fh8fbqCYLvTA7BIyawm8yJQ,5490
|
|
71
|
+
pulumi_digitalocean/get_genai_agents_by_openai_api_key.py,sha256=yYQitGdFqOAnL1iHzo_0afNcHO5XrQYhjJPyzgbTD_I,3971
|
|
72
|
+
pulumi_digitalocean/get_genai_indexing_job.py,sha256=OqAmCwPQCAP60qC_eTtj3vrwPYK0uKhIDkuu3A_HqrQ,11053
|
|
73
|
+
pulumi_digitalocean/get_genai_indexing_job_data_sources.py,sha256=hUeh13NFyl_qREKnmD_wC4JnaZVtPnhjMhSGS9rJneo,4528
|
|
74
|
+
pulumi_digitalocean/get_genai_knowledge_base.py,sha256=oTzs2Lx8DARcAFSVUHPlFrDf01NaswX5gYg4H78TlX4,12468
|
|
75
|
+
pulumi_digitalocean/get_genai_knowledge_base_data_sources.py,sha256=eCOz423w90BE4j3Z-UfMeSZpM7vvRYXnZ7Q31D5ODC0,4458
|
|
76
|
+
pulumi_digitalocean/get_genai_knowledge_base_indexing_jobs.py,sha256=p6i0xlXaFOXRsrH_yGYy4Ou_FgGJglpAd8IpfrtvRHU,4850
|
|
77
|
+
pulumi_digitalocean/get_genai_knowledge_bases.py,sha256=g4RwE_xynSkCy1V4OZOo5LfOu1ULXUMf0u7YeeRZPY0,5117
|
|
78
|
+
pulumi_digitalocean/get_genai_models.py,sha256=XGejGbNvaRAa69qWKH4awdpFKLFEhm8rkFpocMn-aVk,4664
|
|
79
|
+
pulumi_digitalocean/get_genai_openai_api_key.py,sha256=OpLI3z_7mG54Yt8SucygzdGBUyMzVlbmb30czxOSAgo,6210
|
|
80
|
+
pulumi_digitalocean/get_genai_openai_api_keys.py,sha256=8I0AOQ2CfMtfg1mEnuk1KawF3dvP0e7tjVrRs2n25Rg,5087
|
|
81
|
+
pulumi_digitalocean/get_genai_regions.py,sha256=vDtaqhyGIjmhdHRHXPuJkpM-SjHWAx-RDXUHOnBe91M,4715
|
|
82
|
+
pulumi_digitalocean/get_image.py,sha256=8QJJ3ykhnOiFdrSkHhNKiYpvMODYgUufdgC3XXJ32tc,14184
|
|
83
|
+
pulumi_digitalocean/get_images.py,sha256=sBCiv9W9OTzFVeRO91Wwfc8BZR7R9gylUfj_QDlzshQ,7860
|
|
84
|
+
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=yTyaYL6udtph8FPR-eexSOORUl8FvuGxps_0i3BqM14,25292
|
|
85
|
+
pulumi_digitalocean/get_kubernetes_versions.py,sha256=3P-wlq3dvRKJNZwJYB-6o7O9A4br4IUjdyJ0kpycA5A,7854
|
|
86
|
+
pulumi_digitalocean/get_load_balancer.py,sha256=XtnwIK6JwrSY5x5fC2mlyFRdD94yCQz7hDq-uNwC8s8,19517
|
|
87
|
+
pulumi_digitalocean/get_nfs.py,sha256=OqGZRylfaNE8W-Z9qLeRLzc-tTD-3X_xctVq9iPhbiw,6880
|
|
88
|
+
pulumi_digitalocean/get_nfs_snapshot.py,sha256=ZpKze3pJaQqvrJKnsiNI_4lomvgBBuHfOVHRpn7Wbr8,7258
|
|
89
|
+
pulumi_digitalocean/get_partner_attachment.py,sha256=gUh7Fy8_WddqpJCQbpFPl1mkvjnF70NR2O5bzUr1W9M,9245
|
|
90
|
+
pulumi_digitalocean/get_partner_attachment_service_key.py,sha256=09kEqyTcCCps9xVC5BCRRAJQ0Ug1c3082WP--AWjNbY,5050
|
|
91
|
+
pulumi_digitalocean/get_project.py,sha256=gKPG6oE6biCc-K0omtxW9NScgcIOWgb2Dvc8SV15iJQ,9466
|
|
92
|
+
pulumi_digitalocean/get_projects.py,sha256=eL6kTAgFWAs6yRm8bEGJ74kmmSZqdqudfy2C_PUwjvc,7780
|
|
93
|
+
pulumi_digitalocean/get_record.py,sha256=riJvX-rsLmqztbvNyn3ShO7P8dwgOGnsqsO61O0cuz4,9236
|
|
94
|
+
pulumi_digitalocean/get_records.py,sha256=8BFzvFnQ6ynNyQML8GcLNVkw5CX2J-gc7AtNsS1bsnY,7109
|
|
95
|
+
pulumi_digitalocean/get_region.py,sha256=R__wDW5ARiF0k1bawOITALGGYimhPt6AejC4Hqlpe0U,6034
|
|
96
|
+
pulumi_digitalocean/get_regions.py,sha256=5pCxFnInC_GPo8Jc9ILg8QuqKoPCzaBTQ3OxYvke_p4,7541
|
|
97
|
+
pulumi_digitalocean/get_reserved_ip.py,sha256=kekYydtvA5X0Ix5W4P2DDTV6M07Fl0UwaQxNCoGVc4w,5540
|
|
98
|
+
pulumi_digitalocean/get_reserved_ipv6.py,sha256=-VVLWisWtdC8prIe_XTbUoTIDRdQTgo0BuHs_1ufAWA,5359
|
|
99
|
+
pulumi_digitalocean/get_sizes.py,sha256=0YmOdNgTm-7CHXPReCaHcgWNtn-2OC7WKFv5vxpno5o,9069
|
|
100
|
+
pulumi_digitalocean/get_spaces_bucket.py,sha256=SFvrKm_STG47xGQwQLJoeChTjNE7GA5mLV75QLbPL6o,6846
|
|
101
|
+
pulumi_digitalocean/get_spaces_bucket_object.py,sha256=eLYhjDpd9ebA15SzXrdoGVr3SLuUXKmKOiEfY0zokIU,17726
|
|
102
|
+
pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=TKxdduTYuRaZI_Srr4S-r8jkm_faGuZszvVTZOonT_o,10253
|
|
103
|
+
pulumi_digitalocean/get_spaces_buckets.py,sha256=z2eoFR67xbJFkoW_7TXqTlJwB23044lgnpjbHoZYHD4,7447
|
|
104
|
+
pulumi_digitalocean/get_spaces_key.py,sha256=pZkE2dBBhnTX5qVKTPAL9GWLcHF3CGi6mTWTu51FNk8,5419
|
|
105
|
+
pulumi_digitalocean/get_ssh_key.py,sha256=5PEWdeYUQyf4WcrSAb7JTkJK-VP252weVeqVJgLldJ4,5648
|
|
106
|
+
pulumi_digitalocean/get_ssh_keys.py,sha256=40Q-YPdDtKvcrua6YiGXVnvpOR0A1eXtujqrKpSwRfo,6926
|
|
107
|
+
pulumi_digitalocean/get_tag.py,sha256=92NIzgXUsY8--haVoF9EdIiOpHQWRsgBdhYm55i6u4M,8484
|
|
108
|
+
pulumi_digitalocean/get_tags.py,sha256=yhHDLtXB4J2ebz7GJFcCk5S0qGsDAIGiHMCkwnTgiLY,5702
|
|
109
|
+
pulumi_digitalocean/get_volume.py,sha256=-xP3EadqynaquNTWHGuabnDnNelifC4CnUv2xr4M-Ho,10480
|
|
110
|
+
pulumi_digitalocean/get_volume_snapshot.py,sha256=HbZ6K2OyIUf6Hnl2RSN4pxr66FmSwguwvn9NZ2VdDPM,12240
|
|
111
|
+
pulumi_digitalocean/get_vpc.py,sha256=iSDCKZjWUPdN2odd93R1yWk7aGHCWNHJUB07r0SFO-w,9017
|
|
112
|
+
pulumi_digitalocean/get_vpc_nat_gateway.py,sha256=OHibjkrZgfHQptA3UBNJaeVh9b7KLE8JQoPT_IwsClQ,10474
|
|
113
|
+
pulumi_digitalocean/get_vpc_peering.py,sha256=2zcp7P1RkDBtZpFpUgPviUC8cySLabN--KNMihi5vk8,8177
|
|
114
|
+
pulumi_digitalocean/kubernetes_cluster.py,sha256=dBizlNzh8hFK4JmUOKebsGuX898DGMcvUIABGP7WntU,86870
|
|
115
|
+
pulumi_digitalocean/kubernetes_node_pool.py,sha256=aSR04-U6WloxWTIjWB5oi0lgsexXMbaUml1yy-umUL0,39509
|
|
116
|
+
pulumi_digitalocean/load_balancer.py,sha256=aM43Sk1FHGbWeBivKKbIGlIbYnTYEjAcgKP4SJ6zfq0,85253
|
|
117
|
+
pulumi_digitalocean/monitor_alert.py,sha256=U5JWEsFkO7Ln7_ANqW3-qgg6DMhcz85qxTEIvxNgm64,38632
|
|
118
|
+
pulumi_digitalocean/nfs.py,sha256=JtB65Eb7M8hfH7HbyEtNyEsJmN4JgJLJ2z1aiQeqLKY,19566
|
|
119
|
+
pulumi_digitalocean/nfs_attachment.py,sha256=uK9mfUf2y9tklOvwXIHdj2rVDUg_RjIuUZTQiJdqJ0o,11016
|
|
120
|
+
pulumi_digitalocean/nfs_snapshot.py,sha256=ThNr0kAX_Ep-BLeaN5ixjIozYaLSuLQvcteBeq5QGYE,14976
|
|
121
|
+
pulumi_digitalocean/outputs.py,sha256=Z85SyzxM5xzajAl3y4TKdnUN1YLN5IuMhFvbaYkqWw8,1445574
|
|
122
|
+
pulumi_digitalocean/partner_attachment.py,sha256=87QyA1Utqqokna7LiHhxxSgypbuEiuU1UNTrP3iPOJU,24553
|
|
123
|
+
pulumi_digitalocean/project.py,sha256=790IbhJNTJUWzp8fqPFPufAgmhGJNRTM-XumHNv-tqc,26058
|
|
124
|
+
pulumi_digitalocean/project_resources.py,sha256=hrnjVNtTaentjMbhlmFivfY0bqGT8DgO5DnMSlQzY_M,10859
|
|
125
|
+
pulumi_digitalocean/provider.py,sha256=ughfy0OUJdK9ZupsUhb1NiZq18nzq3QxaI2QQ2Pcxhc,16389
|
|
126
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=tdX7jGQXG3tz_92VBmo9SYipvyX6_TbVfS9Zy9K1IsE,89
|
|
127
|
+
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
+
pulumi_digitalocean/reserved_ip.py,sha256=6nadG79sbi7OQfGGUXS14R1ShYI8jf82Z2O03pzhLTs,13495
|
|
129
|
+
pulumi_digitalocean/reserved_ip_assignment.py,sha256=bcJyGcJ4qVrsoq-02QXc8CbNzZbihsyejtTGqy2Oims,10779
|
|
130
|
+
pulumi_digitalocean/reserved_ipv6.py,sha256=fj3NFxbcwUjfhVwPvt3MJA0D6Hl4--qoVZDZRsl55UY,11538
|
|
131
|
+
pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=GewJCUxhIpL5XCVCAk3yKzaM3Jjl1gvoFEDxTv6qF6Q,9287
|
|
132
|
+
pulumi_digitalocean/spaces_bucket.py,sha256=3dsGfyVGzk2hfJ-qSJKpiyyjCB6FBRID_pXJH1xG0E4,31521
|
|
133
|
+
pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=uN-g-3TeUt0gGWO1HH8VYVQH3p4EtHcBij8H_kZTeJA,14123
|
|
134
|
+
pulumi_digitalocean/spaces_bucket_logging.py,sha256=5gj2X-v2IUlF9WEXsTFn-BQ9OCvbYTAhP7k8oAxpVD8,14013
|
|
135
|
+
pulumi_digitalocean/spaces_bucket_object.py,sha256=F1UdlByLYEBkeyY5YpRswr9YaVVJVmrfWxtvH1C63ZA,55900
|
|
136
|
+
pulumi_digitalocean/spaces_bucket_policy.py,sha256=-MBs4SKyyD9eqsK9UanpX5VCgRiBH5_QDmxF4xt_amY,13089
|
|
137
|
+
pulumi_digitalocean/spaces_key.py,sha256=l3NAldoaKPb97CQmyDNon9-bdNhO8wbhqEHGvt4ouQ0,15097
|
|
138
|
+
pulumi_digitalocean/ssh_key.py,sha256=BaQ34jmdm8dJKKD1XDWYw5Z9-DRJsbcy0mzhcGRHYdc,11361
|
|
139
|
+
pulumi_digitalocean/tag.py,sha256=f8cRKYy3M7jNHgHGmYbzc9IC1Rd0PSR_1pRmLMsUG_E,15386
|
|
140
|
+
pulumi_digitalocean/uptime_alert.py,sha256=u5YYeCkjUYrLBGj-DriluAPdVvLr9lYHngyVOUJbkzw,21979
|
|
141
|
+
pulumi_digitalocean/uptime_check.py,sha256=WXV6-XaKtC7xm09bJGJ_BN_jg8r_KIRMJ0jvfXHTKOU,15573
|
|
142
|
+
pulumi_digitalocean/volume.py,sha256=D2urBBSbN-cwOJni2RuKeGAW_obyRL9vIx0bSTthlC0,35244
|
|
143
|
+
pulumi_digitalocean/volume_attachment.py,sha256=OtCjTHISsj37eaoBDgCbX-_iGxH_zCnE_Wwm-Kj8Egw,10355
|
|
144
|
+
pulumi_digitalocean/volume_snapshot.py,sha256=TzN2gM062ey25b9WtHbeRGAYbav0melTaotgZK0EksY,16964
|
|
145
|
+
pulumi_digitalocean/vpc.py,sha256=wqFMwnoI39ddVQURgw2UTLzzUekm4igAhUqGfI6uZmE,20116
|
|
146
|
+
pulumi_digitalocean/vpc_nat_gateway.py,sha256=W-6zkD7O43LMdIPYlFUGns127sahkEFY80jEYUSdexE,31615
|
|
147
|
+
pulumi_digitalocean/vpc_peering.py,sha256=gbvtHjLtydRs5a637xVOSozuWPwLsrOvWDU29oRC8uw,14371
|
|
148
|
+
pulumi_digitalocean/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
149
|
+
pulumi_digitalocean/config/__init__.pyi,sha256=14znViTkWM8dAhziCo0xx03AsaWPEY9Lg_eVKOdZ6zs,1317
|
|
150
|
+
pulumi_digitalocean/config/vars.py,sha256=OaThQn6yyBN7URJkzZseWEqUCPW2nzsjERvHzyq0SS8,2595
|
|
151
|
+
pulumi_digitalocean-4.56.0a1766428645.dist-info/METADATA,sha256=j8iY46qQq_czovUbuPUgyjP2SwktvSoKfpf_JojaotE,3852
|
|
152
|
+
pulumi_digitalocean-4.56.0a1766428645.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
153
|
+
pulumi_digitalocean-4.56.0a1766428645.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
154
|
+
pulumi_digitalocean-4.56.0a1766428645.dist-info/RECORD,,
|
|
@@ -1,113 +0,0 @@
|
|
|
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=CCDW4uqrXHAUfBH3c3V14LjdLdK6dOX_XxZjeStTH60,89
|
|
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.46.0a1747979086.dist-info/METADATA,sha256=GzfeJtFZBKZ6qmAFbNeqg3VYylnnvHH9c0755b3YYBg,3852
|
|
111
|
-
pulumi_digitalocean-4.46.0a1747979086.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
112
|
-
pulumi_digitalocean-4.46.0a1747979086.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
113
|
-
pulumi_digitalocean-4.46.0a1747979086.dist-info/RECORD,,
|
|
File without changes
|