pulumiverse-scaleway 1.35.0a1761031391__py3-none-any.whl → 1.39.0a1764841480__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.
Files changed (109) hide show
  1. pulumiverse_scaleway/__init__.py +38 -0
  2. pulumiverse_scaleway/_inputs.py +271 -166
  3. pulumiverse_scaleway/audittrail/__init__.py +10 -0
  4. pulumiverse_scaleway/audittrail/get_event.py +410 -0
  5. pulumiverse_scaleway/audittrail/outputs.py +234 -0
  6. pulumiverse_scaleway/baremetal_server.py +159 -0
  7. pulumiverse_scaleway/billing/get_consumptions.py +4 -0
  8. pulumiverse_scaleway/block/snapshot.py +78 -0
  9. pulumiverse_scaleway/block_snapshot.py +78 -0
  10. pulumiverse_scaleway/cockpit_grafana_user.py +0 -42
  11. pulumiverse_scaleway/database_instance.py +105 -55
  12. pulumiverse_scaleway/database_user.py +6 -6
  13. pulumiverse_scaleway/databases/_inputs.py +97 -3
  14. pulumiverse_scaleway/databases/get_instance.py +12 -1
  15. pulumiverse_scaleway/databases/instance.py +105 -55
  16. pulumiverse_scaleway/databases/outputs.py +127 -2
  17. pulumiverse_scaleway/databases/user.py +6 -6
  18. pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
  19. pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
  20. pulumiverse_scaleway/datawarehouse/database.py +338 -0
  21. pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
  22. pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
  23. pulumiverse_scaleway/datawarehouse/user.py +451 -0
  24. pulumiverse_scaleway/domain/record.py +4 -4
  25. pulumiverse_scaleway/domain_record.py +4 -4
  26. pulumiverse_scaleway/edge_services_cache_stage.py +30 -0
  27. pulumiverse_scaleway/edge_services_dns_stage.py +28 -0
  28. pulumiverse_scaleway/elasticmetal/get_offer.py +2 -0
  29. pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
  30. pulumiverse_scaleway/elasticmetal/server.py +159 -0
  31. pulumiverse_scaleway/file_filesystem.py +39 -35
  32. pulumiverse_scaleway/get_baremetal_offer.py +2 -0
  33. pulumiverse_scaleway/get_baremetal_server.py +12 -1
  34. pulumiverse_scaleway/get_billing_consumptions.py +4 -0
  35. pulumiverse_scaleway/get_database_instance.py +12 -1
  36. pulumiverse_scaleway/get_instance_ip.py +14 -2
  37. pulumiverse_scaleway/get_instance_server.py +13 -83
  38. pulumiverse_scaleway/get_k8s_version.py +12 -1
  39. pulumiverse_scaleway/get_kubernetes_cluster.py +34 -1
  40. pulumiverse_scaleway/get_loadbalancer.py +12 -1
  41. pulumiverse_scaleway/get_loadbalancer_certificate.py +60 -0
  42. pulumiverse_scaleway/iam/__init__.py +1 -0
  43. pulumiverse_scaleway/iam/get_policy.py +293 -0
  44. pulumiverse_scaleway/iam/outputs.py +52 -0
  45. pulumiverse_scaleway/inference/deployment.py +36 -0
  46. pulumiverse_scaleway/inference/model.py +7 -7
  47. pulumiverse_scaleway/inference_deployment.py +36 -0
  48. pulumiverse_scaleway/instance/_inputs.py +155 -144
  49. pulumiverse_scaleway/instance/get_ip.py +14 -2
  50. pulumiverse_scaleway/instance/get_server.py +13 -83
  51. pulumiverse_scaleway/instance/image.py +94 -40
  52. pulumiverse_scaleway/instance/outputs.py +164 -167
  53. pulumiverse_scaleway/instance/server.py +116 -244
  54. pulumiverse_scaleway/instance/user_data.py +4 -4
  55. pulumiverse_scaleway/instance/volume.py +14 -0
  56. pulumiverse_scaleway/instance_image.py +94 -40
  57. pulumiverse_scaleway/instance_server.py +116 -244
  58. pulumiverse_scaleway/instance_user_data.py +4 -4
  59. pulumiverse_scaleway/instance_volume.py +14 -0
  60. pulumiverse_scaleway/iot/device.py +0 -38
  61. pulumiverse_scaleway/iot/hub.py +11 -11
  62. pulumiverse_scaleway/iot/route.py +20 -20
  63. pulumiverse_scaleway/iot_device.py +0 -38
  64. pulumiverse_scaleway/iot_hub.py +11 -11
  65. pulumiverse_scaleway/iot_route.py +20 -20
  66. pulumiverse_scaleway/ipam/_inputs.py +6 -6
  67. pulumiverse_scaleway/ipam/ip.py +35 -7
  68. pulumiverse_scaleway/ipam/ip_reverse_dns.py +70 -0
  69. pulumiverse_scaleway/ipam/outputs.py +4 -4
  70. pulumiverse_scaleway/ipam_ip.py +35 -7
  71. pulumiverse_scaleway/ipam_ip_reverse_dns.py +70 -0
  72. pulumiverse_scaleway/key_manager_key.py +134 -25
  73. pulumiverse_scaleway/kubernetes/cluster.py +290 -4
  74. pulumiverse_scaleway/kubernetes/get_cluster.py +34 -1
  75. pulumiverse_scaleway/kubernetes/get_version.py +12 -1
  76. pulumiverse_scaleway/kubernetes/pool.py +7 -7
  77. pulumiverse_scaleway/kubernetes_cluster.py +290 -4
  78. pulumiverse_scaleway/kubernetes_node_pool.py +7 -7
  79. pulumiverse_scaleway/loadbalancer.py +55 -1
  80. pulumiverse_scaleway/loadbalancers/__init__.py +1 -0
  81. pulumiverse_scaleway/loadbalancers/_inputs.py +13 -13
  82. pulumiverse_scaleway/loadbalancers/get_certificate.py +60 -0
  83. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +12 -1
  84. pulumiverse_scaleway/loadbalancers/load_balancer.py +55 -1
  85. pulumiverse_scaleway/loadbalancers/outputs.py +9 -9
  86. pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
  87. pulumiverse_scaleway/mongo_db_instance.py +14 -14
  88. pulumiverse_scaleway/mongodb/instance.py +14 -14
  89. pulumiverse_scaleway/network/gateway_network.py +7 -7
  90. pulumiverse_scaleway/object/__init__.py +1 -0
  91. pulumiverse_scaleway/object/bucket_policy.py +0 -64
  92. pulumiverse_scaleway/object/get.py +290 -0
  93. pulumiverse_scaleway/object/item.py +37 -7
  94. pulumiverse_scaleway/object_bucket_policy.py +0 -64
  95. pulumiverse_scaleway/object_item.py +37 -7
  96. pulumiverse_scaleway/observability/__init__.py +1 -0
  97. pulumiverse_scaleway/observability/get_grafana.py +103 -0
  98. pulumiverse_scaleway/observability/get_sources.py +6 -6
  99. pulumiverse_scaleway/observability/grafana_user.py +0 -42
  100. pulumiverse_scaleway/observability/outputs.py +2 -2
  101. pulumiverse_scaleway/outputs.py +304 -182
  102. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  103. pulumiverse_scaleway/tem/domain.py +42 -0
  104. pulumiverse_scaleway/tem_domain.py +42 -0
  105. pulumiverse_scaleway/vpc_gateway_network.py +7 -7
  106. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +1 -1
  107. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/RECORD +109 -96
  108. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +0 -0
  109. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "scaleway",
