aws-sdk-invoicing 1.6.0 → 1.8.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-invoicing/client.rb +661 -9
- data/lib/aws-sdk-invoicing/client_api.rb +176 -30
- data/lib/aws-sdk-invoicing/types.rb +440 -0
- data/lib/aws-sdk-invoicing.rb +1 -1
- data/sig/client.rbs +28 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +123 -0
- metadata +3 -3
data/sig/types.rbs
CHANGED
@@ -14,6 +14,14 @@ module Aws::Invoicing
|
|
14
14
|
SENSITIVE: []
|
15
15
|
end
|
16
16
|
|
17
|
+
class AmountBreakdown
|
18
|
+
attr_accessor sub_total_amount: ::String
|
19
|
+
attr_accessor discounts: Types::DiscountsBreakdown
|
20
|
+
attr_accessor taxes: Types::TaxesBreakdown
|
21
|
+
attr_accessor fees: Types::FeesBreakdown
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
17
25
|
class BatchGetInvoiceProfileRequest
|
18
26
|
attr_accessor account_ids: ::Array[::String]
|
19
27
|
SENSITIVE: []
|
@@ -24,6 +32,12 @@ module Aws::Invoicing
|
|
24
32
|
SENSITIVE: []
|
25
33
|
end
|
26
34
|
|
35
|
+
class BillingPeriod
|
36
|
+
attr_accessor month: ::Integer
|
37
|
+
attr_accessor year: ::Integer
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
27
41
|
class CreateInvoiceUnitRequest
|
28
42
|
attr_accessor name: ::String
|
29
43
|
attr_accessor invoice_receiver: ::String
|
@@ -39,6 +53,19 @@ module Aws::Invoicing
|
|
39
53
|
SENSITIVE: []
|
40
54
|
end
|
41
55
|
|
56
|
+
class CurrencyExchangeDetails
|
57
|
+
attr_accessor source_currency_code: ::String
|
58
|
+
attr_accessor target_currency_code: ::String
|
59
|
+
attr_accessor rate: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class DateInterval
|
64
|
+
attr_accessor start_date: ::Time
|
65
|
+
attr_accessor end_date: ::Time
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
42
69
|
class DeleteInvoiceUnitRequest
|
43
70
|
attr_accessor invoice_unit_arn: ::String
|
44
71
|
SENSITIVE: []
|
@@ -49,6 +76,37 @@ module Aws::Invoicing
|
|
49
76
|
SENSITIVE: []
|
50
77
|
end
|
51
78
|
|
79
|
+
class DiscountsBreakdown
|
80
|
+
attr_accessor breakdown: ::Array[Types::DiscountsBreakdownAmount]
|
81
|
+
attr_accessor total_amount: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class DiscountsBreakdownAmount
|
86
|
+
attr_accessor description: ::String
|
87
|
+
attr_accessor amount: ::String
|
88
|
+
attr_accessor rate: ::String
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class Entity
|
93
|
+
attr_accessor invoicing_entity: ::String
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class FeesBreakdown
|
98
|
+
attr_accessor breakdown: ::Array[Types::FeesBreakdownAmount]
|
99
|
+
attr_accessor total_amount: ::String
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class FeesBreakdownAmount
|
104
|
+
attr_accessor description: ::String
|
105
|
+
attr_accessor amount: ::String
|
106
|
+
attr_accessor rate: ::String
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
52
110
|
class Filters
|
53
111
|
attr_accessor names: ::Array[::String]
|
54
112
|
attr_accessor invoice_receivers: ::Array[::String]
|
@@ -79,6 +137,15 @@ module Aws::Invoicing
|
|
79
137
|
SENSITIVE: []
|
80
138
|
end
|
81
139
|
|
140
|
+
class InvoiceCurrencyAmount
|
141
|
+
attr_accessor total_amount: ::String
|
142
|
+
attr_accessor total_amount_before_tax: ::String
|
143
|
+
attr_accessor currency_code: ::String
|
144
|
+
attr_accessor amount_breakdown: Types::AmountBreakdown
|
145
|
+
attr_accessor currency_exchange_details: Types::CurrencyExchangeDetails
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
82
149
|
class InvoiceProfile
|
83
150
|
attr_accessor account_id: ::String
|
84
151
|
attr_accessor receiver_name: ::String
|
@@ -89,6 +156,35 @@ module Aws::Invoicing
|
|
89
156
|
SENSITIVE: [:receiver_address, :receiver_email, :tax_registration_number]
|
90
157
|
end
|
91
158
|
|
159
|
+
class InvoiceSummariesFilter
|
160
|
+
attr_accessor time_interval: Types::DateInterval
|
161
|
+
attr_accessor billing_period: Types::BillingPeriod
|
162
|
+
attr_accessor invoicing_entity: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class InvoiceSummariesSelector
|
167
|
+
attr_accessor resource_type: ("ACCOUNT_ID" | "INVOICE_ID")
|
168
|
+
attr_accessor value: ::String
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class InvoiceSummary
|
173
|
+
attr_accessor account_id: ::String
|
174
|
+
attr_accessor invoice_id: ::String
|
175
|
+
attr_accessor issued_date: ::Time
|
176
|
+
attr_accessor due_date: ::Time
|
177
|
+
attr_accessor entity: Types::Entity
|
178
|
+
attr_accessor billing_period: Types::BillingPeriod
|
179
|
+
attr_accessor invoice_type: ("INVOICE" | "CREDIT_MEMO")
|
180
|
+
attr_accessor original_invoice_id: ::String
|
181
|
+
attr_accessor purchase_order_number: ::String
|
182
|
+
attr_accessor base_currency_amount: Types::InvoiceCurrencyAmount
|
183
|
+
attr_accessor tax_currency_amount: Types::InvoiceCurrencyAmount
|
184
|
+
attr_accessor payment_currency_amount: Types::InvoiceCurrencyAmount
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
92
188
|
class InvoiceUnit
|
93
189
|
attr_accessor invoice_unit_arn: ::String
|
94
190
|
attr_accessor invoice_receiver: ::String
|
@@ -105,6 +201,20 @@ module Aws::Invoicing
|
|
105
201
|
SENSITIVE: []
|
106
202
|
end
|
107
203
|
|
204
|
+
class ListInvoiceSummariesRequest
|
205
|
+
attr_accessor selector: Types::InvoiceSummariesSelector
|
206
|
+
attr_accessor filter: Types::InvoiceSummariesFilter
|
207
|
+
attr_accessor next_token: ::String
|
208
|
+
attr_accessor max_results: ::Integer
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class ListInvoiceSummariesResponse
|
213
|
+
attr_accessor invoice_summaries: ::Array[Types::InvoiceSummary]
|
214
|
+
attr_accessor next_token: ::String
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
108
218
|
class ListInvoiceUnitsRequest
|
109
219
|
attr_accessor filters: Types::Filters
|
110
220
|
attr_accessor next_token: ::String
|
@@ -168,6 +278,19 @@ module Aws::Invoicing
|
|
168
278
|
class TagResourceResponse < Aws::EmptyStructure
|
169
279
|
end
|
170
280
|
|
281
|
+
class TaxesBreakdown
|
282
|
+
attr_accessor breakdown: ::Array[Types::TaxesBreakdownAmount]
|
283
|
+
attr_accessor total_amount: ::String
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class TaxesBreakdownAmount
|
288
|
+
attr_accessor description: ::String
|
289
|
+
attr_accessor amount: ::String
|
290
|
+
attr_accessor rate: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
171
294
|
class ThrottlingException
|
172
295
|
attr_accessor message: ::String
|
173
296
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-invoicing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|