aws-sdk-autoscalingplans 1.23.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 614bc4cd8454fdc4c4a1bb2ac2c64a1741e8bedec1a4c0ee904395100be31a26
4
- data.tar.gz: d4a11c806227807f7c0e58c03462eb3f5139902408625294c2aa40dbfd52251a
3
+ metadata.gz: 660e5366536c081c51ab3affc984c8f46ad5dea274a3f0c8f03d170e811c53b4
4
+ data.tar.gz: dd8f329e160ea62e5e0ef1e32885b2e1ac3b479654bd564922e264aac0fdd0d2
5
5
  SHA512:
6
- metadata.gz: 255b6d7accac1e5e22b16abf98dc7bafbb8286d0d2b2dbf9a0151cbe47e2d406e985e08653dcf5e9d48c7c1e1fac3ff6a6a3951a366a5b97652bcde2be6cdad1
7
- data.tar.gz: fc47ef41aaaaf42fa9d21949205e5ae88baccd52a201c4c4a8b4e61cfbc9b5772d65d514b74e1a4e5f0d80cf08827b9253cc78c5a6514a844c8c3cafd246dfa4
6
+ metadata.gz: da0748013be5972b2af11516922f74a1307bd122fad57fa146b12263d09da637d97663ee422c97408377a25223f5d8f74fc4d9131bde803f89bbab98d569e32a
7
+ data.tar.gz: c5d31c29bf07684b0c974bdb64bda9835a01f5a31f21ffaf308d5420632d0b06f4868e9136907b915f2731d3c883f2917b3494c030541ac50c4a0a55f5ade011
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-autoscalingplans/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::AutoScalingPlans
47
50
 
48
- GEM_VERSION = '1.23.0'
51
+ GEM_VERSION = '1.28.0'
49
52
 
50
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::AutoScalingPlans
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -81,13 +85,28 @@ module Aws::AutoScalingPlans
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::AutoScalingPlans
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::AutoScalingPlans
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -847,7 +866,7 @@ module Aws::AutoScalingPlans
847
866
  params: params,
848
867
  config: config)
849
868
  context[:gem_name] = 'aws-sdk-autoscalingplans'
850
- context[:gem_version] = '1.23.0'
869
+ context[:gem_version] = '1.28.0'
851
870
  Seahorse::Client::Request.new(handlers, context)
852
871
  end
853
872
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -36,6 +38,7 @@ module Aws::AutoScalingPlans
36
38
  class ApplicationSource < Struct.new(
37
39
  :cloud_formation_stack_arn,
38
40
  :tag_filters)
41
+ SENSITIVE = []
39
42
  include Aws::Structure
40
43
  end
41
44
 
@@ -49,6 +52,7 @@ module Aws::AutoScalingPlans
49
52
  #
50
53
  class ConcurrentUpdateException < Struct.new(
51
54
  :message)
55
+ SENSITIVE = []
52
56
  include Aws::Structure
53
57
  end
54
58
 
@@ -144,6 +148,7 @@ module Aws::AutoScalingPlans
144
148
  :scaling_plan_name,
145
149
  :application_source,
146
150
  :scaling_instructions)
151
+ SENSITIVE = []
147
152
  include Aws::Structure
148
153
  end
149
154
 
@@ -157,6 +162,7 @@ module Aws::AutoScalingPlans
157
162
  #
158
163
  class CreateScalingPlanResponse < Struct.new(
159
164
  :scaling_plan_version)
165
+ SENSITIVE = []
160
166
  include Aws::Structure
161
167
  end
162
168
 
@@ -237,6 +243,7 @@ module Aws::AutoScalingPlans
237
243
  :dimensions,
238
244
  :statistic,
239
245
  :unit)
246
+ SENSITIVE = []
240
247
  include Aws::Structure
241
248
  end
242
249
 
@@ -312,6 +319,7 @@ module Aws::AutoScalingPlans
312
319
  :dimensions,
313
320
  :statistic,
314
321
  :unit)
322
+ SENSITIVE = []
315
323
  include Aws::Structure
316
324
  end
317
325
 
@@ -331,6 +339,7 @@ module Aws::AutoScalingPlans
331
339
  class Datapoint < Struct.new(
332
340
  :timestamp,
333
341
  :value)
342
+ SENSITIVE = []
334
343
  include Aws::Structure
335
344
  end
336
345
 
@@ -355,6 +364,7 @@ module Aws::AutoScalingPlans
355
364
  class DeleteScalingPlanRequest < Struct.new(
356
365
  :scaling_plan_name,
357
366
  :scaling_plan_version)
367
+ SENSITIVE = []
358
368
  include Aws::Structure
359
369
  end
360
370
 
@@ -396,6 +406,7 @@ module Aws::AutoScalingPlans
396
406
  :scaling_plan_version,
397
407
  :max_results,
398
408
  :next_token)
409
+ SENSITIVE = []
399
410
  include Aws::Structure
400
411
  end
401
412
 
@@ -413,6 +424,7 @@ module Aws::AutoScalingPlans
413
424
  class DescribeScalingPlanResourcesResponse < Struct.new(
414
425
  :scaling_plan_resources,
415
426
  :next_token)
427
+ SENSITIVE = []
416
428
  include Aws::Structure
417
429
  end
418
430
 
@@ -469,6 +481,7 @@ module Aws::AutoScalingPlans
469
481
  :application_sources,
470
482
  :max_results,
471
483
  :next_token)
484
+ SENSITIVE = []
472
485
  include Aws::Structure
473
486
  end
474
487
 
