@azure/arm-devspaces 1.2.1 → 2.0.1-alpha.20220201.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -83
- package/dist/index.js +1321 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/devSpacesManagementClient.d.ts +20 -0
- package/dist-esm/src/devSpacesManagementClient.d.ts.map +1 -0
- package/dist-esm/src/devSpacesManagementClient.js +53 -0
- package/dist-esm/src/devSpacesManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +287 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +29 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +204 -231
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +15 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +129 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/containerHostMappings.d.ts +23 -0
- package/dist-esm/src/operations/containerHostMappings.d.ts.map +1 -0
- package/dist-esm/src/operations/containerHostMappings.js +59 -0
- package/dist-esm/src/operations/containerHostMappings.js.map +1 -0
- package/dist-esm/src/operations/controllers.d.ts +111 -0
- package/dist-esm/src/operations/controllers.d.ts.map +1 -0
- package/dist-esm/src/operations/controllers.js +490 -0
- package/dist-esm/src/operations/controllers.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +1 -1
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +4 -6
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +34 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +116 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts +15 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.js +9 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/controllers.d.ts +74 -0
- package/dist-esm/src/operationsInterfaces/controllers.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/controllers.js +9 -0
- package/dist-esm/src/operationsInterfaces/controllers.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +69 -24
- package/review/arm-devspaces.api.md +300 -0
- package/rollup.config.js +184 -27
- package/src/devSpacesManagementClient.ts +74 -39
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +251 -512
- package/src/models/mappers.ts +202 -226
- package/src/models/parameters.ts +98 -38
- package/src/operations/containerHostMappings.ts +51 -69
- package/src/operations/controllers.ts +469 -377
- package/src/operations/index.ts +4 -6
- package/src/operations/operations.ts +87 -81
- package/src/operationsInterfaces/containerHostMappings.ts +32 -0
- package/src/operationsInterfaces/controllers.ts +140 -0
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +26 -0
- package/tsconfig.json +4 -4
- package/types/arm-devspaces.d.ts +451 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-devspaces.js +0 -1261
- package/dist/arm-devspaces.js.map +0 -1
- package/dist/arm-devspaces.min.js +0 -1
- package/dist/arm-devspaces.min.js.map +0 -1
- package/esm/devSpacesManagementClient.d.ts +0 -26
- package/esm/devSpacesManagementClient.d.ts.map +0 -1
- package/esm/devSpacesManagementClient.js +0 -40
- package/esm/devSpacesManagementClient.js.map +0 -1
- package/esm/devSpacesManagementClientContext.d.ts +0 -22
- package/esm/devSpacesManagementClientContext.d.ts.map +0 -1
- package/esm/devSpacesManagementClientContext.js +0 -61
- package/esm/devSpacesManagementClientContext.js.map +0 -1
- package/esm/models/containerHostMappingsMappers.d.ts +0 -2
- package/esm/models/containerHostMappingsMappers.d.ts.map +0 -1
- package/esm/models/containerHostMappingsMappers.js +0 -11
- package/esm/models/containerHostMappingsMappers.js.map +0 -1
- package/esm/models/controllersMappers.d.ts +0 -2
- package/esm/models/controllersMappers.d.ts.map +0 -1
- package/esm/models/controllersMappers.js +0 -11
- package/esm/models/controllersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -564
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -24
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -9
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -90
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/containerHostMappings.d.ts +0 -35
- package/esm/operations/containerHostMappings.d.ts.map +0 -1
- package/esm/operations/containerHostMappings.js +0 -66
- package/esm/operations/containerHostMappings.js.map +0 -1
- package/esm/operations/controllers.d.ts +0 -198
- package/esm/operations/controllers.d.ts.map +0 -1
- package/esm/operations/controllers.js +0 -346
- package/esm/operations/controllers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -50
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/src/devSpacesManagementClientContext.ts +0 -68
- package/src/models/containerHostMappingsMappers.ts +0 -16
- package/src/models/controllersMappers.ts +0 -27
- package/src/models/operationsMappers.ts +0 -18
package/esm/models/parameters.js
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
export var acceptLanguage = {
|
|
11
|
-
parameterPath: "acceptLanguage",
|
|
12
|
-
mapper: {
|
|
13
|
-
serializedName: "accept-language",
|
|
14
|
-
defaultValue: 'en-US',
|
|
15
|
-
type: {
|
|
16
|
-
name: "String"
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
};
|
|
20
|
-
export var apiVersion = {
|
|
21
|
-
parameterPath: "apiVersion",
|
|
22
|
-
mapper: {
|
|
23
|
-
required: true,
|
|
24
|
-
serializedName: "api-version",
|
|
25
|
-
type: {
|
|
26
|
-
name: "String"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
export var location = {
|
|
31
|
-
parameterPath: "location",
|
|
32
|
-
mapper: {
|
|
33
|
-
required: true,
|
|
34
|
-
serializedName: "location",
|
|
35
|
-
type: {
|
|
36
|
-
name: "String"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
export var name = {
|
|
41
|
-
parameterPath: "name",
|
|
42
|
-
mapper: {
|
|
43
|
-
required: true,
|
|
44
|
-
serializedName: "name",
|
|
45
|
-
constraints: {
|
|
46
|
-
MaxLength: 31,
|
|
47
|
-
MinLength: 3,
|
|
48
|
-
Pattern: /^[a-zA-Z0-9](-?[a-zA-Z0-9])*$/
|
|
49
|
-
},
|
|
50
|
-
type: {
|
|
51
|
-
name: "String"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
};
|
|
55
|
-
export var nextPageLink = {
|
|
56
|
-
parameterPath: "nextPageLink",
|
|
57
|
-
mapper: {
|
|
58
|
-
required: true,
|
|
59
|
-
serializedName: "nextLink",
|
|
60
|
-
type: {
|
|
61
|
-
name: "String"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
skipEncoding: true
|
|
65
|
-
};
|
|
66
|
-
export var resourceGroupName = {
|
|
67
|
-
parameterPath: "resourceGroupName",
|
|
68
|
-
mapper: {
|
|
69
|
-
required: true,
|
|
70
|
-
serializedName: "resourceGroupName",
|
|
71
|
-
constraints: {
|
|
72
|
-
MaxLength: 90,
|
|
73
|
-
MinLength: 1
|
|
74
|
-
},
|
|
75
|
-
type: {
|
|
76
|
-
name: "String"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
};
|
|
80
|
-
export var subscriptionId = {
|
|
81
|
-
parameterPath: "subscriptionId",
|
|
82
|
-
mapper: {
|
|
83
|
-
required: true,
|
|
84
|
-
serializedName: "subscriptionId",
|
|
85
|
-
type: {
|
|
86
|
-
name: "String"
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
};
|
|
90
|
-
//# sourceMappingURL=parameters.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,QAAQ,GAAiC;IACpD,aAAa,EAAE,UAAU;IACzB,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,IAAI,GAAiC;IAChD,aAAa,EAAE,MAAM;IACrB,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,MAAM;QACtB,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,+BAA+B;SACzC;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;SACb;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as Models from "../models";
|
|
3
|
-
import { DevSpacesManagementClientContext } from "../devSpacesManagementClientContext";
|
|
4
|
-
/** Class representing a ContainerHostMappings. */
|
|
5
|
-
export declare class ContainerHostMappings {
|
|
6
|
-
private readonly client;
|
|
7
|
-
/**
|
|
8
|
-
* Create a ContainerHostMappings.
|
|
9
|
-
* @param {DevSpacesManagementClientContext} client Reference to the service client.
|
|
10
|
-
*/
|
|
11
|
-
constructor(client: DevSpacesManagementClientContext);
|
|
12
|
-
/**
|
|
13
|
-
* @summary Returns container host mapping object for a container host resource ID if an associated
|
|
14
|
-
* controller exists.
|
|
15
|
-
* @param containerHostMapping
|
|
16
|
-
* @param location Location of the container host.
|
|
17
|
-
* @param [options] The optional parameters
|
|
18
|
-
* @returns Promise<Models.ContainerHostMappingsGetContainerHostMappingResponse>
|
|
19
|
-
*/
|
|
20
|
-
getContainerHostMapping(containerHostMapping: Models.ContainerHostMapping, location: string, options?: msRest.RequestOptionsBase): Promise<Models.ContainerHostMappingsGetContainerHostMappingResponse>;
|
|
21
|
-
/**
|
|
22
|
-
* @param containerHostMapping
|
|
23
|
-
* @param location Location of the container host.
|
|
24
|
-
* @param callback The callback
|
|
25
|
-
*/
|
|
26
|
-
getContainerHostMapping(containerHostMapping: Models.ContainerHostMapping, location: string, callback: msRest.ServiceCallback<any>): void;
|
|
27
|
-
/**
|
|
28
|
-
* @param containerHostMapping
|
|
29
|
-
* @param location Location of the container host.
|
|
30
|
-
* @param options The optional parameters
|
|
31
|
-
* @param callback The callback
|
|
32
|
-
*/
|
|
33
|
-
getContainerHostMapping(containerHostMapping: Models.ContainerHostMapping, location: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<any>): void;
|
|
34
|
-
}
|
|
35
|
-
//# sourceMappingURL=containerHostMappings.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerHostMappings.d.ts","sourceRoot":"","sources":["../../src/operations/containerHostMappings.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AAEvF,kDAAkD;AAClD,qBAAa,qBAAqB;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAmC;IAE1D;;;OAGG;gBACS,MAAM,EAAE,gCAAgC;IAIpD;;;;;;;OAOG;IACH,uBAAuB,CAAC,oBAAoB,EAAE,MAAM,CAAC,oBAAoB,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,oDAAoD,CAAC;IACvM;;;;OAIG;IACH,uBAAuB,CAAC,oBAAoB,EAAE,MAAM,CAAC,oBAAoB,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC,GAAG,IAAI;IACzI;;;;;OAKG;IACH,uBAAuB,CAAC,oBAAoB,EAAE,MAAM,CAAC,oBAAoB,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC,GAAG,IAAI;CAW9K"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
-
* license information.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
9
|
-
*/
|
|
10
|
-
import { __assign } from "tslib";
|
|
11
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
12
|
-
import * as Mappers from "../models/containerHostMappingsMappers";
|
|
13
|
-
import * as Parameters from "../models/parameters";
|
|
14
|
-
/** Class representing a ContainerHostMappings. */
|
|
15
|
-
var ContainerHostMappings = /** @class */ (function () {
|
|
16
|
-
/**
|
|
17
|
-
* Create a ContainerHostMappings.
|
|
18
|
-
* @param {DevSpacesManagementClientContext} client Reference to the service client.
|
|
19
|
-
*/
|
|
20
|
-
function ContainerHostMappings(client) {
|
|
21
|
-
this.client = client;
|
|
22
|
-
}
|
|
23
|
-
ContainerHostMappings.prototype.getContainerHostMapping = function (containerHostMapping, location, options, callback) {
|
|
24
|
-
return this.client.sendOperationRequest({
|
|
25
|
-
containerHostMapping: containerHostMapping,
|
|
26
|
-
location: location,
|
|
27
|
-
options: options
|
|
28
|
-
}, getContainerHostMappingOperationSpec, callback);
|
|
29
|
-
};
|
|
30
|
-
return ContainerHostMappings;
|
|
31
|
-
}());
|
|
32
|
-
export { ContainerHostMappings };
|
|
33
|
-
// Operation Specifications
|
|
34
|
-
var serializer = new msRest.Serializer(Mappers);
|
|
35
|
-
var getContainerHostMappingOperationSpec = {
|
|
36
|
-
httpMethod: "POST",
|
|
37
|
-
path: "providers/Microsoft.DevSpaces/locations/{location}/checkContainerHostMapping",
|
|
38
|
-
urlParameters: [
|
|
39
|
-
Parameters.location
|
|
40
|
-
],
|
|
41
|
-
queryParameters: [
|
|
42
|
-
Parameters.apiVersion
|
|
43
|
-
],
|
|
44
|
-
headerParameters: [
|
|
45
|
-
Parameters.acceptLanguage
|
|
46
|
-
],
|
|
47
|
-
requestBody: {
|
|
48
|
-
parameterPath: "containerHostMapping",
|
|
49
|
-
mapper: __assign(__assign({}, Mappers.ContainerHostMapping), { required: true })
|
|
50
|
-
},
|
|
51
|
-
responses: {
|
|
52
|
-
200: {
|
|
53
|
-
bodyMapper: {
|
|
54
|
-
serializedName: "parsedResponse",
|
|
55
|
-
type: {
|
|
56
|
-
name: "Object"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
default: {
|
|
61
|
-
bodyMapper: Mappers.CloudError
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
serializer: serializer
|
|
65
|
-
};
|
|
66
|
-
//# sourceMappingURL=containerHostMappings.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerHostMappings.js","sourceRoot":"","sources":["../../src/operations/containerHostMappings.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,wCAAwC,CAAC;AAClE,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,kDAAkD;AAClD;IAGE;;;OAGG;IACH,+BAAY,MAAwC;QAClD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAwBD,uDAAuB,GAAvB,UAAwB,oBAAiD,EAAE,QAAgB,EAAE,OAAiE,EAAE,QAAsC;QACpM,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,oBAAoB,sBAAA;YACpB,QAAQ,UAAA;YACR,OAAO,SAAA;SACR,EACD,oCAAoC,EACpC,QAAQ,CAAyE,CAAC;IACtF,CAAC;IACH,4BAAC;AAAD,CAAC,AA3CD,IA2CC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,oCAAoC,GAAyB;IACjE,UAAU,EAAE,MAAM;IAClB,IAAI,EAAE,8EAA8E;IACpF,aAAa,EAAE;QACb,UAAU,CAAC,QAAQ;KACpB;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,WAAW,EAAE;QACX,aAAa,EAAE,sBAAsB;QACrC,MAAM,wBACD,OAAO,CAAC,oBAAoB,KAC/B,QAAQ,EAAE,IAAI,GACf;KACF;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE;gBACV,cAAc,EAAE,gBAAgB;gBAChC,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
3
|
-
import * as Models from "../models";
|
|
4
|
-
import { DevSpacesManagementClientContext } from "../devSpacesManagementClientContext";
|
|
5
|
-
/** Class representing a Controllers. */
|
|
6
|
-
export declare class Controllers {
|
|
7
|
-
private readonly client;
|
|
8
|
-
/**
|
|
9
|
-
* Create a Controllers.
|
|
10
|
-
* @param {DevSpacesManagementClientContext} client Reference to the service client.
|
|
11
|
-
*/
|
|
12
|
-
constructor(client: DevSpacesManagementClientContext);
|
|
13
|
-
/**
|
|
14
|
-
* Gets the properties for an Azure Dev Spaces Controller.
|
|
15
|
-
* @summary Gets an Azure Dev Spaces Controller.
|
|
16
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
17
|
-
* @param name Name of the resource.
|
|
18
|
-
* @param [options] The optional parameters
|
|
19
|
-
* @returns Promise<Models.ControllersGetResponse>
|
|
20
|
-
*/
|
|
21
|
-
get(resourceGroupName: string, name: string, options?: msRest.RequestOptionsBase): Promise<Models.ControllersGetResponse>;
|
|
22
|
-
/**
|
|
23
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
24
|
-
* @param name Name of the resource.
|
|
25
|
-
* @param callback The callback
|
|
26
|
-
*/
|
|
27
|
-
get(resourceGroupName: string, name: string, callback: msRest.ServiceCallback<Models.Controller>): void;
|
|
28
|
-
/**
|
|
29
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
30
|
-
* @param name Name of the resource.
|
|
31
|
-
* @param options The optional parameters
|
|
32
|
-
* @param callback The callback
|
|
33
|
-
*/
|
|
34
|
-
get(resourceGroupName: string, name: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Controller>): void;
|
|
35
|
-
/**
|
|
36
|
-
* Creates an Azure Dev Spaces Controller with the specified create parameters.
|
|
37
|
-
* @summary Creates an Azure Dev Spaces Controller.
|
|
38
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
39
|
-
* @param name Name of the resource.
|
|
40
|
-
* @param controller Controller create parameters.
|
|
41
|
-
* @param [options] The optional parameters
|
|
42
|
-
* @returns Promise<Models.ControllersCreateResponse>
|
|
43
|
-
*/
|
|
44
|
-
create(resourceGroupName: string, name: string, controller: Models.Controller, options?: msRest.RequestOptionsBase): Promise<Models.ControllersCreateResponse>;
|
|
45
|
-
/**
|
|
46
|
-
* Deletes an existing Azure Dev Spaces Controller.
|
|
47
|
-
* @summary Deletes an Azure Dev Spaces Controller.
|
|
48
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
49
|
-
* @param name Name of the resource.
|
|
50
|
-
* @param [options] The optional parameters
|
|
51
|
-
* @returns Promise<msRest.RestResponse>
|
|
52
|
-
*/
|
|
53
|
-
deleteMethod(resourceGroupName: string, name: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
|
|
54
|
-
/**
|
|
55
|
-
* Updates the properties of an existing Azure Dev Spaces Controller with the specified update
|
|
56
|
-
* parameters.
|
|
57
|
-
* @summary Updates an Azure Dev Spaces Controller.
|
|
58
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
59
|
-
* @param name Name of the resource.
|
|
60
|
-
* @param controllerUpdateParameters Parameters for updating the Azure Dev Spaces Controller.
|
|
61
|
-
* @param [options] The optional parameters
|
|
62
|
-
* @returns Promise<Models.ControllersUpdateResponse>
|
|
63
|
-
*/
|
|
64
|
-
update(resourceGroupName: string, name: string, controllerUpdateParameters: Models.ControllerUpdateParameters, options?: msRest.RequestOptionsBase): Promise<Models.ControllersUpdateResponse>;
|
|
65
|
-
/**
|
|
66
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
67
|
-
* @param name Name of the resource.
|
|
68
|
-
* @param controllerUpdateParameters Parameters for updating the Azure Dev Spaces Controller.
|
|
69
|
-
* @param callback The callback
|
|
70
|
-
*/
|
|
71
|
-
update(resourceGroupName: string, name: string, controllerUpdateParameters: Models.ControllerUpdateParameters, callback: msRest.ServiceCallback<Models.Controller>): void;
|
|
72
|
-
/**
|
|
73
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
74
|
-
* @param name Name of the resource.
|
|
75
|
-
* @param controllerUpdateParameters Parameters for updating the Azure Dev Spaces Controller.
|
|
76
|
-
* @param options The optional parameters
|
|
77
|
-
* @param callback The callback
|
|
78
|
-
*/
|
|
79
|
-
update(resourceGroupName: string, name: string, controllerUpdateParameters: Models.ControllerUpdateParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Controller>): void;
|
|
80
|
-
/**
|
|
81
|
-
* Lists all the Azure Dev Spaces Controllers with their properties in the specified resource group
|
|
82
|
-
* and subscription.
|
|
83
|
-
* @summary Lists the Azure Dev Spaces Controllers in a resource group.
|
|
84
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
85
|
-
* @param [options] The optional parameters
|
|
86
|
-
* @returns Promise<Models.ControllersListByResourceGroupResponse>
|
|
87
|
-
*/
|
|
88
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ControllersListByResourceGroupResponse>;
|
|
89
|
-
/**
|
|
90
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
91
|
-
* @param callback The callback
|
|
92
|
-
*/
|
|
93
|
-
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
94
|
-
/**
|
|
95
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
96
|
-
* @param options The optional parameters
|
|
97
|
-
* @param callback The callback
|
|
98
|
-
*/
|
|
99
|
-
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
100
|
-
/**
|
|
101
|
-
* Lists all the Azure Dev Spaces Controllers with their properties in the subscription.
|
|
102
|
-
* @summary Lists the Azure Dev Spaces Controllers in a subscription.
|
|
103
|
-
* @param [options] The optional parameters
|
|
104
|
-
* @returns Promise<Models.ControllersListResponse>
|
|
105
|
-
*/
|
|
106
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.ControllersListResponse>;
|
|
107
|
-
/**
|
|
108
|
-
* @param callback The callback
|
|
109
|
-
*/
|
|
110
|
-
list(callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
111
|
-
/**
|
|
112
|
-
* @param options The optional parameters
|
|
113
|
-
* @param callback The callback
|
|
114
|
-
*/
|
|
115
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
116
|
-
/**
|
|
117
|
-
* Lists connection details for the underlying container resources of an Azure Dev Spaces
|
|
118
|
-
* Controller.
|
|
119
|
-
* @summary Lists connection details for an Azure Dev Spaces Controller.
|
|
120
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
121
|
-
* @param name Name of the resource.
|
|
122
|
-
* @param [options] The optional parameters
|
|
123
|
-
* @returns Promise<Models.ControllersListConnectionDetailsResponse>
|
|
124
|
-
*/
|
|
125
|
-
listConnectionDetails(resourceGroupName: string, name: string, options?: msRest.RequestOptionsBase): Promise<Models.ControllersListConnectionDetailsResponse>;
|
|
126
|
-
/**
|
|
127
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
128
|
-
* @param name Name of the resource.
|
|
129
|
-
* @param callback The callback
|
|
130
|
-
*/
|
|
131
|
-
listConnectionDetails(resourceGroupName: string, name: string, callback: msRest.ServiceCallback<Models.ControllerConnectionDetailsList>): void;
|
|
132
|
-
/**
|
|
133
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
134
|
-
* @param name Name of the resource.
|
|
135
|
-
* @param options The optional parameters
|
|
136
|
-
* @param callback The callback
|
|
137
|
-
*/
|
|
138
|
-
listConnectionDetails(resourceGroupName: string, name: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ControllerConnectionDetailsList>): void;
|
|
139
|
-
/**
|
|
140
|
-
* Creates an Azure Dev Spaces Controller with the specified create parameters.
|
|
141
|
-
* @summary Creates an Azure Dev Spaces Controller.
|
|
142
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
143
|
-
* @param name Name of the resource.
|
|
144
|
-
* @param controller Controller create parameters.
|
|
145
|
-
* @param [options] The optional parameters
|
|
146
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
147
|
-
*/
|
|
148
|
-
beginCreate(resourceGroupName: string, name: string, controller: Models.Controller, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
149
|
-
/**
|
|
150
|
-
* Deletes an existing Azure Dev Spaces Controller.
|
|
151
|
-
* @summary Deletes an Azure Dev Spaces Controller.
|
|
152
|
-
* @param resourceGroupName Resource group to which the resource belongs.
|
|
153
|
-
* @param name Name of the resource.
|
|
154
|
-
* @param [options] The optional parameters
|
|
155
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
156
|
-
*/
|
|
157
|
-
beginDeleteMethod(resourceGroupName: string, name: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
158
|
-
/**
|
|
159
|
-
* Lists all the Azure Dev Spaces Controllers with their properties in the specified resource group
|
|
160
|
-
* and subscription.
|
|
161
|
-
* @summary Lists the Azure Dev Spaces Controllers in a resource group.
|
|
162
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
163
|
-
* @param [options] The optional parameters
|
|
164
|
-
* @returns Promise<Models.ControllersListByResourceGroupNextResponse>
|
|
165
|
-
*/
|
|
166
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ControllersListByResourceGroupNextResponse>;
|
|
167
|
-
/**
|
|
168
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
169
|
-
* @param callback The callback
|
|
170
|
-
*/
|
|
171
|
-
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
172
|
-
/**
|
|
173
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
174
|
-
* @param options The optional parameters
|
|
175
|
-
* @param callback The callback
|
|
176
|
-
*/
|
|
177
|
-
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
178
|
-
/**
|
|
179
|
-
* Lists all the Azure Dev Spaces Controllers with their properties in the subscription.
|
|
180
|
-
* @summary Lists the Azure Dev Spaces Controllers in a subscription.
|
|
181
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
182
|
-
* @param [options] The optional parameters
|
|
183
|
-
* @returns Promise<Models.ControllersListNextResponse>
|
|
184
|
-
*/
|
|
185
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ControllersListNextResponse>;
|
|
186
|
-
/**
|
|
187
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
188
|
-
* @param callback The callback
|
|
189
|
-
*/
|
|
190
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
191
|
-
/**
|
|
192
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
193
|
-
* @param options The optional parameters
|
|
194
|
-
* @param callback The callback
|
|
195
|
-
*/
|
|
196
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ControllerList>): void;
|
|
197
|
-
}
|
|
198
|
-
//# sourceMappingURL=controllers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"controllers.d.ts","sourceRoot":"","sources":["../../src/operations/controllers.ts"],"names":[],"mappings":"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"}
|