/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed 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. */ namespace TencentCloud.Redis.V20180412.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class ModifyInstanceRequest : AbstractModel { /// /// 修改实例操作,如填写:rename-表示实例重命名;modifyProject-修改实例所属项目;modifyAutoRenew-修改实例续费标记 /// [JsonProperty("Operation")] public string Operation{ get; set; } /// /// 实例Id /// [JsonProperty("InstanceIds")] public string[] InstanceIds{ get; set; } /// /// 实例的新名称 /// [JsonProperty("InstanceNames")] public string[] InstanceNames{ get; set; } /// /// 项目Id /// [JsonProperty("ProjectId")] public long? ProjectId{ get; set; } /// /// 自动续费标识。0 - 默认状态(手动续费);1 - 自动续费;2 - 明确不自动续费 /// [JsonProperty("AutoRenews")] public long?[] AutoRenews{ get; set; } /// /// 已经废弃 /// [JsonProperty("InstanceId")] public string InstanceId{ get; set; } /// /// 已经废弃 /// [JsonProperty("InstanceName")] public string InstanceName{ get; set; } /// /// 已经废弃 /// [JsonProperty("AutoRenew")] public long? AutoRenew{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "Operation", this.Operation); this.SetParamArraySimple(map, prefix + "InstanceIds.", this.InstanceIds); this.SetParamArraySimple(map, prefix + "InstanceNames.", this.InstanceNames); this.SetParamSimple(map, prefix + "ProjectId", this.ProjectId); this.SetParamArraySimple(map, prefix + "AutoRenews.", this.AutoRenews); this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId); this.SetParamSimple(map, prefix + "InstanceName", this.InstanceName); this.SetParamSimple(map, prefix + "AutoRenew", this.AutoRenew); } } }