pulumi-digitalocean 4.42.0a1743486281__py3-none-any.whl → 4.42.0a1744183362__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.

Files changed (109) hide show
  1. pulumi_digitalocean/__init__.py +1 -0
  2. pulumi_digitalocean/_enums.py +10 -8
  3. pulumi_digitalocean/_inputs.py +2714 -2713
  4. pulumi_digitalocean/app.py +64 -63
  5. pulumi_digitalocean/cdn.py +85 -84
  6. pulumi_digitalocean/certificate.py +111 -110
  7. pulumi_digitalocean/config/__init__.py +1 -0
  8. pulumi_digitalocean/config/__init__.pyi +1 -0
  9. pulumi_digitalocean/config/vars.py +1 -0
  10. pulumi_digitalocean/container_registry.py +71 -70
  11. pulumi_digitalocean/container_registry_docker_credentials.py +57 -56
  12. pulumi_digitalocean/custom_image.py +141 -140
  13. pulumi_digitalocean/database_cluster.py +274 -273
  14. pulumi_digitalocean/database_connection_pool.py +127 -126
  15. pulumi_digitalocean/database_db.py +29 -28
  16. pulumi_digitalocean/database_firewall.py +15 -14
  17. pulumi_digitalocean/database_kafka_config.py +253 -252
  18. pulumi_digitalocean/database_kafka_topic.py +64 -63
  19. pulumi_digitalocean/database_mongodb_config.py +85 -84
  20. pulumi_digitalocean/database_mysql_config.py +393 -392
  21. pulumi_digitalocean/database_opensearch_config.py +547 -546
  22. pulumi_digitalocean/database_postgresql_config.py +701 -700
  23. pulumi_digitalocean/database_redis_config.py +169 -168
  24. pulumi_digitalocean/database_replica.py +158 -157
  25. pulumi_digitalocean/database_user.py +71 -70
  26. pulumi_digitalocean/dns_record.py +148 -147
  27. pulumi_digitalocean/domain.py +43 -42
  28. pulumi_digitalocean/droplet.py +312 -311
  29. pulumi_digitalocean/droplet_autoscale.py +36 -35
  30. pulumi_digitalocean/droplet_snapshot.py +57 -56
  31. pulumi_digitalocean/firewall.py +57 -56
  32. pulumi_digitalocean/floating_ip.py +50 -49
  33. pulumi_digitalocean/floating_ip_assignment.py +29 -28
  34. pulumi_digitalocean/get_account.py +9 -8
  35. pulumi_digitalocean/get_app.py +15 -14
  36. pulumi_digitalocean/get_certificate.py +13 -12
  37. pulumi_digitalocean/get_container_registry.py +13 -12
  38. pulumi_digitalocean/get_database_ca.py +8 -7
  39. pulumi_digitalocean/get_database_cluster.py +33 -32
  40. pulumi_digitalocean/get_database_connection_pool.py +22 -21
  41. pulumi_digitalocean/get_database_replica.py +29 -28
  42. pulumi_digitalocean/get_database_user.py +17 -16
  43. pulumi_digitalocean/get_domain.py +10 -9
  44. pulumi_digitalocean/get_domains.py +2 -1
  45. pulumi_digitalocean/get_droplet.py +44 -43
  46. pulumi_digitalocean/get_droplet_autoscale.py +14 -13
  47. pulumi_digitalocean/get_droplet_snapshot.py +27 -26
  48. pulumi_digitalocean/get_droplets.py +7 -6
  49. pulumi_digitalocean/get_firewall.py +20 -19
  50. pulumi_digitalocean/get_floating_ip.py +10 -9
  51. pulumi_digitalocean/get_image.py +33 -32
  52. pulumi_digitalocean/get_images.py +2 -1
  53. pulumi_digitalocean/get_kubernetes_cluster.py +29 -28
  54. pulumi_digitalocean/get_kubernetes_versions.py +9 -8
  55. pulumi_digitalocean/get_load_balancer.py +31 -30
  56. pulumi_digitalocean/get_project.py +20 -19
  57. pulumi_digitalocean/get_projects.py +2 -1
  58. pulumi_digitalocean/get_record.py +20 -19
  59. pulumi_digitalocean/get_records.py +7 -6
  60. pulumi_digitalocean/get_region.py +11 -10
  61. pulumi_digitalocean/get_regions.py +2 -1
  62. pulumi_digitalocean/get_reserved_ip.py +10 -9
  63. pulumi_digitalocean/get_reserved_ipv6.py +10 -9
  64. pulumi_digitalocean/get_sizes.py +2 -1
  65. pulumi_digitalocean/get_spaces_bucket.py +15 -14
  66. pulumi_digitalocean/get_spaces_bucket_object.py +38 -37
  67. pulumi_digitalocean/get_spaces_bucket_objects.py +35 -34
  68. pulumi_digitalocean/get_spaces_buckets.py +2 -1
  69. pulumi_digitalocean/get_spaces_key.py +9 -8
  70. pulumi_digitalocean/get_ssh_key.py +9 -8
  71. pulumi_digitalocean/get_ssh_keys.py +2 -1
  72. pulumi_digitalocean/get_tag.py +13 -12
  73. pulumi_digitalocean/get_tags.py +2 -1
  74. pulumi_digitalocean/get_volume.py +23 -22
  75. pulumi_digitalocean/get_volume_snapshot.py +28 -27
  76. pulumi_digitalocean/get_vpc.py +21 -20
  77. pulumi_digitalocean/get_vpc_peering.py +18 -17
  78. pulumi_digitalocean/kubernetes_cluster.py +225 -224
  79. pulumi_digitalocean/kubernetes_node_pool.py +134 -133
  80. pulumi_digitalocean/load_balancer.py +277 -276
  81. pulumi_digitalocean/monitor_alert.py +120 -119
  82. pulumi_digitalocean/outputs.py +3008 -3007
  83. pulumi_digitalocean/project.py +113 -112
  84. pulumi_digitalocean/project_resources.py +29 -28
  85. pulumi_digitalocean/provider.py +69 -68
  86. pulumi_digitalocean/pulumi-plugin.json +1 -1
  87. pulumi_digitalocean/reserved_ip.py +50 -49
  88. pulumi_digitalocean/reserved_ip_assignment.py +29 -28
  89. pulumi_digitalocean/reserved_ipv6.py +44 -43
  90. pulumi_digitalocean/reserved_ipv6_assignment.py +29 -28
  91. pulumi_digitalocean/spaces_bucket.py +78 -77
  92. pulumi_digitalocean/spaces_bucket_cors_configuration.py +29 -28
  93. pulumi_digitalocean/spaces_bucket_object.py +232 -231
  94. pulumi_digitalocean/spaces_bucket_policy.py +43 -42
  95. pulumi_digitalocean/spaces_key.py +36 -35
  96. pulumi_digitalocean/ssh_key.py +36 -35
  97. pulumi_digitalocean/tag.py +57 -56
  98. pulumi_digitalocean/uptime_alert.py +85 -84
  99. pulumi_digitalocean/uptime_check.py +71 -70
  100. pulumi_digitalocean/volume.py +148 -147
  101. pulumi_digitalocean/volume_attachment.py +29 -28
  102. pulumi_digitalocean/volume_snapshot.py +71 -70
  103. pulumi_digitalocean/vpc.py +78 -77
  104. pulumi_digitalocean/vpc_peering.py +43 -42
  105. {pulumi_digitalocean-4.42.0a1743486281.dist-info → pulumi_digitalocean-4.42.0a1744183362.dist-info}/METADATA +1 -1
  106. pulumi_digitalocean-4.42.0a1744183362.dist-info/RECORD +110 -0
  107. pulumi_digitalocean-4.42.0a1743486281.dist-info/RECORD +0 -110
  108. {pulumi_digitalocean-4.42.0a1743486281.dist-info → pulumi_digitalocean-4.42.0a1744183362.dist-info}/WHEEL +0 -0
  109. {pulumi_digitalocean-4.42.0a1743486281.dist-info → pulumi_digitalocean-4.42.0a1744183362.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -87,7 +88,7 @@ class GetSpacesBucketObjectResult:
87
88
 
88
89
  @property
89
90
  @pulumi.getter
90
- def body(self) -> str:
91
+ def body(self) -> builtins.str:
91
92
  """
92
93
  Object data (see **limitations above** to understand cases in which this field is actually available)
93
94
  """
@@ -95,12 +96,12 @@ class GetSpacesBucketObjectResult:
95
96
 
96
97
  @property
97
98
  @pulumi.getter
98
- def bucket(self) -> str:
99
+ def bucket(self) -> builtins.str:
99
100
  return pulumi.get(self, "bucket")
100
101
 
101
102
  @property
102
103
  @pulumi.getter(name="cacheControl")
103
- def cache_control(self) -> str:
104
+ def cache_control(self) -> builtins.str:
104
105
  """
105
106
  Specifies caching behavior along the request/reply chain.
106
107
  """
@@ -108,7 +109,7 @@ class GetSpacesBucketObjectResult:
108
109
 
109
110
  @property
110
111
  @pulumi.getter(name="contentDisposition")
111
- def content_disposition(self) -> str:
112
+ def content_disposition(self) -> builtins.str:
112
113
  """
113
114
  Specifies presentational information for the object.
114
115
  """
@@ -116,7 +117,7 @@ class GetSpacesBucketObjectResult:
116
117
 
117
118
  @property
118
119
  @pulumi.getter(name="contentEncoding")
119
- def content_encoding(self) -> str:
120
+ def content_encoding(self) -> builtins.str:
120
121
  """
121
122
  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.
122
123
  """
@@ -124,7 +125,7 @@ class GetSpacesBucketObjectResult:
124
125
 
125
126
  @property
126
127
  @pulumi.getter(name="contentLanguage")
127
- def content_language(self) -> str:
128
+ def content_language(self) -> builtins.str:
128
129
  """
129
130
  The language the content is in.
130
131
  """
@@ -132,7 +133,7 @@ class GetSpacesBucketObjectResult:
132
133
 
133
134
  @property
134
135
  @pulumi.getter(name="contentLength")
135
- def content_length(self) -> int:
136
+ def content_length(self) -> builtins.int:
136
137
  """
137
138
  Size of the body in bytes.
138
139
  """
@@ -140,7 +141,7 @@ class GetSpacesBucketObjectResult:
140
141
 
141
142
  @property
142
143
  @pulumi.getter(name="contentType")
143
- def content_type(self) -> str:
144
+ def content_type(self) -> builtins.str:
144
145
  """
145
146
  A standard MIME type describing the format of the object data.
146
147
  """
@@ -148,7 +149,7 @@ class GetSpacesBucketObjectResult:
148
149
 
149
150
  @property
150
151
  @pulumi.getter
151
- def etag(self) -> str:
152
+ def etag(self) -> builtins.str:
152
153
  """
153
154
  [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)
154
155
  """
@@ -156,7 +157,7 @@ class GetSpacesBucketObjectResult:
156
157
 
157
158
  @property
158
159
  @pulumi.getter
159
- def expiration(self) -> str:
160
+ def expiration(self) -> builtins.str:
160
161
  """
161
162
  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.
162
163
  """
@@ -164,7 +165,7 @@ class GetSpacesBucketObjectResult:
164
165
 
165
166
  @property
166
167
  @pulumi.getter
167
- def expires(self) -> str:
168
+ def expires(self) -> builtins.str:
168
169
  """
169
170
  The date and time at which the object is no longer cacheable.
170
171
  """
@@ -172,7 +173,7 @@ class GetSpacesBucketObjectResult:
172
173
 
173
174
  @property
174
175
  @pulumi.getter
175
- def id(self) -> str:
176
+ def id(self) -> builtins.str:
176
177
  """
177
178
  The provider-assigned unique ID for this managed resource.
178
179
  """
@@ -180,12 +181,12 @@ class GetSpacesBucketObjectResult:
180
181
 
181
182
  @property
182
183
  @pulumi.getter
183
- def key(self) -> str:
184
+ def key(self) -> builtins.str:
184
185
  return pulumi.get(self, "key")
185
186
 
186
187
  @property
187
188
  @pulumi.getter(name="lastModified")
188
- def last_modified(self) -> str:
189
+ def last_modified(self) -> builtins.str:
189
190
  """
190
191
  Last modified date of the object in RFC1123 format (e.g. `Mon, 02 Jan 2006 15:04:05 MST`)
191
192
  """
@@ -193,7 +194,7 @@ class GetSpacesBucketObjectResult:
193
194
 
194
195
  @property
195
196
  @pulumi.getter
196
- def metadata(self) -> Mapping[str, str]:
197
+ def metadata(self) -> Mapping[str, builtins.str]:
197
198
  """
198
199
  A map of metadata stored with the object in Spaces
199
200
  """
@@ -201,17 +202,17 @@ class GetSpacesBucketObjectResult:
201
202
 
202
203
  @property
203
204
  @pulumi.getter
204
- def range(self) -> Optional[str]:
205
+ def range(self) -> Optional[builtins.str]:
205
206
  return pulumi.get(self, "range")
206
207
 
207
208
  @property
208
209
  @pulumi.getter
209
- def region(self) -> str:
210
+ def region(self) -> builtins.str:
210
211
  return pulumi.get(self, "region")
211
212
 
212
213
  @property
213
214
  @pulumi.getter(name="versionId")
214
- def version_id(self) -> str:
215
+ def version_id(self) -> builtins.str:
215
216
  """
216
217
  The latest version ID of the object returned.
217
218
  """
@@ -219,7 +220,7 @@ class GetSpacesBucketObjectResult:
219
220
 
220
221
  @property
221
222
  @pulumi.getter(name="websiteRedirectLocation")
222
- def website_redirect_location(self) -> str:
223
+ def website_redirect_location(self) -> builtins.str:
223
224
  """
224
225
  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.
225
226
  """
@@ -253,11 +254,11 @@ class AwaitableGetSpacesBucketObjectResult(GetSpacesBucketObjectResult):
253
254
  website_redirect_location=self.website_redirect_location)
