cdktf-cdktf-provider-upcloud 15.2.1__py3-none-any.whl → 15.3.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 (69) hide show
  1. cdktf_cdktf_provider_upcloud/__init__.py +3 -3
  2. cdktf_cdktf_provider_upcloud/_jsii/__init__.py +2 -2
  3. cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@15.3.0.jsii.tgz +0 -0
  4. cdktf_cdktf_provider_upcloud/data_upcloud_hosts/__init__.py +9 -9
  5. cdktf_cdktf_provider_upcloud/data_upcloud_ip_addresses/__init__.py +12 -7
  6. cdktf_cdktf_provider_upcloud/data_upcloud_kubernetes_cluster/__init__.py +7 -7
  7. cdktf_cdktf_provider_upcloud/data_upcloud_load_balancer_dns_challenge_domain/__init__.py +4 -4
  8. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_mysql_sessions/__init__.py +22 -22
  9. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_opensearch_indices/__init__.py +13 -13
  10. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_postgresql_sessions/__init__.py +30 -30
  11. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_redis_sessions/__init__.py +22 -22
  12. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_valkey_sessions/__init__.py +22 -22
  13. cdktf_cdktf_provider_upcloud/data_upcloud_managed_object_storage_policies/__init__.py +10 -10
  14. cdktf_cdktf_provider_upcloud/data_upcloud_managed_object_storage_regions/__init__.py +7 -7
  15. cdktf_cdktf_provider_upcloud/data_upcloud_networks/__init__.py +13 -13
  16. cdktf_cdktf_provider_upcloud/data_upcloud_storage/__init__.py +28 -28
  17. cdktf_cdktf_provider_upcloud/data_upcloud_tags/__init__.py +7 -7
  18. cdktf_cdktf_provider_upcloud/data_upcloud_zone/__init__.py +10 -10
  19. cdktf_cdktf_provider_upcloud/data_upcloud_zones/__init__.py +7 -7
  20. cdktf_cdktf_provider_upcloud/firewall_rules/__init__.py +38 -38
  21. cdktf_cdktf_provider_upcloud/floating_ip_address/__init__.py +63 -16
  22. cdktf_cdktf_provider_upcloud/gateway/__init__.py +37 -37
  23. cdktf_cdktf_provider_upcloud/gateway_connection/__init__.py +34 -34
  24. cdktf_cdktf_provider_upcloud/gateway_connection_tunnel/__init__.py +61 -61
  25. cdktf_cdktf_provider_upcloud/kubernetes_cluster/__init__.py +34 -34
  26. cdktf_cdktf_provider_upcloud/kubernetes_node_group/__init__.py +72 -72
  27. cdktf_cdktf_provider_upcloud/loadbalancer/__init__.py +392 -39
  28. cdktf_cdktf_provider_upcloud/loadbalancer_backend/__init__.py +46 -46
  29. cdktf_cdktf_provider_upcloud/loadbalancer_backend_tls_config/__init__.py +13 -13
  30. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_backend_member/__init__.py +25 -25
  31. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_certificate_bundle/__init__.py +13 -13
  32. cdktf_cdktf_provider_upcloud/loadbalancer_frontend/__init__.py +33 -33
  33. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_rule/__init__.py +228 -228
  34. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_tls_config/__init__.py +13 -13
  35. cdktf_cdktf_provider_upcloud/loadbalancer_manual_certificate_bundle/__init__.py +16 -16
  36. cdktf_cdktf_provider_upcloud/loadbalancer_resolver/__init__.py +28 -28
  37. cdktf_cdktf_provider_upcloud/loadbalancer_static_backend_member/__init__.py +25 -25
  38. cdktf_cdktf_provider_upcloud/managed_database_logical_database/__init__.py +19 -19
  39. cdktf_cdktf_provider_upcloud/managed_database_mysql/__init__.py +210 -210
  40. cdktf_cdktf_provider_upcloud/managed_database_opensearch/__init__.py +594 -594
  41. cdktf_cdktf_provider_upcloud/managed_database_postgresql/__init__.py +366 -366
  42. cdktf_cdktf_provider_upcloud/managed_database_redis/__init__.py +132 -132
  43. cdktf_cdktf_provider_upcloud/managed_database_user/__init__.py +65 -65
  44. cdktf_cdktf_provider_upcloud/managed_database_valkey/__init__.py +135 -135
  45. cdktf_cdktf_provider_upcloud/managed_object_storage/__init__.py +30 -30
  46. cdktf_cdktf_provider_upcloud/managed_object_storage_bucket/__init__.py +10 -10
  47. cdktf_cdktf_provider_upcloud/managed_object_storage_custom_domain/__init__.py +13 -13
  48. cdktf_cdktf_provider_upcloud/managed_object_storage_policy/__init__.py +16 -16
  49. cdktf_cdktf_provider_upcloud/managed_object_storage_user/__init__.py +13 -13
  50. cdktf_cdktf_provider_upcloud/managed_object_storage_user_access_key/__init__.py +16 -16
  51. cdktf_cdktf_provider_upcloud/managed_object_storage_user_policy/__init__.py +16 -16
  52. cdktf_cdktf_provider_upcloud/network/__init__.py +33 -33
  53. cdktf_cdktf_provider_upcloud/network_peering/__init__.py +23 -23
  54. cdktf_cdktf_provider_upcloud/object_storage/__init__.py +30 -30
  55. cdktf_cdktf_provider_upcloud/provider/__init__.py +28 -28
  56. cdktf_cdktf_provider_upcloud/router/__init__.py +19 -19
  57. cdktf_cdktf_provider_upcloud/server/__init__.py +139 -139
  58. cdktf_cdktf_provider_upcloud/server_group/__init__.py +19 -19
  59. cdktf_cdktf_provider_upcloud/storage/__init__.py +51 -51
  60. cdktf_cdktf_provider_upcloud/storage_backup/__init__.py +13 -13
  61. cdktf_cdktf_provider_upcloud/storage_template/__init__.py +13 -13
  62. cdktf_cdktf_provider_upcloud/tag/__init__.py +16 -16
  63. {cdktf_cdktf_provider_upcloud-15.2.1.dist-info → cdktf_cdktf_provider_upcloud-15.3.0.dist-info}/METADATA +5 -5
  64. cdktf_cdktf_provider_upcloud-15.3.0.dist-info/RECORD +68 -0
  65. cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@15.2.1.jsii.tgz +0 -0
  66. cdktf_cdktf_provider_upcloud-15.2.1.dist-info/RECORD +0 -68
  67. {cdktf_cdktf_provider_upcloud-15.2.1.dist-info → cdktf_cdktf_provider_upcloud-15.3.0.dist-info}/LICENSE +0 -0
  68. {cdktf_cdktf_provider_upcloud-15.2.1.dist-info → cdktf_cdktf_provider_upcloud-15.3.0.dist-info}/WHEEL +0 -0
  69. {cdktf_cdktf_provider_upcloud-15.2.1.dist-info → cdktf_cdktf_provider_upcloud-15.3.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  r'''
2
2
  # `upcloud_gateway`
3
3
 
4
- Refer to the Terraform Registry for docs: [`upcloud_gateway`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway).
4
+ Refer to the Terraform Registry for docs: [`upcloud_gateway`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway).
5
5
  '''
6
6
  from pkgutil import extend_path
7
7
  __path__ = extend_path(__path__, __name__)
@@ -44,7 +44,7 @@ class Gateway(
44
44
  metaclass=jsii.JSIIMeta,
45
45
  jsii_type="@cdktf/provider-upcloud.gateway.Gateway",
46
46
  ):
47
- '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway upcloud_gateway}.'''
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway upcloud_gateway}.'''
48
48
 
49
49
  def __init__(
50
50
  self,
@@ -68,19 +68,19 @@ class Gateway(
68
68
  provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
69
69
  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,
70
70
  ) -> None:
71
- '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway upcloud_gateway} Resource.
71
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway upcloud_gateway} Resource.
72
72
 
73
73
  :param scope: The scope in which to define this construct.
74
74
  :param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
75
- :param features: Features enabled for the gateway. Note that VPN feature is currently in beta, for more details see https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#features Gateway#features}
76
- :param name: Gateway name. Needs to be unique within the account. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#name Gateway#name}
77
- :param router: router block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#router Gateway#router}
78
- :param zone: Zone in which the gateway will be hosted, e.g. ``de-fra1``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#zone Gateway#zone}
79
- :param address: address block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#address Gateway#address}
80
- :param configured_status: The service configured status indicates the service's current intended status. Managed by the customer. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#configured_status Gateway#configured_status}
81
- :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#id Gateway#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.
82
- :param labels: User defined key-value pairs to classify the network gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#labels Gateway#labels}
83
- :param plan: Gateway pricing plan. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#plan Gateway#plan}
75
+ :param features: Features enabled for the gateway. Note that VPN feature is currently in beta, for more details see https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#features Gateway#features}
76
+ :param name: Gateway name. Needs to be unique within the account. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#name Gateway#name}
77
+ :param router: router block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#router Gateway#router}
78
+ :param zone: Zone in which the gateway will be hosted, e.g. ``de-fra1``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#zone Gateway#zone}
79
+ :param address: address block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#address Gateway#address}
80
+ :param configured_status: The service configured status indicates the service's current intended status. Managed by the customer. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#configured_status Gateway#configured_status}
81
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#id Gateway#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.
82
+ :param labels: User defined key-value pairs to classify the network gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#labels Gateway#labels}
83
+ :param plan: Gateway pricing plan. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#plan Gateway#plan}
84
84
  :param connection:
85
85
  :param count:
86
86
  :param depends_on:
@@ -127,7 +127,7 @@ class Gateway(
127
127
 
128
128
  :param scope: The scope in which to define this construct.
129
129
  :param import_to_id: The construct id used in the generated config for the Gateway to import.
130
- :param import_from_id: The id of the existing Gateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#import import section} in the documentation of this resource for the id to use
130
+ :param import_from_id: The id of the existing Gateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#import import section} in the documentation of this resource for the id to use
131
131
  :param provider: ? Optional instance of the provider where the Gateway to import is found.
132
132
  '''
