pulumi-alicloud 3.56.0a1715923185__py3-none-any.whl → 3.56.0a1716440817__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.
@@ -16,6 +16,7 @@ class EipAddressArgs:
16
16
  def __init__(__self__, *,
17
17
  activity_id: Optional[pulumi.Input[str]] = None,
18
18
  address_name: Optional[pulumi.Input[str]] = None,
19
+ allocation_id: Optional[pulumi.Input[str]] = None,
19
20
  auto_pay: Optional[pulumi.Input[bool]] = None,
20
21
  bandwidth: Optional[pulumi.Input[str]] = None,
21
22
  deletion_protection: Optional[pulumi.Input[bool]] = None,
@@ -27,6 +28,7 @@ class EipAddressArgs:
27
28
  isp: Optional[pulumi.Input[str]] = None,
28
29
  log_project: Optional[pulumi.Input[str]] = None,
29
30
  log_store: Optional[pulumi.Input[str]] = None,
31
+ mode: Optional[pulumi.Input[str]] = None,
30
32
  name: Optional[pulumi.Input[str]] = None,
31
33
  netmode: Optional[pulumi.Input[str]] = None,
32
34
  payment_type: Optional[pulumi.Input[str]] = None,
@@ -41,6 +43,7 @@ class EipAddressArgs:
41
43
  The set of arguments for constructing a EipAddress resource.
42
44
  :param pulumi.Input[str] activity_id: Special activity ID. This parameter is not required.
43
45
  :param pulumi.Input[str] address_name: The name of the EIP instance. This name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://.
46
+ :param pulumi.Input[str] allocation_id: The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
44
47
  :param pulumi.Input[bool] auto_pay: Whether to pay automatically. Valid values: `true` and `false`. Default value: `true`. When `auto_pay` is `true`, The order will be automatically paid. When `auto_pay` is `false`, The order needs to go to the order center to complete the payment. **NOTE:** When `payment_type` is `Subscription`, this parameter is valid.
45
48
  :param pulumi.Input[str] bandwidth: The maximum bandwidth of the EIP. Valid values: `1` to `200`. Unit: Mbit/s. Default value: `5`.
46
49
  :param pulumi.Input[bool] deletion_protection: Whether the delete protection function is turned on.
@@ -58,6 +61,10 @@ class EipAddressArgs:
58
61
  :param pulumi.Input[str] isp: The line type. You can set this parameter only when you create a `PayAsYouGo` EIP. Valid values:
59
62
  :param pulumi.Input[str] log_project: The Name of the logging service LogProject. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
60
63
  :param pulumi.Input[str] log_store: The Name of the logging service LogStore. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
64
+ :param pulumi.Input[str] mode: Binding mode, value:
65
+ - **NAT** (default):NAT mode (normal mode).
66
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
67
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
61
68
  :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.126.0. New field 'address_name' instead.
62
69
  :param pulumi.Input[str] netmode: The type of the network. Valid value is `public` (Internet).
63
70
  :param pulumi.Input[str] payment_type: The billing method of the EIP. Valid values: `Subscription`, `PayAsYouGo`.
@@ -77,6 +84,8 @@ class EipAddressArgs:
77
84
  pulumi.set(__self__, "activity_id", activity_id)
78
85
  if address_name is not None:
79
86
  pulumi.set(__self__, "address_name", address_name)
87
+ if allocation_id is not None:
88
+ pulumi.set(__self__, "allocation_id", allocation_id)
80
89
  if auto_pay is not None:
81
90
  pulumi.set(__self__, "auto_pay", auto_pay)
82
91
  if bandwidth is not None:
@@ -102,6 +111,8 @@ class EipAddressArgs:
102
111
  pulumi.set(__self__, "log_project", log_project)
103
112
  if log_store is not None:
104
113
  pulumi.set(__self__, "log_store", log_store)
114
+ if mode is not None:
115
+ pulumi.set(__self__, "mode", mode)
105
116
  if name is not None:
106
117
  warnings.warn("""Field 'name' has been deprecated since provider version 1.126.0. New field 'address_name' instead.""", DeprecationWarning)
107
118
  pulumi.log.warn("""name is deprecated: Field 'name' has been deprecated since provider version 1.126.0. New field 'address_name' instead.""")
@@ -150,6 +161,18 @@ class EipAddressArgs:
150
161
  def address_name(self, value: Optional[pulumi.Input[str]]):
151
162
  pulumi.set(self, "address_name", value)
152
163
 
164
+ @property
165
+ @pulumi.getter(name="allocationId")
166
+ def allocation_id(self) -> Optional[pulumi.Input[str]]:
167
+ """
168
+ The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
169
+ """
170
+ return pulumi.get(self, "allocation_id")
171
+
172
+ @allocation_id.setter
173
+ def allocation_id(self, value: Optional[pulumi.Input[str]]):
174
+ pulumi.set(self, "allocation_id", value)
175
+
153
176
  @property
154
177
  @pulumi.getter(name="autoPay")
155
178
  def auto_pay(self) -> Optional[pulumi.Input[bool]]:
@@ -291,6 +314,21 @@ class EipAddressArgs:
291
314
  def log_store(self, value: Optional[pulumi.Input[str]]):
292
315
  pulumi.set(self, "log_store", value)
293
316
 
317
+ @property
318
+ @pulumi.getter
319
+ def mode(self) -> Optional[pulumi.Input[str]]:
320
+ """
321
+ Binding mode, value:
322
+ - **NAT** (default):NAT mode (normal mode).
323
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
324
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
325
+ """
326
+ return pulumi.get(self, "mode")
327
+
328
+ @mode.setter
329
+ def mode(self, value: Optional[pulumi.Input[str]]):
330
+ pulumi.set(self, "mode", value)
331
+
294
332
  @property
295
333
  @pulumi.getter
296
334
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -424,6 +462,7 @@ class _EipAddressState:
424
462
  def __init__(__self__, *,
425
463
  activity_id: Optional[pulumi.Input[str]] = None,
426
464
  address_name: Optional[pulumi.Input[str]] = None,
465
+ allocation_id: Optional[pulumi.Input[str]] = None,
427
466
  auto_pay: Optional[pulumi.Input[bool]] = None,
428
467
  bandwidth: Optional[pulumi.Input[str]] = None,
429
468
  create_time: Optional[pulumi.Input[str]] = None,
@@ -436,6 +475,7 @@ class _EipAddressState:
436
475
  isp: Optional[pulumi.Input[str]] = None,
437
476
  log_project: Optional[pulumi.Input[str]] = None,
438
477
  log_store: Optional[pulumi.Input[str]] = None,
478
+ mode: Optional[pulumi.Input[str]] = None,
439
479
  name: Optional[pulumi.Input[str]] = None,
440
480
  netmode: Optional[pulumi.Input[str]] = None,
441
481
  payment_type: Optional[pulumi.Input[str]] = None,
@@ -451,6 +491,7 @@ class _EipAddressState:
451
491
  Input properties used for looking up and filtering EipAddress resources.
452
492
  :param pulumi.Input[str] activity_id: Special activity ID. This parameter is not required.
453
493
  :param pulumi.Input[str] address_name: The name of the EIP instance. This name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://.
494
+ :param pulumi.Input[str] allocation_id: The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
454
495
  :param pulumi.Input[bool] auto_pay: Whether to pay automatically. Valid values: `true` and `false`. Default value: `true`. When `auto_pay` is `true`, The order will be automatically paid. When `auto_pay` is `false`, The order needs to go to the order center to complete the payment. **NOTE:** When `payment_type` is `Subscription`, this parameter is valid.
455
496
  :param pulumi.Input[str] bandwidth: The maximum bandwidth of the EIP. Valid values: `1` to `200`. Unit: Mbit/s. Default value: `5`.
456
497
  :param pulumi.Input[str] create_time: The time when the EIP was created.
@@ -469,6 +510,10 @@ class _EipAddressState:
469
510
  :param pulumi.Input[str] isp: The line type. You can set this parameter only when you create a `PayAsYouGo` EIP. Valid values:
470
511
  :param pulumi.Input[str] log_project: The Name of the logging service LogProject. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
471
512
  :param pulumi.Input[str] log_store: The Name of the logging service LogStore. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
513
+ :param pulumi.Input[str] mode: Binding mode, value:
514
+ - **NAT** (default):NAT mode (normal mode).
515
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
516
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
472
517
  :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.126.0. New field 'address_name' instead.
473
518
  :param pulumi.Input[str] netmode: The type of the network. Valid value is `public` (Internet).
474
519
  :param pulumi.Input[str] payment_type: The billing method of the EIP. Valid values: `Subscription`, `PayAsYouGo`.
@@ -489,6 +534,8 @@ class _EipAddressState:
489
534
  pulumi.set(__self__, "activity_id", activity_id)
490
535
  if address_name is not None:
491
536
  pulumi.set(__self__, "address_name", address_name)
537
+ if allocation_id is not None:
538
+ pulumi.set(__self__, "allocation_id", allocation_id)
492
539
  if auto_pay is not None:
493
540
  pulumi.set(__self__, "auto_pay", auto_pay)
494
541
  if bandwidth is not None:
@@ -516,6 +563,8 @@ class _EipAddressState:
516
563
  pulumi.set(__self__, "log_project", log_project)
517
564
  if log_store is not None:
518
565
  pulumi.set(__self__, "log_store", log_store)
566
+ if mode is not None:
567
+ pulumi.set(__self__, "mode", mode)
519
568
  if name is not None:
520
569
  warnings.warn("""Field 'name' has been deprecated since provider version 1.126.0. New field 'address_name' instead.""", DeprecationWarning)
521
570
  pulumi.log.warn("""name is deprecated: Field 'name' has been deprecated since provider version 1.126.0. New field 'address_name' instead.""")
@@ -566,6 +615,18 @@ class _EipAddressState:
566
615
  def address_name(self, value: Optional[pulumi.Input[str]]):
567
616
  pulumi.set(self, "address_name", value)
568
617
 
618
+ @property
619
+ @pulumi.getter(name="allocationId")
620
+ def allocation_id(self) -> Optional[pulumi.Input[str]]:
621
+ """
622
+ The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
623
+ """
624
+ return pulumi.get(self, "allocation_id")
625
+
626
+ @allocation_id.setter
627
+ def allocation_id(self, value: Optional[pulumi.Input[str]]):
628
+ pulumi.set(self, "allocation_id", value)
629
+
569
630
  @property
570
631
  @pulumi.getter(name="autoPay")
571
632
  def auto_pay(self) -> Optional[pulumi.Input[bool]]:
@@ -719,6 +780,21 @@ class _EipAddressState:
719
780
  def log_store(self, value: Optional[pulumi.Input[str]]):
720
781
  pulumi.set(self, "log_store", value)
721
782
 
783
+ @property
784
+ @pulumi.getter
785
+ def mode(self) -> Optional[pulumi.Input[str]]:
786
+ """
787
+ Binding mode, value:
788
+ - **NAT** (default):NAT mode (normal mode).
789
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
790
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
791
+ """
792
+ return pulumi.get(self, "mode")
793
+
794
+ @mode.setter
795
+ def mode(self, value: Optional[pulumi.Input[str]]):
796
+ pulumi.set(self, "mode", value)
797
+
722
798
  @property
723
799
  @pulumi.getter
724
800
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -866,6 +942,7 @@ class EipAddress(pulumi.CustomResource):
866
942
  opts: Optional[pulumi.ResourceOptions] = None,
867
943
  activity_id: Optional[pulumi.Input[str]] = None,
868
944
  address_name: Optional[pulumi.Input[str]] = None,
945
+ allocation_id: Optional[pulumi.Input[str]] = None,
869
946
  auto_pay: Optional[pulumi.Input[bool]] = None,
870
947
  bandwidth: Optional[pulumi.Input[str]] = None,
871
948
  deletion_protection: Optional[pulumi.Input[bool]] = None,
@@ -877,6 +954,7 @@ class EipAddress(pulumi.CustomResource):
877
954
  isp: Optional[pulumi.Input[str]] = None,
878
955
  log_project: Optional[pulumi.Input[str]] = None,
879
956
  log_store: Optional[pulumi.Input[str]] = None,
957
+ mode: Optional[pulumi.Input[str]] = None,
880
958
  name: Optional[pulumi.Input[str]] = None,
881
959
  netmode: Optional[pulumi.Input[str]] = None,
882
960
  payment_type: Optional[pulumi.Input[str]] = None,
@@ -901,6 +979,7 @@ class EipAddress(pulumi.CustomResource):
901
979
  :param pulumi.ResourceOptions opts: Options for the resource.
902
980
  :param pulumi.Input[str] activity_id: Special activity ID. This parameter is not required.
903
981
  :param pulumi.Input[str] address_name: The name of the EIP instance. This name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://.
982
+ :param pulumi.Input[str] allocation_id: The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
904
983
  :param pulumi.Input[bool] auto_pay: Whether to pay automatically. Valid values: `true` and `false`. Default value: `true`. When `auto_pay` is `true`, The order will be automatically paid. When `auto_pay` is `false`, The order needs to go to the order center to complete the payment. **NOTE:** When `payment_type` is `Subscription`, this parameter is valid.
905
984
  :param pulumi.Input[str] bandwidth: The maximum bandwidth of the EIP. Valid values: `1` to `200`. Unit: Mbit/s. Default value: `5`.
906
985
  :param pulumi.Input[bool] deletion_protection: Whether the delete protection function is turned on.
@@ -918,6 +997,10 @@ class EipAddress(pulumi.CustomResource):
918
997
  :param pulumi.Input[str] isp: The line type. You can set this parameter only when you create a `PayAsYouGo` EIP. Valid values:
919
998
  :param pulumi.Input[str] log_project: The Name of the logging service LogProject. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
920
999
  :param pulumi.Input[str] log_store: The Name of the logging service LogStore. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
1000
+ :param pulumi.Input[str] mode: Binding mode, value:
1001
+ - **NAT** (default):NAT mode (normal mode).
1002
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
1003
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
921
1004
  :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.126.0. New field 'address_name' instead.
922
1005
  :param pulumi.Input[str] netmode: The type of the network. Valid value is `public` (Internet).
923
1006
  :param pulumi.Input[str] payment_type: The billing method of the EIP. Valid values: `Subscription`, `PayAsYouGo`.
@@ -965,6 +1048,7 @@ class EipAddress(pulumi.CustomResource):
965
1048
  opts: Optional[pulumi.ResourceOptions] = None,
966
1049
  activity_id: Optional[pulumi.Input[str]] = None,
967
1050
  address_name: Optional[pulumi.Input[str]] = None,
1051
+ allocation_id: Optional[pulumi.Input[str]] = None,
968
1052
  auto_pay: Optional[pulumi.Input[bool]] = None,
969
1053
  bandwidth: Optional[pulumi.Input[str]] = None,
970
1054
  deletion_protection: Optional[pulumi.Input[bool]] = None,
@@ -976,6 +1060,7 @@ class EipAddress(pulumi.CustomResource):
976
1060
  isp: Optional[pulumi.Input[str]] = None,
977
1061
  log_project: Optional[pulumi.Input[str]] = None,
978
1062
  log_store: Optional[pulumi.Input[str]] = None,
1063
+ mode: Optional[pulumi.Input[str]] = None,
979
1064
  name: Optional[pulumi.Input[str]] = None,
980
1065
  netmode: Optional[pulumi.Input[str]] = None,
981
1066
  payment_type: Optional[pulumi.Input[str]] = None,
@@ -997,6 +1082,7 @@ class EipAddress(pulumi.CustomResource):
997
1082
 
998
1083
  __props__.__dict__["activity_id"] = activity_id
999
1084
  __props__.__dict__["address_name"] = address_name
1085
+ __props__.__dict__["allocation_id"] = allocation_id
1000
1086
  __props__.__dict__["auto_pay"] = auto_pay
1001
1087
  __props__.__dict__["bandwidth"] = bandwidth
1002
1088
  __props__.__dict__["deletion_protection"] = deletion_protection
@@ -1008,6 +1094,7 @@ class EipAddress(pulumi.CustomResource):
1008
1094
  __props__.__dict__["isp"] = isp
1009
1095
  __props__.__dict__["log_project"] = log_project
1010
1096
  __props__.__dict__["log_store"] = log_store
1097
+ __props__.__dict__["mode"] = mode
1011
1098
  __props__.__dict__["name"] = name
1012
1099
  __props__.__dict__["netmode"] = netmode
1013
1100
  __props__.__dict__["payment_type"] = payment_type
@@ -1032,6 +1119,7 @@ class EipAddress(pulumi.CustomResource):
1032
1119
  opts: Optional[pulumi.ResourceOptions] = None,
1033
1120
  activity_id: Optional[pulumi.Input[str]] = None,
1034
1121
  address_name: Optional[pulumi.Input[str]] = None,
1122
+ allocation_id: Optional[pulumi.Input[str]] = None,
1035
1123
  auto_pay: Optional[pulumi.Input[bool]] = None,
1036
1124
  bandwidth: Optional[pulumi.Input[str]] = None,
1037
1125
  create_time: Optional[pulumi.Input[str]] = None,
@@ -1044,6 +1132,7 @@ class EipAddress(pulumi.CustomResource):
1044
1132
  isp: Optional[pulumi.Input[str]] = None,
1045
1133
  log_project: Optional[pulumi.Input[str]] = None,
1046
1134
  log_store: Optional[pulumi.Input[str]] = None,
1135
+ mode: Optional[pulumi.Input[str]] = None,
1047
1136
  name: Optional[pulumi.Input[str]] = None,
1048
1137
  netmode: Optional[pulumi.Input[str]] = None,
1049
1138
  payment_type: Optional[pulumi.Input[str]] = None,
@@ -1064,6 +1153,7 @@ class EipAddress(pulumi.CustomResource):
1064
1153
  :param pulumi.ResourceOptions opts: Options for the resource.
1065
1154
  :param pulumi.Input[str] activity_id: Special activity ID. This parameter is not required.
1066
1155
  :param pulumi.Input[str] address_name: The name of the EIP instance. This name can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://.
1156
+ :param pulumi.Input[str] allocation_id: The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
1067
1157
  :param pulumi.Input[bool] auto_pay: Whether to pay automatically. Valid values: `true` and `false`. Default value: `true`. When `auto_pay` is `true`, The order will be automatically paid. When `auto_pay` is `false`, The order needs to go to the order center to complete the payment. **NOTE:** When `payment_type` is `Subscription`, this parameter is valid.
1068
1158
  :param pulumi.Input[str] bandwidth: The maximum bandwidth of the EIP. Valid values: `1` to `200`. Unit: Mbit/s. Default value: `5`.
1069
1159
  :param pulumi.Input[str] create_time: The time when the EIP was created.
@@ -1082,6 +1172,10 @@ class EipAddress(pulumi.CustomResource):
1082
1172
  :param pulumi.Input[str] isp: The line type. You can set this parameter only when you create a `PayAsYouGo` EIP. Valid values:
1083
1173
  :param pulumi.Input[str] log_project: The Name of the logging service LogProject. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
1084
1174
  :param pulumi.Input[str] log_store: The Name of the logging service LogStore. Current parameter is required when configuring high precision second-by-second monitoring for EIP.
1175
+ :param pulumi.Input[str] mode: Binding mode, value:
1176
+ - **NAT** (default):NAT mode (normal mode).
1177
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
1178
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
1085
1179
  :param pulumi.Input[str] name: . Field 'name' has been deprecated from provider version 1.126.0. New field 'address_name' instead.
1086
1180
  :param pulumi.Input[str] netmode: The type of the network. Valid value is `public` (Internet).
1087
1181
  :param pulumi.Input[str] payment_type: The billing method of the EIP. Valid values: `Subscription`, `PayAsYouGo`.
@@ -1104,6 +1198,7 @@ class EipAddress(pulumi.CustomResource):
1104
1198
 
1105
1199
  __props__.__dict__["activity_id"] = activity_id
1106
1200
  __props__.__dict__["address_name"] = address_name
1201
+ __props__.__dict__["allocation_id"] = allocation_id
1107
1202
  __props__.__dict__["auto_pay"] = auto_pay
1108
1203
  __props__.__dict__["bandwidth"] = bandwidth
1109
1204
  __props__.__dict__["create_time"] = create_time
@@ -1116,6 +1211,7 @@ class EipAddress(pulumi.CustomResource):
1116
1211
  __props__.__dict__["isp"] = isp
1117
1212
  __props__.__dict__["log_project"] = log_project
1118
1213
  __props__.__dict__["log_store"] = log_store
1214
+ __props__.__dict__["mode"] = mode
1119
1215
  __props__.__dict__["name"] = name
1120
1216
  __props__.__dict__["netmode"] = netmode
1121
1217
  __props__.__dict__["payment_type"] = payment_type
@@ -1145,6 +1241,14 @@ class EipAddress(pulumi.CustomResource):
1145
1241
  """
1146
1242
  return pulumi.get(self, "address_name")
1147
1243
 
1244
+ @property
1245
+ @pulumi.getter(name="allocationId")
1246
+ def allocation_id(self) -> pulumi.Output[Optional[str]]:
1247
+ """
1248
+ The ID of the EIP instance. If you specify the instance ID of An EIP that has already been applied for, the IpAddress of that instance will be reused. Only one of the IpAddress and InstanceId parameters needs to be specified. If neither parameter is specified, the system will randomly apply for an EIP.
1249
+ """
1250
+ return pulumi.get(self, "allocation_id")
1251
+
1148
1252
  @property
1149
1253
  @pulumi.getter(name="autoPay")
1150
1254
  def auto_pay(self) -> pulumi.Output[Optional[bool]]:
@@ -1250,6 +1354,17 @@ class EipAddress(pulumi.CustomResource):
1250
1354
  """
1251
1355
  return pulumi.get(self, "log_store")
1252
1356
 
1357
+ @property
1358
+ @pulumi.getter
1359
+ def mode(self) -> pulumi.Output[str]:
1360
+ """
1361
+ Binding mode, value:
1362
+ - **NAT** (default):NAT mode (normal mode).
1363
+ - **MULTI_BINDED**: indicates the multi-EIP NIC visible mode.
1364
+ - **BINDED**: indicates the mode in which the EIP NIC is visible.
1365
+ """
1366
+ return pulumi.get(self, "mode")
1367
+
1253
1368
  @property
1254
1369
  @pulumi.getter
1255
1370
  def name(self) -> pulumi.Output[str]: