Esempio n. 1
0
        public ServiceInstanceMoveOperationResult StartServiceInstanceMoveTask(string contextId, string oldServiceInstance, string newServiceInstance, ServiceInstanceMoveOptions options)
        {
            StartServiceInstanceMoveTaskResponse startServiceInstanceMoveTaskResponse = ((IServiceInstanceMove)this).StartServiceInstanceMoveTask(new StartServiceInstanceMoveTaskRequest
            {
                contextId          = contextId,
                oldServiceInstance = oldServiceInstance,
                newServiceInstance = newServiceInstance,
                options            = options
            });

            return(startServiceInstanceMoveTaskResponse.StartServiceInstanceMoveTaskResult);
        }
Esempio n. 2
0
 public Task <StartServiceInstanceMoveTaskResponse> StartServiceInstanceMoveTaskAsync(string contextId, string oldServiceInstance, string newServiceInstance, ServiceInstanceMoveOptions options)
 {
     return(((IServiceInstanceMove)this).StartServiceInstanceMoveTaskAsync(new StartServiceInstanceMoveTaskRequest
     {
         contextId = contextId,
         oldServiceInstance = oldServiceInstance,
         newServiceInstance = newServiceInstance,
         options = options
     }));
 }
Esempio n. 3
0
 public StartServiceInstanceMoveTaskRequest(string contextId, string oldServiceInstance, string newServiceInstance, ServiceInstanceMoveOptions options)
 {
     this.contextId          = contextId;
     this.oldServiceInstance = oldServiceInstance;
     this.newServiceInstance = newServiceInstance;
     this.options            = options;
 }