@@ -486,6 +499,7 @@ module Aws::AutoScalingPlans
486
499
  class DescribeScalingPlansResponse < Struct.new(
487
500
  :scaling_plans,
488
501
  :next_token)
502
+ SENSITIVE = []
489
503
  include Aws::Structure
490
504
  end
491
505
 
@@ -592,6 +606,7 @@ module Aws::AutoScalingPlans
592
606
  :forecast_data_type,
593
607
  :start_time,
594
608
  :end_time)
609
+ SENSITIVE = []
595
610
  include Aws::Structure
596
611
  end
597
612
 
@@ -603,6 +618,7 @@ module Aws::AutoScalingPlans
603
618
  #
604
619
  class GetScalingPlanResourceForecastDataResponse < Struct.new(
605
620
  :datapoints)
621
+ SENSITIVE = []
606
622
  include Aws::Structure
607
623
  end
608
624
 
@@ -615,6 +631,7 @@ module Aws::AutoScalingPlans
615
631
  #
616
632
  class InternalServiceException < Struct.new(
617
633
  :message)
634
+ SENSITIVE = []
618
635
  include Aws::Structure
619
636
  end
620
637
 
@@ -627,6 +644,7 @@ module Aws::AutoScalingPlans
627
644
  #
628
645
  class InvalidNextTokenException < Struct.new(
629
646
  :message)
647
+ SENSITIVE = []
630
648
  include Aws::Structure
631
649
  end
632
650
 
@@ -640,6 +658,7 @@ module Aws::AutoScalingPlans
640
658
  #
641
659
  class LimitExceededException < Struct.new(
642
660
  :message)
661
+ SENSITIVE = []
643
662
  include Aws::Structure
644
663
  end
645
664
 
@@ -666,6 +685,7 @@ module Aws::AutoScalingPlans
666
685
  class MetricDimension < Struct.new(
667
686
  :name,
668
687
  :value)
688
+ SENSITIVE = []
669
689
  include Aws::Structure
670
690
  end
671
691
 
@@ -678,6 +698,7 @@ module Aws::AutoScalingPlans
678
698
  #
679
699
  class ObjectNotFoundException < Struct.new(
680
700
  :message)
701
+ SENSITIVE = []
681
702
  include Aws::Structure
682
703
  end
683
704
 
@@ -718,6 +739,7 @@ module Aws::AutoScalingPlans
718
739
  class PredefinedLoadMetricSpecification < Struct.new(
719
740
  :predefined_load_metric_type,
720
741
  :resource_label)
742
+ SENSITIVE = []
721
743
  include Aws::Structure
722
744
  end
723
745
 
@@ -760,6 +782,7 @@ module Aws::AutoScalingPlans
760
782
  class PredefinedScalingMetricSpecification < Struct.new(
761
783
  :predefined_scaling_metric_type,
762
784
  :resource_label)
785
+ SENSITIVE = []
763
786
  include Aws::Structure
764
787
  end
765
788
 
@@ -1054,6 +1077,7 @@ module Aws::AutoScalingPlans
1054
1077
  :predictive_scaling_mode,
1055
1078
  :scaling_policy_update_behavior,
1056
1079
  :disable_dynamic_scaling)
1080
+ SENSITIVE = []
1057
1081
  include Aws::Structure
1058
1082
  end
1059
1083
 
@@ -1120,6 +1144,7 @@ module Aws::AutoScalingPlans
1120
1144
  :status_message,
1121
1145
  :status_start_time,
1122
1146
  :creation_time)
1147
+ SENSITIVE = []
1123
1148
  include Aws::Structure
1124
1149
  end
1125
1150
 
@@ -1227,6 +1252,7 @@ module Aws::AutoScalingPlans
1227
1252
  :scaling_policies,
1228
1253
  :scaling_status_code,
1229
1254
  :scaling_status_message)
1255
+ SENSITIVE = []
1230
1256
  include Aws::Structure
1231
1257
  end
1232
1258
 
@@ -1251,6 +1277,7 @@ module Aws::AutoScalingPlans
1251
1277
  :policy_name,
1252
1278
  :policy_type,
1253
1279
  :target_tracking_configuration)
1280
+ SENSITIVE = []
1254
1281
  include Aws::Structure
1255
1282
  end
1256
1283
 
@@ -1277,6 +1304,7 @@ module Aws::AutoScalingPlans
1277
1304
  class TagFilter < Struct.new(
1278
1305
  :key,
1279
1306
  :values)
1307
+ SENSITIVE = []
1280
1308
  include Aws::Structure
1281
1309
  end
1282
1310
 
@@ -1376,6 +1404,7 @@ module Aws::AutoScalingPlans
1376
1404
  :scale_out_cooldown,
1377
1405
  :scale_in_cooldown,
1378
1406
  :estimated_instance_warmup)
1407
+ SENSITIVE = []
1379
1408
  include Aws::Structure
1380
1409
  end
1381
1410
 
@@ -1475,6 +1504,7 @@ module Aws::AutoScalingPlans
1475
1504
  :scaling_plan_version,
1476
1505
  :application_source,
1477
1506
  :scaling_instructions)
1507
+ SENSITIVE = []
1478
1508
  include Aws::Structure
1479
1509
  end
1480
1510
 
@@ -1492,6 +1522,7 @@ module Aws::AutoScalingPlans
1492
1522
  #
1493
1523
  class ValidationException < Struct.new(
1494
1524
  :message)
1525
+ SENSITIVE = []
1495
1526
  include Aws::Structure
1496
1527
  end
1497
1528
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-autoscalingplans
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.23.0
4
+ version: 1.28.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: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-09-30 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.71.0
22
+ version: 3.109.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.71.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement