IAcsClient.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. using Aliyun.Acs.Core.Auth;
  20. using Aliyun.Acs.Core.Http;
  21. using Aliyun.Acs.Core.Profile;
  22. using Aliyun.Acs.Core.Regions;
  23. using System;
  24. using System.Collections.Generic;
  25. namespace Aliyun.Acs.Core
  26. {
  27. public interface IAcsClient
  28. {
  29. T GetAcsResponse<T>(AcsRequest<T> request) where T : AcsResponse;
  30. T GetAcsResponse<T>(AcsRequest<T> request, bool autoRetry, int maxRetryCounts) where T : AcsResponse;
  31. T GetAcsResponse<T>(AcsRequest<T> request, IClientProfile profile) where T : AcsResponse;
  32. T GetAcsResponse<T>(AcsRequest<T> request, String regionId, Credential credential) where T : AcsResponse;
  33. HttpResponse DoAction<T>(AcsRequest<T> request) where T : AcsResponse;
  34. HttpResponse DoAction<T>(AcsRequest<T> request, bool autoRetry, int maxRetryCounts) where T : AcsResponse;
  35. HttpResponse DoAction<T>(AcsRequest<T> request, IClientProfile profile) where T : AcsResponse;
  36. HttpResponse DoAction<T>(AcsRequest<T> request, String regionId, Credential credential) where T : AcsResponse;
  37. HttpResponse DoAction<T>(AcsRequest<T> request, bool autoRetry, int maxRetryCounts, IClientProfile profile) where T : AcsResponse;
  38. HttpResponse DoAction<T>(AcsRequest<T> request,
  39. bool autoRetry, int maxRetryNumber,
  40. String regionId, Credential credential,
  41. ISigner signer, FormatType? format,
  42. List<Endpoint> endpoints) where T : AcsResponse;
  43. CommonResponse DoCommonAction(CommonRequest request);
  44. }
  45. }