pulumi-digitalocean 4.50.0a1753335988__py3-none-any.whl → 4.50.0a1753508712__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 +1 -1
- pulumi_digitalocean/_enums.py +9 -9
- pulumi_digitalocean/_inputs.py +5705 -5706
- pulumi_digitalocean/app.py +87 -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 +346 -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_opensearch_config.py +664 -665
- pulumi_digitalocean/database_postgresql_config.py +857 -858
- pulumi_digitalocean/database_redis_config.py +205 -206
- pulumi_digitalocean/database_replica.py +197 -198
- pulumi_digitalocean/database_user.py +91 -92
- 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/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 +60 -61
- pulumi_digitalocean/get_database_connection_pool.py +35 -36
- 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_agents.py +10 -11
- 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 +7064 -7065
- 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.50.0a1753335988.dist-info → pulumi_digitalocean-4.50.0a1753508712.dist-info}/METADATA +1 -1
- pulumi_digitalocean-4.50.0a1753508712.dist-info/RECORD +119 -0
- pulumi_digitalocean-4.50.0a1753335988.dist-info/RECORD +0 -119
- {pulumi_digitalocean-4.50.0a1753335988.dist-info → pulumi_digitalocean-4.50.0a1753508712.dist-info}/WHEEL +0 -0
- {pulumi_digitalocean-4.50.0a1753335988.dist-info → pulumi_digitalocean-4.50.0a1753508712.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
|
|
@@ -86,141 +85,141 @@ class GetSpacesBucketObjectResult:
|
|
|
86
85
|
raise TypeError("Expected argument 'website_redirect_location' to be a str")
|
|
87
86
|
pulumi.set(__self__, "website_redirect_location", website_redirect_location)
|
|
88
87
|
|
|
89
|
-
@property
|
|
88
|
+
@_builtins.property
|
|
90
89
|
@pulumi.getter
|
|
91
|
-
def body(self) ->
|
|
90
|
+
def body(self) -> _builtins.str:
|
|
92
91
|
"""
|
|
93
92
|
Object data (see **limitations above** to understand cases in which this field is actually available)
|
|
94
93
|
"""
|
|
95
94
|
return pulumi.get(self, "body")
|
|
96
95
|
|
|
97
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
98
97
|
@pulumi.getter
|
|
99
|
-
def bucket(self) ->
|
|
98
|
+
def bucket(self) -> _builtins.str:
|
|
100
99
|
return pulumi.get(self, "bucket")
|
|
101
100
|
|
|
102
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
103
102
|
@pulumi.getter(name="cacheControl")
|
|
104
|
-
def cache_control(self) ->
|
|
103
|
+
def cache_control(self) -> _builtins.str:
|
|
105
104
|
"""
|
|
106
105
|
Specifies caching behavior along the request/reply chain.
|
|
107
106
|
"""
|
|
108
107
|
return pulumi.get(self, "cache_control")
|
|
109
108
|
|
|
110
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
111
110
|
@pulumi.getter(name="contentDisposition")
|
|
112
|
-
def content_disposition(self) ->
|
|
111
|
+
def content_disposition(self) -> _builtins.str:
|
|
113
112
|
"""
|
|
114
113
|
Specifies presentational information for the object.
|
|
115
114
|
"""
|
|
116
115
|
return pulumi.get(self, "content_disposition")
|
|
117
116
|
|
|
118
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
119
118
|
@pulumi.getter(name="contentEncoding")
|
|
120
|
-
def content_encoding(self) ->
|
|
119
|
+
def content_encoding(self) -> _builtins.str:
|
|
121
120
|
"""
|
|
122
121
|
Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
|
|
123
122
|
"""
|
|
124
123
|
return pulumi.get(self, "content_encoding")
|
|
125
124
|
|
|
126
|
-
@property
|
|
125
|
+
@_builtins.property
|
|
127
126
|
@pulumi.getter(name="contentLanguage")
|
|
128
|
-
def content_language(self) ->
|
|
127
|
+
def content_language(self) -> _builtins.str:
|
|
129
128
|
"""
|
|
130
129
|
The language the content is in.
|
|
131
130
|
"""
|
|
132
131
|
return pulumi.get(self, "content_language")
|
|
133
132
|
|
|
134
|
-
@property
|
|
133
|
+
@_builtins.property
|
|
135
134
|
@pulumi.getter(name="contentLength")
|
|
136
|
-
def content_length(self) ->
|
|
135
|
+
def content_length(self) -> _builtins.int:
|
|
137
136
|
"""
|
|
138
137
|
Size of the body in bytes.
|
|
139
138
|
"""
|
|
140
139
|
return pulumi.get(self, "content_length")
|
|
141
140
|
|
|
142
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
143
142
|
@pulumi.getter(name="contentType")
|
|
144
|
-
def content_type(self) ->
|
|
143
|
+
def content_type(self) -> _builtins.str:
|
|
145
144
|
"""
|
|
146
145
|
A standard MIME type describing the format of the object data.
|
|
147
146
|
"""
|
|
148
147
|
return pulumi.get(self, "content_type")
|
|
149
148
|
|
|
150
|
-
@property
|
|
149
|
+
@_builtins.property
|
|
151
150
|
@pulumi.getter
|
|
152
|
-
def etag(self) ->
|
|
151
|
+
def etag(self) -> _builtins.str:
|
|
153
152
|
"""
|
|
154
153
|
[ETag](https://en.wikipedia.org/wiki/HTTP_ETag) generated for the object (an MD5 sum of the object content in case it's not encrypted)
|
|
155
154
|
"""
|
|
156
155
|
return pulumi.get(self, "etag")
|
|
157
156
|
|
|
158
|
-
@property
|
|
157
|
+
@_builtins.property
|
|
159
158
|
@pulumi.getter
|
|
160
|
-
def expiration(self) ->
|
|
159
|
+
def expiration(self) -> _builtins.str:
|
|
161
160
|
"""
|
|
162
161
|
If the object expiration is configured (see [object lifecycle management](http://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html)), the field includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.
|
|
163
162
|
"""
|
|
164
163
|
return pulumi.get(self, "expiration")
|
|
165
164
|
|
|
166
|
-
@property
|
|
165
|
+
@_builtins.property
|
|
167
166
|
@pulumi.getter
|
|
168
|
-
def expires(self) ->
|
|
167
|
+
def expires(self) -> _builtins.str:
|
|
169
168
|
"""
|
|
170
169
|
The date and time at which the object is no longer cacheable.
|
|
171
170
|
"""
|
|
172
171
|
return pulumi.get(self, "expires")
|
|
173
172
|
|
|
174
|
-
@property
|
|
173
|
+
@_builtins.property
|
|
175
174
|
@pulumi.getter
|
|
176
|
-
def id(self) ->
|
|
175
|
+
def id(self) -> _builtins.str:
|
|
177
176
|
"""
|
|
178
177
|
The provider-assigned unique ID for this managed resource.
|
|
179
178
|
"""
|
|
180
179
|
return pulumi.get(self, "id")
|
|
181
180
|
|
|
182
|
-
@property
|
|
181
|
+
@_builtins.property
|
|
183
182
|
@pulumi.getter
|
|
184
|
-
def key(self) ->
|
|
183
|
+
def key(self) -> _builtins.str:
|
|
185
184
|
return pulumi.get(self, "key")
|
|
186
185
|
|
|
187
|
-
@property
|
|
186
|
+
@_builtins.property
|
|
188
187
|
@pulumi.getter(name="lastModified")
|
|
189
|
-
def last_modified(self) ->
|
|
188
|
+
def last_modified(self) -> _builtins.str:
|
|
190
189
|
"""
|
|
191
190
|
Last modified date of the object in RFC1123 format (e.g. `Mon, 02 Jan 2006 15:04:05 MST`)
|
|
192
191
|
"""
|
|
193
192
|
return pulumi.get(self, "last_modified")
|
|
194
193
|
|
|
195
|
-
@property
|
|
194
|
+
@_builtins.property
|
|
196
195
|
@pulumi.getter
|
|
197
|
-
def metadata(self) -> Mapping[str,
|
|
196
|
+
def metadata(self) -> Mapping[str, _builtins.str]:
|
|
198
197
|
"""
|
|
199
198
|
A map of metadata stored with the object in Spaces
|
|
200
199
|
"""
|
|
201
200
|
return pulumi.get(self, "metadata")
|
|
202
201
|
|
|
203
|
-
@property
|
|
202
|
+
@_builtins.property
|
|
204
203
|
@pulumi.getter
|
|
205
|
-
def range(self) -> Optional[
|
|
204
|
+
def range(self) -> Optional[_builtins.str]:
|
|
206
205
|
return pulumi.get(self, "range")
|
|
207
206
|
|
|
208
|
-
@property
|
|
207
|
+
@_builtins.property
|
|
209
208
|
@pulumi.getter
|
|
210
|
-
def region(self) ->
|
|
209
|
+
def region(self) -> _builtins.str:
|
|
211
210
|
return pulumi.get(self, "region")
|
|
212
211
|
|
|
213
|
-
@property
|
|
212
|
+
@_builtins.property
|
|
214
213
|
@pulumi.getter(name="versionId")
|
|
215
|
-
def version_id(self) ->
|
|
214
|
+
def version_id(self) -> _builtins.str:
|
|
216
215
|
"""
|
|
217
216
|
The latest version ID of the object returned.
|
|
218
217
|
"""
|
|
219
218
|
return pulumi.get(self, "version_id")
|
|
220
219
|
|
|
221
|
-
@property
|
|
220
|
+
@_builtins.property
|
|
222
221
|
@pulumi.getter(name="websiteRedirectLocation")
|
|
223
|
-
def website_redirect_location(self) ->
|
|
222
|
+
def website_redirect_location(self) -> _builtins.str:
|
|
224
223
|
"""
|
|
225
224
|
If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Spaces stores the value of this header in the object metadata.
|
|
226
225
|
"""
|
|
@@ -254,11 +253,11 @@ class AwaitableGetSpacesBucketObjectResult(GetSpacesBucketObjectResult):
|
|
|
254
253
|
website_redirect_location=self.website_redirect_location)
|
|
255
254
|
|
|
256
255
|
|
|
257
|
-
def get_spaces_bucket_object(bucket: Optional[
|
|
258
|
-
key: Optional[
|
|
259
|
-
range: Optional[
|
|
260
|
-
region: Optional[
|
|
261
|
-
version_id: Optional[
|
|
256
|
+
def get_spaces_bucket_object(bucket: Optional[_builtins.str] = None,
|
|
257
|
+
key: Optional[_builtins.str] = None,
|
|
258
|
+
range: Optional[_builtins.str] = None,
|
|
259
|
+
region: Optional[_builtins.str] = None,
|
|
260
|
+
version_id: Optional[_builtins.str] = None,
|
|
262
261
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpacesBucketObjectResult:
|
|
263
262
|
"""
|
|
264
263
|
The Spaces object data source allows access to the metadata and
|
|
@@ -289,10 +288,10 @@ def get_spaces_bucket_object(bucket: Optional[builtins.str] = None,
|
|
|
289
288
|
```
|
|
290
289
|
|
|
291
290
|
|
|
292
|
-
:param
|
|
293
|
-
:param
|
|
294
|
-
:param
|
|
295
|
-
:param
|
|
291
|
+
:param _builtins.str bucket: The name of the bucket to read the object from.
|
|
292
|
+
:param _builtins.str key: The full path to the object inside the bucket
|
|
293
|
+
:param _builtins.str region: The slug of the region where the bucket is stored.
|
|
294
|
+
:param _builtins.str version_id: Specific version ID of the object returned (defaults to latest version)
|
|
296
295
|
"""
|
|
297
296
|
__args__ = dict()
|
|
298
297
|
__args__['bucket'] = bucket
|
|
@@ -323,11 +322,11 @@ def get_spaces_bucket_object(bucket: Optional[builtins.str] = None,
|
|
|
323
322
|
region=pulumi.get(__ret__, 'region'),
|
|
324
323
|
version_id=pulumi.get(__ret__, 'version_id'),
|
|
325
324
|
website_redirect_location=pulumi.get(__ret__, 'website_redirect_location'))
|
|
326
|
-
def get_spaces_bucket_object_output(bucket: Optional[pulumi.Input[
|
|
327
|
-
key: Optional[pulumi.Input[
|
|
328
|
-
range: Optional[pulumi.Input[Optional[
|
|
329
|
-
region: Optional[pulumi.Input[
|
|
330
|
-
version_id: Optional[pulumi.Input[Optional[
|
|
325
|
+
def get_spaces_bucket_object_output(bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
|
326
|
+
key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
327
|
+
range: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
328
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
329
|
+
version_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
331
330
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSpacesBucketObjectResult]:
|
|
332
331
|
"""
|
|
333
332
|
The Spaces object data source allows access to the metadata and
|
|
@@ -358,10 +357,10 @@ def get_spaces_bucket_object_output(bucket: Optional[pulumi.Input[builtins.str]]
|
|
|
358
357
|
```
|
|
359
358
|
|
|
360
359
|
|
|
361
|
-
:param
|
|
362
|
-
:param
|
|
363
|
-
:param
|
|
364
|
-
:param
|
|
360
|
+
:param _builtins.str bucket: The name of the bucket to read the object from.
|
|
361
|
+
:param _builtins.str key: The full path to the object inside the bucket
|
|
362
|
+
:param _builtins.str region: The slug of the region where the bucket is stored.
|
|
363
|
+
:param _builtins.str version_id: Specific version ID of the object returned (defaults to latest version)
|
|
365
364
|
"""
|
|
366
365
|
__args__ = dict()
|
|
367
366
|
__args__['bucket'] = bucket
|
|
@@ -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
|
|
@@ -59,66 +58,66 @@ class GetSpacesBucketObjectsResult:
|
|
|
59
58
|
raise TypeError("Expected argument 'region' to be a str")
|
|
60
59
|
pulumi.set(__self__, "region", region)
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def bucket(self) ->
|
|
63
|
+
def bucket(self) -> _builtins.str:
|
|
65
64
|
return pulumi.get(self, "bucket")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter(name="commonPrefixes")
|
|
69
|
-
def common_prefixes(self) -> Sequence[
|
|
68
|
+
def common_prefixes(self) -> Sequence[_builtins.str]:
|
|
70
69
|
"""
|
|
71
70
|
List of any keys between `prefix` and the next occurrence of `delimiter` (i.e., similar to subdirectories of the `prefix` "directory"); the list is only returned when you specify `delimiter`
|
|
72
71
|
"""
|
|
73
72
|
return pulumi.get(self, "common_prefixes")
|
|
74
73
|
|
|
75
|
-
@property
|
|
74
|
+
@_builtins.property
|
|
76
75
|
@pulumi.getter
|
|
77
|
-
def delimiter(self) -> Optional[
|
|
76
|
+
def delimiter(self) -> Optional[_builtins.str]:
|
|
78
77
|
return pulumi.get(self, "delimiter")
|
|
79
78
|
|
|
80
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
81
80
|
@pulumi.getter(name="encodingType")
|
|
82
|
-
def encoding_type(self) -> Optional[
|
|
81
|
+
def encoding_type(self) -> Optional[_builtins.str]:
|
|
83
82
|
return pulumi.get(self, "encoding_type")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter
|
|
87
|
-
def id(self) ->
|
|
86
|
+
def id(self) -> _builtins.str:
|
|
88
87
|
"""
|
|
89
88
|
The provider-assigned unique ID for this managed resource.
|
|
90
89
|
"""
|
|
91
90
|
return pulumi.get(self, "id")
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def keys(self) -> Sequence[
|
|
94
|
+
def keys(self) -> Sequence[_builtins.str]:
|
|
96
95
|
"""
|
|
97
96
|
List of strings representing object keys
|
|
98
97
|
"""
|
|
99
98
|
return pulumi.get(self, "keys")
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter(name="maxKeys")
|
|
103
|
-
def max_keys(self) -> Optional[
|
|
102
|
+
def max_keys(self) -> Optional[_builtins.int]:
|
|
104
103
|
return pulumi.get(self, "max_keys")
|
|
105
104
|
|
|
106
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
107
106
|
@pulumi.getter
|
|
108
|
-
def owners(self) -> Sequence[
|
|
107
|
+
def owners(self) -> Sequence[_builtins.str]:
|
|
109
108
|
"""
|
|
110
109
|
List of strings representing object owner IDs
|
|
111
110
|
"""
|
|
112
111
|
return pulumi.get(self, "owners")
|
|
113
112
|
|
|
114
|
-
@property
|
|
113
|
+
@_builtins.property
|
|
115
114
|
@pulumi.getter
|
|
116
|
-
def prefix(self) -> Optional[
|
|
115
|
+
def prefix(self) -> Optional[_builtins.str]:
|
|
117
116
|
return pulumi.get(self, "prefix")
|
|
118
117
|
|
|
119
|
-
@property
|
|
118
|
+
@_builtins.property
|
|
120
119
|
@pulumi.getter
|
|
121
|
-
def region(self) ->
|
|
120
|
+
def region(self) -> _builtins.str:
|
|
122
121
|
return pulumi.get(self, "region")
|
|
123
122
|
|
|
124
123
|
|
|
@@ -140,12 +139,12 @@ class AwaitableGetSpacesBucketObjectsResult(GetSpacesBucketObjectsResult):
|
|
|
140
139
|
region=self.region)
|
|
141
140
|
|
|
142
141
|
|
|
143
|
-
def get_spaces_bucket_objects(bucket: Optional[
|
|
144
|
-
delimiter: Optional[
|
|
145
|
-
encoding_type: Optional[
|
|
146
|
-
max_keys: Optional[
|
|
147
|
-
prefix: Optional[
|
|
148
|
-
region: Optional[
|
|
142
|
+
def get_spaces_bucket_objects(bucket: Optional[_builtins.str] = None,
|
|
143
|
+
delimiter: Optional[_builtins.str] = None,
|
|
144
|
+
encoding_type: Optional[_builtins.str] = None,
|
|
145
|
+
max_keys: Optional[_builtins.int] = None,
|
|
146
|
+
prefix: Optional[_builtins.str] = None,
|
|
147
|
+
region: Optional[_builtins.str] = None,
|
|
149
148
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpacesBucketObjectsResult:
|
|
150
149
|
"""
|
|
151
150
|
> **NOTE on `max_keys`:** Retrieving very large numbers of keys can adversely affect the provider's performance.
|
|
@@ -153,12 +152,12 @@ def get_spaces_bucket_objects(bucket: Optional[builtins.str] = None,
|
|
|
153
152
|
The bucket-objects data source returns keys (i.e., file names) and other metadata about objects in a Spaces bucket.
|
|
154
153
|
|
|
155
154
|
|
|
156
|
-
:param
|
|
157
|
-
:param
|
|
158
|
-
:param
|
|
159
|
-
:param
|
|
160
|
-
:param
|
|
161
|
-
:param
|
|
155
|
+
:param _builtins.str bucket: Lists object keys in this Spaces bucket
|
|
156
|
+
:param _builtins.str delimiter: A character used to group keys (Default: none)
|
|
157
|
+
:param _builtins.str encoding_type: Encodes keys using this method (Default: none; besides none, only "url" can be used)
|
|
158
|
+
:param _builtins.int max_keys: Maximum object keys to return (Default: 1000)
|
|
159
|
+
:param _builtins.str prefix: Limits results to object keys with this prefix (Default: none)
|
|
160
|
+
:param _builtins.str region: The slug of the region where the bucket is stored.
|
|
162
161
|
"""
|
|
163
162
|
__args__ = dict()
|
|
164
163
|
__args__['bucket'] = bucket
|
|
@@ -181,12 +180,12 @@ def get_spaces_bucket_objects(bucket: Optional[builtins.str] = None,
|
|
|
181
180
|
owners=pulumi.get(__ret__, 'owners'),
|
|
182
181
|
prefix=pulumi.get(__ret__, 'prefix'),
|
|
183
182
|
region=pulumi.get(__ret__, 'region'))
|
|
184
|
-
def get_spaces_bucket_objects_output(bucket: Optional[pulumi.Input[
|
|
185
|
-
delimiter: Optional[pulumi.Input[Optional[
|
|
186
|
-
encoding_type: Optional[pulumi.Input[Optional[
|
|
187
|
-
max_keys: Optional[pulumi.Input[Optional[
|
|
188
|
-
prefix: Optional[pulumi.Input[Optional[
|
|
189
|
-
region: Optional[pulumi.Input[
|
|
183
|
+
def get_spaces_bucket_objects_output(bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
|
184
|
+
delimiter: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
185
|
+
encoding_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
186
|
+
max_keys: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
187
|
+
prefix: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
188
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
190
189
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSpacesBucketObjectsResult]:
|
|
191
190
|
"""
|
|
192
191
|
> **NOTE on `max_keys`:** Retrieving very large numbers of keys can adversely affect the provider's performance.
|
|
@@ -194,12 +193,12 @@ def get_spaces_bucket_objects_output(bucket: Optional[pulumi.Input[builtins.str]
|
|
|
194
193
|
The bucket-objects data source returns keys (i.e., file names) and other metadata about objects in a Spaces bucket.
|
|
195
194
|
|
|
196
195
|
|
|
197
|
-
:param
|
|
198
|
-
:param
|
|
199
|
-
:param
|
|
200
|
-
:param
|
|
201
|
-
:param
|
|
202
|
-
:param
|
|
196
|
+
:param _builtins.str bucket: Lists object keys in this Spaces bucket
|
|
197
|
+
:param _builtins.str delimiter: A character used to group keys (Default: none)
|
|
198
|
+
:param _builtins.str encoding_type: Encodes keys using this method (Default: none; besides none, only "url" can be used)
|
|
199
|
+
:param _builtins.int max_keys: Maximum object keys to return (Default: 1000)
|
|
200
|
+
:param _builtins.str prefix: Limits results to object keys with this prefix (Default: none)
|
|
201
|
+
:param _builtins.str region: The slug of the region where the bucket is stored.
|
|
203
202
|
"""
|
|
204
203
|
__args__ = dict()
|
|
205
204
|
__args__['bucket'] = bucket
|
|
@@ -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
|
|
@@ -43,7 +42,7 @@ class GetSpacesBucketsResult:
|
|
|
43
42
|
raise TypeError("Expected argument 'sorts' to be a list")
|
|
44
43
|
pulumi.set(__self__, "sorts", sorts)
|
|
45
44
|
|
|
46
|
-
@property
|
|
45
|
+
@_builtins.property
|
|
47
46
|
@pulumi.getter
|
|
48
47
|
def buckets(self) -> Sequence['outputs.GetSpacesBucketsBucketResult']:
|
|
49
48
|
"""
|
|
@@ -51,20 +50,20 @@ class GetSpacesBucketsResult:
|
|
|
51
50
|
"""
|
|
52
51
|
return pulumi.get(self, "buckets")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
55
|
def filters(self) -> Optional[Sequence['outputs.GetSpacesBucketsFilterResult']]:
|
|
57
56
|
return pulumi.get(self, "filters")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def id(self) ->
|
|
60
|
+
def id(self) -> _builtins.str:
|
|
62
61
|
"""
|
|
63
62
|
The provider-assigned unique ID for this managed resource.
|
|
64
63
|
"""
|
|
65
64
|
return pulumi.get(self, "id")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
68
|
def sorts(self) -> Optional[Sequence['outputs.GetSpacesBucketsSortResult']]:
|
|
70
69
|
return pulumi.get(self, "sorts")
|
|
@@ -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
|
|
@@ -45,23 +44,23 @@ class GetSpacesKeyResult:
|
|
|
45
44
|
raise TypeError("Expected argument 'name' to be a str")
|
|
46
45
|
pulumi.set(__self__, "name", name)
|
|
47
46
|
|
|
48
|
-
@property
|
|
47
|
+
@_builtins.property
|
|
49
48
|
@pulumi.getter(name="accessKey")
|
|
50
|
-
def access_key(self) ->
|
|
49
|
+
def access_key(self) -> _builtins.str:
|
|
51
50
|
"""
|
|
52
51
|
The access key ID of the Spaces key
|
|
53
52
|
"""
|
|
54
53
|
return pulumi.get(self, "access_key")
|
|
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 creation time of the Spaces key
|
|
61
60
|
"""
|
|
62
61
|
return pulumi.get(self, "created_at")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter
|
|
66
65
|
def grants(self) -> Sequence['outputs.GetSpacesKeyGrantResult']:
|
|
67
66
|
"""
|
|
@@ -69,17 +68,17 @@ class GetSpacesKeyResult:
|
|
|
69
68
|
"""
|
|
70
69
|
return pulumi.get(self, "grants")
|
|
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 Spaces key
|
|
85
84
|
"""
|
|
@@ -99,7 +98,7 @@ class AwaitableGetSpacesKeyResult(GetSpacesKeyResult):
|
|
|
99
98
|
name=self.name)
|
|
100
99
|
|
|
101
100
|
|
|
102
|
-
def get_spaces_key(access_key: Optional[
|
|
101
|
+
def get_spaces_key(access_key: Optional[_builtins.str] = None,
|
|
103
102
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpacesKeyResult:
|
|
104
103
|
"""
|
|
105
104
|
## Example Usage
|
|
@@ -115,7 +114,7 @@ def get_spaces_key(access_key: Optional[builtins.str] = None,
|
|
|
115
114
|
```
|
|
116
115
|
|
|
117
116
|
|
|
118
|
-
:param
|
|
117
|
+
:param _builtins.str access_key: The Access Key ID of the Spaces key.
|
|
119
118
|
"""
|
|
120
119
|
__args__ = dict()
|
|
121
120
|
__args__['accessKey'] = access_key
|
|
@@ -128,7 +127,7 @@ def get_spaces_key(access_key: Optional[builtins.str] = None,
|
|
|
128
127
|
grants=pulumi.get(__ret__, 'grants'),
|
|
129
128
|
id=pulumi.get(__ret__, 'id'),
|
|
130
129
|
name=pulumi.get(__ret__, 'name'))
|
|
131
|
-
def get_spaces_key_output(access_key: Optional[pulumi.Input[
|
|
130
|
+
def get_spaces_key_output(access_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
132
131
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSpacesKeyResult]:
|
|
133
132
|
"""
|
|
134
133
|
## Example Usage
|
|
@@ -144,7 +143,7 @@ def get_spaces_key_output(access_key: Optional[pulumi.Input[builtins.str]] = Non
|
|
|
144
143
|
```
|
|
145
144
|
|
|
146
145
|
|
|
147
|
-
:param
|
|
146
|
+
:param _builtins.str access_key: The Access Key ID of the Spaces key.
|
|
148
147
|
"""
|
|
149
148
|
__args__ = dict()
|
|
150
149
|
__args__['accessKey'] = access_key
|
|
@@ -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
|
|
@@ -41,30 +40,30 @@ class GetSshKeyResult:
|
|
|
41
40
|
raise TypeError("Expected argument 'public_key' to be a str")
|
|
42
41
|
pulumi.set(__self__, "public_key", public_key)
|
|
43
42
|
|
|
44
|
-
@property
|
|
43
|
+
@_builtins.property
|
|
45
44
|
@pulumi.getter
|
|
46
|
-
def fingerprint(self) ->
|
|
45
|
+
def fingerprint(self) -> _builtins.str:
|
|
47
46
|
"""
|
|
48
47
|
The fingerprint of the public key of the ssh key.
|
|
49
48
|
"""
|
|
50
49
|
return pulumi.get(self, "fingerprint")
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
|
-
def id(self) ->
|
|
53
|
+
def id(self) -> _builtins.int:
|
|
55
54
|
"""
|
|
56
55
|
The ID of the ssh key.
|
|
57
56
|
"""
|
|
58
57
|
return pulumi.get(self, "id")
|
|
59
58
|
|
|
60
|
-
@property
|
|
59
|
+
@_builtins.property
|
|
61
60
|
@pulumi.getter
|
|
62
|
-
def name(self) ->
|
|
61
|
+
def name(self) -> _builtins.str:
|
|
63
62
|
return pulumi.get(self, "name")
|
|
64
63
|
|
|
65
|
-
@property
|
|
64
|
+
@_builtins.property
|
|
66
65
|
@pulumi.getter(name="publicKey")
|
|
67
|
-
def public_key(self) ->
|
|
66
|
+
def public_key(self) -> _builtins.str:
|
|
68
67
|
"""
|
|
69
68
|
The public key of the ssh key.
|
|
70
69
|
"""
|
|
@@ -83,7 +82,7 @@ class AwaitableGetSshKeyResult(GetSshKeyResult):
|
|
|
83
82
|
public_key=self.public_key)
|
|
84
83
|
|
|
85
84
|
|
|
86
|
-
def get_ssh_key(name: Optional[
|
|
85
|
+
def get_ssh_key(name: Optional[_builtins.str] = None,
|
|
87
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSshKeyResult:
|
|
88
87
|
"""
|
|
89
88
|
Get information on a ssh key. This data source provides the name, public key,
|
|
@@ -111,7 +110,7 @@ def get_ssh_key(name: Optional[builtins.str] = None,
|
|
|
111
110
|
```
|
|
112
111
|
|
|
113
112
|
|
|
114
|
-
:param
|
|
113
|
+
:param _builtins.str name: The name of the ssh key.
|
|
115
114
|
"""
|
|
116
115
|
__args__ = dict()
|
|
117
116
|
__args__['name'] = name
|
|
@@ -123,7 +122,7 @@ def get_ssh_key(name: Optional[builtins.str] = None,
|
|
|
123
122
|
id=pulumi.get(__ret__, 'id'),
|
|
124
123
|
name=pulumi.get(__ret__, 'name'),
|
|
125
124
|
public_key=pulumi.get(__ret__, 'public_key'))
|
|
126
|
-
def get_ssh_key_output(name: Optional[pulumi.Input[
|
|
125
|
+
def get_ssh_key_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
127
126
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSshKeyResult]:
|
|
128
127
|
"""
|
|
129
128
|
Get information on a ssh key. This data source provides the name, public key,
|
|
@@ -151,7 +150,7 @@ def get_ssh_key_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
151
150
|
```
|
|
152
151
|
|
|
153
152
|
|
|
154
|
-
:param
|
|
153
|
+
:param _builtins.str name: The name of the ssh key.
|
|
155
154
|
"""
|
|
156
155
|
__args__ = dict()
|
|
157
156
|
__args__['name'] = name
|