aliyun-net-sdk-ecs/Ecs/Model/V20140526/ModifyInstanceAttributeRequest.cs (284 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 ModifyInstanceAttributeRequest : RpcAcsRequest<ModifyInstanceAttributeResponse>
{
public ModifyInstanceAttributeRequest()
: base("Ecs", "2014-05-26", "ModifyInstanceAttribute", "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 bool? recyclable;
private int? networkInterfaceQueueNumber;
private string description;
private bool? deletionProtection;
private string userData;
private string password;
private string hostName;
private string resourceOwnerAccount;
private string ownerAccount;
private string creditSpecification;
private long? ownerId;
private List<string> securityGroupIdss = new List<string>(){ };
private string instanceId;
private string instanceName;
private RemoteConnectionOptions remoteConnectionOptions_;
[JsonProperty(PropertyName = "ResourceOwnerId")]
public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}
[JsonProperty(PropertyName = "Recyclable")]
public bool? Recyclable
{
get
{
return recyclable;
}
set
{
recyclable = value;
DictionaryUtil.Add(QueryParameters, "Recyclable", value.ToString());
}
}
[JsonProperty(PropertyName = "NetworkInterfaceQueueNumber")]
public int? NetworkInterfaceQueueNumber
{
get
{
return networkInterfaceQueueNumber;
}
set
{
networkInterfaceQueueNumber = value;
DictionaryUtil.Add(QueryParameters, "NetworkInterfaceQueueNumber", value.ToString());
}
}
[JsonProperty(PropertyName = "Description")]
public string Description
{
get
{
return description;
}
set
{
description = value;
DictionaryUtil.Add(QueryParameters, "Description", value);
}
}
[JsonProperty(PropertyName = "DeletionProtection")]
public bool? DeletionProtection
{
get
{
return deletionProtection;
}
set
{
deletionProtection = value;
DictionaryUtil.Add(QueryParameters, "DeletionProtection", value.ToString());
}
}
[JsonProperty(PropertyName = "UserData")]
public string UserData
{
get
{
return userData;
}
set
{
userData = value;
DictionaryUtil.Add(QueryParameters, "UserData", value);
}
}
[JsonProperty(PropertyName = "Password")]
public string Password
{
get
{
return password;
}
set
{
password = value;
DictionaryUtil.Add(QueryParameters, "Password", value);
}
}
[JsonProperty(PropertyName = "HostName")]
public string HostName
{
get
{
return hostName;
}
set
{
hostName = value;
DictionaryUtil.Add(QueryParameters, "HostName", value);
}
}
[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 = "CreditSpecification")]
public string CreditSpecification
{
get
{
return creditSpecification;
}
set
{
creditSpecification = value;
DictionaryUtil.Add(QueryParameters, "CreditSpecification", value);
}
}
[JsonProperty(PropertyName = "OwnerId")]
public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}
[JsonProperty(PropertyName = "SecurityGroupIds")]
public List<string> SecurityGroupIdss
{
get
{
return securityGroupIdss;
}
set
{
securityGroupIdss = value;
}
}
[JsonProperty(PropertyName = "InstanceId")]
public string InstanceId
{
get
{
return instanceId;
}
set
{
instanceId = value;
DictionaryUtil.Add(QueryParameters, "InstanceId", value);
}
}
[JsonProperty(PropertyName = "InstanceName")]
public string InstanceName
{
get
{
return instanceName;
}
set
{
instanceName = value;
DictionaryUtil.Add(QueryParameters, "InstanceName", value);
}
}
[JsonProperty(PropertyName = "RemoteConnectionOptions")]
public RemoteConnectionOptions RemoteConnectionOptions_
{
get
{
return remoteConnectionOptions_;
}
set
{
remoteConnectionOptions_ = value;
if(remoteConnectionOptions_ != null)
{
DictionaryUtil.Add(QueryParameters,"RemoteConnectionOptions.Password", remoteConnectionOptions_.Password);
DictionaryUtil.Add(QueryParameters,"RemoteConnectionOptions.Type", remoteConnectionOptions_.Type);
}
}
}
public class RemoteConnectionOptions
{
private string password;
private string type;
[JsonProperty(PropertyName = "Password")]
public string Password
{
get
{
return password;
}
set
{
password = value;
}
}
[JsonProperty(PropertyName = "Type")]
public string Type
{
get
{
return type;
}
set
{
type = value;
}
}
}
public override ModifyInstanceAttributeResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return ModifyInstanceAttributeResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}