Exemplo n.º 1
0
 public void DataFlowDebugSession_Create()
 {
     RunTest("DataFlowDebugSession_Create", (example, client, responseCode) =>
     {
         CreateDataFlowDebugSessionResponse response = client.DataFlowDebugSession.Create(RGN(example), FN(example), request: GetTypedParameter <CreateDataFlowDebugSessionRequest>(example, client, "request"));
     });
 }
Exemplo n.º 2
0
        public virtual PSDataFlowDebugSession StartDebugSession(string resourceGroupName, string dataFactoryName, CreateDataFlowDebugSessionRequest request)
        {
            CreateDataFlowDebugSessionResponse response     = this.DataFactoryManagementClient.DataFlowDebugSession.Create(resourceGroupName, dataFactoryName, request);
            PSDataFlowDebugSession             debugSession = new PSDataFlowDebugSession(response);

            return(debugSession);
        }
 public PSDataFlowDebugSession(CreateDataFlowDebugSessionResponse debugSession)
 {
     this._debugSession = debugSession ?? throw new ArgumentNullException("debugSession");
 }
 public PSDataFlowDebugSession()
 {
     this._debugSession = new CreateDataFlowDebugSessionResponse();
 }
 public PSCreateDataFlowDebugSessionResponse(CreateDataFlowDebugSessionResponse createDataFlowDebugSessionResponse)
 {
     this.SessionId = createDataFlowDebugSessionResponse?.SessionId;
 }