constructor()

in src/pl/iotHubGatewayServiceAPIs.ts [34:45]


  constructor(credentials: msRest.ServiceClientCredentials, options?: Models.IotHubGatewayServiceAPIsOptions) {
    super(credentials, options);
    this.configuration = new operations.ConfigurationOperations(this);
    this.statistics = new operations.Statistics(this);
    this.devices = new operations.Devices(this);
    this.bulkRegistry = new operations.BulkRegistry(this);
    this.query = new operations.Query(this);
    this.jobs = new operations.Jobs(this);
    this.cloudToDeviceMessages = new operations.CloudToDeviceMessages(this);
    this.modules = new operations.Modules(this);
    this.digitalTwin = new operations.DigitalTwin(this);
  }