4
- "version": "1.35.0-alpha.1761031391",
4
+ "version": "1.39.0-alpha.1764841480",
5
5
  "server": "github://api.github.com/pulumiverse"
6
6
  }
@@ -635,6 +635,27 @@ class Domain(pulumi.CustomResource):
635
635
  autoconfig=True)
636
636
  ```
637
637
 
638
+ ### Configuring GitLab Project Variables
639
+
640
+ ```python
641
+ import pulumi
642
+ import pulumi_gitlab as gitlab
643
+ import pulumi_scaleway as scaleway
644
+
645
+ config = pulumi.Config()
646
+ domain_name = config.require("domainName")
647
+ my_domain = scaleway.tem.get_domain(name=domain_name)
648
+ smtp_auth_user = gitlab.ProjectVariable("smtp_auth_user",
649
+ key="SMTP_AUTH_USER",
650
+ value=my_domain.smtps_auth_user)
651
+ smtp_port = gitlab.ProjectVariable("smtp_port",
652
+ key="SMTP_PORT",
653
+ value=my_domain.smtps_port)
654
+ smtp_host = gitlab.ProjectVariable("smtp_host",
655
+ key="SMTP_HOST",
656
+ value=my_domain.smtps_host)
657
+ ```
658
+
638
659
  ## Import
639
660
 
640
661
  Domains can be imported using the `{region}/{id}`, e.g.
@@ -724,6 +745,27 @@ class Domain(pulumi.CustomResource):
724
745
  autoconfig=True)
725
746
  ```
