aws-sdk-licensemanagerusersubscriptions 1.39.0 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/client.rb +293 -227
- data/lib/aws-sdk-licensemanagerusersubscriptions/client_api.rb +71 -61
- data/lib/aws-sdk-licensemanagerusersubscriptions/types.rb +266 -232
- data/lib/aws-sdk-licensemanagerusersubscriptions/waiters.rb +15 -0
- data/lib/aws-sdk-licensemanagerusersubscriptions.rb +2 -1
- data/sig/client.rbs +87 -69
- data/sig/types.rbs +53 -47
- metadata +2 -1
@@ -491,22 +491,22 @@ module Aws::LicenseManagerUserSubscriptions
|
|
491
491
|
#
|
492
492
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html
|
493
493
|
#
|
494
|
-
# @option params [String] :
|
495
|
-
# The
|
496
|
-
#
|
494
|
+
# @option params [required, String] :username
|
495
|
+
# The user name from the identity provider.
|
496
|
+
#
|
497
|
+
# @option params [required, String] :instance_id
|
498
|
+
# The ID of the EC2 instance that provides the user-based subscription.
|
497
499
|
#
|
498
500
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
499
501
|
# The identity provider for the user.
|
500
502
|
#
|
501
|
-
# @option params [
|
502
|
-
# The
|
503
|
+
# @option params [String] :domain
|
504
|
+
# The domain name of the Active Directory that contains information for
|
505
|
+
# the user to associate.
|
503
506
|
#
|
504
507
|
# @option params [Hash<String,String>] :tags
|
505
508
|
# The tags that apply for the user association.
|
506
509
|
#
|
507
|
-
# @option params [required, String] :username
|
508
|
-
# The user name from the identity provider.
|
509
|
-
#
|
510
510
|
# @return [Types::AssociateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
511
511
|
#
|
512
512
|
# * {Types::AssociateUserResponse#instance_user_summary #instance_user_summary} => Types::InstanceUserSummary
|
@@ -514,50 +514,55 @@ module Aws::LicenseManagerUserSubscriptions
|
|
514
514
|
# @example Request syntax with placeholder values
|
515
515
|
#
|
516
516
|
# resp = client.associate_user({
|
517
|
-
#
|
517
|
+
# username: "String", # required
|
518
|
+
# instance_id: "String", # required
|
518
519
|
# identity_provider: { # required
|
519
520
|
# active_directory_identity_provider: {
|
521
|
+
# directory_id: "Directory",
|
520
522
|
# active_directory_settings: {
|
523
|
+
# domain_name: "String",
|
524
|
+
# domain_ipv_4_list: ["IpV4"],
|
525
|
+
# domain_ipv_6_list: ["IpV6"],
|
521
526
|
# domain_credentials_provider: {
|
522
527
|
# secrets_manager_credentials_provider: {
|
523
528
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
524
529
|
# },
|
525
530
|
# },
|
526
|
-
# domain_ipv_4_list: ["IpV4"],
|
527
|
-
# domain_name: "String",
|
528
531
|
# domain_network_settings: {
|
529
532
|
# subnets: ["Subnet"], # required
|
530
533
|
# },
|
531
534
|
# },
|
532
535
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
533
|
-
#
|
536
|
+
# is_shared_active_directory: false,
|
534
537
|
# },
|
535
538
|
# },
|
536
|
-
#
|
539
|
+
# domain: "String",
|
537
540
|
# tags: {
|
538
541
|
# "String" => "String",
|
539
542
|
# },
|
540
|
-
# username: "String", # required
|
541
543
|
# })
|
542
544
|
#
|
543
545
|
# @example Response structure
|
544
546
|
#
|
545
|
-
# resp.instance_user_summary.
|
546
|
-
# resp.instance_user_summary.
|
547
|
-
# resp.instance_user_summary.
|
548
|
-
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
547
|
+
# resp.instance_user_summary.username #=> String
|
548
|
+
# resp.instance_user_summary.instance_id #=> String
|
549
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
550
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
549
551
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
550
552
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
551
|
-
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
553
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
554
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
555
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
552
556
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
553
557
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
554
558
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
555
|
-
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.
|
556
|
-
# resp.instance_user_summary.instance_id #=> String
|
557
|
-
# resp.instance_user_summary.instance_user_arn #=> String
|
559
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
558
560
|
# resp.instance_user_summary.status #=> String
|
561
|
+
# resp.instance_user_summary.instance_user_arn #=> String
|
559
562
|
# resp.instance_user_summary.status_message #=> String
|
560
|
-
# resp.instance_user_summary.
|
563
|
+
# resp.instance_user_summary.domain #=> String
|
564
|
+
# resp.instance_user_summary.association_date #=> String
|
565
|
+
# resp.instance_user_summary.disassociation_date #=> String
|
561
566
|
#
|
562
567
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/AssociateUser AWS API Documentation
|
563
568
|
#
|
@@ -597,6 +602,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
597
602
|
# resp = client.create_license_server_endpoint({
|
598
603
|
# identity_provider_arn: "Arn", # required
|
599
604
|
# license_server_settings: { # required
|
605
|
+
# server_type: "RDS_SAL", # required, accepts RDS_SAL
|
600
606
|
# server_settings: { # required
|
601
607
|
# rds_sal_settings: {
|
602
608
|
# rds_sal_credentials_provider: { # required
|
@@ -606,7 +612,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
606
612
|
# },
|
607
613
|
# },
|
608
614
|
# },
|
609
|
-
# server_type: "RDS_SAL", # required, accepts RDS_SAL
|
610
615
|
# },
|
611
616
|
# tags: {
|
612
617
|
# "String" => "String",
|
@@ -649,18 +654,19 @@ module Aws::LicenseManagerUserSubscriptions
|
|
649
654
|
#
|
650
655
|
# @example Response structure
|
651
656
|
#
|
652
|
-
# resp.license_server_endpoint.creation_time #=> Time
|
653
657
|
# resp.license_server_endpoint.identity_provider_arn #=> String
|
654
|
-
# resp.license_server_endpoint.
|
658
|
+
# resp.license_server_endpoint.server_type #=> String, one of "RDS_SAL"
|
659
|
+
# resp.license_server_endpoint.server_endpoint.endpoint #=> String
|
660
|
+
# resp.license_server_endpoint.status_message #=> String
|
655
661
|
# resp.license_server_endpoint.license_server_endpoint_id #=> String
|
662
|
+
# resp.license_server_endpoint.license_server_endpoint_arn #=> String
|
656
663
|
# resp.license_server_endpoint.license_server_endpoint_provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
657
664
|
# resp.license_server_endpoint.license_servers #=> Array
|
665
|
+
# resp.license_server_endpoint.license_servers[0].provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
658
666
|
# resp.license_server_endpoint.license_servers[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY", "NOT_APPLICABLE"
|
659
667
|
# resp.license_server_endpoint.license_servers[0].ipv_4_address #=> String
|
660
|
-
# resp.license_server_endpoint.license_servers[0].
|
661
|
-
# resp.license_server_endpoint.
|
662
|
-
# resp.license_server_endpoint.server_type #=> String, one of "RDS_SAL"
|
663
|
-
# resp.license_server_endpoint.status_message #=> String
|
668
|
+
# resp.license_server_endpoint.license_servers[0].ipv_6_address #=> String
|
669
|
+
# resp.license_server_endpoint.creation_time #=> Time
|
664
670
|
#
|
665
671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/DeleteLicenseServerEndpoint AWS API Documentation
|
666
672
|
#
|
@@ -678,10 +684,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
678
684
|
# An object that specifies details for the Active Directory identity
|
679
685
|
# provider.
|
680
686
|
#
|
681
|
-
# @option params [String] :identity_provider_arn
|
682
|
-
# The Amazon Resource Name (ARN) that identifies the identity provider
|
683
|
-
# to deregister.
|
684
|
-
#
|
685
687
|
# @option params [String] :product
|
686
688
|
# The name of the user-based subscription product.
|
687
689
|
#
|
@@ -689,6 +691,10 @@ module Aws::LicenseManagerUserSubscriptions
|
|
689
691
|
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
690
692
|
# `REMOTE_DESKTOP_SERVICES`
|
691
693
|
#
|
694
|
+
# @option params [String] :identity_provider_arn
|
695
|
+
# The Amazon Resource Name (ARN) that identifies the identity provider
|
696
|
+
# to deregister.
|
697
|
+
#
|
692
698
|
# @return [Types::DeregisterIdentityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
693
699
|
#
|
694
700
|
# * {Types::DeregisterIdentityProviderResponse#identity_provider_summary #identity_provider_summary} => Types::IdentityProviderSummary
|
@@ -698,43 +704,49 @@ module Aws::LicenseManagerUserSubscriptions
|
|
698
704
|
# resp = client.deregister_identity_provider({
|
699
705
|
# identity_provider: {
|
700
706
|
# active_directory_identity_provider: {
|
707
|
+
# directory_id: "Directory",
|
701
708
|
# active_directory_settings: {
|
709
|
+
# domain_name: "String",
|
710
|
+
# domain_ipv_4_list: ["IpV4"],
|
711
|
+
# domain_ipv_6_list: ["IpV6"],
|
702
712
|
# domain_credentials_provider: {
|
703
713
|
# secrets_manager_credentials_provider: {
|
704
714
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
705
715
|
# },
|
706
716
|
# },
|
707
|
-
# domain_ipv_4_list: ["IpV4"],
|
708
|
-
# domain_name: "String",
|
709
717
|
# domain_network_settings: {
|
710
718
|
# subnets: ["Subnet"], # required
|
711
719
|
# },
|
712
720
|
# },
|
713
721
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
714
|
-
#
|
722
|
+
# is_shared_active_directory: false,
|
715
723
|
# },
|
716
724
|
# },
|
717
|
-
# identity_provider_arn: "Arn",
|
718
725
|
# product: "String",
|
726
|
+
# identity_provider_arn: "Arn",
|
719
727
|
# })
|
720
728
|
#
|
721
729
|
# @example Response structure
|
722
730
|
#
|
723
|
-
# resp.identity_provider_summary.
|
724
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
731
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
732
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
725
733
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
726
734
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
727
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
735
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
736
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
737
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
728
738
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
729
739
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
730
740
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
731
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.
|
732
|
-
# resp.identity_provider_summary.identity_provider_arn #=> String
|
733
|
-
# resp.identity_provider_summary.product #=> String
|
734
|
-
# resp.identity_provider_summary.settings.security_group_id #=> String
|
741
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
735
742
|
# resp.identity_provider_summary.settings.subnets #=> Array
|
736
743
|
# resp.identity_provider_summary.settings.subnets[0] #=> String
|
744
|
+
# resp.identity_provider_summary.settings.security_group_id #=> String
|
745
|
+
# resp.identity_provider_summary.product #=> String
|
737
746
|
# resp.identity_provider_summary.status #=> String
|
747
|
+
# resp.identity_provider_summary.identity_provider_arn #=> String
|
748
|
+
# resp.identity_provider_summary.failure_message #=> String
|
749
|
+
# resp.identity_provider_summary.owner_account_id #=> String
|
738
750
|
#
|
739
751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/DeregisterIdentityProvider AWS API Documentation
|
740
752
|
#
|
@@ -748,24 +760,24 @@ module Aws::LicenseManagerUserSubscriptions
|
|
748
760
|
# Disassociates the user from an EC2 instance providing user-based
|
749
761
|
# subscriptions.
|
750
762
|
#
|
751
|
-
# @option params [String] :
|
752
|
-
# The
|
753
|
-
#
|
763
|
+
# @option params [String] :username
|
764
|
+
# The user name from the Active Directory identity provider for the
|
765
|
+
# user.
|
766
|
+
#
|
767
|
+
# @option params [String] :instance_id
|
768
|
+
# The ID of the EC2 instance which provides user-based subscriptions.
|
754
769
|
#
|
755
770
|
# @option params [Types::IdentityProvider] :identity_provider
|
756
771
|
# An object that specifies details for the Active Directory identity
|
757
772
|
# provider.
|
758
773
|
#
|
759
|
-
# @option params [String] :instance_id
|
760
|
-
# The ID of the EC2 instance which provides user-based subscriptions.
|
761
|
-
#
|
762
774
|
# @option params [String] :instance_user_arn
|
763
775
|
# The Amazon Resource Name (ARN) of the user to disassociate from the
|
764
776
|
# EC2 instance.
|
765
777
|
#
|
766
|
-
# @option params [String] :
|
767
|
-
# The
|
768
|
-
# user.
|
778
|
+
# @option params [String] :domain
|
779
|
+
# The domain name of the Active Directory that contains information for
|
780
|
+
# the user to disassociate.
|
769
781
|
#
|
770
782
|
# @return [Types::DisassociateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
771
783
|
#
|
@@ -774,48 +786,53 @@ module Aws::LicenseManagerUserSubscriptions
|
|
774
786
|
# @example Request syntax with placeholder values
|
775
787
|
#
|
776
788
|
# resp = client.disassociate_user({
|
777
|
-
#
|
789
|
+
# username: "String",
|
790
|
+
# instance_id: "String",
|
778
791
|
# identity_provider: {
|
779
792
|
# active_directory_identity_provider: {
|
793
|
+
# directory_id: "Directory",
|
780
794
|
# active_directory_settings: {
|
795
|
+
# domain_name: "String",
|
796
|
+
# domain_ipv_4_list: ["IpV4"],
|
797
|
+
# domain_ipv_6_list: ["IpV6"],
|
781
798
|
# domain_credentials_provider: {
|
782
799
|
# secrets_manager_credentials_provider: {
|
783
800
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
784
801
|
# },
|
785
802
|
# },
|
786
|
-
# domain_ipv_4_list: ["IpV4"],
|
787
|
-
# domain_name: "String",
|
788
803
|
# domain_network_settings: {
|
789
804
|
# subnets: ["Subnet"], # required
|
790
805
|
# },
|
791
806
|
# },
|
792
807
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
793
|
-
#
|
808
|
+
# is_shared_active_directory: false,
|
794
809
|
# },
|
795
810
|
# },
|
796
|
-
# instance_id: "String",
|
797
811
|
# instance_user_arn: "Arn",
|
798
|
-
#
|
812
|
+
# domain: "String",
|
799
813
|
# })
|
800
814
|
#
|
801
815
|
# @example Response structure
|
802
816
|
#
|
803
|
-
# resp.instance_user_summary.
|
804
|
-
# resp.instance_user_summary.
|
805
|
-
# resp.instance_user_summary.
|
806
|
-
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
817
|
+
# resp.instance_user_summary.username #=> String
|
818
|
+
# resp.instance_user_summary.instance_id #=> String
|
819
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
820
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
807
821
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
808
822
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
809
|
-
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
823
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
824
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
825
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
810
826
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
811
827
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
812
828
|
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
813
|
-
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.
|
814
|
-
# resp.instance_user_summary.instance_id #=> String
|
815
|
-
# resp.instance_user_summary.instance_user_arn #=> String
|
829
|
+
# resp.instance_user_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
816
830
|
# resp.instance_user_summary.status #=> String
|
831
|
+
# resp.instance_user_summary.instance_user_arn #=> String
|
817
832
|
# resp.instance_user_summary.status_message #=> String
|
818
|
-
# resp.instance_user_summary.
|
833
|
+
# resp.instance_user_summary.domain #=> String
|
834
|
+
# resp.instance_user_summary.association_date #=> String
|
835
|
+
# resp.instance_user_summary.disassociation_date #=> String
|
819
836
|
#
|
820
837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/DisassociateUser AWS API Documentation
|
821
838
|
#
|
@@ -829,6 +846,9 @@ module Aws::LicenseManagerUserSubscriptions
|
|
829
846
|
# Lists the Active Directory identity providers for user-based
|
830
847
|
# subscriptions.
|
831
848
|
#
|
849
|
+
# @option params [Integer] :max_results
|
850
|
+
# The maximum number of results to return from a single request.
|
851
|
+
#
|
832
852
|
# @option params [Array<Types::Filter>] :filters
|
833
853
|
# You can use the following filters to streamline results:
|
834
854
|
#
|
@@ -836,9 +856,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
836
856
|
#
|
837
857
|
# * DirectoryId
|
838
858
|
#
|
839
|
-
# @option params [Integer] :max_results
|
840
|
-
# The maximum number of results to return from a single request.
|
841
|
-
#
|
842
859
|
# @option params [String] :next_token
|
843
860
|
# A token to specify where to start paginating. This is the nextToken
|
844
861
|
# from a previously truncated response.
|
@@ -853,6 +870,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
853
870
|
# @example Request syntax with placeholder values
|
854
871
|
#
|
855
872
|
# resp = client.list_identity_providers({
|
873
|
+
# max_results: 1,
|
856
874
|
# filters: [
|
857
875
|
# {
|
858
876
|
# attribute: "String",
|
@@ -860,28 +878,31 @@ module Aws::LicenseManagerUserSubscriptions
|
|
860
878
|
# value: "String",
|
861
879
|
# },
|
862
880
|
# ],
|
863
|
-
# max_results: 1,
|
864
881
|
# next_token: "String",
|
865
882
|
# })
|
866
883
|
#
|
867
884
|
# @example Response structure
|
868
885
|
#
|
869
886
|
# resp.identity_provider_summaries #=> Array
|
870
|
-
# resp.identity_provider_summaries[0].
|
871
|
-
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.
|
887
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
888
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
872
889
|
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
873
890
|
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
874
|
-
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.
|
891
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
892
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
893
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
875
894
|
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
876
895
|
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
877
896
|
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
878
|
-
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.
|
879
|
-
# resp.identity_provider_summaries[0].identity_provider_arn #=> String
|
880
|
-
# resp.identity_provider_summaries[0].product #=> String
|
881
|
-
# resp.identity_provider_summaries[0].settings.security_group_id #=> String
|
897
|
+
# resp.identity_provider_summaries[0].identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
882
898
|
# resp.identity_provider_summaries[0].settings.subnets #=> Array
|
883
899
|
# resp.identity_provider_summaries[0].settings.subnets[0] #=> String
|
900
|
+
# resp.identity_provider_summaries[0].settings.security_group_id #=> String
|
901
|
+
# resp.identity_provider_summaries[0].product #=> String
|
884
902
|
# resp.identity_provider_summaries[0].status #=> String
|
903
|
+
# resp.identity_provider_summaries[0].identity_provider_arn #=> String
|
904
|
+
# resp.identity_provider_summaries[0].failure_message #=> String
|
905
|
+
# resp.identity_provider_summaries[0].owner_account_id #=> String
|
885
906
|
# resp.next_token #=> String
|
886
907
|
#
|
887
908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListIdentityProviders AWS API Documentation
|
@@ -895,13 +916,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
895
916
|
|
896
917
|
# Lists the EC2 instances providing user-based subscriptions.
|
897
918
|
#
|
898
|
-
# @option params [Array<Types::Filter>] :filters
|
899
|
-
# You can use the following filters to streamline results:
|
900
|
-
#
|
901
|
-
# * Status
|
902
|
-
#
|
903
|
-
# * InstanceId
|
904
|
-
#
|
905
919
|
# @option params [Integer] :max_results
|
906
920
|
# The maximum number of results to return from a single request.
|
907
921
|
#
|
@@ -909,6 +923,13 @@ module Aws::LicenseManagerUserSubscriptions
|
|
909
923
|
# A token to specify where to start paginating. This is the nextToken
|
910
924
|
# from a previously truncated response.
|
911
925
|
#
|
926
|
+
# @option params [Array<Types::Filter>] :filters
|
927
|
+
# You can use the following filters to streamline results:
|
928
|
+
#
|
929
|
+
# * Status
|
930
|
+
#
|
931
|
+
# * InstanceId
|
932
|
+
#
|
912
933
|
# @return [Types::ListInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
913
934
|
#
|
914
935
|
# * {Types::ListInstancesResponse#instance_summaries #instance_summaries} => Array<Types::InstanceSummary>
|
@@ -919,6 +940,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
919
940
|
# @example Request syntax with placeholder values
|
920
941
|
#
|
921
942
|
# resp = client.list_instances({
|
943
|
+
# max_results: 1,
|
944
|
+
# next_token: "String",
|
922
945
|
# filters: [
|
923
946
|
# {
|
924
947
|
# attribute: "String",
|
@@ -926,19 +949,29 @@ module Aws::LicenseManagerUserSubscriptions
|
|
926
949
|
# value: "String",
|
927
950
|
# },
|
928
951
|
# ],
|
929
|
-
# max_results: 1,
|
930
|
-
# next_token: "String",
|
931
952
|
# })
|
932
953
|
#
|
933
954
|
# @example Response structure
|
934
955
|
#
|
935
956
|
# resp.instance_summaries #=> Array
|
936
957
|
# resp.instance_summaries[0].instance_id #=> String
|
937
|
-
# resp.instance_summaries[0].
|
958
|
+
# resp.instance_summaries[0].status #=> String
|
938
959
|
# resp.instance_summaries[0].products #=> Array
|
939
960
|
# resp.instance_summaries[0].products[0] #=> String
|
940
|
-
# resp.instance_summaries[0].
|
961
|
+
# resp.instance_summaries[0].last_status_check_date #=> String
|
941
962
|
# resp.instance_summaries[0].status_message #=> String
|
963
|
+
# resp.instance_summaries[0].owner_account_id #=> String
|
964
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
965
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
966
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
967
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
968
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
969
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
970
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
971
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
972
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
973
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
974
|
+
# resp.instance_summaries[0].identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
942
975
|
# resp.next_token #=> String
|
943
976
|
#
|
944
977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListInstances AWS API Documentation
|
@@ -952,6 +985,9 @@ module Aws::LicenseManagerUserSubscriptions
|
|
952
985
|
|
953
986
|
# List the Remote Desktop Services (RDS) License Server endpoints
|
954
987
|
#
|
988
|
+
# @option params [Integer] :max_results
|
989
|
+
# The maximum number of results to return from a single request.
|
990
|
+
#
|
955
991
|
# @option params [Array<Types::Filter>] :filters
|
956
992
|
# You can use the following filters to streamline results:
|
957
993
|
#
|
@@ -959,9 +995,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
959
995
|
#
|
960
996
|
# ^
|
961
997
|
#
|
962
|
-
# @option params [Integer] :max_results
|
963
|
-
# The maximum number of results to return from a single request.
|
964
|
-
#
|
965
998
|
# @option params [String] :next_token
|
966
999
|
# A token to specify where to start paginating. This is the nextToken
|
967
1000
|
# from a previously truncated response.
|
@@ -976,6 +1009,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
976
1009
|
# @example Request syntax with placeholder values
|
977
1010
|
#
|
978
1011
|
# resp = client.list_license_server_endpoints({
|
1012
|
+
# max_results: 1,
|
979
1013
|
# filters: [
|
980
1014
|
# {
|
981
1015
|
# attribute: "String",
|
@@ -983,25 +1017,25 @@ module Aws::LicenseManagerUserSubscriptions
|
|
983
1017
|
# value: "String",
|
984
1018
|
# },
|
985
1019
|
# ],
|
986
|
-
# max_results: 1,
|
987
1020
|
# next_token: "String",
|
988
1021
|
# })
|
989
1022
|
#
|
990
1023
|
# @example Response structure
|
991
1024
|
#
|
992
1025
|
# resp.license_server_endpoints #=> Array
|
993
|
-
# resp.license_server_endpoints[0].creation_time #=> Time
|
994
1026
|
# resp.license_server_endpoints[0].identity_provider_arn #=> String
|
995
|
-
# resp.license_server_endpoints[0].
|
1027
|
+
# resp.license_server_endpoints[0].server_type #=> String, one of "RDS_SAL"
|
1028
|
+
# resp.license_server_endpoints[0].server_endpoint.endpoint #=> String
|
1029
|
+
# resp.license_server_endpoints[0].status_message #=> String
|
996
1030
|
# resp.license_server_endpoints[0].license_server_endpoint_id #=> String
|
1031
|
+
# resp.license_server_endpoints[0].license_server_endpoint_arn #=> String
|
997
1032
|
# resp.license_server_endpoints[0].license_server_endpoint_provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
998
1033
|
# resp.license_server_endpoints[0].license_servers #=> Array
|
1034
|
+
# resp.license_server_endpoints[0].license_servers[0].provisioning_status #=> String, one of "PROVISIONING", "PROVISIONING_FAILED", "PROVISIONED", "DELETING", "DELETION_FAILED", "DELETED"
|
999
1035
|
# resp.license_server_endpoints[0].license_servers[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY", "NOT_APPLICABLE"
|
1000
1036
|
# resp.license_server_endpoints[0].license_servers[0].ipv_4_address #=> String
|
1001
|
-
# resp.license_server_endpoints[0].license_servers[0].
|
1002
|
-
# resp.license_server_endpoints[0].
|
1003
|
-
# resp.license_server_endpoints[0].server_type #=> String, one of "RDS_SAL"
|
1004
|
-
# resp.license_server_endpoints[0].status_message #=> String
|
1037
|
+
# resp.license_server_endpoints[0].license_servers[0].ipv_6_address #=> String
|
1038
|
+
# resp.license_server_endpoints[0].creation_time #=> Time
|
1005
1039
|
# resp.next_token #=> String
|
1006
1040
|
#
|
1007
1041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListLicenseServerEndpoints AWS API Documentation
|
@@ -1016,6 +1050,19 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1016
1050
|
# Lists the user-based subscription products available from an identity
|
1017
1051
|
# provider.
|
1018
1052
|
#
|
1053
|
+
# @option params [String] :product
|
1054
|
+
# The name of the user-based subscription product.
|
1055
|
+
#
|
1056
|
+
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1057
|
+
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
1058
|
+
# `REMOTE_DESKTOP_SERVICES`
|
1059
|
+
#
|
1060
|
+
# @option params [required, Types::IdentityProvider] :identity_provider
|
1061
|
+
# An object that specifies details for the identity provider.
|
1062
|
+
#
|
1063
|
+
# @option params [Integer] :max_results
|
1064
|
+
# The maximum number of results to return from a single request.
|
1065
|
+
#
|
1019
1066
|
# @option params [Array<Types::Filter>] :filters
|
1020
1067
|
# You can use the following filters to streamline results:
|
1021
1068
|
#
|
@@ -1025,83 +1072,75 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1025
1072
|
#
|
1026
1073
|
# * Domain
|
1027
1074
|
#
|
1028
|
-
# @option params [required, Types::IdentityProvider] :identity_provider
|
1029
|
-
# An object that specifies details for the identity provider.
|
1030
|
-
#
|
1031
|
-
# @option params [Integer] :max_results
|
1032
|
-
# The maximum number of results to return from a single request.
|
1033
|
-
#
|
1034
1075
|
# @option params [String] :next_token
|
1035
1076
|
# A token to specify where to start paginating. This is the nextToken
|
1036
1077
|
# from a previously truncated response.
|
1037
1078
|
#
|
1038
|
-
# @option params [String] :product
|
1039
|
-
# The name of the user-based subscription product.
|
1040
|
-
#
|
1041
|
-
# Valid values: `VISUAL_STUDIO_ENTERPRISE` \|
|
1042
|
-
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
1043
|
-
# `REMOTE_DESKTOP_SERVICES`
|
1044
|
-
#
|
1045
1079
|
# @return [Types::ListProductSubscriptionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1046
1080
|
#
|
1047
|
-
# * {Types::ListProductSubscriptionsResponse#next_token #next_token} => String
|
1048
1081
|
# * {Types::ListProductSubscriptionsResponse#product_user_summaries #product_user_summaries} => Array<Types::ProductUserSummary>
|
1082
|
+
# * {Types::ListProductSubscriptionsResponse#next_token #next_token} => String
|
1049
1083
|
#
|
1050
1084
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1051
1085
|
#
|
1052
1086
|
# @example Request syntax with placeholder values
|
1053
1087
|
#
|
1054
1088
|
# resp = client.list_product_subscriptions({
|
1055
|
-
#
|
1056
|
-
# {
|
1057
|
-
# attribute: "String",
|
1058
|
-
# operation: "String",
|
1059
|
-
# value: "String",
|
1060
|
-
# },
|
1061
|
-
# ],
|
1089
|
+
# product: "String",
|
1062
1090
|
# identity_provider: { # required
|
1063
1091
|
# active_directory_identity_provider: {
|
1092
|
+
# directory_id: "Directory",
|
1064
1093
|
# active_directory_settings: {
|
1094
|
+
# domain_name: "String",
|
1095
|
+
# domain_ipv_4_list: ["IpV4"],
|
1096
|
+
# domain_ipv_6_list: ["IpV6"],
|
1065
1097
|
# domain_credentials_provider: {
|
1066
1098
|
# secrets_manager_credentials_provider: {
|
1067
1099
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1068
1100
|
# },
|
1069
1101
|
# },
|
1070
|
-
# domain_ipv_4_list: ["IpV4"],
|
1071
|
-
# domain_name: "String",
|
1072
1102
|
# domain_network_settings: {
|
1073
1103
|
# subnets: ["Subnet"], # required
|
1074
1104
|
# },
|
1075
1105
|
# },
|
1076
1106
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1077
|
-
#
|
1107
|
+
# is_shared_active_directory: false,
|
1078
1108
|
# },
|
1079
1109
|
# },
|
1080
1110
|
# max_results: 1,
|
1111
|
+
# filters: [
|
1112
|
+
# {
|
1113
|
+
# attribute: "String",
|
1114
|
+
# operation: "String",
|
1115
|
+
# value: "String",
|
1116
|
+
# },
|
1117
|
+
# ],
|
1081
1118
|
# next_token: "String",
|
1082
|
-
# product: "String",
|
1083
1119
|
# })
|
1084
1120
|
#
|
1085
1121
|
# @example Response structure
|
1086
1122
|
#
|
1087
|
-
# resp.next_token #=> String
|
1088
1123
|
# resp.product_user_summaries #=> Array
|
1089
|
-
# resp.product_user_summaries[0].
|
1090
|
-
# resp.product_user_summaries[0].
|
1124
|
+
# resp.product_user_summaries[0].username #=> String
|
1125
|
+
# resp.product_user_summaries[0].product #=> String
|
1126
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
1127
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1091
1128
|
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1092
1129
|
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1093
|
-
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.
|
1130
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
1131
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
1132
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1094
1133
|
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1095
1134
|
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1096
1135
|
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1097
|
-
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.
|
1098
|
-
# resp.product_user_summaries[0].product #=> String
|
1099
|
-
# resp.product_user_summaries[0].product_user_arn #=> String
|
1136
|
+
# resp.product_user_summaries[0].identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
1100
1137
|
# resp.product_user_summaries[0].status #=> String
|
1138
|
+
# resp.product_user_summaries[0].product_user_arn #=> String
|
1101
1139
|
# resp.product_user_summaries[0].status_message #=> String
|
1102
|
-
# resp.product_user_summaries[0].
|
1140
|
+
# resp.product_user_summaries[0].domain #=> String
|
1103
1141
|
# resp.product_user_summaries[0].subscription_start_date #=> String
|
1104
|
-
# resp.product_user_summaries[0].
|
1142
|
+
# resp.product_user_summaries[0].subscription_end_date #=> String
|
1143
|
+
# resp.next_token #=> String
|
1105
1144
|
#
|
1106
1145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListProductSubscriptions AWS API Documentation
|
1107
1146
|
#
|
@@ -1144,6 +1183,15 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1144
1183
|
|
1145
1184
|
# Lists user associations for an identity provider.
|
1146
1185
|
#
|
1186
|
+
# @option params [required, String] :instance_id
|
1187
|
+
# The ID of the EC2 instance, which provides user-based subscriptions.
|
1188
|
+
#
|
1189
|
+
# @option params [required, Types::IdentityProvider] :identity_provider
|
1190
|
+
# An object that specifies details for the identity provider.
|
1191
|
+
#
|
1192
|
+
# @option params [Integer] :max_results
|
1193
|
+
# The maximum number of results to return from a single request.
|
1194
|
+
#
|
1147
1195
|
# @option params [Array<Types::Filter>] :filters
|
1148
1196
|
# You can use the following filters to streamline results:
|
1149
1197
|
#
|
@@ -1153,15 +1201,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1153
1201
|
#
|
1154
1202
|
# * Domain
|
1155
1203
|
#
|
1156
|
-
# @option params [required, Types::IdentityProvider] :identity_provider
|
1157
|
-
# An object that specifies details for the identity provider.
|
1158
|
-
#
|
1159
|
-
# @option params [required, String] :instance_id
|
1160
|
-
# The ID of the EC2 instance, which provides user-based subscriptions.
|
1161
|
-
#
|
1162
|
-
# @option params [Integer] :max_results
|
1163
|
-
# The maximum number of results to return from a single request.
|
1164
|
-
#
|
1165
1204
|
# @option params [String] :next_token
|
1166
1205
|
# A token to specify where to start paginating. This is the nextToken
|
1167
1206
|
# from a previously truncated response.
|
@@ -1176,55 +1215,60 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1176
1215
|
# @example Request syntax with placeholder values
|
1177
1216
|
#
|
1178
1217
|
# resp = client.list_user_associations({
|
1179
|
-
#
|
1180
|
-
# {
|
1181
|
-
# attribute: "String",
|
1182
|
-
# operation: "String",
|
1183
|
-
# value: "String",
|
1184
|
-
# },
|
1185
|
-
# ],
|
1218
|
+
# instance_id: "String", # required
|
1186
1219
|
# identity_provider: { # required
|
1187
1220
|
# active_directory_identity_provider: {
|
1221
|
+
# directory_id: "Directory",
|
1188
1222
|
# active_directory_settings: {
|
1223
|
+
# domain_name: "String",
|
1224
|
+
# domain_ipv_4_list: ["IpV4"],
|
1225
|
+
# domain_ipv_6_list: ["IpV6"],
|
1189
1226
|
# domain_credentials_provider: {
|
1190
1227
|
# secrets_manager_credentials_provider: {
|
1191
1228
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1192
1229
|
# },
|
1193
1230
|
# },
|
1194
|
-
# domain_ipv_4_list: ["IpV4"],
|
1195
|
-
# domain_name: "String",
|
1196
1231
|
# domain_network_settings: {
|
1197
1232
|
# subnets: ["Subnet"], # required
|
1198
1233
|
# },
|
1199
1234
|
# },
|
1200
1235
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1201
|
-
#
|
1236
|
+
# is_shared_active_directory: false,
|
1202
1237
|
# },
|
1203
1238
|
# },
|
1204
|
-
# instance_id: "String", # required
|
1205
1239
|
# max_results: 1,
|
1240
|
+
# filters: [
|
1241
|
+
# {
|
1242
|
+
# attribute: "String",
|
1243
|
+
# operation: "String",
|
1244
|
+
# value: "String",
|
1245
|
+
# },
|
1246
|
+
# ],
|
1206
1247
|
# next_token: "String",
|
1207
1248
|
# })
|
1208
1249
|
#
|
1209
1250
|
# @example Response structure
|
1210
1251
|
#
|
1211
1252
|
# resp.instance_user_summaries #=> Array
|
1212
|
-
# resp.instance_user_summaries[0].
|
1213
|
-
# resp.instance_user_summaries[0].
|
1214
|
-
# resp.instance_user_summaries[0].
|
1215
|
-
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.
|
1253
|
+
# resp.instance_user_summaries[0].username #=> String
|
1254
|
+
# resp.instance_user_summaries[0].instance_id #=> String
|
1255
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.directory_id #=> String
|
1256
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1216
1257
|
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1217
1258
|
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1218
|
-
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.
|
1259
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
1260
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
1261
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1219
1262
|
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1220
1263
|
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1221
1264
|
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1222
|
-
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.
|
1223
|
-
# resp.instance_user_summaries[0].instance_id #=> String
|
1224
|
-
# resp.instance_user_summaries[0].instance_user_arn #=> String
|
1265
|
+
# resp.instance_user_summaries[0].identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
1225
1266
|
# resp.instance_user_summaries[0].status #=> String
|
1267
|
+
# resp.instance_user_summaries[0].instance_user_arn #=> String
|
1226
1268
|
# resp.instance_user_summaries[0].status_message #=> String
|
1227
|
-
# resp.instance_user_summaries[0].
|
1269
|
+
# resp.instance_user_summaries[0].domain #=> String
|
1270
|
+
# resp.instance_user_summaries[0].association_date #=> String
|
1271
|
+
# resp.instance_user_summaries[0].disassociation_date #=> String
|
1228
1272
|
# resp.next_token #=> String
|
1229
1273
|
#
|
1230
1274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/ListUserAssociations AWS API Documentation
|
@@ -1265,26 +1309,28 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1265
1309
|
# resp = client.register_identity_provider({
|
1266
1310
|
# identity_provider: { # required
|
1267
1311
|
# active_directory_identity_provider: {
|
1312
|
+
# directory_id: "Directory",
|
1268
1313
|
# active_directory_settings: {
|
1314
|
+
# domain_name: "String",
|
1315
|
+
# domain_ipv_4_list: ["IpV4"],
|
1316
|
+
# domain_ipv_6_list: ["IpV6"],
|
1269
1317
|
# domain_credentials_provider: {
|
1270
1318
|
# secrets_manager_credentials_provider: {
|
1271
1319
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1272
1320
|
# },
|
1273
1321
|
# },
|
1274
|
-
# domain_ipv_4_list: ["IpV4"],
|
1275
|
-
# domain_name: "String",
|
1276
1322
|
# domain_network_settings: {
|
1277
1323
|
# subnets: ["Subnet"], # required
|
1278
1324
|
# },
|
1279
1325
|
# },
|
1280
1326
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1281
|
-
#
|
1327
|
+
# is_shared_active_directory: false,
|
1282
1328
|
# },
|
1283
1329
|
# },
|
1284
1330
|
# product: "String", # required
|
1285
1331
|
# settings: {
|
1286
|
-
# security_group_id: "SecurityGroup", # required
|
1287
1332
|
# subnets: ["Subnet"], # required
|
1333
|
+
# security_group_id: "SecurityGroup", # required
|
1288
1334
|
# },
|
1289
1335
|
# tags: {
|
1290
1336
|
# "String" => "String",
|
@@ -1293,21 +1339,25 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1293
1339
|
#
|
1294
1340
|
# @example Response structure
|
1295
1341
|
#
|
1296
|
-
# resp.identity_provider_summary.
|
1297
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
1342
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
1343
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1298
1344
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1299
1345
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1300
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
1346
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
1347
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
1348
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1301
1349
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1302
1350
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1303
1351
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1304
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.
|
1305
|
-
# resp.identity_provider_summary.identity_provider_arn #=> String
|
1306
|
-
# resp.identity_provider_summary.product #=> String
|
1307
|
-
# resp.identity_provider_summary.settings.security_group_id #=> String
|
1352
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
1308
1353
|
# resp.identity_provider_summary.settings.subnets #=> Array
|
1309
1354
|
# resp.identity_provider_summary.settings.subnets[0] #=> String
|
1355
|
+
# resp.identity_provider_summary.settings.security_group_id #=> String
|
1356
|
+
# resp.identity_provider_summary.product #=> String
|
1310
1357
|
# resp.identity_provider_summary.status #=> String
|
1358
|
+
# resp.identity_provider_summary.identity_provider_arn #=> String
|
1359
|
+
# resp.identity_provider_summary.failure_message #=> String
|
1360
|
+
# resp.identity_provider_summary.owner_account_id #=> String
|
1311
1361
|
#
|
1312
1362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/RegisterIdentityProvider AWS API Documentation
|
1313
1363
|
#
|
@@ -1333,9 +1383,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1333
1383
|
#
|
1334
1384
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html
|
1335
1385
|
#
|
1336
|
-
# @option params [String] :
|
1337
|
-
# The
|
1338
|
-
# whom to start the product subscription.
|
1386
|
+
# @option params [required, String] :username
|
1387
|
+
# The user name from the identity provider of the user.
|
1339
1388
|
#
|
1340
1389
|
# @option params [required, Types::IdentityProvider] :identity_provider
|
1341
1390
|
# An object that specifies details for the identity provider.
|
@@ -1347,12 +1396,13 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1347
1396
|
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
1348
1397
|
# `REMOTE_DESKTOP_SERVICES`
|
1349
1398
|
#
|
1399
|
+
# @option params [String] :domain
|
1400
|
+
# The domain name of the Active Directory that contains the user for
|
1401
|
+
# whom to start the product subscription.
|
1402
|
+
#
|
1350
1403
|
# @option params [Hash<String,String>] :tags
|
1351
1404
|
# The tags that apply to the product subscription.
|
1352
1405
|
#
|
1353
|
-
# @option params [required, String] :username
|
1354
|
-
# The user name from the identity provider of the user.
|
1355
|
-
#
|
1356
1406
|
# @return [Types::StartProductSubscriptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1357
1407
|
#
|
1358
1408
|
# * {Types::StartProductSubscriptionResponse#product_user_summary #product_user_summary} => Types::ProductUserSummary
|
@@ -1360,50 +1410,55 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1360
1410
|
# @example Request syntax with placeholder values
|
1361
1411
|
#
|
1362
1412
|
# resp = client.start_product_subscription({
|
1363
|
-
#
|
1413
|
+
# username: "String", # required
|
1364
1414
|
# identity_provider: { # required
|
1365
1415
|
# active_directory_identity_provider: {
|
1416
|
+
# directory_id: "Directory",
|
1366
1417
|
# active_directory_settings: {
|
1418
|
+
# domain_name: "String",
|
1419
|
+
# domain_ipv_4_list: ["IpV4"],
|
1420
|
+
# domain_ipv_6_list: ["IpV6"],
|
1367
1421
|
# domain_credentials_provider: {
|
1368
1422
|
# secrets_manager_credentials_provider: {
|
1369
1423
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1370
1424
|
# },
|
1371
1425
|
# },
|
1372
|
-
# domain_ipv_4_list: ["IpV4"],
|
1373
|
-
# domain_name: "String",
|
1374
1426
|
# domain_network_settings: {
|
1375
1427
|
# subnets: ["Subnet"], # required
|
1376
1428
|
# },
|
1377
1429
|
# },
|
1378
1430
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1379
|
-
#
|
1431
|
+
# is_shared_active_directory: false,
|
1380
1432
|
# },
|
1381
1433
|
# },
|
1382
1434
|
# product: "String", # required
|
1435
|
+
# domain: "String",
|
1383
1436
|
# tags: {
|
1384
1437
|
# "String" => "String",
|
1385
1438
|
# },
|
1386
|
-
# username: "String", # required
|
1387
1439
|
# })
|
1388
1440
|
#
|
1389
1441
|
# @example Response structure
|
1390
1442
|
#
|
1391
|
-
# resp.product_user_summary.
|
1392
|
-
# resp.product_user_summary.
|
1443
|
+
# resp.product_user_summary.username #=> String
|
1444
|
+
# resp.product_user_summary.product #=> String
|
1445
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
1446
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1393
1447
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1394
1448
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1395
|
-
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
1449
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
1450
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
1451
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1396
1452
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1397
1453
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1398
1454
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1399
|
-
# resp.product_user_summary.identity_provider.active_directory_identity_provider.
|
1400
|
-
# resp.product_user_summary.product #=> String
|
1401
|
-
# resp.product_user_summary.product_user_arn #=> String
|
1455
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
1402
1456
|
# resp.product_user_summary.status #=> String
|
1457
|
+
# resp.product_user_summary.product_user_arn #=> String
|
1403
1458
|
# resp.product_user_summary.status_message #=> String
|
1404
|
-
# resp.product_user_summary.
|
1459
|
+
# resp.product_user_summary.domain #=> String
|
1405
1460
|
# resp.product_user_summary.subscription_start_date #=> String
|
1406
|
-
# resp.product_user_summary.
|
1461
|
+
# resp.product_user_summary.subscription_end_date #=> String
|
1407
1462
|
#
|
1408
1463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/StartProductSubscription AWS API Documentation
|
1409
1464
|
#
|
@@ -1417,9 +1472,8 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1417
1472
|
# Stops a product subscription for a user with the specified identity
|
1418
1473
|
# provider.
|
1419
1474
|
#
|
1420
|
-
# @option params [String] :
|
1421
|
-
# The
|
1422
|
-
# whom to stop the product subscription.
|
1475
|
+
# @option params [String] :username
|
1476
|
+
# The user name from the identity provider for the user.
|
1423
1477
|
#
|
1424
1478
|
# @option params [Types::IdentityProvider] :identity_provider
|
1425
1479
|
# An object that specifies details for the identity provider.
|
@@ -1434,8 +1488,9 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1434
1488
|
# @option params [String] :product_user_arn
|
1435
1489
|
# The Amazon Resource Name (ARN) of the product user.
|
1436
1490
|
#
|
1437
|
-
# @option params [String] :
|
1438
|
-
# The
|
1491
|
+
# @option params [String] :domain
|
1492
|
+
# The domain name of the Active Directory that contains the user for
|
1493
|
+
# whom to stop the product subscription.
|
1439
1494
|
#
|
1440
1495
|
# @return [Types::StopProductSubscriptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1441
1496
|
#
|
@@ -1444,48 +1499,53 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1444
1499
|
# @example Request syntax with placeholder values
|
1445
1500
|
#
|
1446
1501
|
# resp = client.stop_product_subscription({
|
1447
|
-
#
|
1502
|
+
# username: "String",
|
1448
1503
|
# identity_provider: {
|
1449
1504
|
# active_directory_identity_provider: {
|
1505
|
+
# directory_id: "Directory",
|
1450
1506
|
# active_directory_settings: {
|
1507
|
+
# domain_name: "String",
|
1508
|
+
# domain_ipv_4_list: ["IpV4"],
|
1509
|
+
# domain_ipv_6_list: ["IpV6"],
|
1451
1510
|
# domain_credentials_provider: {
|
1452
1511
|
# secrets_manager_credentials_provider: {
|
1453
1512
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1454
1513
|
# },
|
1455
1514
|
# },
|
1456
|
-
# domain_ipv_4_list: ["IpV4"],
|
1457
|
-
# domain_name: "String",
|
1458
1515
|
# domain_network_settings: {
|
1459
1516
|
# subnets: ["Subnet"], # required
|
1460
1517
|
# },
|
1461
1518
|
# },
|
1462
1519
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1463
|
-
#
|
1520
|
+
# is_shared_active_directory: false,
|
1464
1521
|
# },
|
1465
1522
|
# },
|
1466
1523
|
# product: "String",
|
1467
1524
|
# product_user_arn: "Arn",
|
1468
|
-
#
|
1525
|
+
# domain: "String",
|
1469
1526
|
# })
|
1470
1527
|
#
|
1471
1528
|
# @example Response structure
|
1472
1529
|
#
|
1473
|
-
# resp.product_user_summary.
|
1474
|
-
# resp.product_user_summary.
|
1530
|
+
# resp.product_user_summary.username #=> String
|
1531
|
+
# resp.product_user_summary.product #=> String
|
1532
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
1533
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1475
1534
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1476
1535
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1477
|
-
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
1536
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
1537
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
1538
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1478
1539
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1479
1540
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1480
1541
|
# resp.product_user_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1481
|
-
# resp.product_user_summary.identity_provider.active_directory_identity_provider.
|
1482
|
-
# resp.product_user_summary.product #=> String
|
1483
|
-
# resp.product_user_summary.product_user_arn #=> String
|
1542
|
+
# resp.product_user_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
1484
1543
|
# resp.product_user_summary.status #=> String
|
1544
|
+
# resp.product_user_summary.product_user_arn #=> String
|
1485
1545
|
# resp.product_user_summary.status_message #=> String
|
1486
|
-
# resp.product_user_summary.
|
1546
|
+
# resp.product_user_summary.domain #=> String
|
1487
1547
|
# resp.product_user_summary.subscription_start_date #=> String
|
1488
|
-
# resp.product_user_summary.
|
1548
|
+
# resp.product_user_summary.subscription_end_date #=> String
|
1489
1549
|
#
|
1490
1550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/StopProductSubscription AWS API Documentation
|
1491
1551
|
#
|
@@ -1557,9 +1617,6 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1557
1617
|
# @option params [Types::IdentityProvider] :identity_provider
|
1558
1618
|
# Refers to an identity provider.
|
1559
1619
|
#
|
1560
|
-
# @option params [String] :identity_provider_arn
|
1561
|
-
# The Amazon Resource Name (ARN) of the identity provider to update.
|
1562
|
-
#
|
1563
1620
|
# @option params [String] :product
|
1564
1621
|
# The name of the user-based subscription product.
|
1565
1622
|
#
|
@@ -1567,6 +1624,9 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1567
1624
|
# `VISUAL_STUDIO_PROFESSIONAL` \| `OFFICE_PROFESSIONAL_PLUS` \|
|
1568
1625
|
# `REMOTE_DESKTOP_SERVICES`
|
1569
1626
|
#
|
1627
|
+
# @option params [String] :identity_provider_arn
|
1628
|
+
# The Amazon Resource Name (ARN) of the identity provider to update.
|
1629
|
+
#
|
1570
1630
|
# @option params [required, Types::UpdateSettings] :update_settings
|
1571
1631
|
# Updates the registered identity provider’s product related
|
1572
1632
|
# configuration settings. You can update any combination of settings in
|
@@ -1587,24 +1647,26 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1587
1647
|
# resp = client.update_identity_provider_settings({
|
1588
1648
|
# identity_provider: {
|
1589
1649
|
# active_directory_identity_provider: {
|
1650
|
+
# directory_id: "Directory",
|
1590
1651
|
# active_directory_settings: {
|
1652
|
+
# domain_name: "String",
|
1653
|
+
# domain_ipv_4_list: ["IpV4"],
|
1654
|
+
# domain_ipv_6_list: ["IpV6"],
|
1591
1655
|
# domain_credentials_provider: {
|
1592
1656
|
# secrets_manager_credentials_provider: {
|
1593
1657
|
# secret_id: "SecretsManagerCredentialsProviderSecretIdString",
|
1594
1658
|
# },
|
1595
1659
|
# },
|
1596
|
-
# domain_ipv_4_list: ["IpV4"],
|
1597
|
-
# domain_name: "String",
|
1598
1660
|
# domain_network_settings: {
|
1599
1661
|
# subnets: ["Subnet"], # required
|
1600
1662
|
# },
|
1601
1663
|
# },
|
1602
1664
|
# active_directory_type: "SELF_MANAGED", # accepts SELF_MANAGED, AWS_MANAGED
|
1603
|
-
#
|
1665
|
+
# is_shared_active_directory: false,
|
1604
1666
|
# },
|
1605
1667
|
# },
|
1606
|
-
# identity_provider_arn: "Arn",
|
1607
1668
|
# product: "String",
|
1669
|
+
# identity_provider_arn: "Arn",
|
1608
1670
|
# update_settings: { # required
|
1609
1671
|
# add_subnets: ["Subnet"], # required
|
1610
1672
|
# remove_subnets: ["Subnet"], # required
|
@@ -1614,21 +1676,25 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1614
1676
|
#
|
1615
1677
|
# @example Response structure
|
1616
1678
|
#
|
1617
|
-
# resp.identity_provider_summary.
|
1618
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
1679
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.directory_id #=> String
|
1680
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_name #=> String
|
1619
1681
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list #=> Array
|
1620
1682
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_4_list[0] #=> String
|
1621
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.
|
1683
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list #=> Array
|
1684
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_ipv_6_list[0] #=> String
|
1685
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_credentials_provider.secrets_manager_credentials_provider.secret_id #=> String
|
1622
1686
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets #=> Array
|
1623
1687
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_settings.domain_network_settings.subnets[0] #=> String
|
1624
1688
|
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.active_directory_type #=> String, one of "SELF_MANAGED", "AWS_MANAGED"
|
1625
|
-
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.
|
1626
|
-
# resp.identity_provider_summary.identity_provider_arn #=> String
|
1627
|
-
# resp.identity_provider_summary.product #=> String
|
1628
|
-
# resp.identity_provider_summary.settings.security_group_id #=> String
|
1689
|
+
# resp.identity_provider_summary.identity_provider.active_directory_identity_provider.is_shared_active_directory #=> Boolean
|
1629
1690
|
# resp.identity_provider_summary.settings.subnets #=> Array
|
1630
1691
|
# resp.identity_provider_summary.settings.subnets[0] #=> String
|
1692
|
+
# resp.identity_provider_summary.settings.security_group_id #=> String
|
1693
|
+
# resp.identity_provider_summary.product #=> String
|
1631
1694
|
# resp.identity_provider_summary.status #=> String
|
1695
|
+
# resp.identity_provider_summary.identity_provider_arn #=> String
|
1696
|
+
# resp.identity_provider_summary.failure_message #=> String
|
1697
|
+
# resp.identity_provider_summary.owner_account_id #=> String
|
1632
1698
|
#
|
1633
1699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-user-subscriptions-2018-05-10/UpdateIdentityProviderSettings AWS API Documentation
|
1634
1700
|
#
|
@@ -1657,7 +1723,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
1657
1723
|
tracer: tracer
|
1658
1724
|
)
|
1659
1725
|
context[:gem_name] = 'aws-sdk-licensemanagerusersubscriptions'
|
1660
|
-
context[:gem_version] = '1.
|
1726
|
+
context[:gem_version] = '1.41.0'
|
1661
1727
|
Seahorse::Client::Request.new(handlers, context)
|
1662
1728
|
end
|
1663
1729
|
|