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