726
747
 
748
+ ### Configuring GitLab Project Variables
749
+
750
+ ```python
751
+ import pulumi
752
+ import pulumi_gitlab as gitlab
753
+ import pulumi_scaleway as scaleway
754
+
755
+ config = pulumi.Config()
756
+ domain_name = config.require("domainName")
757
+ my_domain = scaleway.tem.get_domain(name=domain_name)
758
+ smtp_auth_user = gitlab.ProjectVariable("smtp_auth_user",
759
+ key="SMTP_AUTH_USER",
760
+ value=my_domain.smtps_auth_user)
761
+ smtp_port = gitlab.ProjectVariable("smtp_port",
762
+ key="SMTP_PORT",
763
+ value=my_domain.smtps_port)
764
+ smtp_host = gitlab.ProjectVariable("smtp_host",
765
+ key="SMTP_HOST",
766
+ value=my_domain.smtps_host)
767
+ ```
768
+
727
769
  ## Import
728
770
 
729
771
  Domains can be imported using the `{region}/{id}`, e.g.
@@ -640,6 +640,27 @@ class TemDomain(pulumi.CustomResource):
640
640
  autoconfig=True)
641
641
  ```
642
642
 
643
+ ### Configuring GitLab Project Variables
644
+
645
+ ```python
646
+ import pulumi
647
+ import pulumi_gitlab as gitlab
648
+ import pulumi_scaleway as scaleway
649
+
650
+ config = pulumi.Config()
651
+ domain_name = config.require("domainName")
652
+ my_domain = scaleway.tem.get_domain(name=domain_name)
653
+ smtp_auth_user = gitlab.ProjectVariable("smtp_auth_user",
654
+ key="SMTP_AUTH_USER",
655
+ value=my_domain.smtps_auth_user)
656
+ smtp_port = gitlab.ProjectVariable("smtp_port",
657
+ key="SMTP_PORT",
658
+ value=my_domain.smtps_port)
659
+ smtp_host = gitlab.ProjectVariable("smtp_host",
660
+ key="SMTP_HOST",
661
+ value=my_domain.smtps_host)
662
+ ```
663
+
643
664
  ## Import
644
665
 
645
666
  Domains can be imported using the `{region}/{id}`, e.g.
@@ -729,6 +750,27 @@ class TemDomain(pulumi.CustomResource):
729
750
  autoconfig=True)
730
751
  ```
731
752
 
