aws-sdk-licensemanagerusersubscriptions 1.25.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/client.rb +604 -62
- data/lib/aws-sdk-licensemanagerusersubscriptions/client_api.rb +255 -12
- data/lib/aws-sdk-licensemanagerusersubscriptions/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-licensemanagerusersubscriptions/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/endpoints.rb +2 -119
- data/lib/aws-sdk-licensemanagerusersubscriptions/plugins/endpoints.rb +1 -28
- data/lib/aws-sdk-licensemanagerusersubscriptions/types.rb +636 -57
- data/lib/aws-sdk-licensemanagerusersubscriptions.rb +1 -1
- data/sig/client.rbs +230 -15
- data/sig/types.rbs +157 -3
- metadata +6 -6
@@ -463,16 +463,20 @@ module Aws::LicenseManagerUserSubscriptions
|
|
463
463
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html
|
464
464
|
#
|
465
465
|
# @option params [String] :domain
|
466
|
-
# The domain name of the
|
466
|
+
# The domain name of the Active Directory that contains information for
|
467
|
+
# the user to associate.
|
467
468
|
#
|
468
469
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
469
|
-
# The identity provider
|
470
|
+
# The identity provider for the user.
|
470
471
|
#
|
471
472
|
# @option params [required, String] :instance_id
|
472
|
-
# The ID of the EC2 instance
|
473
|
+
# The ID of the EC2 instance that provides the user-based subscription.
|
474
|
+
#
|
475
|
+
# @option params [Hash<String,String>] :tags
|
476
|
+
# The tags that apply for the user association.
|
473
477
|
#
|
474
478
|
# @option params [required, String] :username
|
475
|
-
# The user name from the identity provider
|
479
|
+
# The user name from the identity provider.
|
476
480
|
#
|
477
481
|
# @return [Types::AssociateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
478
482
|
#
|
@@ -484,10 +488,26 @@ module Aws::LicenseManagerUserSubscriptions
|
|
484
488
|
# domain: "String",
|
485
489
|
# identity_provider: { # required
|
486
490
|
# active_directory_identity_provider: {
|
487
|
-
#
|
491
|
+
# active_directory_settings: {
|
492
|
+
# domain_credentials_provider: {
|
493
|
+
# secrets_manager_credentials_provider: {
|
494
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
495
|
+
# },
|
496
|
+
# },
|
497
|
+
# domain_ipv_4_list: ["IpV4"],
|
498
|
+
# domain_name: "String",
|
499
|
+
# domain_network_settings: {
|
500
|
+
# subnets: ["Subnet"], # required
|
501
|
+
# },
|
502
|
+
# },
|
503
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
504
|
+
# directory_id: "Directory",
|
488
505
|
# },
|
489
506
|
# },
|
490
507
|
# instance_id: "String", # required
|
508
|
+
# tags: {
|
509
|
+
# "String" => "String",
|
510
|
+
# },
|
491
511
|
# username: "String", # required
|
492
512
|
# })
|
493
513
|
#
|
@@ -496,8 +516,16 @@ module Aws::LicenseManagerUserSubscriptions
|
|
496
516
|
# resp.instance_user_summary.association_date #=> String
|
497
517
|
# resp.instance_user_summary.disassociation_date #=> String
|
498
518
|
# resp.instance_user_summary.domain #=> String
|
519
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
520
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
521
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
522
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
523
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
524
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
525
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
499
526
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
500
527
|
# resp.instance_user_summary.instance_id #=> String
|
528
|
+
# resp.instance_user_summary.instance_user_arn #=> String
|
501
529
|
# resp.instance_user_summary.status #=> String
|
502
530
|
# resp.instance_user_summary.status_message #=> String
|
503
531
|
# resp.instance_user_summary.username #=> String
|
@@ -511,15 +539,126 @@ module Aws::LicenseManagerUserSubscriptions
|
|
511
539
|
req.send_request(options)
|
512
540
|
end
|
513
541
|
|
514
|
-
#
|
515
|
-
#
|
542
|
+
# Creates a network endpoint for the Remote Desktop Services (RDS)
|
543
|
+
# license server.
|
516
544
|
#
|
517
|
-
# @option params [required,
|
518
|
-
#
|
545
|
+
# @option params [required, String] :identity_provider_arn
|
546
|
+
# The Amazon Resource Name (ARN) that identifies the `IdentityProvider`
|
547
|
+
# resource that contains details about a registered identity provider.
|
548
|
+
# In the case of Active Directory, that can be a self-managed Active
|
549
|
+
# Directory or an Amazon Web Services Managed Active Directory that
|
550
|
+
# contains user identity details.
|
519
551
|
#
|
520
|
-
# @option params [required,
|
552
|
+
# @option params [required, Types::LicenseServerSettings] :license_server_settings
|
553
|
+
# The `LicenseServerSettings` resource to create for the endpoint. The
|
554
|
+
# settings include the type of license server and the Secrets Manager
|
555
|
+
# secret that enables administrators to add or remove users associated
|
556
|
+
# with the license server.
|
557
|
+
#
|
558
|
+
# @option params [Hash<String,String>] :tags
|
559
|
+
# The tags that apply for the license server endpoint.
|
560
|
+
#
|
561
|
+
# @return [Types::CreateLicenseServerEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
562
|
+
#
|
563
|
+
# * {Types::CreateLicenseServerEndpointResponse#identity_provider_arn #identity_provider_arn} => String
|
564
|
+
# * {Types::CreateLicenseServerEndpointResponse#license_server_endpoint_arn #license_server_endpoint_arn} => String
|
565
|
+
#
|
566
|
+
# @example Request syntax with placeholder values
|
567
|
+
#
|
568
|
+
# resp = client.create_license_server_endpoint({
|
569
|
+
# identity_provider_arn: "Arn", # required
|
570
|
+
# license_server_settings: { # required
|
571
|
+
# server_settings: { # required
|
572
|
+
# rds_sal_settings: {
|
573
|
+
# rds_sal_credentials_provider: { # required
|
574
|
+
# secrets_manager_credentials_provider: {
|
575
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
576
|
+
# },
|
577
|
+
# },
|
578
|
+
# },
|
579
|
+
# },
|
580
|
+
# server_type: "RDS_SAL", # required, accepts RDS_SAL
|
581
|
+
# },
|
582
|
+
# tags: {
|
583
|
+
# "String" => "String",
|
584
|
+
# },
|
585
|
+
# })
|
586
|
+
#
|
587
|
+
# @example Response structure
|
588
|
+
#
|
589
|
+
# resp.identity_provider_arn #=> String
|
590
|
+
# resp.license_server_endpoint_arn #=> String
|
591
|
+
#
|
592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/CreateLicenseServerEndpoint AWS API Documentation
|
593
|
+
#
|
594
|
+
# @overload create_license_server_endpoint(params = {})
|
595
|
+
# @param [Hash] params ({})
|
596
|
+
def create_license_server_endpoint(params = {}, options = {})
|
597
|
+
req = build_request(:create_license_server_endpoint, params)
|
598
|
+
req.send_request(options)
|
599
|
+
end
|
600
|
+
|
601
|
+
# Deletes a `LicenseServerEndpoint` resource.
|
602
|
+
#
|
603
|
+
# @option params [required, String] :license_server_endpoint_arn
|
604
|
+
# The Amazon Resource Name (ARN) that identifies the
|
605
|
+
# `LicenseServerEndpoint` resource to delete.
|
606
|
+
#
|
607
|
+
# @option params [required, String] :server_type
|
608
|
+
# The type of License Server that the delete request refers to.
|
609
|
+
#
|
610
|
+
# @return [Types::DeleteLicenseServerEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
611
|
+
#
|
612
|
+
# * {Types::DeleteLicenseServerEndpointResponse#license_server_endpoint #license_server_endpoint} => Types::LicenseServerEndpoint
|
613
|
+
#
|
614
|
+
# @example Request syntax with placeholder values
|
615
|
+
#
|
616
|
+
# resp = client.delete_license_server_endpoint({
|
617
|
+
# license_server_endpoint_arn: "Arn", # required
|
618
|
+
# server_type: "RDS_SAL", # required, accepts RDS_SAL
|
619
|
+
# })
|
620
|
+
#
|
621
|
+
# @example Response structure
|
622
|
+
#
|
623
|
+
# resp.license_server_endpoint.creation_time #=> Time
|
624
|
+
# resp.license_server_endpoint.identity_provider_arn #=> String
|
625
|
+
# resp.license_server_endpoint.license_server_endpoint_arn #=> String
|
626
|
+
# resp.license_server_endpoint.license_server_endpoint_id #=> String
|
627
|
+
# resp.license_server_endpoint.license_server_endpoint_provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
628
|
+
# resp.license_server_endpoint.license_servers #=> Array
|
629
|
+
# resp.license_server_endpoint.license_servers[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY", "NOT_APPLICABLE"
|
630
|
+
# resp.license_server_endpoint.license_servers[0].ipv_4_address #=> String
|
631
|
+
# resp.license_server_endpoint.license_servers[0].provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
632
|
+
# resp.license_server_endpoint.server_endpoint.endpoint #=> String
|
633
|
+
# resp.license_server_endpoint.server_type #=> String, one of "RDS_SAL"
|
634
|
+
# resp.license_server_endpoint.status_message #=> String
|
635
|
+
#
|
636
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/DeleteLicenseServerEndpoint AWS API Documentation
|
637
|
+
#
|
638
|
+
# @overload delete_license_server_endpoint(params = {})
|
639
|
+
# @param [Hash] params ({})
|
640
|
+
def delete_license_server_endpoint(params = {}, options = {})
|
641
|
+
req = build_request(:delete_license_server_endpoint, params)
|
642
|
+
req.send_request(options)
|
643
|
+
end
|
644
|
+
|
645
|
+
# Deregisters the Active Directory identity provider from License
|
646
|
+
# Manager user-based subscriptions.
|
647
|
+
#
|
648
|
+
# @option params [Types::IdentityProvider] :identity_provider
|
649
|
+
# An object that specifies details for the Active Directory identity
|
650
|
+
# provider.
|
651
|
+
#
|
652
|
+
# @option params [String] :identity_provider_arn
|
653
|
+
# The Amazon Resource Name (ARN) that identifies the identity provider
|
654
|
+
# to deregister.
|
655
|
+
#
|
656
|
+
# @option params [String] :product
|
521
657
|
# The name of the user-based subscription product.
|
522
658
|
#
|
659
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
660
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS`
|
661
|
+
#
|
523
662
|
# @return [Types::DeregisterIdentityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
524
663
|
#
|
525
664
|
# * {Types::DeregisterIdentityProviderResponse#identity_provider_summary #identity_provider_summary} => Types::IdentityProviderSummary
|
@@ -527,18 +666,40 @@ module Aws::LicenseManagerUserSubscriptions
|
|
527
666
|
# @example Request syntax with placeholder values
|
528
667
|
#
|
529
668
|
# resp = client.deregister_identity_provider({
|
530
|
-
# identity_provider: {
|
669
|
+
# identity_provider: {
|
531
670
|
# active_directory_identity_provider: {
|
532
|
-
#
|
671
|
+
# active_directory_settings: {
|
672
|
+
# domain_credentials_provider: {
|
673
|
+
# secrets_manager_credentials_provider: {
|
674
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
675
|
+
# },
|
676
|
+
# },
|
677
|
+
# domain_ipv_4_list: ["IpV4"],
|
678
|
+
# domain_name: "String",
|
679
|
+
# domain_network_settings: {
|
680
|
+
# subnets: ["Subnet"], # required
|
681
|
+
# },
|
682
|
+
# },
|
683
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
684
|
+
# directory_id: "Directory",
|
533
685
|
# },
|
534
686
|
# },
|
535
|
-
#
|
687
|
+
# identity_provider_arn: "Arn",
|
688
|
+
# product: "String",
|
536
689
|
# })
|
537
690
|
#
|
538
691
|
# @example Response structure
|
539
692
|
#
|
540
693
|
# resp.identity_provider_summary.failure_message #=> String
|
694
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
695
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
696
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
697
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
698
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
699
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
700
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
541
701
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
702
|
+
# resp.identity_provider_summary.identity_provider_arn #=> String
|
542
703
|
# resp.identity_provider_summary.product #=> String
|
543
704
|
# resp.identity_provider_summary.settings.security_group_id #=> String
|
544
705
|
# resp.identity_provider_summary.settings.subnets #=> Array
|
@@ -558,16 +719,23 @@ module Aws::LicenseManagerUserSubscriptions
|
|
558
719
|
# subscriptions.
|
559
720
|
#
|
560
721
|
# @option params [String] :domain
|
561
|
-
# The domain name of the
|
722
|
+
# The domain name of the Active Directory that contains information for
|
723
|
+
# the user to disassociate.
|
562
724
|
#
|
563
|
-
# @option params [
|
564
|
-
# An object that specifies details for the identity
|
725
|
+
# @option params [Types::IdentityProvider] :identity_provider
|
726
|
+
# An object that specifies details for the Active Directory identity
|
727
|
+
# provider.
|
565
728
|
#
|
566
|
-
# @option params [
|
567
|
-
# The ID of the EC2 instance
|
729
|
+
# @option params [String] :instance_id
|
730
|
+
# The ID of the EC2 instance which provides user-based subscriptions.
|
568
731
|
#
|
569
|
-
# @option params [
|
570
|
-
# The
|
732
|
+
# @option params [String] :instance_user_arn
|
733
|
+
# The Amazon Resource Name (ARN) of the user to disassociate from the
|
734
|
+
# EC2 instance.
|
735
|
+
#
|
736
|
+
# @option params [String] :username
|
737
|
+
# The user name from the Active Directory identity provider for the
|
738
|
+
# user.
|
571
739
|
#
|
572
740
|
# @return [Types::DisassociateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
573
741
|
#
|
@@ -577,13 +745,27 @@ module Aws::LicenseManagerUserSubscriptions
|
|
577
745
|
#
|
578
746
|
# resp = client.disassociate_user({
|
579
747
|
# domain: "String",
|
580
|
-
# identity_provider: {
|
748
|
+
# identity_provider: {
|
581
749
|
# active_directory_identity_provider: {
|
582
|
-
#
|
750
|
+
# active_directory_settings: {
|
751
|
+
# domain_credentials_provider: {
|
752
|
+
# secrets_manager_credentials_provider: {
|
753
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
754
|
+
# },
|
755
|
+
# },
|
756
|
+
# domain_ipv_4_list: ["IpV4"],
|
757
|
+
# domain_name: "String",
|
758
|
+
# domain_network_settings: {
|
759
|
+
# subnets: ["Subnet"], # required
|
760
|
+
# },
|
761
|
+
# },
|
762
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
763
|
+
# directory_id: "Directory",
|
583
764
|
# },
|
584
765
|
# },
|
585
|
-
# instance_id: "String",
|
586
|
-
#
|
766
|
+
# instance_id: "String",
|
767
|
+
# instance_user_arn: "Arn",
|
768
|
+
# username: "String",
|
587
769
|
# })
|
588
770
|
#
|
589
771
|
# @example Response structure
|
@@ -591,8 +773,16 @@ module Aws::LicenseManagerUserSubscriptions
|
|
591
773
|
# resp.instance_user_summary.association_date #=> String
|
592
774
|
# resp.instance_user_summary.disassociation_date #=> String
|
593
775
|
# resp.instance_user_summary.domain #=> String
|
776
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
777
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
778
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
779
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
780
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
781
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
782
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
594
783
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
595
784
|
# resp.instance_user_summary.instance_id #=> String
|
785
|
+
# resp.instance_user_summary.instance_user_arn #=> String
|
596
786
|
# resp.instance_user_summary.status #=> String
|
597
787
|
# resp.instance_user_summary.status_message #=> String
|
598
788
|
# resp.instance_user_summary.username #=> String
|
@@ -606,13 +796,22 @@ module Aws::LicenseManagerUserSubscriptions
|
|
606
796
|
req.send_request(options)
|
607
797
|
end
|
608
798
|
|
609
|
-
# Lists the identity providers for user-based
|
799
|
+
# Lists the Active Directory identity providers for user-based
|
800
|
+
# subscriptions.
|
801
|
+
#
|
802
|
+
# @option params [Array<Types::Filter>] :filters
|
803
|
+
# You can use the following filters to streamline results:
|
804
|
+
#
|
805
|
+
# * Product
|
806
|
+
#
|
807
|
+
# * DirectoryId
|
610
808
|
#
|
611
809
|
# @option params [Integer] :max_results
|
612
|
-
#
|
810
|
+
# The maximum number of results to return from a single request.
|
613
811
|
#
|
614
812
|
# @option params [String] :next_token
|
615
|
-
#
|
813
|
+
# A token to specify where to start paginating. This is the nextToken
|
814
|
+
# from a previously truncated response.
|
616
815
|
#
|
617
816
|
# @return [Types::ListIdentityProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
618
817
|
#
|
@@ -624,6 +823,13 @@ module Aws::LicenseManagerUserSubscriptions
|
|
624
823
|
# @example Request syntax with placeholder values
|
625
824
|
#
|
626
825
|
# resp = client.list_identity_providers({
|
826
|
+
# filters: [
|
827
|
+
# {
|
828
|
+
# attribute: "String",
|
829
|
+
# operation: "String",
|
830
|
+
# value: "String",
|
831
|
+
# },
|
832
|
+
# ],
|
627
833
|
# max_results: 1,
|
628
834
|
# next_token: "String",
|
629
835
|
# })
|
@@ -632,7 +838,15 @@ module Aws::LicenseManagerUserSubscriptions
|
|
632
838
|
#
|
633
839
|
# resp.identity_provider_summaries #=> Array
|
634
840
|
# resp.identity_provider_summaries[0].failure_message #=> String
|
841
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
842
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
843
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
844
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
845
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
846
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
847
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
635
848
|
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
849
|
+
# resp.identity_provider_summaries[0].identity_provider_arn #=> String
|
636
850
|
# resp.identity_provider_summaries[0].product #=> String
|
637
851
|
# resp.identity_provider_summaries[0].settings.security_group_id #=> String
|
638
852
|
# resp.identity_provider_summaries[0].settings.subnets #=> Array
|
@@ -652,14 +866,18 @@ module Aws::LicenseManagerUserSubscriptions
|
|
652
866
|
# Lists the EC2 instances providing user-based subscriptions.
|
653
867
|
#
|
654
868
|
# @option params [Array<Types::Filter>] :filters
|
655
|
-
#
|
656
|
-
#
|
869
|
+
# You can use the following filters to streamline results:
|
870
|
+
#
|
871
|
+
# * Status
|
872
|
+
#
|
873
|
+
# * InstanceId
|
657
874
|
#
|
658
875
|
# @option params [Integer] :max_results
|
659
|
-
#
|
876
|
+
# The maximum number of results to return from a single request.
|
660
877
|
#
|
661
878
|
# @option params [String] :next_token
|
662
|
-
#
|
879
|
+
# A token to specify where to start paginating. This is the nextToken
|
880
|
+
# from a previously truncated response.
|
663
881
|
#
|
664
882
|
# @return [Types::ListInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
665
883
|
#
|
@@ -702,25 +920,97 @@ module Aws::LicenseManagerUserSubscriptions
|
|
702
920
|
req.send_request(options)
|
703
921
|
end
|
704
922
|
|
923
|
+
# List the Remote Desktop Services (RDS) License Server endpoints
|
924
|
+
#
|
925
|
+
# @option params [Array<Types::Filter>] :filters
|
926
|
+
# You can use the following filters to streamline results:
|
927
|
+
#
|
928
|
+
# * IdentityProviderArn
|
929
|
+
#
|
930
|
+
# ^
|
931
|
+
#
|
932
|
+
# @option params [Integer] :max_results
|
933
|
+
# The maximum number of results to return from a single request.
|
934
|
+
#
|
935
|
+
# @option params [String] :next_token
|
936
|
+
# A token to specify where to start paginating. This is the nextToken
|
937
|
+
# from a previously truncated response.
|
938
|
+
#
|
939
|
+
# @return [Types::ListLicenseServerEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
940
|
+
#
|
941
|
+
# * {Types::ListLicenseServerEndpointsResponse#license_server_endpoints #license_server_endpoints} => Array<Types::LicenseServerEndpoint>
|
942
|
+
# * {Types::ListLicenseServerEndpointsResponse#next_token #next_token} => String
|
943
|
+
#
|
944
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
945
|
+
#
|
946
|
+
# @example Request syntax with placeholder values
|
947
|
+
#
|
948
|
+
# resp = client.list_license_server_endpoints({
|
949
|
+
# filters: [
|
950
|
+
# {
|
951
|
+
# attribute: "String",
|
952
|
+
# operation: "String",
|
953
|
+
# value: "String",
|
954
|
+
# },
|
955
|
+
# ],
|
956
|
+
# max_results: 1,
|
957
|
+
# next_token: "String",
|
958
|
+
# })
|
959
|
+
#
|
960
|
+
# @example Response structure
|
961
|
+
#
|
962
|
+
# resp.license_server_endpoints #=> Array
|
963
|
+
# resp.license_server_endpoints[0].creation_time #=> Time
|
964
|
+
# resp.license_server_endpoints[0].identity_provider_arn #=> String
|
965
|
+
# resp.license_server_endpoints[0].license_server_endpoint_arn #=> String
|
966
|
+
# resp.license_server_endpoints[0].license_server_endpoint_id #=> String
|
967
|
+
# resp.license_server_endpoints[0].license_server_endpoint_provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
968
|
+
# resp.license_server_endpoints[0].license_servers #=> Array
|
969
|
+
# resp.license_server_endpoints[0].license_servers[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY", "NOT_APPLICABLE"
|
970
|
+
# resp.license_server_endpoints[0].license_servers[0].ipv_4_address #=> String
|
971
|
+
# resp.license_server_endpoints[0].license_servers[0].provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
972
|
+
# resp.license_server_endpoints[0].server_endpoint.endpoint #=> String
|
973
|
+
# resp.license_server_endpoints[0].server_type #=> String, one of "RDS_SAL"
|
974
|
+
# resp.license_server_endpoints[0].status_message #=> String
|
975
|
+
# resp.next_token #=> String
|
976
|
+
#
|
977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListLicenseServerEndpoints AWS API Documentation
|
978
|
+
#
|
979
|
+
# @overload list_license_server_endpoints(params = {})
|
980
|
+
# @param [Hash] params ({})
|
981
|
+
def list_license_server_endpoints(params = {}, options = {})
|
982
|
+
req = build_request(:list_license_server_endpoints, params)
|
983
|
+
req.send_request(options)
|
984
|
+
end
|
985
|
+
|
705
986
|
# Lists the user-based subscription products available from an identity
|
706
987
|
# provider.
|
707
988
|
#
|
708
989
|
# @option params [Array<Types::Filter>] :filters
|
709
|
-
#
|
710
|
-
#
|
990
|
+
# You can use the following filters to streamline results:
|
991
|
+
#
|
992
|
+
# * Status
|
993
|
+
#
|
994
|
+
# * Username
|
995
|
+
#
|
996
|
+
# * Domain
|
711
997
|
#
|
712
998
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
713
999
|
# An object that specifies details for the identity provider.
|
714
1000
|
#
|
715
1001
|
# @option params [Integer] :max_results
|
716
|
-
#
|
1002
|
+
# The maximum number of results to return from a single request.
|
717
1003
|
#
|
718
1004
|
# @option params [String] :next_token
|
719
|
-
#
|
1005
|
+
# A token to specify where to start paginating. This is the nextToken
|
1006
|
+
# from a previously truncated response.
|
720
1007
|
#
|
721
|
-
# @option params [
|
1008
|
+
# @option params [String] :product
|
722
1009
|
# The name of the user-based subscription product.
|
723
1010
|
#
|
1011
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1012
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS`
|
1013
|
+
#
|
724
1014
|
# @return [Types::ListProductSubscriptionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
725
1015
|
#
|
726
1016
|
# * {Types::ListProductSubscriptionsResponse#next_token #next_token} => String
|
@@ -740,12 +1030,25 @@ module Aws::LicenseManagerUserSubscriptions
|
|
740
1030
|
# ],
|
741
1031
|
# identity_provider: { # required
|
742
1032
|
# active_directory_identity_provider: {
|
743
|
-
#
|
1033
|
+
# active_directory_settings: {
|
1034
|
+
# domain_credentials_provider: {
|
1035
|
+
# secrets_manager_credentials_provider: {
|
1036
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1037
|
+
# },
|
1038
|
+
# },
|
1039
|
+
# domain_ipv_4_list: ["IpV4"],
|
1040
|
+
# domain_name: "String",
|
1041
|
+
# domain_network_settings: {
|
1042
|
+
# subnets: ["Subnet"], # required
|
1043
|
+
# },
|
1044
|
+
# },
|
1045
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1046
|
+
# directory_id: "Directory",
|
744
1047
|
# },
|
745
1048
|
# },
|
746
1049
|
# max_results: 1,
|
747
1050
|
# next_token: "String",
|
748
|
-
# product: "String",
|
1051
|
+
# product: "String",
|
749
1052
|
# })
|
750
1053
|
#
|
751
1054
|
# @example Response structure
|
@@ -753,8 +1056,16 @@ module Aws::LicenseManagerUserSubscriptions
|
|
753
1056
|
# resp.next_token #=> String
|
754
1057
|
# resp.product_user_summaries #=> Array
|
755
1058
|
# resp.product_user_summaries[0].domain #=> String
|
1059
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1060
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1061
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1062
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1063
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1064
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1065
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
756
1066
|
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
757
1067
|
# resp.product_user_summaries[0].product #=> String
|
1068
|
+
# resp.product_user_summaries[0].product_user_arn #=> String
|
758
1069
|
# resp.product_user_summaries[0].status #=> String
|
759
1070
|
# resp.product_user_summaries[0].status_message #=> String
|
760
1071
|
# resp.product_user_summaries[0].subscription_end_date #=> String
|
@@ -770,11 +1081,46 @@ module Aws::LicenseManagerUserSubscriptions
|
|
770
1081
|
req.send_request(options)
|
771
1082
|
end
|
772
1083
|
|
1084
|
+
# Returns the list of tags for the specified resource.
|
1085
|
+
#
|
1086
|
+
# @option params [required, String] :resource_arn
|
1087
|
+
# The Amazon Resource Name (ARN) of the resource whose tags you want to
|
1088
|
+
# retrieve.
|
1089
|
+
#
|
1090
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1091
|
+
#
|
1092
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Hash<String,String>
|
1093
|
+
#
|
1094
|
+
# @example Request syntax with placeholder values
|
1095
|
+
#
|
1096
|
+
# resp = client.list_tags_for_resource({
|
1097
|
+
# resource_arn: "ResourceArn", # required
|
1098
|
+
# })
|
1099
|
+
#
|
1100
|
+
# @example Response structure
|
1101
|
+
#
|
1102
|
+
# resp.tags #=> Hash
|
1103
|
+
# resp.tags["String"] #=> String
|
1104
|
+
#
|
1105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListTagsForResource AWS API Documentation
|
1106
|
+
#
|
1107
|
+
# @overload list_tags_for_resource(params = {})
|
1108
|
+
# @param [Hash] params ({})
|
1109
|
+
def list_tags_for_resource(params = {}, options = {})
|
1110
|
+
req = build_request(:list_tags_for_resource, params)
|
1111
|
+
req.send_request(options)
|
1112
|
+
end
|
1113
|
+
|
773
1114
|
# Lists user associations for an identity provider.
|
774
1115
|
#
|
775
1116
|
# @option params [Array<Types::Filter>] :filters
|
776
|
-
#
|
777
|
-
#
|
1117
|
+
# You can use the following filters to streamline results:
|
1118
|
+
#
|
1119
|
+
# * Status
|
1120
|
+
#
|
1121
|
+
# * Username
|
1122
|
+
#
|
1123
|
+
# * Domain
|
778
1124
|
#
|
779
1125
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
780
1126
|
# An object that specifies details for the identity provider.
|
@@ -783,10 +1129,11 @@ module Aws::LicenseManagerUserSubscriptions
|
|
783
1129
|
# The ID of the EC2 instance, which provides user-based subscriptions.
|
784
1130
|
#
|
785
1131
|
# @option params [Integer] :max_results
|
786
|
-
#
|
1132
|
+
# The maximum number of results to return from a single request.
|
787
1133
|
#
|
788
1134
|
# @option params [String] :next_token
|
789
|
-
#
|
1135
|
+
# A token to specify where to start paginating. This is the nextToken
|
1136
|
+
# from a previously truncated response.
|
790
1137
|
#
|
791
1138
|
# @return [Types::ListUserAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
792
1139
|
#
|
@@ -807,7 +1154,20 @@ module Aws::LicenseManagerUserSubscriptions
|
|
807
1154
|
# ],
|
808
1155
|
# identity_provider: { # required
|
809
1156
|
# active_directory_identity_provider: {
|
810
|
-
#
|
1157
|
+
# active_directory_settings: {
|
1158
|
+
# domain_credentials_provider: {
|
1159
|
+
# secrets_manager_credentials_provider: {
|
1160
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1161
|
+
# },
|
1162
|
+
# },
|
1163
|
+
# domain_ipv_4_list: ["IpV4"],
|
1164
|
+
# domain_name: "String",
|
1165
|
+
# domain_network_settings: {
|
1166
|
+
# subnets: ["Subnet"], # required
|
1167
|
+
# },
|
1168
|
+
# },
|
1169
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1170
|
+
# directory_id: "Directory",
|
811
1171
|
# },
|
812
1172
|
# },
|
813
1173
|
# instance_id: "String", # required
|
@@ -821,8 +1181,16 @@ module Aws::LicenseManagerUserSubscriptions
|
|
821
1181
|
# resp.instance_user_summaries[0].association_date #=> String
|
822
1182
|
# resp.instance_user_summaries[0].disassociation_date #=> String
|
823
1183
|
# resp.instance_user_summaries[0].domain #=> String
|
1184
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1185
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1186
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1187
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1188
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1189
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1190
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
824
1191
|
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
825
1192
|
# resp.instance_user_summaries[0].instance_id #=> String
|
1193
|
+
# resp.instance_user_summaries[0].instance_user_arn #=> String
|
826
1194
|
# resp.instance_user_summaries[0].status #=> String
|
827
1195
|
# resp.instance_user_summaries[0].status_message #=> String
|
828
1196
|
# resp.instance_user_summaries[0].username #=> String
|
@@ -840,15 +1208,22 @@ module Aws::LicenseManagerUserSubscriptions
|
|
840
1208
|
# Registers an identity provider for user-based subscriptions.
|
841
1209
|
#
|
842
1210
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
843
|
-
# An object that specifies details for the identity provider
|
1211
|
+
# An object that specifies details for the identity provider to
|
1212
|
+
# register.
|
844
1213
|
#
|
845
1214
|
# @option params [required, String] :product
|
846
1215
|
# The name of the user-based subscription product.
|
847
1216
|
#
|
1217
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1218
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS`
|
1219
|
+
#
|
848
1220
|
# @option params [Types::Settings] :settings
|
849
1221
|
# The registered identity provider’s product related configuration
|
850
1222
|
# settings such as the subnets to provision VPC endpoints.
|
851
1223
|
#
|
1224
|
+
# @option params [Hash<String,String>] :tags
|
1225
|
+
# The tags that apply to the identity provider's registration.
|
1226
|
+
#
|
852
1227
|
# @return [Types::RegisterIdentityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
853
1228
|
#
|
854
1229
|
# * {Types::RegisterIdentityProviderResponse#identity_provider_summary #identity_provider_summary} => Types::IdentityProviderSummary
|
@@ -858,7 +1233,20 @@ module Aws::LicenseManagerUserSubscriptions
|
|
858
1233
|
# resp = client.register_identity_provider({
|
859
1234
|
# identity_provider: { # required
|
860
1235
|
# active_directory_identity_provider: {
|
861
|
-
#
|
1236
|
+
# active_directory_settings: {
|
1237
|
+
# domain_credentials_provider: {
|
1238
|
+
# secrets_manager_credentials_provider: {
|
1239
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1240
|
+
# },
|
1241
|
+
# },
|
1242
|
+
# domain_ipv_4_list: ["IpV4"],
|
1243
|
+
# domain_name: "String",
|
1244
|
+
# domain_network_settings: {
|
1245
|
+
# subnets: ["Subnet"], # required
|
1246
|
+
# },
|
1247
|
+
# },
|
1248
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1249
|
+
# directory_id: "Directory",
|
862
1250
|
# },
|
863
1251
|
# },
|
864
1252
|
# product: "String", # required
|
@@ -866,12 +1254,23 @@ module Aws::LicenseManagerUserSubscriptions
|
|
866
1254
|
# security_group_id: "SecurityGroup", # required
|
867
1255
|
# subnets: ["Subnet"], # required
|
868
1256
|
# },
|
1257
|
+
# tags: {
|
1258
|
+
# "String" => "String",
|
1259
|
+
# },
|
869
1260
|
# })
|
870
1261
|
#
|
871
1262
|
# @example Response structure
|
872
1263
|
#
|
873
1264
|
# resp.identity_provider_summary.failure_message #=> String
|
1265
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1266
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1267
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1268
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1269
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1270
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1271
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
874
1272
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
1273
|
+
# resp.identity_provider_summary.identity_provider_arn #=> String
|
875
1274
|
# resp.identity_provider_summary.product #=> String
|
876
1275
|
# resp.identity_provider_summary.settings.security_group_id #=> String
|
877
1276
|
# resp.identity_provider_summary.settings.subnets #=> Array
|
@@ -903,7 +1302,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
903
1302
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html
|
904
1303
|
#
|
905
1304
|
# @option params [String] :domain
|
906
|
-
# The domain name of the user
|
1305
|
+
# The domain name of the Active Directory that contains the user for
|
1306
|
+
# whom to start the product subscription.
|
907
1307
|
#
|
908
1308
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
909
1309
|
# An object that specifies details for the identity provider.
|
@@ -911,6 +1311,12 @@ module Aws::LicenseManagerUserSubscriptions
|
|
911
1311
|
# @option params [required, String] :product
|
912
1312
|
# The name of the user-based subscription product.
|
913
1313
|
#
|
1314
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1315
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS`
|
1316
|
+
#
|
1317
|
+
# @option params [Hash<String,String>] :tags
|
1318
|
+
# The tags that apply to the product subscription.
|
1319
|
+
#
|
914
1320
|
# @option params [required, String] :username
|
915
1321
|
# The user name from the identity provider of the user.
|
916
1322
|
#
|
@@ -924,18 +1330,42 @@ module Aws::LicenseManagerUserSubscriptions
|
|
924
1330
|
# domain: "String",
|
925
1331
|
# identity_provider: { # required
|
926
1332
|
# active_directory_identity_provider: {
|
927
|
-
#
|
1333
|
+
# active_directory_settings: {
|
1334
|
+
# domain_credentials_provider: {
|
1335
|
+
# secrets_manager_credentials_provider: {
|
1336
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1337
|
+
# },
|
1338
|
+
# },
|
1339
|
+
# domain_ipv_4_list: ["IpV4"],
|
1340
|
+
# domain_name: "String",
|
1341
|
+
# domain_network_settings: {
|
1342
|
+
# subnets: ["Subnet"], # required
|
1343
|
+
# },
|
1344
|
+
# },
|
1345
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1346
|
+
# directory_id: "Directory",
|
928
1347
|
# },
|
929
1348
|
# },
|
930
1349
|
# product: "String", # required
|
1350
|
+
# tags: {
|
1351
|
+
# "String" => "String",
|
1352
|
+
# },
|
931
1353
|
# username: "String", # required
|
932
1354
|
# })
|
933
1355
|
#
|
934
1356
|
# @example Response structure
|
935
1357
|
#
|
936
1358
|
# resp.product_user_summary.domain #=> String
|
1359
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1360
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1361
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1362
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1363
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1364
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1365
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
937
1366
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
938
1367
|
# resp.product_user_summary.product #=> String
|
1368
|
+
# resp.product_user_summary.product_user_arn #=> String
|
939
1369
|
# resp.product_user_summary.status #=> String
|
940
1370
|
# resp.product_user_summary.status_message #=> String
|
941
1371
|
# resp.product_user_summary.subscription_end_date #=> String
|
@@ -955,15 +1385,22 @@ module Aws::LicenseManagerUserSubscriptions
|
|
955
1385
|
# provider.
|
956
1386
|
#
|
957
1387
|
# @option params [String] :domain
|
958
|
-
# The domain name of the user
|
1388
|
+
# The domain name of the Active Directory that contains the user for
|
1389
|
+
# whom to stop the product subscription.
|
959
1390
|
#
|
960
|
-
# @option params [
|
1391
|
+
# @option params [Types::IdentityProvider] :identity_provider
|
961
1392
|
# An object that specifies details for the identity provider.
|
962
1393
|
#
|
963
|
-
# @option params [
|
1394
|
+
# @option params [String] :product
|
964
1395
|
# The name of the user-based subscription product.
|
965
1396
|
#
|
966
|
-
#
|
1397
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1398
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS`
|
1399
|
+
#
|
1400
|
+
# @option params [String] :product_user_arn
|
1401
|
+
# The Amazon Resource Name (ARN) of the product user.
|
1402
|
+
#
|
1403
|
+
# @option params [String] :username
|
967
1404
|
# The user name from the identity provider for the user.
|
968
1405
|
#
|
969
1406
|
# @return [Types::StopProductSubscriptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -974,20 +1411,42 @@ module Aws::LicenseManagerUserSubscriptions
|
|
974
1411
|
#
|
975
1412
|
# resp = client.stop_product_subscription({
|
976
1413
|
# domain: "String",
|
977
|
-
# identity_provider: {
|
1414
|
+
# identity_provider: {
|
978
1415
|
# active_directory_identity_provider: {
|
979
|
-
#
|
1416
|
+
# active_directory_settings: {
|
1417
|
+
# domain_credentials_provider: {
|
1418
|
+
# secrets_manager_credentials_provider: {
|
1419
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1420
|
+
# },
|
1421
|
+
# },
|
1422
|
+
# domain_ipv_4_list: ["IpV4"],
|
1423
|
+
# domain_name: "String",
|
1424
|
+
# domain_network_settings: {
|
1425
|
+
# subnets: ["Subnet"], # required
|
1426
|
+
# },
|
1427
|
+
# },
|
1428
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1429
|
+
# directory_id: "Directory",
|
980
1430
|
# },
|
981
1431
|
# },
|
982
|
-
# product: "String",
|
983
|
-
#
|
1432
|
+
# product: "String",
|
1433
|
+
# product_user_arn: "Arn",
|
1434
|
+
# username: "String",
|
984
1435
|
# })
|
985
1436
|
#
|
986
1437
|
# @example Response structure
|
987
1438
|
#
|
988
1439
|
# resp.product_user_summary.domain #=> String
|
1440
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1441
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1442
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1443
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1444
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1445
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1446
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
989
1447
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
990
1448
|
# resp.product_user_summary.product #=> String
|
1449
|
+
# resp.product_user_summary.product_user_arn #=> String
|
991
1450
|
# resp.product_user_summary.status #=> String
|
992
1451
|
# resp.product_user_summary.status_message #=> String
|
993
1452
|
# resp.product_user_summary.subscription_end_date #=> String
|
@@ -1003,15 +1462,76 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1003
1462
|
req.send_request(options)
|
1004
1463
|
end
|
1005
1464
|
|
1465
|
+
# Adds tags to a resource.
|
1466
|
+
#
|
1467
|
+
# @option params [required, String] :resource_arn
|
1468
|
+
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
1469
|
+
#
|
1470
|
+
# @option params [required, Hash<String,String>] :tags
|
1471
|
+
# The tags to apply to the specified resource.
|
1472
|
+
#
|
1473
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1474
|
+
#
|
1475
|
+
# @example Request syntax with placeholder values
|
1476
|
+
#
|
1477
|
+
# resp = client.tag_resource({
|
1478
|
+
# resource_arn: "ResourceArn", # required
|
1479
|
+
# tags: { # required
|
1480
|
+
# "String" => "String",
|
1481
|
+
# },
|
1482
|
+
# })
|
1483
|
+
#
|
1484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/TagResource AWS API Documentation
|
1485
|
+
#
|
1486
|
+
# @overload tag_resource(params = {})
|
1487
|
+
# @param [Hash] params ({})
|
1488
|
+
def tag_resource(params = {}, options = {})
|
1489
|
+
req = build_request(:tag_resource, params)
|
1490
|
+
req.send_request(options)
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
# Removes tags from a resource.
|
1494
|
+
#
|
1495
|
+
# @option params [required, String] :resource_arn
|
1496
|
+
# The Amazon Resource Name (ARN) of the resource that you want to remove
|
1497
|
+
# tags from.
|
1498
|
+
#
|
1499
|
+
# @option params [required, Array<String>] :tag_keys
|
1500
|
+
# The tag keys to remove from the resource.
|
1501
|
+
#
|
1502
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1503
|
+
#
|
1504
|
+
# @example Request syntax with placeholder values
|
1505
|
+
#
|
1506
|
+
# resp = client.untag_resource({
|
1507
|
+
# resource_arn: "ResourceArn", # required
|
1508
|
+
# tag_keys: ["String"], # required
|
1509
|
+
# })
|
1510
|
+
#
|
1511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/UntagResource AWS API Documentation
|
1512
|
+
#
|
1513
|
+
# @overload untag_resource(params = {})
|
1514
|
+
# @param [Hash] params ({})
|
1515
|
+
def untag_resource(params = {}, options = {})
|
1516
|
+
req = build_request(:untag_resource, params)
|
1517
|
+
req.send_request(options)
|
1518
|
+
end
|
1519
|
+
|
1006
1520
|
# Updates additional product configuration settings for the registered
|
1007
1521
|
# identity provider.
|
1008
1522
|
#
|
1009
|
-
# @option params [
|
1010
|
-
#
|
1523
|
+
# @option params [Types::IdentityProvider] :identity_provider
|
1524
|
+
# Refers to an identity provider.
|
1011
1525
|
#
|
1012
|
-
# @option params [
|
1526
|
+
# @option params [String] :identity_provider_arn
|
1527
|
+
# The Amazon Resource Name (ARN) of the identity provider to update.
|
1528
|
+
#
|
1529
|
+
# @option params [String] :product
|
1013
1530
|
# The name of the user-based subscription product.
|
1014
1531
|
#
|
1532
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1533
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS`
|
1534
|
+
#
|
1015
1535
|
# @option params [required, Types::UpdateSettings] :update_settings
|
1016
1536
|
# Updates the registered identity provider’s product related
|
1017
1537
|
# configuration settings. You can update any combination of settings in
|
@@ -1030,12 +1550,26 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1030
1550
|
# @example Request syntax with placeholder values
|
1031
1551
|
#
|
1032
1552
|
# resp = client.update_identity_provider_settings({
|
1033
|
-
# identity_provider: {
|
1553
|
+
# identity_provider: {
|
1034
1554
|
# active_directory_identity_provider: {
|
1035
|
-
#
|
1555
|
+
# active_directory_settings: {
|
1556
|
+
# domain_credentials_provider: {
|
1557
|
+
# secrets_manager_credentials_provider: {
|
1558
|
+
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1559
|
+
# },
|
1560
|
+
# },
|
1561
|
+
# domain_ipv_4_list: ["IpV4"],
|
1562
|
+
# domain_name: "String",
|
1563
|
+
# domain_network_settings: {
|
1564
|
+
# subnets: ["Subnet"], # required
|
1565
|
+
# },
|
1566
|
+
# },
|
1567
|
+
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1568
|
+
# directory_id: "Directory",
|
1036
1569
|
# },
|
1037
1570
|
# },
|
1038
|
-
#
|
1571
|
+
# identity_provider_arn: "Arn",
|
1572
|
+
# product: "String",
|
1039
1573
|
# update_settings: { # required
|
1040
1574
|
# add_subnets: ["Subnet"], # required
|
1041
1575
|
# remove_subnets: ["Subnet"], # required
|
@@ -1046,7 +1580,15 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1046
1580
|
# @example Response structure
|
1047
1581
|
#
|
1048
1582
|
# resp.identity_provider_summary.failure_message #=> String
|
1583
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1584
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1585
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1586
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1587
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1588
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1589
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1049
1590
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
1591
|
+
# resp.identity_provider_summary.identity_provider_arn #=> String
|
1050
1592
|
# resp.identity_provider_summary.product #=> String
|
1051
1593
|
# resp.identity_provider_summary.settings.security_group_id #=> String
|
1052
1594
|
# resp.identity_provider_summary.settings.subnets #=> Array
|
@@ -1080,7 +1622,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1080
1622
|
tracer: tracer
|
1081
1623
|
)
|
1082
1624
|
context[:gem_name] = 'aws-sdk-licensemanagerusersubscriptions'
|
1083
|
-
context[:gem_version] = '1.
|
1625
|
+
context[:gem_version] = '1.27.0'
|
1084
1626
|
Seahorse::Client::Request.new(handlers, context)
|
1085
1627
|
end
|
1086
1628
|
|