aws-sdk-budgets 1.3.0 → 1.4.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/lib/aws-sdk-budgets.rb +1 -1
- data/lib/aws-sdk-budgets/client.rb +9 -1
- data/lib/aws-sdk-budgets/client_api.rb +2 -0
- data/lib/aws-sdk-budgets/types.rb +20 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57f73f9f9cef59dbcb2b7a4124a6906d9e5e9d70
|
|
4
|
+
data.tar.gz: fc428c1bacb6289c4e33d249912967392c9fbdbc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48e197c76a66b0c47d9c309f6adcbfd92e17e63e52d32c2e6d22a9024c8376b146ea37d25b2a82f1126bf66028dc4a5552efb3de6a8a669c090b67a409327a8c
|
|
7
|
+
data.tar.gz: 54015cc95a6fe041fefff926af376a77ae5b0bff92e5e6ab2bca5e5a7a4431d6cadeffb960c8956478fc5b29cde88f9b4f3225f3c8d78f93105a206f4639324e
|
data/lib/aws-sdk-budgets.rb
CHANGED
|
@@ -191,6 +191,8 @@ module Aws::Budgets
|
|
|
191
191
|
# include_recurring: false,
|
|
192
192
|
# include_other_subscription: false,
|
|
193
193
|
# include_support: false,
|
|
194
|
+
# include_discount: false,
|
|
195
|
+
# use_amortized: false,
|
|
194
196
|
# },
|
|
195
197
|
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
|
196
198
|
# time_period: { # required
|
|
@@ -461,6 +463,8 @@ module Aws::Budgets
|
|
|
461
463
|
# resp.budget.cost_types.include_recurring #=> Boolean
|
|
462
464
|
# resp.budget.cost_types.include_other_subscription #=> Boolean
|
|
463
465
|
# resp.budget.cost_types.include_support #=> Boolean
|
|
466
|
+
# resp.budget.cost_types.include_discount #=> Boolean
|
|
467
|
+
# resp.budget.cost_types.use_amortized #=> Boolean
|
|
464
468
|
# resp.budget.time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY"
|
|
465
469
|
# resp.budget.time_period.start #=> Time
|
|
466
470
|
# resp.budget.time_period.end #=> Time
|
|
@@ -520,6 +524,8 @@ module Aws::Budgets
|
|
|
520
524
|
# resp.budgets[0].cost_types.include_recurring #=> Boolean
|
|
521
525
|
# resp.budgets[0].cost_types.include_other_subscription #=> Boolean
|
|
522
526
|
# resp.budgets[0].cost_types.include_support #=> Boolean
|
|
527
|
+
# resp.budgets[0].cost_types.include_discount #=> Boolean
|
|
528
|
+
# resp.budgets[0].cost_types.use_amortized #=> Boolean
|
|
523
529
|
# resp.budgets[0].time_unit #=> String, one of "DAILY", "MONTHLY", "QUARTERLY", "ANNUALLY"
|
|
524
530
|
# resp.budgets[0].time_period.start #=> Time
|
|
525
531
|
# resp.budgets[0].time_period.end #=> Time
|
|
@@ -670,6 +676,8 @@ module Aws::Budgets
|
|
|
670
676
|
# include_recurring: false,
|
|
671
677
|
# include_other_subscription: false,
|
|
672
678
|
# include_support: false,
|
|
679
|
+
# include_discount: false,
|
|
680
|
+
# use_amortized: false,
|
|
673
681
|
# },
|
|
674
682
|
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
|
675
683
|
# time_period: { # required
|
|
@@ -806,7 +814,7 @@ module Aws::Budgets
|
|
|
806
814
|
params: params,
|
|
807
815
|
config: config)
|
|
808
816
|
context[:gem_name] = 'aws-sdk-budgets'
|
|
809
|
-
context[:gem_version] = '1.
|
|
817
|
+
context[:gem_version] = '1.4.0'
|
|
810
818
|
Seahorse::Client::Request.new(handlers, context)
|
|
811
819
|
end
|
|
812
820
|
|
|
@@ -104,6 +104,8 @@ module Aws::Budgets
|
|
|
104
104
|
CostTypes.add_member(:include_recurring, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IncludeRecurring"))
|
|
105
105
|
CostTypes.add_member(:include_other_subscription, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IncludeOtherSubscription"))
|
|
106
106
|
CostTypes.add_member(:include_support, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IncludeSupport"))
|
|
107
|
+
CostTypes.add_member(:include_discount, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IncludeDiscount"))
|
|
108
|
+
CostTypes.add_member(:use_amortized, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UseAmortized"))
|
|
107
109
|
CostTypes.struct_class = Types::CostTypes
|
|
108
110
|
|
|
109
111
|
CreateBudgetRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "AccountId"))
|
|
@@ -32,6 +32,8 @@ module Aws::Budgets
|
|
|
32
32
|
# include_recurring: false,
|
|
33
33
|
# include_other_subscription: false,
|
|
34
34
|
# include_support: false,
|
|
35
|
+
# include_discount: false,
|
|
36
|
+
# use_amortized: false,
|
|
35
37
|
# },
|
|
36
38
|
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
|
37
39
|
# time_period: { # required
|
|
@@ -144,6 +146,8 @@ module Aws::Budgets
|
|
|
144
146
|
# include_recurring: false,
|
|
145
147
|
# include_other_subscription: false,
|
|
146
148
|
# include_support: false,
|
|
149
|
+
# include_discount: false,
|
|
150
|
+
# use_amortized: false,
|
|
147
151
|
# }
|
|
148
152
|
#
|
|
149
153
|
# @!attribute [rw] include_tax
|
|
@@ -184,6 +188,15 @@ module Aws::Budgets
|
|
|
184
188
|
# A boolean value whether to include support costs in the cost budget.
|
|
185
189
|
# @return [Boolean]
|
|
186
190
|
#
|
|
191
|
+
# @!attribute [rw] include_discount
|
|
192
|
+
# A boolean value whether to include discounts in the cost budget.
|
|
193
|
+
# @return [Boolean]
|
|
194
|
+
#
|
|
195
|
+
# @!attribute [rw] use_amortized
|
|
196
|
+
# A boolean value whether to include amortized costs in the cost
|
|
197
|
+
# budget.
|
|
198
|
+
# @return [Boolean]
|
|
199
|
+
#
|
|
187
200
|
class CostTypes < Struct.new(
|
|
188
201
|
:include_tax,
|
|
189
202
|
:include_subscription,
|
|
@@ -193,7 +206,9 @@ module Aws::Budgets
|
|
|
193
206
|
:include_upfront,
|
|
194
207
|
:include_recurring,
|
|
195
208
|
:include_other_subscription,
|
|
196
|
-
:include_support
|
|
209
|
+
:include_support,
|
|
210
|
+
:include_discount,
|
|
211
|
+
:use_amortized)
|
|
197
212
|
include Aws::Structure
|
|
198
213
|
end
|
|
199
214
|
|
|
@@ -223,6 +238,8 @@ module Aws::Budgets
|
|
|
223
238
|
# include_recurring: false,
|
|
224
239
|
# include_other_subscription: false,
|
|
225
240
|
# include_support: false,
|
|
241
|
+
# include_discount: false,
|
|
242
|
+
# use_amortized: false,
|
|
226
243
|
# },
|
|
227
244
|
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
|
228
245
|
# time_period: { # required
|
|
@@ -886,6 +903,8 @@ module Aws::Budgets
|
|
|
886
903
|
# include_recurring: false,
|
|
887
904
|
# include_other_subscription: false,
|
|
888
905
|
# include_support: false,
|
|
906
|
+
# include_discount: false,
|
|
907
|
+
# use_amortized: false,
|
|
889
908
|
# },
|
|
890
909
|
# time_unit: "DAILY", # required, accepts DAILY, MONTHLY, QUARTERLY, ANNUALLY
|
|
891
910
|
# time_period: { # required
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-budgets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.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:
|
|
11
|
+
date: 2018-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|