cdktf-cdktf-provider-upcloud 6.0.2__py3-none-any.whl → 7.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cdktf-cdktf-provider-upcloud might be problematic. Click here for more details.
- cdktf_cdktf_provider_upcloud/__init__.py +4 -0
- cdktf_cdktf_provider_upcloud/_jsii/__init__.py +2 -2
- cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@7.0.0.jsii.tgz +0 -0
- cdktf_cdktf_provider_upcloud/data_upcloud_hosts/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_ip_addresses/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_kubernetes_cluster/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_opensearch_indices/__init__.py +662 -0
- cdktf_cdktf_provider_upcloud/data_upcloud_networks/__init__.py +12 -12
- cdktf_cdktf_provider_upcloud/data_upcloud_storage/__init__.py +25 -25
- cdktf_cdktf_provider_upcloud/data_upcloud_tags/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_zone/__init__.py +9 -9
- cdktf_cdktf_provider_upcloud/data_upcloud_zones/__init__.py +9 -9
- cdktf_cdktf_provider_upcloud/firewall_rules/__init__.py +40 -40
- cdktf_cdktf_provider_upcloud/floating_ip_address/__init__.py +19 -19
- cdktf_cdktf_provider_upcloud/gateway/__init__.py +27 -27
- cdktf_cdktf_provider_upcloud/kubernetes_cluster/__init__.py +78 -20
- cdktf_cdktf_provider_upcloud/kubernetes_node_group/__init__.py +44 -44
- cdktf_cdktf_provider_upcloud/loadbalancer/__init__.py +36 -36
- cdktf_cdktf_provider_upcloud/loadbalancer_backend/__init__.py +48 -48
- cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_backend_member/__init__.py +27 -27
- cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_certificate_bundle/__init__.py +15 -15
- cdktf_cdktf_provider_upcloud/loadbalancer_frontend/__init__.py +35 -35
- cdktf_cdktf_provider_upcloud/loadbalancer_frontend_rule/__init__.py +164 -164
- cdktf_cdktf_provider_upcloud/loadbalancer_frontend_tls_config/__init__.py +15 -15
- cdktf_cdktf_provider_upcloud/loadbalancer_manual_certificate_bundle/__init__.py +18 -18
- cdktf_cdktf_provider_upcloud/loadbalancer_resolver/__init__.py +30 -30
- cdktf_cdktf_provider_upcloud/loadbalancer_static_backend_member/__init__.py +27 -27
- cdktf_cdktf_provider_upcloud/managed_database_logical_database/__init__.py +18 -18
- cdktf_cdktf_provider_upcloud/managed_database_mysql/__init__.py +175 -173
- cdktf_cdktf_provider_upcloud/managed_database_opensearch/__init__.py +2017 -0
- cdktf_cdktf_provider_upcloud/managed_database_postgresql/__init__.py +292 -290
- cdktf_cdktf_provider_upcloud/managed_database_redis/__init__.py +100 -98
- cdktf_cdktf_provider_upcloud/managed_database_user/__init__.py +529 -39
- cdktf_cdktf_provider_upcloud/network/__init__.py +37 -37
- cdktf_cdktf_provider_upcloud/object_storage/__init__.py +30 -30
- cdktf_cdktf_provider_upcloud/provider/__init__.py +21 -21
- cdktf_cdktf_provider_upcloud/router/__init__.py +9 -9
- cdktf_cdktf_provider_upcloud/server/__init__.py +265 -124
- cdktf_cdktf_provider_upcloud/server_group/__init__.py +57 -59
- cdktf_cdktf_provider_upcloud/storage/__init__.py +55 -55
- cdktf_cdktf_provider_upcloud/tag/__init__.py +15 -15
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/METADATA +3 -3
- cdktf_cdktf_provider_upcloud-7.0.0.dist-info/RECORD +47 -0
- cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@6.0.2.jsii.tgz +0 -0
- cdktf_cdktf_provider_upcloud-6.0.2.dist-info/RECORD +0 -45
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/LICENSE +0 -0
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/WHEEL +0 -0
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'''
|
|
2
2
|
# `data_upcloud_networks`
|
|
3
3
|
|
|
4
|
-
Refer to the Terraform Registory for docs: [`data_upcloud_networks`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
4
|
+
Refer to the Terraform Registory for docs: [`data_upcloud_networks`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks).
|
|
5
5
|
'''
|
|
6
6
|
import abc
|
|
7
7
|
import builtins
|
|
@@ -26,7 +26,7 @@ class DataUpcloudNetworks(
|
|
|
26
26
|
metaclass=jsii.JSIIMeta,
|
|
27
27
|
jsii_type="@cdktf/provider-upcloud.dataUpcloudNetworks.DataUpcloudNetworks",
|
|
28
28
|
):
|
|
29
|
-
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
29
|
+
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks upcloud_networks}.'''
|
|
30
30
|
|
|
31
31
|
def __init__(
|
|
32
32
|
self,
|
|
@@ -44,13 +44,13 @@ class DataUpcloudNetworks(
|
|
|
44
44
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
45
45
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
46
46
|
) -> None:
|
|
47
|
-
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
47
|
+
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks upcloud_networks} Data Source.
|
|
48
48
|
|
|
49
49
|
:param scope: The scope in which to define this construct.
|
|
50
50
|
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
51
|
-
:param filter_name: If specified, results will be filtered to match name using a regular expression. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
52
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
53
|
-
:param zone: If specified, this data source will return only networks from this zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
51
|
+
:param filter_name: If specified, results will be filtered to match name using a regular expression. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#filter_name DataUpcloudNetworks#filter_name}
|
|
52
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#id DataUpcloudNetworks#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
53
|
+
:param zone: If specified, this data source will return only networks from this zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#zone DataUpcloudNetworks#zone}
|
|
54
54
|
:param connection:
|
|
55
55
|
:param count:
|
|
56
56
|
:param depends_on:
|
|
@@ -195,9 +195,9 @@ class DataUpcloudNetworksConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
195
195
|
:param lifecycle:
|
|
196
196
|
:param provider:
|
|
197
197
|
:param provisioners:
|
|
198
|
-
:param filter_name: If specified, results will be filtered to match name using a regular expression. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
199
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
200
|
-
:param zone: If specified, this data source will return only networks from this zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
198
|
+
:param filter_name: If specified, results will be filtered to match name using a regular expression. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#filter_name DataUpcloudNetworks#filter_name}
|
|
199
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#id DataUpcloudNetworks#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
200
|
+
:param zone: If specified, this data source will return only networks from this zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#zone DataUpcloudNetworks#zone}
|
|
201
201
|
'''
|
|
202
202
|
if isinstance(lifecycle, dict):
|
|
203
203
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
|
@@ -303,14 +303,14 @@ class DataUpcloudNetworksConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
303
303
|
def filter_name(self) -> typing.Optional[builtins.str]:
|
|
304
304
|
'''If specified, results will be filtered to match name using a regular expression.
|
|
305
305
|
|
|
306
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
306
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#filter_name DataUpcloudNetworks#filter_name}
|
|
307
307
|
'''
|
|
308
308
|
result = self._values.get("filter_name")
|
|
309
309
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
310
310
|
|
|
311
311
|
@builtins.property
|
|
312
312
|
def id(self) -> typing.Optional[builtins.str]:
|
|
313
|
-
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
313
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#id DataUpcloudNetworks#id}.
|
|
314
314
|
|
|
315
315
|
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
316
316
|
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
@@ -322,7 +322,7 @@ class DataUpcloudNetworksConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
322
322
|
def zone(self) -> typing.Optional[builtins.str]:
|
|
323
323
|
'''If specified, this data source will return only networks from this zone.
|
|
324
324
|
|
|
325
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
325
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/networks#zone DataUpcloudNetworks#zone}
|
|
326
326
|
'''
|
|
327
327
|
result = self._values.get("zone")
|
|
328
328
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'''
|
|
2
2
|
# `data_upcloud_storage`
|
|
3
3
|
|
|
4
|
-
Refer to the Terraform Registory for docs: [`data_upcloud_storage`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
4
|
+
Refer to the Terraform Registory for docs: [`data_upcloud_storage`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage).
|
|
5
5
|
'''
|
|
6
6
|
import abc
|
|
7
7
|
import builtins
|
|
@@ -26,7 +26,7 @@ class DataUpcloudStorage(
|
|
|
26
26
|
metaclass=jsii.JSIIMeta,
|
|
27
27
|
jsii_type="@cdktf/provider-upcloud.dataUpcloudStorage.DataUpcloudStorage",
|
|
28
28
|
):
|
|
29
|
-
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
29
|
+
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage upcloud_storage}.'''
|
|
30
30
|
|
|
31
31
|
def __init__(
|
|
32
32
|
self,
|
|
@@ -48,17 +48,17 @@ class DataUpcloudStorage(
|
|
|
48
48
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
49
49
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
50
50
|
) -> None:
|
|
51
|
-
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
51
|
+
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage upcloud_storage} Data Source.
|
|
52
52
|
|
|
53
53
|
:param scope: The scope in which to define this construct.
|
|
54
54
|
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
55
|
-
:param type: Storage type (normal, backup, cdrom, template). Use 'favorite' as type to filter storages on the list of favorites. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
56
|
-
:param access_type: Storage access type (public, private). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
57
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
58
|
-
:param most_recent: If more than one result is returned, use the most recent storage. This is only useful with private storages. Public storages might give unpredictable results. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
59
|
-
:param name: Exact name of the storage (same as title). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
60
|
-
:param name_regex: Use regular expression to match storage name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
61
|
-
:param zone: The zone in which the storage resides. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
55
|
+
:param type: Storage type (normal, backup, cdrom, template). Use 'favorite' as type to filter storages on the list of favorites. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#type DataUpcloudStorage#type}
|
|
56
|
+
:param access_type: Storage access type (public, private). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#access_type DataUpcloudStorage#access_type}
|
|
57
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#id DataUpcloudStorage#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
58
|
+
:param most_recent: If more than one result is returned, use the most recent storage. This is only useful with private storages. Public storages might give unpredictable results. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#most_recent DataUpcloudStorage#most_recent}
|
|
59
|
+
:param name: Exact name of the storage (same as title). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#name DataUpcloudStorage#name}
|
|
60
|
+
:param name_regex: Use regular expression to match storage name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#name_regex DataUpcloudStorage#name_regex}
|
|
61
|
+
:param zone: The zone in which the storage resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#zone DataUpcloudStorage#zone}
|
|
62
62
|
:param connection:
|
|
63
63
|
:param count:
|
|
64
64
|
:param depends_on:
|
|
@@ -315,13 +315,13 @@ class DataUpcloudStorageConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
315
315
|
:param lifecycle:
|
|
316
316
|
:param provider:
|
|
317
317
|
:param provisioners:
|
|
318
|
-
:param type: Storage type (normal, backup, cdrom, template). Use 'favorite' as type to filter storages on the list of favorites. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
319
|
-
:param access_type: Storage access type (public, private). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
320
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
321
|
-
:param most_recent: If more than one result is returned, use the most recent storage. This is only useful with private storages. Public storages might give unpredictable results. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
322
|
-
:param name: Exact name of the storage (same as title). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
323
|
-
:param name_regex: Use regular expression to match storage name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
324
|
-
:param zone: The zone in which the storage resides. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
318
|
+
:param type: Storage type (normal, backup, cdrom, template). Use 'favorite' as type to filter storages on the list of favorites. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#type DataUpcloudStorage#type}
|
|
319
|
+
:param access_type: Storage access type (public, private). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#access_type DataUpcloudStorage#access_type}
|
|
320
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#id DataUpcloudStorage#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
321
|
+
:param most_recent: If more than one result is returned, use the most recent storage. This is only useful with private storages. Public storages might give unpredictable results. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#most_recent DataUpcloudStorage#most_recent}
|
|
322
|
+
:param name: Exact name of the storage (same as title). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#name DataUpcloudStorage#name}
|
|
323
|
+
:param name_regex: Use regular expression to match storage name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#name_regex DataUpcloudStorage#name_regex}
|
|
324
|
+
:param zone: The zone in which the storage resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#zone DataUpcloudStorage#zone}
|
|
325
325
|
'''
|
|
326
326
|
if isinstance(lifecycle, dict):
|
|
327
327
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
|
@@ -439,7 +439,7 @@ class DataUpcloudStorageConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
439
439
|
def type(self) -> builtins.str:
|
|
440
440
|
'''Storage type (normal, backup, cdrom, template). Use 'favorite' as type to filter storages on the list of favorites.
|
|
441
441
|
|
|
442
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
442
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#type DataUpcloudStorage#type}
|
|
443
443
|
'''
|
|
444
444
|
result = self._values.get("type")
|
|
445
445
|
assert result is not None, "Required property 'type' is missing"
|
|
@@ -449,14 +449,14 @@ class DataUpcloudStorageConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
449
449
|
def access_type(self) -> typing.Optional[builtins.str]:
|
|
450
450
|
'''Storage access type (public, private).
|
|
451
451
|
|
|
452
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
452
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#access_type DataUpcloudStorage#access_type}
|
|
453
453
|
'''
|
|
454
454
|
result = self._values.get("access_type")
|
|
455
455
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
456
456
|
|
|
457
457
|
@builtins.property
|
|
458
458
|
def id(self) -> typing.Optional[builtins.str]:
|
|
459
|
-
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
459
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#id DataUpcloudStorage#id}.
|
|
460
460
|
|
|
461
461
|
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
462
462
|
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
@@ -472,7 +472,7 @@ class DataUpcloudStorageConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
472
472
|
|
|
473
473
|
This is only useful with private storages. Public storages might give unpredictable results.
|
|
474
474
|
|
|
475
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
475
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#most_recent DataUpcloudStorage#most_recent}
|
|
476
476
|
'''
|
|
477
477
|
result = self._values.get("most_recent")
|
|
478
478
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
@@ -481,7 +481,7 @@ class DataUpcloudStorageConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
481
481
|
def name(self) -> typing.Optional[builtins.str]:
|
|
482
482
|
'''Exact name of the storage (same as title).
|
|
483
483
|
|
|
484
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
484
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#name DataUpcloudStorage#name}
|
|
485
485
|
'''
|
|
486
486
|
result = self._values.get("name")
|
|
487
487
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -490,16 +490,16 @@ class DataUpcloudStorageConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
490
490
|
def name_regex(self) -> typing.Optional[builtins.str]:
|
|
491
491
|
'''Use regular expression to match storage name.
|
|
492
492
|
|
|
493
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
493
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#name_regex DataUpcloudStorage#name_regex}
|
|
494
494
|
'''
|
|
495
495
|
result = self._values.get("name_regex")
|
|
496
496
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
497
497
|
|
|
498
498
|
@builtins.property
|
|
499
499
|
def zone(self) -> typing.Optional[builtins.str]:
|
|
500
|
-
'''The zone in which the storage resides.
|
|
500
|
+
'''The zone in which the storage resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``.
|
|
501
501
|
|
|
502
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
502
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/storage#zone DataUpcloudStorage#zone}
|
|
503
503
|
'''
|
|
504
504
|
result = self._values.get("zone")
|
|
505
505
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'''
|
|
2
2
|
# `data_upcloud_tags`
|
|
3
3
|
|
|
4
|
-
Refer to the Terraform Registory for docs: [`data_upcloud_tags`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
4
|
+
Refer to the Terraform Registory for docs: [`data_upcloud_tags`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/tags).
|
|
5
5
|
'''
|
|
6
6
|
import abc
|
|
7
7
|
import builtins
|
|
@@ -26,7 +26,7 @@ class DataUpcloudTags(
|
|
|
26
26
|
metaclass=jsii.JSIIMeta,
|
|
27
27
|
jsii_type="@cdktf/provider-upcloud.dataUpcloudTags.DataUpcloudTags",
|
|
28
28
|
):
|
|
29
|
-
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
29
|
+
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/tags upcloud_tags}.'''
|
|
30
30
|
|
|
31
31
|
def __init__(
|
|
32
32
|
self,
|
|
@@ -42,11 +42,11 @@ class DataUpcloudTags(
|
|
|
42
42
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
43
43
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
44
44
|
) -> None:
|
|
45
|
-
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
45
|
+
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/tags upcloud_tags} Data Source.
|
|
46
46
|
|
|
47
47
|
:param scope: The scope in which to define this construct.
|
|
48
48
|
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
49
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
49
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/tags#id DataUpcloudTags#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
50
50
|
:param connection:
|
|
51
51
|
:param count:
|
|
52
52
|
:param depends_on:
|
|
@@ -143,7 +143,7 @@ class DataUpcloudTagsConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
143
143
|
:param lifecycle:
|
|
144
144
|
:param provider:
|
|
145
145
|
:param provisioners:
|
|
146
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
146
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/tags#id DataUpcloudTags#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
147
147
|
'''
|
|
148
148
|
if isinstance(lifecycle, dict):
|
|
149
149
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
|
@@ -241,7 +241,7 @@ class DataUpcloudTagsConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
241
241
|
|
|
242
242
|
@builtins.property
|
|
243
243
|
def id(self) -> typing.Optional[builtins.str]:
|
|
244
|
-
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
244
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/tags#id DataUpcloudTags#id}.
|
|
245
245
|
|
|
246
246
|
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
247
247
|
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'''
|
|
2
2
|
# `data_upcloud_zone`
|
|
3
3
|
|
|
4
|
-
Refer to the Terraform Registory for docs: [`data_upcloud_zone`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
4
|
+
Refer to the Terraform Registory for docs: [`data_upcloud_zone`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone).
|
|
5
5
|
'''
|
|
6
6
|
import abc
|
|
7
7
|
import builtins
|
|
@@ -26,7 +26,7 @@ class DataUpcloudZone(
|
|
|
26
26
|
metaclass=jsii.JSIIMeta,
|
|
27
27
|
jsii_type="@cdktf/provider-upcloud.dataUpcloudZone.DataUpcloudZone",
|
|
28
28
|
):
|
|
29
|
-
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
29
|
+
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone upcloud_zone}.'''
|
|
30
30
|
|
|
31
31
|
def __init__(
|
|
32
32
|
self,
|
|
@@ -43,12 +43,12 @@ class DataUpcloudZone(
|
|
|
43
43
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
44
44
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
45
45
|
) -> None:
|
|
46
|
-
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
46
|
+
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone upcloud_zone} Data Source.
|
|
47
47
|
|
|
48
48
|
:param scope: The scope in which to define this construct.
|
|
49
49
|
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
50
|
-
:param name: Unique lablel for the zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
51
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
50
|
+
:param name: Unique lablel for the zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone#name DataUpcloudZone#name}
|
|
51
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone#id DataUpcloudZone#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
52
52
|
:param connection:
|
|
53
53
|
:param count:
|
|
54
54
|
:param depends_on:
|
|
@@ -170,8 +170,8 @@ class DataUpcloudZoneConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
170
170
|
:param lifecycle:
|
|
171
171
|
:param provider:
|
|
172
172
|
:param provisioners:
|
|
173
|
-
:param name: Unique lablel for the zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
174
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
173
|
+
:param name: Unique lablel for the zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone#name DataUpcloudZone#name}
|
|
174
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone#id DataUpcloudZone#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
175
175
|
'''
|
|
176
176
|
if isinstance(lifecycle, dict):
|
|
177
177
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
|
@@ -274,7 +274,7 @@ class DataUpcloudZoneConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
274
274
|
def name(self) -> builtins.str:
|
|
275
275
|
'''Unique lablel for the zone.
|
|
276
276
|
|
|
277
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
277
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone#name DataUpcloudZone#name}
|
|
278
278
|
'''
|
|
279
279
|
result = self._values.get("name")
|
|
280
280
|
assert result is not None, "Required property 'name' is missing"
|
|
@@ -282,7 +282,7 @@ class DataUpcloudZoneConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
282
282
|
|
|
283
283
|
@builtins.property
|
|
284
284
|
def id(self) -> typing.Optional[builtins.str]:
|
|
285
|
-
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
285
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zone#id DataUpcloudZone#id}.
|
|
286
286
|
|
|
287
287
|
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
288
288
|
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'''
|
|
2
2
|
# `data_upcloud_zones`
|
|
3
3
|
|
|
4
|
-
Refer to the Terraform Registory for docs: [`data_upcloud_zones`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
4
|
+
Refer to the Terraform Registory for docs: [`data_upcloud_zones`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones).
|
|
5
5
|
'''
|
|
6
6
|
import abc
|
|
7
7
|
import builtins
|
|
@@ -26,7 +26,7 @@ class DataUpcloudZones(
|
|
|
26
26
|
metaclass=jsii.JSIIMeta,
|
|
27
27
|
jsii_type="@cdktf/provider-upcloud.dataUpcloudZones.DataUpcloudZones",
|
|
28
28
|
):
|
|
29
|
-
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
29
|
+
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones upcloud_zones}.'''
|
|
30
30
|
|
|
31
31
|
def __init__(
|
|
32
32
|
self,
|
|
@@ -43,12 +43,12 @@ class DataUpcloudZones(
|
|
|
43
43
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
44
44
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
45
45
|
) -> None:
|
|
46
|
-
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
46
|
+
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones upcloud_zones} Data Source.
|
|
47
47
|
|
|
48
48
|
:param scope: The scope in which to define this construct.
|
|
49
49
|
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
50
|
-
:param filter_type: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
51
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
50
|
+
:param filter_type: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones#filter_type DataUpcloudZones#filter_type}.
|
|
51
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones#id DataUpcloudZones#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
52
52
|
:param connection:
|
|
53
53
|
:param count:
|
|
54
54
|
:param depends_on:
|
|
@@ -169,8 +169,8 @@ class DataUpcloudZonesConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
169
169
|
:param lifecycle:
|
|
170
170
|
:param provider:
|
|
171
171
|
:param provisioners:
|
|
172
|
-
:param filter_type: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
173
|
-
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
172
|
+
:param filter_type: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones#filter_type DataUpcloudZones#filter_type}.
|
|
173
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones#id DataUpcloudZones#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
174
174
|
'''
|
|
175
175
|
if isinstance(lifecycle, dict):
|
|
176
176
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
|
@@ -271,13 +271,13 @@ class DataUpcloudZonesConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
|
271
271
|
|
|
272
272
|
@builtins.property
|
|
273
273
|
def filter_type(self) -> typing.Optional[builtins.str]:
|
|
274
|
-
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
274
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones#filter_type DataUpcloudZones#filter_type}.'''
|
|
275
275
|
result = self._values.get("filter_type")
|
|
276
276
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
277
277
|
|
|
278
278
|
@builtins.property
|
|
279
279
|
def id(self) -> typing.Optional[builtins.str]:
|
|
280
|
-
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.
|
|
280
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/zones#id DataUpcloudZones#id}.
|
|
281
281
|
|
|
282
282
|
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
283
283
|
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|