aws-sdk-savingsplans 1.27.0 → 1.29.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0fff7fb73bc70a0f5fc6972ba101c1df827c6f3c4239e1455c10e1b6a7acffc
4
- data.tar.gz: 10096be20de08c2c3680d1cef081c3bb08d9de93f0fa340c19814198276f76c0
3
+ metadata.gz: f35c7b68258e423aadf6060c0008f58fc091bada3656649d4eddb81635380fba
4
+ data.tar.gz: 90ce6064d4250d889ab1e6ee89e3bcc7638d7edcbebb50479805894e5727a9f2
5
5
  SHA512:
6
- metadata.gz: 284a6e7c3152c47179871d78fbf44294cc049859c1f2bb942eaeed5327ffda08c96b2f987bcaf515cd3e27cab9f1036df43a8a58b2dbadbaf8ae5427b70b55f8
7
- data.tar.gz: bbdfe91c3a10374fa812ee7e1f809da5c7670a31378aba322cc26bebb9af18100732ca52a3f3645beed7f1502d0780f02c8004ecf0920ee4d12fe95aa0f4734e
6
+ metadata.gz: 41b481373b3f2896ff8d93ff8aa007813697f50af4f4788493b49d4f87bc200c4244116846fdaddeb2224c8a3361805258489614fff5d1954a338a9d2c66d869
7
+ data.tar.gz: 97b773ac2c5baffc9bd3bd083a8e03eabc683ffa1510ab4cfcc5857da0b9d07ae13bf2d2e63230d0f4a6f807221c8c3e4e34a259f7fd7a618fa35f80249af860
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.28.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.27.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -145,4 +157,4 @@ Unreleased Changes
145
157
  1.0.0 (2019-11-06)
146
158
  ------------------
147
159
 
148
- * Feature - Initial release of `aws-sdk-savingsplans`.
160
+ * Feature - Initial release of `aws-sdk-savingsplans`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.29.0
@@ -275,6 +275,11 @@ module Aws::SavingsPlans
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -871,7 +876,7 @@ module Aws::SavingsPlans
871
876
  params: params,
872
877
  config: config)
873
878
  context[:gem_name] = 'aws-sdk-savingsplans'
874
- context[:gem_version] = '1.27.0'
879
+ context[:gem_version] = '1.29.0'
875
880
  Seahorse::Client::Request.new(handlers, context)
876
881
  end
877
882
 
@@ -9,160 +9,67 @@
9
9
 
10
10
  module Aws::SavingsPlans
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
+ end
46
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
47
+ end
48
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
49
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
50
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
51
+ end
52
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
53
+ end
54
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
55
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
56
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
57
+ end
58
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
59
+ end
60
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
61
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
62
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
63
+ end
64
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
65
+ end
66
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
67
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
68
+ end
69
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
70
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
71
+ raise ArgumentError, 'No endpoint could be resolved'
24
72
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
73
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJzdHJp
67
- bmdFcXVhbHMiLCJhcmd2IjpbeyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
68
- ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwibmFtZSJdfSwiYXdzIl19XSwidHlw
69
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
70
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
71
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
72
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
73
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
74
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
75
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
76
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
77
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
78
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
79
- dCI6eyJ1cmwiOiJodHRwczovL3NhdmluZ3NwbGFucy1maXBzLntSZWdpb259
80
- LmFwaS5hd3MiLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1l
81
- Ijoic2lndjQiLCJzaWduaW5nTmFtZSI6InNhdmluZ3NwbGFucyIsInNpZ25p
82
- bmdSZWdpb24iOiJ1cy1lYXN0LTEifV19LCJoZWFkZXJzIjp7fX0sInR5cGUi
83
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
84
- IGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlv
85
- biBkb2VzIG5vdCBzdXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9y
86
- In1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFy
87
- Z3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIs
88
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
89
- LCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6
90
- IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUi
91
- OiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6
92
- eyJ1cmwiOiJodHRwczovL3NhdmluZ3NwbGFucy1maXBzLntSZWdpb259LmFt
93
- YXpvbmF3cy5jb20iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJu
94
- YW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6InNhdmluZ3NwbGFucyIsInNp
95
- Z25pbmdSZWdpb24iOiJ1cy1lYXN0LTEifV19LCJoZWFkZXJzIjp7fX0sInR5
96
- cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJG
97
- SVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
98
- cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
99
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFs
100
- U3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
101
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
102
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
103
- dCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJy
104
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
105
- dHBzOi8vc2F2aW5nc3BsYW5zLntSZWdpb259LmFwaS5hd3MiLCJwcm9wZXJ0
106
- aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5n
107
- TmFtZSI6InNhdmluZ3NwbGFucyIsInNpZ25pbmdSZWdpb24iOiJ1cy1lYXN0
108
- LTEifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
109
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBi
110
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2si
111
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50
112
- Ijp7InVybCI6Imh0dHBzOi8vc2F2aW5nc3BsYW5zLmFtYXpvbmF3cy5jb20i
113
- LCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQi
114
- LCJzaWduaW5nTmFtZSI6InNhdmluZ3NwbGFucyIsInNpZ25pbmdSZWdpb24i
115
- OiJ1cy1lYXN0LTEifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
116
- dCJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
117
- cmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsiZm4iOiJib29sZWFu
118
- RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19
119
- XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4i
120
- OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIi
121
- LCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNG
122
- SVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
123
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
124
- dCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJy
125
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
126
- dHBzOi8vc2F2aW5nc3BsYW5zLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
127
- c3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
128
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMi
129
- OltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwg
130
- YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJv
131
- dGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
132
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVd
133
- fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
134
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRy
135
- IiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRz
136
- RklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
137
- cyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltd
138
- LCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3NhdmluZ3NwbGFucy1maXBz
139
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
140
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
141
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
142
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
143
- ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
144
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
145
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
146
- Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
147
- YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
148
- bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
149
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zYXZpbmdzcGxh
150
- bnMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZm
151
- aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
152
- ZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFj
153
- ayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
154
- b3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
155
- IjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
156
- Zm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJSZWdpb24ifSwi
157
- YXdzLWdsb2JhbCJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc2F2
158
- aW5nc3BsYW5zLmFtYXpvbmF3cy5jb20iLCJwcm9wZXJ0aWVzIjp7ImF1dGhT
159
- Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6InNhdmlu
160
- Z3NwbGFucyIsInNpZ25pbmdSZWdpb24iOiJ1cy1lYXN0LTEifV19LCJoZWFk
161
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10s
162
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc2F2aW5nc3BsYW5zLntSZWdp
163
- b259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMi
164
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfV19
165
-
166
- JSON
167
74
  end
168
75
  end
@@ -10,20 +10,6 @@
10
10
  module Aws::SavingsPlans
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass CreateSavingsPlanRequest
14
- # data as a hash:
15
- #
16
- # {
17
- # savings_plan_offering_id: "SavingsPlanOfferingId", # required
18
- # commitment: "Amount", # required
19
- # upfront_payment_amount: "Amount",
20
- # purchase_time: Time.now,
21
- # client_token: "ClientToken",
22
- # tags: {
23
- # "TagKey" => "TagValue",
24
- # },
25
- # }
26
- #
27
13
  # @!attribute [rw] savings_plan_offering_id
28
14
  # The ID of the offering.
29
15
  # @return [String]
@@ -82,13 +68,6 @@ module Aws::SavingsPlans
82
68
  include Aws::Structure
83
69
  end
84
70
 
85
- # @note When making an API call, you may pass DeleteQueuedSavingsPlanRequest
86
- # data as a hash:
87
- #
88
- # {
89
- # savings_plan_id: "SavingsPlanId", # required
90
- # }
91
- #
92
71
  # @!attribute [rw] savings_plan_id
93
72
  # The ID of the Savings Plan.
94
73
  # @return [String]
@@ -105,21 +84,6 @@ module Aws::SavingsPlans
105
84
  #
106
85
  class DeleteQueuedSavingsPlanResponse < Aws::EmptyStructure; end
107
86
 
108
- # @note When making an API call, you may pass DescribeSavingsPlanRatesRequest
109
- # data as a hash:
110
- #
111
- # {
112
- # savings_plan_id: "SavingsPlanId", # required
113
- # filters: [
114
- # {
115
- # name: "region", # accepts region, instanceType, productDescription, tenancy, productType, serviceCode, usageType, operation
116
- # values: ["String"],
117
- # },
118
- # ],
119
- # next_token: "PaginationToken",
120
- # max_results: 1,
121
- # }
122
- #
123
87
  # @!attribute [rw] savings_plan_id
124
88
  # The ID of the Savings Plan.
125
89
  # @return [String]
@@ -172,27 +136,6 @@ module Aws::SavingsPlans
172
136
  include Aws::Structure
173
137
  end
174
138
 
175
- # @note When making an API call, you may pass DescribeSavingsPlansOfferingRatesRequest
176
- # data as a hash:
177
- #
178
- # {
179
- # savings_plan_offering_ids: ["UUID"],
180
- # savings_plan_payment_options: ["All Upfront"], # accepts All Upfront, Partial Upfront, No Upfront
181
- # savings_plan_types: ["Compute"], # accepts Compute, EC2Instance, SageMaker
182
- # products: ["EC2"], # accepts EC2, Fargate, Lambda, SageMaker
183
- # service_codes: ["AmazonEC2"], # accepts AmazonEC2, AmazonECS, AmazonEKS, AWSLambda, AmazonSageMaker
184
- # usage_types: ["SavingsPlanRateUsageType"],
185
- # operations: ["SavingsPlanRateOperation"],
186
- # filters: [
187
- # {
188
- # name: "region", # accepts region, instanceFamily, instanceType, productDescription, tenancy, productId
189
- # values: ["JsonSafeFilterValueString"],
190
- # },
191
- # ],
192
- # next_token: "PaginationToken",
193
- # max_results: 1,
194
- # }
195
- #
196
139
  # @!attribute [rw] savings_plan_offering_ids
197
140
  # The IDs of the offerings.
198
141
  # @return [Array<String>]
@@ -270,30 +213,6 @@ module Aws::SavingsPlans
270
213
  include Aws::Structure
271
214
  end
272
215
 
273
- # @note When making an API call, you may pass DescribeSavingsPlansOfferingsRequest
274
- # data as a hash:
275
- #
276
- # {
277
- # offering_ids: ["UUID"],
278
- # payment_options: ["All Upfront"], # accepts All Upfront, Partial Upfront, No Upfront
279
- # product_type: "EC2", # accepts EC2, Fargate, Lambda, SageMaker
280
- # plan_types: ["Compute"], # accepts Compute, EC2Instance, SageMaker
281
- # durations: [1],
282
- # currencies: ["CNY"], # accepts CNY, USD
283
- # descriptions: ["SavingsPlanDescription"],
284
- # service_codes: ["SavingsPlanServiceCode"],
285
- # usage_types: ["SavingsPlanUsageType"],
286
- # operations: ["SavingsPlanOperation"],
287
- # filters: [
288
- # {
289
- # name: "region", # accepts region, instanceFamily
290
- # values: ["JsonSafeFilterValueString"],
291
- # },
292
- # ],
293
- # next_token: "PaginationToken",
294
- # max_results: 1,
295
- # }
296
- #
297
216
  # @!attribute [rw] offering_ids
298
217
  # The IDs of the offerings.
299
218
  # @return [Array<String>]
@@ -386,23 +305,6 @@ module Aws::SavingsPlans
386
305
  include Aws::Structure
387
306
  end
388
307
 
389
- # @note When making an API call, you may pass DescribeSavingsPlansRequest
390
- # data as a hash:
391
- #
392
- # {
393
- # savings_plan_arns: ["SavingsPlanArn"],
394
- # savings_plan_ids: ["SavingsPlanId"],
395
- # next_token: "PaginationToken",
396
- # max_results: 1,
397
- # states: ["payment-pending"], # accepts payment-pending, payment-failed, active, retired, queued, queued-deleted
398
- # filters: [
399
- # {
400
- # name: "region", # accepts region, ec2-instance-family, commitment, upfront, term, savings-plan-type, payment-option, start, end
401
- # values: ["String"],
402
- # },
403
- # ],
404
- # }
405
- #
406
308
  # @!attribute [rw] savings_plan_arns
407
309
  # The Amazon Resource Names (ARN) of the Savings Plans.
