aliyun-net-sdk-ecs/Ecs/Model/V20140526/ModifyImageAttributeRequest.cs (215 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 ModifyImageAttributeRequest : RpcAcsRequest<ModifyImageAttributeResponse> { public ModifyImageAttributeRequest() : base("Ecs", "2014-05-26", "ModifyImageAttribute", "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 imageId; private string description; private Features features_; private string bootMode; private string imageName; private string licenseType; private string resourceOwnerAccount; private string ownerAccount; private long? ownerId; private string imageFamily; private string status; [JsonProperty(PropertyName = "ResourceOwnerId")] public long? ResourceOwnerId { get { return resourceOwnerId; } set { resourceOwnerId = value; DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); } } [JsonProperty(PropertyName = "ImageId")] public string ImageId { get { return imageId; } set { imageId = value; DictionaryUtil.Add(QueryParameters, "ImageId", value); } } [JsonProperty(PropertyName = "Description")] public string Description { get { return description; } set { description = value; DictionaryUtil.Add(QueryParameters, "Description", value); } } [JsonProperty(PropertyName = "Features")] public Features Features_ { get { return features_; } set { features_ = value; if(features_ != null) { DictionaryUtil.Add(QueryParameters,"Features.NvmeSupport", features_.NvmeSupport); } } } [JsonProperty(PropertyName = "BootMode")] public string BootMode { get { return bootMode; } set { bootMode = value; DictionaryUtil.Add(QueryParameters, "BootMode", value); } } [JsonProperty(PropertyName = "ImageName")] public string ImageName { get { return imageName; } set { imageName = value; DictionaryUtil.Add(QueryParameters, "ImageName", value); } } [JsonProperty(PropertyName = "LicenseType")] public string LicenseType { get { return licenseType; } set { licenseType = value; DictionaryUtil.Add(QueryParameters, "LicenseType", 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 = "OwnerId")] public long? OwnerId { get { return ownerId; } set { ownerId = value; DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); } } [JsonProperty(PropertyName = "ImageFamily")] public string ImageFamily { get { return imageFamily; } set { imageFamily = value; DictionaryUtil.Add(QueryParameters, "ImageFamily", value); } } [JsonProperty(PropertyName = "Status")] public string Status { get { return status; } set { status = value; DictionaryUtil.Add(QueryParameters, "Status", value); } } public class Features { private string nvmeSupport; [JsonProperty(PropertyName = "NvmeSupport")] public string NvmeSupport { get { return nvmeSupport; } set { nvmeSupport = value; } } } public override ModifyImageAttributeResponse GetResponse(UnmarshallerContext unmarshallerContext) { return ModifyImageAttributeResponseUnmarshaller.Unmarshall(unmarshallerContext); } } }