aws-sdk-partnercentralbenefits 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-partnercentralbenefits/client.rb +1511 -0
- data/lib/aws-sdk-partnercentralbenefits/client_api.rb +888 -0
- data/lib/aws-sdk-partnercentralbenefits/customizations.rb +0 -0
- data/lib/aws-sdk-partnercentralbenefits/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-partnercentralbenefits/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-partnercentralbenefits/endpoints.rb +20 -0
- data/lib/aws-sdk-partnercentralbenefits/errors.rb +179 -0
- data/lib/aws-sdk-partnercentralbenefits/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-partnercentralbenefits/resource.rb +26 -0
- data/lib/aws-sdk-partnercentralbenefits/types.rb +1766 -0
- data/lib/aws-sdk-partnercentralbenefits/waiters.rb +15 -0
- data/lib/aws-sdk-partnercentralbenefits.rb +62 -0
- data/sig/client.rbs +409 -0
- data/sig/errors.rbs +42 -0
- data/sig/resource.rbs +86 -0
- data/sig/types.rbs +488 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,488 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::PartnerCentralBenefits
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AccessDetails
|
|
17
|
+
attr_accessor description: ::String
|
|
18
|
+
SENSITIVE: []
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
class AmendBenefitApplicationInput
|
|
22
|
+
attr_accessor catalog: ::String
|
|
23
|
+
attr_accessor client_token: ::String
|
|
24
|
+
attr_accessor revision: ::String
|
|
25
|
+
attr_accessor identifier: ::String
|
|
26
|
+
attr_accessor amendment_reason: ::String
|
|
27
|
+
attr_accessor amendments: ::Array[Types::Amendment]
|
|
28
|
+
SENSITIVE: []
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class AmendBenefitApplicationOutput < Aws::EmptyStructure
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class Amendment
|
|
35
|
+
attr_accessor field_path: ::String
|
|
36
|
+
attr_accessor new_value: ::String
|
|
37
|
+
SENSITIVE: []
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
class AssociateBenefitApplicationResourceInput
|
|
41
|
+
attr_accessor catalog: ::String
|
|
42
|
+
attr_accessor benefit_application_identifier: ::String
|
|
43
|
+
attr_accessor resource_arn: ::String
|
|
44
|
+
SENSITIVE: []
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
class AssociateBenefitApplicationResourceOutput
|
|
48
|
+
attr_accessor id: ::String
|
|
49
|
+
attr_accessor arn: ::String
|
|
50
|
+
attr_accessor revision: ::String
|
|
51
|
+
SENSITIVE: []
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
class AssociatedResource
|
|
55
|
+
attr_accessor resource_type: ("OPPORTUNITY" | "BENEFIT_ALLOCATION")
|
|
56
|
+
attr_accessor resource_identifier: ::String
|
|
57
|
+
attr_accessor resource_arn: ::String
|
|
58
|
+
SENSITIVE: []
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class BenefitAllocationSummary
|
|
62
|
+
attr_accessor id: ::String
|
|
63
|
+
attr_accessor catalog: ::String
|
|
64
|
+
attr_accessor arn: ::String
|
|
65
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "FULFILLED")
|
|
66
|
+
attr_accessor status_reason: ::String
|
|
67
|
+
attr_accessor name: ::String
|
|
68
|
+
attr_accessor benefit_id: ::String
|
|
69
|
+
attr_accessor benefit_application_id: ::String
|
|
70
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
71
|
+
attr_accessor created_at: ::Time
|
|
72
|
+
attr_accessor expires_at: ::Time
|
|
73
|
+
attr_accessor applicable_benefit_ids: ::Array[::String]
|
|
74
|
+
SENSITIVE: []
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
class BenefitApplicationSummary
|
|
78
|
+
attr_accessor catalog: ::String
|
|
79
|
+
attr_accessor name: ::String
|
|
80
|
+
attr_accessor id: ::String
|
|
81
|
+
attr_accessor arn: ::String
|
|
82
|
+
attr_accessor benefit_id: ::String
|
|
83
|
+
attr_accessor programs: ::Array[::String]
|
|
84
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
85
|
+
attr_accessor status: ("PENDING_SUBMISSION" | "IN_REVIEW" | "ACTION_REQUIRED" | "APPROVED" | "REJECTED" | "CANCELED")
|
|
86
|
+
attr_accessor stage: ::String
|
|
87
|
+
attr_accessor created_at: ::Time
|
|
88
|
+
attr_accessor updated_at: ::Time
|
|
89
|
+
attr_accessor benefit_application_details: ::Hash[::String, ::String]
|
|
90
|
+
attr_accessor associated_resources: ::Array[::String]
|
|
91
|
+
SENSITIVE: []
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
class BenefitSummary
|
|
95
|
+
attr_accessor id: ::String
|
|
96
|
+
attr_accessor catalog: ::String
|
|
97
|
+
attr_accessor arn: ::String
|
|
98
|
+
attr_accessor name: ::String
|
|
99
|
+
attr_accessor description: ::String
|
|
100
|
+
attr_accessor programs: ::Array[::String]
|
|
101
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
102
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
103
|
+
SENSITIVE: []
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
class CancelBenefitApplicationInput
|
|
107
|
+
attr_accessor catalog: ::String
|
|
108
|
+
attr_accessor client_token: ::String
|
|
109
|
+
attr_accessor identifier: ::String
|
|
110
|
+
attr_accessor reason: ::String
|
|
111
|
+
SENSITIVE: []
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
class CancelBenefitApplicationOutput < Aws::EmptyStructure
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
class ConflictException
|
|
118
|
+
attr_accessor message: ::String
|
|
119
|
+
SENSITIVE: []
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
class ConsumableDetails
|
|
123
|
+
attr_accessor allocated_amount: Types::MonetaryValue
|
|
124
|
+
attr_accessor remaining_amount: Types::MonetaryValue
|
|
125
|
+
attr_accessor utilized_amount: Types::MonetaryValue
|
|
126
|
+
attr_accessor issuance_details: Types::IssuanceDetail
|
|
127
|
+
SENSITIVE: []
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
class Contact
|
|
131
|
+
attr_accessor email: ::String
|
|
132
|
+
attr_accessor first_name: ::String
|
|
133
|
+
attr_accessor last_name: ::String
|
|
134
|
+
attr_accessor business_title: ::String
|
|
135
|
+
attr_accessor phone: ::String
|
|
136
|
+
SENSITIVE: [:email, :first_name, :last_name, :phone]
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
class CreateBenefitApplicationInput
|
|
140
|
+
attr_accessor catalog: ::String
|
|
141
|
+
attr_accessor client_token: ::String
|
|
142
|
+
attr_accessor name: ::String
|
|
143
|
+
attr_accessor description: ::String
|
|
144
|
+
attr_accessor benefit_identifier: ::String
|
|
145
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
146
|
+
attr_accessor benefit_application_details: untyped
|
|
147
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
148
|
+
attr_accessor associated_resources: ::Array[::String]
|
|
149
|
+
attr_accessor partner_contacts: ::Array[Types::Contact]
|
|
150
|
+
attr_accessor file_details: ::Array[Types::FileInput]
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
class CreateBenefitApplicationOutput
|
|
155
|
+
attr_accessor id: ::String
|
|
156
|
+
attr_accessor arn: ::String
|
|
157
|
+
attr_accessor revision: ::String
|
|
158
|
+
SENSITIVE: []
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
class CreditCode
|
|
162
|
+
attr_accessor aws_account_id: ::String
|
|
163
|
+
attr_accessor value: Types::MonetaryValue
|
|
164
|
+
attr_accessor aws_credit_code: ::String
|
|
165
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "FULFILLED")
|
|
166
|
+
attr_accessor issued_at: ::Time
|
|
167
|
+
attr_accessor expires_at: ::Time
|
|
168
|
+
SENSITIVE: []
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
class CreditDetails
|
|
172
|
+
attr_accessor allocated_amount: Types::MonetaryValue
|
|
173
|
+
attr_accessor issued_amount: Types::MonetaryValue
|
|
174
|
+
attr_accessor codes: ::Array[Types::CreditCode]
|
|
175
|
+
SENSITIVE: []
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
class DisassociateBenefitApplicationResourceInput
|
|
179
|
+
attr_accessor catalog: ::String
|
|
180
|
+
attr_accessor benefit_application_identifier: ::String
|
|
181
|
+
attr_accessor resource_arn: ::String
|
|
182
|
+
SENSITIVE: []
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
class DisassociateBenefitApplicationResourceOutput
|
|
186
|
+
attr_accessor id: ::String
|
|
187
|
+
attr_accessor arn: ::String
|
|
188
|
+
attr_accessor revision: ::String
|
|
189
|
+
SENSITIVE: []
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
class DisbursementDetails
|
|
193
|
+
attr_accessor disbursed_amount: Types::MonetaryValue
|
|
194
|
+
attr_accessor issuance_details: Types::IssuanceDetail
|
|
195
|
+
SENSITIVE: []
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
class FileDetail
|
|
199
|
+
attr_accessor file_uri: ::String
|
|
200
|
+
attr_accessor business_use_case: ::String
|
|
201
|
+
attr_accessor file_name: ::String
|
|
202
|
+
attr_accessor file_status: ::String
|
|
203
|
+
attr_accessor file_status_reason: ::String
|
|
204
|
+
attr_accessor file_type: ("application/msword" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.openxmlformats-officedocument.presentationml.presentation" | "application/pdf" | "image/png" | "image/jpeg" | "image/svg+xml" | "text/csv")
|
|
205
|
+
attr_accessor created_by: ::String
|
|
206
|
+
attr_accessor created_at: ::Time
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
class FileInput
|
|
211
|
+
attr_accessor file_uri: ::String
|
|
212
|
+
attr_accessor business_use_case: ::String
|
|
213
|
+
SENSITIVE: []
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
class FulfillmentDetails
|
|
217
|
+
attr_accessor disbursement_details: Types::DisbursementDetails
|
|
218
|
+
attr_accessor consumable_details: Types::ConsumableDetails
|
|
219
|
+
attr_accessor credit_details: Types::CreditDetails
|
|
220
|
+
attr_accessor access_details: Types::AccessDetails
|
|
221
|
+
attr_accessor unknown: untyped
|
|
222
|
+
SENSITIVE: []
|
|
223
|
+
|
|
224
|
+
class DisbursementDetails < FulfillmentDetails
|
|
225
|
+
end
|
|
226
|
+
class ConsumableDetails < FulfillmentDetails
|
|
227
|
+
end
|
|
228
|
+
class CreditDetails < FulfillmentDetails
|
|
229
|
+
end
|
|
230
|
+
class AccessDetails < FulfillmentDetails
|
|
231
|
+
end
|
|
232
|
+
class Unknown < FulfillmentDetails
|
|
233
|
+
end
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
class GetBenefitAllocationInput
|
|
237
|
+
attr_accessor catalog: ::String
|
|
238
|
+
attr_accessor identifier: ::String
|
|
239
|
+
SENSITIVE: []
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
class GetBenefitAllocationOutput
|
|
243
|
+
attr_accessor id: ::String
|
|
244
|
+
attr_accessor catalog: ::String
|
|
245
|
+
attr_accessor arn: ::String
|
|
246
|
+
attr_accessor name: ::String
|
|
247
|
+
attr_accessor description: ::String
|
|
248
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "FULFILLED")
|
|
249
|
+
attr_accessor status_reason: ::String
|
|
250
|
+
attr_accessor benefit_application_id: ::String
|
|
251
|
+
attr_accessor benefit_id: ::String
|
|
252
|
+
attr_accessor fulfillment_type: ("CREDITS" | "CASH" | "ACCESS")
|
|
253
|
+
attr_accessor applicable_benefit_ids: ::Array[::String]
|
|
254
|
+
attr_accessor fulfillment_detail: Types::FulfillmentDetails
|
|
255
|
+
attr_accessor created_at: ::Time
|
|
256
|
+
attr_accessor updated_at: ::Time
|
|
257
|
+
attr_accessor starts_at: ::Time
|
|
258
|
+
attr_accessor expires_at: ::Time
|
|
259
|
+
SENSITIVE: []
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
class GetBenefitApplicationInput
|
|
263
|
+
attr_accessor catalog: ::String
|
|
264
|
+
attr_accessor identifier: ::String
|
|
265
|
+
SENSITIVE: []
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
class GetBenefitApplicationOutput
|
|
269
|
+
attr_accessor id: ::String
|
|
270
|
+
attr_accessor arn: ::String
|
|
271
|
+
attr_accessor catalog: ::String
|
|
272
|
+
attr_accessor benefit_id: ::String
|
|
273
|
+
attr_accessor name: ::String
|
|
274
|
+
attr_accessor description: ::String
|
|
275
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
276
|
+
attr_accessor benefit_application_details: untyped
|
|
277
|
+
attr_accessor programs: ::Array[::String]
|
|
278
|
+
attr_accessor status: ("PENDING_SUBMISSION" | "IN_REVIEW" | "ACTION_REQUIRED" | "APPROVED" | "REJECTED" | "CANCELED")
|
|
279
|
+
attr_accessor stage: ::String
|
|
280
|
+
attr_accessor status_reason: ::String
|
|
281
|
+
attr_accessor status_reason_code: ::String
|
|
282
|
+
attr_accessor status_reason_codes: ::Array[::String]
|
|
283
|
+
attr_accessor created_at: ::Time
|
|
284
|
+
attr_accessor updated_at: ::Time
|
|
285
|
+
attr_accessor revision: ::String
|
|
286
|
+
attr_accessor associated_resources: ::Array[::String]
|
|
287
|
+
attr_accessor partner_contacts: ::Array[Types::Contact]
|
|
288
|
+
attr_accessor file_details: ::Array[Types::FileDetail]
|
|
289
|
+
SENSITIVE: []
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
class GetBenefitInput
|
|
293
|
+
attr_accessor catalog: ::String
|
|
294
|
+
attr_accessor identifier: ::String
|
|
295
|
+
SENSITIVE: []
|
|
296
|
+
end
|
|
297
|
+
|
|
298
|
+
class GetBenefitOutput
|
|
299
|
+
attr_accessor id: ::String
|
|
300
|
+
attr_accessor catalog: ::String
|
|
301
|
+
attr_accessor arn: ::String
|
|
302
|
+
attr_accessor name: ::String
|
|
303
|
+
attr_accessor description: ::String
|
|
304
|
+
attr_accessor programs: ::Array[::String]
|
|
305
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
306
|
+
attr_accessor benefit_request_schema: untyped
|
|
307
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
308
|
+
SENSITIVE: []
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
class InternalServerException
|
|
312
|
+
attr_accessor message: ::String
|
|
313
|
+
SENSITIVE: []
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
class IssuanceDetail
|
|
317
|
+
attr_accessor issuance_id: ::String
|
|
318
|
+
attr_accessor issuance_amount: Types::MonetaryValue
|
|
319
|
+
attr_accessor issued_at: ::Time
|
|
320
|
+
SENSITIVE: []
|
|
321
|
+
end
|
|
322
|
+
|
|
323
|
+
class ListBenefitAllocationsInput
|
|
324
|
+
attr_accessor catalog: ::String
|
|
325
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
326
|
+
attr_accessor benefit_identifiers: ::Array[::String]
|
|
327
|
+
attr_accessor benefit_application_identifiers: ::Array[::String]
|
|
328
|
+
attr_accessor status: ::Array[("ACTIVE" | "INACTIVE" | "FULFILLED")]
|
|
329
|
+
attr_accessor max_results: ::Integer
|
|
330
|
+
attr_accessor next_token: ::String
|
|
331
|
+
SENSITIVE: []
|
|
332
|
+
end
|
|
333
|
+
|
|
334
|
+
class ListBenefitAllocationsOutput
|
|
335
|
+
attr_accessor benefit_allocation_summaries: ::Array[Types::BenefitAllocationSummary]
|
|
336
|
+
attr_accessor next_token: ::String
|
|
337
|
+
SENSITIVE: []
|
|
338
|
+
end
|
|
339
|
+
|
|
340
|
+
class ListBenefitApplicationsInput
|
|
341
|
+
attr_accessor catalog: ::String
|
|
342
|
+
attr_accessor programs: ::Array[::String]
|
|
343
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
344
|
+
attr_accessor benefit_identifiers: ::Array[::String]
|
|
345
|
+
attr_accessor status: ::Array[("PENDING_SUBMISSION" | "IN_REVIEW" | "ACTION_REQUIRED" | "APPROVED" | "REJECTED" | "CANCELED")]
|
|
346
|
+
attr_accessor stages: ::Array[::String]
|
|
347
|
+
attr_accessor associated_resources: ::Array[Types::AssociatedResource]
|
|
348
|
+
attr_accessor associated_resource_arns: ::Array[::String]
|
|
349
|
+
attr_accessor max_results: ::Integer
|
|
350
|
+
attr_accessor next_token: ::String
|
|
351
|
+
SENSITIVE: []
|
|
352
|
+
end
|
|
353
|
+
|
|
354
|
+
class ListBenefitApplicationsOutput
|
|
355
|
+
attr_accessor benefit_application_summaries: ::Array[Types::BenefitApplicationSummary]
|
|
356
|
+
attr_accessor next_token: ::String
|
|
357
|
+
SENSITIVE: []
|
|
358
|
+
end
|
|
359
|
+
|
|
360
|
+
class ListBenefitsInput
|
|
361
|
+
attr_accessor catalog: ::String
|
|
362
|
+
attr_accessor programs: ::Array[::String]
|
|
363
|
+
attr_accessor fulfillment_types: ::Array[("CREDITS" | "CASH" | "ACCESS")]
|
|
364
|
+
attr_accessor status: ::Array[("ACTIVE" | "INACTIVE")]
|
|
365
|
+
attr_accessor max_results: ::Integer
|
|
366
|
+
attr_accessor next_token: ::String
|
|
367
|
+
SENSITIVE: []
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
class ListBenefitsOutput
|
|
371
|
+
attr_accessor benefit_summaries: ::Array[Types::BenefitSummary]
|
|
372
|
+
attr_accessor next_token: ::String
|
|
373
|
+
SENSITIVE: []
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
class ListTagsForResourceRequest
|
|
377
|
+
attr_accessor resource_arn: ::String
|
|
378
|
+
SENSITIVE: []
|
|
379
|
+
end
|
|
380
|
+
|
|
381
|
+
class ListTagsForResourceResponse
|
|
382
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
383
|
+
SENSITIVE: []
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
class MonetaryValue
|
|
387
|
+
attr_accessor amount: ::String
|
|
388
|
+
attr_accessor currency_code: ("AED" | "AMD" | "ARS" | "AUD" | "AWG" | "AZN" | "BBD" | "BDT" | "BGN" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BYR" | "BZD" | "CAD" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CZK" | "DKK" | "DOP" | "EEK" | "EGP" | "EUR" | "GBP" | "GEL" | "GHS" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "ISK" | "JMD" | "JPY" | "KES" | "KHR" | "KRW" | "KYD" | "KZT" | "LBP" | "LKR" | "LTL" | "LVL" | "MAD" | "MNT" | "MOP" | "MUR" | "MVR" | "MXN" | "MYR" | "NAD" | "NGN" | "NIO" | "NOK" | "NZD" | "PAB" | "PEN" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RUB" | "SAR" | "SEK" | "SGD" | "SIT" | "SKK" | "THB" | "TND" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "USD" | "UYU" | "UZS" | "VND" | "XAF" | "XCD" | "XOF" | "XPF" | "ZAR")
|
|
389
|
+
SENSITIVE: []
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class RecallBenefitApplicationInput
|
|
393
|
+
attr_accessor catalog: ::String
|
|
394
|
+
attr_accessor client_token: ::String
|
|
395
|
+
attr_accessor identifier: ::String
|
|
396
|
+
attr_accessor reason: ::String
|
|
397
|
+
SENSITIVE: []
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
class RecallBenefitApplicationOutput < Aws::EmptyStructure
|
|
401
|
+
end
|
|
402
|
+
|
|
403
|
+
class ResourceNotFoundException
|
|
404
|
+
attr_accessor message: ::String
|
|
405
|
+
SENSITIVE: []
|
|
406
|
+
end
|
|
407
|
+
|
|
408
|
+
class ServiceQuotaExceededException
|
|
409
|
+
attr_accessor message: ::String
|
|
410
|
+
attr_accessor resource_id: ::String
|
|
411
|
+
attr_accessor resource_type: ::String
|
|
412
|
+
attr_accessor quota_code: ::String
|
|
413
|
+
SENSITIVE: []
|
|
414
|
+
end
|
|
415
|
+
|
|
416
|
+
class SubmitBenefitApplicationInput
|
|
417
|
+
attr_accessor catalog: ::String
|
|
418
|
+
attr_accessor identifier: ::String
|
|
419
|
+
SENSITIVE: []
|
|
420
|
+
end
|
|
421
|
+
|
|
422
|
+
class SubmitBenefitApplicationOutput < Aws::EmptyStructure
|
|
423
|
+
end
|
|
424
|
+
|
|
425
|
+
class Tag
|
|
426
|
+
attr_accessor key: ::String
|
|
427
|
+
attr_accessor value: ::String
|
|
428
|
+
SENSITIVE: []
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
class TagResourceRequest
|
|
432
|
+
attr_accessor resource_arn: ::String
|
|
433
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
434
|
+
SENSITIVE: []
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
class TagResourceResponse < Aws::EmptyStructure
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
class ThrottlingException
|
|
441
|
+
attr_accessor message: ::String
|
|
442
|
+
SENSITIVE: []
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
class UntagResourceRequest
|
|
446
|
+
attr_accessor resource_arn: ::String
|
|
447
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
448
|
+
SENSITIVE: []
|
|
449
|
+
end
|
|
450
|
+
|
|
451
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
class UpdateBenefitApplicationInput
|
|
455
|
+
attr_accessor catalog: ::String
|
|
456
|
+
attr_accessor client_token: ::String
|
|
457
|
+
attr_accessor name: ::String
|
|
458
|
+
attr_accessor description: ::String
|
|
459
|
+
attr_accessor identifier: ::String
|
|
460
|
+
attr_accessor revision: ::String
|
|
461
|
+
attr_accessor benefit_application_details: untyped
|
|
462
|
+
attr_accessor partner_contacts: ::Array[Types::Contact]
|
|
463
|
+
attr_accessor file_details: ::Array[Types::FileInput]
|
|
464
|
+
SENSITIVE: []
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
class UpdateBenefitApplicationOutput
|
|
468
|
+
attr_accessor id: ::String
|
|
469
|
+
attr_accessor arn: ::String
|
|
470
|
+
attr_accessor revision: ::String
|
|
471
|
+
SENSITIVE: []
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
class ValidationException
|
|
475
|
+
attr_accessor message: ::String
|
|
476
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other" | "BUSINESS_VALIDATION_FAILED")
|
|
477
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
|
478
|
+
SENSITIVE: []
|
|
479
|
+
end
|
|
480
|
+
|
|
481
|
+
class ValidationExceptionField
|
|
482
|
+
attr_accessor name: ::String
|
|
483
|
+
attr_accessor message: ::String
|
|
484
|
+
attr_accessor code: ("REQUIRED_FIELD_MISSING" | "INVALID_ENUM_VALUE" | "INVALID_STRING_FORMAT" | "INVALID_VALUE" | "NOT_ENOUGH_VALUES" | "TOO_MANY_VALUES" | "INVALID_RESOURCE_STATE" | "DUPLICATE_KEY_VALUE" | "VALUE_OUT_OF_RANGE" | "ACTION_NOT_PERMITTED")
|
|
485
|
+
SENSITIVE: []
|
|
486
|
+
end
|
|
487
|
+
end
|
|
488
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module PartnerCentralBenefits
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: aws-sdk-partnercentralbenefits
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Amazon Web Services
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: aws-sdk-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '3'
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 3.239.1
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - "~>"
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '3'
|
|
29
|
+
- - ">="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 3.239.1
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: aws-sigv4
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.5'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.5'
|
|
46
|
+
description: Official AWS Ruby gem for Partner Central Benefits API (PartnerCentral
|
|
47
|
+
Benefits). This gem is part of the AWS SDK for Ruby.
|
|
48
|
+
email:
|
|
49
|
+
- aws-dr-rubygems@amazon.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files: []
|
|
53
|
+
files:
|
|
54
|
+
- CHANGELOG.md
|
|
55
|
+
- LICENSE.txt
|
|
56
|
+
- VERSION
|
|
57
|
+
- lib/aws-sdk-partnercentralbenefits.rb
|
|
58
|
+
- lib/aws-sdk-partnercentralbenefits/client.rb
|
|
59
|
+
- lib/aws-sdk-partnercentralbenefits/client_api.rb
|
|
60
|
+
- lib/aws-sdk-partnercentralbenefits/customizations.rb
|
|
61
|
+
- lib/aws-sdk-partnercentralbenefits/endpoint_parameters.rb
|
|
62
|
+
- lib/aws-sdk-partnercentralbenefits/endpoint_provider.rb
|
|
63
|
+
- lib/aws-sdk-partnercentralbenefits/endpoints.rb
|
|
64
|
+
- lib/aws-sdk-partnercentralbenefits/errors.rb
|
|
65
|
+
- lib/aws-sdk-partnercentralbenefits/plugins/endpoints.rb
|
|
66
|
+
- lib/aws-sdk-partnercentralbenefits/resource.rb
|
|
67
|
+
- lib/aws-sdk-partnercentralbenefits/types.rb
|
|
68
|
+
- lib/aws-sdk-partnercentralbenefits/waiters.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
|
75
|
+
licenses:
|
|
76
|
+
- Apache-2.0
|
|
77
|
+
metadata:
|
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-partnercentralbenefits
|
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-partnercentralbenefits/CHANGELOG.md
|
|
80
|
+
rdoc_options: []
|
|
81
|
+
require_paths:
|
|
82
|
+
- lib
|
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '2.7'
|
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
requirements: []
|
|
94
|
+
rubygems_version: 3.6.7
|
|
95
|
+
specification_version: 4
|
|
96
|
+
summary: AWS SDK for Ruby - PartnerCentral Benefits
|
|
97
|
+
test_files: []
|