pulumi-digitalocean 4.49.0__py3-none-any.whl → 4.50.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-digitalocean might be problematic. Click here for more details.
- pulumi_digitalocean/__init__.py +81 -1
- pulumi_digitalocean/_enums.py +9 -9
- pulumi_digitalocean/_inputs.py +11204 -8486
- pulumi_digitalocean/app.py +137 -88
- pulumi_digitalocean/cdn.py +104 -105
- pulumi_digitalocean/certificate.py +137 -138
- pulumi_digitalocean/config/__init__.py +1 -1
- pulumi_digitalocean/config/__init__.pyi +1 -2
- pulumi_digitalocean/config/vars.py +10 -11
- pulumi_digitalocean/container_registry.py +88 -89
- pulumi_digitalocean/container_registry_docker_credentials.py +70 -71
- pulumi_digitalocean/custom_image.py +175 -176
- pulumi_digitalocean/database_cluster.py +374 -347
- pulumi_digitalocean/database_connection_pool.py +157 -158
- pulumi_digitalocean/database_db.py +35 -36
- pulumi_digitalocean/database_firewall.py +21 -22
- pulumi_digitalocean/database_kafka_config.py +307 -308
- pulumi_digitalocean/database_kafka_topic.py +81 -82
- pulumi_digitalocean/database_mongodb_config.py +103 -104
- pulumi_digitalocean/database_mysql_config.py +477 -478
- pulumi_digitalocean/database_online_migration.py +460 -0
- pulumi_digitalocean/database_opensearch_config.py +664 -665
- pulumi_digitalocean/database_postgresql_config.py +857 -858
- pulumi_digitalocean/database_redis_config.py +209 -206
- pulumi_digitalocean/database_replica.py +197 -198
- pulumi_digitalocean/database_user.py +91 -92
- pulumi_digitalocean/database_valkey_config.py +804 -0
- pulumi_digitalocean/dns_record.py +180 -181
- pulumi_digitalocean/domain.py +53 -54
- pulumi_digitalocean/droplet.py +388 -389
- pulumi_digitalocean/droplet_autoscale.py +53 -54
- pulumi_digitalocean/droplet_snapshot.py +71 -72
- pulumi_digitalocean/firewall.py +78 -79
- pulumi_digitalocean/floating_ip.py +61 -62
- pulumi_digitalocean/floating_ip_assignment.py +35 -36
- pulumi_digitalocean/genai_agent.py +452 -453
- 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_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 +17 -18
- pulumi_digitalocean/get_app.py +27 -28
- pulumi_digitalocean/get_certificate.py +21 -22
- pulumi_digitalocean/get_container_registry.py +21 -22
- pulumi_digitalocean/get_database_ca.py +11 -12
- pulumi_digitalocean/get_database_cluster.py +75 -62
- pulumi_digitalocean/get_database_connection_pool.py +35 -36
- pulumi_digitalocean/get_database_metrics_credentials.py +120 -0
- pulumi_digitalocean/get_database_replica.py +45 -46
- pulumi_digitalocean/get_database_user.py +26 -27
- pulumi_digitalocean/get_domain.py +15 -16
- pulumi_digitalocean/get_domains.py +6 -7
- pulumi_digitalocean/get_droplet.py +71 -72
- pulumi_digitalocean/get_droplet_autoscale.py +22 -23
- pulumi_digitalocean/get_droplet_snapshot.py +37 -38
- pulumi_digitalocean/get_droplets.py +12 -13
- pulumi_digitalocean/get_firewall.py +30 -31
- pulumi_digitalocean/get_floating_ip.py +15 -16
- pulumi_digitalocean/get_genai_agent.py +89 -90
- pulumi_digitalocean/get_genai_agent_versions.py +128 -0
- pulumi_digitalocean/get_genai_agents.py +10 -11
- pulumi_digitalocean/get_genai_agents_by_openai_api_key.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_bases.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_image.py +49 -50
- pulumi_digitalocean/get_images.py +6 -7
- pulumi_digitalocean/get_kubernetes_cluster.py +53 -54
- pulumi_digitalocean/get_kubernetes_versions.py +13 -14
- pulumi_digitalocean/get_load_balancer.py +59 -60
- pulumi_digitalocean/get_partner_attachment.py +30 -31
- pulumi_digitalocean/get_partner_attachment_service_key.py +13 -14
- pulumi_digitalocean/get_project.py +31 -32
- pulumi_digitalocean/get_projects.py +6 -7
- pulumi_digitalocean/get_record.py +31 -32
- pulumi_digitalocean/get_records.py +12 -13
- pulumi_digitalocean/get_region.py +17 -18
- pulumi_digitalocean/get_regions.py +6 -7
- pulumi_digitalocean/get_reserved_ip.py +15 -16
- pulumi_digitalocean/get_reserved_ipv6.py +15 -16
- pulumi_digitalocean/get_sizes.py +6 -7
- pulumi_digitalocean/get_spaces_bucket.py +21 -22
- pulumi_digitalocean/get_spaces_bucket_object.py +57 -58
- pulumi_digitalocean/get_spaces_bucket_objects.py +45 -46
- pulumi_digitalocean/get_spaces_buckets.py +6 -7
- pulumi_digitalocean/get_spaces_key.py +14 -15
- pulumi_digitalocean/get_ssh_key.py +13 -14
- pulumi_digitalocean/get_ssh_keys.py +6 -7
- pulumi_digitalocean/get_tag.py +21 -22
- pulumi_digitalocean/get_tags.py +6 -7
- pulumi_digitalocean/get_volume.py +33 -34
- pulumi_digitalocean/get_volume_snapshot.py +39 -40
- pulumi_digitalocean/get_vpc.py +29 -30
- pulumi_digitalocean/get_vpc_nat_gateway.py +33 -34
- pulumi_digitalocean/get_vpc_peering.py +23 -24
- pulumi_digitalocean/kubernetes_cluster.py +293 -294
- pulumi_digitalocean/kubernetes_node_pool.py +168 -169
- pulumi_digitalocean/load_balancer.py +374 -375
- pulumi_digitalocean/monitor_alert.py +149 -150
- pulumi_digitalocean/outputs.py +20079 -12647
- pulumi_digitalocean/partner_attachment.py +150 -151
- pulumi_digitalocean/project.py +139 -140
- pulumi_digitalocean/project_resources.py +35 -36
- pulumi_digitalocean/provider.py +84 -85
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- pulumi_digitalocean/reserved_ip.py +61 -62
- pulumi_digitalocean/reserved_ip_assignment.py +35 -36
- pulumi_digitalocean/reserved_ipv6.py +53 -54
- pulumi_digitalocean/reserved_ipv6_assignment.py +35 -36
- pulumi_digitalocean/spaces_bucket.py +105 -106
- pulumi_digitalocean/spaces_bucket_cors_configuration.py +38 -39
- pulumi_digitalocean/spaces_bucket_logging.py +69 -70
- pulumi_digitalocean/spaces_bucket_object.py +282 -283
- pulumi_digitalocean/spaces_bucket_policy.py +52 -53
- pulumi_digitalocean/spaces_key.py +48 -49
- pulumi_digitalocean/ssh_key.py +44 -45
- pulumi_digitalocean/tag.py +72 -73
- pulumi_digitalocean/uptime_alert.py +106 -107
- pulumi_digitalocean/uptime_check.py +86 -87
- pulumi_digitalocean/volume.py +181 -182
- pulumi_digitalocean/volume_attachment.py +35 -36
- pulumi_digitalocean/volume_snapshot.py +88 -89
- pulumi_digitalocean/vpc.py +96 -97
- pulumi_digitalocean/vpc_nat_gateway.py +152 -153
- pulumi_digitalocean/vpc_peering.py +53 -54
- {pulumi_digitalocean-4.49.0.dist-info → pulumi_digitalocean-4.50.0.dist-info}/METADATA +1 -1
- pulumi_digitalocean-4.50.0.dist-info/RECORD +135 -0
- pulumi_digitalocean-4.49.0.dist-info/RECORD +0 -119
- {pulumi_digitalocean-4.49.0.dist-info → pulumi_digitalocean-4.50.0.dist-info}/WHEEL +0 -0
- {pulumi_digitalocean-4.49.0.dist-info → pulumi_digitalocean-4.50.0.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
@@ -53,65 +52,65 @@ class GetAccountResult:
|
|
|
53
52
|
raise TypeError("Expected argument 'uuid' to be a str")
|
|
54
53
|
pulumi.set(__self__, "uuid", uuid)
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter(name="dropletLimit")
|
|
58
|
-
def droplet_limit(self) ->
|
|
57
|
+
def droplet_limit(self) -> _builtins.int:
|
|
59
58
|
"""
|
|
60
59
|
The total number of droplets current user or team may have active at one time.
|
|
61
60
|
"""
|
|
62
61
|
return pulumi.get(self, "droplet_limit")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter
|
|
66
|
-
def email(self) ->
|
|
65
|
+
def email(self) -> _builtins.str:
|
|
67
66
|
"""
|
|
68
67
|
The email address used by the current user to register for DigitalOcean.
|
|
69
68
|
"""
|
|
70
69
|
return pulumi.get(self, "email")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter(name="emailVerified")
|
|
74
|
-
def email_verified(self) ->
|
|
73
|
+
def email_verified(self) -> _builtins.bool:
|
|
75
74
|
"""
|
|
76
75
|
If true, the user has verified their account via email. False otherwise.
|
|
77
76
|
"""
|
|
78
77
|
return pulumi.get(self, "email_verified")
|
|
79
78
|
|
|
80
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
81
80
|
@pulumi.getter(name="floatingIpLimit")
|
|
82
|
-
def floating_ip_limit(self) ->
|
|
81
|
+
def floating_ip_limit(self) -> _builtins.int:
|
|
83
82
|
"""
|
|
84
83
|
The total number of floating IPs the current user or team may have.
|
|
85
84
|
"""
|
|
86
85
|
return pulumi.get(self, "floating_ip_limit")
|
|
87
86
|
|
|
88
|
-
@property
|
|
87
|
+
@_builtins.property
|
|
89
88
|
@pulumi.getter
|
|
90
|
-
def id(self) ->
|
|
89
|
+
def id(self) -> _builtins.str:
|
|
91
90
|
"""
|
|
92
91
|
The provider-assigned unique ID for this managed resource.
|
|
93
92
|
"""
|
|
94
93
|
return pulumi.get(self, "id")
|
|
95
94
|
|
|
96
|
-
@property
|
|
95
|
+
@_builtins.property
|
|
97
96
|
@pulumi.getter
|
|
98
|
-
def status(self) ->
|
|
97
|
+
def status(self) -> _builtins.str:
|
|
99
98
|
"""
|
|
100
99
|
This value is one of "active", "warning" or "locked".
|
|
101
100
|
"""
|
|
102
101
|
return pulumi.get(self, "status")
|
|
103
102
|
|
|
104
|
-
@property
|
|
103
|
+
@_builtins.property
|
|
105
104
|
@pulumi.getter(name="statusMessage")
|
|
106
|
-
def status_message(self) ->
|
|
105
|
+
def status_message(self) -> _builtins.str:
|
|
107
106
|
"""
|
|
108
107
|
A human-readable message giving more details about the status of the account.
|
|
109
108
|
"""
|
|
110
109
|
return pulumi.get(self, "status_message")
|
|
111
110
|
|
|
112
|
-
@property
|
|
111
|
+
@_builtins.property
|
|
113
112
|
@pulumi.getter
|
|
114
|
-
def uuid(self) ->
|
|
113
|
+
def uuid(self) -> _builtins.str:
|
|
115
114
|
"""
|
|
116
115
|
The unique universal identifier for the current user.
|
|
117
116
|
"""
|
pulumi_digitalocean/get_app.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
@@ -67,28 +66,28 @@ class GetAppResult:
|
|
|
67
66
|
raise TypeError("Expected argument 'urn' to be a str")
|
|
68
67
|
pulumi.set(__self__, "urn", urn)
|
|
69
68
|
|
|
70
|
-
@property
|
|
69
|
+
@_builtins.property
|
|
71
70
|
@pulumi.getter(name="activeDeploymentId")
|
|
72
|
-
def active_deployment_id(self) ->
|
|
71
|
+
def active_deployment_id(self) -> _builtins.str:
|
|
73
72
|
"""
|
|
74
73
|
The ID the app's currently active deployment.
|
|
75
74
|
"""
|
|
76
75
|
return pulumi.get(self, "active_deployment_id")
|
|
77
76
|
|
|
78
|
-
@property
|
|
77
|
+
@_builtins.property
|
|
79
78
|
@pulumi.getter(name="appId")
|
|
80
|
-
def app_id(self) ->
|
|
79
|
+
def app_id(self) -> _builtins.str:
|
|
81
80
|
return pulumi.get(self, "app_id")
|
|
82
81
|
|
|
83
|
-
@property
|
|
82
|
+
@_builtins.property
|
|
84
83
|
@pulumi.getter(name="createdAt")
|
|
85
|
-
def created_at(self) ->
|
|
84
|
+
def created_at(self) -> _builtins.str:
|
|
86
85
|
"""
|
|
87
86
|
The date and time of when the app was created.
|
|
88
87
|
"""
|
|
89
88
|
return pulumi.get(self, "created_at")
|
|
90
89
|
|
|
91
|
-
@property
|
|
90
|
+
@_builtins.property
|
|
92
91
|
@pulumi.getter(name="dedicatedIps")
|
|
93
92
|
def dedicated_ips(self) -> Sequence['outputs.GetAppDedicatedIpResult']:
|
|
94
93
|
"""
|
|
@@ -96,47 +95,47 @@ class GetAppResult:
|
|
|
96
95
|
"""
|
|
97
96
|
return pulumi.get(self, "dedicated_ips")
|
|
98
97
|
|
|
99
|
-
@property
|
|
98
|
+
@_builtins.property
|
|
100
99
|
@pulumi.getter(name="defaultIngress")
|
|
101
|
-
def default_ingress(self) ->
|
|
100
|
+
def default_ingress(self) -> _builtins.str:
|
|
102
101
|
"""
|
|
103
102
|
The default URL to access the app.
|
|
104
103
|
"""
|
|
105
104
|
return pulumi.get(self, "default_ingress")
|
|
106
105
|
|
|
107
|
-
@property
|
|
106
|
+
@_builtins.property
|
|
108
107
|
@pulumi.getter
|
|
109
|
-
def id(self) ->
|
|
108
|
+
def id(self) -> _builtins.str:
|
|
110
109
|
"""
|
|
111
110
|
The provider-assigned unique ID for this managed resource.
|
|
112
111
|
"""
|
|
113
112
|
return pulumi.get(self, "id")
|
|
114
113
|
|
|
115
|
-
@property
|
|
114
|
+
@_builtins.property
|
|
116
115
|
@pulumi.getter(name="liveDomain")
|
|
117
|
-
def live_domain(self) ->
|
|
116
|
+
def live_domain(self) -> _builtins.str:
|
|
118
117
|
"""
|
|
119
118
|
The live domain of the app.
|
|
120
119
|
"""
|
|
121
120
|
return pulumi.get(self, "live_domain")
|
|
122
121
|
|
|
123
|
-
@property
|
|
122
|
+
@_builtins.property
|
|
124
123
|
@pulumi.getter(name="liveUrl")
|
|
125
|
-
def live_url(self) ->
|
|
124
|
+
def live_url(self) -> _builtins.str:
|
|
126
125
|
"""
|
|
127
126
|
The live URL of the app.
|
|
128
127
|
"""
|
|
129
128
|
return pulumi.get(self, "live_url")
|
|
130
129
|
|
|
131
|
-
@property
|
|
130
|
+
@_builtins.property
|
|
132
131
|
@pulumi.getter(name="projectId")
|
|
133
|
-
def project_id(self) ->
|
|
132
|
+
def project_id(self) -> _builtins.str:
|
|
134
133
|
"""
|
|
135
134
|
The ID of the project that the app is assigned to.
|
|
136
135
|
"""
|
|
137
136
|
return pulumi.get(self, "project_id")
|
|
138
137
|
|
|
139
|
-
@property
|
|
138
|
+
@_builtins.property
|
|
140
139
|
@pulumi.getter
|
|
141
140
|
def specs(self) -> Sequence['outputs.GetAppSpecResult']:
|
|
142
141
|
"""
|
|
@@ -144,17 +143,17 @@ class GetAppResult:
|
|
|
144
143
|
"""
|
|
145
144
|
return pulumi.get(self, "specs")
|
|
146
145
|
|
|
147
|
-
@property
|
|
146
|
+
@_builtins.property
|
|
148
147
|
@pulumi.getter(name="updatedAt")
|
|
149
|
-
def updated_at(self) ->
|
|
148
|
+
def updated_at(self) -> _builtins.str:
|
|
150
149
|
"""
|
|
151
150
|
The date and time of when the app was last updated.
|
|
152
151
|
"""
|
|
153
152
|
return pulumi.get(self, "updated_at")
|
|
154
153
|
|
|
155
|
-
@property
|
|
154
|
+
@_builtins.property
|
|
156
155
|
@pulumi.getter
|
|
157
|
-
def urn(self) ->
|
|
156
|
+
def urn(self) -> _builtins.str:
|
|
158
157
|
"""
|
|
159
158
|
The uniform resource identifier for the app.
|
|
160
159
|
"""
|
|
@@ -181,7 +180,7 @@ class AwaitableGetAppResult(GetAppResult):
|
|
|
181
180
|
urn=self.urn)
|
|
182
181
|
|
|
183
182
|
|
|
184
|
-
def get_app(app_id: Optional[
|
|
183
|
+
def get_app(app_id: Optional[_builtins.str] = None,
|
|
185
184
|
dedicated_ips: Optional[Sequence[Union['GetAppDedicatedIpArgs', 'GetAppDedicatedIpArgsDict']]] = None,
|
|
186
185
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAppResult:
|
|
187
186
|
"""
|
|
@@ -200,7 +199,7 @@ def get_app(app_id: Optional[builtins.str] = None,
|
|
|
200
199
|
```
|
|
201
200
|
|
|
202
201
|
|
|
203
|
-
:param
|
|
202
|
+
:param _builtins.str app_id: The ID of the app to retrieve information about.
|
|
204
203
|
:param Sequence[Union['GetAppDedicatedIpArgs', 'GetAppDedicatedIpArgsDict']] dedicated_ips: A list of dedicated egress IP addresses associated with the app.
|
|
205
204
|
"""
|
|
206
205
|
__args__ = dict()
|
|
@@ -222,7 +221,7 @@ def get_app(app_id: Optional[builtins.str] = None,
|
|
|
222
221
|
specs=pulumi.get(__ret__, 'specs'),
|
|
223
222
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
224
223
|
urn=pulumi.get(__ret__, 'urn'))
|
|
225
|
-
def get_app_output(app_id: Optional[pulumi.Input[
|
|
224
|
+
def get_app_output(app_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
226
225
|
dedicated_ips: Optional[pulumi.Input[Optional[Sequence[Union['GetAppDedicatedIpArgs', 'GetAppDedicatedIpArgsDict']]]]] = None,
|
|
227
226
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAppResult]:
|
|
228
227
|
"""
|
|
@@ -241,7 +240,7 @@ def get_app_output(app_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
241
240
|
```
|
|
242
241
|
|
|
243
242
|
|
|
244
|
-
:param
|
|
243
|
+
:param _builtins.str app_id: The ID of the app to retrieve information about.
|
|
245
244
|
:param Sequence[Union['GetAppDedicatedIpArgs', 'GetAppDedicatedIpArgsDict']] dedicated_ips: A list of dedicated egress IP addresses associated with the app.
|
|
246
245
|
"""
|
|
247
246
|
__args__ = dict()
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
@@ -53,62 +52,62 @@ class GetCertificateResult:
|
|
|
53
52
|
raise TypeError("Expected argument 'uuid' to be a str")
|
|
54
53
|
pulumi.set(__self__, "uuid", uuid)
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter
|
|
58
|
-
def domains(self) -> Sequence[
|
|
57
|
+
def domains(self) -> Sequence[_builtins.str]:
|
|
59
58
|
"""
|
|
60
59
|
Domains for which the certificate was issued.
|
|
61
60
|
"""
|
|
62
61
|
return pulumi.get(self, "domains")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter
|
|
66
|
-
def id(self) ->
|
|
65
|
+
def id(self) -> _builtins.str:
|
|
67
66
|
"""
|
|
68
67
|
The provider-assigned unique ID for this managed resource.
|
|
69
68
|
"""
|
|
70
69
|
return pulumi.get(self, "id")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
|
-
def name(self) ->
|
|
73
|
+
def name(self) -> _builtins.str:
|
|
75
74
|
return pulumi.get(self, "name")
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter(name="notAfter")
|
|
79
|
-
def not_after(self) ->
|
|
78
|
+
def not_after(self) -> _builtins.str:
|
|
80
79
|
"""
|
|
81
80
|
The expiration date and time of the certificate.
|
|
82
81
|
"""
|
|
83
82
|
return pulumi.get(self, "not_after")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter(name="sha1Fingerprint")
|
|
87
|
-
def sha1_fingerprint(self) ->
|
|
86
|
+
def sha1_fingerprint(self) -> _builtins.str:
|
|
88
87
|
"""
|
|
89
88
|
The SHA1 fingerprint of the certificate.
|
|
90
89
|
"""
|
|
91
90
|
return pulumi.get(self, "sha1_fingerprint")
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def state(self) ->
|
|
94
|
+
def state(self) -> _builtins.str:
|
|
96
95
|
"""
|
|
97
96
|
the current state of the certificate.
|
|
98
97
|
"""
|
|
99
98
|
return pulumi.get(self, "state")
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter
|
|
103
|
-
def type(self) ->
|
|
102
|
+
def type(self) -> _builtins.str:
|
|
104
103
|
"""
|
|
105
104
|
The type of the certificate.
|
|
106
105
|
"""
|
|
107
106
|
return pulumi.get(self, "type")
|
|
108
107
|
|
|
109
|
-
@property
|
|
108
|
+
@_builtins.property
|
|
110
109
|
@pulumi.getter
|
|
111
|
-
def uuid(self) ->
|
|
110
|
+
def uuid(self) -> _builtins.str:
|
|
112
111
|
"""
|
|
113
112
|
The ID of the certificate.
|
|
114
113
|
"""
|
|
@@ -131,7 +130,7 @@ class AwaitableGetCertificateResult(GetCertificateResult):
|
|
|
131
130
|
uuid=self.uuid)
|
|
132
131
|
|
|
133
132
|
|
|
134
|
-
def get_certificate(name: Optional[
|
|
133
|
+
def get_certificate(name: Optional[_builtins.str] = None,
|
|
135
134
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCertificateResult:
|
|
136
135
|
"""
|
|
137
136
|
Get information on a certificate. This data source provides the name, type, state,
|
|
@@ -153,7 +152,7 @@ def get_certificate(name: Optional[builtins.str] = None,
|
|
|
153
152
|
```
|
|
154
153
|
|
|
155
154
|
|
|
156
|
-
:param
|
|
155
|
+
:param _builtins.str name: The name of certificate.
|
|
157
156
|
"""
|
|
158
157
|
__args__ = dict()
|
|
159
158
|
__args__['name'] = name
|
|
@@ -169,7 +168,7 @@ def get_certificate(name: Optional[builtins.str] = None,
|
|
|
169
168
|
state=pulumi.get(__ret__, 'state'),
|
|
170
169
|
type=pulumi.get(__ret__, 'type'),
|
|
171
170
|
uuid=pulumi.get(__ret__, 'uuid'))
|
|
172
|
-
def get_certificate_output(name: Optional[pulumi.Input[
|
|
171
|
+
def get_certificate_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
173
172
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCertificateResult]:
|
|
174
173
|
"""
|
|
175
174
|
Get information on a certificate. This data source provides the name, type, state,
|
|
@@ -191,7 +190,7 @@ def get_certificate_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
191
190
|
```
|
|
192
191
|
|
|
193
192
|
|
|
194
|
-
:param
|
|
193
|
+
:param _builtins.str name: The name of certificate.
|
|
195
194
|
"""
|
|
196
195
|
__args__ = dict()
|
|
197
196
|
__args__['name'] = name
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
@@ -53,65 +52,65 @@ class GetContainerRegistryResult:
|
|
|
53
52
|
raise TypeError("Expected argument 'subscription_tier_slug' to be a str")
|
|
54
53
|
pulumi.set(__self__, "subscription_tier_slug", subscription_tier_slug)
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter(name="createdAt")
|
|
58
|
-
def created_at(self) ->
|
|
57
|
+
def created_at(self) -> _builtins.str:
|
|
59
58
|
"""
|
|
60
59
|
The date and time when the registry was created
|
|
61
60
|
"""
|
|
62
61
|
return pulumi.get(self, "created_at")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter
|
|
66
|
-
def endpoint(self) ->
|
|
65
|
+
def endpoint(self) -> _builtins.str:
|
|
67
66
|
"""
|
|
68
67
|
The URL endpoint of the container registry. Ex: `registry.digitalocean.com/my_registry`
|
|
69
68
|
"""
|
|
70
69
|
return pulumi.get(self, "endpoint")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
|
-
def id(self) ->
|
|
73
|
+
def id(self) -> _builtins.str:
|
|
75
74
|
"""
|
|
76
75
|
The provider-assigned unique ID for this managed resource.
|
|
77
76
|
"""
|
|
78
77
|
return pulumi.get(self, "id")
|
|
79
78
|
|
|
80
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
81
80
|
@pulumi.getter
|
|
82
|
-
def name(self) ->
|
|
81
|
+
def name(self) -> _builtins.str:
|
|
83
82
|
"""
|
|
84
83
|
The name of the container registry
|
|
85
84
|
"""
|
|
86
85
|
return pulumi.get(self, "name")
|
|
87
86
|
|
|
88
|
-
@property
|
|
87
|
+
@_builtins.property
|
|
89
88
|
@pulumi.getter
|
|
90
|
-
def region(self) ->
|
|
89
|
+
def region(self) -> _builtins.str:
|
|
91
90
|
"""
|
|
92
91
|
The slug identifier for the region
|
|
93
92
|
"""
|
|
94
93
|
return pulumi.get(self, "region")
|
|
95
94
|
|
|
96
|
-
@property
|
|
95
|
+
@_builtins.property
|
|
97
96
|
@pulumi.getter(name="serverUrl")
|
|
98
|
-
def server_url(self) ->
|
|
97
|
+
def server_url(self) -> _builtins.str:
|
|
99
98
|
"""
|
|
100
99
|
The domain of the container registry. Ex: `registry.digitalocean.com`
|
|
101
100
|
"""
|
|
102
101
|
return pulumi.get(self, "server_url")
|
|
103
102
|
|
|
104
|
-
@property
|
|
103
|
+
@_builtins.property
|
|
105
104
|
@pulumi.getter(name="storageUsageBytes")
|
|
106
|
-
def storage_usage_bytes(self) ->
|
|
105
|
+
def storage_usage_bytes(self) -> _builtins.int:
|
|
107
106
|
"""
|
|
108
107
|
The amount of storage used in the registry in bytes.
|
|
109
108
|
"""
|
|
110
109
|
return pulumi.get(self, "storage_usage_bytes")
|
|
111
110
|
|
|
112
|
-
@property
|
|
111
|
+
@_builtins.property
|
|
113
112
|
@pulumi.getter(name="subscriptionTierSlug")
|
|
114
|
-
def subscription_tier_slug(self) ->
|
|
113
|
+
def subscription_tier_slug(self) -> _builtins.str:
|
|
115
114
|
"""
|
|
116
115
|
The slug identifier for the subscription tier
|
|
117
116
|
"""
|
|
@@ -134,7 +133,7 @@ class AwaitableGetContainerRegistryResult(GetContainerRegistryResult):
|
|
|
134
133
|
subscription_tier_slug=self.subscription_tier_slug)
|
|
135
134
|
|
|
136
135
|
|
|
137
|
-
def get_container_registry(name: Optional[
|
|
136
|
+
def get_container_registry(name: Optional[_builtins.str] = None,
|
|
138
137
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetContainerRegistryResult:
|
|
139
138
|
"""
|
|
140
139
|
Get information on a container registry. This data source provides the name as
|
|
@@ -158,7 +157,7 @@ def get_container_registry(name: Optional[builtins.str] = None,
|
|
|
158
157
|
```
|
|
159
158
|
|
|
160
159
|
|
|
161
|
-
:param
|
|
160
|
+
:param _builtins.str name: The name of the container registry.
|
|
162
161
|
"""
|
|
163
162
|
__args__ = dict()
|
|
164
163
|
__args__['name'] = name
|
|
@@ -174,7 +173,7 @@ def get_container_registry(name: Optional[builtins.str] = None,
|
|
|
174
173
|
server_url=pulumi.get(__ret__, 'server_url'),
|
|
175
174
|
storage_usage_bytes=pulumi.get(__ret__, 'storage_usage_bytes'),
|
|
176
175
|
subscription_tier_slug=pulumi.get(__ret__, 'subscription_tier_slug'))
|
|
177
|
-
def get_container_registry_output(name: Optional[pulumi.Input[
|
|
176
|
+
def get_container_registry_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
178
177
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetContainerRegistryResult]:
|
|
179
178
|
"""
|
|
180
179
|
Get information on a container registry. This data source provides the name as
|
|
@@ -198,7 +197,7 @@ def get_container_registry_output(name: Optional[pulumi.Input[builtins.str]] = N
|
|
|
198
197
|
```
|
|
199
198
|
|
|
200
199
|
|
|
201
|
-
:param
|
|
200
|
+
:param _builtins.str name: The name of the container registry.
|
|
202
201
|
"""
|
|
203
202
|
__args__ = dict()
|
|
204
203
|
__args__['name'] = name
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
@@ -38,22 +37,22 @@ class GetDatabaseCaResult:
|
|
|
38
37
|
raise TypeError("Expected argument 'id' to be a str")
|
|
39
38
|
pulumi.set(__self__, "id", id)
|
|
40
39
|
|
|
41
|
-
@property
|
|
40
|
+
@_builtins.property
|
|
42
41
|
@pulumi.getter
|
|
43
|
-
def certificate(self) ->
|
|
42
|
+
def certificate(self) -> _builtins.str:
|
|
44
43
|
"""
|
|
45
44
|
The CA certificate used to secure database connections decoded to a string.
|
|
46
45
|
"""
|
|
47
46
|
return pulumi.get(self, "certificate")
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter(name="clusterId")
|
|
51
|
-
def cluster_id(self) ->
|
|
50
|
+
def cluster_id(self) -> _builtins.str:
|
|
52
51
|
return pulumi.get(self, "cluster_id")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The provider-assigned unique ID for this managed resource.
|
|
59
58
|
"""
|
|
@@ -71,7 +70,7 @@ class AwaitableGetDatabaseCaResult(GetDatabaseCaResult):
|
|
|
71
70
|
id=self.id)
|
|
72
71
|
|
|
73
72
|
|
|
74
|
-
def get_database_ca(cluster_id: Optional[
|
|
73
|
+
def get_database_ca(cluster_id: Optional[_builtins.str] = None,
|
|
75
74
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabaseCaResult:
|
|
76
75
|
"""
|
|
77
76
|
Provides the CA certificate for a DigitalOcean database.
|
|
@@ -87,7 +86,7 @@ def get_database_ca(cluster_id: Optional[builtins.str] = None,
|
|
|
87
86
|
```
|
|
88
87
|
|
|
89
88
|
|
|
90
|
-
:param
|
|
89
|
+
:param _builtins.str cluster_id: The ID of the source database cluster.
|
|
91
90
|
"""
|
|
92
91
|
__args__ = dict()
|
|
93
92
|
__args__['clusterId'] = cluster_id
|
|
@@ -98,7 +97,7 @@ def get_database_ca(cluster_id: Optional[builtins.str] = None,
|
|
|
98
97
|
certificate=pulumi.get(__ret__, 'certificate'),
|
|
99
98
|
cluster_id=pulumi.get(__ret__, 'cluster_id'),
|
|
100
99
|
id=pulumi.get(__ret__, 'id'))
|
|
101
|
-
def get_database_ca_output(cluster_id: Optional[pulumi.Input[
|
|
100
|
+
def get_database_ca_output(cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
102
101
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabaseCaResult]:
|
|
103
102
|
"""
|
|
104
103
|
Provides the CA certificate for a DigitalOcean database.
|
|
@@ -114,7 +113,7 @@ def get_database_ca_output(cluster_id: Optional[pulumi.Input[builtins.str]] = No
|
|
|
114
113
|
```
|
|
115
114
|
|
|
116
115
|
|
|
117
|
-
:param
|
|
116
|
+
:param _builtins.str cluster_id: The ID of the source database cluster.
|
|
118
117
|
"""
|
|
119
118
|
__args__ = dict()
|
|
120
119
|
__args__['clusterId'] = cluster_id
|