pulumi-linode 5.2.0a1752905257__py3-none-any.whl → 5.2.0a1753397983__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-linode might be problematic. Click here for more details.

Files changed (125) hide show
  1. pulumi_linode/__init__.py +1 -1
  2. pulumi_linode/_inputs.py +5169 -5170
  3. pulumi_linode/account_settings.py +70 -71
  4. pulumi_linode/config/__init__.py +1 -1
  5. pulumi_linode/config/__init__.pyi +1 -2
  6. pulumi_linode/config/vars.py +21 -22
  7. pulumi_linode/database_access_controls.py +52 -53
  8. pulumi_linode/database_mysql.py +247 -248
  9. pulumi_linode/database_mysql_v2.py +782 -783
  10. pulumi_linode/database_postgresql.py +273 -274
  11. pulumi_linode/database_postgresql_v2.py +1105 -1106
  12. pulumi_linode/domain.py +222 -223
  13. pulumi_linode/domain_record.py +188 -189
  14. pulumi_linode/firewall.py +155 -156
  15. pulumi_linode/firewall_device.py +70 -71
  16. pulumi_linode/get_account.py +33 -34
  17. pulumi_linode/get_account_availabilities.py +5 -6
  18. pulumi_linode/get_account_availability.py +13 -14
  19. pulumi_linode/get_account_login.py +17 -18
  20. pulumi_linode/get_account_logins.py +5 -6
  21. pulumi_linode/get_account_settings.py +13 -14
  22. pulumi_linode/get_child_account.py +37 -38
  23. pulumi_linode/get_child_accounts.py +5 -6
  24. pulumi_linode/get_database_backups.py +35 -36
  25. pulumi_linode/get_database_engines.py +23 -24
  26. pulumi_linode/get_database_mysql.py +52 -53
  27. pulumi_linode/get_database_mysql_backups.py +29 -30
  28. pulumi_linode/get_database_mysql_config.py +5 -6
  29. pulumi_linode/get_database_mysql_v2.py +115 -116
  30. pulumi_linode/get_database_postgresql.py +56 -57
  31. pulumi_linode/get_database_postgresql_config.py +7 -8
  32. pulumi_linode/get_database_postgresql_v2.py +153 -154
  33. pulumi_linode/get_databases.py +17 -18
  34. pulumi_linode/get_domain.py +37 -38
  35. pulumi_linode/get_domain_record.py +37 -38
  36. pulumi_linode/get_domain_zonefile.py +11 -12
  37. pulumi_linode/get_domains.py +17 -18
  38. pulumi_linode/get_firewall.py +30 -31
  39. pulumi_linode/get_firewalls.py +17 -18
  40. pulumi_linode/get_image.py +36 -37
  41. pulumi_linode/get_images.py +23 -24
  42. pulumi_linode/get_instance_backups.py +12 -13
  43. pulumi_linode/get_instance_networking.py +11 -12
  44. pulumi_linode/get_instance_type.py +30 -31
  45. pulumi_linode/get_instance_types.py +17 -18
  46. pulumi_linode/get_instances.py +17 -18
  47. pulumi_linode/get_ipv6_range.py +17 -18
  48. pulumi_linode/get_ipv6_ranges.py +5 -6
  49. pulumi_linode/get_kernel.py +23 -24
  50. pulumi_linode/get_kernels.py +17 -18
  51. pulumi_linode/get_linode_object_storage_bucket.py +33 -34
  52. pulumi_linode/get_lke_cluster.py +33 -34
  53. pulumi_linode/get_lke_clusters.py +17 -18
  54. pulumi_linode/get_lke_types.py +17 -18
  55. pulumi_linode/get_lke_version.py +13 -14
  56. pulumi_linode/get_lke_versions.py +10 -11
  57. pulumi_linode/get_nb_types.py +13 -14
  58. pulumi_linode/get_network_transfer_prices.py +17 -18
  59. pulumi_linode/get_networking_ip.py +28 -29
  60. pulumi_linode/get_networking_ips.py +17 -18
  61. pulumi_linode/get_node_balancer.py +29 -30
  62. pulumi_linode/get_node_balancer_config.py +48 -49
  63. pulumi_linode/get_node_balancer_node.py +29 -30
  64. pulumi_linode/get_nodebalancer_configs.py +23 -24
  65. pulumi_linode/get_nodebalancers.py +17 -18
  66. pulumi_linode/get_object_storage_cluster.py +15 -16
  67. pulumi_linode/get_object_storage_endpoints.py +17 -18
  68. pulumi_linode/get_object_storage_quota.py +22 -23
  69. pulumi_linode/get_object_storage_quotas.py +5 -6
  70. pulumi_linode/get_placement_group.py +19 -20
  71. pulumi_linode/get_placement_groups.py +13 -14
  72. pulumi_linode/get_profile.py +22 -23
  73. pulumi_linode/get_region.py +19 -20
  74. pulumi_linode/get_regions.py +5 -6
  75. pulumi_linode/get_ssh_key.py +17 -18
  76. pulumi_linode/get_sshkeys.py +17 -18
  77. pulumi_linode/get_stack_script.py +32 -33
  78. pulumi_linode/get_stack_scripts.py +23 -24
  79. pulumi_linode/get_user.py +35 -36
  80. pulumi_linode/get_users.py +17 -18
  81. pulumi_linode/get_vlans.py +17 -18
  82. pulumi_linode/get_volume.py +27 -28
  83. pulumi_linode/get_volume_types.py +17 -18
  84. pulumi_linode/get_volumes.py +17 -18
  85. pulumi_linode/get_vpc.py +17 -18
  86. pulumi_linode/get_vpc_ips.py +11 -12
  87. pulumi_linode/get_vpc_subnet.py +22 -23
  88. pulumi_linode/get_vpc_subnets.py +11 -12
  89. pulumi_linode/get_vpcs.py +5 -6
  90. pulumi_linode/image.py +292 -293
  91. pulumi_linode/instance.py +520 -521
  92. pulumi_linode/instance_config.py +166 -167
  93. pulumi_linode/instance_disk.py +210 -211
  94. pulumi_linode/instance_ip.py +125 -126
  95. pulumi_linode/instance_shared_ips.py +35 -36
  96. pulumi_linode/ipv6_range.py +88 -89
  97. pulumi_linode/lke_cluster.py +162 -163
  98. pulumi_linode/lke_node_pool.py +137 -138
  99. pulumi_linode/networking_ip.py +133 -134
  100. pulumi_linode/networking_ip_assignment.py +21 -22
  101. pulumi_linode/node_balancer.py +152 -153
  102. pulumi_linode/node_balancer_config.py +319 -320
  103. pulumi_linode/node_balancer_node.py +112 -113
  104. pulumi_linode/object_storage_bucket.py +195 -196
  105. pulumi_linode/object_storage_key.py +67 -68
  106. pulumi_linode/object_storage_object.py +350 -351
  107. pulumi_linode/outputs.py +5305 -5306
  108. pulumi_linode/placement_group.py +80 -81
  109. pulumi_linode/placement_group_assignment.py +48 -49
  110. pulumi_linode/provider.py +180 -181
  111. pulumi_linode/pulumi-plugin.json +1 -1
  112. pulumi_linode/rdns.py +55 -56
  113. pulumi_linode/reserved_ip_assignment.py +142 -143
  114. pulumi_linode/ssh_key.py +44 -45
  115. pulumi_linode/stack_script.py +159 -160
  116. pulumi_linode/token.py +70 -71
  117. pulumi_linode/user.py +112 -113
  118. pulumi_linode/volume.py +141 -142
  119. pulumi_linode/vpc.py +70 -71
  120. pulumi_linode/vpc_subnet.py +72 -73
  121. {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
  122. pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
  123. pulumi_linode-5.2.0a1752905257.dist-info/RECORD +0 -126
  124. {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
  125. {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.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
@@ -20,52 +19,52 @@ __all__ = ['ObjectStorageObjectArgs', 'ObjectStorageObject']
20
19
  @pulumi.input_type
21
20
  class ObjectStorageObjectArgs:
22
21
  def __init__(__self__, *,
23
- bucket: pulumi.Input[builtins.str],
24
- key: pulumi.Input[builtins.str],
25
- access_key: Optional[pulumi.Input[builtins.str]] = None,
26
- acl: Optional[pulumi.Input[builtins.str]] = None,
27
- cache_control: Optional[pulumi.Input[builtins.str]] = None,
28
- cluster: Optional[pulumi.Input[builtins.str]] = None,
29
- content: Optional[pulumi.Input[builtins.str]] = None,
30
- content_base64: Optional[pulumi.Input[builtins.str]] = None,
31
- content_disposition: Optional[pulumi.Input[builtins.str]] = None,
32
- content_encoding: Optional[pulumi.Input[builtins.str]] = None,
33
- content_language: Optional[pulumi.Input[builtins.str]] = None,
34
- content_type: Optional[pulumi.Input[builtins.str]] = None,
35
- endpoint: Optional[pulumi.Input[builtins.str]] = None,
36
- etag: Optional[pulumi.Input[builtins.str]] = None,
37
- force_destroy: Optional[pulumi.Input[builtins.bool]] = None,
38
- metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
39
- region: Optional[pulumi.Input[builtins.str]] = None,
40
- secret_key: Optional[pulumi.Input[builtins.str]] = None,
41
- source: Optional[pulumi.Input[builtins.str]] = None,
42
- website_redirect: Optional[pulumi.Input[builtins.str]] = None):
22
+ bucket: pulumi.Input[_builtins.str],
23
+ key: pulumi.Input[_builtins.str],
24
+ access_key: Optional[pulumi.Input[_builtins.str]] = None,
25
+ acl: Optional[pulumi.Input[_builtins.str]] = None,
26
+ cache_control: Optional[pulumi.Input[_builtins.str]] = None,
27
+ cluster: Optional[pulumi.Input[_builtins.str]] = None,
28
+ content: Optional[pulumi.Input[_builtins.str]] = None,
29
+ content_base64: Optional[pulumi.Input[_builtins.str]] = None,
30
+ content_disposition: Optional[pulumi.Input[_builtins.str]] = None,
31
+ content_encoding: Optional[pulumi.Input[_builtins.str]] = None,
32
+ content_language: Optional[pulumi.Input[_builtins.str]] = None,
33
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
34
+ endpoint: Optional[pulumi.Input[_builtins.str]] = None,
35
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
36
+ force_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
37
+ metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
38
+ region: Optional[pulumi.Input[_builtins.str]] = None,
39
+ secret_key: Optional[pulumi.Input[_builtins.str]] = None,
40
+ source: Optional[pulumi.Input[_builtins.str]] = None,
41
+ website_redirect: Optional[pulumi.Input[_builtins.str]] = None):
43
42
  """
44
43
  The set of arguments for constructing a ObjectStorageObject resource.
45
- :param pulumi.Input[builtins.str] bucket: The name of the bucket to put the object in.
46
- :param pulumi.Input[builtins.str] key: They name of the object once it is in the bucket.
47
- :param pulumi.Input[builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
44
+ :param pulumi.Input[_builtins.str] bucket: The name of the bucket to put the object in.
45
+ :param pulumi.Input[_builtins.str] key: They name of the object once it is in the bucket.
46
+ :param pulumi.Input[_builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
48
47
  * configuring the `obj_access_key` in the provider configuration;
49
48
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
50
- :param pulumi.Input[builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
51
- :param pulumi.Input[builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
52
- :param pulumi.Input[builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
53
- :param pulumi.Input[builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
54
- :param pulumi.Input[builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
55
- :param pulumi.Input[builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
56
- :param pulumi.Input[builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
57
- :param pulumi.Input[builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
58
- :param pulumi.Input[builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
59
- :param pulumi.Input[builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
60
- :param pulumi.Input[builtins.str] etag: The specific version of this object.
61
- :param pulumi.Input[builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
62
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: A map of keys/values to provision metadata.
63
- :param pulumi.Input[builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
64
- :param pulumi.Input[builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
49
+ :param pulumi.Input[_builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
50
+ :param pulumi.Input[_builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
51
+ :param pulumi.Input[_builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
52
+ :param pulumi.Input[_builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
53
+ :param pulumi.Input[_builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
54
+ :param pulumi.Input[_builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
55
+ :param pulumi.Input[_builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
56
+ :param pulumi.Input[_builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
57
+ :param pulumi.Input[_builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
58
+ :param pulumi.Input[_builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
59
+ :param pulumi.Input[_builtins.str] etag: The specific version of this object.
60
+ :param pulumi.Input[_builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
61
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: A map of keys/values to provision metadata.
62
+ :param pulumi.Input[_builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
63
+ :param pulumi.Input[_builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
65
64
  * configuring the `obj_secret_key` in the provider configuration;
66
65
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
67
- :param pulumi.Input[builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
68
- :param pulumi.Input[builtins.str] website_redirect: Specifies a target URL for website redirect.
66
+ :param pulumi.Input[_builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
67
+ :param pulumi.Input[_builtins.str] website_redirect: Specifies a target URL for website redirect.
69
68
  """
70
69
  pulumi.set(__self__, "bucket", bucket)
71
70
  pulumi.set(__self__, "key", key)
@@ -109,33 +108,33 @@ class ObjectStorageObjectArgs:
109
108
  if website_redirect is not None:
110
109
  pulumi.set(__self__, "website_redirect", website_redirect)
111
110
 
112
- @property
111
+ @_builtins.property
113
112
  @pulumi.getter
114
- def bucket(self) -> pulumi.Input[builtins.str]:
113
+ def bucket(self) -> pulumi.Input[_builtins.str]:
115
114
  """
116
115
  The name of the bucket to put the object in.
117
116
  """
118
117
  return pulumi.get(self, "bucket")
119
118
 
120
119
  @bucket.setter
121
- def bucket(self, value: pulumi.Input[builtins.str]):
120
+ def bucket(self, value: pulumi.Input[_builtins.str]):
122
121
  pulumi.set(self, "bucket", value)
123
122
 
124
- @property
123
+ @_builtins.property
125
124
  @pulumi.getter
126
- def key(self) -> pulumi.Input[builtins.str]:
125
+ def key(self) -> pulumi.Input[_builtins.str]:
127
126
  """
128
127
  They name of the object once it is in the bucket.
129
128
  """
130
129
  return pulumi.get(self, "key")
131
130
 
132
131
  @key.setter
133
- def key(self, value: pulumi.Input[builtins.str]):
132
+ def key(self, value: pulumi.Input[_builtins.str]):
134
133
  pulumi.set(self, "key", value)
135
134
 
136
- @property
135
+ @_builtins.property
137
136
  @pulumi.getter(name="accessKey")
138
- def access_key(self) -> Optional[pulumi.Input[builtins.str]]:
137
+ def access_key(self) -> Optional[pulumi.Input[_builtins.str]]:
139
138
  """
140
139
  The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
141
140
  * configuring the `obj_access_key` in the provider configuration;
@@ -144,181 +143,181 @@ class ObjectStorageObjectArgs:
144
143
  return pulumi.get(self, "access_key")
145
144
 
146
145
  @access_key.setter
147
- def access_key(self, value: Optional[pulumi.Input[builtins.str]]):
146
+ def access_key(self, value: Optional[pulumi.Input[_builtins.str]]):
148
147
  pulumi.set(self, "access_key", value)
149
148
 
150
- @property
149
+ @_builtins.property
151
150
  @pulumi.getter
152
- def acl(self) -> Optional[pulumi.Input[builtins.str]]:
151
+ def acl(self) -> Optional[pulumi.Input[_builtins.str]]:
153
152
  """
154
153
  The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
155
154
  """
156
155
  return pulumi.get(self, "acl")
157
156
 
158
157
  @acl.setter
159
- def acl(self, value: Optional[pulumi.Input[builtins.str]]):
158
+ def acl(self, value: Optional[pulumi.Input[_builtins.str]]):
160
159
  pulumi.set(self, "acl", value)
161
160
 
162
- @property
161
+ @_builtins.property
163
162
  @pulumi.getter(name="cacheControl")
164
- def cache_control(self) -> Optional[pulumi.Input[builtins.str]]:
163
+ def cache_control(self) -> Optional[pulumi.Input[_builtins.str]]:
165
164
  """
166
165
  Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
167
166
  """
168
167
  return pulumi.get(self, "cache_control")
169
168
 
170
169
  @cache_control.setter
171
- def cache_control(self, value: Optional[pulumi.Input[builtins.str]]):
170
+ def cache_control(self, value: Optional[pulumi.Input[_builtins.str]]):
172
171
  pulumi.set(self, "cache_control", value)
173
172
 
174
- @property
173
+ @_builtins.property
175
174
  @pulumi.getter
176
175
  @_utilities.deprecated("""The cluster attribute has been deprecated, please consider switching to the region attribute. For example, a cluster value of `us-mia-1` can be translated to a region value of `us-mia`.""")
177
- def cluster(self) -> Optional[pulumi.Input[builtins.str]]:
176
+ def cluster(self) -> Optional[pulumi.Input[_builtins.str]]:
178
177
  """
179
178
  The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
180
179
  """
181
180
  return pulumi.get(self, "cluster")
182
181
 
183
182
  @cluster.setter
184
- def cluster(self, value: Optional[pulumi.Input[builtins.str]]):
183
+ def cluster(self, value: Optional[pulumi.Input[_builtins.str]]):
185
184
  pulumi.set(self, "cluster", value)
186
185
 
187
- @property
186
+ @_builtins.property
188
187
  @pulumi.getter
189
- def content(self) -> Optional[pulumi.Input[builtins.str]]:
188
+ def content(self) -> Optional[pulumi.Input[_builtins.str]]:
190
189
  """
191
190
  Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
192
191
  """
193
192
  return pulumi.get(self, "content")
194
193
 
195
194
  @content.setter
196
- def content(self, value: Optional[pulumi.Input[builtins.str]]):
195
+ def content(self, value: Optional[pulumi.Input[_builtins.str]]):
197
196
  pulumi.set(self, "content", value)
198
197
 
199
- @property
198
+ @_builtins.property
200
199
  @pulumi.getter(name="contentBase64")
201
- def content_base64(self) -> Optional[pulumi.Input[builtins.str]]:
200
+ def content_base64(self) -> Optional[pulumi.Input[_builtins.str]]:
202
201
  """
203
202
  Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
204
203
  """
205
204
  return pulumi.get(self, "content_base64")
206
205
 
207
206
  @content_base64.setter
208
- def content_base64(self, value: Optional[pulumi.Input[builtins.str]]):
207
+ def content_base64(self, value: Optional[pulumi.Input[_builtins.str]]):
209
208
  pulumi.set(self, "content_base64", value)
210
209
 
211
- @property
210
+ @_builtins.property
212
211
  @pulumi.getter(name="contentDisposition")
213
- def content_disposition(self) -> Optional[pulumi.Input[builtins.str]]:
212
+ def content_disposition(self) -> Optional[pulumi.Input[_builtins.str]]:
214
213
  """
215
214
  Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
216
215
  """
217
216
  return pulumi.get(self, "content_disposition")
218
217
 
219
218
  @content_disposition.setter
220
- def content_disposition(self, value: Optional[pulumi.Input[builtins.str]]):
219
+ def content_disposition(self, value: Optional[pulumi.Input[_builtins.str]]):
221
220
  pulumi.set(self, "content_disposition", value)
222
221
 
223
- @property
222
+ @_builtins.property
224
223
  @pulumi.getter(name="contentEncoding")
225
- def content_encoding(self) -> Optional[pulumi.Input[builtins.str]]:
224
+ def content_encoding(self) -> Optional[pulumi.Input[_builtins.str]]:
226
225
  """
227
226
  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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
228
227
  """
229
228
  return pulumi.get(self, "content_encoding")
230
229
 
231
230
  @content_encoding.setter
232
- def content_encoding(self, value: Optional[pulumi.Input[builtins.str]]):
231
+ def content_encoding(self, value: Optional[pulumi.Input[_builtins.str]]):
233
232
  pulumi.set(self, "content_encoding", value)
234
233
 
235
- @property
234
+ @_builtins.property
236
235
  @pulumi.getter(name="contentLanguage")
237
- def content_language(self) -> Optional[pulumi.Input[builtins.str]]:
236
+ def content_language(self) -> Optional[pulumi.Input[_builtins.str]]:
238
237
  """
239
238
  The language the content is in e.g. en-US or en-GB.
240
239
  """
241
240
  return pulumi.get(self, "content_language")
242
241
 
243
242
  @content_language.setter
244
- def content_language(self, value: Optional[pulumi.Input[builtins.str]]):
243
+ def content_language(self, value: Optional[pulumi.Input[_builtins.str]]):
245
244
  pulumi.set(self, "content_language", value)
246
245
 
247
- @property
246
+ @_builtins.property
248
247
  @pulumi.getter(name="contentType")
249
- def content_type(self) -> Optional[pulumi.Input[builtins.str]]:
248
+ def content_type(self) -> Optional[pulumi.Input[_builtins.str]]:
250
249
  """
251
250
  A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
252
251
  """
253
252
  return pulumi.get(self, "content_type")
254
253
 
255
254
  @content_type.setter
256
- def content_type(self, value: Optional[pulumi.Input[builtins.str]]):
255
+ def content_type(self, value: Optional[pulumi.Input[_builtins.str]]):
257
256
  pulumi.set(self, "content_type", value)
258
257
 
259
- @property
258
+ @_builtins.property
260
259
  @pulumi.getter
261
- def endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
260
+ def endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
262
261
  """
263
262
  Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
264
263
  """
265
264
  return pulumi.get(self, "endpoint")
266
265
 
267
266
  @endpoint.setter
268
- def endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
267
+ def endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
269
268
  pulumi.set(self, "endpoint", value)
270
269
 
271
- @property
270
+ @_builtins.property
272
271
  @pulumi.getter
273
- def etag(self) -> Optional[pulumi.Input[builtins.str]]:
272
+ def etag(self) -> Optional[pulumi.Input[_builtins.str]]:
274
273
  """
275
274
  The specific version of this object.
276
275
  """
277
276
  return pulumi.get(self, "etag")
278
277
 
279
278
  @etag.setter
280
- def etag(self, value: Optional[pulumi.Input[builtins.str]]):
279
+ def etag(self, value: Optional[pulumi.Input[_builtins.str]]):
281
280
  pulumi.set(self, "etag", value)
282
281
 
283
- @property
282
+ @_builtins.property
284
283
  @pulumi.getter(name="forceDestroy")
285
- def force_destroy(self) -> Optional[pulumi.Input[builtins.bool]]:
284
+ def force_destroy(self) -> Optional[pulumi.Input[_builtins.bool]]:
286
285
  """
287
286
  Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
288
287
  """
289
288
  return pulumi.get(self, "force_destroy")
290
289
 
291
290
  @force_destroy.setter
292
- def force_destroy(self, value: Optional[pulumi.Input[builtins.bool]]):
291
+ def force_destroy(self, value: Optional[pulumi.Input[_builtins.bool]]):
293
292
  pulumi.set(self, "force_destroy", value)
294
293
 
295
- @property
294
+ @_builtins.property
296
295
  @pulumi.getter
297
- def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
296
+ def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
298
297
  """
299
298
  A map of keys/values to provision metadata.
300
299
  """
301
300
  return pulumi.get(self, "metadata")
302
301
 
303
302
  @metadata.setter
304
- def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
303
+ def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
305
304
  pulumi.set(self, "metadata", value)
306
305
 
307
- @property
306
+ @_builtins.property
308
307
  @pulumi.getter
309
- def region(self) -> Optional[pulumi.Input[builtins.str]]:
308
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
310
309
  """
311
310
  The cluster the bucket is in. Required if `cluster` is not configured.
312
311
  """
313
312
  return pulumi.get(self, "region")
314
313
 
315
314
  @region.setter
316
- def region(self, value: Optional[pulumi.Input[builtins.str]]):
315
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
317
316
  pulumi.set(self, "region", value)
318
317
 
319
- @property
318
+ @_builtins.property
320
319
  @pulumi.getter(name="secretKey")
321
- def secret_key(self) -> Optional[pulumi.Input[builtins.str]]:
320
+ def secret_key(self) -> Optional[pulumi.Input[_builtins.str]]:
322
321
  """
323
322
  The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
324
323
  * configuring the `obj_secret_key` in the provider configuration;
@@ -327,85 +326,85 @@ class ObjectStorageObjectArgs:
327
326
  return pulumi.get(self, "secret_key")
328
327
 
329
328
  @secret_key.setter
330
- def secret_key(self, value: Optional[pulumi.Input[builtins.str]]):
329
+ def secret_key(self, value: Optional[pulumi.Input[_builtins.str]]):
331
330
  pulumi.set(self, "secret_key", value)
332
331
 
333
- @property
332
+ @_builtins.property
334
333
  @pulumi.getter
335
- def source(self) -> Optional[pulumi.Input[builtins.str]]:
334
+ def source(self) -> Optional[pulumi.Input[_builtins.str]]:
336
335
  """
337
336
  The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
338
337
  """
339
338
  return pulumi.get(self, "source")
340
339
 
341
340
  @source.setter
342
- def source(self, value: Optional[pulumi.Input[builtins.str]]):
341
+ def source(self, value: Optional[pulumi.Input[_builtins.str]]):
343
342
  pulumi.set(self, "source", value)
344
343
 
345
- @property
344
+ @_builtins.property
346
345
  @pulumi.getter(name="websiteRedirect")
347
- def website_redirect(self) -> Optional[pulumi.Input[builtins.str]]:
346
+ def website_redirect(self) -> Optional[pulumi.Input[_builtins.str]]:
348
347
  """
349
348
  Specifies a target URL for website redirect.
350
349
  """
351
350
  return pulumi.get(self, "website_redirect")
352
351
 
353
352
  @website_redirect.setter
354
- def website_redirect(self, value: Optional[pulumi.Input[builtins.str]]):
353
+ def website_redirect(self, value: Optional[pulumi.Input[_builtins.str]]):
355
354
  pulumi.set(self, "website_redirect", value)
356
355
 
357
356
 
358
357
  @pulumi.input_type
359
358
  class _ObjectStorageObjectState:
360
359
  def __init__(__self__, *,
361
- access_key: Optional[pulumi.Input[builtins.str]] = None,
362
- acl: Optional[pulumi.Input[builtins.str]] = None,
363
- bucket: Optional[pulumi.Input[builtins.str]] = None,
364
- cache_control: Optional[pulumi.Input[builtins.str]] = None,
365
- cluster: Optional[pulumi.Input[builtins.str]] = None,
366
- content: Optional[pulumi.Input[builtins.str]] = None,
367
- content_base64: Optional[pulumi.Input[builtins.str]] = None,
368
- content_disposition: Optional[pulumi.Input[builtins.str]] = None,
369
- content_encoding: Optional[pulumi.Input[builtins.str]] = None,
370
- content_language: Optional[pulumi.Input[builtins.str]] = None,
371
- content_type: Optional[pulumi.Input[builtins.str]] = None,
372
- endpoint: Optional[pulumi.Input[builtins.str]] = None,
373
- etag: Optional[pulumi.Input[builtins.str]] = None,
374
- force_destroy: Optional[pulumi.Input[builtins.bool]] = None,
375
- key: Optional[pulumi.Input[builtins.str]] = None,
376
- metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
377
- region: Optional[pulumi.Input[builtins.str]] = None,
378
- secret_key: Optional[pulumi.Input[builtins.str]] = None,
379
- source: Optional[pulumi.Input[builtins.str]] = None,
380
- version_id: Optional[pulumi.Input[builtins.str]] = None,
381
- website_redirect: Optional[pulumi.Input[builtins.str]] = None):
360
+ access_key: Optional[pulumi.Input[_builtins.str]] = None,
361
+ acl: Optional[pulumi.Input[_builtins.str]] = None,
362
+ bucket: Optional[pulumi.Input[_builtins.str]] = None,
363
+ cache_control: Optional[pulumi.Input[_builtins.str]] = None,
364
+ cluster: Optional[pulumi.Input[_builtins.str]] = None,
365
+ content: Optional[pulumi.Input[_builtins.str]] = None,
366
+ content_base64: Optional[pulumi.Input[_builtins.str]] = None,
367
+ content_disposition: Optional[pulumi.Input[_builtins.str]] = None,
368
+ content_encoding: Optional[pulumi.Input[_builtins.str]] = None,
369
+ content_language: Optional[pulumi.Input[_builtins.str]] = None,
370
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
371
+ endpoint: Optional[pulumi.Input[_builtins.str]] = None,
372
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
373
+ force_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
374
+ key: Optional[pulumi.Input[_builtins.str]] = None,
375
+ metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
376
+ region: Optional[pulumi.Input[_builtins.str]] = None,
377
+ secret_key: Optional[pulumi.Input[_builtins.str]] = None,
378
+ source: Optional[pulumi.Input[_builtins.str]] = None,
379
+ version_id: Optional[pulumi.Input[_builtins.str]] = None,
380
+ website_redirect: Optional[pulumi.Input[_builtins.str]] = None):
382
381
  """
383
382
  Input properties used for looking up and filtering ObjectStorageObject resources.
384
- :param pulumi.Input[builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
383
+ :param pulumi.Input[_builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
385
384
  * configuring the `obj_access_key` in the provider configuration;
386
385
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
387
- :param pulumi.Input[builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
388
- :param pulumi.Input[builtins.str] bucket: The name of the bucket to put the object in.
389
- :param pulumi.Input[builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
390
- :param pulumi.Input[builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
391
- :param pulumi.Input[builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
392
- :param pulumi.Input[builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
393
- :param pulumi.Input[builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
394
- :param pulumi.Input[builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
395
- :param pulumi.Input[builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
396
- :param pulumi.Input[builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
397
- :param pulumi.Input[builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
398
- :param pulumi.Input[builtins.str] etag: The specific version of this object.
399
- :param pulumi.Input[builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
400
- :param pulumi.Input[builtins.str] key: They name of the object once it is in the bucket.
401
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: A map of keys/values to provision metadata.
402
- :param pulumi.Input[builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
403
- :param pulumi.Input[builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
386
+ :param pulumi.Input[_builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
387
+ :param pulumi.Input[_builtins.str] bucket: The name of the bucket to put the object in.
388
+ :param pulumi.Input[_builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
389
+ :param pulumi.Input[_builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
390
+ :param pulumi.Input[_builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
391
+ :param pulumi.Input[_builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
392
+ :param pulumi.Input[_builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
393
+ :param pulumi.Input[_builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
394
+ :param pulumi.Input[_builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
395
+ :param pulumi.Input[_builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
396
+ :param pulumi.Input[_builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
397
+ :param pulumi.Input[_builtins.str] etag: The specific version of this object.
398
+ :param pulumi.Input[_builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
399
+ :param pulumi.Input[_builtins.str] key: They name of the object once it is in the bucket.
400
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: A map of keys/values to provision metadata.
401
+ :param pulumi.Input[_builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
402
+ :param pulumi.Input[_builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
404
403
  * configuring the `obj_secret_key` in the provider configuration;
405
404
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
406
- :param pulumi.Input[builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
407
- :param pulumi.Input[builtins.str] version_id: A unique version ID value for the object.
408
- :param pulumi.Input[builtins.str] website_redirect: Specifies a target URL for website redirect.
405
+ :param pulumi.Input[_builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
406
+ :param pulumi.Input[_builtins.str] version_id: A unique version ID value for the object.
407
+ :param pulumi.Input[_builtins.str] website_redirect: Specifies a target URL for website redirect.
409
408
  """
410
409
  if access_key is not None:
411
410
  pulumi.set(__self__, "access_key", access_key)
@@ -453,9 +452,9 @@ class _ObjectStorageObjectState:
453
452
  if website_redirect is not None:
454
453
  pulumi.set(__self__, "website_redirect", website_redirect)
455
454
 
456
- @property
455
+ @_builtins.property
457
456
  @pulumi.getter(name="accessKey")
458
- def access_key(self) -> Optional[pulumi.Input[builtins.str]]:
457
+ def access_key(self) -> Optional[pulumi.Input[_builtins.str]]:
459
458
  """
460
459
  The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
461
460
  * configuring the `obj_access_key` in the provider configuration;
@@ -464,205 +463,205 @@ class _ObjectStorageObjectState:
464
463
  return pulumi.get(self, "access_key")
465
464
 
466
465
  @access_key.setter
467
- def access_key(self, value: Optional[pulumi.Input[builtins.str]]):
466
+ def access_key(self, value: Optional[pulumi.Input[_builtins.str]]):
468
467
  pulumi.set(self, "access_key", value)
469
468
 
470
- @property
469
+ @_builtins.property
471
470
  @pulumi.getter
472
- def acl(self) -> Optional[pulumi.Input[builtins.str]]:
471
+ def acl(self) -> Optional[pulumi.Input[_builtins.str]]:
473
472
  """
474
473
  The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
475
474
  """
476
475
  return pulumi.get(self, "acl")
477
476
 
478
477
  @acl.setter
479
- def acl(self, value: Optional[pulumi.Input[builtins.str]]):
478
+ def acl(self, value: Optional[pulumi.Input[_builtins.str]]):
480
479
  pulumi.set(self, "acl", value)
481
480
 
482
- @property
481
+ @_builtins.property
483
482
  @pulumi.getter
484
- def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
483
+ def bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
485
484
  """
486
485
  The name of the bucket to put the object in.
487
486
  """
488
487
  return pulumi.get(self, "bucket")
489
488
 
490
489
  @bucket.setter
491
- def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
490
+ def bucket(self, value: Optional[pulumi.Input[_builtins.str]]):
492
491
  pulumi.set(self, "bucket", value)
493
492
 
494
- @property
493
+ @_builtins.property
495
494
  @pulumi.getter(name="cacheControl")
496
- def cache_control(self) -> Optional[pulumi.Input[builtins.str]]:
495
+ def cache_control(self) -> Optional[pulumi.Input[_builtins.str]]:
497
496
  """
498
497
  Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
499
498
  """
500
499
  return pulumi.get(self, "cache_control")
501
500
 
502
501
  @cache_control.setter
503
- def cache_control(self, value: Optional[pulumi.Input[builtins.str]]):
502
+ def cache_control(self, value: Optional[pulumi.Input[_builtins.str]]):
504
503
  pulumi.set(self, "cache_control", value)
505
504
 
506
- @property
505
+ @_builtins.property
507
506
  @pulumi.getter
508
507
  @_utilities.deprecated("""The cluster attribute has been deprecated, please consider switching to the region attribute. For example, a cluster value of `us-mia-1` can be translated to a region value of `us-mia`.""")
509
- def cluster(self) -> Optional[pulumi.Input[builtins.str]]:
508
+ def cluster(self) -> Optional[pulumi.Input[_builtins.str]]:
510
509
  """
511
510
  The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
512
511
  """
513
512
  return pulumi.get(self, "cluster")
514
513
 
515
514
  @cluster.setter
516
- def cluster(self, value: Optional[pulumi.Input[builtins.str]]):
515
+ def cluster(self, value: Optional[pulumi.Input[_builtins.str]]):
517
516
  pulumi.set(self, "cluster", value)
518
517
 
519
- @property
518
+ @_builtins.property
520
519
  @pulumi.getter
521
- def content(self) -> Optional[pulumi.Input[builtins.str]]:
520
+ def content(self) -> Optional[pulumi.Input[_builtins.str]]:
522
521
  """
523
522
  Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
524
523
  """
525
524
  return pulumi.get(self, "content")
526
525
 
527
526
  @content.setter
528
- def content(self, value: Optional[pulumi.Input[builtins.str]]):
527
+ def content(self, value: Optional[pulumi.Input[_builtins.str]]):
529
528
  pulumi.set(self, "content", value)
530
529
 
531
- @property
530
+ @_builtins.property
532
531
  @pulumi.getter(name="contentBase64")
533
- def content_base64(self) -> Optional[pulumi.Input[builtins.str]]:
532
+ def content_base64(self) -> Optional[pulumi.Input[_builtins.str]]:
534
533
  """
535
534
  Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
536
535
  """
537
536
  return pulumi.get(self, "content_base64")
538
537
 
539
538
  @content_base64.setter
540
- def content_base64(self, value: Optional[pulumi.Input[builtins.str]]):
539
+ def content_base64(self, value: Optional[pulumi.Input[_builtins.str]]):
541
540
  pulumi.set(self, "content_base64", value)
542
541
 
543
- @property
542
+ @_builtins.property
544
543
  @pulumi.getter(name="contentDisposition")
545
- def content_disposition(self) -> Optional[pulumi.Input[builtins.str]]:
544
+ def content_disposition(self) -> Optional[pulumi.Input[_builtins.str]]:
546
545
  """
547
546
  Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
548
547
  """
549
548
  return pulumi.get(self, "content_disposition")
550
549
 
551
550
  @content_disposition.setter
552
- def content_disposition(self, value: Optional[pulumi.Input[builtins.str]]):
551
+ def content_disposition(self, value: Optional[pulumi.Input[_builtins.str]]):
553
552
  pulumi.set(self, "content_disposition", value)
554
553
 
555
- @property
554
+ @_builtins.property
556
555
  @pulumi.getter(name="contentEncoding")
557
- def content_encoding(self) -> Optional[pulumi.Input[builtins.str]]:
556
+ def content_encoding(self) -> Optional[pulumi.Input[_builtins.str]]:
558
557
  """
559
558
  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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
560
559
  """
561
560
  return pulumi.get(self, "content_encoding")
562
561
 
563
562
  @content_encoding.setter
564
- def content_encoding(self, value: Optional[pulumi.Input[builtins.str]]):
563
+ def content_encoding(self, value: Optional[pulumi.Input[_builtins.str]]):
565
564
  pulumi.set(self, "content_encoding", value)
566
565
 
567
- @property
566
+ @_builtins.property
568
567
  @pulumi.getter(name="contentLanguage")
569
- def content_language(self) -> Optional[pulumi.Input[builtins.str]]:
568
+ def content_language(self) -> Optional[pulumi.Input[_builtins.str]]:
570
569
  """
571
570
  The language the content is in e.g. en-US or en-GB.
572
571
  """
573
572
  return pulumi.get(self, "content_language")
574
573
 
575
574
  @content_language.setter
576
- def content_language(self, value: Optional[pulumi.Input[builtins.str]]):
575
+ def content_language(self, value: Optional[pulumi.Input[_builtins.str]]):
577
576
  pulumi.set(self, "content_language", value)
578
577
 
579
- @property
578
+ @_builtins.property
580
579
  @pulumi.getter(name="contentType")
581
- def content_type(self) -> Optional[pulumi.Input[builtins.str]]:
580
+ def content_type(self) -> Optional[pulumi.Input[_builtins.str]]:
582
581
  """
583
582
  A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
584
583
  """
585
584
  return pulumi.get(self, "content_type")
586
585
 
587
586
  @content_type.setter
588
- def content_type(self, value: Optional[pulumi.Input[builtins.str]]):
587
+ def content_type(self, value: Optional[pulumi.Input[_builtins.str]]):
589
588
  pulumi.set(self, "content_type", value)
590
589
 
591
- @property
590
+ @_builtins.property
592
591
  @pulumi.getter
593
- def endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
592
+ def endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
594
593
  """
595
594
  Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
596
595
  """
597
596
  return pulumi.get(self, "endpoint")
598
597
 
599
598
  @endpoint.setter
600
- def endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
599
+ def endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
601
600
  pulumi.set(self, "endpoint", value)
602
601
 
603
- @property
602
+ @_builtins.property
604
603
  @pulumi.getter
605
- def etag(self) -> Optional[pulumi.Input[builtins.str]]:
604
+ def etag(self) -> Optional[pulumi.Input[_builtins.str]]:
606
605
  """
607
606
  The specific version of this object.
608
607
  """
609
608
  return pulumi.get(self, "etag")
610
609
 
611
610
  @etag.setter
612
- def etag(self, value: Optional[pulumi.Input[builtins.str]]):
611
+ def etag(self, value: Optional[pulumi.Input[_builtins.str]]):
613
612
  pulumi.set(self, "etag", value)
614
613
 
615
- @property
614
+ @_builtins.property
616
615
  @pulumi.getter(name="forceDestroy")
617
- def force_destroy(self) -> Optional[pulumi.Input[builtins.bool]]:
616
+ def force_destroy(self) -> Optional[pulumi.Input[_builtins.bool]]:
618
617
  """
619
618
  Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
620
619
  """
621
620
  return pulumi.get(self, "force_destroy")
622
621
 
623
622
  @force_destroy.setter
624
- def force_destroy(self, value: Optional[pulumi.Input[builtins.bool]]):
623
+ def force_destroy(self, value: Optional[pulumi.Input[_builtins.bool]]):
625
624
  pulumi.set(self, "force_destroy", value)
626
625
 
627
- @property
626
+ @_builtins.property
628
627
  @pulumi.getter
629
- def key(self) -> Optional[pulumi.Input[builtins.str]]:
628
+ def key(self) -> Optional[pulumi.Input[_builtins.str]]:
630
629
  """
631
630
  They name of the object once it is in the bucket.
632
631
  """
633
632
  return pulumi.get(self, "key")
634
633
 
635
634
  @key.setter
636
- def key(self, value: Optional[pulumi.Input[builtins.str]]):
635
+ def key(self, value: Optional[pulumi.Input[_builtins.str]]):
637
636
  pulumi.set(self, "key", value)
638
637
 
639
- @property
638
+ @_builtins.property
640
639
  @pulumi.getter
641
- def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
640
+ def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
642
641
  """
643
642
  A map of keys/values to provision metadata.
644
643
  """
645
644
  return pulumi.get(self, "metadata")
646
645
 
647
646
  @metadata.setter
648
- def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
647
+ def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
649
648
  pulumi.set(self, "metadata", value)
650
649
 
651
- @property
650
+ @_builtins.property
652
651
  @pulumi.getter
653
- def region(self) -> Optional[pulumi.Input[builtins.str]]:
652
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
654
653
  """
655
654
  The cluster the bucket is in. Required if `cluster` is not configured.
656
655
  """
657
656
  return pulumi.get(self, "region")
658
657
 
659
658
  @region.setter
660
- def region(self, value: Optional[pulumi.Input[builtins.str]]):
659
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
661
660
  pulumi.set(self, "region", value)
662
661
 
663
- @property
662
+ @_builtins.property
664
663
  @pulumi.getter(name="secretKey")
665
- def secret_key(self) -> Optional[pulumi.Input[builtins.str]]:
664
+ def secret_key(self) -> Optional[pulumi.Input[_builtins.str]]:
666
665
  """
667
666
  The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
668
667
  * configuring the `obj_secret_key` in the provider configuration;
@@ -671,43 +670,43 @@ class _ObjectStorageObjectState:
671
670
  return pulumi.get(self, "secret_key")
672
671
 
673
672
  @secret_key.setter
674
- def secret_key(self, value: Optional[pulumi.Input[builtins.str]]):
673
+ def secret_key(self, value: Optional[pulumi.Input[_builtins.str]]):
675
674
  pulumi.set(self, "secret_key", value)
676
675
 
677
- @property
676
+ @_builtins.property
678
677
  @pulumi.getter
679
- def source(self) -> Optional[pulumi.Input[builtins.str]]:
678
+ def source(self) -> Optional[pulumi.Input[_builtins.str]]:
680
679
  """
681
680
  The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
682
681
  """
683
682
  return pulumi.get(self, "source")
684
683
 
685
684
  @source.setter
686
- def source(self, value: Optional[pulumi.Input[builtins.str]]):
685
+ def source(self, value: Optional[pulumi.Input[_builtins.str]]):
687
686
  pulumi.set(self, "source", value)
688
687
 
689
- @property
688
+ @_builtins.property
690
689
  @pulumi.getter(name="versionId")
691
- def version_id(self) -> Optional[pulumi.Input[builtins.str]]:
690
+ def version_id(self) -> Optional[pulumi.Input[_builtins.str]]:
692
691
  """
693
692
  A unique version ID value for the object.
694
693
  """
695
694
  return pulumi.get(self, "version_id")
696
695
 
697
696
  @version_id.setter
698
- def version_id(self, value: Optional[pulumi.Input[builtins.str]]):
697
+ def version_id(self, value: Optional[pulumi.Input[_builtins.str]]):
699
698
  pulumi.set(self, "version_id", value)
700
699
 
701
- @property
700
+ @_builtins.property
702
701
  @pulumi.getter(name="websiteRedirect")
703
- def website_redirect(self) -> Optional[pulumi.Input[builtins.str]]:
702
+ def website_redirect(self) -> Optional[pulumi.Input[_builtins.str]]:
704
703
  """
705
704
  Specifies a target URL for website redirect.
706
705
  """
707
706
  return pulumi.get(self, "website_redirect")
708
707
 
709
708
  @website_redirect.setter
710
- def website_redirect(self, value: Optional[pulumi.Input[builtins.str]]):
709
+ def website_redirect(self, value: Optional[pulumi.Input[_builtins.str]]):
711
710
  pulumi.set(self, "website_redirect", value)
712
711
 
713
712
 
@@ -717,26 +716,26 @@ class ObjectStorageObject(pulumi.CustomResource):
717
716
  def __init__(__self__,
718
717
  resource_name: str,
719
718
  opts: Optional[pulumi.ResourceOptions] = None,
720
- access_key: Optional[pulumi.Input[builtins.str]] = None,
721
- acl: Optional[pulumi.Input[builtins.str]] = None,
722
- bucket: Optional[pulumi.Input[builtins.str]] = None,
723
- cache_control: Optional[pulumi.Input[builtins.str]] = None,
724
- cluster: Optional[pulumi.Input[builtins.str]] = None,
725
- content: Optional[pulumi.Input[builtins.str]] = None,
726
- content_base64: Optional[pulumi.Input[builtins.str]] = None,
727
- content_disposition: Optional[pulumi.Input[builtins.str]] = None,
728
- content_encoding: Optional[pulumi.Input[builtins.str]] = None,
729
- content_language: Optional[pulumi.Input[builtins.str]] = None,
730
- content_type: Optional[pulumi.Input[builtins.str]] = None,
731
- endpoint: Optional[pulumi.Input[builtins.str]] = None,
732
- etag: Optional[pulumi.Input[builtins.str]] = None,
733
- force_destroy: Optional[pulumi.Input[builtins.bool]] = None,
734
- key: Optional[pulumi.Input[builtins.str]] = None,
735
- metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
736
- region: Optional[pulumi.Input[builtins.str]] = None,
737
- secret_key: Optional[pulumi.Input[builtins.str]] = None,
738
- source: Optional[pulumi.Input[builtins.str]] = None,
739
- website_redirect: Optional[pulumi.Input[builtins.str]] = None,
719
+ access_key: Optional[pulumi.Input[_builtins.str]] = None,
720
+ acl: Optional[pulumi.Input[_builtins.str]] = None,
721
+ bucket: Optional[pulumi.Input[_builtins.str]] = None,
722
+ cache_control: Optional[pulumi.Input[_builtins.str]] = None,
723
+ cluster: Optional[pulumi.Input[_builtins.str]] = None,
724
+ content: Optional[pulumi.Input[_builtins.str]] = None,
725
+ content_base64: Optional[pulumi.Input[_builtins.str]] = None,
726
+ content_disposition: Optional[pulumi.Input[_builtins.str]] = None,
727
+ content_encoding: Optional[pulumi.Input[_builtins.str]] = None,
728
+ content_language: Optional[pulumi.Input[_builtins.str]] = None,
729
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
730
+ endpoint: Optional[pulumi.Input[_builtins.str]] = None,
731
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
732
+ force_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
733
+ key: Optional[pulumi.Input[_builtins.str]] = None,
734
+ metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
735
+ region: Optional[pulumi.Input[_builtins.str]] = None,
736
+ secret_key: Optional[pulumi.Input[_builtins.str]] = None,
737
+ source: Optional[pulumi.Input[_builtins.str]] = None,
738
+ website_redirect: Optional[pulumi.Input[_builtins.str]] = None,
740
739
  __props__=None):
741
740
  """
742
741
  Provides a Linode Object Storage Object resource. This can be used to create, modify, and delete Linodes Object Storage Objects for Buckets.
@@ -792,30 +791,30 @@ class ObjectStorageObject(pulumi.CustomResource):
792
791
 
793
792
  :param str resource_name: The name of the resource.
794
793
  :param pulumi.ResourceOptions opts: Options for the resource.
795
- :param pulumi.Input[builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
794
+ :param pulumi.Input[_builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
796
795
  * configuring the `obj_access_key` in the provider configuration;
797
796
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
798
- :param pulumi.Input[builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
799
- :param pulumi.Input[builtins.str] bucket: The name of the bucket to put the object in.
800
- :param pulumi.Input[builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
801
- :param pulumi.Input[builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
802
- :param pulumi.Input[builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
803
- :param pulumi.Input[builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
804
- :param pulumi.Input[builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
805
- :param pulumi.Input[builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
806
- :param pulumi.Input[builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
807
- :param pulumi.Input[builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
808
- :param pulumi.Input[builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
809
- :param pulumi.Input[builtins.str] etag: The specific version of this object.
810
- :param pulumi.Input[builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
811
- :param pulumi.Input[builtins.str] key: They name of the object once it is in the bucket.
812
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: A map of keys/values to provision metadata.
813
- :param pulumi.Input[builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
814
- :param pulumi.Input[builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
797
+ :param pulumi.Input[_builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
798
+ :param pulumi.Input[_builtins.str] bucket: The name of the bucket to put the object in.
799
+ :param pulumi.Input[_builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
800
+ :param pulumi.Input[_builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
801
+ :param pulumi.Input[_builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
802
+ :param pulumi.Input[_builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
803
+ :param pulumi.Input[_builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
804
+ :param pulumi.Input[_builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
805
+ :param pulumi.Input[_builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
806
+ :param pulumi.Input[_builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
807
+ :param pulumi.Input[_builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
808
+ :param pulumi.Input[_builtins.str] etag: The specific version of this object.
809
+ :param pulumi.Input[_builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
810
+ :param pulumi.Input[_builtins.str] key: They name of the object once it is in the bucket.
811
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: A map of keys/values to provision metadata.
812
+ :param pulumi.Input[_builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
813
+ :param pulumi.Input[_builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
815
814
  * configuring the `obj_secret_key` in the provider configuration;
816
815
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
817
- :param pulumi.Input[builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
818
- :param pulumi.Input[builtins.str] website_redirect: Specifies a target URL for website redirect.
816
+ :param pulumi.Input[_builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
817
+ :param pulumi.Input[_builtins.str] website_redirect: Specifies a target URL for website redirect.
819
818
  """
820
819
  ...
821
820
  @overload
@@ -890,26 +889,26 @@ class ObjectStorageObject(pulumi.CustomResource):
890
889
  def _internal_init(__self__,
891
890
  resource_name: str,
892
891
  opts: Optional[pulumi.ResourceOptions] = None,
893
- access_key: Optional[pulumi.Input[builtins.str]] = None,
894
- acl: Optional[pulumi.Input[builtins.str]] = None,
895
- bucket: Optional[pulumi.Input[builtins.str]] = None,
896
- cache_control: Optional[pulumi.Input[builtins.str]] = None,
897
- cluster: Optional[pulumi.Input[builtins.str]] = None,
898
- content: Optional[pulumi.Input[builtins.str]] = None,
899
- content_base64: Optional[pulumi.Input[builtins.str]] = None,
900
- content_disposition: Optional[pulumi.Input[builtins.str]] = None,
901
- content_encoding: Optional[pulumi.Input[builtins.str]] = None,
902
- content_language: Optional[pulumi.Input[builtins.str]] = None,
903
- content_type: Optional[pulumi.Input[builtins.str]] = None,
904
- endpoint: Optional[pulumi.Input[builtins.str]] = None,
905
- etag: Optional[pulumi.Input[builtins.str]] = None,
906
- force_destroy: Optional[pulumi.Input[builtins.bool]] = None,
907
- key: Optional[pulumi.Input[builtins.str]] = None,
908
- metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
909
- region: Optional[pulumi.Input[builtins.str]] = None,
910
- secret_key: Optional[pulumi.Input[builtins.str]] = None,
911
- source: Optional[pulumi.Input[builtins.str]] = None,
912
- website_redirect: Optional[pulumi.Input[builtins.str]] = None,
892
+ access_key: Optional[pulumi.Input[_builtins.str]] = None,
893
+ acl: Optional[pulumi.Input[_builtins.str]] = None,
894
+ bucket: Optional[pulumi.Input[_builtins.str]] = None,
895
+ cache_control: Optional[pulumi.Input[_builtins.str]] = None,
896
+ cluster: Optional[pulumi.Input[_builtins.str]] = None,
897
+ content: Optional[pulumi.Input[_builtins.str]] = None,
898
+ content_base64: Optional[pulumi.Input[_builtins.str]] = None,
899
+ content_disposition: Optional[pulumi.Input[_builtins.str]] = None,
900
+ content_encoding: Optional[pulumi.Input[_builtins.str]] = None,
901
+ content_language: Optional[pulumi.Input[_builtins.str]] = None,
902
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
903
+ endpoint: Optional[pulumi.Input[_builtins.str]] = None,
904
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
905
+ force_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
906
+ key: Optional[pulumi.Input[_builtins.str]] = None,
907
+ metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
908
+ region: Optional[pulumi.Input[_builtins.str]] = None,
909
+ secret_key: Optional[pulumi.Input[_builtins.str]] = None,
910
+ source: Optional[pulumi.Input[_builtins.str]] = None,
911
+ website_redirect: Optional[pulumi.Input[_builtins.str]] = None,
913
912
  __props__=None):
914
913
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
915
914
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -956,27 +955,27 @@ class ObjectStorageObject(pulumi.CustomResource):
956
955
  def get(resource_name: str,
957
956
  id: pulumi.Input[str],
958
957
  opts: Optional[pulumi.ResourceOptions] = None,
959
- access_key: Optional[pulumi.Input[builtins.str]] = None,
960
- acl: Optional[pulumi.Input[builtins.str]] = None,
961
- bucket: Optional[pulumi.Input[builtins.str]] = None,
962
- cache_control: Optional[pulumi.Input[builtins.str]] = None,
963
- cluster: Optional[pulumi.Input[builtins.str]] = None,
964
- content: Optional[pulumi.Input[builtins.str]] = None,
965
- content_base64: Optional[pulumi.Input[builtins.str]] = None,
966
- content_disposition: Optional[pulumi.Input[builtins.str]] = None,
967
- content_encoding: Optional[pulumi.Input[builtins.str]] = None,
968
- content_language: Optional[pulumi.Input[builtins.str]] = None,
969
- content_type: Optional[pulumi.Input[builtins.str]] = None,
970
- endpoint: Optional[pulumi.Input[builtins.str]] = None,
971
- etag: Optional[pulumi.Input[builtins.str]] = None,
972
- force_destroy: Optional[pulumi.Input[builtins.bool]] = None,
973
- key: Optional[pulumi.Input[builtins.str]] = None,
974
- metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
975
- region: Optional[pulumi.Input[builtins.str]] = None,
976
- secret_key: Optional[pulumi.Input[builtins.str]] = None,
977
- source: Optional[pulumi.Input[builtins.str]] = None,
978
- version_id: Optional[pulumi.Input[builtins.str]] = None,
979
- website_redirect: Optional[pulumi.Input[builtins.str]] = None) -> 'ObjectStorageObject':
958
+ access_key: Optional[pulumi.Input[_builtins.str]] = None,
959
+ acl: Optional[pulumi.Input[_builtins.str]] = None,
960
+ bucket: Optional[pulumi.Input[_builtins.str]] = None,
961
+ cache_control: Optional[pulumi.Input[_builtins.str]] = None,
962
+ cluster: Optional[pulumi.Input[_builtins.str]] = None,
963
+ content: Optional[pulumi.Input[_builtins.str]] = None,
964
+ content_base64: Optional[pulumi.Input[_builtins.str]] = None,
965
+ content_disposition: Optional[pulumi.Input[_builtins.str]] = None,
966
+ content_encoding: Optional[pulumi.Input[_builtins.str]] = None,
967
+ content_language: Optional[pulumi.Input[_builtins.str]] = None,
968
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
969
+ endpoint: Optional[pulumi.Input[_builtins.str]] = None,
970
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
971
+ force_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
972
+ key: Optional[pulumi.Input[_builtins.str]] = None,
973
+ metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
974
+ region: Optional[pulumi.Input[_builtins.str]] = None,
975
+ secret_key: Optional[pulumi.Input[_builtins.str]] = None,
976
+ source: Optional[pulumi.Input[_builtins.str]] = None,
977
+ version_id: Optional[pulumi.Input[_builtins.str]] = None,
978
+ website_redirect: Optional[pulumi.Input[_builtins.str]] = None) -> 'ObjectStorageObject':
980
979
  """
981
980
  Get an existing ObjectStorageObject resource's state with the given name, id, and optional extra
982
981
  properties used to qualify the lookup.
@@ -984,31 +983,31 @@ class ObjectStorageObject(pulumi.CustomResource):
984
983
  :param str resource_name: The unique name of the resulting resource.
985
984
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
986
985
  :param pulumi.ResourceOptions opts: Options for the resource.
987
- :param pulumi.Input[builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
986
+ :param pulumi.Input[_builtins.str] access_key: The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
988
987
  * configuring the `obj_access_key` in the provider configuration;
989
988
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
990
- :param pulumi.Input[builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
991
- :param pulumi.Input[builtins.str] bucket: The name of the bucket to put the object in.
992
- :param pulumi.Input[builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
993
- :param pulumi.Input[builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
994
- :param pulumi.Input[builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
995
- :param pulumi.Input[builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
996
- :param pulumi.Input[builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
997
- :param pulumi.Input[builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
998
- :param pulumi.Input[builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
999
- :param pulumi.Input[builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
1000
- :param pulumi.Input[builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
1001
- :param pulumi.Input[builtins.str] etag: The specific version of this object.
1002
- :param pulumi.Input[builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
1003
- :param pulumi.Input[builtins.str] key: They name of the object once it is in the bucket.
1004
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: A map of keys/values to provision metadata.
1005
- :param pulumi.Input[builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
1006
- :param pulumi.Input[builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
989
+ :param pulumi.Input[_builtins.str] acl: The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
990
+ :param pulumi.Input[_builtins.str] bucket: The name of the bucket to put the object in.
991
+ :param pulumi.Input[_builtins.str] cache_control: Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
992
+ :param pulumi.Input[_builtins.str] cluster: The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
993
+ :param pulumi.Input[_builtins.str] content: Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
994
+ :param pulumi.Input[_builtins.str] content_base64: Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
995
+ :param pulumi.Input[_builtins.str] content_disposition: Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
996
+ :param pulumi.Input[_builtins.str] content_encoding: 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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
997
+ :param pulumi.Input[_builtins.str] content_language: The language the content is in e.g. en-US or en-GB.
998
+ :param pulumi.Input[_builtins.str] content_type: A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
999
+ :param pulumi.Input[_builtins.str] endpoint: Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
1000
+ :param pulumi.Input[_builtins.str] etag: The specific version of this object.
1001
+ :param pulumi.Input[_builtins.bool] force_destroy: Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
1002
+ :param pulumi.Input[_builtins.str] key: They name of the object once it is in the bucket.
1003
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: A map of keys/values to provision metadata.
1004
+ :param pulumi.Input[_builtins.str] region: The cluster the bucket is in. Required if `cluster` is not configured.
1005
+ :param pulumi.Input[_builtins.str] secret_key: The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
1007
1006
  * configuring the `obj_secret_key` in the provider configuration;
1008
1007
  * or, opting-in generating it implicitly at apply-time using `obj_use_temp_keys` at provider-level.
1009
- :param pulumi.Input[builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
1010
- :param pulumi.Input[builtins.str] version_id: A unique version ID value for the object.
1011
- :param pulumi.Input[builtins.str] website_redirect: Specifies a target URL for website redirect.
1008
+ :param pulumi.Input[_builtins.str] source: The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
1009
+ :param pulumi.Input[_builtins.str] version_id: A unique version ID value for the object.
1010
+ :param pulumi.Input[_builtins.str] website_redirect: Specifies a target URL for website redirect.
1012
1011
  """
