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.
@@ -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)