133
133
  if __debug__:
@@ -141,7 +141,7 @@ class Gateway(
141
141
  @jsii.member(jsii_name="putAddress")
142
142
  def put_address(self, *, name: typing.Optional[builtins.str] = None) -> None:
143
143
  '''
144
- :param name: Name of the IP address. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#name Gateway#name}
144
+ :param name: Name of the IP address. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#name Gateway#name}
145
145
  '''
146
146
  value = GatewayAddress(name=name)
147
147
 
@@ -150,7 +150,7 @@ class Gateway(
150
150
  @jsii.member(jsii_name="putRouter")
151
151
  def put_router(self, *, id: builtins.str) -> None:
152
152
  '''
153
- :param id: ID of the router attached to the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#id Gateway#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.
153
+ :param id: ID of the router attached to the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#id Gateway#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.
154
154
  '''
155
155
  value = GatewayRouter(id=id)
156
156
 
@@ -354,7 +354,7 @@ class Gateway(
354
354
  class GatewayAddress:
355
355
  def __init__(self, *, name: typing.Optional[builtins.str] = None) -> None:
356
356
  '''
357
- :param name: Name of the IP address. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#name Gateway#name}
357
+ :param name: Name of the IP address. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#name Gateway#name}
358
358
  '''
359
359
  if __debug__:
360
360
  type_hints = typing.get_type_hints(_typecheckingstub__771f5bc182e7c8b4585492ead620a0562968d48a1a3c37c3e8d87c925e630939)
@@ -367,7 +367,7 @@ class GatewayAddress:
367
367
  def name(self) -> typing.Optional[builtins.str]:
368
368
  '''Name of the IP address.
369
369
 
370
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#name Gateway#name}
370
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#name Gateway#name}
371
371
  '''
372
372
  result = self._values.get("name")
373
373
  return typing.cast(typing.Optional[builtins.str], result)
@@ -637,15 +637,15 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
637
637
  :param lifecycle:
638
638
  :param provider:
639
639
  :param provisioners:
640
- :param features: Features enabled for the gateway. Note that VPN feature is currently in beta, for more details see https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#features Gateway#features}
641
- :param name: Gateway name. Needs to be unique within the account. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#name Gateway#name}
642
- :param router: router block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#router Gateway#router}
643
- :param zone: Zone in which the gateway will be hosted, e.g. ``de-fra1``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#zone Gateway#zone}
644
- :param address: address block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#address Gateway#address}
645
- :param configured_status: The service configured status indicates the service's current intended status. Managed by the customer. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#configured_status Gateway#configured_status}
646
- :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#id Gateway#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.
647
- :param labels: User defined key-value pairs to classify the network gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#labels Gateway#labels}
648
- :param plan: Gateway pricing plan. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#plan Gateway#plan}
640
+ :param features: Features enabled for the gateway. Note that VPN feature is currently in beta, for more details see https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#features Gateway#features}
641
+ :param name: Gateway name. Needs to be unique within the account. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#name Gateway#name}
642
+ :param router: router block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#router Gateway#router}
643
+ :param zone: Zone in which the gateway will be hosted, e.g. ``de-fra1``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#zone Gateway#zone}
644
+ :param address: address block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#address Gateway#address}
645
+ :param configured_status: The service configured status indicates the service's current intended status. Managed by the customer. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#configured_status Gateway#configured_status}
646
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#id Gateway#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.
647
+ :param labels: User defined key-value pairs to classify the network gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#labels Gateway#labels}
648
+ :param plan: Gateway pricing plan. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#plan Gateway#plan}
649
649
  '''
650
650
  if isinstance(lifecycle, dict):
651
651
  lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
@@ -770,7 +770,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
770
770
  def features(self) -> typing.List[builtins.str]:
771
771
  '''Features enabled for the gateway. Note that VPN feature is currently in beta, for more details see https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways.
772
772
 
773
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#features Gateway#features}
773
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#features Gateway#features}
774
774
  '''
775
775
  result = self._values.get("features")
776
776
  assert result is not None, "Required property 'features' is missing"
@@ -780,7 +780,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
780
780
  def name(self) -> builtins.str:
781
781
  '''Gateway name. Needs to be unique within the account.
782
782
 
783
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#name Gateway#name}
783
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#name Gateway#name}
784
784
  '''
785
785
  result = self._values.get("name")
786
786
  assert result is not None, "Required property 'name' is missing"
@@ -790,7 +790,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
790
790
  def router(self) -> "GatewayRouter":
791
791
  '''router block.
792
792
 
793
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#router Gateway#router}
793
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#router Gateway#router}
794
794
  '''
795
795
  result = self._values.get("router")
796
796
  assert result is not None, "Required property 'router' is missing"
@@ -800,7 +800,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
800
800
  def zone(self) -> builtins.str:
801
801
  '''Zone in which the gateway will be hosted, e.g. ``de-fra1``.
802
802
 
803
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#zone Gateway#zone}
803
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#zone Gateway#zone}
804
804
  '''
805
805
  result = self._values.get("zone")
806
806
  assert result is not None, "Required property 'zone' is missing"
@@ -810,7 +810,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
810
810
  def address(self) -> typing.Optional[GatewayAddress]:
811
811
  '''address block.
812
812
 
813
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#address Gateway#address}
813
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#address Gateway#address}
814
814
  '''
815
815
  result = self._values.get("address")
816
816
  return typing.cast(typing.Optional[GatewayAddress], result)
@@ -819,14 +819,14 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
819
819
  def configured_status(self) -> typing.Optional[builtins.str]:
820
820
  '''The service configured status indicates the service's current intended status. Managed by the customer.
821
821
 
822
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#configured_status Gateway#configured_status}
822
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#configured_status Gateway#configured_status}
823
823
  '''
824
824
  result = self._values.get("configured_status")
825
825
  return typing.cast(typing.Optional[builtins.str], result)
826
826
 
827
827
  @builtins.property
828
828
  def id(self) -> typing.Optional[builtins.str]:
829
- '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#id Gateway#id}.
829
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#id Gateway#id}.
830
830
 
831
831
  Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
832
832
  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.
@@ -838,7 +838,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
838
838
  def labels(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
839
839
  '''User defined key-value pairs to classify the network gateway.
840
840
 
841
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#labels Gateway#labels}
841
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#labels Gateway#labels}
842
842
  '''
843
843
  result = self._values.get("labels")
844
844
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
@@ -847,7 +847,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
847
847
  def plan(self) -> typing.Optional[builtins.str]:
848
848
  '''Gateway pricing plan.
849
849
 
850
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#plan Gateway#plan}
850
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#plan Gateway#plan}
851
851
  '''
852
852
  result = self._values.get("plan")
853
853
  return typing.cast(typing.Optional[builtins.str], result)
@@ -872,7 +872,7 @@ class GatewayConfig(_cdktf_9a9027ec.TerraformMetaArguments):
872
872
  class GatewayRouter:
873
873
  def __init__(self, *, id: builtins.str) -> None:
874
874
  '''
875
- :param id: ID of the router attached to the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#id Gateway#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.
875
+ :param id: ID of the router attached to the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#id Gateway#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.
876
876
  '''
877
877
  if __debug__:
878
878
  type_hints = typing.get_type_hints(_typecheckingstub__ec6d5ccf3e805f30e341a3cd9f4f396b1b94f09fded4ca2733934ac1d447f38b)
@@ -885,7 +885,7 @@ class GatewayRouter:
885
885
  def id(self) -> builtins.str:
886
886
  '''ID of the router attached to the gateway.
887
887
 
888
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway#id Gateway#id}
888
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway#id Gateway#id}
889
889
 
890
890
  Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
891
891
  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
  r'''
2
2
  # `upcloud_gateway_connection`
3
3
 
4
- Refer to the Terraform Registry for docs: [`upcloud_gateway_connection`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection).
4
+ Refer to the Terraform Registry for docs: [`upcloud_gateway_connection`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection).
5
5
  '''
6
6
  from pkgutil import extend_path
7
7
  __path__ = extend_path(__path__, __name__)
@@ -44,7 +44,7 @@ class GatewayConnection(
44
44
  metaclass=jsii.JSIIMeta,
45
45
  jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnection",
46
46
  ):
47
- '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection upcloud_gateway_connection}.'''
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection upcloud_gateway_connection}.'''
48
48
 
49
49
  def __init__(
50
50
  self,
@@ -65,16 +65,16 @@ class GatewayConnection(
65
65
  provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
66
66
  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,
67
67
  ) -> None:
68
- '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection upcloud_gateway_connection} Resource.
68
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection upcloud_gateway_connection} Resource.
69
69
 
70
70
  :param scope: The scope in which to define this construct.
71
71
  :param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
72
- :param gateway: The ID of the upcloud_gateway resource to which the connection belongs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
73
- :param name: The name of the connection, should be unique within the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
74
- :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#id GatewayConnection#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.
75
- :param local_route: local_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
76
- :param remote_route: remote_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
77
- :param type: The type of the connection; currently the only supported type is 'ipsec'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
72
+ :param gateway: The ID of the upcloud_gateway resource to which the connection belongs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
73
+ :param name: The name of the connection, should be unique within the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
74
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#id GatewayConnection#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.
75
+ :param local_route: local_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
76
+ :param remote_route: remote_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
77
+ :param type: The type of the connection; currently the only supported type is 'ipsec'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
78
78
  :param connection:
79
79
  :param count:
80
80
  :param depends_on:
@@ -118,7 +118,7 @@ class GatewayConnection(
118
118
 
119
119
  :param scope: The scope in which to define this construct.
120
120
  :param import_to_id: The construct id used in the generated config for the GatewayConnection to import.
121
- :param import_from_id: The id of the existing GatewayConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#import import section} in the documentation of this resource for the id to use
121
+ :param import_from_id: The id of the existing GatewayConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#import import section} in the documentation of this resource for the id to use
122
122
  :param provider: ? Optional instance of the provider where the GatewayConnection to import is found.
123
123
  '''
124
124
  if __debug__:
@@ -332,12 +332,12 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
332
332
  :param lifecycle:
333
333
  :param provider:
334
334
  :param provisioners:
335
- :param gateway: The ID of the upcloud_gateway resource to which the connection belongs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
336
- :param name: The name of the connection, should be unique within the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
337
- :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#id GatewayConnection#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.
338
- :param local_route: local_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
339
- :param remote_route: remote_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
340
- :param type: The type of the connection; currently the only supported type is 'ipsec'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
335
+ :param gateway: The ID of the upcloud_gateway resource to which the connection belongs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
336
+ :param name: The name of the connection, should be unique within the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
337
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#id GatewayConnection#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.
338
+ :param local_route: local_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
339
+ :param remote_route: remote_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
340
+ :param type: The type of the connection; currently the only supported type is 'ipsec'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
341
341
  '''
342
342
  if isinstance(lifecycle, dict):
343
343
  lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
@@ -451,7 +451,7 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
451
451
  def gateway(self) -> builtins.str:
452
452
  '''The ID of the upcloud_gateway resource to which the connection belongs.
453
453
 
454
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
454
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
455
455
  '''
456
456
  result = self._values.get("gateway")
457
457
  assert result is not None, "Required property 'gateway' is missing"
@@ -461,7 +461,7 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
461
461
  def name(self) -> builtins.str:
462
462
  '''The name of the connection, should be unique within the gateway.
463
463
 
464
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
464
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
465
465
  '''
466
466
  result = self._values.get("name")
467
467
  assert result is not None, "Required property 'name' is missing"
@@ -469,7 +469,7 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
469
469
 
470
470
  @builtins.property
471
471
  def id(self) -> typing.Optional[builtins.str]:
472
- '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#id GatewayConnection#id}.
472
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#id GatewayConnection#id}.
473
473
 
474
474
  Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
475
475
  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.
@@ -483,7 +483,7 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
483
483
  ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionLocalRoute"]]]:
484
484
  '''local_route block.
485
485
 
486
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
486
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
487
487
  '''
488
488
  result = self._values.get("local_route")
489
489
  return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionLocalRoute"]]], result)
@@ -494,7 +494,7 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
494
494
  ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionRemoteRoute"]]]:
495
495
  '''remote_route block.
496
496
 
497
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
497
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
498
498
  '''
499
499
  result = self._values.get("remote_route")
500
500
  return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionRemoteRoute"]]], result)
@@ -503,7 +503,7 @@ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
503
503
  def type(self) -> typing.Optional[builtins.str]:
504
504
  '''The type of the connection; currently the only supported type is 'ipsec'.
505
505
 
506
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
506
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
507
507
  '''
508
508
  result = self._values.get("type")
509
509
  return typing.cast(typing.Optional[builtins.str], result)
@@ -534,9 +534,9 @@ class GatewayConnectionLocalRoute:
534
534
  type: typing.Optional[builtins.str] = None,
535
535
  ) -> None:
536
536
  '''
537
- :param name: Name of the route. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
538
- :param static_network: Destination prefix of the route; needs to be a valid IPv4 prefix. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
539
- :param type: Type of route; currently the only supported type is 'static'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
537
+ :param name: Name of the route. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
538
+ :param static_network: Destination prefix of the route; needs to be a valid IPv4 prefix. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
539
+ :param type: Type of route; currently the only supported type is 'static'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
540
540
  '''
541
541
  if __debug__:
542
542
  type_hints = typing.get_type_hints(_typecheckingstub__e9bdbc304645ef903521fb56e820f8a47e2974b0281c6e16487c6d0125d32895)
@@ -554,7 +554,7 @@ class GatewayConnectionLocalRoute:
554
554
  def name(self) -> builtins.str:
555
555
  '''Name of the route.
556
556
 
557
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
557
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
558
558
  '''
559
559
  result = self._values.get("name")
560
560
  assert result is not None, "Required property 'name' is missing"
@@ -564,7 +564,7 @@ class GatewayConnectionLocalRoute:
564
564
  def static_network(self) -> builtins.str:
565
565
  '''Destination prefix of the route; needs to be a valid IPv4 prefix.
566
566
 
567
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
567
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
568
568
  '''
569
569
  result = self._values.get("static_network")
570
570
  assert result is not None, "Required property 'static_network' is missing"
@@ -574,7 +574,7 @@ class GatewayConnectionLocalRoute:
574
574
  def type(self) -> typing.Optional[builtins.str]:
575
575
  '''Type of route; currently the only supported type is 'static'.
576
576
 
577
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
577
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
578
578
  '''
579
579
  result = self._values.get("type")
580
580
  return typing.cast(typing.Optional[builtins.str], result)
@@ -794,9 +794,9 @@ class GatewayConnectionRemoteRoute:
794
794
  type: typing.Optional[builtins.str] = None,
795
795
  ) -> None:
796
796
  '''
797
- :param name: Name of the route. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
798
- :param static_network: Destination prefix of the route; needs to be a valid IPv4 prefix. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
799
- :param type: Type of route; currently the only supported type is 'static'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
797
+ :param name: Name of the route. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
798
+ :param static_network: Destination prefix of the route; needs to be a valid IPv4 prefix. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
799
+ :param type: Type of route; currently the only supported type is 'static'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
800
800
  '''
801
801
  if __debug__:
802
802
  type_hints = typing.get_type_hints(_typecheckingstub__bb241e4f5e51f66fa76e319bae9793b11f7a4bca837d9a67cbe02422b2b6e95f)
@@ -814,7 +814,7 @@ class GatewayConnectionRemoteRoute:
814
814
  def name(self) -> builtins.str:
815
815
  '''Name of the route.
816
816
 
817
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#name GatewayConnection#name}
817
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#name GatewayConnection#name}
818
818
  '''
819
819
  result = self._values.get("name")
820
820
  assert result is not None, "Required property 'name' is missing"
@@ -824,7 +824,7 @@ class GatewayConnectionRemoteRoute:
824
824
  def static_network(self) -> builtins.str:
825
825
  '''Destination prefix of the route; needs to be a valid IPv4 prefix.
826
826
 
827
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
827
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
828
828
  '''
829
829
  result = self._values.get("static_network")
830
830
  assert result is not None, "Required property 'static_network' is missing"
@@ -834,7 +834,7 @@ class GatewayConnectionRemoteRoute:
834
834
  def type(self) -> typing.Optional[builtins.str]:
835
835
  '''Type of route; currently the only supported type is 'static'.
836
836
 
837
- Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.24.1/docs/resources/gateway_connection#type GatewayConnection#type}
837
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.25.0/docs/resources/gateway_connection#type GatewayConnection#type}
838
838
  '''
839
839
  result = self._values.get("type")
840
840
  return typing.cast(typing.Optional[builtins.str], result)