1013
1012
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1014
1013
 
@@ -1037,9 +1036,9 @@ class ObjectStorageObject(pulumi.CustomResource):
1037
1036
  __props__.__dict__["website_redirect"] = website_redirect
1038
1037
  return ObjectStorageObject(resource_name, opts=opts, __props__=__props__)
1039
1038
 
1040
- @property
1039
+ @_builtins.property
1041
1040
  @pulumi.getter(name="accessKey")
1042
- def access_key(self) -> pulumi.Output[Optional[builtins.str]]:
1041
+ def access_key(self) -> pulumi.Output[Optional[_builtins.str]]:
1043
1042
  """
1044
1043
  The REQUIRED access key to authenticate with. If it's not specified with the resource, you must provide its value by
1045
1044
  * configuring the `obj_access_key` in the provider configuration;
@@ -1047,138 +1046,138 @@ class ObjectStorageObject(pulumi.CustomResource):
1047
1046
  """
1048
1047
  return pulumi.get(self, "access_key")
1049
1048
 
1050
- @property
1049
+ @_builtins.property
1051
1050
  @pulumi.getter
1052
- def acl(self) -> pulumi.Output[builtins.str]:
1051
+ def acl(self) -> pulumi.Output[_builtins.str]:
1053
1052
  """
1054
1053
  The canned ACL to apply. (`private`, `public-read`, `authenticated-read`, `public-read-write`, `custom`) (defaults to `private`).
1055
1054
  """
