UNPKG

@azure/quantum-jobs

Version:
33 lines 1.55 kB
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { __extends } from "tslib"; import { Jobs, Providers, Storage, Quotas } from "./operations"; import { QuantumJobClientContext } from "./quantumJobClientContext"; var QuantumJobClient = /** @class */ (function (_super) { __extends(QuantumJobClient, _super); /** * Initializes a new instance of the QuantumJobClient class. * @param credentials Subscription credentials which uniquely identify client subscription. * @param subscriptionId The Azure subscription ID. This is a GUID-formatted string (e.g. * 00000000-0000-0000-0000-000000000000) * @param resourceGroupName Name of an Azure resource group. * @param workspaceName Name of the workspace. * @param options The parameter options */ function QuantumJobClient(credentials, subscriptionId, resourceGroupName, workspaceName, options) { var _this = _super.call(this, credentials, subscriptionId, resourceGroupName, workspaceName, options) || this; _this.jobs = new Jobs(_this); _this.providers = new Providers(_this); _this.storage = new Storage(_this); _this.quotas = new Quotas(_this); return _this; } return QuantumJobClient; }(QuantumJobClientContext)); export { QuantumJobClient }; //# sourceMappingURL=quantumJobClient.js.map