/// <summary> /// 本接口(DetachUserPolicy)可用于解除绑定到用户的策略。 /// </summary> /// <param name="req">参考<see cref="DetachUserPolicyRequest"/></param> /// <returns>参考<see cref="DetachUserPolicyResponse"/>实例</returns> public async Task <DetachUserPolicyResponse> DetachUserPolicy(DetachUserPolicyRequest req) { JsonResponseModel <DetachUserPolicyResponse> rsp = null; try { var strResp = await this.InternalRequest(req, "DetachUserPolicy"); rsp = JsonConvert.DeserializeObject <JsonResponseModel <DetachUserPolicyResponse> >(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return(rsp.Response); }
public Task <DetachUserPolicyResponse> DetachUserPolicyAsync(DetachUserPolicyRequest request, CancellationToken cancellationToken = new CancellationToken()) { throw new System.NotImplementedException(); }