1056
1055
  return pulumi.get(self, "acl")
1057
1056
 
1058
- @property
1057
+ @_builtins.property
1059
1058
  @pulumi.getter
1060
- def bucket(self) -> pulumi.Output[builtins.str]:
1059
+ def bucket(self) -> pulumi.Output[_builtins.str]:
1061
1060
  """
1062
1061
  The name of the bucket to put the object in.
1063
1062
  """
1064
1063
  return pulumi.get(self, "bucket")
1065
1064
 
1066
- @property
1065
+ @_builtins.property
1067
1066
  @pulumi.getter(name="cacheControl")
1068
- def cache_control(self) -> pulumi.Output[Optional[builtins.str]]:
1067
+ def cache_control(self) -> pulumi.Output[Optional[_builtins.str]]:
1069
1068
  """
1070
1069
  Specifies caching behavior along the request/reply chain Read [w3c cache_control](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) for further details.
1071
1070
  """
1072
1071
  return pulumi.get(self, "cache_control")
1073
1072
 
1074
- @property
1073
+ @_builtins.property
1075
1074
  @pulumi.getter
1076
1075
  @_utilities.deprecated("""The cluster attribute has been deprecated, please consider switching to the region attribute. For example, a cluster value of `us-mia-1` can be translated to a region value of `us-mia`.""")
