aliyun-net-sdk-ecs/Ecs/Model/V20140526/ModifyInstanceNetworkSpecRequest.cs (224 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; 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 ModifyInstanceNetworkSpecRequest : RpcAcsRequest<ModifyInstanceNetworkSpecResponse> { public ModifyInstanceNetworkSpecRequest() : base("Ecs", "2014-05-26", "ModifyInstanceNetworkSpec", "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 clientToken; private string iSP; private int? internetMaxBandwidthOut; private string startTime; private bool? autoPay; private string resourceOwnerAccount; private string ownerAccount; private string endTime; private long? ownerId; private string instanceId; private string networkChargeType; private int? internetMaxBandwidthIn; private bool? allocatePublicIp; [JsonProperty(PropertyName = "ResourceOwnerId")] public long? ResourceOwnerId { get { return resourceOwnerId; } set { resourceOwnerId = value; DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); } } [JsonProperty(PropertyName = "ClientToken")] public string ClientToken { get { return clientToken; } set { clientToken = value; DictionaryUtil.Add(QueryParameters, "ClientToken", value); } } [JsonProperty(PropertyName = "ISP")] public string ISP { get { return iSP; } set { iSP = value; DictionaryUtil.Add(QueryParameters, "ISP", value); } } [JsonProperty(PropertyName = "InternetMaxBandwidthOut")] public int? InternetMaxBandwidthOut { get { return internetMaxBandwidthOut; } set { internetMaxBandwidthOut = value; DictionaryUtil.Add(QueryParameters, "InternetMaxBandwidthOut", value.ToString()); } } [JsonProperty(PropertyName = "StartTime")] public string StartTime { get { return startTime; } set { startTime = value; DictionaryUtil.Add(QueryParameters, "StartTime", value); } } [JsonProperty(PropertyName = "AutoPay")] public bool? AutoPay { get { return autoPay; } set { autoPay = value; DictionaryUtil.Add(QueryParameters, "AutoPay", value.ToString()); } } [JsonProperty(PropertyName = "ResourceOwnerAccount")] public string ResourceOwnerAccount { get { return resourceOwnerAccount; } set { resourceOwnerAccount = value; DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value); } } [JsonProperty(PropertyName = "OwnerAccount")] public string OwnerAccount { get { return ownerAccount; } set { ownerAccount = value; DictionaryUtil.Add(QueryParameters, "OwnerAccount", value); } } [JsonProperty(PropertyName = "EndTime")] public string EndTime { get { return endTime; } set { endTime = value; DictionaryUtil.Add(QueryParameters, "EndTime", value); } } [JsonProperty(PropertyName = "OwnerId")] public long? OwnerId { get { return ownerId; } set { ownerId = value; DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); } } [JsonProperty(PropertyName = "InstanceId")] public string InstanceId { get { return instanceId; } set { instanceId = value; DictionaryUtil.Add(QueryParameters, "InstanceId", value); } } [JsonProperty(PropertyName = "NetworkChargeType")] public string NetworkChargeType { get { return networkChargeType; } set { networkChargeType = value; DictionaryUtil.Add(QueryParameters, "NetworkChargeType", value); } } [JsonProperty(PropertyName = "InternetMaxBandwidthIn")] public int? InternetMaxBandwidthIn { get { return internetMaxBandwidthIn; } set { internetMaxBandwidthIn = value; DictionaryUtil.Add(QueryParameters, "InternetMaxBandwidthIn", value.ToString()); } } [JsonProperty(PropertyName = "AllocatePublicIp")] public bool? AllocatePublicIp { get { return allocatePublicIp; } set { allocatePublicIp = value; DictionaryUtil.Add(QueryParameters, "AllocatePublicIp", value.ToString()); } } public override ModifyInstanceNetworkSpecResponse GetResponse(UnmarshallerContext unmarshallerContext) { return ModifyInstanceNetworkSpecResponseUnmarshaller.Unmarshall(unmarshallerContext); } } }