pulumiverse-scaleway 1.33.0a1755026511__py3-none-any.whl → 1.34.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.
- pulumiverse_scaleway/__init__.py +8 -0
- pulumiverse_scaleway/_inputs.py +235 -34
- pulumiverse_scaleway/cockpit.py +14 -0
- pulumiverse_scaleway/container_namespace.py +16 -7
- pulumiverse_scaleway/containers/namespace.py +16 -7
- pulumiverse_scaleway/database_user.py +83 -11
- pulumiverse_scaleway/databases/user.py +83 -11
- pulumiverse_scaleway/elasticmetal/outputs.py +4 -0
- pulumiverse_scaleway/function_namespace.py +16 -7
- pulumiverse_scaleway/functions/namespace.py +16 -7
- pulumiverse_scaleway/get_mongo_db_instance.py +34 -1
- pulumiverse_scaleway/hosting/_inputs.py +42 -0
- pulumiverse_scaleway/hosting/outputs.py +84 -0
- pulumiverse_scaleway/instance/_inputs.py +107 -13
- pulumiverse_scaleway/instance/outputs.py +187 -10
- pulumiverse_scaleway/instance/security_group_rules.py +16 -16
- pulumiverse_scaleway/instance/snapshot.py +26 -27
- pulumiverse_scaleway/instance_security_group_rules.py +16 -16
- pulumiverse_scaleway/instance_snapshot.py +26 -27
- pulumiverse_scaleway/loadbalancer_backend.py +39 -0
- pulumiverse_scaleway/loadbalancers/backend.py +39 -0
- pulumiverse_scaleway/loadbalancers/outputs.py +16 -0
- pulumiverse_scaleway/mnq/_inputs.py +52 -0
- pulumiverse_scaleway/mnq/outputs.py +47 -0
- pulumiverse_scaleway/mnq/sqs_queue.py +159 -0
- pulumiverse_scaleway/mnq_sqs_queue.py +159 -0
- pulumiverse_scaleway/mongo_db_instance.py +171 -23
- pulumiverse_scaleway/mongo_db_snapshot.py +2 -2
- pulumiverse_scaleway/mongodb/__init__.py +1 -0
- pulumiverse_scaleway/mongodb/_inputs.py +73 -0
- pulumiverse_scaleway/mongodb/get_instance.py +34 -1
- pulumiverse_scaleway/mongodb/instance.py +171 -23
- pulumiverse_scaleway/mongodb/outputs.py +62 -0
- pulumiverse_scaleway/mongodb/snapshot.py +2 -2
- pulumiverse_scaleway/mongodb/user.py +508 -0
- pulumiverse_scaleway/network/outputs.py +4 -0
- pulumiverse_scaleway/object/_inputs.py +14 -0
- pulumiverse_scaleway/object/bucket.py +13 -0
- pulumiverse_scaleway/object/outputs.py +30 -0
- pulumiverse_scaleway/object_bucket.py +13 -0
- pulumiverse_scaleway/observability/__init__.py +1 -0
- pulumiverse_scaleway/observability/cockpit.py +14 -0
- pulumiverse_scaleway/observability/get_sources.py +376 -0
- pulumiverse_scaleway/observability/outputs.py +140 -0
- pulumiverse_scaleway/outputs.py +387 -26
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/secret.py +8 -0
- pulumiverse_scaleway/secrets/secret.py +8 -0
- {pulumiverse_scaleway-1.33.0a1755026511.dist-info → pulumiverse_scaleway-1.34.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.33.0a1755026511.dist-info → pulumiverse_scaleway-1.34.0.dist-info}/RECORD +52 -50
- {pulumiverse_scaleway-1.33.0a1755026511.dist-info → pulumiverse_scaleway-1.34.0.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.33.0a1755026511.dist-info → pulumiverse_scaleway-1.34.0.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/outputs.py
CHANGED
@@ -111,6 +111,7 @@ __all__ = [
|
|
111
111
|
'LoadbalancerPrivateNetwork',
|
112
112
|
'MnqSnsCredentialsPermissions',
|
113
113
|
'MnqSqsCredentialsPermissions',
|
114
|
+
'MnqSqsQueueDeadLetterQueue',
|
114
115
|
'MongoDbInstancePrivateIp',
|
115
116
|
'MongoDbInstancePrivateNetwork',
|
116
117
|
'MongoDbInstancePublicNetwork',
|
@@ -181,6 +182,7 @@ __all__ = [
|
|
181
182
|
'GetInstanceServerPublicIpResult',
|
182
183
|
'GetInstanceServerRootVolumeResult',
|
183
184
|
'GetInstanceServersServerResult',
|
185
|
+
'GetInstanceServersServerPrivateIpResult',
|
184
186
|
'GetInstanceServersServerPublicIpResult',
|
185
187
|
'GetInstanceSnapshotImportResult',
|
186
188
|
'GetIotDeviceCertificateResult',
|
@@ -3789,34 +3791,111 @@ class InstanceServerPrivateNetwork(dict):
|
|
3789
3791
|
|
3790
3792
|
@pulumi.output_type
|
3791
3793
|
class InstanceServerPublicIp(dict):
|
3794
|
+
@staticmethod
|
3795
|
+
def __key_warning(key: str):
|
3796
|
+
suggest = None
|
3797
|
+
if key == "provisioningMode":
|
3798
|
+
suggest = "provisioning_mode"
|
3799
|
+
|
3800
|
+
if suggest:
|
3801
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceServerPublicIp. Access the value via the '{suggest}' property getter instead.")
|
3802
|
+
|
3803
|
+
def __getitem__(self, key: str) -> Any:
|
3804
|
+
InstanceServerPublicIp.__key_warning(key)
|
3805
|
+
return super().__getitem__(key)
|
3806
|
+
|
3807
|
+
def get(self, key: str, default = None) -> Any:
|
3808
|
+
InstanceServerPublicIp.__key_warning(key)
|
3809
|
+
return super().get(key, default)
|
3810
|
+
|
3792
3811
|
def __init__(__self__, *,
|
3793
3812
|
address: Optional[builtins.str] = None,
|
3794
|
-
|
3813
|
+
dynamic: Optional[builtins.bool] = None,
|
3814
|
+
family: Optional[builtins.str] = None,
|
3815
|
+
gateway: Optional[builtins.str] = None,
|
3816
|
+
id: Optional[builtins.str] = None,
|
3817
|
+
netmask: Optional[builtins.str] = None,
|
3818
|
+
provisioning_mode: Optional[builtins.str] = None):
|
3795
3819
|
"""
|
3796
|
-
:param builtins.str address: The address of the IP
|
3797
|
-
:param builtins.
|
3820
|
+
:param builtins.str address: The address of the IP.
|
3821
|
+
:param builtins.bool dynamic: Whether the IP is dynamic.
|
3822
|
+
:param builtins.str family: The IP address' family.
|
3823
|
+
:param builtins.str gateway: The IP of the Gateway associated with the IP.
|
3824
|
+
:param builtins.str id: The ID of the IP.
|
3825
|
+
:param builtins.str netmask: The CIDR netmask of the IP.
|
3826
|
+
:param builtins.str provisioning_mode: The provisioning mode of the IP
|
3798
3827
|
"""
|
3799
3828
|
if address is not None:
|
3800
3829
|
pulumi.set(__self__, "address", address)
|
3830
|
+
if dynamic is not None:
|
3831
|
+
pulumi.set(__self__, "dynamic", dynamic)
|
3832
|
+
if family is not None:
|
3833
|
+
pulumi.set(__self__, "family", family)
|
3834
|
+
if gateway is not None:
|
3835
|
+
pulumi.set(__self__, "gateway", gateway)
|
3801
3836
|
if id is not None:
|
3802
3837
|
pulumi.set(__self__, "id", id)
|
3838
|
+
if netmask is not None:
|
3839
|
+
pulumi.set(__self__, "netmask", netmask)
|
3840
|
+
if provisioning_mode is not None:
|
3841
|
+
pulumi.set(__self__, "provisioning_mode", provisioning_mode)
|
3803
3842
|
|
3804
3843
|
@property
|
3805
3844
|
@pulumi.getter
|
3806
3845
|
def address(self) -> Optional[builtins.str]:
|
3807
3846
|
"""
|
3808
|
-
The address of the IP
|
3847
|
+
The address of the IP.
|
3809
3848
|
"""
|
3810
3849
|
return pulumi.get(self, "address")
|
3811
3850
|
|
3851
|
+
@property
|
3852
|
+
@pulumi.getter
|
3853
|
+
def dynamic(self) -> Optional[builtins.bool]:
|
3854
|
+
"""
|
3855
|
+
Whether the IP is dynamic.
|
3856
|
+
"""
|
3857
|
+
return pulumi.get(self, "dynamic")
|
3858
|
+
|
3859
|
+
@property
|
3860
|
+
@pulumi.getter
|
3861
|
+
def family(self) -> Optional[builtins.str]:
|
3862
|
+
"""
|
3863
|
+
The IP address' family.
|
3864
|
+
"""
|
3865
|
+
return pulumi.get(self, "family")
|
3866
|
+
|
3867
|
+
@property
|
3868
|
+
@pulumi.getter
|
3869
|
+
def gateway(self) -> Optional[builtins.str]:
|
3870
|
+
"""
|
3871
|
+
The IP of the Gateway associated with the IP.
|
3872
|
+
"""
|
3873
|
+
return pulumi.get(self, "gateway")
|
3874
|
+
|
3812
3875
|
@property
|
3813
3876
|
@pulumi.getter
|
3814
3877
|
def id(self) -> Optional[builtins.str]:
|
3815
3878
|
"""
|
3816
|
-
The ID of the IP
|
3879
|
+
The ID of the IP.
|
3817
3880
|
"""
|
3818
3881
|
return pulumi.get(self, "id")
|
3819
3882
|
|
3883
|
+
@property
|
3884
|
+
@pulumi.getter
|
3885
|
+
def netmask(self) -> Optional[builtins.str]:
|
3886
|
+
"""
|
3887
|
+
The CIDR netmask of the IP.
|
3888
|
+
"""
|
3889
|
+
return pulumi.get(self, "netmask")
|
3890
|
+
|
3891
|
+
@property
|
3892
|
+
@pulumi.getter(name="provisioningMode")
|
3893
|
+
def provisioning_mode(self) -> Optional[builtins.str]:
|
3894
|
+
"""
|
3895
|
+
The provisioning mode of the IP
|
3896
|
+
"""
|
3897
|
+
return pulumi.get(self, "provisioning_mode")
|
3898
|
+
|
3820
3899
|
|
3821
3900
|
@pulumi.output_type
|
3822
3901
|
class InstanceServerRootVolume(dict):
|
@@ -3952,8 +4031,6 @@ class InstanceSnapshotImport(dict):
|
|
3952
4031
|
"""
|
3953
4032
|
:param builtins.str bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
|
3954
4033
|
:param builtins.str key: Key of the object to import
|
3955
|
-
|
3956
|
-
> **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
|
3957
4034
|
"""
|
3958
4035
|
pulumi.set(__self__, "bucket", bucket)
|
3959
4036
|
pulumi.set(__self__, "key", key)
|
@@ -3971,8 +4048,6 @@ class InstanceSnapshotImport(dict):
|
|
3971
4048
|
def key(self) -> builtins.str:
|
3972
4049
|
"""
|
3973
4050
|
Key of the object to import
|
3974
|
-
|
3975
|
-
> **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
|
3976
4051
|
"""
|
3977
4052
|
return pulumi.get(self, "key")
|
3978
4053
|
|
@@ -4628,10 +4703,10 @@ class KeyManagerKeyRotationPolicy(dict):
|
|
4628
4703
|
@staticmethod
|
4629
4704
|
def __key_warning(key: str):
|
4630
4705
|
suggest = None
|
4631
|
-
if key == "
|
4632
|
-
suggest = "next_rotation_at"
|
4633
|
-
elif key == "rotationPeriod":
|
4706
|
+
if key == "rotationPeriod":
|
4634
4707
|
suggest = "rotation_period"
|
4708
|
+
elif key == "nextRotationAt":
|
4709
|
+
suggest = "next_rotation_at"
|
4635
4710
|
|
4636
4711
|
if suggest:
|
4637
4712
|
pulumi.log.warn(f"Key '{key}' not found in KeyManagerKeyRotationPolicy. Access the value via the '{suggest}' property getter instead.")
|
@@ -4645,32 +4720,31 @@ class KeyManagerKeyRotationPolicy(dict):
|
|
4645
4720
|
return super().get(key, default)
|
4646
4721
|
|
4647
4722
|
def __init__(__self__, *,
|
4648
|
-
|
4649
|
-
|
4723
|
+
rotation_period: builtins.str,
|
4724
|
+
next_rotation_at: Optional[builtins.str] = None):
|
4650
4725
|
"""
|
4651
|
-
:param builtins.str next_rotation_at: The date and time of the next scheduled rotation.
|
4652
4726
|
:param builtins.str rotation_period: – The period between key rotations (e.g., `"720h"` for 30 days).
|
4727
|
+
:param builtins.str next_rotation_at: The date and time of the next scheduled rotation.
|
4653
4728
|
"""
|
4729
|
+
pulumi.set(__self__, "rotation_period", rotation_period)
|
4654
4730
|
if next_rotation_at is not None:
|
4655
4731
|
pulumi.set(__self__, "next_rotation_at", next_rotation_at)
|
4656
|
-
if rotation_period is not None:
|
4657
|
-
pulumi.set(__self__, "rotation_period", rotation_period)
|
4658
4732
|
|
4659
4733
|
@property
|
4660
|
-
@pulumi.getter(name="
|
4661
|
-
def
|
4734
|
+
@pulumi.getter(name="rotationPeriod")
|
4735
|
+
def rotation_period(self) -> builtins.str:
|
4662
4736
|
"""
|
4663
|
-
The
|
4737
|
+
– The period between key rotations (e.g., `"720h"` for 30 days).
|
4664
4738
|
"""
|
4665
|
-
return pulumi.get(self, "
|
4739
|
+
return pulumi.get(self, "rotation_period")
|
4666
4740
|
|
4667
4741
|
@property
|
4668
|
-
@pulumi.getter(name="
|
4669
|
-
def
|
4742
|
+
@pulumi.getter(name="nextRotationAt")
|
4743
|
+
def next_rotation_at(self) -> Optional[builtins.str]:
|
4670
4744
|
"""
|
4671
|
-
|
4745
|
+
The date and time of the next scheduled rotation.
|
4672
4746
|
"""
|
4673
|
-
return pulumi.get(self, "
|
4747
|
+
return pulumi.get(self, "next_rotation_at")
|
4674
4748
|
|
4675
4749
|
|
4676
4750
|
@pulumi.output_type
|
@@ -6241,6 +6315,52 @@ class MnqSqsCredentialsPermissions(dict):
|
|
6241
6315
|
return pulumi.get(self, "can_receive")
|
6242
6316
|
|
6243
6317
|
|
6318
|
+
@pulumi.output_type
|
6319
|
+
class MnqSqsQueueDeadLetterQueue(dict):
|
6320
|
+
@staticmethod
|
6321
|
+
def __key_warning(key: str):
|
6322
|
+
suggest = None
|
6323
|
+
if key == "maxReceiveCount":
|
6324
|
+
suggest = "max_receive_count"
|
6325
|
+
|
6326
|
+
if suggest:
|
6327
|
+
pulumi.log.warn(f"Key '{key}' not found in MnqSqsQueueDeadLetterQueue. Access the value via the '{suggest}' property getter instead.")
|
6328
|
+
|
6329
|
+
def __getitem__(self, key: str) -> Any:
|
6330
|
+
MnqSqsQueueDeadLetterQueue.__key_warning(key)
|
6331
|
+
return super().__getitem__(key)
|
6332
|
+
|
6333
|
+
def get(self, key: str, default = None) -> Any:
|
6334
|
+
MnqSqsQueueDeadLetterQueue.__key_warning(key)
|
6335
|
+
return super().get(key, default)
|
6336
|
+
|
6337
|
+
def __init__(__self__, *,
|
6338
|
+
id: builtins.str,
|
6339
|
+
max_receive_count: builtins.int):
|
6340
|
+
"""
|
6341
|
+
:param builtins.str id: The ID of the queue with format `{region/{project-id}/{queue-name}`
|
6342
|
+
:param builtins.int max_receive_count: The number of times a message is delivered to the source queue before being sent to the dead-letter queue. Must be between 1 and 1,000.
|
6343
|
+
"""
|
6344
|
+
pulumi.set(__self__, "id", id)
|
6345
|
+
pulumi.set(__self__, "max_receive_count", max_receive_count)
|
6346
|
+
|
6347
|
+
@property
|
6348
|
+
@pulumi.getter
|
6349
|
+
def id(self) -> builtins.str:
|
6350
|
+
"""
|
6351
|
+
The ID of the queue with format `{region/{project-id}/{queue-name}`
|
6352
|
+
"""
|
6353
|
+
return pulumi.get(self, "id")
|
6354
|
+
|
6355
|
+
@property
|
6356
|
+
@pulumi.getter(name="maxReceiveCount")
|
6357
|
+
def max_receive_count(self) -> builtins.int:
|
6358
|
+
"""
|
6359
|
+
The number of times a message is delivered to the source queue before being sent to the dead-letter queue. Must be between 1 and 1,000.
|
6360
|
+
"""
|
6361
|
+
return pulumi.get(self, "max_receive_count")
|
6362
|
+
|
6363
|
+
|
6244
6364
|
@pulumi.output_type
|
6245
6365
|
class MongoDbInstancePrivateIp(dict):
|
6246
6366
|
def __init__(__self__, *,
|
@@ -6424,6 +6544,7 @@ class ObjectBucketAclAccessControlPolicy(dict):
|
|
6424
6544
|
grants: Optional[Sequence['outputs.ObjectBucketAclAccessControlPolicyGrant']] = None):
|
6425
6545
|
"""
|
6426
6546
|
:param 'ObjectBucketAclAccessControlPolicyOwnerArgs' owner: Configuration block of the bucket project owner's display organization ID.
|
6547
|
+
:param Sequence['ObjectBucketAclAccessControlPolicyGrantArgs'] grants: Grant
|
6427
6548
|
"""
|
6428
6549
|
pulumi.set(__self__, "owner", owner)
|
6429
6550
|
if grants is not None:
|
@@ -6440,6 +6561,9 @@ class ObjectBucketAclAccessControlPolicy(dict):
|
|
6440
6561
|
@property
|
6441
6562
|
@pulumi.getter
|
6442
6563
|
def grants(self) -> Optional[Sequence['outputs.ObjectBucketAclAccessControlPolicyGrant']]:
|
6564
|
+
"""
|
6565
|
+
Grant
|
6566
|
+
"""
|
6443
6567
|
return pulumi.get(self, "grants")
|
6444
6568
|
|
6445
6569
|
|
@@ -6498,6 +6622,7 @@ class ObjectBucketAclAccessControlPolicyGrantGrantee(dict):
|
|
6498
6622
|
type: Optional[builtins.str] = None,
|
6499
6623
|
uri: Optional[builtins.str] = None):
|
6500
6624
|
"""
|
6625
|
+
:param builtins.str display_name: Display name of the grantee to grant access to.
|
6501
6626
|
:param builtins.str id: The `region`, `bucket` and `acl` separated by (`/`).
|
6502
6627
|
:param builtins.str type: Type of grantee. Valid values: `CanonicalUser`, `Group`
|
6503
6628
|
:param builtins.str uri: The uri of the grantee if you are granting permissions to a predefined group.
|
@@ -6514,6 +6639,9 @@ class ObjectBucketAclAccessControlPolicyGrantGrantee(dict):
|
|
6514
6639
|
@property
|
6515
6640
|
@pulumi.getter(name="displayName")
|
6516
6641
|
def display_name(self) -> Optional[builtins.str]:
|
6642
|
+
"""
|
6643
|
+
Display name of the grantee to grant access to.
|
6644
|
+
"""
|
6517
6645
|
return pulumi.get(self, "display_name")
|
6518
6646
|
|
6519
6647
|
@property
|
@@ -7888,6 +8016,8 @@ class WebhostingNameServer(dict):
|
|
7888
8016
|
is_default: Optional[builtins.bool] = None,
|
7889
8017
|
status: Optional[builtins.str] = None):
|
7890
8018
|
"""
|
8019
|
+
:param builtins.str hostname: Hostname of the server
|
8020
|
+
:param builtins.bool is_default: Whether or not the webhosting is the default one
|
7891
8021
|
:param builtins.str status: The hosting status.
|
7892
8022
|
"""
|
7893
8023
|
if hostname is not None:
|
@@ -7900,11 +8030,17 @@ class WebhostingNameServer(dict):
|
|
7900
8030
|
@property
|
7901
8031
|
@pulumi.getter
|
7902
8032
|
def hostname(self) -> Optional[builtins.str]:
|
8033
|
+
"""
|
8034
|
+
Hostname of the server
|
8035
|
+
"""
|
7903
8036
|
return pulumi.get(self, "hostname")
|
7904
8037
|
|
7905
8038
|
@property
|
7906
8039
|
@pulumi.getter(name="isDefault")
|
7907
8040
|
def is_default(self) -> Optional[builtins.bool]:
|
8041
|
+
"""
|
8042
|
+
Whether or not the webhosting is the default one
|
8043
|
+
"""
|
7908
8044
|
return pulumi.get(self, "is_default")
|
7909
8045
|
|
7910
8046
|
@property
|
@@ -7958,7 +8094,11 @@ class WebhostingRecord(dict):
|
|
7958
8094
|
value: Optional[builtins.str] = None):
|
7959
8095
|
"""
|
7960
8096
|
:param builtins.str name: The option name.
|
8097
|
+
:param builtins.int priority: Priority of DNS records associated with the webhosting.
|
7961
8098
|
:param builtins.str status: The hosting status.
|
8099
|
+
:param builtins.int ttl: Time to live in seconds of the record
|
8100
|
+
:param builtins.str type: Type of the DNS record
|
8101
|
+
:param builtins.str value: Value of the DNS record
|
7962
8102
|
"""
|
7963
8103
|
if name is not None:
|
7964
8104
|
pulumi.set(__self__, "name", name)
|
@@ -7984,6 +8124,9 @@ class WebhostingRecord(dict):
|
|
7984
8124
|
@property
|
7985
8125
|
@pulumi.getter
|
7986
8126
|
def priority(self) -> Optional[builtins.int]:
|
8127
|
+
"""
|
8128
|
+
Priority of DNS records associated with the webhosting.
|
8129
|
+
"""
|
7987
8130
|
return pulumi.get(self, "priority")
|
7988
8131
|
|
7989
8132
|
@property
|
@@ -7997,16 +8140,25 @@ class WebhostingRecord(dict):
|
|
7997
8140
|
@property
|
7998
8141
|
@pulumi.getter
|
7999
8142
|
def ttl(self) -> Optional[builtins.int]:
|
8143
|
+
"""
|
8144
|
+
Time to live in seconds of the record
|
8145
|
+
"""
|
8000
8146
|
return pulumi.get(self, "ttl")
|
8001
8147
|
|
8002
8148
|
@property
|
8003
8149
|
@pulumi.getter
|
8004
8150
|
def type(self) -> Optional[builtins.str]:
|
8151
|
+
"""
|
8152
|
+
Type of the DNS record
|
8153
|
+
"""
|
8005
8154
|
return pulumi.get(self, "type")
|
8006
8155
|
|
8007
8156
|
@property
|
8008
8157
|
@pulumi.getter
|
8009
8158
|
def value(self) -> Optional[builtins.str]:
|
8159
|
+
"""
|
8160
|
+
Value of the DNS record
|
8161
|
+
"""
|
8010
8162
|
return pulumi.get(self, "value")
|
8011
8163
|
|
8012
8164
|
|
@@ -9453,6 +9605,7 @@ class GetFlexibleIpsIpResult(dict):
|
|
9453
9605
|
:param builtins.str created_at: The date on which the flexible IP was created (RFC 3339 format).
|
9454
9606
|
:param builtins.str description: The description of the flexible IP.
|
9455
9607
|
:param builtins.str id: The MAC address ID.
|
9608
|
+
:param builtins.str ip_address: IP address of the flexible IP
|
9456
9609
|
:param Sequence['GetFlexibleIpsIpMacAddressArgs'] mac_addresses: The MAC address of the Virtual MAC.
|
9457
9610
|
:param builtins.str organization_id: (Defaults to provider `organization_id`) The ID of the organization the IP is in.
|
9458
9611
|
:param builtins.str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
@@ -9502,6 +9655,9 @@ class GetFlexibleIpsIpResult(dict):
|
|
9502
9655
|
@property
|
9503
9656
|
@pulumi.getter(name="ipAddress")
|
9504
9657
|
def ip_address(self) -> builtins.str:
|
9658
|
+
"""
|
9659
|
+
IP address of the flexible IP
|
9660
|
+
"""
|
9505
9661
|
return pulumi.get(self, "ip_address")
|
9506
9662
|
|
9507
9663
|
@property
|
@@ -9931,13 +10087,28 @@ class GetInstanceServerPrivateNetworkResult(dict):
|
|
9931
10087
|
class GetInstanceServerPublicIpResult(dict):
|
9932
10088
|
def __init__(__self__, *,
|
9933
10089
|
address: builtins.str,
|
9934
|
-
|
10090
|
+
dynamic: builtins.bool,
|
10091
|
+
family: builtins.str,
|
10092
|
+
gateway: builtins.str,
|
10093
|
+
id: builtins.str,
|
10094
|
+
netmask: builtins.str,
|
10095
|
+
provisioning_mode: builtins.str):
|
9935
10096
|
"""
|
9936
10097
|
:param builtins.str address: The address of the IP
|
10098
|
+
:param builtins.bool dynamic: Whether the IP is dynamic
|
10099
|
+
:param builtins.str family: IP address family (inet or inet6)
|
10100
|
+
:param builtins.str gateway: Gateway's IP address
|
9937
10101
|
:param builtins.str id: The ID of the IP
|
10102
|
+
:param builtins.str netmask: CIDR netmask
|
10103
|
+
:param builtins.str provisioning_mode: Provisioning mode of the IP address
|
9938
10104
|
"""
|
9939
10105
|
pulumi.set(__self__, "address", address)
|
10106
|
+
pulumi.set(__self__, "dynamic", dynamic)
|
10107
|
+
pulumi.set(__self__, "family", family)
|
10108
|
+
pulumi.set(__self__, "gateway", gateway)
|
9940
10109
|
pulumi.set(__self__, "id", id)
|
10110
|
+
pulumi.set(__self__, "netmask", netmask)
|
10111
|
+
pulumi.set(__self__, "provisioning_mode", provisioning_mode)
|
9941
10112
|
|
9942
10113
|
@property
|
9943
10114
|
@pulumi.getter
|
@@ -9947,6 +10118,30 @@ class GetInstanceServerPublicIpResult(dict):
|
|
9947
10118
|
"""
|
9948
10119
|
return pulumi.get(self, "address")
|
9949
10120
|
|
10121
|
+
@property
|
10122
|
+
@pulumi.getter
|
10123
|
+
def dynamic(self) -> builtins.bool:
|
10124
|
+
"""
|
10125
|
+
Whether the IP is dynamic
|
10126
|
+
"""
|
10127
|
+
return pulumi.get(self, "dynamic")
|
10128
|
+
|
10129
|
+
@property
|
10130
|
+
@pulumi.getter
|
10131
|
+
def family(self) -> builtins.str:
|
10132
|
+
"""
|
10133
|
+
IP address family (inet or inet6)
|
10134
|
+
"""
|
10135
|
+
return pulumi.get(self, "family")
|
10136
|
+
|
10137
|
+
@property
|
10138
|
+
@pulumi.getter
|
10139
|
+
def gateway(self) -> builtins.str:
|
10140
|
+
"""
|
10141
|
+
Gateway's IP address
|
10142
|
+
"""
|
10143
|
+
return pulumi.get(self, "gateway")
|
10144
|
+
|
9950
10145
|
@property
|
9951
10146
|
@pulumi.getter
|
9952
10147
|
def id(self) -> builtins.str:
|
@@ -9955,6 +10150,22 @@ class GetInstanceServerPublicIpResult(dict):
|
|
9955
10150
|
"""
|
9956
10151
|
return pulumi.get(self, "id")
|
9957
10152
|
|
10153
|
+
@property
|
10154
|
+
@pulumi.getter
|
10155
|
+
def netmask(self) -> builtins.str:
|
10156
|
+
"""
|
10157
|
+
CIDR netmask
|
10158
|
+
"""
|
10159
|
+
return pulumi.get(self, "netmask")
|
10160
|
+
|
10161
|
+
@property
|
10162
|
+
@pulumi.getter(name="provisioningMode")
|
10163
|
+
def provisioning_mode(self) -> builtins.str:
|
10164
|
+
"""
|
10165
|
+
Provisioning mode of the IP address
|
10166
|
+
"""
|
10167
|
+
return pulumi.get(self, "provisioning_mode")
|
10168
|
+
|
9958
10169
|
|
9959
10170
|
@pulumi.output_type
|
9960
10171
|
class GetInstanceServerRootVolumeResult(dict):
|
@@ -10057,6 +10268,7 @@ class GetInstanceServersServerResult(dict):
|
|
10057
10268
|
placement_group_id: builtins.str,
|
10058
10269
|
placement_group_policy_respected: builtins.bool,
|
10059
10270
|
private_ip: builtins.str,
|
10271
|
+
private_ips: Sequence['outputs.GetInstanceServersServerPrivateIpResult'],
|
10060
10272
|
project_id: builtins.str,
|
10061
10273
|
public_ip: builtins.str,
|
10062
10274
|
public_ips: Sequence['outputs.GetInstanceServersServerPublicIpResult'],
|
@@ -10067,6 +10279,7 @@ class GetInstanceServersServerResult(dict):
|
|
10067
10279
|
zone: builtins.str):
|
10068
10280
|
"""
|
10069
10281
|
:param builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
|
10282
|
+
:param builtins.str bootscript_id: UUID of the bootscript
|
10070
10283
|
:param builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
|
10071
10284
|
:param builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
|
10072
10285
|
:param builtins.str id: The ID of the IP
|
@@ -10077,7 +10290,9 @@ class GetInstanceServersServerResult(dict):
|
|
10077
10290
|
:param builtins.str name: The server name used as filter. Servers with a name like it are listed.
|
10078
10291
|
:param builtins.str organization_id: The organization ID the server is associated with.
|
10079
10292
|
:param builtins.str placement_group_id: The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
|
10293
|
+
:param builtins.bool placement_group_policy_respected: Whether the placement group policy respected or not
|
10080
10294
|
:param builtins.str private_ip: The Scaleway internal IP address of the server.
|
10295
|
+
:param Sequence['GetInstanceServersServerPrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the server.
|
10081
10296
|
:param builtins.str project_id: The ID of the project the server is associated with.
|
10082
10297
|
:param builtins.str public_ip: The public IP address of the server.
|
10083
10298
|
:param Sequence['GetInstanceServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
|
@@ -10101,6 +10316,7 @@ class GetInstanceServersServerResult(dict):
|
|
10101
10316
|
pulumi.set(__self__, "placement_group_id", placement_group_id)
|
10102
10317
|
pulumi.set(__self__, "placement_group_policy_respected", placement_group_policy_respected)
|
10103
10318
|
pulumi.set(__self__, "private_ip", private_ip)
|
10319
|
+
pulumi.set(__self__, "private_ips", private_ips)
|
10104
10320
|
pulumi.set(__self__, "project_id", project_id)
|
10105
10321
|
pulumi.set(__self__, "public_ip", public_ip)
|
10106
10322
|
pulumi.set(__self__, "public_ips", public_ips)
|
@@ -10122,6 +10338,9 @@ class GetInstanceServersServerResult(dict):
|
|
10122
10338
|
@pulumi.getter(name="bootscriptId")
|
10123
10339
|
@_utilities.deprecated("""bootscript are not supported""")
|
10124
10340
|
def bootscript_id(self) -> builtins.str:
|
10341
|
+
"""
|
10342
|
+
UUID of the bootscript
|
10343
|
+
"""
|
10125
10344
|
return pulumi.get(self, "bootscript_id")
|
10126
10345
|
|
10127
10346
|
@property
|
@@ -10207,6 +10426,9 @@ class GetInstanceServersServerResult(dict):
|
|
10207
10426
|
@property
|
10208
10427
|
@pulumi.getter(name="placementGroupPolicyRespected")
|
10209
10428
|
def placement_group_policy_respected(self) -> builtins.bool:
|
10429
|
+
"""
|
10430
|
+
Whether the placement group policy respected or not
|
10431
|
+
"""
|
10210
10432
|
return pulumi.get(self, "placement_group_policy_respected")
|
10211
10433
|
|
10212
10434
|
@property
|
@@ -10217,6 +10439,14 @@ class GetInstanceServersServerResult(dict):
|
|
10217
10439
|
"""
|
10218
10440
|
return pulumi.get(self, "private_ip")
|
10219
10441
|
|
10442
|
+
@property
|
10443
|
+
@pulumi.getter(name="privateIps")
|
10444
|
+
def private_ips(self) -> Sequence['outputs.GetInstanceServersServerPrivateIpResult']:
|
10445
|
+
"""
|
10446
|
+
The list of private IPv4 and IPv6 addresses associated with the server.
|
10447
|
+
"""
|
10448
|
+
return pulumi.get(self, "private_ips")
|
10449
|
+
|
10220
10450
|
@property
|
10221
10451
|
@pulumi.getter(name="projectId")
|
10222
10452
|
def project_id(self) -> builtins.str:
|
@@ -10283,6 +10513,35 @@ class GetInstanceServersServerResult(dict):
|
|
10283
10513
|
return pulumi.get(self, "zone")
|
10284
10514
|
|
10285
10515
|
|
10516
|
+
@pulumi.output_type
|
10517
|
+
class GetInstanceServersServerPrivateIpResult(dict):
|
10518
|
+
def __init__(__self__, *,
|
10519
|
+
address: builtins.str,
|
10520
|
+
id: builtins.str):
|
10521
|
+
"""
|
10522
|
+
:param builtins.str address: The address of the IP
|
10523
|
+
:param builtins.str id: The ID of the IP
|
10524
|
+
"""
|
10525
|
+
pulumi.set(__self__, "address", address)
|
10526
|
+
pulumi.set(__self__, "id", id)
|
10527
|
+
|
10528
|
+
@property
|
10529
|
+
@pulumi.getter
|
10530
|
+
def address(self) -> builtins.str:
|
10531
|
+
"""
|
10532
|
+
The address of the IP
|
10533
|
+
"""
|
10534
|
+
return pulumi.get(self, "address")
|
10535
|
+
|
10536
|
+
@property
|
10537
|
+
@pulumi.getter
|
10538
|
+
def id(self) -> builtins.str:
|
10539
|
+
"""
|
10540
|
+
The ID of the IP
|
10541
|
+
"""
|
10542
|
+
return pulumi.get(self, "id")
|
10543
|
+
|
10544
|
+
|
10286
10545
|
@pulumi.output_type
|
10287
10546
|
class GetInstanceServersServerPublicIpResult(dict):
|
10288
10547
|
def __init__(__self__, *,
|
@@ -12580,6 +12839,7 @@ class GetLbsLbInstanceResult(dict):
|
|
12580
12839
|
"""
|
12581
12840
|
:param builtins.str created_at: Date on which the Load Balancer was created.
|
12582
12841
|
:param builtins.str id: The ID of the Load Balancer.
|
12842
|
+
:param builtins.str ip_address: IP address of the instance
|
12583
12843
|
:param builtins.str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
|
12584
12844
|
:param builtins.str updated_at: Date on which the Load Balancer was updated.
|
12585
12845
|
:param builtins.str zone: `zone`) The zone in which the Load Balancers exist.
|
@@ -12610,6 +12870,9 @@ class GetLbsLbInstanceResult(dict):
|
|
12610
12870
|
@property
|
12611
12871
|
@pulumi.getter(name="ipAddress")
|
12612
12872
|
def ip_address(self) -> builtins.str:
|
12873
|
+
"""
|
12874
|
+
IP address of the instance
|
12875
|
+
"""
|
12613
12876
|
return pulumi.get(self, "ip_address")
|
12614
12877
|
|
12615
12878
|
@property
|
@@ -12649,8 +12912,11 @@ class GetLbsLbIpResult(dict):
|
|
12649
12912
|
zone: builtins.str):
|
12650
12913
|
"""
|
12651
12914
|
:param builtins.str id: The ID of the Load Balancer.
|
12915
|
+
:param builtins.str ip_address: IP address
|
12916
|
+
:param builtins.str lb_id: UUID of the load balancer attached to the IP
|
12652
12917
|
:param builtins.str organization_id: The ID of the Organization the Load Balancer is associated with.
|
12653
12918
|
:param builtins.str project_id: The ID of the Project the Load Balancer is associated with.
|
12919
|
+
:param builtins.str reverse: Reverse DNS attached to the IP
|
12654
12920
|
:param builtins.str zone: `zone`) The zone in which the Load Balancers exist.
|
12655
12921
|
"""
|
12656
12922
|
pulumi.set(__self__, "id", id)
|
@@ -12672,11 +12938,17 @@ class GetLbsLbIpResult(dict):
|
|
12672
12938
|
@property
|
12673
12939
|
@pulumi.getter(name="ipAddress")
|
12674
12940
|
def ip_address(self) -> builtins.str:
|
12941
|
+
"""
|
12942
|
+
IP address
|
12943
|
+
"""
|
12675
12944
|
return pulumi.get(self, "ip_address")
|
12676
12945
|
|
12677
12946
|
@property
|
12678
12947
|
@pulumi.getter(name="lbId")
|
12679
12948
|
def lb_id(self) -> builtins.str:
|
12949
|
+
"""
|
12950
|
+
UUID of the load balancer attached to the IP
|
12951
|
+
"""
|
12680
12952
|
return pulumi.get(self, "lb_id")
|
12681
12953
|
|
12682
12954
|
@property
|
@@ -12698,6 +12970,9 @@ class GetLbsLbIpResult(dict):
|
|
12698
12970
|
@property
|
12699
12971
|
@pulumi.getter
|
12700
12972
|
def reverse(self) -> builtins.str:
|
12973
|
+
"""
|
12974
|
+
Reverse DNS attached to the IP
|
12975
|
+
"""
|
12701
12976
|
return pulumi.get(self, "reverse")
|
12702
12977
|
|
12703
12978
|
@property
|
@@ -12997,6 +13272,13 @@ class GetObjectBucketCorsRuleResult(dict):
|
|
12997
13272
|
allowed_origins: Sequence[builtins.str],
|
12998
13273
|
expose_headers: Sequence[builtins.str],
|
12999
13274
|
max_age_seconds: builtins.int):
|
13275
|
+
"""
|
13276
|
+
:param Sequence[builtins.str] allowed_headers: Allowed headers in the CORS rule
|
13277
|
+
:param Sequence[builtins.str] allowed_methods: Allowed HTTP methods allowed in the CORS rule
|
13278
|
+
:param Sequence[builtins.str] allowed_origins: Allowed origins allowed in the CORS rule
|
13279
|
+
:param Sequence[builtins.str] expose_headers: Exposed headers in the CORS rule
|
13280
|
+
:param builtins.int max_age_seconds: Max age of the CORS rule
|
13281
|
+
"""
|
13000
13282
|
pulumi.set(__self__, "allowed_headers", allowed_headers)
|
13001
13283
|
pulumi.set(__self__, "allowed_methods", allowed_methods)
|
13002
13284
|
pulumi.set(__self__, "allowed_origins", allowed_origins)
|
@@ -13006,26 +13288,41 @@ class GetObjectBucketCorsRuleResult(dict):
|
|
13006
13288
|
@property
|
13007
13289
|
@pulumi.getter(name="allowedHeaders")
|
13008
13290
|
def allowed_headers(self) -> Sequence[builtins.str]:
|
13291
|
+
"""
|
13292
|
+
Allowed headers in the CORS rule
|
13293
|
+
"""
|
13009
13294
|
return pulumi.get(self, "allowed_headers")
|
13010
13295
|
|
13011
13296
|
@property
|
13012
13297
|
@pulumi.getter(name="allowedMethods")
|
13013
13298
|
def allowed_methods(self) -> Sequence[builtins.str]:
|
13299
|
+
"""
|
13300
|
+
Allowed HTTP methods allowed in the CORS rule
|
13301
|
+
"""
|
13014
13302
|
return pulumi.get(self, "allowed_methods")
|
13015
13303
|
|
13016
13304
|
@property
|
13017
13305
|
@pulumi.getter(name="allowedOrigins")
|
13018
13306
|
def allowed_origins(self) -> Sequence[builtins.str]:
|
13307
|
+
"""
|
13308
|
+
Allowed origins allowed in the CORS rule
|
13309
|
+
"""
|
13019
13310
|
return pulumi.get(self, "allowed_origins")
|
13020
13311
|
|
13021
13312
|
@property
|
13022
13313
|
@pulumi.getter(name="exposeHeaders")
|
13023
13314
|
def expose_headers(self) -> Sequence[builtins.str]:
|
13315
|
+
"""
|
13316
|
+
Exposed headers in the CORS rule
|
13317
|
+
"""
|
13024
13318
|
return pulumi.get(self, "expose_headers")
|
13025
13319
|
|
13026
13320
|
@property
|
13027
13321
|
@pulumi.getter(name="maxAgeSeconds")
|
13028
13322
|
def max_age_seconds(self) -> builtins.int:
|
13323
|
+
"""
|
13324
|
+
Max age of the CORS rule
|
13325
|
+
"""
|
13029
13326
|
return pulumi.get(self, "max_age_seconds")
|
13030
13327
|
|
13031
13328
|
|
@@ -13937,6 +14234,7 @@ class GetVpcsVpcResult(dict):
|
|
13937
14234
|
:param builtins.str project_id: The ID of the Project the VPC is associated with.
|
13938
14235
|
:param builtins.str region: `region`). The region in which the VPCs exist.
|
13939
14236
|
:param Sequence[builtins.str] tags: List of tags to filter for. VPCs with these exact tags are listed.
|
14237
|
+
:param builtins.str update_at: Date on which the VPC was last updated (RFC 3339 format)
|
13940
14238
|
"""
|
13941
14239
|
pulumi.set(__self__, "created_at", created_at)
|
13942
14240
|
pulumi.set(__self__, "id", id)
|
@@ -14016,6 +14314,9 @@ class GetVpcsVpcResult(dict):
|
|
14016
14314
|
@property
|
14017
14315
|
@pulumi.getter(name="updateAt")
|
14018
14316
|
def update_at(self) -> builtins.str:
|
14317
|
+
"""
|
14318
|
+
Date on which the VPC was last updated (RFC 3339 format)
|
14319
|
+
"""
|
14019
14320
|
return pulumi.get(self, "update_at")
|
14020
14321
|
|
14021
14322
|
|
@@ -14331,17 +14632,27 @@ class GetWebhostingCpanelUrlResult(dict):
|
|
14331
14632
|
def __init__(__self__, *,
|
14332
14633
|
dashboard: builtins.str,
|
14333
14634
|
webmail: builtins.str):
|
14635
|
+
"""
|
14636
|
+
:param builtins.str dashboard: URL to connect to dashboard interface
|
14637
|
+
:param builtins.str webmail: URL to connect to Webmail interface
|
14638
|
+
"""
|
14334
14639
|
pulumi.set(__self__, "dashboard", dashboard)
|
14335
14640
|
pulumi.set(__self__, "webmail", webmail)
|
14336
14641
|
|
14337
14642
|
@property
|
14338
14643
|
@pulumi.getter
|
14339
14644
|
def dashboard(self) -> builtins.str:
|
14645
|
+
"""
|
14646
|
+
URL to connect to dashboard interface
|
14647
|
+
"""
|
14340
14648
|
return pulumi.get(self, "dashboard")
|
14341
14649
|
|
14342
14650
|
@property
|
14343
14651
|
@pulumi.getter
|
14344
14652
|
def webmail(self) -> builtins.str:
|
14653
|
+
"""
|
14654
|
+
URL to connect to Webmail interface
|
14655
|
+
"""
|
14345
14656
|
return pulumi.get(self, "webmail")
|
14346
14657
|
|
14347
14658
|
|
@@ -14351,6 +14662,11 @@ class GetWebhostingNameServerResult(dict):
|
|
14351
14662
|
hostname: builtins.str,
|
14352
14663
|
is_default: builtins.bool,
|
14353
14664
|
status: builtins.str):
|
14665
|
+
"""
|
14666
|
+
:param builtins.str hostname: Hostname of the server
|
14667
|
+
:param builtins.bool is_default: Whether or not the webhosting is the default one
|
14668
|
+
:param builtins.str status: Status of the nameserver
|
14669
|
+
"""
|
14354
14670
|
pulumi.set(__self__, "hostname", hostname)
|
14355
14671
|
pulumi.set(__self__, "is_default", is_default)
|
14356
14672
|
pulumi.set(__self__, "status", status)
|
@@ -14358,16 +14674,25 @@ class GetWebhostingNameServerResult(dict):
|
|
14358
14674
|
@property
|
14359
14675
|
@pulumi.getter
|
14360
14676
|
def hostname(self) -> builtins.str:
|
14677
|
+
"""
|
14678
|
+
Hostname of the server
|
14679
|
+
"""
|
14361
14680
|
return pulumi.get(self, "hostname")
|
14362
14681
|
|
14363
14682
|
@property
|
14364
14683
|
@pulumi.getter(name="isDefault")
|
14365
14684
|
def is_default(self) -> builtins.bool:
|
14685
|
+
"""
|
14686
|
+
Whether or not the webhosting is the default one
|
14687
|
+
"""
|
14366
14688
|
return pulumi.get(self, "is_default")
|
14367
14689
|
|
14368
14690
|
@property
|
14369
14691
|
@pulumi.getter
|
14370
14692
|
def status(self) -> builtins.str:
|
14693
|
+
"""
|
14694
|
+
Status of the nameserver
|
14695
|
+
"""
|
14371
14696
|
return pulumi.get(self, "status")
|
14372
14697
|
|
14373
14698
|
|
@@ -14376,17 +14701,27 @@ class GetWebhostingOptionResult(dict):
|
|
14376
14701
|
def __init__(__self__, *,
|
14377
14702
|
id: builtins.str,
|
14378
14703
|
name: builtins.str):
|
14704
|
+
"""
|
14705
|
+
:param builtins.str id: ID of the active option
|
14706
|
+
:param builtins.str name: Name of the option
|
14707
|
+
"""
|
14379
14708
|
pulumi.set(__self__, "id", id)
|
14380
14709
|
pulumi.set(__self__, "name", name)
|
14381
14710
|
|
14382
14711
|
@property
|
14383
14712
|
@pulumi.getter
|
14384
14713
|
def id(self) -> builtins.str:
|
14714
|
+
"""
|
14715
|
+
ID of the active option
|
14716
|
+
"""
|
14385
14717
|
return pulumi.get(self, "id")
|
14386
14718
|
|
14387
14719
|
@property
|
14388
14720
|
@pulumi.getter
|
14389
14721
|
def name(self) -> builtins.str:
|
14722
|
+
"""
|
14723
|
+
Name of the option
|
14724
|
+
"""
|
14390
14725
|
return pulumi.get(self, "name")
|
14391
14726
|
|
14392
14727
|
|
@@ -14399,6 +14734,14 @@ class GetWebhostingRecordResult(dict):
|
|
14399
14734
|
ttl: builtins.int,
|
14400
14735
|
type: builtins.str,
|
14401
14736
|
value: builtins.str):
|
14737
|
+
"""
|
14738
|
+
:param builtins.str name: Name of the DNS record
|
14739
|
+
:param builtins.int priority: Priority of DNS records associated with the webhosting.
|
14740
|
+
:param builtins.str status: Status of the hosting record
|
14741
|
+
:param builtins.int ttl: Time to live in seconds of the record
|
14742
|
+
:param builtins.str type: Type of the DNS record
|
14743
|
+
:param builtins.str value: Value of the DNS record
|
14744
|
+
"""
|
14402
14745
|
pulumi.set(__self__, "name", name)
|
14403
14746
|
pulumi.set(__self__, "priority", priority)
|
14404
14747
|
pulumi.set(__self__, "status", status)
|
@@ -14409,31 +14752,49 @@ class GetWebhostingRecordResult(dict):
|
|
14409
14752
|
@property
|
14410
14753
|
@pulumi.getter
|
14411
14754
|
def name(self) -> builtins.str:
|
14755
|
+
"""
|
14756
|
+
Name of the DNS record
|
14757
|
+
"""
|
14412
14758
|
return pulumi.get(self, "name")
|
14413
14759
|
|
14414
14760
|
@property
|
14415
14761
|
@pulumi.getter
|
14416
14762
|
def priority(self) -> builtins.int:
|
14763
|
+
"""
|
14764
|
+
Priority of DNS records associated with the webhosting.
|
14765
|
+
"""
|
14417
14766
|
return pulumi.get(self, "priority")
|
14418
14767
|
|
14419
14768
|
@property
|
14420
14769
|
@pulumi.getter
|
14421
14770
|
def status(self) -> builtins.str:
|
14771
|
+
"""
|
14772
|
+
Status of the hosting record
|
14773
|
+
"""
|
14422
14774
|
return pulumi.get(self, "status")
|
14423
14775
|
|
14424
14776
|
@property
|
14425
14777
|
@pulumi.getter
|
14426
14778
|
def ttl(self) -> builtins.int:
|
14779
|
+
"""
|
14780
|
+
Time to live in seconds of the record
|
14781
|
+
"""
|
14427
14782
|
return pulumi.get(self, "ttl")
|
14428
14783
|
|
14429
14784
|
@property
|
14430
14785
|
@pulumi.getter
|
14431
14786
|
def type(self) -> builtins.str:
|
14787
|
+
"""
|
14788
|
+
Type of the DNS record
|
14789
|
+
"""
|
14432
14790
|
return pulumi.get(self, "type")
|
14433
14791
|
|
14434
14792
|
@property
|
14435
14793
|
@pulumi.getter
|
14436
14794
|
def value(self) -> builtins.str:
|
14795
|
+
"""
|
14796
|
+
Value of the DNS record
|
14797
|
+
"""
|
14437
14798
|
return pulumi.get(self, "value")
|
14438
14799
|
|
14439
14800
|
|