1077
- def cluster(self) -> pulumi.Output[Optional[builtins.str]]:
1076
+ def cluster(self) -> pulumi.Output[Optional[_builtins.str]]:
1078
1077
  """
1079
1078
  The cluster the bucket is in. Required if `region` is not configured. Deprecated in favor of `region`.
1080
1079
  """
1081
1080
  return pulumi.get(self, "cluster")
1082
1081
 
1083
- @property
1082
+ @_builtins.property
1084
1083
  @pulumi.getter
1085
- def content(self) -> pulumi.Output[Optional[builtins.str]]:
1084
+ def content(self) -> pulumi.Output[Optional[_builtins.str]]:
1086
1085
  """
1087
1086
  Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
1088
1087
  """
1089
1088
  return pulumi.get(self, "content")
1090
1089
 
1091
- @property
1090
+ @_builtins.property
1092
1091
  @pulumi.getter(name="contentBase64")
1093
- def content_base64(self) -> pulumi.Output[Optional[builtins.str]]:
1092
+ def content_base64(self) -> pulumi.Output[Optional[_builtins.str]]:
1094
1093
  """
1095
1094
  Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for small content such as the result of the `gzipbase64` function with small text strings. For larger objects, use `source` to stream the content from a disk file.
1096
1095
  """
1097
1096
  return pulumi.get(self, "content_base64")