753
+ ### Configuring GitLab Project Variables
754
+
755
+ ```python
756
+ import pulumi
757
+ import pulumi_gitlab as gitlab
758
+ import pulumi_scaleway as scaleway
759
+
760
+ config = pulumi.Config()
761
+ domain_name = config.require("domainName")
762
+ my_domain = scaleway.tem.get_domain(name=domain_name)
763
+ smtp_auth_user = gitlab.ProjectVariable("smtp_auth_user",
764
+ key="SMTP_AUTH_USER",
765
+ value=my_domain.smtps_auth_user)
766
+ smtp_port = gitlab.ProjectVariable("smtp_port",
767
+ key="SMTP_PORT",
768
+ value=my_domain.smtps_port)
769
+ smtp_host = gitlab.ProjectVariable("smtp_host",
770
+ key="SMTP_HOST",
771
+ value=my_domain.smtps_host)
772
+ ```
773
+
732
774
  ## Import
733
775
 
734
776
  Domains can be imported using the `{region}/{id}`, e.g.
@@ -41,7 +41,7 @@ class VpcGatewayNetworkArgs:
41
41
  :param pulumi.Input[_builtins.bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
42
42
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkIpamConfigArgs']]] ipam_configs: Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
43
43
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkPrivateIpArgs']]] private_ips: The private IPv4 address associated with the resource.
44
- :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
44
+ :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
45
45
  :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the gateway network should be created.
46
46
 
47
47
  > **Important:**
@@ -183,7 +183,7 @@ class VpcGatewayNetworkArgs:
183
183
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
184
184
  def static_address(self) -> Optional[pulumi.Input[_builtins.str]]:
185
185
  """
186
- Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
186
+ Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
187
187
  """
188
188
  return pulumi.get(self, "static_address")
189
189
 
@@ -237,7 +237,7 @@ class _VpcGatewayNetworkState:
237
237
  :param pulumi.Input[_builtins.str] mac_address: The MAC address of the GatewayNetwork.
238
238
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkPrivateIpArgs']]] private_ips: The private IPv4 address associated with the resource.
239
239
  :param pulumi.Input[_builtins.str] private_network_id: The ID of the Private Network.
240
- :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
240
+ :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
241
241
  :param pulumi.Input[_builtins.str] status: The status of the Public Gateway's connection to the Private Network.
242
242
  :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the GatewayNetwork.
243
243
  :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the gateway network should be created.
@@ -415,7 +415,7 @@ class _VpcGatewayNetworkState:
415
415
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
416
416
  def static_address(self) -> Optional[pulumi.Input[_builtins.str]]:
417
417
  """
418
- Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
418
+ Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
419
419
  """
420
420
  return pulumi.get(self, "static_address")
421
421
 
@@ -570,7 +570,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
570
570
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkIpamConfigArgs', 'VpcGatewayNetworkIpamConfigArgsDict']]]] ipam_configs: Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
571
571
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]] private_ips: The private IPv4 address associated with the resource.
572
572
  :param pulumi.Input[_builtins.str] private_network_id: The ID of the Private Network.
573
- :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
573
+ :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
574
574
  :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the gateway network should be created.
575
575
 
576
576
  > **Important:**
@@ -751,7 +751,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
751
751
  :param pulumi.Input[_builtins.str] mac_address: The MAC address of the GatewayNetwork.
752
752
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]] private_ips: The private IPv4 address associated with the resource.
753
753
  :param pulumi.Input[_builtins.str] private_network_id: The ID of the Private Network.
754
- :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
754
+ :param pulumi.Input[_builtins.str] static_address: Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
755
755
  :param pulumi.Input[_builtins.str] status: The status of the Public Gateway's connection to the Private Network.
756
756
  :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the GatewayNetwork.
757
757
  :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the gateway network should be created.
@@ -868,7 +868,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
868
868
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
869
869
  def static_address(self) -> pulumi.Output[_builtins.str]:
870
870
  """
871
- Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
871
+ Please use `ipam_config`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
872
872
  """
873
873
  return pulumi.get(self, "static_address")
874
874
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumiverse_scaleway
3
- Version: 1.35.0a1761031391
3
+ Version: 1.39.0a1764841480
4
4
  Summary: A Pulumi package for creating and managing Scaleway cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.scaleway.com