@@ -37,6 +37,7 @@ class EipBillingConfigForCreateLoadBalancerInput(object):
3737 'bandwidth_package_id' : 'str' ,
3838 'eip_billing_type' : 'int' ,
3939 'isp' : 'str' ,
40+ 'security_protection_instance_id' : 'int' ,
4041 'security_protection_types' : 'list[str]'
4142 }
4243
@@ -45,10 +46,11 @@ class EipBillingConfigForCreateLoadBalancerInput(object):
4546 'bandwidth_package_id' : 'BandwidthPackageId' ,
4647 'eip_billing_type' : 'EipBillingType' ,
4748 'isp' : 'ISP' ,
49+ 'security_protection_instance_id' : 'SecurityProtectionInstanceId' ,
4850 'security_protection_types' : 'SecurityProtectionTypes'
4951 }
5052
51- def __init__ (self , bandwidth = None , bandwidth_package_id = None , eip_billing_type = None , isp = None , security_protection_types = None , _configuration = None ): # noqa: E501
53+ def __init__ (self , bandwidth = None , bandwidth_package_id = None , eip_billing_type = None , isp = None , security_protection_instance_id = None , security_protection_types = None , _configuration = None ): # noqa: E501
5254 """EipBillingConfigForCreateLoadBalancerInput - a model defined in Swagger""" # noqa: E501
5355 if _configuration is None :
5456 _configuration = Configuration ()
@@ -58,6 +60,7 @@ def __init__(self, bandwidth=None, bandwidth_package_id=None, eip_billing_type=N
5860 self ._bandwidth_package_id = None
5961 self ._eip_billing_type = None
6062 self ._isp = None
63+ self ._security_protection_instance_id = None
6164 self ._security_protection_types = None
6265 self .discriminator = None
6366
@@ -69,6 +72,8 @@ def __init__(self, bandwidth=None, bandwidth_package_id=None, eip_billing_type=N
6972 self .eip_billing_type = eip_billing_type
7073 if isp is not None :
7174 self .isp = isp
75+ if security_protection_instance_id is not None :
76+ self .security_protection_instance_id = security_protection_instance_id
7277 if security_protection_types is not None :
7378 self .security_protection_types = security_protection_types
7479
@@ -156,6 +161,27 @@ def isp(self, isp):
156161
157162 self ._isp = isp
158163
164+ @property
165+ def security_protection_instance_id (self ):
166+ """Gets the security_protection_instance_id of this EipBillingConfigForCreateLoadBalancerInput. # noqa: E501
167+
168+
169+ :return: The security_protection_instance_id of this EipBillingConfigForCreateLoadBalancerInput. # noqa: E501
170+ :rtype: int
171+ """
172+ return self ._security_protection_instance_id
173+
174+ @security_protection_instance_id .setter
175+ def security_protection_instance_id (self , security_protection_instance_id ):
176+ """Sets the security_protection_instance_id of this EipBillingConfigForCreateLoadBalancerInput.
177+
178+
179+ :param security_protection_instance_id: The security_protection_instance_id of this EipBillingConfigForCreateLoadBalancerInput. # noqa: E501
180+ :type: int
181+ """
182+
183+ self ._security_protection_instance_id = security_protection_instance_id
184+
159185 @property
160186 def security_protection_types (self ):
161187 """Gets the security_protection_types of this EipBillingConfigForCreateLoadBalancerInput. # noqa: E501
0 commit comments