aliyun-net-sdk-ecs/Ecs/Model/V20140526/DescribeRouteTablesRequest.cs (170 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 Aliyun.Acs.Core;
using Aliyun.Acs.Core.Http;
using Aliyun.Acs.Core.Transform;
using Aliyun.Acs.Core.Utils;
using Aliyun.Acs.Ecs.Transform;
using Aliyun.Acs.Ecs.Transform.V20140526;
namespace Aliyun.Acs.Ecs.Model.V20140526
{
public class DescribeRouteTablesRequest : RpcAcsRequest<DescribeRouteTablesResponse>
{
public DescribeRouteTablesRequest()
: base("Ecs", "2014-05-26", "DescribeRouteTables", "ecs", "openAPI")
{
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
{
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Ecs.Endpoint.endpointMap, null);
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Ecs.Endpoint.endpointRegionalType, null);
}
Method = MethodType.POST;
}
private long? resourceOwnerId;
private string vRouterId;
private int? pageNumber;
private string routeTableName;
private int? pageSize;
private string routeTableId;
private string resourceOwnerAccount;
private string ownerAccount;
private long? ownerId;
private string routerType;
private string routerId;
public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}
public string VRouterId
{
get
{
return vRouterId;
}
set
{
vRouterId = value;
DictionaryUtil.Add(QueryParameters, "VRouterId", value);
}
}
public int? PageNumber
{
get
{
return pageNumber;
}
set
{
pageNumber = value;
DictionaryUtil.Add(QueryParameters, "PageNumber", value.ToString());
}
}
public string RouteTableName
{
get
{
return routeTableName;
}
set
{
routeTableName = value;
DictionaryUtil.Add(QueryParameters, "RouteTableName", value);
}
}
public int? PageSize
{
get
{
return pageSize;
}
set
{
pageSize = value;
DictionaryUtil.Add(QueryParameters, "PageSize", value.ToString());
}
}
public string RouteTableId
{
get
{
return routeTableId;
}
set
{
routeTableId = value;
DictionaryUtil.Add(QueryParameters, "RouteTableId", value);
}
}
public string ResourceOwnerAccount
{
get
{
return resourceOwnerAccount;
}
set
{
resourceOwnerAccount = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value);
}
}
public string OwnerAccount
{
get
{
return ownerAccount;
}
set
{
ownerAccount = value;
DictionaryUtil.Add(QueryParameters, "OwnerAccount", value);
}
}
public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}
public string RouterType
{
get
{
return routerType;
}
set
{
routerType = value;
DictionaryUtil.Add(QueryParameters, "RouterType", value);
}
}
public string RouterId
{
get
{
return routerId;
}
set
{
routerId = value;
DictionaryUtil.Add(QueryParameters, "RouterId", value);
}
}
public override DescribeRouteTablesResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return DescribeRouteTablesResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}