1098
1097
 
1099
- @property
1098
+ @_builtins.property
1100
1099
  @pulumi.getter(name="contentDisposition")
1101
- def content_disposition(self) -> pulumi.Output[Optional[builtins.str]]:
1100
+ def content_disposition(self) -> pulumi.Output[Optional[_builtins.str]]:
1102
1101
  """
1103
1102
  Specifies presentational information for the object. Read [w3c content_disposition](http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1) for further information.
1104
1103
  """
1105
1104
  return pulumi.get(self, "content_disposition")
1106
1105
 
1107
- @property
1106
+ @_builtins.property
1108
1107
  @pulumi.getter(name="contentEncoding")
1109
- def content_encoding(self) -> pulumi.Output[Optional[builtins.str]]:
1108
+ def content_encoding(self) -> pulumi.Output[Optional[_builtins.str]]:
1110
1109
  """
1111
1110
  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. Read [w3c content encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11) for further information.
1112
1111
  """
1113
1112
  return pulumi.get(self, "content_encoding")
1114
1113
 
1115
- @property
1114
+ @_builtins.property
1116
1115
  @pulumi.getter(name="contentLanguage")
1117
- def content_language(self) -> pulumi.Output[Optional[builtins.str]]:
1116
+ def content_language(self) -> pulumi.Output[Optional[_builtins.str]]:
1118
1117
  """
1119
1118
  The language the content is in e.g. en-US or en-GB.
1120
1119
  """
1121
1120
  return pulumi.get(self, "content_language")
1122
1121
 
1123
- @property
1122
+ @_builtins.property
1124
1123
  @pulumi.getter(name="contentType")
1125
- def content_type(self) -> pulumi.Output[builtins.str]:
1124
+ def content_type(self) -> pulumi.Output[_builtins.str]:
1126
1125
  """
1127
1126
  A standard MIME type describing the format of the object data, e.g. application/octet-stream. All Valid MIME Types are valid for this input.
1128
1127
  """
1129
1128
  return pulumi.get(self, "content_type")
1130
1129
 
1131
- @property
1130
+ @_builtins.property
1132
1131
  @pulumi.getter
1133
- def endpoint(self) -> pulumi.Output[builtins.str]:
1132
+ def endpoint(self) -> pulumi.Output[_builtins.str]:
1134
1133
  """
1135
1134
  Used with the s3 client to make bucket changes and will be computed automatically if left blank, override for testing/debug purposes.
1136
1135
  """
1137
1136
  return pulumi.get(self, "endpoint")
1138
1137
 
1139
- @property
1138
+ @_builtins.property
1140
1139
  @pulumi.getter
1141
- def etag(self) -> pulumi.Output[builtins.str]:
1140
+ def etag(self) -> pulumi.Output[_builtins.str]:
1142
1141
  """
1143
1142
  The specific version of this object.
1144
1143
  """
