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
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::LicenseManagerUserSubscriptions::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,33 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_user
|
74
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::AssociateUser.build(context)
|
75
|
-
when :deregister_identity_provider
|
76
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::DeregisterIdentityProvider.build(context)
|
77
|
-
when :disassociate_user
|
78
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::DisassociateUser.build(context)
|
79
|
-
when :list_identity_providers
|
80
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::ListIdentityProviders.build(context)
|
81
|
-
when :list_instances
|
82
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::ListInstances.build(context)
|
83
|
-
when :list_product_subscriptions
|
84
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::ListProductSubscriptions.build(context)
|
85
|
-
when :list_user_associations
|
86
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::ListUserAssociations.build(context)
|
87
|
-
when :register_identity_provider
|
88
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::RegisterIdentityProvider.build(context)
|
89
|
-
when :start_product_subscription
|
90
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::StartProductSubscription.build(context)
|
91
|
-
when :stop_product_subscription
|
92
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::StopProductSubscription.build(context)
|
93
|
-
when :update_identity_provider_settings
|
94
|
-
Aws::LicenseManagerUserSubscriptions::Endpoints::UpdateIdentityProviderSettings.build(context)
|
95
|
-
end
|
96
|
-
end
|
97
70
|
end
|
98
71
|
|
99
72
|
def add_handlers(handlers, _config)
|