254
255
 
255
256
 
256
- def get_spaces_bucket_object(bucket: Optional[str] = None,
257
- key: Optional[str] = None,
258
- range: Optional[str] = None,
259
- region: Optional[str] = None,
260
- version_id: Optional[str] = None,
257
+ def get_spaces_bucket_object(bucket: Optional[builtins.str] = None,
258
+ key: Optional[builtins.str] = None,
259
+ range: Optional[builtins.str] = None,
260
+ region: Optional[builtins.str] = None,
261
+ version_id: Optional[builtins.str] = None,
261
262
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpacesBucketObjectResult:
262
263
  """
263
264
  The Spaces object data source allows access to the metadata and
@@ -288,10 +289,10 @@ def get_spaces_bucket_object(bucket: Optional[str] = None,
288
289
  ```
289
290
 
290
291
 
291
- :param str bucket: The name of the bucket to read the object from.
292
- :param str key: The full path to the object inside the bucket
293
- :param str region: The slug of the region where the bucket is stored.
294
- :param str version_id: Specific version ID of the object returned (defaults to latest version)
292
+ :param builtins.str bucket: The name of the bucket to read the object from.
293
+ :param builtins.str key: The full path to the object inside the bucket
294
+ :param builtins.str region: The slug of the region where the bucket is stored.
295
+ :param builtins.str version_id: Specific version ID of the object returned (defaults to latest version)
295
296
  """
296
297
  __args__ = dict()
297
298
  __args__['bucket'] = bucket
@@ -322,11 +323,11 @@ def get_spaces_bucket_object(bucket: Optional[str] = None,
322
323
  region=pulumi.get(__ret__, 'region'),
323
324
  version_id=pulumi.get(__ret__, 'version_id'),
324
325
  website_redirect_location=pulumi.get(__ret__, 'website_redirect_location'))
325
- def get_spaces_bucket_object_output(bucket: Optional[pulumi.Input[str]] = None,
326
- key: Optional[pulumi.Input[str]] = None,
327
- range: Optional[pulumi.Input[Optional[str]]] = None,
328
- region: Optional[pulumi.Input[str]] = None,
329
- version_id: Optional[pulumi.Input[Optional[str]]] = None,
326
+ def get_spaces_bucket_object_output(bucket: Optional[pulumi.Input[builtins.str]] = None,
327
+ key: Optional[pulumi.Input[builtins.str]] = None,
328
+ range: Optional[pulumi.Input[Optional[builtins.str]]] = None,
329
+ region: Optional[pulumi.Input[builtins.str]] = None,
330
+ version_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
330
331
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSpacesBucketObjectResult]:
331
332
  """
332
333
  The Spaces object data source allows access to the metadata and
@@ -357,10 +358,10 @@ def get_spaces_bucket_object_output(bucket: Optional[pulumi.Input[str]] = None,
357
358
  ```
358
359
 
359
360
 
360
- :param str bucket: The name of the bucket to read the object from.
361
- :param str key: The full path to the object inside the bucket
362
- :param str region: The slug of the region where the bucket is stored.
363
- :param str version_id: Specific version ID of the object returned (defaults to latest version)
361
+ :param builtins.str bucket: The name of the bucket to read the object from.
362
+ :param builtins.str key: The full path to the object inside the bucket
363
+ :param builtins.str region: The slug of the region where the bucket is stored.
364
+ :param builtins.str version_id: Specific version ID of the object returned (defaults to latest version)
364
365
  """
365
366
  __args__ = dict()
366
367
  __args__['bucket'] = bucket
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -60,12 +61,12 @@ class GetSpacesBucketObjectsResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def bucket(self) -> str:
64
+ def bucket(self) -> builtins.str:
64
65
  return pulumi.get(self, "bucket")
65
66
 
66
67
  @property
67
68
  @pulumi.getter(name="commonPrefixes")
68
- def common_prefixes(self) -> Sequence[str]:
69
+ def common_prefixes(self) -> Sequence[builtins.str]:
69
70
  """
70
71
  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`
71
72
  """
@@ -73,17 +74,17 @@ class GetSpacesBucketObjectsResult:
73
74
 
74
75
  @property
75
76
  @pulumi.getter
76
- def delimiter(self) -> Optional[str]:
77
+ def delimiter(self) -> Optional[builtins.str]:
77
78
  return pulumi.get(self, "delimiter")
78
79
 
79
80
  @property
80
81
  @pulumi.getter(name="encodingType")
81
- def encoding_type(self) -> Optional[str]:
82
+ def encoding_type(self) -> Optional[builtins.str]:
82
83
  return pulumi.get(self, "encoding_type")
83
84
 
84
85
  @property
85
86
  @pulumi.getter
86
- def id(self) -> str:
87
+ def id(self) -> builtins.str:
87
88
  """
88
89
  The provider-assigned unique ID for this managed resource.
89
90
  """
@@ -91,7 +92,7 @@ class GetSpacesBucketObjectsResult:
91
92
 
92
93
  @property
93
94
  @pulumi.getter
94
- def keys(self) -> Sequence[str]:
95
+ def keys(self) -> Sequence[builtins.str]:
95
96
  """
96
97
  List of strings representing object keys
97
98
  """
@@ -99,12 +100,12 @@ class GetSpacesBucketObjectsResult:
99
100
 
100
101
  @property
101
102
  @pulumi.getter(name="maxKeys")
102
- def max_keys(self) -> Optional[int]:
103
+ def max_keys(self) -> Optional[builtins.int]:
103
104
  return pulumi.get(self, "max_keys")
104
105
 
105
106
  @property
106
107
  @pulumi.getter
107
- def owners(self) -> Sequence[str]:
108
+ def owners(self) -> Sequence[builtins.str]:
108
109
  """
109
110
  List of strings representing object owner IDs
110
111
  """
@@ -112,12 +113,12 @@ class GetSpacesBucketObjectsResult:
112
113
 
113
114
  @property
114
115
  @pulumi.getter
115
- def prefix(self) -> Optional[str]:
116
+ def prefix(self) -> Optional[builtins.str]:
116
117
  return pulumi.get(self, "prefix")
117
118
 
118
119
  @property
119
120
  @pulumi.getter
120
- def region(self) -> str:
121
+ def region(self) -> builtins.str:
121
122
  return pulumi.get(self, "region")
122
123
 
123
124
 
@@ -139,12 +140,12 @@ class AwaitableGetSpacesBucketObjectsResult(GetSpacesBucketObjectsResult):
139
140
  region=self.region)
140
141
 
141
142
 
142
- def get_spaces_bucket_objects(bucket: Optional[str] = None,
143
- delimiter: Optional[str] = None,
144
- encoding_type: Optional[str] = None,
145
- max_keys: Optional[int] = None,
146
- prefix: Optional[str] = None,
147
- region: Optional[str] = None,
143
+ def get_spaces_bucket_objects(bucket: Optional[builtins.str] = None,
144
+ delimiter: Optional[builtins.str] = None,
145
+ encoding_type: Optional[builtins.str] = None,
146
+ max_keys: Optional[builtins.int] = None,
147
+ prefix: Optional[builtins.str] = None,
148
+ region: Optional[builtins.str] = None,
148
149
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpacesBucketObjectsResult:
149
150
  """
150
151
  > **NOTE on `max_keys`:** Retrieving very large numbers of keys can adversely affect the provider's performance.
@@ -152,12 +153,12 @@ def get_spaces_bucket_objects(bucket: Optional[str] = None,
152
153
  The bucket-objects data source returns keys (i.e., file names) and other metadata about objects in a Spaces bucket.
153
154
 
154
155
 
155
- :param str bucket: Lists object keys in this Spaces bucket
156
- :param str delimiter: A character used to group keys (Default: none)
157
- :param str encoding_type: Encodes keys using this method (Default: none; besides none, only "url" can be used)
158
- :param int max_keys: Maximum object keys to return (Default: 1000)
159
- :param str prefix: Limits results to object keys with this prefix (Default: none)
160
- :param str region: The slug of the region where the bucket is stored.
156
+ :param builtins.str bucket: Lists object keys in this Spaces bucket
157
+ :param builtins.str delimiter: A character used to group keys (Default: none)
158
+ :param builtins.str encoding_type: Encodes keys using this method (Default: none; besides none, only "url" can be used)
159
+ :param builtins.int max_keys: Maximum object keys to return (Default: 1000)
160
+ :param builtins.str prefix: Limits results to object keys with this prefix (Default: none)
161
+ :param builtins.str region: The slug of the region where the bucket is stored.
161
162
  """
162
163
  __args__ = dict()
163
164
  __args__['bucket'] = bucket
@@ -180,12 +181,12 @@ def get_spaces_bucket_objects(bucket: Optional[str] = None,
180
181
  owners=pulumi.get(__ret__, 'owners'),
181
182
  prefix=pulumi.get(__ret__, 'prefix'),
182
183
  region=pulumi.get(__ret__, 'region'))
183
- def get_spaces_bucket_objects_output(bucket: Optional[pulumi.Input[str]] = None,
184
- delimiter: Optional[pulumi.Input[Optional[str]]] = None,
185
- encoding_type: Optional[pulumi.Input[Optional[str]]] = None,
186
- max_keys: Optional[pulumi.Input[Optional[int]]] = None,
187
- prefix: Optional[pulumi.Input[Optional[str]]] = None,
188
- region: Optional[pulumi.Input[str]] = None,
184
+ def get_spaces_bucket_objects_output(bucket: Optional[pulumi.Input[builtins.str]] = None,
185
+ delimiter: Optional[pulumi.Input[Optional[builtins.str]]] = None,
186
+ encoding_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
187
+ max_keys: Optional[pulumi.Input[Optional[builtins.int]]] = None,
188
+ prefix: Optional[pulumi.Input[Optional[builtins.str]]] = None,
189
+ region: Optional[pulumi.Input[builtins.str]] = None,
189
190
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSpacesBucketObjectsResult]:
190
191
  """
191
192
  > **NOTE on `max_keys`:** Retrieving very large numbers of keys can adversely affect the provider's performance.
@@ -193,12 +194,12 @@ def get_spaces_bucket_objects_output(bucket: Optional[pulumi.Input[str]] = None,
193
194
  The bucket-objects data source returns keys (i.e., file names) and other metadata about objects in a Spaces bucket.
194
195
 
195
196
 
196
- :param str bucket: Lists object keys in this Spaces bucket
197
- :param str delimiter: A character used to group keys (Default: none)
198
- :param str encoding_type: Encodes keys using this method (Default: none; besides none, only "url" can be used)
199
- :param int max_keys: Maximum object keys to return (Default: 1000)
200
- :param str prefix: Limits results to object keys with this prefix (Default: none)
201
- :param str region: The slug of the region where the bucket is stored.
197
+ :param builtins.str bucket: Lists object keys in this Spaces bucket
198
+ :param builtins.str delimiter: A character used to group keys (Default: none)
199
+ :param builtins.str encoding_type: Encodes keys using this method (Default: none; besides none, only "url" can be used)
200
+ :param builtins.int max_keys: Maximum object keys to return (Default: 1000)
201
+ :param builtins.str prefix: Limits results to object keys with this prefix (Default: none)
202
+ :param builtins.str region: The slug of the region where the bucket is stored.
202
203
  """
203
204
  __args__ = dict()
204
205
  __args__['bucket'] = bucket
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -57,7 +58,7 @@ class GetSpacesBucketsResult:
57
58
 
58
59
  @property
59
60
  @pulumi.getter
60
- def id(self) -> str:
61
+ def id(self) -> builtins.str:
61
62
  """
62
63
  The provider-assigned unique ID for this managed resource.
63
64
  """
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -46,7 +47,7 @@ class GetSpacesKeyResult:
46
47
 
47
48
  @property
48
49
  @pulumi.getter(name="accessKey")
49
- def access_key(self) -> str:
50
+ def access_key(self) -> builtins.str:
50
51
  """
51
52
  The access key ID of the Spaces key
52
53
  """
@@ -54,7 +55,7 @@ class GetSpacesKeyResult:
54
55
 
55
56
  @property
56
57
  @pulumi.getter(name="createdAt")
57
- def created_at(self) -> str:
58
+ def created_at(self) -> builtins.str:
58
59
  """
59
60
  The creation time of the Spaces key
60
61
  """
@@ -70,7 +71,7 @@ class GetSpacesKeyResult:
70
71
 
71
72
  @property
72
73
  @pulumi.getter
73
- def id(self) -> str:
74
+ def id(self) -> builtins.str:
74
75
  """
75
76
  The provider-assigned unique ID for this managed resource.
76
77
  """
@@ -78,7 +79,7 @@ class GetSpacesKeyResult:
78
79
 
79
80
  @property
80
81
  @pulumi.getter
81
- def name(self) -> str:
82
+ def name(self) -> builtins.str:
82
83
  """
83
84
  The name of the Spaces key
84
85
  """
@@ -98,7 +99,7 @@ class AwaitableGetSpacesKeyResult(GetSpacesKeyResult):
98
99
  name=self.name)
99
100
 
100
101
 
101
- def get_spaces_key(access_key: Optional[str] = None,
102
+ def get_spaces_key(access_key: Optional[builtins.str] = None,
102
103
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpacesKeyResult:
103
104
  """
104
105
  ## Example Usage
@@ -114,7 +115,7 @@ def get_spaces_key(access_key: Optional[str] = None,
114
115
  ```
115
116
 
116
117
 
117
- :param str access_key: The Access Key ID of the Spaces key.
118
+ :param builtins.str access_key: The Access Key ID of the Spaces key.
118
119
  """
119
120
  __args__ = dict()
120
121
  __args__['accessKey'] = access_key
@@ -127,7 +128,7 @@ def get_spaces_key(access_key: Optional[str] = None,
127
128
  grants=pulumi.get(__ret__, 'grants'),
128
129
  id=pulumi.get(__ret__, 'id'),
129
130
  name=pulumi.get(__ret__, 'name'))
130
- def get_spaces_key_output(access_key: Optional[pulumi.Input[str]] = None,
131
+ def get_spaces_key_output(access_key: Optional[pulumi.Input[builtins.str]] = None,
131
132
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSpacesKeyResult]:
132
133
  """
133
134
  ## Example Usage
@@ -143,7 +144,7 @@ def get_spaces_key_output(access_key: Optional[pulumi.Input[str]] = None,
143
144
  ```
144
145
 
145
146
 
146
- :param str access_key: The Access Key ID of the Spaces key.
147
+ :param builtins.str access_key: The Access Key ID of the Spaces key.
147
148
  """
148
149
  __args__ = dict()
149
150
  __args__['accessKey'] = access_key
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -42,7 +43,7 @@ class GetSshKeyResult:
42
43
 
43
44
  @property
44
45
  @pulumi.getter
45
- def fingerprint(self) -> str:
46
+ def fingerprint(self) -> builtins.str:
46
47
  """
47
48
  The fingerprint of the public key of the ssh key.
48
49
  """
@@ -50,7 +51,7 @@ class GetSshKeyResult:
50
51
 
51
52
  @property
52
53
  @pulumi.getter
53
- def id(self) -> int:
54
+ def id(self) -> builtins.int:
54
55
  """
55
56
  The ID of the ssh key.
56
57
  """
@@ -58,12 +59,12 @@ class GetSshKeyResult:
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def name(self) -> str:
62
+ def name(self) -> builtins.str:
62
63
  return pulumi.get(self, "name")
63
64
 
64
65
  @property
65
66
  @pulumi.getter(name="publicKey")
66
- def public_key(self) -> str:
67
+ def public_key(self) -> builtins.str:
67
68
  """
68
69
  The public key of the ssh key.
69
70
  """
@@ -82,7 +83,7 @@ class AwaitableGetSshKeyResult(GetSshKeyResult):
82
83
  public_key=self.public_key)
83
84
 
84
85
 
85
- def get_ssh_key(name: Optional[str] = None,
86
+ def get_ssh_key(name: Optional[builtins.str] = None,
86
87
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSshKeyResult:
87
88
  """
88
89
  Get information on a ssh key. This data source provides the name, public key,
@@ -110,7 +111,7 @@ def get_ssh_key(name: Optional[str] = None,
110
111
  ```
111
112
 
112
113
 
113
- :param str name: The name of the ssh key.
114
+ :param builtins.str name: The name of the ssh key.
114
115
  """
115
116
  __args__ = dict()
116
117
  __args__['name'] = name
@@ -122,7 +123,7 @@ def get_ssh_key(name: Optional[str] = None,
122
123
  id=pulumi.get(__ret__, 'id'),
123
124
  name=pulumi.get(__ret__, 'name'),
124
125
  public_key=pulumi.get(__ret__, 'public_key'))
125
- def get_ssh_key_output(name: Optional[pulumi.Input[str]] = None,
126
+ def get_ssh_key_output(name: Optional[pulumi.Input[builtins.str]] = None,
126
127
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSshKeyResult]:
127
128
  """
128
129
  Get information on a ssh key. This data source provides the name, public key,
@@ -150,7 +151,7 @@ def get_ssh_key_output(name: Optional[pulumi.Input[str]] = None,
150
151
  ```
151
152
 
152
153
 
153
- :param str name: The name of the ssh key.
154
+ :param builtins.str name: The name of the ssh key.
154
155
  """
155
156
  __args__ = dict()
156
157
  __args__['name'] = name
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -49,7 +50,7 @@ class GetSshKeysResult:
49
50
 
50
51
  @property
51
52
  @pulumi.getter
52
- def id(self) -> str:
53
+ def id(self) -> builtins.str:
53
54
  """
54
55
  The provider-assigned unique ID for this managed resource.
55
56
  """
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -54,7 +55,7 @@ class GetTagResult:
54
55
 
55
56
  @property
56
57
  @pulumi.getter(name="databasesCount")
57
- def databases_count(self) -> int:
58
+ def databases_count(self) -> builtins.int:
58
59
  """
59
60
  A count of the database clusters that the tag is applied to.
60
61
  """
@@ -62,7 +63,7 @@ class GetTagResult:
62
63
 
63
64
  @property
64
65
  @pulumi.getter(name="dropletsCount")
65
- def droplets_count(self) -> int:
66
+ def droplets_count(self) -> builtins.int:
66
67
  """
67
68
  A count of the Droplets the tag is applied to.
68
69
  """
@@ -70,7 +71,7 @@ class GetTagResult:
70
71
 
71
72
  @property
72
73
  @pulumi.getter
73
- def id(self) -> str:
74
+ def id(self) -> builtins.str:
74
75
  """
75
76
  The provider-assigned unique ID for this managed resource.
76
77
  """
@@ -78,7 +79,7 @@ class GetTagResult:
78
79
 
79
80
  @property
80
81
  @pulumi.getter(name="imagesCount")
81
- def images_count(self) -> int:
82
+ def images_count(self) -> builtins.int:
82
83
  """
83
84
  A count of the images that the tag is applied to.
84
85
  """
@@ -86,12 +87,12 @@ class GetTagResult:
86
87
 
87
88
  @property
88
89
  @pulumi.getter
89
- def name(self) -> str:
90
+ def name(self) -> builtins.str:
90
91
  return pulumi.get(self, "name")
91
92
 
92
93
  @property
93
94
  @pulumi.getter(name="totalResourceCount")
94
- def total_resource_count(self) -> int:
95
+ def total_resource_count(self) -> builtins.int:
95
96
  """
96
97
  A count of the total number of resources that the tag is applied to.
97
98
  """
@@ -99,7 +100,7 @@ class GetTagResult:
99
100
 
100
101
  @property
101
102
  @pulumi.getter(name="volumeSnapshotsCount")
102
- def volume_snapshots_count(self) -> int:
103
+ def volume_snapshots_count(self) -> builtins.int:
103
104
  """
104
105
  A count of the volume snapshots that the tag is applied to.
105
106
  """
@@ -107,7 +108,7 @@ class GetTagResult:
107
108
 
108
109
  @property
109
110
  @pulumi.getter(name="volumesCount")
110
- def volumes_count(self) -> int:
111
+ def volumes_count(self) -> builtins.int:
111
112
  """
112
113
  A count of the volumes that the tag is applied to.
113
114
  """
@@ -130,7 +131,7 @@ class AwaitableGetTagResult(GetTagResult):
130
131
  volumes_count=self.volumes_count)
131
132
 
132
133
 
133
- def get_tag(name: Optional[str] = None,
134
+ def get_tag(name: Optional[builtins.str] = None,
134
135
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTagResult:
135
136
  """
136
137
  Get information on a tag. This data source provides the name as configured on
@@ -157,7 +158,7 @@ def get_tag(name: Optional[str] = None,
157
158
  ```
158
159
 
159
160
 
160
- :param str name: The name of the tag.
161
+ :param builtins.str name: The name of the tag.
161
162
  """
162
163
  __args__ = dict()
163
164
  __args__['name'] = name
@@ -173,7 +174,7 @@ def get_tag(name: Optional[str] = None,
173
174
  total_resource_count=pulumi.get(__ret__, 'total_resource_count'),
174
175
  volume_snapshots_count=pulumi.get(__ret__, 'volume_snapshots_count'),
175
176
  volumes_count=pulumi.get(__ret__, 'volumes_count'))
176
- def get_tag_output(name: Optional[pulumi.Input[str]] = None,
177
+ def get_tag_output(name: Optional[pulumi.Input[builtins.str]] = None,
177
178
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTagResult]:
178
179
  """
179
180
  Get information on a tag. This data source provides the name as configured on
@@ -200,7 +201,7 @@ def get_tag_output(name: Optional[pulumi.Input[str]] = None,
200
201
  ```
201
202
 
202
203
 
203
- :param str name: The name of the tag.
204
+ :param builtins.str name: The name of the tag.
204
205
  """
205
206
  __args__ = dict()
206
207
  __args__['name'] = name