pulumiverse-scaleway 1.20.0a1730699372__py3-none-any.whl → 1.21.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 pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/__init__.py +28 -0
- pulumiverse_scaleway/_inputs.py +353 -15
- pulumiverse_scaleway/baremetal_server.py +141 -12
- pulumiverse_scaleway/container_namespace.py +52 -5
- pulumiverse_scaleway/function_namespace.py +52 -5
- pulumiverse_scaleway/get_baremetal_server.py +12 -1
- pulumiverse_scaleway/get_container_namespace.py +15 -4
- pulumiverse_scaleway/get_function_namespace.py +15 -4
- pulumiverse_scaleway/get_iam_user.py +21 -1
- pulumiverse_scaleway/get_loadbalancer_ip.py +8 -2
- pulumiverse_scaleway/get_mongo_db_instance.py +324 -0
- pulumiverse_scaleway/iam_user.py +48 -1
- pulumiverse_scaleway/inference_deployment.py +822 -0
- pulumiverse_scaleway/instance_server.py +32 -22
- pulumiverse_scaleway/iot_network.py +47 -0
- pulumiverse_scaleway/iot_route.py +2 -2
- pulumiverse_scaleway/ipam_ip.py +91 -0
- pulumiverse_scaleway/loadbalancer.py +38 -72
- pulumiverse_scaleway/mnq_nats_credentials.py +2 -0
- pulumiverse_scaleway/mongo_db_instance.py +907 -0
- pulumiverse_scaleway/mongo_db_snapshot.py +521 -0
- pulumiverse_scaleway/object_bucket.py +9 -9
- pulumiverse_scaleway/outputs.py +337 -14
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/METADATA +27 -19
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/RECORD +28 -24
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/__init__.py
CHANGED
|
@@ -102,6 +102,7 @@ from .get_loadbalancer_ip import *
|
|
|
102
102
|
from .get_marketplace_image import *
|
|
103
103
|
from .get_mnq_sns import *
|
|
104
104
|
from .get_mnq_sqs import *
|
|
105
|
+
from .get_mongo_db_instance import *
|
|
105
106
|
from .get_object_bucket import *
|
|
106
107
|
from .get_object_bucket_policy import *
|
|
107
108
|
from .get_redis_cluster import *
|
|
@@ -130,6 +131,7 @@ from .iam_group_membership import *
|
|
|
130
131
|
from .iam_policy import *
|
|
131
132
|
from .iam_ssh_key import *
|
|
132
133
|
from .iam_user import *
|
|
134
|
+
from .inference_deployment import *
|
|
133
135
|
from .instance_image import *
|
|
134
136
|
from .instance_ip import *
|
|
135
137
|
from .instance_ip_reverse_dns import *
|
|
@@ -166,6 +168,8 @@ from .mnq_sns_topic_subscription import *
|
|
|
166
168
|
from .mnq_sqs import *
|
|
167
169
|
from .mnq_sqs_credentials import *
|
|
168
170
|
from .mnq_sqs_queue import *
|
|
171
|
+
from .mongo_db_instance import *
|
|
172
|
+
from .mongo_db_snapshot import *
|
|
169
173
|
from .object_bucket import *
|
|
170
174
|
from .object_bucket_acl import *
|
|
171
175
|
from .object_bucket_lock_configuration import *
|
|
@@ -533,6 +537,14 @@ _utilities.register(
|
|
|
533
537
|
"scaleway:index/iamUser:IamUser": "IamUser"
|
|
534
538
|
}
|
|
535
539
|
},
|
|
540
|
+
{
|
|
541
|
+
"pkg": "scaleway",
|
|
542
|
+
"mod": "index/inferenceDeployment",
|
|
543
|
+
"fqn": "pulumiverse_scaleway",
|
|
544
|
+
"classes": {
|
|
545
|
+
"scaleway:index/inferenceDeployment:InferenceDeployment": "InferenceDeployment"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
536
548
|
{
|
|
537
549
|
"pkg": "scaleway",
|
|
538
550
|
"mod": "index/instanceImage",
|
|
@@ -821,6 +833,22 @@ _utilities.register(
|
|
|
821
833
|
"scaleway:index/mnqSqsQueue:MnqSqsQueue": "MnqSqsQueue"
|
|
822
834
|
}
|
|
823
835
|
},
|
|
836
|
+
{
|
|
837
|
+
"pkg": "scaleway",
|
|
838
|
+
"mod": "index/mongoDbInstance",
|
|
839
|
+
"fqn": "pulumiverse_scaleway",
|
|
840
|
+
"classes": {
|
|
841
|
+
"scaleway:index/mongoDbInstance:MongoDbInstance": "MongoDbInstance"
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"pkg": "scaleway",
|
|
846
|
+
"mod": "index/mongoDbSnapshot",
|
|
847
|
+
"fqn": "pulumiverse_scaleway",
|
|
848
|
+
"classes": {
|
|
849
|
+
"scaleway:index/mongoDbSnapshot:MongoDbSnapshot": "MongoDbSnapshot"
|
|
850
|
+
}
|
|
851
|
+
},
|
|
824
852
|
{
|
|
825
853
|
"pkg": "scaleway",
|
|
826
854
|
"mod": "index/objectBucket",
|
pulumiverse_scaleway/_inputs.py
CHANGED
|
@@ -67,6 +67,10 @@ __all__ = [
|
|
|
67
67
|
'FunctionTriggerSqsArgsDict',
|
|
68
68
|
'IamPolicyRuleArgs',
|
|
69
69
|
'IamPolicyRuleArgsDict',
|
|
70
|
+
'InferenceDeploymentPrivateEndpointArgs',
|
|
71
|
+
'InferenceDeploymentPrivateEndpointArgsDict',
|
|
72
|
+
'InferenceDeploymentPublicEndpointArgs',
|
|
73
|
+
'InferenceDeploymentPublicEndpointArgsDict',
|
|
70
74
|
'InstanceImageAdditionalVolumeArgs',
|
|
71
75
|
'InstanceImageAdditionalVolumeArgsDict',
|
|
72
76
|
'InstanceSecurityGroupInboundRuleArgs',
|
|
@@ -99,6 +103,8 @@ __all__ = [
|
|
|
99
103
|
'IotRouteRestArgsDict',
|
|
100
104
|
'IotRouteS3Args',
|
|
101
105
|
'IotRouteS3ArgsDict',
|
|
106
|
+
'IpamIpCustomResourceArgs',
|
|
107
|
+
'IpamIpCustomResourceArgsDict',
|
|
102
108
|
'IpamIpResourceArgs',
|
|
103
109
|
'IpamIpResourceArgsDict',
|
|
104
110
|
'IpamIpReverseArgs',
|
|
@@ -149,6 +155,8 @@ __all__ = [
|
|
|
149
155
|
'MnqSnsCredentialsPermissionsArgsDict',
|
|
150
156
|
'MnqSqsCredentialsPermissionsArgs',
|
|
151
157
|
'MnqSqsCredentialsPermissionsArgsDict',
|
|
158
|
+
'MongoDbInstancePublicNetworkArgs',
|
|
159
|
+
'MongoDbInstancePublicNetworkArgsDict',
|
|
152
160
|
'ObjectBucketAclAccessControlPolicyArgs',
|
|
153
161
|
'ObjectBucketAclAccessControlPolicyArgsDict',
|
|
154
162
|
'ObjectBucketAclAccessControlPolicyGrantArgs',
|
|
@@ -560,6 +568,10 @@ if not MYPY:
|
|
|
560
568
|
"""
|
|
561
569
|
The date and time of the creation of the private network.
|
|
562
570
|
"""
|
|
571
|
+
ipam_ip_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
572
|
+
"""
|
|
573
|
+
List of IPAM IP IDs to assign to the server in the requested private network.
|
|
574
|
+
"""
|
|
563
575
|
status: NotRequired[pulumi.Input[str]]
|
|
564
576
|
"""
|
|
565
577
|
The private network status.
|
|
@@ -580,12 +592,14 @@ class BaremetalServerPrivateNetworkArgs:
|
|
|
580
592
|
def __init__(__self__, *,
|
|
581
593
|
id: pulumi.Input[str],
|
|
582
594
|
created_at: Optional[pulumi.Input[str]] = None,
|
|
595
|
+
ipam_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
583
596
|
status: Optional[pulumi.Input[str]] = None,
|
|
584
597
|
updated_at: Optional[pulumi.Input[str]] = None,
|
|
585
598
|
vlan: Optional[pulumi.Input[int]] = None):
|
|
586
599
|
"""
|
|
587
600
|
:param pulumi.Input[str] id: The id of the private network to attach.
|
|
588
601
|
:param pulumi.Input[str] created_at: The date and time of the creation of the private network.
|
|
602
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
|
|
589
603
|
:param pulumi.Input[str] status: The private network status.
|
|
590
604
|
:param pulumi.Input[str] updated_at: The date and time of the last update of the private network.
|
|
591
605
|
:param pulumi.Input[int] vlan: The VLAN ID associated to the private network.
|
|
@@ -593,6 +607,8 @@ class BaremetalServerPrivateNetworkArgs:
|
|
|
593
607
|
pulumi.set(__self__, "id", id)
|
|
594
608
|
if created_at is not None:
|
|
595
609
|
pulumi.set(__self__, "created_at", created_at)
|
|
610
|
+
if ipam_ip_ids is not None:
|
|
611
|
+
pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
|
|
596
612
|
if status is not None:
|
|
597
613
|
pulumi.set(__self__, "status", status)
|
|
598
614
|
if updated_at is not None:
|
|
@@ -624,6 +640,18 @@ class BaremetalServerPrivateNetworkArgs:
|
|
|
624
640
|
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
625
641
|
pulumi.set(self, "created_at", value)
|
|
626
642
|
|
|
643
|
+
@property
|
|
644
|
+
@pulumi.getter(name="ipamIpIds")
|
|
645
|
+
def ipam_ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
646
|
+
"""
|
|
647
|
+
List of IPAM IP IDs to assign to the server in the requested private network.
|
|
648
|
+
"""
|
|
649
|
+
return pulumi.get(self, "ipam_ip_ids")
|
|
650
|
+
|
|
651
|
+
@ipam_ip_ids.setter
|
|
652
|
+
def ipam_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
653
|
+
pulumi.set(self, "ipam_ip_ids", value)
|
|
654
|
+
|
|
627
655
|
@property
|
|
628
656
|
@pulumi.getter
|
|
629
657
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -2633,6 +2661,190 @@ class IamPolicyRuleArgs:
|
|
|
2633
2661
|
pulumi.set(self, "project_ids", value)
|
|
2634
2662
|
|
|
2635
2663
|
|
|
2664
|
+
if not MYPY:
|
|
2665
|
+
class InferenceDeploymentPrivateEndpointArgsDict(TypedDict):
|
|
2666
|
+
disable_auth: NotRequired[pulumi.Input[bool]]
|
|
2667
|
+
"""
|
|
2668
|
+
Disable the authentication on the endpoint.
|
|
2669
|
+
"""
|
|
2670
|
+
id: NotRequired[pulumi.Input[str]]
|
|
2671
|
+
"""
|
|
2672
|
+
(Optional) The id of the public endpoint.
|
|
2673
|
+
"""
|
|
2674
|
+
private_network_id: NotRequired[pulumi.Input[str]]
|
|
2675
|
+
"""
|
|
2676
|
+
The ID of the private network to use.
|
|
2677
|
+
"""
|
|
2678
|
+
url: NotRequired[pulumi.Input[str]]
|
|
2679
|
+
"""
|
|
2680
|
+
(Optional) The URL of the endpoint.
|
|
2681
|
+
"""
|
|
2682
|
+
elif False:
|
|
2683
|
+
InferenceDeploymentPrivateEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
|
2684
|
+
|
|
2685
|
+
@pulumi.input_type
|
|
2686
|
+
class InferenceDeploymentPrivateEndpointArgs:
|
|
2687
|
+
def __init__(__self__, *,
|
|
2688
|
+
disable_auth: Optional[pulumi.Input[bool]] = None,
|
|
2689
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
2690
|
+
private_network_id: Optional[pulumi.Input[str]] = None,
|
|
2691
|
+
url: Optional[pulumi.Input[str]] = None):
|
|
2692
|
+
"""
|
|
2693
|
+
:param pulumi.Input[bool] disable_auth: Disable the authentication on the endpoint.
|
|
2694
|
+
:param pulumi.Input[str] id: (Optional) The id of the public endpoint.
|
|
2695
|
+
:param pulumi.Input[str] private_network_id: The ID of the private network to use.
|
|
2696
|
+
:param pulumi.Input[str] url: (Optional) The URL of the endpoint.
|
|
2697
|
+
"""
|
|
2698
|
+
if disable_auth is not None:
|
|
2699
|
+
pulumi.set(__self__, "disable_auth", disable_auth)
|
|
2700
|
+
if id is not None:
|
|
2701
|
+
pulumi.set(__self__, "id", id)
|
|
2702
|
+
if private_network_id is not None:
|
|
2703
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
2704
|
+
if url is not None:
|
|
2705
|
+
pulumi.set(__self__, "url", url)
|
|
2706
|
+
|
|
2707
|
+
@property
|
|
2708
|
+
@pulumi.getter(name="disableAuth")
|
|
2709
|
+
def disable_auth(self) -> Optional[pulumi.Input[bool]]:
|
|
2710
|
+
"""
|
|
2711
|
+
Disable the authentication on the endpoint.
|
|
2712
|
+
"""
|
|
2713
|
+
return pulumi.get(self, "disable_auth")
|
|
2714
|
+
|
|
2715
|
+
@disable_auth.setter
|
|
2716
|
+
def disable_auth(self, value: Optional[pulumi.Input[bool]]):
|
|
2717
|
+
pulumi.set(self, "disable_auth", value)
|
|
2718
|
+
|
|
2719
|
+
@property
|
|
2720
|
+
@pulumi.getter
|
|
2721
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
|
2722
|
+
"""
|
|
2723
|
+
(Optional) The id of the public endpoint.
|
|
2724
|
+
"""
|
|
2725
|
+
return pulumi.get(self, "id")
|
|
2726
|
+
|
|
2727
|
+
@id.setter
|
|
2728
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
|
2729
|
+
pulumi.set(self, "id", value)
|
|
2730
|
+
|
|
2731
|
+
@property
|
|
2732
|
+
@pulumi.getter(name="privateNetworkId")
|
|
2733
|
+
def private_network_id(self) -> Optional[pulumi.Input[str]]:
|
|
2734
|
+
"""
|
|
2735
|
+
The ID of the private network to use.
|
|
2736
|
+
"""
|
|
2737
|
+
return pulumi.get(self, "private_network_id")
|
|
2738
|
+
|
|
2739
|
+
@private_network_id.setter
|
|
2740
|
+
def private_network_id(self, value: Optional[pulumi.Input[str]]):
|
|
2741
|
+
pulumi.set(self, "private_network_id", value)
|
|
2742
|
+
|
|
2743
|
+
@property
|
|
2744
|
+
@pulumi.getter
|
|
2745
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
|
2746
|
+
"""
|
|
2747
|
+
(Optional) The URL of the endpoint.
|
|
2748
|
+
"""
|
|
2749
|
+
return pulumi.get(self, "url")
|
|
2750
|
+
|
|
2751
|
+
@url.setter
|
|
2752
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
|
2753
|
+
pulumi.set(self, "url", value)
|
|
2754
|
+
|
|
2755
|
+
|
|
2756
|
+
if not MYPY:
|
|
2757
|
+
class InferenceDeploymentPublicEndpointArgsDict(TypedDict):
|
|
2758
|
+
disable_auth: NotRequired[pulumi.Input[bool]]
|
|
2759
|
+
"""
|
|
2760
|
+
Disable the authentication on the endpoint.
|
|
2761
|
+
"""
|
|
2762
|
+
id: NotRequired[pulumi.Input[str]]
|
|
2763
|
+
"""
|
|
2764
|
+
(Optional) The id of the public endpoint.
|
|
2765
|
+
"""
|
|
2766
|
+
is_enabled: NotRequired[pulumi.Input[bool]]
|
|
2767
|
+
"""
|
|
2768
|
+
Enable or disable public endpoint.
|
|
2769
|
+
"""
|
|
2770
|
+
url: NotRequired[pulumi.Input[str]]
|
|
2771
|
+
"""
|
|
2772
|
+
(Optional) The URL of the endpoint.
|
|
2773
|
+
"""
|
|
2774
|
+
elif False:
|
|
2775
|
+
InferenceDeploymentPublicEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
|
2776
|
+
|
|
2777
|
+
@pulumi.input_type
|
|
2778
|
+
class InferenceDeploymentPublicEndpointArgs:
|
|
2779
|
+
def __init__(__self__, *,
|
|
2780
|
+
disable_auth: Optional[pulumi.Input[bool]] = None,
|
|
2781
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
2782
|
+
is_enabled: Optional[pulumi.Input[bool]] = None,
|
|
2783
|
+
url: Optional[pulumi.Input[str]] = None):
|
|
2784
|
+
"""
|
|
2785
|
+
:param pulumi.Input[bool] disable_auth: Disable the authentication on the endpoint.
|
|
2786
|
+
:param pulumi.Input[str] id: (Optional) The id of the public endpoint.
|
|
2787
|
+
:param pulumi.Input[bool] is_enabled: Enable or disable public endpoint.
|
|
2788
|
+
:param pulumi.Input[str] url: (Optional) The URL of the endpoint.
|
|
2789
|
+
"""
|
|
2790
|
+
if disable_auth is not None:
|
|
2791
|
+
pulumi.set(__self__, "disable_auth", disable_auth)
|
|
2792
|
+
if id is not None:
|
|
2793
|
+
pulumi.set(__self__, "id", id)
|
|
2794
|
+
if is_enabled is not None:
|
|
2795
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
|
2796
|
+
if url is not None:
|
|
2797
|
+
pulumi.set(__self__, "url", url)
|
|
2798
|
+
|
|
2799
|
+
@property
|
|
2800
|
+
@pulumi.getter(name="disableAuth")
|
|
2801
|
+
def disable_auth(self) -> Optional[pulumi.Input[bool]]:
|
|
2802
|
+
"""
|
|
2803
|
+
Disable the authentication on the endpoint.
|
|
2804
|
+
"""
|
|
2805
|
+
return pulumi.get(self, "disable_auth")
|
|
2806
|
+
|
|
2807
|
+
@disable_auth.setter
|
|
2808
|
+
def disable_auth(self, value: Optional[pulumi.Input[bool]]):
|
|
2809
|
+
pulumi.set(self, "disable_auth", value)
|
|
2810
|
+
|
|
2811
|
+
@property
|
|
2812
|
+
@pulumi.getter
|
|
2813
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
|
2814
|
+
"""
|
|
2815
|
+
(Optional) The id of the public endpoint.
|
|
2816
|
+
"""
|
|
2817
|
+
return pulumi.get(self, "id")
|
|
2818
|
+
|
|
2819
|
+
@id.setter
|
|
2820
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
|
2821
|
+
pulumi.set(self, "id", value)
|
|
2822
|
+
|
|
2823
|
+
@property
|
|
2824
|
+
@pulumi.getter(name="isEnabled")
|
|
2825
|
+
def is_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
2826
|
+
"""
|
|
2827
|
+
Enable or disable public endpoint.
|
|
2828
|
+
"""
|
|
2829
|
+
return pulumi.get(self, "is_enabled")
|
|
2830
|
+
|
|
2831
|
+
@is_enabled.setter
|
|
2832
|
+
def is_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
2833
|
+
pulumi.set(self, "is_enabled", value)
|
|
2834
|
+
|
|
2835
|
+
@property
|
|
2836
|
+
@pulumi.getter
|
|
2837
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
|
2838
|
+
"""
|
|
2839
|
+
(Optional) The URL of the endpoint.
|
|
2840
|
+
"""
|
|
2841
|
+
return pulumi.get(self, "url")
|
|
2842
|
+
|
|
2843
|
+
@url.setter
|
|
2844
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
|
2845
|
+
pulumi.set(self, "url", value)
|
|
2846
|
+
|
|
2847
|
+
|
|
2636
2848
|
if not MYPY:
|
|
2637
2849
|
class InstanceImageAdditionalVolumeArgsDict(TypedDict):
|
|
2638
2850
|
creation_date: NotRequired[pulumi.Input[str]]
|
|
@@ -4335,6 +4547,57 @@ class IotRouteS3Args:
|
|
|
4335
4547
|
pulumi.set(self, "object_prefix", value)
|
|
4336
4548
|
|
|
4337
4549
|
|
|
4550
|
+
if not MYPY:
|
|
4551
|
+
class IpamIpCustomResourceArgsDict(TypedDict):
|
|
4552
|
+
mac_address: pulumi.Input[str]
|
|
4553
|
+
"""
|
|
4554
|
+
The MAC address of the resource the IP is attached to.
|
|
4555
|
+
"""
|
|
4556
|
+
name: NotRequired[pulumi.Input[str]]
|
|
4557
|
+
"""
|
|
4558
|
+
The name of the resource the IP is attached to.
|
|
4559
|
+
"""
|
|
4560
|
+
elif False:
|
|
4561
|
+
IpamIpCustomResourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
4562
|
+
|
|
4563
|
+
@pulumi.input_type
|
|
4564
|
+
class IpamIpCustomResourceArgs:
|
|
4565
|
+
def __init__(__self__, *,
|
|
4566
|
+
mac_address: pulumi.Input[str],
|
|
4567
|
+
name: Optional[pulumi.Input[str]] = None):
|
|
4568
|
+
"""
|
|
4569
|
+
:param pulumi.Input[str] mac_address: The MAC address of the resource the IP is attached to.
|
|
4570
|
+
:param pulumi.Input[str] name: The name of the resource the IP is attached to.
|
|
4571
|
+
"""
|
|
4572
|
+
pulumi.set(__self__, "mac_address", mac_address)
|
|
4573
|
+
if name is not None:
|
|
4574
|
+
pulumi.set(__self__, "name", name)
|
|
4575
|
+
|
|
4576
|
+
@property
|
|
4577
|
+
@pulumi.getter(name="macAddress")
|
|
4578
|
+
def mac_address(self) -> pulumi.Input[str]:
|
|
4579
|
+
"""
|
|
4580
|
+
The MAC address of the resource the IP is attached to.
|
|
4581
|
+
"""
|
|
4582
|
+
return pulumi.get(self, "mac_address")
|
|
4583
|
+
|
|
4584
|
+
@mac_address.setter
|
|
4585
|
+
def mac_address(self, value: pulumi.Input[str]):
|
|
4586
|
+
pulumi.set(self, "mac_address", value)
|
|
4587
|
+
|
|
4588
|
+
@property
|
|
4589
|
+
@pulumi.getter
|
|
4590
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
|
4591
|
+
"""
|
|
4592
|
+
The name of the resource the IP is attached to.
|
|
4593
|
+
"""
|
|
4594
|
+
return pulumi.get(self, "name")
|
|
4595
|
+
|
|
4596
|
+
@name.setter
|
|
4597
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
|
4598
|
+
pulumi.set(self, "name", value)
|
|
4599
|
+
|
|
4600
|
+
|
|
4338
4601
|
if not MYPY:
|
|
4339
4602
|
class IpamIpResourceArgsDict(TypedDict):
|
|
4340
4603
|
id: NotRequired[pulumi.Input[str]]
|
|
@@ -6200,23 +6463,24 @@ if not MYPY:
|
|
|
6200
6463
|
class LoadbalancerPrivateNetworkArgsDict(TypedDict):
|
|
6201
6464
|
private_network_id: pulumi.Input[str]
|
|
6202
6465
|
"""
|
|
6203
|
-
|
|
6466
|
+
The ID of the Private Network to attach to.
|
|
6467
|
+
- > **Important:** Updates to `private_network` will recreate the attachment.
|
|
6204
6468
|
"""
|
|
6205
6469
|
dhcp_config: NotRequired[pulumi.Input[bool]]
|
|
6206
6470
|
"""
|
|
6207
|
-
|
|
6471
|
+
Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
|
|
6208
6472
|
"""
|
|
6209
6473
|
ipam_ids: NotRequired[pulumi.Input[str]]
|
|
6210
6474
|
"""
|
|
6211
|
-
|
|
6475
|
+
IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
6212
6476
|
"""
|
|
6213
6477
|
static_config: NotRequired[pulumi.Input[str]]
|
|
6214
6478
|
"""
|
|
6215
|
-
|
|
6479
|
+
Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
|
6216
6480
|
"""
|
|
6217
6481
|
status: NotRequired[pulumi.Input[str]]
|
|
6218
6482
|
"""
|
|
6219
|
-
The status of private network connection
|
|
6483
|
+
The status of the private network connection.
|
|
6220
6484
|
"""
|
|
6221
6485
|
zone: NotRequired[pulumi.Input[str]]
|
|
6222
6486
|
"""
|
|
@@ -6235,11 +6499,12 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
6235
6499
|
status: Optional[pulumi.Input[str]] = None,
|
|
6236
6500
|
zone: Optional[pulumi.Input[str]] = None):
|
|
6237
6501
|
"""
|
|
6238
|
-
:param pulumi.Input[str] private_network_id:
|
|
6239
|
-
|
|
6240
|
-
:param pulumi.Input[
|
|
6241
|
-
:param pulumi.Input[str]
|
|
6242
|
-
:param pulumi.Input[str]
|
|
6502
|
+
:param pulumi.Input[str] private_network_id: The ID of the Private Network to attach to.
|
|
6503
|
+
- > **Important:** Updates to `private_network` will recreate the attachment.
|
|
6504
|
+
:param pulumi.Input[bool] dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
|
|
6505
|
+
:param pulumi.Input[str] ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
6506
|
+
:param pulumi.Input[str] static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
|
6507
|
+
:param pulumi.Input[str] status: The status of the private network connection.
|
|
6243
6508
|
:param pulumi.Input[str] zone: `zone`) The zone of the Load Balancer.
|
|
6244
6509
|
"""
|
|
6245
6510
|
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
@@ -6264,7 +6529,8 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
6264
6529
|
@pulumi.getter(name="privateNetworkId")
|
|
6265
6530
|
def private_network_id(self) -> pulumi.Input[str]:
|
|
6266
6531
|
"""
|
|
6267
|
-
|
|
6532
|
+
The ID of the Private Network to attach to.
|
|
6533
|
+
- > **Important:** Updates to `private_network` will recreate the attachment.
|
|
6268
6534
|
"""
|
|
6269
6535
|
return pulumi.get(self, "private_network_id")
|
|
6270
6536
|
|
|
@@ -6277,7 +6543,7 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
6277
6543
|
@_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
|
6278
6544
|
def dhcp_config(self) -> Optional[pulumi.Input[bool]]:
|
|
6279
6545
|
"""
|
|
6280
|
-
|
|
6546
|
+
Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
|
|
6281
6547
|
"""
|
|
6282
6548
|
return pulumi.get(self, "dhcp_config")
|
|
6283
6549
|
|
|
@@ -6289,7 +6555,7 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
6289
6555
|
@pulumi.getter(name="ipamIds")
|
|
6290
6556
|
def ipam_ids(self) -> Optional[pulumi.Input[str]]:
|
|
6291
6557
|
"""
|
|
6292
|
-
|
|
6558
|
+
IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
6293
6559
|
"""
|
|
6294
6560
|
return pulumi.get(self, "ipam_ids")
|
|
6295
6561
|
|
|
@@ -6302,7 +6568,7 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
6302
6568
|
@_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
|
6303
6569
|
def static_config(self) -> Optional[pulumi.Input[str]]:
|
|
6304
6570
|
"""
|
|
6305
|
-
|
|
6571
|
+
Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
|
6306
6572
|
"""
|
|
6307
6573
|
return pulumi.get(self, "static_config")
|
|
6308
6574
|
|
|
@@ -6314,7 +6580,7 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
6314
6580
|
@pulumi.getter
|
|
6315
6581
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
6316
6582
|
"""
|
|
6317
|
-
The status of private network connection
|
|
6583
|
+
The status of the private network connection.
|
|
6318
6584
|
"""
|
|
6319
6585
|
return pulumi.get(self, "status")
|
|
6320
6586
|
|
|
@@ -6479,6 +6745,78 @@ class MnqSqsCredentialsPermissionsArgs:
|
|
|
6479
6745
|
pulumi.set(self, "can_receive", value)
|
|
6480
6746
|
|
|
6481
6747
|
|
|
6748
|
+
if not MYPY:
|
|
6749
|
+
class MongoDbInstancePublicNetworkArgsDict(TypedDict):
|
|
6750
|
+
dns_record: NotRequired[pulumi.Input[str]]
|
|
6751
|
+
"""
|
|
6752
|
+
The DNS record of your endpoint
|
|
6753
|
+
"""
|
|
6754
|
+
id: NotRequired[pulumi.Input[str]]
|
|
6755
|
+
"""
|
|
6756
|
+
The ID of the MongoDB® instance.
|
|
6757
|
+
"""
|
|
6758
|
+
port: NotRequired[pulumi.Input[int]]
|
|
6759
|
+
"""
|
|
6760
|
+
TCP port of the endpoint
|
|
6761
|
+
"""
|
|
6762
|
+
elif False:
|
|
6763
|
+
MongoDbInstancePublicNetworkArgsDict: TypeAlias = Mapping[str, Any]
|
|
6764
|
+
|
|
6765
|
+
@pulumi.input_type
|
|
6766
|
+
class MongoDbInstancePublicNetworkArgs:
|
|
6767
|
+
def __init__(__self__, *,
|
|
6768
|
+
dns_record: Optional[pulumi.Input[str]] = None,
|
|
6769
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
6770
|
+
port: Optional[pulumi.Input[int]] = None):
|
|
6771
|
+
"""
|
|
6772
|
+
:param pulumi.Input[str] dns_record: The DNS record of your endpoint
|
|
6773
|
+
:param pulumi.Input[str] id: The ID of the MongoDB® instance.
|
|
6774
|
+
:param pulumi.Input[int] port: TCP port of the endpoint
|
|
6775
|
+
"""
|
|
6776
|
+
if dns_record is not None:
|
|
6777
|
+
pulumi.set(__self__, "dns_record", dns_record)
|
|
6778
|
+
if id is not None:
|
|
6779
|
+
pulumi.set(__self__, "id", id)
|
|
6780
|
+
if port is not None:
|
|
6781
|
+
pulumi.set(__self__, "port", port)
|
|
6782
|
+
|
|
6783
|
+
@property
|
|
6784
|
+
@pulumi.getter(name="dnsRecord")
|
|
6785
|
+
def dns_record(self) -> Optional[pulumi.Input[str]]:
|
|
6786
|
+
"""
|
|
6787
|
+
The DNS record of your endpoint
|
|
6788
|
+
"""
|
|
6789
|
+
return pulumi.get(self, "dns_record")
|
|
6790
|
+
|
|
6791
|
+
@dns_record.setter
|
|
6792
|
+
def dns_record(self, value: Optional[pulumi.Input[str]]):
|
|
6793
|
+
pulumi.set(self, "dns_record", value)
|
|
6794
|
+
|
|
6795
|
+
@property
|
|
6796
|
+
@pulumi.getter
|
|
6797
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
|
6798
|
+
"""
|
|
6799
|
+
The ID of the MongoDB® instance.
|
|
6800
|
+
"""
|
|
6801
|
+
return pulumi.get(self, "id")
|
|
6802
|
+
|
|
6803
|
+
@id.setter
|
|
6804
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
|
6805
|
+
pulumi.set(self, "id", value)
|
|
6806
|
+
|
|
6807
|
+
@property
|
|
6808
|
+
@pulumi.getter
|
|
6809
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
6810
|
+
"""
|
|
6811
|
+
TCP port of the endpoint
|
|
6812
|
+
"""
|
|
6813
|
+
return pulumi.get(self, "port")
|
|
6814
|
+
|
|
6815
|
+
@port.setter
|
|
6816
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
6817
|
+
pulumi.set(self, "port", value)
|
|
6818
|
+
|
|
6819
|
+
|
|
6482
6820
|
if not MYPY:
|
|
6483
6821
|
class ObjectBucketAclAccessControlPolicyArgsDict(TypedDict):
|
|
6484
6822
|
owner: pulumi.Input['ObjectBucketAclAccessControlPolicyOwnerArgsDict']
|