From 00ef83d00616dd52917331e983ee7a85bd04d961 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Tue, 14 Jan 2025 10:19:27 +0000 Subject: [PATCH] Generated 2014-08-28 for Ess. --- ChangeLog.txt | 4 ++++ services/ess/struct_error_messages.go | 21 +++++++++++++++++++ services/ess/struct_error_messages_item.go | 24 ++++++++++++++++++++++ services/ess/struct_failed_instance_ids.go | 21 +++++++++++++++++++ services/ess/struct_scaling_activity.go | 1 + 5 files changed, 71 insertions(+) create mode 100644 services/ess/struct_error_messages.go create mode 100644 services/ess/struct_error_messages_item.go create mode 100644 services/ess/struct_failed_instance_ids.go diff --git a/ChangeLog.txt b/ChangeLog.txt index 46f5b2f64..7a0eee5bc 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +2025-01-14 Version: v1.63.83 +- Generated 2014-08-28 for `Ess`. +- InstanceRefresh support SkipMatching. + 2025-01-14 Version: v1.63.82 - Generated 2014-05-26 for `Ecs`. - Add EndTerminalSession. diff --git a/services/ess/struct_error_messages.go b/services/ess/struct_error_messages.go new file mode 100644 index 000000000..7c2785f98 --- /dev/null +++ b/services/ess/struct_error_messages.go @@ -0,0 +1,21 @@ +package ess + +//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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// ErrorMessages is a nested struct in ess response +type ErrorMessages struct { + ErrorMessagesItem []ErrorMessagesItem `json:"ErrorMessages" xml:"ErrorMessages"` +} diff --git a/services/ess/struct_error_messages_item.go b/services/ess/struct_error_messages_item.go new file mode 100644 index 000000000..98f5937df --- /dev/null +++ b/services/ess/struct_error_messages_item.go @@ -0,0 +1,24 @@ +package ess + +//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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// ErrorMessagesItem is a nested struct in ess response +type ErrorMessagesItem struct { + Description string `json:"Description" xml:"Description"` + Code string `json:"Code" xml:"Code"` + Message string `json:"Message" xml:"Message"` + FailedInstanceIds FailedInstanceIds `json:"FailedInstanceIds" xml:"FailedInstanceIds"` +} diff --git a/services/ess/struct_failed_instance_ids.go b/services/ess/struct_failed_instance_ids.go new file mode 100644 index 000000000..d2e623dc3 --- /dev/null +++ b/services/ess/struct_failed_instance_ids.go @@ -0,0 +1,21 @@ +package ess + +//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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// FailedInstanceIds is a nested struct in ess response +type FailedInstanceIds struct { + FailedInstanceIds []string `json:"FailedInstanceIds" xml:"FailedInstanceIds"` +} diff --git a/services/ess/struct_scaling_activity.go b/services/ess/struct_scaling_activity.go index 4e426d199..b06462d78 100644 --- a/services/ess/struct_scaling_activity.go +++ b/services/ess/struct_scaling_activity.go @@ -46,4 +46,5 @@ type ScalingActivity struct { StartedInstances StartedInstances `json:"StartedInstances" xml:"StartedInstances"` StoppedInstances StoppedInstances `json:"StoppedInstances" xml:"StoppedInstances"` LifecycleHookContext LifecycleHookContext `json:"LifecycleHookContext" xml:"LifecycleHookContext"` + ErrorMessages ErrorMessages `json:"ErrorMessages" xml:"ErrorMessages"` }