public ResultCode SetServiceInstanceMap(string serviceType, ServiceInstanceMapValue serviceInstanceMap) { SetServiceInstanceMapResponse setServiceInstanceMapResponse = ((IFederatedServiceOnboarding)this).SetServiceInstanceMap(new SetServiceInstanceMapRequest { serviceType = serviceType, serviceInstanceMap = serviceInstanceMap }); return(setServiceInstanceMapResponse.SetServiceInstanceMapResult); }
public GetServiceInstanceMapResponse(ServiceInstanceMapValue GetServiceInstanceMapResult) { this.GetServiceInstanceMapResult = GetServiceInstanceMapResult; }
public Task <SetServiceInstanceMapResponse> SetServiceInstanceMapAsync(string serviceType, ServiceInstanceMapValue serviceInstanceMap) { return(((IFederatedServiceOnboarding)this).SetServiceInstanceMapAsync(new SetServiceInstanceMapRequest { serviceType = serviceType, serviceInstanceMap = serviceInstanceMap })); }
public SetServiceInstanceMapRequest(string serviceType, ServiceInstanceMapValue serviceInstanceMap) { this.serviceType = serviceType; this.serviceInstanceMap = serviceInstanceMap; }