aws-sdk-taxsettings 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-taxsettings/client.rb +225 -5
- data/lib/aws-sdk-taxsettings/client_api.rb +201 -2
- data/lib/aws-sdk-taxsettings/errors.rb +48 -0
- data/lib/aws-sdk-taxsettings/types.rb +359 -1
- data/lib/aws-sdk-taxsettings.rb +1 -1
- data/sig/client.rbs +81 -3
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +120 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
module Aws::TaxSettings
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: [:message]
|
14
|
+
end
|
15
|
+
|
11
16
|
class AccountDetails
|
12
17
|
attr_accessor account_id: ::String
|
13
18
|
attr_accessor account_meta_data: Types::AccountMetaData
|
@@ -75,6 +80,17 @@ module Aws::TaxSettings
|
|
75
80
|
SENSITIVE: []
|
76
81
|
end
|
77
82
|
|
83
|
+
class AttachmentUploadException
|
84
|
+
attr_accessor message: ::String
|
85
|
+
SENSITIVE: [:message]
|
86
|
+
end
|
87
|
+
|
88
|
+
class Authority
|
89
|
+
attr_accessor country: ::String
|
90
|
+
attr_accessor state: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
78
94
|
class BatchDeleteTaxRegistrationError
|
79
95
|
attr_accessor account_id: ::String
|
80
96
|
attr_accessor code: ::String
|
@@ -92,6 +108,17 @@ module Aws::TaxSettings
|
|
92
108
|
SENSITIVE: []
|
93
109
|
end
|
94
110
|
|
111
|
+
class BatchGetTaxExemptionsRequest
|
112
|
+
attr_accessor account_ids: ::Array[::String]
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class BatchGetTaxExemptionsResponse
|
117
|
+
attr_accessor failed_accounts: ::Array[::String]
|
118
|
+
attr_accessor tax_exemption_details_map: ::Hash[::String, Types::TaxExemptionDetails]
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
95
122
|
class BatchPutTaxRegistrationError
|
96
123
|
attr_accessor account_id: ::String
|
97
124
|
attr_accessor code: ::String
|
@@ -125,6 +152,11 @@ module Aws::TaxSettings
|
|
125
152
|
SENSITIVE: []
|
126
153
|
end
|
127
154
|
|
155
|
+
class CaseCreationLimitExceededException
|
156
|
+
attr_accessor message: ::String
|
157
|
+
SENSITIVE: [:message]
|
158
|
+
end
|
159
|
+
|
128
160
|
class ConflictException
|
129
161
|
attr_accessor error_code: ::String
|
130
162
|
attr_accessor message: ::String
|
@@ -158,11 +190,33 @@ module Aws::TaxSettings
|
|
158
190
|
SENSITIVE: []
|
159
191
|
end
|
160
192
|
|
193
|
+
class ExemptionCertificate
|
194
|
+
attr_accessor document_file: ::String
|
195
|
+
attr_accessor document_name: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
161
199
|
class GeorgiaAdditionalInfo
|
162
200
|
attr_accessor person_type: ("Legal Person" | "Physical Person" | "Business")
|
163
201
|
SENSITIVE: []
|
164
202
|
end
|
165
203
|
|
204
|
+
class GetTaxExemptionTypesRequest < Aws::EmptyStructure
|
205
|
+
end
|
206
|
+
|
207
|
+
class GetTaxExemptionTypesResponse
|
208
|
+
attr_accessor tax_exemption_types: ::Array[Types::TaxExemptionType]
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class GetTaxInheritanceRequest < Aws::EmptyStructure
|
213
|
+
end
|
214
|
+
|
215
|
+
class GetTaxInheritanceResponse
|
216
|
+
attr_accessor heritage_status: ("OptIn" | "OptOut")
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
166
220
|
class GetTaxRegistrationDocumentRequest
|
167
221
|
attr_accessor destination_s3_location: Types::DestinationS3Location
|
168
222
|
attr_accessor tax_document_metadata: Types::TaxDocumentMetadata
|
@@ -171,6 +225,7 @@ module Aws::TaxSettings
|
|
171
225
|
|
172
226
|
class GetTaxRegistrationDocumentResponse
|
173
227
|
attr_accessor destination_file_path: ::String
|
228
|
+
attr_accessor presigned_s3_url: ::String
|
174
229
|
SENSITIVE: []
|
175
230
|
end
|
176
231
|
|
@@ -232,6 +287,18 @@ module Aws::TaxSettings
|
|
232
287
|
SENSITIVE: []
|
233
288
|
end
|
234
289
|
|
290
|
+
class ListTaxExemptionsRequest
|
291
|
+
attr_accessor max_results: ::Integer
|
292
|
+
attr_accessor next_token: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class ListTaxExemptionsResponse
|
297
|
+
attr_accessor next_token: ::String
|
298
|
+
attr_accessor tax_exemption_details_map: ::Hash[::String, Types::TaxExemptionDetails]
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
235
302
|
class ListTaxRegistrationsRequest
|
236
303
|
attr_accessor max_results: ::Integer
|
237
304
|
attr_accessor next_token: ::String
|
@@ -268,6 +335,27 @@ module Aws::TaxSettings
|
|
268
335
|
SENSITIVE: []
|
269
336
|
end
|
270
337
|
|
338
|
+
class PutTaxExemptionRequest
|
339
|
+
attr_accessor account_ids: ::Array[::String]
|
340
|
+
attr_accessor authority: Types::Authority
|
341
|
+
attr_accessor exemption_certificate: Types::ExemptionCertificate
|
342
|
+
attr_accessor exemption_type: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class PutTaxExemptionResponse
|
347
|
+
attr_accessor case_id: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class PutTaxInheritanceRequest
|
352
|
+
attr_accessor heritage_status: ("OptIn" | "OptOut")
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class PutTaxInheritanceResponse < Aws::EmptyStructure
|
357
|
+
end
|
358
|
+
|
271
359
|
class PutTaxRegistrationRequest
|
272
360
|
attr_accessor account_id: ::String
|
273
361
|
attr_accessor tax_registration_entry: Types::TaxRegistrationEntry
|
@@ -337,6 +425,31 @@ module Aws::TaxSettings
|
|
337
425
|
SENSITIVE: []
|
338
426
|
end
|
339
427
|
|
428
|
+
class TaxExemption
|
429
|
+
attr_accessor authority: Types::Authority
|
430
|
+
attr_accessor effective_date: ::Time
|
431
|
+
attr_accessor expiration_date: ::Time
|
432
|
+
attr_accessor status: ("None" | "Valid" | "Expired" | "Pending")
|
433
|
+
attr_accessor system_effective_date: ::Time
|
434
|
+
attr_accessor tax_exemption_type: Types::TaxExemptionType
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class TaxExemptionDetails
|
439
|
+
attr_accessor heritage_obtained_details: bool
|
440
|
+
attr_accessor heritage_obtained_parent_entity: ::String
|
441
|
+
attr_accessor heritage_obtained_reason: ::String
|
442
|
+
attr_accessor tax_exemptions: ::Array[Types::TaxExemption]
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class TaxExemptionType
|
447
|
+
attr_accessor applicable_jurisdictions: ::Array[Types::Authority]
|
448
|
+
attr_accessor description: ::String
|
449
|
+
attr_accessor display_name: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
340
453
|
class TaxInheritanceDetails
|
341
454
|
attr_accessor inheritance_obtained_reason: ::String
|
342
455
|
attr_accessor parent_entity_id: ::String
|
@@ -356,7 +469,14 @@ module Aws::TaxSettings
|
|
356
469
|
SENSITIVE: []
|
357
470
|
end
|
358
471
|
|
472
|
+
class TaxRegistrationDocFile
|
473
|
+
attr_accessor file_content: ::String
|
474
|
+
attr_accessor file_name: ::String
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
359
478
|
class TaxRegistrationDocument
|
479
|
+
attr_accessor file: Types::TaxRegistrationDocFile
|
360
480
|
attr_accessor s3_location: Types::SourceS3Location
|
361
481
|
SENSITIVE: []
|
362
482
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-taxsettings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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-
|
11
|
+
date: 2024-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|