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
@@ -25,6 +25,10 @@ module Aws::LicenseManagerUserSubscriptions
|
|
25
25
|
|
26
26
|
# Details about an Active Directory identity provider.
|
27
27
|
#
|
28
|
+
# @!attribute [rw] directory_id
|
29
|
+
# The directory ID for an Active Directory identity provider.
|
30
|
+
# @return [String]
|
31
|
+
#
|
28
32
|
# @!attribute [rw] active_directory_settings
|
29
33
|
# The `ActiveDirectorySettings` resource contains details about the
|
30
34
|
# Active Directory, including network access details such as domain
|
@@ -37,16 +41,18 @@ module Aws::LicenseManagerUserSubscriptions
|
|
37
41
|
# Directory or an Amazon Web Services Managed Active Directory.
|
38
42
|
# @return [String]
|
39
43
|
#
|
40
|
-
# @!attribute [rw]
|
41
|
-
#
|
42
|
-
#
|
44
|
+
# @!attribute [rw] is_shared_active_directory
|
45
|
+
# Whether this directory is shared from an Amazon Web Services Managed
|
46
|
+
# Active Directory. The default value is false.
|
47
|
+
# @return [Boolean]
|
43
48
|
#
|
44
49
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ActiveDirectoryIdentityProvider AWS API Documentation
|
45
50
|
#
|
46
51
|
class ActiveDirectoryIdentityProvider < Struct.new(
|
52
|
+
:directory_id,
|
47
53
|
:active_directory_settings,
|
48
54
|
:active_directory_type,
|
49
|
-
:
|
55
|
+
:is_shared_active_directory)
|
50
56
|
SENSITIVE = []
|
51
57
|
include Aws::Structure
|
52
58
|
end
|
@@ -54,19 +60,19 @@ module Aws::LicenseManagerUserSubscriptions
|
|
54
60
|
# Contains network access and credential details that are needed for
|
55
61
|
# user administration in the Active Directory.
|
56
62
|
#
|
57
|
-
# @!attribute [rw]
|
58
|
-
#
|
59
|
-
#
|
60
|
-
# @return [Types::CredentialsProvider]
|
63
|
+
# @!attribute [rw] domain_name
|
64
|
+
# The domain name for the Active Directory.
|
65
|
+
# @return [String]
|
61
66
|
#
|
62
67
|
# @!attribute [rw] domain_ipv_4_list
|
63
68
|
# A list of domain IPv4 addresses that are used for the Active
|
64
69
|
# Directory.
|
65
70
|
# @return [Array<String>]
|
66
71
|
#
|
67
|
-
# @!attribute [rw]
|
68
|
-
#
|
69
|
-
#
|
72
|
+
# @!attribute [rw] domain_credentials_provider
|
73
|
+
# Points to the `CredentialsProvider` resource that contains
|
74
|
+
# information about the credential provider for user administration.
|
75
|
+
# @return [Types::CredentialsProvider]
|
70
76
|
#
|
71
77
|
# @!attribute [rw] domain_network_settings
|
72
78
|
# The `DomainNetworkSettings` resource contains an array of subnets
|
@@ -76,44 +82,44 @@ module Aws::LicenseManagerUserSubscriptions
|
|
76
82
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ActiveDirectorySettings AWS API Documentation
|
77
83
|
#
|
78
84
|
class ActiveDirectorySettings < Struct.new(
|
79
|
-
:domain_credentials_provider,
|
80
|
-
:domain_ipv_4_list,
|
81
85
|
:domain_name,
|
86
|
+
:domain_ipv_4_list,
|
87
|
+
:domain_credentials_provider,
|
82
88
|
:domain_network_settings)
|
83
89
|
SENSITIVE = []
|
84
90
|
include Aws::Structure
|
85
91
|
end
|
86
92
|
|
87
|
-
# @!attribute [rw]
|
88
|
-
# The
|
89
|
-
#
|
93
|
+
# @!attribute [rw] username
|
94
|
+
# The user name from the identity provider.
|
95
|
+
# @return [String]
|
96
|
+
#
|
97
|
+
# @!attribute [rw] instance_id
|
98
|
+
# The ID of the EC2 instance that provides the user-based
|
99
|
+
# subscription.
|
90
100
|
# @return [String]
|
91
101
|
#
|
92
102
|
# @!attribute [rw] identity_provider
|
93
103
|
# The identity provider for the user.
|
94
104
|
# @return [Types::IdentityProvider]
|
95
105
|
#
|
96
|
-
# @!attribute [rw]
|
97
|
-
# The
|
98
|
-
#
|
106
|
+
# @!attribute [rw] domain
|
107
|
+
# The domain name of the Active Directory that contains information
|
108
|
+
# for the user to associate.
|
99
109
|
# @return [String]
|
100
110
|
#
|
101
111
|
# @!attribute [rw] tags
|
102
112
|
# The tags that apply for the user association.
|
103
113
|
# @return [Hash<String,String>]
|
104
114
|
#
|
105
|
-
# @!attribute [rw] username
|
106
|
-
# The user name from the identity provider.
|
107
|
-
# @return [String]
|
108
|
-
#
|
109
115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/AssociateUserRequest AWS API Documentation
|
110
116
|
#
|
111
117
|
class AssociateUserRequest < Struct.new(
|
112
|
-
:
|
113
|
-
:identity_provider,
|
118
|
+
:username,
|
114
119
|
:instance_id,
|
115
|
-
:
|
116
|
-
:
|
120
|
+
:identity_provider,
|
121
|
+
:domain,
|
122
|
+
:tags)
|
117
123
|
SENSITIVE = [:tags]
|
118
124
|
include Aws::Structure
|
119
125
|
end
|
@@ -252,11 +258,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
252
258
|
# provider.
|
253
259
|
# @return [Types::IdentityProvider]
|
254
260
|
#
|
255
|
-
# @!attribute [rw] identity_provider_arn
|
256
|
-
# The Amazon Resource Name (ARN) that identifies the identity provider
|
257
|
-
# to deregister.
|
258
|
-
# @return [String]
|
259
|
-
#
|
260
261
|
# @!attribute [rw] product
|
261
262
|
# The name of the user-based subscription product.
|
262
263
|
#
|
@@ -265,12 +266,17 @@ module Aws::LicenseManagerUserSubscriptions
|
|
265
266
|
# `REMOTE_DESKTOP_SERVICES`
|
266
267
|
# @return [String]
|
267
268
|
#
|
269
|
+
# @!attribute [rw] identity_provider_arn
|
270
|
+
# The Amazon Resource Name (ARN) that identifies the identity provider
|
271
|
+
# to deregister.
|
272
|
+
# @return [String]
|
273
|
+
#
|
268
274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/DeregisterIdentityProviderRequest AWS API Documentation
|
269
275
|
#
|
270
276
|
class DeregisterIdentityProviderRequest < Struct.new(
|
271
277
|
:identity_provider,
|
272
|
-
:
|
273
|
-
:
|
278
|
+
:product,
|
279
|
+
:identity_provider_arn)
|
274
280
|
SENSITIVE = []
|
275
281
|
include Aws::Structure
|
276
282
|
end
|
@@ -288,9 +294,13 @@ module Aws::LicenseManagerUserSubscriptions
|
|
288
294
|
include Aws::Structure
|
289
295
|
end
|
290
296
|
|
291
|
-
# @!attribute [rw]
|
292
|
-
# The
|
293
|
-
#
|
297
|
+
# @!attribute [rw] username
|
298
|
+
# The user name from the Active Directory identity provider for the
|
299
|
+
# user.
|
300
|
+
# @return [String]
|
301
|
+
#
|
302
|
+
# @!attribute [rw] instance_id
|
303
|
+
# The ID of the EC2 instance which provides user-based subscriptions.
|
294
304
|
# @return [String]
|
295
305
|
#
|
296
306
|
# @!attribute [rw] identity_provider
|
@@ -298,28 +308,24 @@ module Aws::LicenseManagerUserSubscriptions
|
|
298
308
|
# provider.
|
299
309
|
# @return [Types::IdentityProvider]
|
300
310
|
#
|
301
|
-
# @!attribute [rw] instance_id
|
302
|
-
# The ID of the EC2 instance which provides user-based subscriptions.
|
303
|
-
# @return [String]
|
304
|
-
#
|
305
311
|
# @!attribute [rw] instance_user_arn
|
306
312
|
# The Amazon Resource Name (ARN) of the user to disassociate from the
|
307
313
|
# EC2 instance.
|
308
314
|
# @return [String]
|
309
315
|
#
|
310
|
-
# @!attribute [rw]
|
311
|
-
# The
|
312
|
-
# user.
|
316
|
+
# @!attribute [rw] domain
|
317
|
+
# The domain name of the Active Directory that contains information
|
318
|
+
# for the user to disassociate.
|
313
319
|
# @return [String]
|
314
320
|
#
|
315
321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/DisassociateUserRequest AWS API Documentation
|
316
322
|
#
|
317
323
|
class DisassociateUserRequest < Struct.new(
|
318
|
-
:
|
319
|
-
:identity_provider,
|
324
|
+
:username,
|
320
325
|
:instance_id,
|
326
|
+
:identity_provider,
|
321
327
|
:instance_user_arn,
|
322
|
-
:
|
328
|
+
:domain)
|
323
329
|
SENSITIVE = []
|
324
330
|
include Aws::Structure
|
325
331
|
end
|
@@ -404,42 +410,47 @@ module Aws::LicenseManagerUserSubscriptions
|
|
404
410
|
|
405
411
|
# Describes an identity provider.
|
406
412
|
#
|
407
|
-
# @!attribute [rw] failure_message
|
408
|
-
# The failure message associated with an identity provider.
|
409
|
-
# @return [String]
|
410
|
-
#
|
411
413
|
# @!attribute [rw] identity_provider
|
412
414
|
# The `IdentityProvider` resource contains information about an
|
413
415
|
# identity provider.
|
414
416
|
# @return [Types::IdentityProvider]
|
415
417
|
#
|
416
|
-
# @!attribute [rw] identity_provider_arn
|
417
|
-
# The Amazon Resource Name (ARN) of the identity provider.
|
418
|
-
# @return [String]
|
419
|
-
#
|
420
|
-
# @!attribute [rw] product
|
421
|
-
# The name of the user-based subscription product.
|
422
|
-
# @return [String]
|
423
|
-
#
|
424
418
|
# @!attribute [rw] settings
|
425
419
|
# The `Settings` resource contains details about the registered
|
426
420
|
# identity provider’s product related configuration settings, such as
|
427
421
|
# the subnets to provision VPC endpoints.
|
428
422
|
# @return [Types::Settings]
|
429
423
|
#
|
424
|
+
# @!attribute [rw] product
|
425
|
+
# The name of the user-based subscription product.
|
426
|
+
# @return [String]
|
427
|
+
#
|
430
428
|
# @!attribute [rw] status
|
431
429
|
# The status of the identity provider.
|
432
430
|
# @return [String]
|
433
431
|
#
|
432
|
+
# @!attribute [rw] identity_provider_arn
|
433
|
+
# The Amazon Resource Name (ARN) of the identity provider.
|
434
|
+
# @return [String]
|
435
|
+
#
|
436
|
+
# @!attribute [rw] failure_message
|
437
|
+
# The failure message associated with an identity provider.
|
438
|
+
# @return [String]
|
439
|
+
#
|
440
|
+
# @!attribute [rw] owner_account_id
|
441
|
+
# The AWS Account ID of the owner of this resource.
|
442
|
+
# @return [String]
|
443
|
+
#
|
434
444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/IdentityProviderSummary AWS API Documentation
|
435
445
|
#
|
436
446
|
class IdentityProviderSummary < Struct.new(
|
437
|
-
:failure_message,
|
438
447
|
:identity_provider,
|
439
|
-
:identity_provider_arn,
|
440
|
-
:product,
|
441
448
|
:settings,
|
442
|
-
:
|
449
|
+
:product,
|
450
|
+
:status,
|
451
|
+
:identity_provider_arn,
|
452
|
+
:failure_message,
|
453
|
+
:owner_account_id)
|
443
454
|
SENSITIVE = []
|
444
455
|
include Aws::Structure
|
445
456
|
end
|
@@ -450,47 +461,53 @@ module Aws::LicenseManagerUserSubscriptions
|
|
450
461
|
# The ID of the EC2 instance, which provides user-based subscriptions.
|
451
462
|
# @return [String]
|
452
463
|
#
|
453
|
-
# @!attribute [rw]
|
454
|
-
# The
|
464
|
+
# @!attribute [rw] status
|
465
|
+
# The status of an EC2 instance resource.
|
455
466
|
# @return [String]
|
456
467
|
#
|
457
468
|
# @!attribute [rw] products
|
458
469
|
# A list of provided user-based subscription products.
|
459
470
|
# @return [Array<String>]
|
460
471
|
#
|
461
|
-
# @!attribute [rw]
|
462
|
-
# The
|
472
|
+
# @!attribute [rw] last_status_check_date
|
473
|
+
# The date of the last status check.
|
463
474
|
# @return [String]
|
464
475
|
#
|
465
476
|
# @!attribute [rw] status_message
|
466
477
|
# The status message for an EC2 instance.
|
467
478
|
# @return [String]
|
468
479
|
#
|
480
|
+
# @!attribute [rw] owner_account_id
|
481
|
+
# The AWS Account ID of the owner of this resource.
|
482
|
+
# @return [String]
|
483
|
+
#
|
484
|
+
# @!attribute [rw] identity_provider
|
485
|
+
# The `IdentityProvider` resource specifies details about the identity
|
486
|
+
# provider.
|
487
|
+
# @return [Types::IdentityProvider]
|
488
|
+
#
|
469
489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/InstanceSummary AWS API Documentation
|
470
490
|
#
|
471
491
|
class InstanceSummary < Struct.new(
|
472
492
|
:instance_id,
|
473
|
-
:last_status_check_date,
|
474
|
-
:products,
|
475
493
|
:status,
|
476
|
-
:
|
494
|
+
:products,
|
495
|
+
:last_status_check_date,
|
496
|
+
:status_message,
|
497
|
+
:owner_account_id,
|
498
|
+
:identity_provider)
|
477
499
|
SENSITIVE = []
|
478
500
|
include Aws::Structure
|
479
501
|
end
|
480
502
|
|
481
503
|
# Describes users of an EC2 instance providing user-based subscriptions.
|
482
504
|
#
|
483
|
-
# @!attribute [rw]
|
484
|
-
# The
|
485
|
-
# @return [String]
|
486
|
-
#
|
487
|
-
# @!attribute [rw] disassociation_date
|
488
|
-
# The date a user was disassociated from an EC2 instance.
|
505
|
+
# @!attribute [rw] username
|
506
|
+
# The user name from the identity provider for the user.
|
489
507
|
# @return [String]
|
490
508
|
#
|
491
|
-
# @!attribute [rw]
|
492
|
-
# The
|
493
|
-
# information for the product subscription.
|
509
|
+
# @!attribute [rw] instance_id
|
510
|
+
# The ID of the EC2 instance that provides user-based subscriptions.
|
494
511
|
# @return [String]
|
495
512
|
#
|
496
513
|
# @!attribute [rw] identity_provider
|
@@ -498,38 +515,43 @@ module Aws::LicenseManagerUserSubscriptions
|
|
498
515
|
# provider.
|
499
516
|
# @return [Types::IdentityProvider]
|
500
517
|
#
|
501
|
-
# @!attribute [rw]
|
502
|
-
# The
|
518
|
+
# @!attribute [rw] status
|
519
|
+
# The status of a user associated with an EC2 instance.
|
503
520
|
# @return [String]
|
504
521
|
#
|
505
522
|
# @!attribute [rw] instance_user_arn
|
506
523
|
# The Amazon Resource Name (ARN) that identifies the instance user.
|
507
524
|
# @return [String]
|
508
525
|
#
|
509
|
-
# @!attribute [rw] status
|
510
|
-
# The status of a user associated with an EC2 instance.
|
511
|
-
# @return [String]
|
512
|
-
#
|
513
526
|
# @!attribute [rw] status_message
|
514
527
|
# The status message for users of an EC2 instance.
|
515
528
|
# @return [String]
|
516
529
|
#
|
517
|
-
# @!attribute [rw]
|
518
|
-
# The
|
530
|
+
# @!attribute [rw] domain
|
531
|
+
# The domain name of the Active Directory that contains the user
|
532
|
+
# information for the product subscription.
|
533
|
+
# @return [String]
|
534
|
+
#
|
535
|
+
# @!attribute [rw] association_date
|
536
|
+
# The date a user was associated with an EC2 instance.
|
537
|
+
# @return [String]
|
538
|
+
#
|
539
|
+
# @!attribute [rw] disassociation_date
|
540
|
+
# The date a user was disassociated from an EC2 instance.
|
519
541
|
# @return [String]
|
520
542
|
#
|
521
543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/InstanceUserSummary AWS API Documentation
|
522
544
|
#
|
523
545
|
class InstanceUserSummary < Struct.new(
|
524
|
-
:
|
525
|
-
:disassociation_date,
|
526
|
-
:domain,
|
527
|
-
:identity_provider,
|
546
|
+
:username,
|
528
547
|
:instance_id,
|
529
|
-
:
|
548
|
+
:identity_provider,
|
530
549
|
:status,
|
550
|
+
:instance_user_arn,
|
531
551
|
:status_message,
|
532
|
-
:
|
552
|
+
:domain,
|
553
|
+
:association_date,
|
554
|
+
:disassociation_date)
|
533
555
|
SENSITIVE = []
|
534
556
|
include Aws::Structure
|
535
557
|
end
|
@@ -549,6 +571,11 @@ module Aws::LicenseManagerUserSubscriptions
|
|
549
571
|
|
550
572
|
# Information about a Remote Desktop Services (RDS) license server.
|
551
573
|
#
|
574
|
+
# @!attribute [rw] provisioning_status
|
575
|
+
# The current state of the provisioning process for the RDS license
|
576
|
+
# server.
|
577
|
+
# @return [String]
|
578
|
+
#
|
552
579
|
# @!attribute [rw] health_status
|
553
580
|
# The health status of the RDS license server.
|
554
581
|
# @return [String]
|
@@ -558,17 +585,12 @@ module Aws::LicenseManagerUserSubscriptions
|
|
558
585
|
# server.
|
559
586
|
# @return [String]
|
560
587
|
#
|
561
|
-
# @!attribute [rw] provisioning_status
|
562
|
-
# The current state of the provisioning process for the RDS license
|
563
|
-
# server.
|
564
|
-
# @return [String]
|
565
|
-
#
|
566
588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/LicenseServer AWS API Documentation
|
567
589
|
#
|
568
590
|
class LicenseServer < Struct.new(
|
591
|
+
:provisioning_status,
|
569
592
|
:health_status,
|
570
|
-
:ipv_4_address
|
571
|
-
:provisioning_status)
|
593
|
+
:ipv_4_address)
|
572
594
|
SENSITIVE = []
|
573
595
|
include Aws::Structure
|
574
596
|
end
|
@@ -576,24 +598,33 @@ module Aws::LicenseManagerUserSubscriptions
|
|
576
598
|
# Contains details about a network endpoint for a Remote Desktop
|
577
599
|
# Services (RDS) license server.
|
578
600
|
#
|
579
|
-
# @!attribute [rw] creation_time
|
580
|
-
# The timestamp when License Manager created the license server
|
581
|
-
# endpoint.
|
582
|
-
# @return [Time]
|
583
|
-
#
|
584
601
|
# @!attribute [rw] identity_provider_arn
|
585
602
|
# The Amazon Resource Name (ARN) of the identity provider that's
|
586
603
|
# associated with the RDS license server endpoint.
|
587
604
|
# @return [String]
|
588
605
|
#
|
589
|
-
# @!attribute [rw]
|
590
|
-
# The
|
606
|
+
# @!attribute [rw] server_type
|
607
|
+
# The type of license server.
|
608
|
+
# @return [String]
|
609
|
+
#
|
610
|
+
# @!attribute [rw] server_endpoint
|
611
|
+
# The `ServerEndpoint` resource contains the network address of the
|
612
|
+
# RDS license server endpoint.
|
613
|
+
# @return [Types::ServerEndpoint]
|
614
|
+
#
|
615
|
+
# @!attribute [rw] status_message
|
616
|
+
# The message associated with the provisioning status, if there is
|
617
|
+
# one.
|
591
618
|
# @return [String]
|
592
619
|
#
|
593
620
|
# @!attribute [rw] license_server_endpoint_id
|
594
621
|
# The ID of the license server endpoint.
|
595
622
|
# @return [String]
|
596
623
|
#
|
624
|
+
# @!attribute [rw] license_server_endpoint_arn
|
625
|
+
# The ARN of the `ServerEndpoint` resource for the RDS license server.
|
626
|
+
# @return [String]
|
627
|
+
#
|
597
628
|
# @!attribute [rw] license_server_endpoint_provisioning_status
|
598
629
|
# The current state of the provisioning process for the RDS license
|
599
630
|
# server endpoint
|
@@ -604,55 +635,50 @@ module Aws::LicenseManagerUserSubscriptions
|
|
604
635
|
# servers that are accessed through this endpoint.
|
605
636
|
# @return [Array<Types::LicenseServer>]
|
606
637
|
#
|
607
|
-
# @!attribute [rw]
|
608
|
-
# The
|
609
|
-
#
|
610
|
-
# @return [
|
611
|
-
#
|
612
|
-
# @!attribute [rw] server_type
|
613
|
-
# The type of license server.
|
614
|
-
# @return [String]
|
615
|
-
#
|
616
|
-
# @!attribute [rw] status_message
|
617
|
-
# The message associated with the provisioning status, if there is
|
618
|
-
# one.
|
619
|
-
# @return [String]
|
638
|
+
# @!attribute [rw] creation_time
|
639
|
+
# The timestamp when License Manager created the license server
|
640
|
+
# endpoint.
|
641
|
+
# @return [Time]
|
620
642
|
#
|
621
643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/LicenseServerEndpoint AWS API Documentation
|
622
644
|
#
|
623
645
|
class LicenseServerEndpoint < Struct.new(
|
624
|
-
:creation_time,
|
625
646
|
:identity_provider_arn,
|
626
|
-
:
|
647
|
+
:server_type,
|
648
|
+
:server_endpoint,
|
649
|
+
:status_message,
|
627
650
|
:license_server_endpoint_id,
|
651
|
+
:license_server_endpoint_arn,
|
628
652
|
:license_server_endpoint_provisioning_status,
|
629
653
|
:license_servers,
|
630
|
-
:
|
631
|
-
:server_type,
|
632
|
-
:status_message)
|
654
|
+
:creation_time)
|
633
655
|
SENSITIVE = []
|
634
656
|
include Aws::Structure
|
635
657
|
end
|
636
658
|
|
637
659
|
# The settings to configure your license server.
|
638
660
|
#
|
639
|
-
# @!attribute [rw] server_settings
|
640
|
-
# The `ServerSettings` resource contains the settings for your server.
|
641
|
-
# @return [Types::ServerSettings]
|
642
|
-
#
|
643
661
|
# @!attribute [rw] server_type
|
644
662
|
# The type of license server.
|
645
663
|
# @return [String]
|
646
664
|
#
|
665
|
+
# @!attribute [rw] server_settings
|
666
|
+
# The `ServerSettings` resource contains the settings for your server.
|
667
|
+
# @return [Types::ServerSettings]
|
668
|
+
#
|
647
669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/LicenseServerSettings AWS API Documentation
|
648
670
|
#
|
649
671
|
class LicenseServerSettings < Struct.new(
|
650
|
-
:
|
651
|
-
:
|
672
|
+
:server_type,
|
673
|
+
:server_settings)
|
652
674
|
SENSITIVE = []
|
653
675
|
include Aws::Structure
|
654
676
|
end
|
655
677
|
|
678
|
+
# @!attribute [rw] max_results
|
679
|
+
# The maximum number of results to return from a single request.
|
680
|
+
# @return [Integer]
|
681
|
+
#
|
656
682
|
# @!attribute [rw] filters
|
657
683
|
# You can use the following filters to streamline results:
|
658
684
|
#
|
@@ -661,10 +687,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
661
687
|
# * DirectoryId
|
662
688
|
# @return [Array<Types::Filter>]
|
663
689
|
#
|
664
|
-
# @!attribute [rw] max_results
|
665
|
-
# The maximum number of results to return from a single request.
|
666
|
-
# @return [Integer]
|
667
|
-
#
|
668
690
|
# @!attribute [rw] next_token
|
669
691
|
# A token to specify where to start paginating. This is the nextToken
|
670
692
|
# from a previously truncated response.
|
@@ -673,8 +695,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
673
695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListIdentityProvidersRequest AWS API Documentation
|
674
696
|
#
|
675
697
|
class ListIdentityProvidersRequest < Struct.new(
|
676
|
-
:filters,
|
677
698
|
:max_results,
|
699
|
+
:filters,
|
678
700
|
:next_token)
|
679
701
|
SENSITIVE = []
|
680
702
|
include Aws::Structure
|
@@ -702,14 +724,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
702
724
|
include Aws::Structure
|
703
725
|
end
|
704
726
|
|
705
|
-
# @!attribute [rw] filters
|
706
|
-
# You can use the following filters to streamline results:
|
707
|
-
#
|
708
|
-
# * Status
|
709
|
-
#
|
710
|
-
# * InstanceId
|
711
|
-
# @return [Array<Types::Filter>]
|
712
|
-
#
|
713
727
|
# @!attribute [rw] max_results
|
714
728
|
# The maximum number of results to return from a single request.
|
715
729
|
# @return [Integer]
|
@@ -719,12 +733,20 @@ module Aws::LicenseManagerUserSubscriptions
|
|
719
733
|
# from a previously truncated response.
|
720
734
|
# @return [String]
|
721
735
|
#
|
736
|
+
# @!attribute [rw] filters
|
737
|
+
# You can use the following filters to streamline results:
|
738
|
+
#
|
739
|
+
# * Status
|
740
|
+
#
|
741
|
+
# * InstanceId
|
742
|
+
# @return [Array<Types::Filter>]
|
743
|
+
#
|
722
744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListInstancesRequest AWS API Documentation
|
723
745
|
#
|
724
746
|
class ListInstancesRequest < Struct.new(
|
725
|
-
:filters,
|
726
747
|
:max_results,
|
727
|
-
:next_token
|
748
|
+
:next_token,
|
749
|
+
:filters)
|
728
750
|
SENSITIVE = []
|
729
751
|
include Aws::Structure
|
730
752
|
end
|
@@ -751,6 +773,10 @@ module Aws::LicenseManagerUserSubscriptions
|
|
751
773
|
include Aws::Structure
|
752
774
|
end
|
753
775
|
|
776
|
+
# @!attribute [rw] max_results
|
777
|
+
# The maximum number of results to return from a single request.
|
778
|
+
# @return [Integer]
|
779
|
+
#
|
754
780
|
# @!attribute [rw] filters
|
755
781
|
# You can use the following filters to streamline results:
|
756
782
|
#
|
@@ -759,10 +785,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
759
785
|
# ^
|
760
786
|
# @return [Array<Types::Filter>]
|
761
787
|
#
|
762
|
-
# @!attribute [rw] max_results
|
763
|
-
# The maximum number of results to return from a single request.
|
764
|
-
# @return [Integer]
|
765
|
-
#
|
766
788
|
# @!attribute [rw] next_token
|
767
789
|
# A token to specify where to start paginating. This is the nextToken
|
768
790
|
# from a previously truncated response.
|
@@ -771,8 +793,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
771
793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListLicenseServerEndpointsRequest AWS API Documentation
|
772
794
|
#
|
773
795
|
class ListLicenseServerEndpointsRequest < Struct.new(
|
774
|
-
:filters,
|
775
796
|
:max_results,
|
797
|
+
:filters,
|
776
798
|
:next_token)
|
777
799
|
SENSITIVE = []
|
778
800
|
include Aws::Structure
|
@@ -800,15 +822,13 @@ module Aws::LicenseManagerUserSubscriptions
|
|
800
822
|
include Aws::Structure
|
801
823
|
end
|
802
824
|
|
803
|
-
# @!attribute [rw]
|
804
|
-
#
|
805
|
-
#
|
806
|
-
# * Status
|
807
|
-
#
|
808
|
-
# * Username
|
825
|
+
# @!attribute [rw] product
|
826
|
+
# The name of the user-based subscription product.
|
809
827
|
#
|
810
|
-
#
|
811
|
-
#
|
828
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
829
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
830
|
+
# `REMOTE_DESKTOP_SERVICES`
|
831
|
+
# @return [String]
|
812
832
|
#
|
813
833
|
# @!attribute [rw] identity_provider
|
814
834
|
# An object that specifies details for the identity provider.
|
@@ -818,31 +838,37 @@ module Aws::LicenseManagerUserSubscriptions
|
|
818
838
|
# The maximum number of results to return from a single request.
|
819
839
|
# @return [Integer]
|
820
840
|
#
|
841
|
+
# @!attribute [rw] filters
|
842
|
+
# You can use the following filters to streamline results:
|
843
|
+
#
|
844
|
+
# * Status
|
845
|
+
#
|
846
|
+
# * Username
|
847
|
+
#
|
848
|
+
# * Domain
|
849
|
+
# @return [Array<Types::Filter>]
|
850
|
+
#
|
821
851
|
# @!attribute [rw] next_token
|
822
852
|
# A token to specify where to start paginating. This is the nextToken
|
823
853
|
# from a previously truncated response.
|
824
854
|
# @return [String]
|
825
855
|
#
|
826
|
-
# @!attribute [rw] product
|
827
|
-
# The name of the user-based subscription product.
|
828
|
-
#
|
829
|
-
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
830
|
-
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
831
|
-
# `REMOTE_DESKTOP_SERVICES`
|
832
|
-
# @return [String]
|
833
|
-
#
|
834
856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListProductSubscriptionsRequest AWS API Documentation
|
835
857
|
#
|
836
858
|
class ListProductSubscriptionsRequest < Struct.new(
|
837
|
-
:
|
859
|
+
:product,
|
838
860
|
:identity_provider,
|
839
861
|
:max_results,
|
840
|
-
:
|
841
|
-
:
|
862
|
+
:filters,
|
863
|
+
:next_token)
|
842
864
|
SENSITIVE = []
|
843
865
|
include Aws::Structure
|
844
866
|
end
|
845
867
|
|
868
|
+
# @!attribute [rw] product_user_summaries
|
869
|
+
# Metadata that describes the list product subscriptions operation.
|
870
|
+
# @return [Array<Types::ProductUserSummary>]
|
871
|
+
#
|
846
872
|
# @!attribute [rw] next_token
|
847
873
|
# The next token used for paginated responses. When this field isn't
|
848
874
|
# empty, there are additional elements that the service hasn't
|
@@ -850,15 +876,11 @@ module Aws::LicenseManagerUserSubscriptions
|
|
850
876
|
# retrieve additional objects.
|
851
877
|
# @return [String]
|
852
878
|
#
|
853
|
-
# @!attribute [rw] product_user_summaries
|
854
|
-
# Metadata that describes the list product subscriptions operation.
|
855
|
-
# @return [Array<Types::ProductUserSummary>]
|
856
|
-
#
|
857
879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListProductSubscriptionsResponse AWS API Documentation
|
858
880
|
#
|
859
881
|
class ListProductSubscriptionsResponse < Struct.new(
|
860
|
-
:
|
861
|
-
:
|
882
|
+
:product_user_summaries,
|
883
|
+
:next_token)
|
862
884
|
SENSITIVE = []
|
863
885
|
include Aws::Structure
|
864
886
|
end
|
@@ -888,6 +910,18 @@ module Aws::LicenseManagerUserSubscriptions
|
|
888
910
|
include Aws::Structure
|
889
911
|
end
|
890
912
|
|
913
|
+
# @!attribute [rw] instance_id
|
914
|
+
# The ID of the EC2 instance, which provides user-based subscriptions.
|
915
|
+
# @return [String]
|
916
|
+
#
|
917
|
+
# @!attribute [rw] identity_provider
|
918
|
+
# An object that specifies details for the identity provider.
|
919
|
+
# @return [Types::IdentityProvider]
|
920
|
+
#
|
921
|
+
# @!attribute [rw] max_results
|
922
|
+
# The maximum number of results to return from a single request.
|
923
|
+
# @return [Integer]
|
924
|
+
#
|
891
925
|
# @!attribute [rw] filters
|
892
926
|
# You can use the following filters to streamline results:
|
893
927
|
#
|
@@ -898,18 +932,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
898
932
|
# * Domain
|
899
933
|
# @return [Array<Types::Filter>]
|
900
934
|
#
|
901
|
-
# @!attribute [rw] identity_provider
|
902
|
-
# An object that specifies details for the identity provider.
|
903
|
-
# @return [Types::IdentityProvider]
|
904
|
-
#
|
905
|
-
# @!attribute [rw] instance_id
|
906
|
-
# The ID of the EC2 instance, which provides user-based subscriptions.
|
907
|
-
# @return [String]
|
908
|
-
#
|
909
|
-
# @!attribute [rw] max_results
|
910
|
-
# The maximum number of results to return from a single request.
|
911
|
-
# @return [Integer]
|
912
|
-
#
|
913
935
|
# @!attribute [rw] next_token
|
914
936
|
# A token to specify where to start paginating. This is the nextToken
|
915
937
|
# from a previously truncated response.
|
@@ -918,10 +940,10 @@ module Aws::LicenseManagerUserSubscriptions
|
|
918
940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListUserAssociationsRequest AWS API Documentation
|
919
941
|
#
|
920
942
|
class ListUserAssociationsRequest < Struct.new(
|
921
|
-
:filters,
|
922
|
-
:identity_provider,
|
923
943
|
:instance_id,
|
944
|
+
:identity_provider,
|
924
945
|
:max_results,
|
946
|
+
:filters,
|
925
947
|
:next_token)
|
926
948
|
SENSITIVE = []
|
927
949
|
include Aws::Structure
|
@@ -949,55 +971,55 @@ module Aws::LicenseManagerUserSubscriptions
|
|
949
971
|
|
950
972
|
# A summary of the user-based subscription products for a specific user.
|
951
973
|
#
|
952
|
-
# @!attribute [rw]
|
953
|
-
# The
|
954
|
-
#
|
974
|
+
# @!attribute [rw] username
|
975
|
+
# The user name from the identity provider for this product user.
|
976
|
+
# @return [String]
|
977
|
+
#
|
978
|
+
# @!attribute [rw] product
|
979
|
+
# The name of the user-based subscription product.
|
955
980
|
# @return [String]
|
956
981
|
#
|
957
982
|
# @!attribute [rw] identity_provider
|
958
983
|
# An object that specifies details for the identity provider.
|
959
984
|
# @return [Types::IdentityProvider]
|
960
985
|
#
|
961
|
-
# @!attribute [rw]
|
962
|
-
# The
|
986
|
+
# @!attribute [rw] status
|
987
|
+
# The status of a product for this user.
|
963
988
|
# @return [String]
|
964
989
|
#
|
965
990
|
# @!attribute [rw] product_user_arn
|
966
991
|
# The Amazon Resource Name (ARN) for this product user.
|
967
992
|
# @return [String]
|
968
993
|
#
|
969
|
-
# @!attribute [rw] status
|
970
|
-
# The status of a product for this user.
|
971
|
-
# @return [String]
|
972
|
-
#
|
973
994
|
# @!attribute [rw] status_message
|
974
995
|
# The status message for a product for this user.
|
975
996
|
# @return [String]
|
976
997
|
#
|
977
|
-
# @!attribute [rw]
|
978
|
-
# The
|
998
|
+
# @!attribute [rw] domain
|
999
|
+
# The domain name of the Active Directory that contains the user
|
1000
|
+
# information for the product subscription.
|
979
1001
|
# @return [String]
|
980
1002
|
#
|
981
1003
|
# @!attribute [rw] subscription_start_date
|
982
1004
|
# The start date of a subscription.
|
983
1005
|
# @return [String]
|
984
1006
|
#
|
985
|
-
# @!attribute [rw]
|
986
|
-
# The
|
1007
|
+
# @!attribute [rw] subscription_end_date
|
1008
|
+
# The end date of a subscription.
|
987
1009
|
# @return [String]
|
988
1010
|
#
|
989
1011
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ProductUserSummary AWS API Documentation
|
990
1012
|
#
|
991
1013
|
class ProductUserSummary < Struct.new(
|
992
|
-
:
|
993
|
-
:identity_provider,
|
1014
|
+
:username,
|
994
1015
|
:product,
|
995
|
-
:
|
1016
|
+
:identity_provider,
|
996
1017
|
:status,
|
1018
|
+
:product_user_arn,
|
997
1019
|
:status_message,
|
998
|
-
:
|
1020
|
+
:domain,
|
999
1021
|
:subscription_start_date,
|
1000
|
-
:
|
1022
|
+
:subscription_end_date)
|
1001
1023
|
SENSITIVE = []
|
1002
1024
|
include Aws::Structure
|
1003
1025
|
end
|
@@ -1147,28 +1169,27 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1147
1169
|
# security group should permit inbound TCP port 1688 communication from
|
1148
1170
|
# resources in the VPC.
|
1149
1171
|
#
|
1172
|
+
# @!attribute [rw] subnets
|
1173
|
+
# The subnets defined for the registered identity provider.
|
1174
|
+
# @return [Array<String>]
|
1175
|
+
#
|
1150
1176
|
# @!attribute [rw] security_group_id
|
1151
1177
|
# A security group ID that allows inbound TCP port 1688 communication
|
1152
1178
|
# between resources in your VPC and the VPC endpoint for activation
|
1153
1179
|
# servers.
|
1154
1180
|
# @return [String]
|
1155
1181
|
#
|
1156
|
-
# @!attribute [rw] subnets
|
1157
|
-
# The subnets defined for the registered identity provider.
|
1158
|
-
# @return [Array<String>]
|
1159
|
-
#
|
1160
1182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/Settings AWS API Documentation
|
1161
1183
|
#
|
1162
1184
|
class Settings < Struct.new(
|
1163
|
-
:
|
1164
|
-
:
|
1185
|
+
:subnets,
|
1186
|
+
:security_group_id)
|
1165
1187
|
SENSITIVE = []
|
1166
1188
|
include Aws::Structure
|
1167
1189
|
end
|
1168
1190
|
|
1169
|
-
# @!attribute [rw]
|
1170
|
-
# The
|
1171
|
-
# whom to start the product subscription.
|
1191
|
+
# @!attribute [rw] username
|
1192
|
+
# The user name from the identity provider of the user.
|
1172
1193
|
# @return [String]
|
1173
1194
|
#
|
1174
1195
|
# @!attribute [rw] identity_provider
|
@@ -1183,22 +1204,23 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1183
1204
|
# `REMOTE_DESKTOP_SERVICES`
|
1184
1205
|
# @return [String]
|
1185
1206
|
#
|
1207
|
+
# @!attribute [rw] domain
|
1208
|
+
# The domain name of the Active Directory that contains the user for
|
1209
|
+
# whom to start the product subscription.
|
1210
|
+
# @return [String]
|
1211
|
+
#
|
1186
1212
|
# @!attribute [rw] tags
|
1187
1213
|
# The tags that apply to the product subscription.
|
1188
1214
|
# @return [Hash<String,String>]
|
1189
1215
|
#
|
1190
|
-
# @!attribute [rw] username
|
1191
|
-
# The user name from the identity provider of the user.
|
1192
|
-
# @return [String]
|
1193
|
-
#
|
1194
1216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/StartProductSubscriptionRequest AWS API Documentation
|
1195
1217
|
#
|
1196
1218
|
class StartProductSubscriptionRequest < Struct.new(
|
1197
|
-
:
|
1219
|
+
:username,
|
1198
1220
|
:identity_provider,
|
1199
1221
|
:product,
|
1200
|
-
:
|
1201
|
-
:
|
1222
|
+
:domain,
|
1223
|
+
:tags)
|
1202
1224
|
SENSITIVE = [:tags]
|
1203
1225
|
include Aws::Structure
|
1204
1226
|
end
|
@@ -1215,9 +1237,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1215
1237
|
include Aws::Structure
|
1216
1238
|
end
|
1217
1239
|
|
1218
|
-
# @!attribute [rw]
|
1219
|
-
# The
|
1220
|
-
# whom to stop the product subscription.
|
1240
|
+
# @!attribute [rw] username
|
1241
|
+
# The user name from the identity provider for the user.
|
1221
1242
|
# @return [String]
|
1222
1243
|
#
|
1223
1244
|
# @!attribute [rw] identity_provider
|
@@ -1236,18 +1257,19 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1236
1257
|
# The Amazon Resource Name (ARN) of the product user.
|
1237
1258
|
# @return [String]
|
1238
1259
|
#
|
1239
|
-
# @!attribute [rw]
|
1240
|
-
# The
|
1260
|
+
# @!attribute [rw] domain
|
1261
|
+
# The domain name of the Active Directory that contains the user for
|
1262
|
+
# whom to stop the product subscription.
|
1241
1263
|
# @return [String]
|
1242
1264
|
#
|
1243
1265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/StopProductSubscriptionRequest AWS API Documentation
|
1244
1266
|
#
|
1245
1267
|
class StopProductSubscriptionRequest < Struct.new(
|
1246
|
-
:
|
1268
|
+
:username,
|
1247
1269
|
:identity_provider,
|
1248
1270
|
:product,
|
1249
1271
|
:product_user_arn,
|
1250
|
-
:
|
1272
|
+
:domain)
|
1251
1273
|
SENSITIVE = []
|
1252
1274
|
include Aws::Structure
|
1253
1275
|
end
|
@@ -1325,10 +1347,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1325
1347
|
# Refers to an identity provider.
|
1326
1348
|
# @return [Types::IdentityProvider]
|
1327
1349
|
#
|
1328
|
-
# @!attribute [rw] identity_provider_arn
|
1329
|
-
# The Amazon Resource Name (ARN) of the identity provider to update.
|
1330
|
-
# @return [String]
|
1331
|
-
#
|
1332
1350
|
# @!attribute [rw] product
|
1333
1351
|
# The name of the user-based subscription product.
|
1334
1352
|
#
|
@@ -1337,6 +1355,10 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1337
1355
|
# `REMOTE_DESKTOP_SERVICES`
|
1338
1356
|
# @return [String]
|
1339
1357
|
#
|
1358
|
+
# @!attribute [rw] identity_provider_arn
|
1359
|
+
# The Amazon Resource Name (ARN) of the identity provider to update.
|
1360
|
+
# @return [String]
|
1361
|
+
#
|
1340
1362
|
# @!attribute [rw] update_settings
|
1341
1363
|
# Updates the registered identity provider’s product related
|
1342
1364
|
# configuration settings. You can update any combination of settings
|
@@ -1353,8 +1375,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1353
1375
|
#
|
1354
1376
|
class UpdateIdentityProviderSettingsRequest < Struct.new(
|
1355
1377
|
:identity_provider,
|
1356
|
-
:identity_provider_arn,
|
1357
1378
|
:product,
|
1379
|
+
:identity_provider_arn,
|
1358
1380
|
:update_settings)
|
1359
1381
|
SENSITIVE = []
|
1360
1382
|
include Aws::Structure
|