408
310
  # @return [Array<String>]
@@ -473,13 +375,6 @@ module Aws::SavingsPlans
473
375
  include Aws::Structure
474
376
  end
475
377
 
476
- # @note When making an API call, you may pass ListTagsForResourceRequest
477
- # data as a hash:
478
- #
479
- # {
480
- # resource_arn: "SavingsPlanArn", # required
481
- # }
482
- #
483
378
  # @!attribute [rw] resource_arn
484
379
  # The Amazon Resource Name (ARN) of the resource.
485
380
  # @return [String]
@@ -657,14 +552,6 @@ module Aws::SavingsPlans
657
552
 
658
553
  # Information about a filter.
659
554
  #
660
- # @note When making an API call, you may pass SavingsPlanFilter
661
- # data as a hash:
662
- #
663
- # {
664
- # name: "region", # accepts region, ec2-instance-family, commitment, upfront, term, savings-plan-type, payment-option, start, end
665
- # values: ["String"],
666
- # }
667
- #
668
555
  # @!attribute [rw] name
669
556
  # The filter name.
670
557
  # @return [String]
@@ -748,14 +635,6 @@ module Aws::SavingsPlans
748
635
 
749
636
  # Information about a filter.
750
637
  #
751
- # @note When making an API call, you may pass SavingsPlanOfferingFilterElement
752
- # data as a hash:
753
- #
754
- # {
755
- # name: "region", # accepts region, instanceFamily
756
- # values: ["JsonSafeFilterValueString"],
757
- # }
758
- #
759
638
  # @!attribute [rw] name
760
639
  # The filter name.
761
640
  # @return [String]
@@ -843,14 +722,6 @@ module Aws::SavingsPlans
843
722
 
844
723
  # Information about a filter.
845
724
  #
846
- # @note When making an API call, you may pass SavingsPlanOfferingRateFilterElement
847
- # data as a hash:
848
- #
849
- # {
850
- # name: "region", # accepts region, instanceFamily, instanceType, productDescription, tenancy, productId
851
- # values: ["JsonSafeFilterValueString"],
852
- # }
853
- #
854
725
  # @!attribute [rw] name
855
726
  # The filter name.
856
727
  # @return [String]
@@ -938,14 +809,6 @@ module Aws::SavingsPlans
938
809
 
939
810
  # Information about a filter.
940
811
  #
941
- # @note When making an API call, you may pass SavingsPlanRateFilter
942
- # data as a hash:
943
- #
944
- # {
945
- # name: "region", # accepts region, instanceType, productDescription, tenancy, productType, serviceCode, usageType, operation
946
- # values: ["String"],
947
- # }
948
- #
949
812
  # @!attribute [rw] name
950
813
  # The filter name.
951
814
  # @return [String]
@@ -995,16 +858,6 @@ module Aws::SavingsPlans
995
858
  include Aws::Structure
996
859
  end
997
860
 
998
- # @note When making an API call, you may pass TagResourceRequest
999
- # data as a hash:
1000
- #
1001
- # {
1002
- # resource_arn: "SavingsPlanArn", # required
1003
- # tags: { # required
1004
- # "TagKey" => "TagValue",
1005
- # },
1006
- # }
1007
- #
1008
861
  # @!attribute [rw] resource_arn
1009
862
  # The Amazon Resource Name (ARN) of the resource.
1010
863
  # @return [String]
@@ -1027,14 +880,6 @@ module Aws::SavingsPlans
1027
880
  #
1028
881
  class TagResourceResponse < Aws::EmptyStructure; end
1029
882
 
1030
- # @note When making an API call, you may pass UntagResourceRequest
1031
- # data as a hash:
1032
- #
1033
- # {
1034
- # resource_arn: "SavingsPlanArn", # required
1035
- # tag_keys: ["TagKey"], # required
1036
- # }
1037
- #
1038
883
  # @!attribute [rw] resource_arn
1039
884
  # The Amazon Resource Name (ARN) of the resource.
1040
885
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-savingsplans/customizations'
52
52
  # @!group service
53
53
  module Aws::SavingsPlans
54
54
 
55
- GEM_VERSION = '1.27.0'
55
+ GEM_VERSION = '1.29.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-savingsplans
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.29.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement