Example #1
0
 public Quickstart(
     IBootstrapper bootstrapper,
     Option <RegistryCredentials> credentials,
     string iothubConnectionString,
     string eventhubCompatibleEndpointWithEntityPath,
     UpstreamProtocolType upstreamProtocol,
     string imageTag,
     string deviceId,
     string hostname,
     LeaveRunning leaveRunning,
     bool noDeployment,
     bool noVerify,
     string verifyDataFromModule,
     Option <string> deploymentFileName,
     string deviceCaCert,
     string deviceCaPk,
     string deviceCaCerts,
     bool optimizedForPerformance,
     LogLevel runtimeLogLevel,
     bool cleanUpExistingDeviceOnSuccess) :
     base(bootstrapper, credentials, iothubConnectionString, eventhubCompatibleEndpointWithEntityPath, upstreamProtocol, imageTag, deviceId, hostname, deploymentFileName, deviceCaCert, deviceCaPk, deviceCaCerts, optimizedForPerformance, runtimeLogLevel, cleanUpExistingDeviceOnSuccess)
 {
     this.leaveRunning         = leaveRunning;
     this.noDeployment         = noDeployment;
     this.noVerify             = noVerify;
     this.verifyDataFromModule = verifyDataFromModule;
 }
Example #2
0
 public Quickstart(
     IBootstrapper bootstrapper,
     Option <RegistryCredentials> credentials,
     string iothubConnectionString,
     string eventhubCompatibleEndpointWithEntityPath,
     UpstreamProtocolType upstreamProtocol,
     Option <string> proxy,
     string imageTag,
     string deviceId,
     string hostname,
     LeaveRunning leaveRunning,
     bool noVerify,
     bool bypassEdgeInstallation,
     string verifyDataFromModule,
     Option <string> deploymentFileName,
     Option <string> twinTestFileName,
     string deviceCaCert,
     string deviceCaPk,
     string deviceCaCerts,
     bool optimizedForPerformance,
     LogLevel runtimeLogLevel,
     bool cleanUpExistingDeviceOnSuccess,
     Option <DPSAttestation> dpsAttestation)
     : base(bootstrapper, credentials, iothubConnectionString, eventhubCompatibleEndpointWithEntityPath, upstreamProtocol, proxy, imageTag, deviceId, hostname, deploymentFileName, twinTestFileName, deviceCaCert, deviceCaPk, deviceCaCerts, optimizedForPerformance, runtimeLogLevel, cleanUpExistingDeviceOnSuccess, dpsAttestation)
 {
     this.leaveRunning           = leaveRunning;
     this.noVerify               = noVerify;
     this.bypassEdgeInstallation = bypassEdgeInstallation;
     this.verifyDataFromModule   = verifyDataFromModule;
     this.dpsProvisionTest       = dpsAttestation.HasValue;
 }
Example #3
0
 public Quickstart(
     IBootstrapper bootstrapper,
     Option <RegistryCredentials> credentials,
     string iothubConnectionString,
     string eventhubCompatibleEndpointWithEntityPath,
     string imageTag,
     string deviceId,
     string hostname,
     LeaveRunning leaveRunning) :
     base(bootstrapper, credentials, iothubConnectionString, eventhubCompatibleEndpointWithEntityPath, imageTag, deviceId, hostname)
 {
     this.leaveRunning = leaveRunning;
 }
Example #4
0
 public Quickstart(
     IBootstrapper bootstrapper,
     Option <RegistryCredentials> credentials,
     string iothubConnectionString,
     string eventhubCompatibleEndpointWithEntityPath,
     string imageTag,
     string deviceId,
     string hostname,
     LeaveRunning leaveRunning,
     bool noDeployment,
     bool noVerify,
     Option <string> deploymentFileName) :
     base(bootstrapper, credentials, iothubConnectionString, eventhubCompatibleEndpointWithEntityPath, imageTag, deviceId, hostname, deploymentFileName)
 {
     this.leaveRunning = leaveRunning;
     this.noDeployment = noDeployment;
     this.noVerify     = noVerify;
 }