pulumiverse-scaleway 1.16.0a1730114875__py3-none-any.whl → 1.16.0a1730122985__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 pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/_inputs.py +2119 -50
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account_project.py +5 -0
- pulumiverse_scaleway/account_ssh_key.py +5 -0
- pulumiverse_scaleway/apple_silicon_server.py +5 -0
- pulumiverse_scaleway/baremetal_server.py +5 -0
- pulumiverse_scaleway/block_snapshot.py +5 -0
- pulumiverse_scaleway/block_volume.py +5 -0
- pulumiverse_scaleway/cockpit.py +5 -0
- pulumiverse_scaleway/cockpit_alert_manager.py +5 -0
- pulumiverse_scaleway/cockpit_grafana_user.py +5 -0
- pulumiverse_scaleway/cockpit_source.py +5 -0
- pulumiverse_scaleway/cockpit_token.py +5 -0
- pulumiverse_scaleway/config/__init__.pyi +5 -0
- pulumiverse_scaleway/config/vars.py +5 -0
- pulumiverse_scaleway/container.py +5 -0
- pulumiverse_scaleway/container_cron.py +5 -0
- pulumiverse_scaleway/container_domain.py +5 -0
- pulumiverse_scaleway/container_namespace.py +5 -0
- pulumiverse_scaleway/container_token.py +5 -0
- pulumiverse_scaleway/container_trigger.py +5 -0
- pulumiverse_scaleway/database.py +5 -0
- pulumiverse_scaleway/database_acl.py +5 -0
- pulumiverse_scaleway/database_backup.py +5 -0
- pulumiverse_scaleway/database_instance.py +56 -2
- pulumiverse_scaleway/database_privilege.py +5 -0
- pulumiverse_scaleway/database_read_replica.py +5 -0
- pulumiverse_scaleway/database_user.py +5 -0
- pulumiverse_scaleway/documentdb_database.py +5 -0
- pulumiverse_scaleway/documentdb_instance.py +5 -0
- pulumiverse_scaleway/documentdb_private_network_endpoint.py +5 -0
- pulumiverse_scaleway/documentdb_privilege.py +5 -0
- pulumiverse_scaleway/documentdb_read_replica.py +5 -0
- pulumiverse_scaleway/documentdb_user.py +5 -0
- pulumiverse_scaleway/domain_record.py +5 -0
- pulumiverse_scaleway/domain_zone.py +5 -0
- pulumiverse_scaleway/flexible_ip.py +5 -0
- pulumiverse_scaleway/flexible_ip_mac_address.py +5 -0
- pulumiverse_scaleway/function.py +5 -0
- pulumiverse_scaleway/function_cron.py +5 -0
- pulumiverse_scaleway/function_domain.py +5 -0
- pulumiverse_scaleway/function_namespace.py +5 -0
- pulumiverse_scaleway/function_token.py +5 -0
- pulumiverse_scaleway/function_trigger.py +5 -0
- pulumiverse_scaleway/get_account_project.py +19 -4
- pulumiverse_scaleway/get_account_ssh_key.py +22 -4
- pulumiverse_scaleway/get_availability_zones.py +13 -4
- pulumiverse_scaleway/get_baremetal_offer.py +26 -4
- pulumiverse_scaleway/get_baremetal_option.py +17 -4
- pulumiverse_scaleway/get_baremetal_os.py +18 -4
- pulumiverse_scaleway/get_baremetal_server.py +40 -4
- pulumiverse_scaleway/get_billing_consumptions.py +15 -4
- pulumiverse_scaleway/get_billing_invoices.py +18 -4
- pulumiverse_scaleway/get_block_snapshot.py +21 -4
- pulumiverse_scaleway/get_block_volume.py +22 -4
- pulumiverse_scaleway/get_cockpit.py +15 -4
- pulumiverse_scaleway/get_cockpit_plan.py +12 -4
- pulumiverse_scaleway/get_config.py +20 -4
- pulumiverse_scaleway/get_container.py +41 -4
- pulumiverse_scaleway/get_container_namespace.py +25 -4
- pulumiverse_scaleway/get_database.py +19 -4
- pulumiverse_scaleway/get_database_acl.py +15 -4
- pulumiverse_scaleway/get_database_backup.py +26 -4
- pulumiverse_scaleway/get_database_instance.py +52 -5
- pulumiverse_scaleway/get_database_privilege.py +19 -4
- pulumiverse_scaleway/get_documentdb_database.py +20 -4
- pulumiverse_scaleway/get_documentdb_instance.py +27 -4
- pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py +22 -4
- pulumiverse_scaleway/get_domain_record.py +31 -4
- pulumiverse_scaleway/get_domain_zone.py +21 -4
- pulumiverse_scaleway/get_flexible_ip.py +26 -4
- pulumiverse_scaleway/get_flexible_ips.py +20 -4
- pulumiverse_scaleway/get_function.py +38 -4
- pulumiverse_scaleway/get_function_namespace.py +24 -4
- pulumiverse_scaleway/get_iam_api_key.py +21 -4
- pulumiverse_scaleway/get_iam_application.py +21 -4
- pulumiverse_scaleway/get_iam_group.py +23 -4
- pulumiverse_scaleway/get_iam_ssh_key.py +22 -4
- pulumiverse_scaleway/get_iam_user.py +16 -4
- pulumiverse_scaleway/get_instance_image.py +31 -4
- pulumiverse_scaleway/get_instance_ip.py +21 -4
- pulumiverse_scaleway/get_instance_placement_group.py +23 -4
- pulumiverse_scaleway/get_instance_private_nic.py +22 -4
- pulumiverse_scaleway/get_instance_security_group.py +28 -4
- pulumiverse_scaleway/get_instance_server.py +45 -4
- pulumiverse_scaleway/get_instance_servers.py +20 -4
- pulumiverse_scaleway/get_instance_snapshot.py +25 -4
- pulumiverse_scaleway/get_instance_volume.py +24 -4
- pulumiverse_scaleway/get_iot_device.py +28 -4
- pulumiverse_scaleway/get_iot_hub.py +34 -4
- pulumiverse_scaleway/get_ipam_ip.py +33 -4
- pulumiverse_scaleway/get_ipam_ips.py +30 -4
- pulumiverse_scaleway/get_k8s_version.py +17 -4
- pulumiverse_scaleway/get_kubernetes_cluster.py +38 -4
- pulumiverse_scaleway/get_kubernetes_node_pool.py +41 -4
- pulumiverse_scaleway/get_lb_acls.py +20 -4
- pulumiverse_scaleway/get_lb_backend.py +44 -4
- pulumiverse_scaleway/get_lb_backends.py +20 -4
- pulumiverse_scaleway/get_lb_frontend.py +24 -4
- pulumiverse_scaleway/get_lb_frontends.py +20 -4
- pulumiverse_scaleway/get_lb_ips.py +22 -4
- pulumiverse_scaleway/get_lb_route.py +18 -4
- pulumiverse_scaleway/get_lb_routes.py +18 -4
- pulumiverse_scaleway/get_lbs.py +20 -4
- pulumiverse_scaleway/get_loadbalancer.py +33 -4
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -4
- pulumiverse_scaleway/get_loadbalancer_ip.py +23 -4
- pulumiverse_scaleway/get_marketplace_image.py +16 -4
- pulumiverse_scaleway/get_mnq_sqs.py +15 -4
- pulumiverse_scaleway/get_object_bucket.py +25 -4
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -4
- pulumiverse_scaleway/get_redis_cluster.py +32 -4
- pulumiverse_scaleway/get_registry_image.py +26 -4
- pulumiverse_scaleway/get_registry_namespace.py +22 -4
- pulumiverse_scaleway/get_secret.py +28 -4
- pulumiverse_scaleway/get_secret_version.py +25 -4
- pulumiverse_scaleway/get_tem_domain.py +38 -4
- pulumiverse_scaleway/get_vpc.py +26 -4
- pulumiverse_scaleway/get_vpc_gateway_network.py +29 -4
- pulumiverse_scaleway/get_vpc_private_network.py +28 -4
- pulumiverse_scaleway/get_vpc_public_gateway.py +30 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +30 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +25 -4
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +20 -4
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +22 -4
- pulumiverse_scaleway/get_vpc_routes.py +25 -4
- pulumiverse_scaleway/get_vpcs.py +20 -4
- pulumiverse_scaleway/get_web_host_offer.py +19 -4
- pulumiverse_scaleway/get_webhosting.py +33 -4
- pulumiverse_scaleway/iam_api_key.py +31 -0
- pulumiverse_scaleway/iam_application.py +5 -0
- pulumiverse_scaleway/iam_group.py +5 -0
- pulumiverse_scaleway/iam_group_membership.py +5 -0
- pulumiverse_scaleway/iam_policy.py +5 -0
- pulumiverse_scaleway/iam_ssh_key.py +5 -0
- pulumiverse_scaleway/iam_user.py +5 -0
- pulumiverse_scaleway/instance_image.py +5 -0
- pulumiverse_scaleway/instance_ip.py +5 -0
- pulumiverse_scaleway/instance_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/instance_placement_group.py +5 -0
- pulumiverse_scaleway/instance_private_nic.py +5 -0
- pulumiverse_scaleway/instance_security_group.py +5 -0
- pulumiverse_scaleway/instance_security_group_rules.py +5 -0
- pulumiverse_scaleway/instance_server.py +5 -0
- pulumiverse_scaleway/instance_snapshot.py +5 -0
- pulumiverse_scaleway/instance_user_data.py +5 -0
- pulumiverse_scaleway/instance_volume.py +5 -0
- pulumiverse_scaleway/iot_device.py +5 -0
- pulumiverse_scaleway/iot_hub.py +5 -0
- pulumiverse_scaleway/iot_network.py +5 -0
- pulumiverse_scaleway/iot_route.py +5 -0
- pulumiverse_scaleway/ipam_ip.py +5 -0
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/job_definition.py +5 -0
- pulumiverse_scaleway/kubernetes_cluster.py +5 -0
- pulumiverse_scaleway/kubernetes_node_pool.py +5 -0
- pulumiverse_scaleway/loadbalancer.py +5 -0
- pulumiverse_scaleway/loadbalancer_acl.py +5 -0
- pulumiverse_scaleway/loadbalancer_backend.py +5 -0
- pulumiverse_scaleway/loadbalancer_certificate.py +5 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +5 -0
- pulumiverse_scaleway/loadbalancer_ip.py +5 -0
- pulumiverse_scaleway/loadbalancer_route.py +5 -0
- pulumiverse_scaleway/mnq_nats_account.py +5 -0
- pulumiverse_scaleway/mnq_nats_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sns.py +5 -0
- pulumiverse_scaleway/mnq_sns_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sns_topic.py +5 -0
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +5 -0
- pulumiverse_scaleway/mnq_sqs.py +5 -0
- pulumiverse_scaleway/mnq_sqs_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sqs_queue.py +5 -0
- pulumiverse_scaleway/object_bucket.py +5 -0
- pulumiverse_scaleway/object_bucket_acl.py +5 -0
- pulumiverse_scaleway/object_bucket_lock_configuration.py +5 -0
- pulumiverse_scaleway/object_bucket_policy.py +5 -0
- pulumiverse_scaleway/object_bucket_website_configuration.py +5 -0
- pulumiverse_scaleway/object_item.py +5 -0
- pulumiverse_scaleway/outputs.py +5 -0
- pulumiverse_scaleway/provider.py +5 -0
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/redis_cluster.py +5 -0
- pulumiverse_scaleway/registry_namespace.py +5 -0
- pulumiverse_scaleway/sdb_database.py +5 -0
- pulumiverse_scaleway/secret.py +5 -0
- pulumiverse_scaleway/secret_version.py +5 -0
- pulumiverse_scaleway/tem_domain.py +5 -0
- pulumiverse_scaleway/tem_domain_validation.py +5 -0
- pulumiverse_scaleway/vpc.py +5 -0
- pulumiverse_scaleway/vpc_gateway_network.py +5 -0
- pulumiverse_scaleway/vpc_private_network.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_ip.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +5 -0
- pulumiverse_scaleway/webhosting.py +5 -0
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122985.dist-info}/METADATA +2 -1
- pulumiverse_scaleway-1.16.0a1730122985.dist-info/RECORD +205 -0
- pulumiverse_scaleway-1.16.0a1730114875.dist-info/RECORD +0 -205
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122985.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122985.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['DocumentdbUserArgs', 'DocumentdbUser']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['DomainZoneArgs', 'DomainZone']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FlexibleIpArgs', 'FlexibleIp']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FlexibleIpMacAddressArgs', 'FlexibleIpMacAddress']
|
pulumiverse_scaleway/function.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FunctionArgs', 'Function']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FunctionCronArgs', 'FunctionCron']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FunctionDomainArgs', 'FunctionDomain']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FunctionNamespaceArgs', 'FunctionNamespace']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FunctionTokenArgs', 'FunctionToken']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -128,9 +133,6 @@ def get_account_project(name: Optional[str] = None,
|
|
|
128
133
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
129
134
|
project_id=pulumi.get(__ret__, 'project_id'),
|
|
130
135
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
@_utilities.lift_output_func(get_account_project)
|
|
134
136
|
def get_account_project_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
135
137
|
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
136
138
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -146,4 +148,17 @@ def get_account_project_output(name: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
146
148
|
:param str project_id: The ID of the Project.
|
|
147
149
|
Only one of the `name` and `project_id` should be specified.
|
|
148
150
|
"""
|
|
149
|
-
|
|
151
|
+
__args__ = dict()
|
|
152
|
+
__args__['name'] = name
|
|
153
|
+
__args__['organizationId'] = organization_id
|
|
154
|
+
__args__['projectId'] = project_id
|
|
155
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
156
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getAccountProject:getAccountProject', __args__, opts=opts, typ=GetAccountProjectResult)
|
|
157
|
+
return __ret__.apply(lambda __response__: GetAccountProjectResult(
|
|
158
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
159
|
+
description=pulumi.get(__response__, 'description'),
|
|
160
|
+
id=pulumi.get(__response__, 'id'),
|
|
161
|
+
name=pulumi.get(__response__, 'name'),
|
|
162
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
163
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
164
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -163,9 +168,6 @@ def get_account_ssh_key(name: Optional[str] = None,
|
|
|
163
168
|
public_key=pulumi.get(__ret__, 'public_key'),
|
|
164
169
|
ssh_key_id=pulumi.get(__ret__, 'ssh_key_id'),
|
|
165
170
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
@_utilities.lift_output_func(get_account_ssh_key)
|
|
169
171
|
def get_account_ssh_key_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
170
172
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
171
173
|
ssh_key_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -180,4 +182,20 @@ def get_account_ssh_key_output(name: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
180
182
|
|
|
181
183
|
> **Note** You must specify at least one: `name` and/or `ssh_key_id`.
|
|
182
184
|
"""
|
|
183
|
-
|
|
185
|
+
__args__ = dict()
|
|
186
|
+
__args__['name'] = name
|
|
187
|
+
__args__['projectId'] = project_id
|
|
188
|
+
__args__['sshKeyId'] = ssh_key_id
|
|
189
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
190
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getAccountSshKey:getAccountSshKey', __args__, opts=opts, typ=GetAccountSshKeyResult)
|
|
191
|
+
return __ret__.apply(lambda __response__: GetAccountSshKeyResult(
|
|
192
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
193
|
+
disabled=pulumi.get(__response__, 'disabled'),
|
|
194
|
+
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
|
195
|
+
id=pulumi.get(__response__, 'id'),
|
|
196
|
+
name=pulumi.get(__response__, 'name'),
|
|
197
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
198
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
199
|
+
public_key=pulumi.get(__response__, 'public_key'),
|
|
200
|
+
ssh_key_id=pulumi.get(__response__, 'ssh_key_id'),
|
|
201
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -95,9 +100,6 @@ def get_availability_zones(region: Optional[str] = None,
|
|
|
95
100
|
id=pulumi.get(__ret__, 'id'),
|
|
96
101
|
region=pulumi.get(__ret__, 'region'),
|
|
97
102
|
zones=pulumi.get(__ret__, 'zones'))
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
@_utilities.lift_output_func(get_availability_zones)
|
|
101
103
|
def get_availability_zones_output(region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
102
104
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAvailabilityZonesResult]:
|
|
103
105
|
"""
|
|
@@ -119,4 +121,11 @@ def get_availability_zones_output(region: Optional[pulumi.Input[Optional[str]]]
|
|
|
119
121
|
|
|
120
122
|
:param str region: Region is represented as a Geographical area such as France. Defaults: `fr-par`.
|
|
121
123
|
"""
|
|
122
|
-
|
|
124
|
+
__args__ = dict()
|
|
125
|
+
__args__['region'] = region
|
|
126
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
127
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getAvailabilityZones:getAvailabilityZones', __args__, opts=opts, typ=GetAvailabilityZonesResult)
|
|
128
|
+
return __ret__.apply(lambda __response__: GetAvailabilityZonesResult(
|
|
129
|
+
id=pulumi.get(__response__, 'id'),
|
|
130
|
+
region=pulumi.get(__response__, 'region'),
|
|
131
|
+
zones=pulumi.get(__response__, 'zones')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -202,9 +207,6 @@ def get_baremetal_offer(include_disabled: Optional[bool] = None,
|
|
|
202
207
|
stock=pulumi.get(__ret__, 'stock'),
|
|
203
208
|
subscription_period=pulumi.get(__ret__, 'subscription_period'),
|
|
204
209
|
zone=pulumi.get(__ret__, 'zone'))
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
@_utilities.lift_output_func(get_baremetal_offer)
|
|
208
210
|
def get_baremetal_offer_output(include_disabled: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
209
211
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
210
212
|
offer_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -220,4 +222,24 @@ def get_baremetal_offer_output(include_disabled: Optional[pulumi.Input[Optional[
|
|
|
220
222
|
:param str subscription_period: Period of subscription the desired offer. Should be `hourly` or `monthly`.
|
|
221
223
|
:param str zone: `zone`) The zone in which the offer should be created.
|
|
222
224
|
"""
|
|
223
|
-
|
|
225
|
+
__args__ = dict()
|
|
226
|
+
__args__['includeDisabled'] = include_disabled
|
|
227
|
+
__args__['name'] = name
|
|
228
|
+
__args__['offerId'] = offer_id
|
|
229
|
+
__args__['subscriptionPeriod'] = subscription_period
|
|
230
|
+
__args__['zone'] = zone
|
|
231
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
232
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBaremetalOffer:getBaremetalOffer', __args__, opts=opts, typ=GetBaremetalOfferResult)
|
|
233
|
+
return __ret__.apply(lambda __response__: GetBaremetalOfferResult(
|
|
234
|
+
bandwidth=pulumi.get(__response__, 'bandwidth'),
|
|
235
|
+
commercial_range=pulumi.get(__response__, 'commercial_range'),
|
|
236
|
+
cpu=pulumi.get(__response__, 'cpu'),
|
|
237
|
+
disks=pulumi.get(__response__, 'disks'),
|
|
238
|
+
id=pulumi.get(__response__, 'id'),
|
|
239
|
+
include_disabled=pulumi.get(__response__, 'include_disabled'),
|
|
240
|
+
memories=pulumi.get(__response__, 'memories'),
|
|
241
|
+
name=pulumi.get(__response__, 'name'),
|
|
242
|
+
offer_id=pulumi.get(__response__, 'offer_id'),
|
|
243
|
+
stock=pulumi.get(__response__, 'stock'),
|
|
244
|
+
subscription_period=pulumi.get(__response__, 'subscription_period'),
|
|
245
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -124,9 +129,6 @@ def get_baremetal_option(name: Optional[str] = None,
|
|
|
124
129
|
name=pulumi.get(__ret__, 'name'),
|
|
125
130
|
option_id=pulumi.get(__ret__, 'option_id'),
|
|
126
131
|
zone=pulumi.get(__ret__, 'zone'))
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
@_utilities.lift_output_func(get_baremetal_option)
|
|
130
132
|
def get_baremetal_option_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
131
133
|
option_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
132
134
|
zone: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -152,4 +154,15 @@ def get_baremetal_option_output(name: Optional[pulumi.Input[Optional[str]]] = No
|
|
|
152
154
|
:param str option_id: The option id. Only one of `name` and `option_id` should be specified.
|
|
153
155
|
:param str zone: `zone`) The zone in which the option exists.
|
|
154
156
|
"""
|
|
155
|
-
|
|
157
|
+
__args__ = dict()
|
|
158
|
+
__args__['name'] = name
|
|
159
|
+
__args__['optionId'] = option_id
|
|
160
|
+
__args__['zone'] = zone
|
|
161
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
162
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBaremetalOption:getBaremetalOption', __args__, opts=opts, typ=GetBaremetalOptionResult)
|
|
163
|
+
return __ret__.apply(lambda __response__: GetBaremetalOptionResult(
|
|
164
|
+
id=pulumi.get(__response__, 'id'),
|
|
165
|
+
manageable=pulumi.get(__response__, 'manageable'),
|
|
166
|
+
name=pulumi.get(__response__, 'name'),
|
|
167
|
+
option_id=pulumi.get(__response__, 'option_id'),
|
|
168
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -124,9 +129,6 @@ def get_baremetal_os(name: Optional[str] = None,
|
|
|
124
129
|
os_id=pulumi.get(__ret__, 'os_id'),
|
|
125
130
|
version=pulumi.get(__ret__, 'version'),
|
|
126
131
|
zone=pulumi.get(__ret__, 'zone'))
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
@_utilities.lift_output_func(get_baremetal_os)
|
|
130
132
|
def get_baremetal_os_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
131
133
|
os_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
132
134
|
version: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -157,4 +159,16 @@ def get_baremetal_os_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
157
159
|
:param str version: The os version.
|
|
158
160
|
:param str zone: `zone`) The zone in which the os exists.
|
|
159
161
|
"""
|
|
160
|
-
|
|
162
|
+
__args__ = dict()
|
|
163
|
+
__args__['name'] = name
|
|
164
|
+
__args__['osId'] = os_id
|
|
165
|
+
__args__['version'] = version
|
|
166
|
+
__args__['zone'] = zone
|
|
167
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
168
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBaremetalOs:getBaremetalOs', __args__, opts=opts, typ=GetBaremetalOsResult)
|
|
169
|
+
return __ret__.apply(lambda __response__: GetBaremetalOsResult(
|
|
170
|
+
id=pulumi.get(__response__, 'id'),
|
|
171
|
+
name=pulumi.get(__response__, 'name'),
|
|
172
|
+
os_id=pulumi.get(__response__, 'os_id'),
|
|
173
|
+
version=pulumi.get(__response__, 'version'),
|
|
174
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -342,9 +347,6 @@ def get_baremetal_server(name: Optional[str] = None,
|
|
|
342
347
|
tags=pulumi.get(__ret__, 'tags'),
|
|
343
348
|
user=pulumi.get(__ret__, 'user'),
|
|
344
349
|
zone=pulumi.get(__ret__, 'zone'))
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
@_utilities.lift_output_func(get_baremetal_server)
|
|
348
350
|
def get_baremetal_server_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
349
351
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
350
352
|
server_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -372,4 +374,38 @@ def get_baremetal_server_output(name: Optional[pulumi.Input[Optional[str]]] = No
|
|
|
372
374
|
:param str project_id: The ID of the project the baremetal server is associated with.
|
|
373
375
|
:param str zone: `zone`) The zone in which the server exists.
|
|
374
376
|
"""
|
|
375
|
-
|
|
377
|
+
__args__ = dict()
|
|
378
|
+
__args__['name'] = name
|
|
379
|
+
__args__['projectId'] = project_id
|
|
380
|
+
__args__['serverId'] = server_id
|
|
381
|
+
__args__['zone'] = zone
|
|
382
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
383
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBaremetalServer:getBaremetalServer', __args__, opts=opts, typ=GetBaremetalServerResult)
|
|
384
|
+
return __ret__.apply(lambda __response__: GetBaremetalServerResult(
|
|
385
|
+
description=pulumi.get(__response__, 'description'),
|
|
386
|
+
domain=pulumi.get(__response__, 'domain'),
|
|
387
|
+
hostname=pulumi.get(__response__, 'hostname'),
|
|
388
|
+
id=pulumi.get(__response__, 'id'),
|
|
389
|
+
install_config_afterward=pulumi.get(__response__, 'install_config_afterward'),
|
|
390
|
+
ips=pulumi.get(__response__, 'ips'),
|
|
391
|
+
ipv4s=pulumi.get(__response__, 'ipv4s'),
|
|
392
|
+
ipv6s=pulumi.get(__response__, 'ipv6s'),
|
|
393
|
+
name=pulumi.get(__response__, 'name'),
|
|
394
|
+
offer=pulumi.get(__response__, 'offer'),
|
|
395
|
+
offer_id=pulumi.get(__response__, 'offer_id'),
|
|
396
|
+
offer_name=pulumi.get(__response__, 'offer_name'),
|
|
397
|
+
options=pulumi.get(__response__, 'options'),
|
|
398
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
399
|
+
os=pulumi.get(__response__, 'os'),
|
|
400
|
+
os_name=pulumi.get(__response__, 'os_name'),
|
|
401
|
+
password=pulumi.get(__response__, 'password'),
|
|
402
|
+
private_networks=pulumi.get(__response__, 'private_networks'),
|
|
403
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
404
|
+
reinstall_on_config_changes=pulumi.get(__response__, 'reinstall_on_config_changes'),
|
|
405
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
|
406
|
+
service_password=pulumi.get(__response__, 'service_password'),
|
|
407
|
+
service_user=pulumi.get(__response__, 'service_user'),
|
|
408
|
+
ssh_key_ids=pulumi.get(__response__, 'ssh_key_ids'),
|
|
409
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
410
|
+
user=pulumi.get(__response__, 'user'),
|
|
411
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -109,9 +114,6 @@ def get_billing_consumptions(project_id: Optional[str] = None,
|
|
|
109
114
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
110
115
|
project_id=pulumi.get(__ret__, 'project_id'),
|
|
111
116
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
@_utilities.lift_output_func(get_billing_consumptions)
|
|
115
117
|
def get_billing_consumptions_output(project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
116
118
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBillingConsumptionsResult]:
|
|
117
119
|
"""
|
|
@@ -120,4 +122,13 @@ def get_billing_consumptions_output(project_id: Optional[pulumi.Input[Optional[s
|
|
|
120
122
|
|
|
121
123
|
:param str project_id: `project_id`) The ID of the project the consumption list is associated with.
|
|
122
124
|
"""
|
|
123
|
-
|
|
125
|
+
__args__ = dict()
|
|
126
|
+
__args__['projectId'] = project_id
|
|
127
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
128
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBillingConsumptions:getBillingConsumptions', __args__, opts=opts, typ=GetBillingConsumptionsResult)
|
|
129
|
+
return __ret__.apply(lambda __response__: GetBillingConsumptionsResult(
|
|
130
|
+
consumptions=pulumi.get(__response__, 'consumptions'),
|
|
131
|
+
id=pulumi.get(__response__, 'id'),
|
|
132
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
133
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
134
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -122,9 +127,6 @@ def get_billing_invoices(invoice_type: Optional[str] = None,
|
|
|
122
127
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
123
128
|
started_after=pulumi.get(__ret__, 'started_after'),
|
|
124
129
|
started_before=pulumi.get(__ret__, 'started_before'))
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
@_utilities.lift_output_func(get_billing_invoices)
|
|
128
130
|
def get_billing_invoices_output(invoice_type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
129
131
|
started_after: Optional[pulumi.Input[Optional[str]]] = None,
|
|
130
132
|
started_before: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -137,4 +139,16 @@ def get_billing_invoices_output(invoice_type: Optional[pulumi.Input[Optional[str
|
|
|
137
139
|
:param str started_after: Invoices with a start date that are greater or equal to `started_after` are listed (RFC 3339 format).
|
|
138
140
|
:param str started_before: Invoices with a start date that precedes `started_before` are listed (RFC 3339 format).
|
|
139
141
|
"""
|
|
140
|
-
|
|
142
|
+
__args__ = dict()
|
|
143
|
+
__args__['invoiceType'] = invoice_type
|
|
144
|
+
__args__['startedAfter'] = started_after
|
|
145
|
+
__args__['startedBefore'] = started_before
|
|
146
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
147
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBillingInvoices:getBillingInvoices', __args__, opts=opts, typ=GetBillingInvoicesResult)
|
|
148
|
+
return __ret__.apply(lambda __response__: GetBillingInvoicesResult(
|
|
149
|
+
id=pulumi.get(__response__, 'id'),
|
|
150
|
+
invoice_type=pulumi.get(__response__, 'invoice_type'),
|
|
151
|
+
invoices=pulumi.get(__response__, 'invoices'),
|
|
152
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
153
|
+
started_after=pulumi.get(__response__, 'started_after'),
|
|
154
|
+
started_before=pulumi.get(__response__, 'started_before')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -131,9 +136,6 @@ def get_block_snapshot(name: Optional[str] = None,
|
|
|
131
136
|
tags=pulumi.get(__ret__, 'tags'),
|
|
132
137
|
volume_id=pulumi.get(__ret__, 'volume_id'),
|
|
133
138
|
zone=pulumi.get(__ret__, 'zone'))
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
@_utilities.lift_output_func(get_block_snapshot)
|
|
137
139
|
def get_block_snapshot_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
138
140
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
139
141
|
snapshot_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -150,4 +152,19 @@ def get_block_snapshot_output(name: Optional[pulumi.Input[Optional[str]]] = None
|
|
|
150
152
|
:param str volume_id: The ID of the volume from which the snapshot has been created.
|
|
151
153
|
:param str zone: `zone`) The zone in which the snapshot exists.
|
|
152
154
|
"""
|
|
153
|
-
|
|
155
|
+
__args__ = dict()
|
|
156
|
+
__args__['name'] = name
|
|
157
|
+
__args__['projectId'] = project_id
|
|
158
|
+
__args__['snapshotId'] = snapshot_id
|
|
159
|
+
__args__['volumeId'] = volume_id
|
|
160
|
+
__args__['zone'] = zone
|
|
161
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
162
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBlockSnapshot:getBlockSnapshot', __args__, opts=opts, typ=GetBlockSnapshotResult)
|
|
163
|
+
return __ret__.apply(lambda __response__: GetBlockSnapshotResult(
|
|
164
|
+
id=pulumi.get(__response__, 'id'),
|
|
165
|
+
name=pulumi.get(__response__, 'name'),
|
|
166
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
167
|
+
snapshot_id=pulumi.get(__response__, 'snapshot_id'),
|
|
168
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
169
|
+
volume_id=pulumi.get(__response__, 'volume_id'),
|
|
170
|
+
zone=pulumi.get(__response__, 'zone')))
|