aliyun-net-sdk-ecs/Ecs/Model/V20140526/DescribeVpcsResponse.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 DescribeVpcsResponse : AcsResponse { private int? pageSize; private string requestId; private int? pageNumber; private int? totalCount; private List<DescribeVpcs_Vpc> vpcs; 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<DescribeVpcs_Vpc> Vpcs { get { return vpcs; } set { vpcs = value; } } public class DescribeVpcs_Vpc { private string creationTime; private string vpcName; private string status; private string vpcId; private string vRouterId; private bool? isDefault; private string cidrBlock; private string description; private string regionId; private List<string> vSwitchIds; private List<string> userCidrs; public string CreationTime { get { return creationTime; } set { creationTime = value; } } public string VpcName { get { return vpcName; } set { vpcName = value; } } public string Status { get { return status; } set { status = value; } } public string VpcId { get { return vpcId; } set { vpcId = value; } } public string VRouterId { get { return vRouterId; } set { vRouterId = value; } } public bool? IsDefault { get { return isDefault; } set { isDefault = value; } } public string CidrBlock { get { return cidrBlock; } set { cidrBlock = value; } } public string Description { get { return description; } set { description = value; } } public string RegionId { get { return regionId; } set { regionId = value; } } public List<string> VSwitchIds { get { return vSwitchIds; } set { vSwitchIds = value; } } public List<string> UserCidrs { get { return userCidrs; } set { userCidrs = value; } } } } }