@@ -751,8 +751,6 @@ def __init__(self):
751751 :type PathPrefix: Filter
752752 :param PrivateIpAddress:
753753 :type PathPrefix: String
754- :param VpcIpv6: 指定子网下的ipv6地址
755- :type PathPrefix: String
756754 :param MacAddress:
757755 :type PathPrefix: String
758756 """
@@ -761,7 +759,6 @@ def __init__(self):
761759 self .SubnetId = None
762760 self .SecurityGroupId = None
763761 self .PrivateIpAddress = None
764- self .VpcIpv6 = None
765762 self .MacAddress = None
766763
767764 def _deserialize (self , params ):
@@ -775,8 +772,6 @@ def _deserialize(self, params):
775772 self .SecurityGroupId = params .get ("SecurityGroupId" )
776773 if params .get ("PrivateIpAddress" ):
777774 self .PrivateIpAddress = params .get ("PrivateIpAddress" )
778- if params .get ("VpcIpv6" ):
779- self .VpcIpv6 = params .get ("VpcIpv6" )
780775 if params .get ("MacAddress" ):
781776 self .MacAddress = params .get ("MacAddress" )
782777
@@ -3054,6 +3049,42 @@ def _deserialize(self, params):
30543049 self .AutoDeleteEip = params .get ("AutoDeleteEip" )
30553050
30563051
3052+ class DescribeKecInventoryRequest (AbstractModel ):
3053+ """DescribeKecInventory请求参数结构体
3054+ """
3055+
3056+ def __init__ (self ):
3057+ r"""查询云主机库存
3058+ :param InstanceType: 实例类型
3059+ :type PathPrefix: String
3060+ :param DataDiskGb: 数据卷容量,单位GB
3061+ :type PathPrefix: Int
3062+ :param SystemDisk.DiskSize: 系统盘大小
3063+ :type PathPrefix: Int
3064+ :param SystemDisk.DiskType: 系统盘类型
3065+ :type PathPrefix: String
3066+ :param AvailabilityZone: 可用区信息
3067+ :type PathPrefix: String
3068+ """
3069+ self .InstanceType = None
3070+ self .DataDiskGb = None
3071+ self .SystemDisk .DiskSize = None
3072+ self .SystemDisk .DiskType = None
3073+ self .AvailabilityZone = None
3074+
3075+ def _deserialize (self , params ):
3076+ if params .get ("InstanceType" ):
3077+ self .InstanceType = params .get ("InstanceType" )
3078+ if params .get ("DataDiskGb" ):
3079+ self .DataDiskGb = params .get ("DataDiskGb" )
3080+ if params .get ("SystemDisk.DiskSize" ):
3081+ self .SystemDisk .DiskSize = params .get ("SystemDisk.DiskSize" )
3082+ if params .get ("SystemDisk.DiskType" ):
3083+ self .SystemDisk .DiskType = params .get ("SystemDisk.DiskType" )
3084+ if params .get ("AvailabilityZone" ):
3085+ self .AvailabilityZone = params .get ("AvailabilityZone" )
3086+
3087+
30573088class ModifyScalingConfigurationRequest (AbstractModel ):
30583089 """ModifyScalingConfiguration请求参数结构体
30593090 """
0 commit comments