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.

Files changed (48) hide show
  1. cdktf_cdktf_provider_upcloud/__init__.py +4 -0
  2. cdktf_cdktf_provider_upcloud/_jsii/__init__.py +2 -2
  3. cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@7.0.0.jsii.tgz +0 -0
  4. cdktf_cdktf_provider_upcloud/data_upcloud_hosts/__init__.py +6 -6
  5. cdktf_cdktf_provider_upcloud/data_upcloud_ip_addresses/__init__.py +6 -6
  6. cdktf_cdktf_provider_upcloud/data_upcloud_kubernetes_cluster/__init__.py +6 -6
  7. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_opensearch_indices/__init__.py +662 -0
  8. cdktf_cdktf_provider_upcloud/data_upcloud_networks/__init__.py +12 -12
  9. cdktf_cdktf_provider_upcloud/data_upcloud_storage/__init__.py +25 -25
  10. cdktf_cdktf_provider_upcloud/data_upcloud_tags/__init__.py +6 -6
  11. cdktf_cdktf_provider_upcloud/data_upcloud_zone/__init__.py +9 -9
  12. cdktf_cdktf_provider_upcloud/data_upcloud_zones/__init__.py +9 -9
  13. cdktf_cdktf_provider_upcloud/firewall_rules/__init__.py +40 -40
  14. cdktf_cdktf_provider_upcloud/floating_ip_address/__init__.py +19 -19
  15. cdktf_cdktf_provider_upcloud/gateway/__init__.py +27 -27
  16. cdktf_cdktf_provider_upcloud/kubernetes_cluster/__init__.py +78 -20
  17. cdktf_cdktf_provider_upcloud/kubernetes_node_group/__init__.py +44 -44
  18. cdktf_cdktf_provider_upcloud/loadbalancer/__init__.py +36 -36
  19. cdktf_cdktf_provider_upcloud/loadbalancer_backend/__init__.py +48 -48
  20. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_backend_member/__init__.py +27 -27
  21. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_certificate_bundle/__init__.py +15 -15
  22. cdktf_cdktf_provider_upcloud/loadbalancer_frontend/__init__.py +35 -35
  23. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_rule/__init__.py +164 -164
  24. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_tls_config/__init__.py +15 -15
  25. cdktf_cdktf_provider_upcloud/loadbalancer_manual_certificate_bundle/__init__.py +18 -18
  26. cdktf_cdktf_provider_upcloud/loadbalancer_resolver/__init__.py +30 -30
  27. cdktf_cdktf_provider_upcloud/loadbalancer_static_backend_member/__init__.py +27 -27
  28. cdktf_cdktf_provider_upcloud/managed_database_logical_database/__init__.py +18 -18
  29. cdktf_cdktf_provider_upcloud/managed_database_mysql/__init__.py +175 -173
  30. cdktf_cdktf_provider_upcloud/managed_database_opensearch/__init__.py +2017 -0
  31. cdktf_cdktf_provider_upcloud/managed_database_postgresql/__init__.py +292 -290
  32. cdktf_cdktf_provider_upcloud/managed_database_redis/__init__.py +100 -98
  33. cdktf_cdktf_provider_upcloud/managed_database_user/__init__.py +529 -39
  34. cdktf_cdktf_provider_upcloud/network/__init__.py +37 -37
  35. cdktf_cdktf_provider_upcloud/object_storage/__init__.py +30 -30
  36. cdktf_cdktf_provider_upcloud/provider/__init__.py +21 -21
  37. cdktf_cdktf_provider_upcloud/router/__init__.py +9 -9
  38. cdktf_cdktf_provider_upcloud/server/__init__.py +265 -124
  39. cdktf_cdktf_provider_upcloud/server_group/__init__.py +57 -59
  40. cdktf_cdktf_provider_upcloud/storage/__init__.py +55 -55
  41. cdktf_cdktf_provider_upcloud/tag/__init__.py +15 -15
  42. {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/METADATA +3 -3
  43. cdktf_cdktf_provider_upcloud-7.0.0.dist-info/RECORD +47 -0
  44. cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@6.0.2.jsii.tgz +0 -0
  45. cdktf_cdktf_provider_upcloud-6.0.2.dist-info/RECORD +0 -45
  46. {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/LICENSE +0 -0
  47. {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/WHEEL +0 -0
  48. {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/top_level.txt +0 -0
@@ -110,6 +110,7 @@ __all__ = [
110
110
  "data_upcloud_hosts",
111
111
  "data_upcloud_ip_addresses",
112
112
  "data_upcloud_kubernetes_cluster",
113
+ "data_upcloud_managed_database_opensearch_indices",
113
114
  "data_upcloud_networks",
114
115
  "data_upcloud_storage",
115
116
  "data_upcloud_tags",
@@ -132,6 +133,7 @@ __all__ = [
132
133
  "loadbalancer_static_backend_member",
133
134
  "managed_database_logical_database",
134
135
  "managed_database_mysql",
136
+ "managed_database_opensearch",
135
137
  "managed_database_postgresql",
136
138
  "managed_database_redis",
137
139
  "managed_database_user",
@@ -151,6 +153,7 @@ publication.publish()
151
153
  from . import data_upcloud_hosts
152
154
  from . import data_upcloud_ip_addresses
153
155
  from . import data_upcloud_kubernetes_cluster
156
+ from . import data_upcloud_managed_database_opensearch_indices
154
157
  from . import data_upcloud_networks
155
158
  from . import data_upcloud_storage
156
159
  from . import data_upcloud_tags
@@ -173,6 +176,7 @@ from . import loadbalancer_resolver
173
176
  from . import loadbalancer_static_backend_member
174
177
  from . import managed_database_logical_database
175
178
  from . import managed_database_mysql
179
+ from . import managed_database_opensearch
176
180
  from . import managed_database_postgresql
177
181
  from . import managed_database_redis
178
182
  from . import managed_database_user
@@ -15,9 +15,9 @@ import constructs._jsii
15
15
 
16
16
  __jsii_assembly__ = jsii.JSIIAssembly.load(
17
17
  "@cdktf/provider-upcloud",
18
- "6.0.2",
18
+ "7.0.0",
19
19
  __name__[0:-6],
20
- "provider-upcloud@6.0.2.jsii.tgz",
20
+ "provider-upcloud@7.0.0.jsii.tgz",
21
21
  )
22
22
 
23
23
  __all__ = [
@@ -1,7 +1,7 @@
1
1
  '''
2
2
  # `data_upcloud_hosts`
3
3
 
4
- Refer to the Terraform Registory for docs: [`data_upcloud_hosts`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/hosts).
4
+ Refer to the Terraform Registory for docs: [`data_upcloud_hosts`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/hosts).
5
5
  '''
6
6
  import abc
7
7
  import builtins
@@ -26,7 +26,7 @@ class DataUpcloudHosts(
26
26
  metaclass=jsii.JSIIMeta,
27
27
  jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHosts",
28
28
  ):
29
- '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/hosts upcloud_hosts}.'''
29
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/hosts upcloud_hosts}.'''
30
30
 
31
31
  def __init__(
32
32
  self,
@@ -42,11 +42,11 @@ class DataUpcloudHosts(
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.10.0/docs/data-sources/hosts upcloud_hosts} Data Source.
45
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/hosts upcloud_hosts} 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.10.0/docs/data-sources/hosts#id DataUpcloudHosts#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.
49
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/hosts#id DataUpcloudHosts#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 DataUpcloudHostsConfig(_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.10.0/docs/data-sources/hosts#id DataUpcloudHosts#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.
146
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/hosts#id DataUpcloudHosts#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 DataUpcloudHostsConfig(_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.10.0/docs/data-sources/hosts#id DataUpcloudHosts#id}.
244
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/hosts#id DataUpcloudHosts#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_ip_addresses`
3
3
 
4
- Refer to the Terraform Registory for docs: [`data_upcloud_ip_addresses`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/ip_addresses).
4
+ Refer to the Terraform Registory for docs: [`data_upcloud_ip_addresses`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/ip_addresses).
5
5
  '''
6
6
  import abc
7
7
  import builtins
@@ -26,7 +26,7 @@ class DataUpcloudIpAddresses(
26
26
  metaclass=jsii.JSIIMeta,
27
27
  jsii_type="@cdktf/provider-upcloud.dataUpcloudIpAddresses.DataUpcloudIpAddresses",
28
28
  ):
29
- '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/ip_addresses upcloud_ip_addresses}.'''
29
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/ip_addresses upcloud_ip_addresses}.'''
30
30
 
31
31
  def __init__(
32
32
  self,
@@ -42,11 +42,11 @@ class DataUpcloudIpAddresses(
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.10.0/docs/data-sources/ip_addresses upcloud_ip_addresses} Data Source.
45
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/ip_addresses upcloud_ip_addresses} 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.10.0/docs/data-sources/ip_addresses#id DataUpcloudIpAddresses#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.
49
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/ip_addresses#id DataUpcloudIpAddresses#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:
@@ -327,7 +327,7 @@ class DataUpcloudIpAddressesConfig(_cdktf_9a9027ec.TerraformMetaArguments):
327
327
  :param lifecycle:
328
328
  :param provider:
329
329
  :param provisioners:
330
- :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/ip_addresses#id DataUpcloudIpAddresses#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.
330
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/ip_addresses#id DataUpcloudIpAddresses#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.
331
331
  '''
332
332
  if isinstance(lifecycle, dict):
333
333
  lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
@@ -425,7 +425,7 @@ class DataUpcloudIpAddressesConfig(_cdktf_9a9027ec.TerraformMetaArguments):
425
425
 
426
426
  @builtins.property
427
427
  def id(self) -> typing.Optional[builtins.str]:
428
- '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/ip_addresses#id DataUpcloudIpAddresses#id}.
428
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/ip_addresses#id DataUpcloudIpAddresses#id}.
429
429
 
430
430
  Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
431
431
  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_kubernetes_cluster`
3
3
 
4
- Refer to the Terraform Registory for docs: [`data_upcloud_kubernetes_cluster`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/kubernetes_cluster).
4
+ Refer to the Terraform Registory for docs: [`data_upcloud_kubernetes_cluster`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/kubernetes_cluster).
5
5
  '''
6
6
  import abc
7
7
  import builtins
@@ -26,7 +26,7 @@ class DataUpcloudKubernetesCluster(
26
26
  metaclass=jsii.JSIIMeta,
27
27
  jsii_type="@cdktf/provider-upcloud.dataUpcloudKubernetesCluster.DataUpcloudKubernetesCluster",
28
28
  ):
29
- '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/kubernetes_cluster upcloud_kubernetes_cluster}.'''
29
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/kubernetes_cluster upcloud_kubernetes_cluster}.'''
30
30
 
31
31
  def __init__(
32
32
  self,
@@ -42,11 +42,11 @@ class DataUpcloudKubernetesCluster(
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.10.0/docs/data-sources/kubernetes_cluster upcloud_kubernetes_cluster} Data Source.
45
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/kubernetes_cluster upcloud_kubernetes_cluster} 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: Cluster ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/kubernetes_cluster#id DataUpcloudKubernetesCluster#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.
49
+ :param id: Cluster ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/kubernetes_cluster#id DataUpcloudKubernetesCluster#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:
@@ -164,7 +164,7 @@ class DataUpcloudKubernetesClusterConfig(_cdktf_9a9027ec.TerraformMetaArguments)
164
164
  :param lifecycle:
165
165
  :param provider:
166
166
  :param provisioners:
167
- :param id: Cluster ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/kubernetes_cluster#id DataUpcloudKubernetesCluster#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.
167
+ :param id: Cluster ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/kubernetes_cluster#id DataUpcloudKubernetesCluster#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.
168
168
  '''
169
169
  if isinstance(lifecycle, dict):
170
170
  lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
@@ -264,7 +264,7 @@ class DataUpcloudKubernetesClusterConfig(_cdktf_9a9027ec.TerraformMetaArguments)
264
264
  def id(self) -> builtins.str:
265
265
  '''Cluster ID.
266
266
 
267
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.10.0/docs/data-sources/kubernetes_cluster#id DataUpcloudKubernetesCluster#id}
267
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/data-sources/kubernetes_cluster#id DataUpcloudKubernetesCluster#id}
268
268
 
269
269
  Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
270
270
  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.