1145
1144
  return pulumi.get(self, "etag")
1146
1145
 
1147
- @property
1146
+ @_builtins.property
1148
1147
  @pulumi.getter(name="forceDestroy")
1149
- def force_destroy(self) -> pulumi.Output[builtins.bool]:
1148
+ def force_destroy(self) -> pulumi.Output[_builtins.bool]:
1150
1149
  """
1151
1150
  Allow the object to be deleted regardless of any legal hold or object lock (defaults to `false`).
1152
1151
  """
1153
1152
  return pulumi.get(self, "force_destroy")
1154
1153
 
1155
- @property
1154
+ @_builtins.property
1156
1155
  @pulumi.getter
1157
- def key(self) -> pulumi.Output[builtins.str]:
1156
+ def key(self) -> pulumi.Output[_builtins.str]:
1158
1157
  """
1159
1158
  They name of the object once it is in the bucket.
1160
1159
  """
1161
1160
  return pulumi.get(self, "key")
1162
1161
 
1163
- @property
1162
+ @_builtins.property
1164
1163
  @pulumi.getter
1165
- def metadata(self) -> pulumi.Output[Mapping[str, builtins.str]]:
1164
+ def metadata(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
1166
1165
  """
1167
1166
  A map of keys/values to provision metadata.
1168
1167
  """
1169
1168
  return pulumi.get(self, "metadata")
1170
1169
 
1171
- @property
1170
+ @_builtins.property
1172
1171
  @pulumi.getter
1173
- def region(self) -> pulumi.Output[Optional[builtins.str]]:
1172
+ def region(self) -> pulumi.Output[Optional[_builtins.str]]:
1174
1173
  """
1175
1174
  The cluster the bucket is in. Required if `cluster` is not configured.
1176
1175
  """
1177
1176
  return pulumi.get(self, "region")
1178
1177
 
1179
- @property
1178
+ @_builtins.property
1180
1179
  @pulumi.getter(name="secretKey")
1181
- def secret_key(self) -> pulumi.Output[Optional[builtins.str]]:
1180
+ def secret_key(self) -> pulumi.Output[Optional[_builtins.str]]:
1182
1181
  """
1183
1182
  The REQUIRED secret key to authenticate with. If it's not specified with the resource, you must provide its value by
1184
1183
  * configuring the `obj_secret_key` in the provider configuration;
@@ -1186,25 +1185,25 @@ class ObjectStorageObject(pulumi.CustomResource):
1186
1185
  """
1187
1186
  return pulumi.get(self, "secret_key")
1188
1187
 
1189
- @property
1188
+ @_builtins.property
1190
1189
  @pulumi.getter
1191
- def source(self) -> pulumi.Output[Optional[builtins.str]]:
1190
+ def source(self) -> pulumi.Output[Optional[_builtins.str]]:
1192
1191
  """
1193
1192
  The path to a file that will be read and uploaded as raw bytes for the object content. The path must either be relative to the root module or absolute.
1194
1193
  """
1195
1194
  return pulumi.get(self, "source")
1196
1195
 
1197
- @property
1196
+ @_builtins.property
1198
1197
  @pulumi.getter(name="versionId")
1199
- def version_id(self) -> pulumi.Output[builtins.str]:
1198
+ def version_id(self) -> pulumi.Output[_builtins.str]:
1200
1199
  """
1201
1200
  A unique version ID value for the object.
1202
1201
  """
1203
1202
  return pulumi.get(self, "version_id")
1204
1203
 
1205
- @property
1204
+ @_builtins.property
1206
1205
  @pulumi.getter(name="websiteRedirect")
1207
- def website_redirect(self) -> pulumi.Output[Optional[builtins.str]]:
1206
+ def website_redirect(self) -> pulumi.Output[Optional[_builtins.str]]:
1208
1207
  """
1209
1208
  Specifies a target URL for website redirect.
1210
1209
  """