pulumi-digitalocean 4.40.0a1739511652__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 +224 -1
- pulumi_digitalocean/_enums.py +19 -9
- pulumi_digitalocean/_inputs.py +17037 -4771
- pulumi_digitalocean/_utilities.py +1 -1
- pulumi_digitalocean/app.py +238 -88
- pulumi_digitalocean/byoip_prefix.py +452 -0
- pulumi_digitalocean/cdn.py +106 -105
- pulumi_digitalocean/certificate.py +139 -138
- pulumi_digitalocean/config/__init__.py +2 -1
- pulumi_digitalocean/config/__init__.pyi +2 -2
- pulumi_digitalocean/config/vars.py +11 -11
- pulumi_digitalocean/container_registries.py +285 -0
- pulumi_digitalocean/container_registry.py +90 -89
- pulumi_digitalocean/container_registry_docker_credentials.py +84 -83
- pulumi_digitalocean/custom_image.py +180 -179
- pulumi_digitalocean/database_cluster.py +402 -373
- pulumi_digitalocean/database_connection_pool.py +159 -158
- pulumi_digitalocean/database_db.py +37 -36
- pulumi_digitalocean/database_firewall.py +23 -22
- pulumi_digitalocean/database_kafka_config.py +309 -308
- pulumi_digitalocean/database_kafka_schema_registry.py +360 -0
- pulumi_digitalocean/database_kafka_topic.py +83 -82
- pulumi_digitalocean/database_logsink_opensearch.py +680 -0
- pulumi_digitalocean/database_logsink_rsyslog.py +842 -0
- pulumi_digitalocean/database_mongodb_config.py +105 -104
- pulumi_digitalocean/database_mysql_config.py +479 -478
- pulumi_digitalocean/database_online_migration.py +460 -0
- pulumi_digitalocean/database_opensearch_config.py +666 -665
- pulumi_digitalocean/database_postgresql_config.py +859 -858
- pulumi_digitalocean/database_redis_config.py +211 -206
- pulumi_digitalocean/database_replica.py +199 -198
- pulumi_digitalocean/database_user.py +93 -92
- pulumi_digitalocean/database_valkey_config.py +776 -0
- pulumi_digitalocean/dns_record.py +184 -183
- pulumi_digitalocean/domain.py +55 -54
- pulumi_digitalocean/droplet.py +403 -402
- pulumi_digitalocean/droplet_autoscale.py +55 -54
- pulumi_digitalocean/droplet_snapshot.py +73 -72
- pulumi_digitalocean/firewall.py +80 -79
- pulumi_digitalocean/floating_ip.py +63 -62
- pulumi_digitalocean/floating_ip_assignment.py +37 -36
- 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 -18
- pulumi_digitalocean/get_app.py +28 -28
- pulumi_digitalocean/get_byoip_prefix.py +214 -0
- pulumi_digitalocean/get_byoip_prefix_resources.py +150 -0
- pulumi_digitalocean/get_certificate.py +22 -22
- pulumi_digitalocean/get_container_registries.py +151 -0
- pulumi_digitalocean/get_container_registry.py +22 -22
- pulumi_digitalocean/get_database_ca.py +12 -12
- pulumi_digitalocean/get_database_cluster.py +76 -62
- pulumi_digitalocean/get_database_connection_pool.py +36 -36
- pulumi_digitalocean/get_database_metrics_credentials.py +120 -0
- pulumi_digitalocean/get_database_replica.py +46 -46
- pulumi_digitalocean/get_database_user.py +27 -27
- pulumi_digitalocean/get_domain.py +16 -16
- pulumi_digitalocean/get_domains.py +7 -7
- pulumi_digitalocean/get_droplet.py +72 -72
- pulumi_digitalocean/get_droplet_autoscale.py +23 -23
- pulumi_digitalocean/get_droplet_snapshot.py +38 -38
- pulumi_digitalocean/get_droplets.py +13 -13
- pulumi_digitalocean/get_firewall.py +31 -31
- pulumi_digitalocean/get_floating_ip.py +16 -16
- 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 -50
- pulumi_digitalocean/get_images.py +7 -7
- pulumi_digitalocean/get_kubernetes_cluster.py +144 -53
- pulumi_digitalocean/get_kubernetes_versions.py +14 -14
- pulumi_digitalocean/get_load_balancer.py +70 -59
- pulumi_digitalocean/get_nfs.py +205 -0
- pulumi_digitalocean/get_nfs_snapshot.py +188 -0
- pulumi_digitalocean/get_partner_attachment.py +206 -0
- pulumi_digitalocean/get_partner_attachment_service_key.py +118 -0
- pulumi_digitalocean/get_project.py +32 -32
- pulumi_digitalocean/get_projects.py +7 -7
- pulumi_digitalocean/get_record.py +32 -32
- pulumi_digitalocean/get_records.py +13 -13
- pulumi_digitalocean/get_region.py +18 -18
- pulumi_digitalocean/get_regions.py +7 -7
- pulumi_digitalocean/get_reserved_ip.py +16 -16
- pulumi_digitalocean/get_reserved_ipv6.py +51 -16
- pulumi_digitalocean/get_sizes.py +141 -7
- pulumi_digitalocean/get_spaces_bucket.py +22 -22
- pulumi_digitalocean/get_spaces_bucket_object.py +58 -58
- pulumi_digitalocean/get_spaces_bucket_objects.py +46 -46
- pulumi_digitalocean/get_spaces_buckets.py +7 -7
- pulumi_digitalocean/get_spaces_key.py +157 -0
- pulumi_digitalocean/get_ssh_key.py +14 -14
- pulumi_digitalocean/get_ssh_keys.py +7 -7
- pulumi_digitalocean/get_tag.py +22 -22
- pulumi_digitalocean/get_tags.py +7 -7
- pulumi_digitalocean/get_volume.py +34 -34
- pulumi_digitalocean/get_volume_snapshot.py +40 -40
- pulumi_digitalocean/get_vpc.py +30 -30
- pulumi_digitalocean/get_vpc_nat_gateway.py +263 -0
- pulumi_digitalocean/get_vpc_peering.py +24 -24
- pulumi_digitalocean/kubernetes_cluster.py +572 -303
- pulumi_digitalocean/kubernetes_node_pool.py +170 -169
- pulumi_digitalocean/load_balancer.py +406 -372
- pulumi_digitalocean/monitor_alert.py +153 -156
- pulumi_digitalocean/nfs.py +481 -0
- pulumi_digitalocean/nfs_attachment.py +289 -0
- pulumi_digitalocean/nfs_snapshot.py +379 -0
- pulumi_digitalocean/outputs.py +26759 -7592
- pulumi_digitalocean/partner_attachment.py +555 -0
- pulumi_digitalocean/project.py +141 -140
- pulumi_digitalocean/project_resources.py +37 -36
- pulumi_digitalocean/provider.py +105 -84
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- pulumi_digitalocean/reserved_ip.py +63 -62
- pulumi_digitalocean/reserved_ip_assignment.py +37 -36
- pulumi_digitalocean/reserved_ipv6.py +122 -62
- pulumi_digitalocean/reserved_ipv6_assignment.py +81 -30
- pulumi_digitalocean/spaces_bucket.py +107 -106
- pulumi_digitalocean/spaces_bucket_cors_configuration.py +40 -39
- pulumi_digitalocean/spaces_bucket_logging.py +346 -0
- pulumi_digitalocean/spaces_bucket_object.py +284 -283
- pulumi_digitalocean/spaces_bucket_policy.py +54 -53
- pulumi_digitalocean/spaces_key.py +388 -0
- pulumi_digitalocean/ssh_key.py +46 -45
- pulumi_digitalocean/tag.py +74 -73
- pulumi_digitalocean/uptime_alert.py +112 -111
- pulumi_digitalocean/uptime_check.py +90 -89
- pulumi_digitalocean/volume.py +183 -182
- pulumi_digitalocean/volume_attachment.py +37 -36
- pulumi_digitalocean/volume_snapshot.py +90 -89
- pulumi_digitalocean/vpc.py +100 -99
- pulumi_digitalocean/vpc_nat_gateway.py +722 -0
- pulumi_digitalocean/vpc_peering.py +55 -58
- {pulumi_digitalocean-4.40.0a1739511652.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/METADATA +4 -4
- pulumi_digitalocean-4.56.0a1766428645.dist-info/RECORD +154 -0
- {pulumi_digitalocean-4.40.0a1739511652.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/WHEEL +1 -1
- pulumi_digitalocean-4.40.0a1739511652.dist-info/RECORD +0 -108
- {pulumi_digitalocean-4.40.0a1739511652.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -19,55 +19,55 @@ __all__ = ['VpcPeeringArgs', 'VpcPeering']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class VpcPeeringArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
vpc_ids: pulumi.Input[Sequence[pulumi.Input[str]]],
|
|
23
|
-
name: Optional[pulumi.Input[str]] = None):
|
|
22
|
+
vpc_ids: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
23
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
24
24
|
"""
|
|
25
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.
|
|
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.
|
|
28
28
|
"""
|
|
29
29
|
pulumi.set(__self__, "vpc_ids", vpc_ids)
|
|
30
30
|
if name is not None:
|
|
31
31
|
pulumi.set(__self__, "name", name)
|
|
32
32
|
|
|
33
|
-
@property
|
|
33
|
+
@_builtins.property
|
|
34
34
|
@pulumi.getter(name="vpcIds")
|
|
35
|
-
def vpc_ids(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
35
|
+
def vpc_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
36
36
|
"""
|
|
37
37
|
A set of two VPC IDs to be peered.
|
|
38
38
|
"""
|
|
39
39
|
return pulumi.get(self, "vpc_ids")
|
|
40
40
|
|
|
41
41
|
@vpc_ids.setter
|
|
42
|
-
def vpc_ids(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
42
|
+
def vpc_ids(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
43
43
|
pulumi.set(self, "vpc_ids", value)
|
|
44
44
|
|
|
45
|
-
@property
|
|
45
|
+
@_builtins.property
|
|
46
46
|
@pulumi.getter
|
|
47
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
|
47
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
48
48
|
"""
|
|
49
49
|
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
50
50
|
"""
|
|
51
51
|
return pulumi.get(self, "name")
|
|
52
52
|
|
|
53
53
|
@name.setter
|
|
54
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
|
54
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
55
55
|
pulumi.set(self, "name", value)
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
@pulumi.input_type
|
|
59
59
|
class _VpcPeeringState:
|
|
60
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):
|
|
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):
|
|
65
65
|
"""
|
|
66
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.
|
|
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.
|
|
71
71
|
"""
|
|
72
72
|
if created_at is not None:
|
|
73
73
|
pulumi.set(__self__, "created_at", created_at)
|
|
@@ -78,66 +78,65 @@ class _VpcPeeringState:
|
|
|
78
78
|
if vpc_ids is not None:
|
|
79
79
|
pulumi.set(__self__, "vpc_ids", vpc_ids)
|
|
80
80
|
|
|
81
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
82
82
|
@pulumi.getter(name="createdAt")
|
|
83
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
83
|
+
def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
84
84
|
"""
|
|
85
85
|
The date and time of when the VPC Peering was created.
|
|
86
86
|
"""
|
|
87
87
|
return pulumi.get(self, "created_at")
|
|
88
88
|
|
|
89
89
|
@created_at.setter
|
|
90
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
90
|
+
def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
91
91
|
pulumi.set(self, "created_at", value)
|
|
92
92
|
|
|
93
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
94
94
|
@pulumi.getter
|
|
95
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
|
95
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
96
96
|
"""
|
|
97
97
|
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
98
98
|
"""
|
|
99
99
|
return pulumi.get(self, "name")
|
|
100
100
|
|
|
101
101
|
@name.setter
|
|
102
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
|
102
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
103
103
|
pulumi.set(self, "name", value)
|
|
104
104
|
|
|
105
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
106
106
|
@pulumi.getter
|
|
107
|
-
def status(self) -> Optional[pulumi.Input[str]]:
|
|
107
|
+
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
108
108
|
"""
|
|
109
109
|
The status of the VPC Peering.
|
|
110
110
|
"""
|
|
111
111
|
return pulumi.get(self, "status")
|
|
112
112
|
|
|
113
113
|
@status.setter
|
|
114
|
-
def status(self, value: Optional[pulumi.Input[str]]):
|
|
114
|
+
def status(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
115
115
|
pulumi.set(self, "status", value)
|
|
116
116
|
|
|
117
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
118
118
|
@pulumi.getter(name="vpcIds")
|
|
119
|
-
def vpc_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
119
|
+
def vpc_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
120
120
|
"""
|
|
121
121
|
A set of two VPC IDs to be peered.
|
|
122
122
|
"""
|
|
123
123
|
return pulumi.get(self, "vpc_ids")
|
|
124
124
|
|
|
125
125
|
@vpc_ids.setter
|
|
126
|
-
def vpc_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
126
|
+
def vpc_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
127
127
|
pulumi.set(self, "vpc_ids", value)
|
|
128
128
|
|
|
129
129
|
|
|
130
|
+
@pulumi.type_token("digitalocean:index/vpcPeering:VpcPeering")
|
|
130
131
|
class VpcPeering(pulumi.CustomResource):
|
|
131
132
|
@overload
|
|
132
133
|
def __init__(__self__,
|
|
133
134
|
resource_name: str,
|
|
134
135
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
135
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
136
|
-
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
136
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
137
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
137
138
|
__props__=None):
|
|
138
139
|
"""
|
|
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
140
|
Provides a DigitalOcean VPC Peering resource.
|
|
142
141
|
|
|
143
142
|
VPC Peerings are used to connect two VPC networks allowing resources in each
|
|
@@ -202,8 +201,8 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
202
201
|
|
|
203
202
|
:param str resource_name: The name of the resource.
|
|
204
203
|
: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.
|
|
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.
|
|
207
206
|
"""
|
|
208
207
|
...
|
|
209
208
|
@overload
|
|
@@ -212,8 +211,6 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
212
211
|
args: VpcPeeringArgs,
|
|
213
212
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
214
213
|
"""
|
|
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
214
|
Provides a DigitalOcean VPC Peering resource.
|
|
218
215
|
|
|
219
216
|
VPC Peerings are used to connect two VPC networks allowing resources in each
|
|
@@ -291,8 +288,8 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
291
288
|
def _internal_init(__self__,
|
|
292
289
|
resource_name: str,
|
|
293
290
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
294
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
295
|
-
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
291
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
292
|
+
vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
296
293
|
__props__=None):
|
|
297
294
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
298
295
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -318,10 +315,10 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
318
315
|
def get(resource_name: str,
|
|
319
316
|
id: pulumi.Input[str],
|
|
320
317
|
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':
|
|
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':
|
|
325
322
|
"""
|
|
326
323
|
Get an existing VpcPeering resource's state with the given name, id, and optional extra
|
|
327
324
|
properties used to qualify the lookup.
|
|
@@ -329,10 +326,10 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
329
326
|
:param str resource_name: The unique name of the resulting resource.
|
|
330
327
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
331
328
|
: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.
|
|
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.
|
|
336
333
|
"""
|
|
337
334
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
338
335
|
|
|
@@ -344,33 +341,33 @@ class VpcPeering(pulumi.CustomResource):
|
|
|
344
341
|
__props__.__dict__["vpc_ids"] = vpc_ids
|
|
345
342
|
return VpcPeering(resource_name, opts=opts, __props__=__props__)
|
|
346
343
|
|
|
347
|
-
@property
|
|
344
|
+
@_builtins.property
|
|
348
345
|
@pulumi.getter(name="createdAt")
|
|
349
|
-
def created_at(self) -> pulumi.Output[str]:
|
|
346
|
+
def created_at(self) -> pulumi.Output[_builtins.str]:
|
|
350
347
|
"""
|
|
351
348
|
The date and time of when the VPC Peering was created.
|
|
352
349
|
"""
|
|
353
350
|
return pulumi.get(self, "created_at")
|
|
354
351
|
|
|
355
|
-
@property
|
|
352
|
+
@_builtins.property
|
|
356
353
|
@pulumi.getter
|
|
357
|
-
def name(self) -> pulumi.Output[str]:
|
|
354
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
358
355
|
"""
|
|
359
356
|
A name for the VPC Peering. Must be unique and contain alphanumeric characters, dashes, and periods only.
|
|
360
357
|
"""
|
|
361
358
|
return pulumi.get(self, "name")
|
|
362
359
|
|
|
363
|
-
@property
|
|
360
|
+
@_builtins.property
|
|
364
361
|
@pulumi.getter
|
|
365
|
-
def status(self) -> pulumi.Output[str]:
|
|
362
|
+
def status(self) -> pulumi.Output[_builtins.str]:
|
|
366
363
|
"""
|
|
367
364
|
The status of the VPC Peering.
|
|
368
365
|
"""
|
|
369
366
|
return pulumi.get(self, "status")
|
|
370
367
|
|
|
371
|
-
@property
|
|
368
|
+
@_builtins.property
|
|
372
369
|
@pulumi.getter(name="vpcIds")
|
|
373
|
-
def vpc_ids(self) -> pulumi.Output[Sequence[str]]:
|
|
370
|
+
def vpc_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
374
371
|
"""
|
|
375
372
|
A set of two VPC IDs to be peered.
|
|
376
373
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_digitalocean
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.56.0a1766428645
|
|
4
4
|
Summary: A Pulumi package for creating and managing DigitalOcean cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -9,9 +9,9 @@ Keywords: pulumi,digitalocean
|
|
|
9
9
|
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-digitalocean/actions)
|
|
17
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,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,108 +0,0 @@
|
|
|
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=GGphKb5_2WGp77pxxbH7N-f_VGNOojzJOvNbhyeVogY,626309
|
|
4
|
-
pulumi_digitalocean/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
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=96BAg2ekbeC0GHykYKTBG6EN6wuuuohgu-CZVgQup0o,16775
|
|
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=xjqQaiH8JxM_RsHEvqiNJ_agzuD8e2NtLqKaYY7Q-1M,61429
|
|
76
|
-
pulumi_digitalocean/kubernetes_node_pool.py,sha256=xDplKBhopgyUOsYWVy5ngTv3l1NB2SJPMz6ssLMdjmQ,37761
|
|
77
|
-
pulumi_digitalocean/load_balancer.py,sha256=MUPOjUqRCJXHdgfBootIfGsytcQ7uH9n47BSAf5r0Pw,80075
|
|
78
|
-
pulumi_digitalocean/monitor_alert.py,sha256=Q6x8QbJsgBZi2Us1qgxbITTkwnxM9r_WtqZkudQ6wRs,37464
|
|
79
|
-
pulumi_digitalocean/outputs.py,sha256=o_sNF-alluzz5rW4ulqjzcms6OWMMD9XrQEiOJsaMtc,706433
|
|
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=WhYKu7nKKKKBcAkLJbjq80GTAG6wDI1VFS7aiVuonY8,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.40.0a1739511652.dist-info/METADATA,sha256=k35wOFd0OhL-Hbbj6Mon4E5U3CEAd6cVvhzFg95aRGs,3849
|
|
106
|
-
pulumi_digitalocean-4.40.0a1739511652.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
107
|
-
pulumi_digitalocean-4.40.0a1739511652.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
108
|
-
pulumi_digitalocean-4.40.0a1739511652.dist-info/RECORD,,
|
|
File without changes
|