/* * 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.As.V20180419 { using Newtonsoft.Json; using System.Threading.Tasks; using TencentCloud.Common; using TencentCloud.Common.Profile; using TencentCloud.As.V20180419.Models; public class AsClient : AbstractClient{ private const string endpoint = "as.tencentcloudapi.com"; private const string version = "2018-04-19"; /// /// Client constructor. /// /// Credentials. /// Region name, such as "ap-guangzhou". public AsClient(Credential credential, string region) : this(credential, region, new ClientProfile()) { } /// /// Client Constructor. /// /// Credentials. /// Region name, such as "ap-guangzhou". /// Client profiles. public AsClient(Credential credential, string region, ClientProfile profile) : base(endpoint, version, credential, region, profile) { } /// /// 本接口(AttachInstances)用于将 CVM 实例添加到伸缩组。 /// /// /// public async Task AttachInstances(AttachInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "AttachInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(AttachInstances)用于将 CVM 实例添加到伸缩组。 /// /// /// public AttachInstancesResponse AttachInstancesSync(AttachInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "AttachInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CompleteLifecycleAction)用于完成生命周期动作。 /// /// * 用户通过调用本接口,指定一个具体的生命周期挂钩的结果(“CONITNUE”或者“ABANDON”)。如果一直不调用本接口,则生命周期挂钩会在超时后按照“DefaultResult”进行处理。 /// /// /// public async Task CompleteLifecycleAction(CompleteLifecycleActionRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CompleteLifecycleAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CompleteLifecycleAction)用于完成生命周期动作。 /// /// * 用户通过调用本接口,指定一个具体的生命周期挂钩的结果(“CONITNUE”或者“ABANDON”)。如果一直不调用本接口,则生命周期挂钩会在超时后按照“DefaultResult”进行处理。 /// /// /// public CompleteLifecycleActionResponse CompleteLifecycleActionSync(CompleteLifecycleActionRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CompleteLifecycleAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateAutoScalingGroup)用于创建伸缩组 /// /// /// public async Task CreateAutoScalingGroup(CreateAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateAutoScalingGroup)用于创建伸缩组 /// /// /// public CreateAutoScalingGroupResponse CreateAutoScalingGroupSync(CreateAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateAutoScalingGroupFromInstance)用于根据实例创建启动配置及伸缩组。 /// /// 说明:根据按包年包月计费的实例所创建的伸缩组,其扩容的实例为按量计费实例。 /// /// /// public async Task CreateAutoScalingGroupFromInstance(CreateAutoScalingGroupFromInstanceRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateAutoScalingGroupFromInstance"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateAutoScalingGroupFromInstance)用于根据实例创建启动配置及伸缩组。 /// /// 说明:根据按包年包月计费的实例所创建的伸缩组,其扩容的实例为按量计费实例。 /// /// /// public CreateAutoScalingGroupFromInstanceResponse CreateAutoScalingGroupFromInstanceSync(CreateAutoScalingGroupFromInstanceRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateAutoScalingGroupFromInstance"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateLaunchConfiguration)用于创建新的启动配置。 /// /// * 启动配置,可以通过 `ModifyLaunchConfigurationAttributes` 修改少量字段。如需使用新的启动配置,建议重新创建启动配置。 /// /// * 每个项目最多只能创建20个启动配置,详见[使用限制](https://cloud.tencent.com/document/product/377/3120)。 /// /// /// public async Task CreateLaunchConfiguration(CreateLaunchConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateLaunchConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateLaunchConfiguration)用于创建新的启动配置。 /// /// * 启动配置,可以通过 `ModifyLaunchConfigurationAttributes` 修改少量字段。如需使用新的启动配置,建议重新创建启动配置。 /// /// * 每个项目最多只能创建20个启动配置,详见[使用限制](https://cloud.tencent.com/document/product/377/3120)。 /// /// /// public CreateLaunchConfigurationResponse CreateLaunchConfigurationSync(CreateLaunchConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateLaunchConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateLifecycleHook)用于创建生命周期挂钩。 /// /// * 您可以为生命周期挂钩配置消息通知,弹性伸缩会通知您的CMQ消息队列,通知内容形如: /// /// ``` /// { /// "Service": "Tencent Cloud Auto Scaling", /// "Time": "2019-03-14T10:15:11Z", /// "AppId": "1251783334", /// "ActivityId": "asa-fznnvrja", /// "AutoScalingGroupId": "asg-rrrrtttt", /// "LifecycleHookId": "ash-xxxxyyyy", /// "LifecycleHookName": "my-hook", /// "LifecycleActionToken": "3080e1c9-0efe-4dd7-ad3b-90cd6618298f", /// "InstanceId": "ins-aaaabbbb", /// "LifecycleTransition": "INSTANCE_LAUNCHING", /// "NotificationMetadata": "" /// } /// ``` /// /// /// public async Task CreateLifecycleHook(CreateLifecycleHookRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateLifecycleHook"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateLifecycleHook)用于创建生命周期挂钩。 /// /// * 您可以为生命周期挂钩配置消息通知,弹性伸缩会通知您的CMQ消息队列,通知内容形如: /// /// ``` /// { /// "Service": "Tencent Cloud Auto Scaling", /// "Time": "2019-03-14T10:15:11Z", /// "AppId": "1251783334", /// "ActivityId": "asa-fznnvrja", /// "AutoScalingGroupId": "asg-rrrrtttt", /// "LifecycleHookId": "ash-xxxxyyyy", /// "LifecycleHookName": "my-hook", /// "LifecycleActionToken": "3080e1c9-0efe-4dd7-ad3b-90cd6618298f", /// "InstanceId": "ins-aaaabbbb", /// "LifecycleTransition": "INSTANCE_LAUNCHING", /// "NotificationMetadata": "" /// } /// ``` /// /// /// public CreateLifecycleHookResponse CreateLifecycleHookSync(CreateLifecycleHookRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateLifecycleHook"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateNotificationConfiguration)用于创建通知。 /// /// /// public async Task CreateNotificationConfiguration(CreateNotificationConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateNotificationConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateNotificationConfiguration)用于创建通知。 /// /// /// public CreateNotificationConfigurationResponse CreateNotificationConfigurationSync(CreateNotificationConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateNotificationConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口 (CreatePaiInstance) 用于创建一个指定配置的PAI实例。 /// /// /// public async Task CreatePaiInstance(CreatePaiInstanceRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreatePaiInstance"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口 (CreatePaiInstance) 用于创建一个指定配置的PAI实例。 /// /// /// public CreatePaiInstanceResponse CreatePaiInstanceSync(CreatePaiInstanceRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreatePaiInstance"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateScalingPolicy)用于创建告警触发策略。 /// /// /// public async Task CreateScalingPolicy(CreateScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateScalingPolicy)用于创建告警触发策略。 /// /// /// public CreateScalingPolicyResponse CreateScalingPolicySync(CreateScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateScheduledAction)用于创建定时任务。 /// /// /// public async Task CreateScheduledAction(CreateScheduledActionRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateScheduledAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(CreateScheduledAction)用于创建定时任务。 /// /// /// public CreateScheduledActionResponse CreateScheduledActionSync(CreateScheduledActionRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateScheduledAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteAutoScalingGroup)用于删除指定伸缩组,删除前提是伸缩组内无实例且当前未在执行伸缩活动。 /// /// /// public async Task DeleteAutoScalingGroup(DeleteAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DeleteAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteAutoScalingGroup)用于删除指定伸缩组,删除前提是伸缩组内无实例且当前未在执行伸缩活动。 /// /// /// public DeleteAutoScalingGroupResponse DeleteAutoScalingGroupSync(DeleteAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DeleteAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteLaunchConfiguration)用于删除启动配置。 /// /// * 若启动配置在伸缩组中属于生效状态,则该启动配置不允许删除。 /// /// /// public async Task DeleteLaunchConfiguration(DeleteLaunchConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DeleteLaunchConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteLaunchConfiguration)用于删除启动配置。 /// /// * 若启动配置在伸缩组中属于生效状态,则该启动配置不允许删除。 /// /// /// public DeleteLaunchConfigurationResponse DeleteLaunchConfigurationSync(DeleteLaunchConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DeleteLaunchConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteLifecycleHook)用于删除生命周期挂钩。 /// /// /// public async Task DeleteLifecycleHook(DeleteLifecycleHookRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DeleteLifecycleHook"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteLifecycleHook)用于删除生命周期挂钩。 /// /// /// public DeleteLifecycleHookResponse DeleteLifecycleHookSync(DeleteLifecycleHookRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DeleteLifecycleHook"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteNotificationConfiguration)用于删除特定的通知。 /// /// /// public async Task DeleteNotificationConfiguration(DeleteNotificationConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DeleteNotificationConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteNotificationConfiguration)用于删除特定的通知。 /// /// /// public DeleteNotificationConfigurationResponse DeleteNotificationConfigurationSync(DeleteNotificationConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DeleteNotificationConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteScalingPolicy)用于删除告警触发策略。 /// /// /// public async Task DeleteScalingPolicy(DeleteScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DeleteScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteScalingPolicy)用于删除告警触发策略。 /// /// /// public DeleteScalingPolicyResponse DeleteScalingPolicySync(DeleteScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DeleteScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteScheduledAction)用于删除特定的定时任务。 /// /// /// public async Task DeleteScheduledAction(DeleteScheduledActionRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DeleteScheduledAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DeleteScheduledAction)用于删除特定的定时任务。 /// /// /// public DeleteScheduledActionResponse DeleteScheduledActionSync(DeleteScheduledActionRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DeleteScheduledAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAccountLimits)用于查询用户账户在弹性伸缩中的资源限制。 /// /// /// public async Task DescribeAccountLimits(DescribeAccountLimitsRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeAccountLimits"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAccountLimits)用于查询用户账户在弹性伸缩中的资源限制。 /// /// /// public DescribeAccountLimitsResponse DescribeAccountLimitsSync(DescribeAccountLimitsRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeAccountLimits"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingActivities)用于查询伸缩组的伸缩活动记录。 /// /// /// public async Task DescribeAutoScalingActivities(DescribeAutoScalingActivitiesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeAutoScalingActivities"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingActivities)用于查询伸缩组的伸缩活动记录。 /// /// /// public DescribeAutoScalingActivitiesResponse DescribeAutoScalingActivitiesSync(DescribeAutoScalingActivitiesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeAutoScalingActivities"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingGroupLastActivities)用于查询伸缩组的最新一次伸缩活动记录。 /// /// /// public async Task DescribeAutoScalingGroupLastActivities(DescribeAutoScalingGroupLastActivitiesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeAutoScalingGroupLastActivities"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingGroupLastActivities)用于查询伸缩组的最新一次伸缩活动记录。 /// /// /// public DescribeAutoScalingGroupLastActivitiesResponse DescribeAutoScalingGroupLastActivitiesSync(DescribeAutoScalingGroupLastActivitiesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeAutoScalingGroupLastActivities"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingGroups)用于查询伸缩组信息。 /// /// * 可以根据伸缩组ID、伸缩组名称或者启动配置ID等信息来查询伸缩组的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的伸缩组。 /// /// /// public async Task DescribeAutoScalingGroups(DescribeAutoScalingGroupsRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeAutoScalingGroups"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingGroups)用于查询伸缩组信息。 /// /// * 可以根据伸缩组ID、伸缩组名称或者启动配置ID等信息来查询伸缩组的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的伸缩组。 /// /// /// public DescribeAutoScalingGroupsResponse DescribeAutoScalingGroupsSync(DescribeAutoScalingGroupsRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeAutoScalingGroups"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingInstances)用于查询弹性伸缩关联实例的信息。 /// /// * 可以根据实例ID、伸缩组ID等信息来查询实例的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的实例。 /// /// /// public async Task DescribeAutoScalingInstances(DescribeAutoScalingInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeAutoScalingInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeAutoScalingInstances)用于查询弹性伸缩关联实例的信息。 /// /// * 可以根据实例ID、伸缩组ID等信息来查询实例的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的实例。 /// /// /// public DescribeAutoScalingInstancesResponse DescribeAutoScalingInstancesSync(DescribeAutoScalingInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeAutoScalingInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeLaunchConfigurations)用于查询启动配置的信息。 /// /// * 可以根据启动配置ID、启动配置名称等信息来查询启动配置的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的启动配置。 /// /// /// public async Task DescribeLaunchConfigurations(DescribeLaunchConfigurationsRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeLaunchConfigurations"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeLaunchConfigurations)用于查询启动配置的信息。 /// /// * 可以根据启动配置ID、启动配置名称等信息来查询启动配置的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的启动配置。 /// /// /// public DescribeLaunchConfigurationsResponse DescribeLaunchConfigurationsSync(DescribeLaunchConfigurationsRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeLaunchConfigurations"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeLifecycleHooks)用于查询生命周期挂钩信息。 /// /// * 可以根据伸缩组ID、生命周期挂钩ID或者生命周期挂钩名称等信息来查询生命周期挂钩的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的生命周期挂钩。 /// /// /// public async Task DescribeLifecycleHooks(DescribeLifecycleHooksRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeLifecycleHooks"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeLifecycleHooks)用于查询生命周期挂钩信息。 /// /// * 可以根据伸缩组ID、生命周期挂钩ID或者生命周期挂钩名称等信息来查询生命周期挂钩的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的生命周期挂钩。 /// /// /// public DescribeLifecycleHooksResponse DescribeLifecycleHooksSync(DescribeLifecycleHooksRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeLifecycleHooks"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口 (DescribeNotificationConfigurations) 用于查询一个或多个通知的详细信息。 /// /// 可以根据通知ID、伸缩组ID等信息来查询通知的详细信息。过滤信息详细请见过滤器`Filter`。 /// 如果参数为空,返回当前用户一定数量(Limit所指定的数量,默认为20)的通知。 /// /// /// public async Task DescribeNotificationConfigurations(DescribeNotificationConfigurationsRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeNotificationConfigurations"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口 (DescribeNotificationConfigurations) 用于查询一个或多个通知的详细信息。 /// /// 可以根据通知ID、伸缩组ID等信息来查询通知的详细信息。过滤信息详细请见过滤器`Filter`。 /// 如果参数为空,返回当前用户一定数量(Limit所指定的数量,默认为20)的通知。 /// /// /// public DescribeNotificationConfigurationsResponse DescribeNotificationConfigurationsSync(DescribeNotificationConfigurationsRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeNotificationConfigurations"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribePaiInstances)用于查询PAI实例信息。 /// /// * 可以根据实例ID、实例域名等信息来查询PAI实例的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的PAI实例。 /// /// /// public async Task DescribePaiInstances(DescribePaiInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribePaiInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribePaiInstances)用于查询PAI实例信息。 /// /// * 可以根据实例ID、实例域名等信息来查询PAI实例的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(`Limit`所指定的数量,默认为20)的PAI实例。 /// /// /// public DescribePaiInstancesResponse DescribePaiInstancesSync(DescribePaiInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribePaiInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeScalingPolicies)用于查询告警触发策略。 /// /// /// public async Task DescribeScalingPolicies(DescribeScalingPoliciesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeScalingPolicies"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DescribeScalingPolicies)用于查询告警触发策略。 /// /// /// public DescribeScalingPoliciesResponse DescribeScalingPoliciesSync(DescribeScalingPoliciesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeScalingPolicies"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口 (DescribeScheduledActions) 用于查询一个或多个定时任务的详细信息。 /// /// * 可以根据定时任务ID、定时任务名称或者伸缩组ID等信息来查询定时任务的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(Limit所指定的数量,默认为20)的定时任务。 /// /// /// public async Task DescribeScheduledActions(DescribeScheduledActionsRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeScheduledActions"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口 (DescribeScheduledActions) 用于查询一个或多个定时任务的详细信息。 /// /// * 可以根据定时任务ID、定时任务名称或者伸缩组ID等信息来查询定时任务的详细信息。过滤信息详细请见过滤器`Filter`。 /// * 如果参数为空,返回当前用户一定数量(Limit所指定的数量,默认为20)的定时任务。 /// /// /// public DescribeScheduledActionsResponse DescribeScheduledActionsSync(DescribeScheduledActionsRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeScheduledActions"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DetachInstances)用于从伸缩组移出 CVM 实例,本接口不会销毁实例。 /// /// /// public async Task DetachInstances(DetachInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DetachInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DetachInstances)用于从伸缩组移出 CVM 实例,本接口不会销毁实例。 /// /// /// public DetachInstancesResponse DetachInstancesSync(DetachInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DetachInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DisableAutoScalingGroup)用于停用指定伸缩组。 /// /// /// public async Task DisableAutoScalingGroup(DisableAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DisableAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(DisableAutoScalingGroup)用于停用指定伸缩组。 /// /// /// public DisableAutoScalingGroupResponse DisableAutoScalingGroupSync(DisableAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DisableAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(EnableAutoScalingGroup)用于启用指定伸缩组。 /// /// /// public async Task EnableAutoScalingGroup(EnableAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "EnableAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(EnableAutoScalingGroup)用于启用指定伸缩组。 /// /// /// public EnableAutoScalingGroupResponse EnableAutoScalingGroupSync(EnableAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "EnableAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ExecuteScalingPolicy)用于执行伸缩策略。 /// /// * 可以根据伸缩策略ID执行伸缩策略。 /// * 伸缩策略所属伸缩组处于伸缩活动时,会拒绝执行伸缩策略。 /// /// /// public async Task ExecuteScalingPolicy(ExecuteScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ExecuteScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ExecuteScalingPolicy)用于执行伸缩策略。 /// /// * 可以根据伸缩策略ID执行伸缩策略。 /// * 伸缩策略所属伸缩组处于伸缩活动时,会拒绝执行伸缩策略。 /// /// /// public ExecuteScalingPolicyResponse ExecuteScalingPolicySync(ExecuteScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ExecuteScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyAutoScalingGroup)用于修改伸缩组。 /// /// /// public async Task ModifyAutoScalingGroup(ModifyAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyAutoScalingGroup)用于修改伸缩组。 /// /// /// public ModifyAutoScalingGroupResponse ModifyAutoScalingGroupSync(ModifyAutoScalingGroupRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyAutoScalingGroup"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyDesiredCapacity)用于修改指定伸缩组的期望实例数 /// /// /// public async Task ModifyDesiredCapacity(ModifyDesiredCapacityRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyDesiredCapacity"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyDesiredCapacity)用于修改指定伸缩组的期望实例数 /// /// /// public ModifyDesiredCapacityResponse ModifyDesiredCapacitySync(ModifyDesiredCapacityRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyDesiredCapacity"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyLaunchConfigurationAttributes)用于修改启动配置部分属性。 /// /// * 修改启动配置后,已经使用该启动配置扩容的存量实例不会发生变更,此后使用该启动配置的新增实例会按照新的配置进行扩容。 /// * 本接口支持修改部分简单类型。 /// /// /// public async Task ModifyLaunchConfigurationAttributes(ModifyLaunchConfigurationAttributesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyLaunchConfigurationAttributes"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyLaunchConfigurationAttributes)用于修改启动配置部分属性。 /// /// * 修改启动配置后,已经使用该启动配置扩容的存量实例不会发生变更,此后使用该启动配置的新增实例会按照新的配置进行扩容。 /// * 本接口支持修改部分简单类型。 /// /// /// public ModifyLaunchConfigurationAttributesResponse ModifyLaunchConfigurationAttributesSync(ModifyLaunchConfigurationAttributesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyLaunchConfigurationAttributes"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyLoadBalancers)用于修改伸缩组的负载均衡器。 /// /// * 本接口用于为伸缩组指定新的负载均衡器配置,采用“完全覆盖”风格,无论之前配置如何,统一按照接口参数配置为新的负载均衡器。 /// * 如果要为伸缩组清空负载均衡器,则在调用本接口时仅指定伸缩组ID,不指定具体负载均衡器。 /// * 本接口会立即修改伸缩组的负载均衡器,并生成一个伸缩活动,异步修改存量实例的负载均衡器。 /// /// /// public async Task ModifyLoadBalancers(ModifyLoadBalancersRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyLoadBalancers"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyLoadBalancers)用于修改伸缩组的负载均衡器。 /// /// * 本接口用于为伸缩组指定新的负载均衡器配置,采用“完全覆盖”风格,无论之前配置如何,统一按照接口参数配置为新的负载均衡器。 /// * 如果要为伸缩组清空负载均衡器,则在调用本接口时仅指定伸缩组ID,不指定具体负载均衡器。 /// * 本接口会立即修改伸缩组的负载均衡器,并生成一个伸缩活动,异步修改存量实例的负载均衡器。 /// /// /// public ModifyLoadBalancersResponse ModifyLoadBalancersSync(ModifyLoadBalancersRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyLoadBalancers"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyNotificationConfiguration)用于修改通知。 /// /// /// public async Task ModifyNotificationConfiguration(ModifyNotificationConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyNotificationConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyNotificationConfiguration)用于修改通知。 /// /// /// public ModifyNotificationConfigurationResponse ModifyNotificationConfigurationSync(ModifyNotificationConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyNotificationConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyScalingPolicy)用于修改告警触发策略。 /// /// /// public async Task ModifyScalingPolicy(ModifyScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyScalingPolicy)用于修改告警触发策略。 /// /// /// public ModifyScalingPolicyResponse ModifyScalingPolicySync(ModifyScalingPolicyRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyScalingPolicy"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyScheduledAction)用于修改定时任务。 /// /// /// public async Task ModifyScheduledAction(ModifyScheduledActionRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ModifyScheduledAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(ModifyScheduledAction)用于修改定时任务。 /// /// /// public ModifyScheduledActionResponse ModifyScheduledActionSync(ModifyScheduledActionRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ModifyScheduledAction"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(PreviewPaiDomainName)用于预览PAI实例域名。 /// /// /// public async Task PreviewPaiDomainName(PreviewPaiDomainNameRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "PreviewPaiDomainName"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(PreviewPaiDomainName)用于预览PAI实例域名。 /// /// /// public PreviewPaiDomainNameResponse PreviewPaiDomainNameSync(PreviewPaiDomainNameRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "PreviewPaiDomainName"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(RemoveInstances)用于从伸缩组删除 CVM 实例。根据当前的产品逻辑,如果实例由弹性伸缩自动创建,则实例会被销毁;如果实例系创建后加入伸缩组的,则会从伸缩组中移除,保留实例。 /// /// /// public async Task RemoveInstances(RemoveInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "RemoveInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(RemoveInstances)用于从伸缩组删除 CVM 实例。根据当前的产品逻辑,如果实例由弹性伸缩自动创建,则实例会被销毁;如果实例系创建后加入伸缩组的,则会从伸缩组中移除,保留实例。 /// /// /// public RemoveInstancesResponse RemoveInstancesSync(RemoveInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "RemoveInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(SetInstancesProtection)用于设置实例移除保护。 /// 子机设置为移除保护之后,当发生不健康替换、报警策略、期望值变更等触发缩容时,将不对此子机缩容操作。 /// /// /// public async Task SetInstancesProtection(SetInstancesProtectionRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "SetInstancesProtection"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(SetInstancesProtection)用于设置实例移除保护。 /// 子机设置为移除保护之后,当发生不健康替换、报警策略、期望值变更等触发缩容时,将不对此子机缩容操作。 /// /// /// public SetInstancesProtectionResponse SetInstancesProtectionSync(SetInstancesProtectionRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "SetInstancesProtection"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(StartAutoScalingInstances)用于开启伸缩组内 CVM 实例。 /// * 开机成功,实例转为`IN_SERVICE`状态后,会增加期望实例数,期望实例数不可超过设置的最大值 /// * 本接口支持批量操作,每次请求开机实例的上限为100 /// /// /// public async Task StartAutoScalingInstances(StartAutoScalingInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "StartAutoScalingInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(StartAutoScalingInstances)用于开启伸缩组内 CVM 实例。 /// * 开机成功,实例转为`IN_SERVICE`状态后,会增加期望实例数,期望实例数不可超过设置的最大值 /// * 本接口支持批量操作,每次请求开机实例的上限为100 /// /// /// public StartAutoScalingInstancesResponse StartAutoScalingInstancesSync(StartAutoScalingInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "StartAutoScalingInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(StopAutoScalingInstances)用于关闭伸缩组内 CVM 实例。 /// * 关机方式采用`SOFT_FIRST`方式,表示在正常关闭失败后进行强制关闭 /// * 关闭`IN_SERVICE`状态的实例,会减少期望实例数,期望实例数不可低于设置的最小值 /// * 使用`STOP_CHARGING`选项关机,待关机的实例需要满足[关机不收费条件](https://cloud.tencent.com/document/product/213/19918) /// * 本接口支持批量操作,每次请求关机实例的上限为100 /// /// /// public async Task StopAutoScalingInstances(StopAutoScalingInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "StopAutoScalingInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(StopAutoScalingInstances)用于关闭伸缩组内 CVM 实例。 /// * 关机方式采用`SOFT_FIRST`方式,表示在正常关闭失败后进行强制关闭 /// * 关闭`IN_SERVICE`状态的实例,会减少期望实例数,期望实例数不可低于设置的最小值 /// * 使用`STOP_CHARGING`选项关机,待关机的实例需要满足[关机不收费条件](https://cloud.tencent.com/document/product/213/19918) /// * 本接口支持批量操作,每次请求关机实例的上限为100 /// /// /// public StopAutoScalingInstancesResponse StopAutoScalingInstancesSync(StopAutoScalingInstancesRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "StopAutoScalingInstances"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(UpgradeLaunchConfiguration)用于升级启动配置。 /// /// * 本接口用于升级启动配置,采用“完全覆盖”风格,无论之前参数如何,统一按照接口参数设置为新的配置。对于非必填字段,不填写则按照默认值赋值。 /// * 升级修改启动配置后,已经使用该启动配置扩容的存量实例不会发生变更,此后使用该启动配置的新增实例会按照新的配置进行扩容。 /// /// /// public async Task UpgradeLaunchConfiguration(UpgradeLaunchConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "UpgradeLaunchConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(UpgradeLaunchConfiguration)用于升级启动配置。 /// /// * 本接口用于升级启动配置,采用“完全覆盖”风格,无论之前参数如何,统一按照接口参数设置为新的配置。对于非必填字段,不填写则按照默认值赋值。 /// * 升级修改启动配置后,已经使用该启动配置扩容的存量实例不会发生变更,此后使用该启动配置的新增实例会按照新的配置进行扩容。 /// /// /// public UpgradeLaunchConfigurationResponse UpgradeLaunchConfigurationSync(UpgradeLaunchConfigurationRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "UpgradeLaunchConfiguration"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(UpgradeLifecycleHook)用于升级生命周期挂钩。 /// /// * 本接口用于升级生命周期挂钩,采用“完全覆盖”风格,无论之前参数如何,统一按照接口参数设置为新的配置。对于非必填字段,不填写则按照默认值赋值。 /// /// /// public async Task UpgradeLifecycleHook(UpgradeLifecycleHookRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "UpgradeLifecycleHook"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 本接口(UpgradeLifecycleHook)用于升级生命周期挂钩。 /// /// * 本接口用于升级生命周期挂钩,采用“完全覆盖”风格,无论之前参数如何,统一按照接口参数设置为新的配置。对于非必填字段,不填写则按照默认值赋值。 /// /// /// public UpgradeLifecycleHookResponse UpgradeLifecycleHookSync(UpgradeLifecycleHookRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "UpgradeLifecycleHook"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } } }