aliyun-net-sdk-ecs/Ecs/Model/V20140526/DescribeEipAddressesResponse.cs (243 lines of code) (raw):
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
using System.Collections.Generic;
using Newtonsoft.Json;
using Aliyun.Acs.Core;
namespace Aliyun.Acs.Ecs.Model.V20140526
{
public class DescribeEipAddressesResponse : AcsResponse
{
private int? pageSize;
private string requestId;
private int? pageNumber;
private int? totalCount;
private List<DescribeEipAddresses_EipAddress> eipAddresses;
public int? PageSize
{
get
{
return pageSize;
}
set
{
pageSize = value;
}
}
public string RequestId
{
get
{
return requestId;
}
set
{
requestId = value;
}
}
public int? PageNumber
{
get
{
return pageNumber;
}
set
{
pageNumber = value;
}
}
public int? TotalCount
{
get
{
return totalCount;
}
set
{
totalCount = value;
}
}
public List<DescribeEipAddresses_EipAddress> EipAddresses
{
get
{
return eipAddresses;
}
set
{
eipAddresses = value;
}
}
public class DescribeEipAddresses_EipAddress
{
private string status;
private string allocationTime;
private string chargeType;
private string instanceId;
private string instanceType;
private string regionId;
private string ipAddress;
private string bandwidth;
private string expiredTime;
private string allocationId;
private string internetChargeType;
private string eipBandwidth;
private List<DescribeEipAddresses_LockReason> operationLocks;
public string Status
{
get
{
return status;
}
set
{
status = value;
}
}
public string AllocationTime
{
get
{
return allocationTime;
}
set
{
allocationTime = value;
}
}
public string ChargeType
{
get
{
return chargeType;
}
set
{
chargeType = value;
}
}
public string InstanceId
{
get
{
return instanceId;
}
set
{
instanceId = value;
}
}
public string InstanceType
{
get
{
return instanceType;
}
set
{
instanceType = value;
}
}
public string RegionId
{
get
{
return regionId;
}
set
{
regionId = value;
}
}
public string IpAddress
{
get
{
return ipAddress;
}
set
{
ipAddress = value;
}
}
public string Bandwidth
{
get
{
return bandwidth;
}
set
{
bandwidth = value;
}
}
public string ExpiredTime
{
get
{
return expiredTime;
}
set
{
expiredTime = value;
}
}
public string AllocationId
{
get
{
return allocationId;
}
set
{
allocationId = value;
}
}
public string InternetChargeType
{
get
{
return internetChargeType;
}
set
{
internetChargeType = value;
}
}
public string EipBandwidth
{
get
{
return eipBandwidth;
}
set
{
eipBandwidth = value;
}
}
public List<DescribeEipAddresses_LockReason> OperationLocks
{
get
{
return operationLocks;
}
set
{
operationLocks = value;
}
}
public class DescribeEipAddresses_LockReason
{
private string lockReason;
public string LockReason
{
get
{
return lockReason;
}
set
{
lockReason = value;
}
}
}
}
}
}