aliyun-net-sdk-ecs/Ecs/Model/V20140526/DescribeImagesRequest.cs (433 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 DescribeImagesRequest : RpcAcsRequest<DescribeImagesResponse>
{
public DescribeImagesRequest()
: base("Ecs", "2014-05-26", "DescribeImages", "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 string actionType;
private long? imageOwnerId;
private long? resourceOwnerId;
private string imageId;
private string snapshotId;
private string usage;
private int? pageNumber;
private string imageOwnerAlias;
private string resourceGroupId;
private bool? isSupportIoOptimized;
private string imageName;
private bool? isSupportCloudinit;
private bool? isPublic;
private int? pageSize;
private string instanceType;
private List<string> tags = new List<string>(){ };
private string architecture;
private bool? dryRun;
private string resourceOwnerAccount;
private string ownerAccount;
private bool? showExpired;
private string oSType;
private long? ownerId;
private List<string> filters = new List<string>(){ };
private string imageFamily;
private string status;
public string ActionType
{
get
{
return actionType;
}
set
{
actionType = value;
DictionaryUtil.Add(QueryParameters, "ActionType", value);
}
}
public long? ImageOwnerId
{
get
{
return imageOwnerId;
}
set
{
imageOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ImageOwnerId", value.ToString());
}
}
public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}
public string ImageId
{
get
{
return imageId;
}
set
{
imageId = value;
DictionaryUtil.Add(QueryParameters, "ImageId", value);
}
}
public string SnapshotId
{
get
{
return snapshotId;
}
set
{
snapshotId = value;
DictionaryUtil.Add(QueryParameters, "SnapshotId", value);
}
}
public string Usage
{
get
{
return usage;
}
set
{
usage = value;
DictionaryUtil.Add(QueryParameters, "Usage", value);
}
}
public int? PageNumber
{
get
{
return pageNumber;
}
set
{
pageNumber = value;
DictionaryUtil.Add(QueryParameters, "PageNumber", value.ToString());
}
}
public string ImageOwnerAlias
{
get
{
return imageOwnerAlias;
}
set
{
imageOwnerAlias = value;
DictionaryUtil.Add(QueryParameters, "ImageOwnerAlias", value);
}
}
public string ResourceGroupId
{
get
{
return resourceGroupId;
}
set
{
resourceGroupId = value;
DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value);
}
}
public bool? IsSupportIoOptimized
{
get
{
return isSupportIoOptimized;
}
set
{
isSupportIoOptimized = value;
DictionaryUtil.Add(QueryParameters, "IsSupportIoOptimized", value.ToString());
}
}
public string ImageName
{
get
{
return imageName;
}
set
{
imageName = value;
DictionaryUtil.Add(QueryParameters, "ImageName", value);
}
}
public bool? IsSupportCloudinit
{
get
{
return isSupportCloudinit;
}
set
{
isSupportCloudinit = value;
DictionaryUtil.Add(QueryParameters, "IsSupportCloudinit", value.ToString());
}
}
public bool? IsPublic
{
get
{
return isPublic;
}
set
{
isPublic = value;
DictionaryUtil.Add(QueryParameters, "IsPublic", value.ToString());
}
}
public int? PageSize
{
get
{
return pageSize;
}
set
{
pageSize = value;
DictionaryUtil.Add(QueryParameters, "PageSize", value.ToString());
}
}
public string InstanceType
{
get
{
return instanceType;
}
set
{
instanceType = value;
DictionaryUtil.Add(QueryParameters, "InstanceType", value);
}
}
public List<string> Tags
{
get
{
return tags;
}
set
{
tags = value;
if(tags != null)
{
for (int depth1 = 0; depth1 < tags.Count; depth1++)
{
DictionaryUtil.Add(QueryParameters,"Tag." + (depth1 + 1), tags[depth1]);
DictionaryUtil.Add(QueryParameters,"Tag." + (depth1 + 1), tags[depth1]);
}
}
}
}
public string Architecture
{
get
{
return architecture;
}
set
{
architecture = value;
DictionaryUtil.Add(QueryParameters, "Architecture", value);
}
}
public bool? DryRun
{
get
{
return dryRun;
}
set
{
dryRun = value;
DictionaryUtil.Add(QueryParameters, "DryRun", value.ToString());
}
}
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 bool? ShowExpired
{
get
{
return showExpired;
}
set
{
showExpired = value;
DictionaryUtil.Add(QueryParameters, "ShowExpired", value.ToString());
}
}
public string OSType
{
get
{
return oSType;
}
set
{
oSType = value;
DictionaryUtil.Add(QueryParameters, "OSType", value);
}
}
public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}
public List<string> Filters
{
get
{
return filters;
}
set
{
filters = value;
if(filters != null)
{
for (int depth1 = 0; depth1 < filters.Count; depth1++)
{
DictionaryUtil.Add(QueryParameters,"Filter." + (depth1 + 1), filters[depth1]);
DictionaryUtil.Add(QueryParameters,"Filter." + (depth1 + 1), filters[depth1]);
}
}
}
}
public string ImageFamily
{
get
{
return imageFamily;
}
set
{
imageFamily = value;
DictionaryUtil.Add(QueryParameters, "ImageFamily", value);
}
}
public string Status
{
get
{
return status;
}
set
{
status = value;
DictionaryUtil.Add(QueryParameters, "Status", value);
}
}
public class Tag
{
private string value_;
private string key;
public string Value_
{
get
{
return value_;
}
set
{
value_ = value;
}
}
public string Key
{
get
{
return key;
}
set
{
key = value;
}
}
}
public class Filter
{
private string value_;
private string key;
public string Value_
{
get
{
return value_;
}
set
{
value_ = value;
}
}
public string Key
{
get
{
return key;
}
set
{
key = value;
}
}
}
public override DescribeImagesResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return DescribeImagesResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}