aws-sdk-elasticbeanstalk 1.99.0 → 1.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticbeanstalk/client.rb +9 -4
- data/lib/aws-sdk-elasticbeanstalk.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72c029380a3fdaa386569222080cc73538d3caf3c1d65a74f69440f0d3f9c13e
|
|
4
|
+
data.tar.gz: 96bf9cad0162af84ce5578877b49050f6e49b98da61e256281fab70ff66996fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b79dea85368bfdd1f23960d8716804ef4a841e1e6d5d00a4b46edef018ea1d896af8880aff6a3d75d90cf8aa9babd8c30e5c06ec4b4a55e88f95df67a9daf7c5
|
|
7
|
+
data.tar.gz: 13c3835d1af4ea700f4e814a08794b6ef5844acf788f79f0e36dd8ce7e3487936bdee5c2f52f0482826e6be9f67ffdea1178a8ee31de2c0c1774a392815ef43d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.100.0 (2026-03-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs.
|
|
8
|
+
|
|
4
9
|
1.99.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.100.0
|
|
@@ -3465,6 +3465,11 @@ module Aws::ElasticBeanstalk
|
|
|
3465
3465
|
# log files for every Amazon EC2 instance into a `.zip` file. Legacy and
|
|
3466
3466
|
# .NET containers do not support bundle logs.
|
|
3467
3467
|
#
|
|
3468
|
+
# Setting the `InfoType` to `analyze` collects recent events, instance
|
|
3469
|
+
# health, and logs from your environment and sends them to Amazon
|
|
3470
|
+
# Bedrock in your account to generate diagnostic insights and
|
|
3471
|
+
# recommended next steps.
|
|
3472
|
+
#
|
|
3468
3473
|
# Use RetrieveEnvironmentInfo to obtain the set of logs.
|
|
3469
3474
|
#
|
|
3470
3475
|
# Related Topics
|
|
@@ -3513,7 +3518,7 @@ module Aws::ElasticBeanstalk
|
|
|
3513
3518
|
# resp = client.request_environment_info({
|
|
3514
3519
|
# environment_id: "EnvironmentId",
|
|
3515
3520
|
# environment_name: "EnvironmentName",
|
|
3516
|
-
# info_type: "tail", # required, accepts tail, bundle
|
|
3521
|
+
# info_type: "tail", # required, accepts tail, bundle, analyze
|
|
3517
3522
|
# })
|
|
3518
3523
|
#
|
|
3519
3524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RequestEnvironmentInfo AWS API Documentation
|
|
@@ -3632,13 +3637,13 @@ module Aws::ElasticBeanstalk
|
|
|
3632
3637
|
# resp = client.retrieve_environment_info({
|
|
3633
3638
|
# environment_id: "EnvironmentId",
|
|
3634
3639
|
# environment_name: "EnvironmentName",
|
|
3635
|
-
# info_type: "tail", # required, accepts tail, bundle
|
|
3640
|
+
# info_type: "tail", # required, accepts tail, bundle, analyze
|
|
3636
3641
|
# })
|
|
3637
3642
|
#
|
|
3638
3643
|
# @example Response structure
|
|
3639
3644
|
#
|
|
3640
3645
|
# resp.environment_info #=> Array
|
|
3641
|
-
# resp.environment_info[0].info_type #=> String, one of "tail", "bundle"
|
|
3646
|
+
# resp.environment_info[0].info_type #=> String, one of "tail", "bundle", "analyze"
|
|
3642
3647
|
# resp.environment_info[0].ec2_instance_id #=> String
|
|
3643
3648
|
# resp.environment_info[0].sample_timestamp #=> Time
|
|
3644
3649
|
# resp.environment_info[0].message #=> String
|
|
@@ -4652,7 +4657,7 @@ module Aws::ElasticBeanstalk
|
|
|
4652
4657
|
tracer: tracer
|
|
4653
4658
|
)
|
|
4654
4659
|
context[:gem_name] = 'aws-sdk-elasticbeanstalk'
|
|
4655
|
-
context[:gem_version] = '1.
|
|
4660
|
+
context[:gem_version] = '1.100.0'
|
|
4656
4661
|
Seahorse::Client::Request.new(handlers, context)
|
|
4657
4662
|
end
|
|
4658
4663
|
|
data/sig/client.rbs
CHANGED
|
@@ -647,7 +647,7 @@ module Aws
|
|
|
647
647
|
def request_environment_info: (
|
|
648
648
|
?environment_id: ::String,
|
|
649
649
|
?environment_name: ::String,
|
|
650
|
-
info_type: ("tail" | "bundle")
|
|
650
|
+
info_type: ("tail" | "bundle" | "analyze")
|
|
651
651
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
652
652
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
653
653
|
|
|
@@ -666,7 +666,7 @@ module Aws
|
|
|
666
666
|
def retrieve_environment_info: (
|
|
667
667
|
?environment_id: ::String,
|
|
668
668
|
?environment_name: ::String,
|
|
669
|
-
info_type: ("tail" | "bundle")
|
|
669
|
+
info_type: ("tail" | "bundle" | "analyze")
|
|
670
670
|
) -> _RetrieveEnvironmentInfoResponseSuccess
|
|
671
671
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetrieveEnvironmentInfoResponseSuccess
|
|
672
672
|
|
data/sig/types.rbs
CHANGED
|
@@ -517,7 +517,7 @@ module Aws::ElasticBeanstalk
|
|
|
517
517
|
end
|
|
518
518
|
|
|
519
519
|
class EnvironmentInfoDescription
|
|
520
|
-
attr_accessor info_type: ("tail" | "bundle")
|
|
520
|
+
attr_accessor info_type: ("tail" | "bundle" | "analyze")
|
|
521
521
|
attr_accessor ec2_instance_id: ::String
|
|
522
522
|
attr_accessor sample_timestamp: ::Time
|
|
523
523
|
attr_accessor message: ::String
|
|
@@ -819,7 +819,7 @@ module Aws::ElasticBeanstalk
|
|
|
819
819
|
class RequestEnvironmentInfoMessage
|
|
820
820
|
attr_accessor environment_id: ::String
|
|
821
821
|
attr_accessor environment_name: ::String
|
|
822
|
-
attr_accessor info_type: ("tail" | "bundle")
|
|
822
|
+
attr_accessor info_type: ("tail" | "bundle" | "analyze")
|
|
823
823
|
SENSITIVE: []
|
|
824
824
|
end
|
|
825
825
|
|
|
@@ -858,7 +858,7 @@ module Aws::ElasticBeanstalk
|
|
|
858
858
|
class RetrieveEnvironmentInfoMessage
|
|
859
859
|
attr_accessor environment_id: ::String
|
|
860
860
|
attr_accessor environment_name: ::String
|
|
861
|
-
attr_accessor info_type: ("tail" | "bundle")
|
|
861
|
+
attr_accessor info_type: ("tail" | "bundle" | "analyze")
|
|
862
862
|
SENSITIVE: []
|
|
863
863
|
end
|
|
864
864
|
|