aliyun-net-sdk-ecs/Ecs/Model/V20140526/DescribeVSwitchesResponse.cs (204 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 DescribeVSwitchesResponse : AcsResponse { private int? pageSize; private string requestId; private int? pageNumber; private int? totalCount; private List<DescribeVSwitches_VSwitch> vSwitches; 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<DescribeVSwitches_VSwitch> VSwitches { get { return vSwitches; } set { vSwitches = value; } } public class DescribeVSwitches_VSwitch { private string creationTime; private string status; private string vpcId; private bool? isDefault; private string vSwitchId; private string cidrBlock; private string description; private long? availableIpAddressCount; private string resourceGroupId; private string zoneId; private string vSwitchName; public string CreationTime { get { return creationTime; } set { creationTime = value; } } public string Status { get { return status; } set { status = value; } } public string VpcId { get { return vpcId; } set { vpcId = value; } } public bool? IsDefault { get { return isDefault; } set { isDefault = value; } } public string VSwitchId { get { return vSwitchId; } set { vSwitchId = value; } } public string CidrBlock { get { return cidrBlock; } set { cidrBlock = value; } } public string Description { get { return description; } set { description = value; } } public long? AvailableIpAddressCount { get { return availableIpAddressCount; } set { availableIpAddressCount = value; } } public string ResourceGroupId { get { return resourceGroupId; } set { resourceGroupId = value; } } public string ZoneId { get { return zoneId; } set { zoneId = value; } } public string VSwitchName { get { return vSwitchName; } set { vSwitchName = value; } } } } }