aliyun-net-sdk-ecs/Ecs/Model/V20140526/ModifyAutoSnapshotPolicyRequest.cs (196 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 ModifyAutoSnapshotPolicyRequest : RpcAcsRequest<ModifyAutoSnapshotPolicyResponse>
{
public ModifyAutoSnapshotPolicyRequest()
: base("Ecs", "2014-05-26", "ModifyAutoSnapshotPolicy", "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 bool? dataDiskPolicyEnabled;
private long? resourceOwnerId;
private int? dataDiskPolicyRetentionDays;
private bool? systemDiskPolicyRetentionLastWeek;
private int? systemDiskPolicyRetentionDays;
private int? dataDiskPolicyTimePeriod;
private string resourceOwnerAccount;
private string ownerAccount;
private int? systemDiskPolicyTimePeriod;
private long? ownerId;
private bool? dataDiskPolicyRetentionLastWeek;
private bool? systemDiskPolicyEnabled;
[JsonProperty(PropertyName = "DataDiskPolicyEnabled")]
public bool? DataDiskPolicyEnabled
{
get
{
return dataDiskPolicyEnabled;
}
set
{
dataDiskPolicyEnabled = value;
DictionaryUtil.Add(QueryParameters, "DataDiskPolicyEnabled", value.ToString());
}
}
[JsonProperty(PropertyName = "ResourceOwnerId")]
public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}
[JsonProperty(PropertyName = "DataDiskPolicyRetentionDays")]
public int? DataDiskPolicyRetentionDays
{
get
{
return dataDiskPolicyRetentionDays;
}
set
{
dataDiskPolicyRetentionDays = value;
DictionaryUtil.Add(QueryParameters, "DataDiskPolicyRetentionDays", value.ToString());
}
}
[JsonProperty(PropertyName = "SystemDiskPolicyRetentionLastWeek")]
public bool? SystemDiskPolicyRetentionLastWeek
{
get
{
return systemDiskPolicyRetentionLastWeek;
}
set
{
systemDiskPolicyRetentionLastWeek = value;
DictionaryUtil.Add(QueryParameters, "SystemDiskPolicyRetentionLastWeek", value.ToString());
}
}
[JsonProperty(PropertyName = "SystemDiskPolicyRetentionDays")]
public int? SystemDiskPolicyRetentionDays
{
get
{
return systemDiskPolicyRetentionDays;
}
set
{
systemDiskPolicyRetentionDays = value;
DictionaryUtil.Add(QueryParameters, "SystemDiskPolicyRetentionDays", value.ToString());
}
}
[JsonProperty(PropertyName = "DataDiskPolicyTimePeriod")]
public int? DataDiskPolicyTimePeriod
{
get
{
return dataDiskPolicyTimePeriod;
}
set
{
dataDiskPolicyTimePeriod = value;
DictionaryUtil.Add(QueryParameters, "DataDiskPolicyTimePeriod", 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 = "SystemDiskPolicyTimePeriod")]
public int? SystemDiskPolicyTimePeriod
{
get
{
return systemDiskPolicyTimePeriod;
}
set
{
systemDiskPolicyTimePeriod = value;
DictionaryUtil.Add(QueryParameters, "SystemDiskPolicyTimePeriod", value.ToString());
}
}
[JsonProperty(PropertyName = "OwnerId")]
public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}
[JsonProperty(PropertyName = "DataDiskPolicyRetentionLastWeek")]
public bool? DataDiskPolicyRetentionLastWeek
{
get
{
return dataDiskPolicyRetentionLastWeek;
}
set
{
dataDiskPolicyRetentionLastWeek = value;
DictionaryUtil.Add(QueryParameters, "DataDiskPolicyRetentionLastWeek", value.ToString());
}
}
[JsonProperty(PropertyName = "SystemDiskPolicyEnabled")]
public bool? SystemDiskPolicyEnabled
{
get
{
return systemDiskPolicyEnabled;
}
set
{
systemDiskPolicyEnabled = value;
DictionaryUtil.Add(QueryParameters, "SystemDiskPolicyEnabled", value.ToString());
}
}
public override ModifyAutoSnapshotPolicyResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return ModifyAutoSnapshotPolicyResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}