aliyun-net-sdk-ecs/Ecs/Model/V20140526/CreateSnapshotRequest.cs (243 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 CreateSnapshotRequest : RpcAcsRequest<CreateSnapshotResponse>
{
public CreateSnapshotRequest()
: base("Ecs", "2014-05-26", "CreateSnapshot", "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 bool? instantAccess;
private string description;
private string snapshotName;
private string resourceGroupId;
private int? instantAccessRetentionDays;
private string diskId;
private List<string> tags = new List<string>(){ };
private string resourceOwnerAccount;
private string ownerAccount;
private long? ownerId;
private int? retentionDays;
private string category;
public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}
public string ClientToken
{
get
{
return clientToken;
}
set
{
clientToken = value;
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
}
}
public bool? InstantAccess
{
get
{
return instantAccess;
}
set
{
instantAccess = value;
DictionaryUtil.Add(QueryParameters, "InstantAccess", value.ToString());
}
}
public string Description
{
get
{
return description;
}
set
{
description = value;
DictionaryUtil.Add(QueryParameters, "Description", value);
}
}
public string SnapshotName
{
get
{
return snapshotName;
}
set
{
snapshotName = value;
DictionaryUtil.Add(QueryParameters, "SnapshotName", value);
}
}
public string ResourceGroupId
{
get
{
return resourceGroupId;
}
set
{
resourceGroupId = value;
DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value);
}
}
public int? InstantAccessRetentionDays
{
get
{
return instantAccessRetentionDays;
}
set
{
instantAccessRetentionDays = value;
DictionaryUtil.Add(QueryParameters, "InstantAccessRetentionDays", value.ToString());
}
}
public string DiskId
{
get
{
return diskId;
}
set
{
diskId = value;
DictionaryUtil.Add(QueryParameters, "DiskId", 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 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 int? RetentionDays
{
get
{
return retentionDays;
}
set
{
retentionDays = value;
DictionaryUtil.Add(QueryParameters, "RetentionDays", value.ToString());
}
}
public string Category
{
get
{
return category;
}
set
{
category = value;
DictionaryUtil.Add(QueryParameters, "Category", 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 override CreateSnapshotResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return CreateSnapshotResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}