aws-sdk-licensemanagerusersubscriptions 1.39.0 → 1.41.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-licensemanagerusersubscriptions/client.rb +293 -227
- data/lib/aws-sdk-licensemanagerusersubscriptions/client_api.rb +71 -61
- data/lib/aws-sdk-licensemanagerusersubscriptions/types.rb +266 -232
- data/lib/aws-sdk-licensemanagerusersubscriptions/waiters.rb +15 -0
- data/lib/aws-sdk-licensemanagerusersubscriptions.rb +2 -1
- data/sig/client.rbs +87 -69
- data/sig/types.rbs +53 -47
- metadata +2 -1
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
require 'aws-sdk-core/waiters'
|
11
|
+
|
12
|
+
module Aws::LicenseManagerUserSubscriptions
|
13
|
+
module Waiters
|
14
|
+
end
|
15
|
+
end
|
@@ -49,12 +49,13 @@ module Aws::LicenseManagerUserSubscriptions
|
|
49
49
|
end
|
50
50
|
autoload :Client, 'aws-sdk-licensemanagerusersubscriptions/client'
|
51
51
|
autoload :Errors, 'aws-sdk-licensemanagerusersubscriptions/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-licensemanagerusersubscriptions/waiters'
|
52
53
|
autoload :Resource, 'aws-sdk-licensemanagerusersubscriptions/resource'
|
53
54
|
autoload :EndpointParameters, 'aws-sdk-licensemanagerusersubscriptions/endpoint_parameters'
|
54
55
|
autoload :EndpointProvider, 'aws-sdk-licensemanagerusersubscriptions/endpoint_provider'
|
55
56
|
autoload :Endpoints, 'aws-sdk-licensemanagerusersubscriptions/endpoints'
|
56
57
|
|
57
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.41.0'
|
58
59
|
|
59
60
|
end
|
60
61
|
|
data/sig/client.rbs
CHANGED
@@ -84,28 +84,30 @@ module Aws
|
|
84
84
|
end
|
85
85
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#associate_user-instance_method
|
86
86
|
def associate_user: (
|
87
|
-
|
87
|
+
username: ::String,
|
88
|
+
instance_id: ::String,
|
88
89
|
identity_provider: {
|
89
90
|
active_directory_identity_provider: {
|
91
|
+
directory_id: ::String?,
|
90
92
|
active_directory_settings: {
|
93
|
+
domain_name: ::String?,
|
94
|
+
domain_ipv_4_list: Array[::String]?,
|
95
|
+
domain_ipv_6_list: Array[::String]?,
|
91
96
|
domain_credentials_provider: {
|
92
97
|
secrets_manager_credentials_provider: {
|
93
98
|
secret_id: ::String?
|
94
99
|
}?
|
95
100
|
}?,
|
96
|
-
domain_ipv_4_list: Array[::String]?,
|
97
|
-
domain_name: ::String?,
|
98
101
|
domain_network_settings: {
|
99
102
|
subnets: Array[::String]
|
100
103
|
}?
|
101
104
|
}?,
|
102
105
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
103
|
-
|
106
|
+
is_shared_active_directory: bool?
|
104
107
|
}?
|
105
108
|
},
|
106
|
-
|
107
|
-
?tags: Hash[::String, ::String]
|
108
|
-
username: ::String
|
109
|
+
?domain: ::String,
|
110
|
+
?tags: Hash[::String, ::String]
|
109
111
|
) -> _AssociateUserResponseSuccess
|
110
112
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateUserResponseSuccess
|
111
113
|
|
@@ -118,6 +120,7 @@ module Aws
|
|
118
120
|
def create_license_server_endpoint: (
|
119
121
|
identity_provider_arn: ::String,
|
120
122
|
license_server_settings: {
|
123
|
+
server_type: ("RDS_SAL"),
|
121
124
|
server_settings: {
|
122
125
|
rds_sal_settings: {
|
123
126
|
rds_sal_credentials_provider: {
|
@@ -126,8 +129,7 @@ module Aws
|
|
126
129
|
}?
|
127
130
|
}
|
128
131
|
}?
|
129
|
-
}
|
130
|
-
server_type: ("RDS_SAL")
|
132
|
+
}
|
131
133
|
},
|
132
134
|
?tags: Hash[::String, ::String]
|
133
135
|
) -> _CreateLicenseServerEndpointResponseSuccess
|
@@ -152,24 +154,26 @@ module Aws
|
|
152
154
|
def deregister_identity_provider: (
|
153
155
|
?identity_provider: {
|
154
156
|
active_directory_identity_provider: {
|
157
|
+
directory_id: ::String?,
|
155
158
|
active_directory_settings: {
|
159
|
+
domain_name: ::String?,
|
160
|
+
domain_ipv_4_list: Array[::String]?,
|
161
|
+
domain_ipv_6_list: Array[::String]?,
|
156
162
|
domain_credentials_provider: {
|
157
163
|
secrets_manager_credentials_provider: {
|
158
164
|
secret_id: ::String?
|
159
165
|
}?
|
160
166
|
}?,
|
161
|
-
domain_ipv_4_list: Array[::String]?,
|
162
|
-
domain_name: ::String?,
|
163
167
|
domain_network_settings: {
|
164
168
|
subnets: Array[::String]
|
165
169
|
}?
|
166
170
|
}?,
|
167
171
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
168
|
-
|
172
|
+
is_shared_active_directory: bool?
|
169
173
|
}?
|
170
174
|
},
|
171
|
-
?
|
172
|
-
?
|
175
|
+
?product: ::String,
|
176
|
+
?identity_provider_arn: ::String
|
173
177
|
) -> _DeregisterIdentityProviderResponseSuccess
|
174
178
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterIdentityProviderResponseSuccess
|
175
179
|
|
@@ -179,28 +183,30 @@ module Aws
|
|
179
183
|
end
|
180
184
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#disassociate_user-instance_method
|
181
185
|
def disassociate_user: (
|
182
|
-
?
|
186
|
+
?username: ::String,
|
187
|
+
?instance_id: ::String,
|
183
188
|
?identity_provider: {
|
184
189
|
active_directory_identity_provider: {
|
190
|
+
directory_id: ::String?,
|
185
191
|
active_directory_settings: {
|
192
|
+
domain_name: ::String?,
|
193
|
+
domain_ipv_4_list: Array[::String]?,
|
194
|
+
domain_ipv_6_list: Array[::String]?,
|
186
195
|
domain_credentials_provider: {
|
187
196
|
secrets_manager_credentials_provider: {
|
188
197
|
secret_id: ::String?
|
189
198
|
}?
|
190
199
|
}?,
|
191
|
-
domain_ipv_4_list: Array[::String]?,
|
192
|
-
domain_name: ::String?,
|
193
200
|
domain_network_settings: {
|
194
201
|
subnets: Array[::String]
|
195
202
|
}?
|
196
203
|
}?,
|
197
204
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
198
|
-
|
205
|
+
is_shared_active_directory: bool?
|
199
206
|
}?
|
200
207
|
},
|
201
|
-
?instance_id: ::String,
|
202
208
|
?instance_user_arn: ::String,
|
203
|
-
?
|
209
|
+
?domain: ::String
|
204
210
|
) -> _DisassociateUserResponseSuccess
|
205
211
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateUserResponseSuccess
|
206
212
|
|
@@ -211,6 +217,7 @@ module Aws
|
|
211
217
|
end
|
212
218
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_identity_providers-instance_method
|
213
219
|
def list_identity_providers: (
|
220
|
+
?max_results: ::Integer,
|
214
221
|
?filters: Array[
|
215
222
|
{
|
216
223
|
attribute: ::String?,
|
@@ -218,7 +225,6 @@ module Aws
|
|
218
225
|
value: ::String?
|
219
226
|
},
|
220
227
|
],
|
221
|
-
?max_results: ::Integer,
|
222
228
|
?next_token: ::String
|
223
229
|
) -> _ListIdentityProvidersResponseSuccess
|
224
230
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityProvidersResponseSuccess
|
@@ -230,15 +236,15 @@ module Aws
|
|
230
236
|
end
|
231
237
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_instances-instance_method
|
232
238
|
def list_instances: (
|
239
|
+
?max_results: ::Integer,
|
240
|
+
?next_token: ::String,
|
233
241
|
?filters: Array[
|
234
242
|
{
|
235
243
|
attribute: ::String?,
|
236
244
|
operation: ::String?,
|
237
245
|
value: ::String?
|
238
246
|
},
|
239
|
-
]
|
240
|
-
?max_results: ::Integer,
|
241
|
-
?next_token: ::String
|
247
|
+
]
|
242
248
|
) -> _ListInstancesResponseSuccess
|
243
249
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstancesResponseSuccess
|
244
250
|
|
@@ -249,6 +255,7 @@ module Aws
|
|
249
255
|
end
|
250
256
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_license_server_endpoints-instance_method
|
251
257
|
def list_license_server_endpoints: (
|
258
|
+
?max_results: ::Integer,
|
252
259
|
?filters: Array[
|
253
260
|
{
|
254
261
|
attribute: ::String?,
|
@@ -256,46 +263,47 @@ module Aws
|
|
256
263
|
value: ::String?
|
257
264
|
},
|
258
265
|
],
|
259
|
-
?max_results: ::Integer,
|
260
266
|
?next_token: ::String
|
261
267
|
) -> _ListLicenseServerEndpointsResponseSuccess
|
262
268
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLicenseServerEndpointsResponseSuccess
|
263
269
|
|
264
270
|
interface _ListProductSubscriptionsResponseSuccess
|
265
271
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListProductSubscriptionsResponse]
|
266
|
-
def next_token: () -> ::String
|
267
272
|
def product_user_summaries: () -> ::Array[Types::ProductUserSummary]
|
273
|
+
def next_token: () -> ::String
|
268
274
|
end
|
269
275
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_product_subscriptions-instance_method
|
270
276
|
def list_product_subscriptions: (
|
271
|
-
?
|
272
|
-
{
|
273
|
-
attribute: ::String?,
|
274
|
-
operation: ::String?,
|
275
|
-
value: ::String?
|
276
|
-
},
|
277
|
-
],
|
277
|
+
?product: ::String,
|
278
278
|
identity_provider: {
|
279
279
|
active_directory_identity_provider: {
|
280
|
+
directory_id: ::String?,
|
280
281
|
active_directory_settings: {
|
282
|
+
domain_name: ::String?,
|
283
|
+
domain_ipv_4_list: Array[::String]?,
|
284
|
+
domain_ipv_6_list: Array[::String]?,
|
281
285
|
domain_credentials_provider: {
|
282
286
|
secrets_manager_credentials_provider: {
|
283
287
|
secret_id: ::String?
|
284
288
|
}?
|
285
289
|
}?,
|
286
|
-
domain_ipv_4_list: Array[::String]?,
|
287
|
-
domain_name: ::String?,
|
288
290
|
domain_network_settings: {
|
289
291
|
subnets: Array[::String]
|
290
292
|
}?
|
291
293
|
}?,
|
292
294
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
293
|
-
|
295
|
+
is_shared_active_directory: bool?
|
294
296
|
}?
|
295
297
|
},
|
296
298
|
?max_results: ::Integer,
|
297
|
-
?
|
298
|
-
|
299
|
+
?filters: Array[
|
300
|
+
{
|
301
|
+
attribute: ::String?,
|
302
|
+
operation: ::String?,
|
303
|
+
value: ::String?
|
304
|
+
},
|
305
|
+
],
|
306
|
+
?next_token: ::String
|
299
307
|
) -> _ListProductSubscriptionsResponseSuccess
|
300
308
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProductSubscriptionsResponseSuccess
|
301
309
|
|
@@ -316,33 +324,35 @@ module Aws
|
|
316
324
|
end
|
317
325
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_user_associations-instance_method
|
318
326
|
def list_user_associations: (
|
319
|
-
|
320
|
-
{
|
321
|
-
attribute: ::String?,
|
322
|
-
operation: ::String?,
|
323
|
-
value: ::String?
|
324
|
-
},
|
325
|
-
],
|
327
|
+
instance_id: ::String,
|
326
328
|
identity_provider: {
|
327
329
|
active_directory_identity_provider: {
|
330
|
+
directory_id: ::String?,
|
328
331
|
active_directory_settings: {
|
332
|
+
domain_name: ::String?,
|
333
|
+
domain_ipv_4_list: Array[::String]?,
|
334
|
+
domain_ipv_6_list: Array[::String]?,
|
329
335
|
domain_credentials_provider: {
|
330
336
|
secrets_manager_credentials_provider: {
|
331
337
|
secret_id: ::String?
|
332
338
|
}?
|
333
339
|
}?,
|
334
|
-
domain_ipv_4_list: Array[::String]?,
|
335
|
-
domain_name: ::String?,
|
336
340
|
domain_network_settings: {
|
337
341
|
subnets: Array[::String]
|
338
342
|
}?
|
339
343
|
}?,
|
340
344
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
341
|
-
|
345
|
+
is_shared_active_directory: bool?
|
342
346
|
}?
|
343
347
|
},
|
344
|
-
instance_id: ::String,
|
345
348
|
?max_results: ::Integer,
|
349
|
+
?filters: Array[
|
350
|
+
{
|
351
|
+
attribute: ::String?,
|
352
|
+
operation: ::String?,
|
353
|
+
value: ::String?
|
354
|
+
},
|
355
|
+
],
|
346
356
|
?next_token: ::String
|
347
357
|
) -> _ListUserAssociationsResponseSuccess
|
348
358
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserAssociationsResponseSuccess
|
@@ -355,26 +365,28 @@ module Aws
|
|
355
365
|
def register_identity_provider: (
|
356
366
|
identity_provider: {
|
357
367
|
active_directory_identity_provider: {
|
368
|
+
directory_id: ::String?,
|
358
369
|
active_directory_settings: {
|
370
|
+
domain_name: ::String?,
|
371
|
+
domain_ipv_4_list: Array[::String]?,
|
372
|
+
domain_ipv_6_list: Array[::String]?,
|
359
373
|
domain_credentials_provider: {
|
360
374
|
secrets_manager_credentials_provider: {
|
361
375
|
secret_id: ::String?
|
362
376
|
}?
|
363
377
|
}?,
|
364
|
-
domain_ipv_4_list: Array[::String]?,
|
365
|
-
domain_name: ::String?,
|
366
378
|
domain_network_settings: {
|
367
379
|
subnets: Array[::String]
|
368
380
|
}?
|
369
381
|
}?,
|
370
382
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
371
|
-
|
383
|
+
is_shared_active_directory: bool?
|
372
384
|
}?
|
373
385
|
},
|
374
386
|
product: ::String,
|
375
387
|
?settings: {
|
376
|
-
|
377
|
-
|
388
|
+
subnets: Array[::String],
|
389
|
+
security_group_id: ::String
|
378
390
|
},
|
379
391
|
?tags: Hash[::String, ::String]
|
380
392
|
) -> _RegisterIdentityProviderResponseSuccess
|
@@ -386,28 +398,30 @@ module Aws
|
|
386
398
|
end
|
387
399
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#start_product_subscription-instance_method
|
388
400
|
def start_product_subscription: (
|
389
|
-
|
401
|
+
username: ::String,
|
390
402
|
identity_provider: {
|
391
403
|
active_directory_identity_provider: {
|
404
|
+
directory_id: ::String?,
|
392
405
|
active_directory_settings: {
|
406
|
+
domain_name: ::String?,
|
407
|
+
domain_ipv_4_list: Array[::String]?,
|
408
|
+
domain_ipv_6_list: Array[::String]?,
|
393
409
|
domain_credentials_provider: {
|
394
410
|
secrets_manager_credentials_provider: {
|
395
411
|
secret_id: ::String?
|
396
412
|
}?
|
397
413
|
}?,
|
398
|
-
domain_ipv_4_list: Array[::String]?,
|
399
|
-
domain_name: ::String?,
|
400
414
|
domain_network_settings: {
|
401
415
|
subnets: Array[::String]
|
402
416
|
}?
|
403
417
|
}?,
|
404
418
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
405
|
-
|
419
|
+
is_shared_active_directory: bool?
|
406
420
|
}?
|
407
421
|
},
|
408
422
|
product: ::String,
|
409
|
-
?
|
410
|
-
|
423
|
+
?domain: ::String,
|
424
|
+
?tags: Hash[::String, ::String]
|
411
425
|
) -> _StartProductSubscriptionResponseSuccess
|
412
426
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProductSubscriptionResponseSuccess
|
413
427
|
|
@@ -417,28 +431,30 @@ module Aws
|
|
417
431
|
end
|
418
432
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#stop_product_subscription-instance_method
|
419
433
|
def stop_product_subscription: (
|
420
|
-
?
|
434
|
+
?username: ::String,
|
421
435
|
?identity_provider: {
|
422
436
|
active_directory_identity_provider: {
|
437
|
+
directory_id: ::String?,
|
423
438
|
active_directory_settings: {
|
439
|
+
domain_name: ::String?,
|
440
|
+
domain_ipv_4_list: Array[::String]?,
|
441
|
+
domain_ipv_6_list: Array[::String]?,
|
424
442
|
domain_credentials_provider: {
|
425
443
|
secrets_manager_credentials_provider: {
|
426
444
|
secret_id: ::String?
|
427
445
|
}?
|
428
446
|
}?,
|
429
|
-
domain_ipv_4_list: Array[::String]?,
|
430
|
-
domain_name: ::String?,
|
431
447
|
domain_network_settings: {
|
432
448
|
subnets: Array[::String]
|
433
449
|
}?
|
434
450
|
}?,
|
435
451
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
436
|
-
|
452
|
+
is_shared_active_directory: bool?
|
437
453
|
}?
|
438
454
|
},
|
439
455
|
?product: ::String,
|
440
456
|
?product_user_arn: ::String,
|
441
|
-
?
|
457
|
+
?domain: ::String
|
442
458
|
) -> _StopProductSubscriptionResponseSuccess
|
443
459
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopProductSubscriptionResponseSuccess
|
444
460
|
|
@@ -470,24 +486,26 @@ module Aws
|
|
470
486
|
def update_identity_provider_settings: (
|
471
487
|
?identity_provider: {
|
472
488
|
active_directory_identity_provider: {
|
489
|
+
directory_id: ::String?,
|
473
490
|
active_directory_settings: {
|
491
|
+
domain_name: ::String?,
|
492
|
+
domain_ipv_4_list: Array[::String]?,
|
493
|
+
domain_ipv_6_list: Array[::String]?,
|
474
494
|
domain_credentials_provider: {
|
475
495
|
secrets_manager_credentials_provider: {
|
476
496
|
secret_id: ::String?
|
477
497
|
}?
|
478
498
|
}?,
|
479
|
-
domain_ipv_4_list: Array[::String]?,
|
480
|
-
domain_name: ::String?,
|
481
499
|
domain_network_settings: {
|
482
500
|
subnets: Array[::String]
|
483
501
|
}?
|
484
502
|
}?,
|
485
503
|
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
486
|
-
|
504
|
+
is_shared_active_directory: bool?
|
487
505
|
}?
|
488
506
|
},
|
489
|
-
?identity_provider_arn: ::String,
|
490
507
|
?product: ::String,
|
508
|
+
?identity_provider_arn: ::String,
|
491
509
|
update_settings: {
|
492
510
|
add_subnets: Array[::String],
|
493
511
|
remove_subnets: Array[::String],
|