aws-sdk-opsworks 1.56.0 → 1.58.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opsworks/client.rb +6 -3
- data/lib/aws-sdk-opsworks/layer.rb +3 -3
- data/lib/aws-sdk-opsworks/resource.rb +2 -2
- data/lib/aws-sdk-opsworks/stack.rb +5 -5
- data/lib/aws-sdk-opsworks/stack_summary.rb +2 -2
- data/lib/aws-sdk-opsworks.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bbb114022c9490ecfb9f04c00257364f5e728ff9ac471bb3a09061e4223803f
|
4
|
+
data.tar.gz: fc18723e2a644b2330b24b3cb734cff7506fec7d2374d83187d00155bfacfb36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1eae303c552d4810d51a42423305f6eae9e4d99cce504acc2a06040348feed6329699c3f6d485f076162e9fc0b5e84a8fb910dea5c9f46c818ad1fa6a50fc529
|
7
|
+
data.tar.gz: 2bd1b367f92d34077ce37e8e82a581751e9a60270d0bf01d6aa57c356d68a4a79e3f331b2029d64c8bfd8438916dc3984efe506efb6ffd20457932defd45e4be
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.58.0 (2024-06-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.57.0 (2024-06-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.56.0 (2024-05-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.58.0
|
@@ -89,6 +89,11 @@ module Aws::OpsWorks
|
|
89
89
|
|
90
90
|
# @overload initialize(options)
|
91
91
|
# @param [Hash] options
|
92
|
+
#
|
93
|
+
# @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
|
94
|
+
# A list of plugins to apply to the client. Each plugin is either a
|
95
|
+
# class name or an instance of a plugin class.
|
96
|
+
#
|
92
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
93
98
|
# Your AWS credentials. This can be an instance of any one of the
|
94
99
|
# following classes:
|
@@ -209,7 +214,6 @@ module Aws::OpsWorks
|
|
209
214
|
# 'https://example.com'
|
210
215
|
# 'http://example.com:123'
|
211
216
|
#
|
212
|
-
#
|
213
217
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
214
218
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
215
219
|
# for endpoint discovery enabled operations. Defaults to 1000.
|
@@ -298,7 +302,6 @@ module Aws::OpsWorks
|
|
298
302
|
# throttling. This is a provisional mode that may change behavior
|
299
303
|
# in the future.
|
300
304
|
#
|
301
|
-
#
|
302
305
|
# @option options [String] :sdk_ua_app_id
|
303
306
|
# A unique and opaque application ID that is appended to the
|
304
307
|
# User-Agent header as app/sdk_ua_app_id. It should have a
|
@@ -5754,7 +5757,7 @@ module Aws::OpsWorks
|
|
5754
5757
|
params: params,
|
5755
5758
|
config: config)
|
5756
5759
|
context[:gem_name] = 'aws-sdk-opsworks'
|
5757
|
-
context[:gem_version] = '1.
|
5760
|
+
context[:gem_version] = '1.58.0'
|
5758
5761
|
Seahorse::Client::Request.new(handlers, context)
|
5759
5762
|
end
|
5760
5763
|
|
@@ -238,7 +238,7 @@ module Aws::OpsWorks
|
|
238
238
|
#
|
239
239
|
# @return [self]
|
240
240
|
def load
|
241
|
-
resp = Aws::Plugins::UserAgent.
|
241
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
242
242
|
@client.describe_layers(layer_ids: [@id])
|
243
243
|
end
|
244
244
|
@data = resp.layers[0]
|
@@ -355,7 +355,7 @@ module Aws::OpsWorks
|
|
355
355
|
:retry
|
356
356
|
end
|
357
357
|
end
|
358
|
-
Aws::Plugins::UserAgent.
|
358
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
359
359
|
Aws::Waiters::Waiter.new(options).wait({})
|
360
360
|
end
|
361
361
|
end
|
@@ -369,7 +369,7 @@ module Aws::OpsWorks
|
|
369
369
|
# @return [EmptyStructure]
|
370
370
|
def delete(options = {})
|
371
371
|
options = options.merge(layer_id: @id)
|
372
|
-
resp = Aws::Plugins::UserAgent.
|
372
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
373
373
|
@client.delete_layer(options)
|
374
374
|
end
|
375
375
|
resp.data
|
@@ -355,7 +355,7 @@ module Aws::OpsWorks
|
|
355
355
|
# </note>
|
356
356
|
# @return [Stack]
|
357
357
|
def create_stack(options = {})
|
358
|
-
resp = Aws::Plugins::UserAgent.
|
358
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
359
359
|
@client.create_stack(options)
|
360
360
|
end
|
361
361
|
Stack.new(
|
@@ -402,7 +402,7 @@ module Aws::OpsWorks
|
|
402
402
|
def stacks(options = {})
|
403
403
|
batches = Enumerator.new do |y|
|
404
404
|
batch = []
|
405
|
-
resp = Aws::Plugins::UserAgent.
|
405
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
406
406
|
@client.describe_stacks(options)
|
407
407
|
end
|
408
408
|
resp.data.stacks.each do |s|
|
@@ -233,7 +233,7 @@ module Aws::OpsWorks
|
|
233
233
|
#
|
234
234
|
# @return [self]
|
235
235
|
def load
|
236
|
-
resp = Aws::Plugins::UserAgent.
|
236
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
237
237
|
@client.describe_stacks(stack_ids: [@id])
|
238
238
|
end
|
239
239
|
@data = resp.stacks[0]
|
@@ -350,7 +350,7 @@ module Aws::OpsWorks
|
|
350
350
|
:retry
|
351
351
|
end
|
352
352
|
end
|
353
|
-
Aws::Plugins::UserAgent.
|
353
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
354
354
|
Aws::Waiters::Waiter.new(options).wait({})
|
355
355
|
end
|
356
356
|
end
|
@@ -514,7 +514,7 @@ module Aws::OpsWorks
|
|
514
514
|
# @return [Layer]
|
515
515
|
def create_layer(options = {})
|
516
516
|
options = options.merge(stack_id: @id)
|
517
|
-
resp = Aws::Plugins::UserAgent.
|
517
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
518
518
|
@client.create_layer(options)
|
519
519
|
end
|
520
520
|
Layer.new(
|
@@ -530,7 +530,7 @@ module Aws::OpsWorks
|
|
530
530
|
# @return [EmptyStructure]
|
531
531
|
def delete(options = {})
|
532
532
|
options = options.merge(stack_id: @id)
|
533
|
-
resp = Aws::Plugins::UserAgent.
|
533
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
534
534
|
@client.delete_stack(options)
|
535
535
|
end
|
536
536
|
resp.data
|
@@ -553,7 +553,7 @@ module Aws::OpsWorks
|
|
553
553
|
batches = Enumerator.new do |y|
|
554
554
|
batch = []
|
555
555
|
options = options.merge(stack_id: @id)
|
556
|
-
resp = Aws::Plugins::UserAgent.
|
556
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
557
557
|
@client.describe_layers(options)
|
558
558
|
end
|
559
559
|
resp.data.layers.each do |l|
|
@@ -79,7 +79,7 @@ module Aws::OpsWorks
|
|
79
79
|
#
|
80
80
|
# @return [self]
|
81
81
|
def load
|
82
|
-
resp = Aws::Plugins::UserAgent.
|
82
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
83
83
|
@client.describe_stack_summary(stack_id: @stack_id)
|
84
84
|
end
|
85
85
|
@data = resp.stack_summary
|
@@ -196,7 +196,7 @@ module Aws::OpsWorks
|
|
196
196
|
:retry
|
197
197
|
end
|
198
198
|
end
|
199
|
-
Aws::Plugins::UserAgent.
|
199
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
200
200
|
Aws::Waiters::Waiter.new(options).wait({})
|
201
201
|
end
|
202
202
|
end
|
data/lib/aws-sdk-opsworks.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opsworks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.198.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.198.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|