@azure/arm-domainservices 3.1.0 → 4.0.1-alpha.20220113.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/LICENSE.txt +21 -21
- package/README.md +98 -96
- package/dist/index.js +2502 -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/domainServicesResourceProvider.d.ts +22 -0
- package/dist-esm/src/domainServicesResourceProvider.d.ts.map +1 -0
- package/dist-esm/src/domainServicesResourceProvider.js +55 -0
- package/dist-esm/src/domainServicesResourceProvider.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 +768 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +98 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +27 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +1015 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +117 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/domainServiceOperations.d.ts +32 -0
- package/dist-esm/src/operations/domainServiceOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/domainServiceOperations.js +120 -0
- package/dist-esm/src/operations/domainServiceOperations.js.map +1 -0
- package/dist-esm/src/operations/domainServices.d.ts +127 -0
- package/dist-esm/src/operations/domainServices.d.ts.map +1 -0
- package/dist-esm/src/operations/domainServices.js +520 -0
- package/dist-esm/src/operations/domainServices.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.d.ts +111 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.d.ts.map +1 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.js +441 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.js.map +1 -0
- package/dist-esm/src/operations/ouContainerOperations.d.ts +32 -0
- package/dist-esm/src/operations/ouContainerOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/ouContainerOperations.js +120 -0
- package/dist-esm/src/operations/ouContainerOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServices.d.ts +87 -0
- package/dist-esm/src/operationsInterfaces/domainServices.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServices.js +9 -0
- package/dist-esm/src/operationsInterfaces/domainServices.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.d.ts +84 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.js +9 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.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 +71 -25
- package/review/arm-domainservices.api.md +591 -0
- package/rollup.config.js +184 -27
- package/src/domainServicesResourceProvider.ts +92 -0
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +868 -0
- package/src/models/mappers.ts +1069 -0
- package/src/models/parameters.ts +136 -0
- package/src/operations/domainServiceOperations.ts +137 -0
- package/src/operations/domainServices.ts +690 -0
- package/{lib → src}/operations/index.ts +5 -5
- package/src/operations/ouContainerOperationGrp.ts +632 -0
- package/src/operations/ouContainerOperations.ts +137 -0
- package/src/operationsInterfaces/domainServiceOperations.ts +25 -0
- package/src/operationsInterfaces/domainServices.ts +154 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/ouContainerOperationGrp.ts +157 -0
- package/src/operationsInterfaces/ouContainerOperations.ts +25 -0
- package/tsconfig.json +4 -4
- package/types/arm-domainservices.d.ts +1062 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-domainservices.js +0 -1223
- package/dist/arm-domainservices.js.map +0 -1
- package/dist/arm-domainservices.min.js +0 -1
- package/dist/arm-domainservices.min.js.map +0 -1
- package/esm/domainservicesManagementClient.d.ts +0 -20
- package/esm/domainservicesManagementClient.d.ts.map +0 -1
- package/esm/domainservicesManagementClient.js +0 -35
- package/esm/domainservicesManagementClient.js.map +0 -1
- package/esm/domainservicesManagementClientContext.d.ts +0 -17
- package/esm/domainservicesManagementClientContext.d.ts.map +0 -1
- package/esm/domainservicesManagementClientContext.js +0 -57
- package/esm/domainservicesManagementClientContext.js.map +0 -1
- package/esm/models/domainServiceOperationsMappers.d.ts +0 -2
- package/esm/models/domainServiceOperationsMappers.d.ts.map +0 -1
- package/esm/models/domainServiceOperationsMappers.js +0 -11
- package/esm/models/domainServiceOperationsMappers.js.map +0 -1
- package/esm/models/domainServicesMappers.d.ts +0 -2
- package/esm/models/domainServicesMappers.d.ts.map +0 -1
- package/esm/models/domainServicesMappers.js +0 -11
- package/esm/models/domainServicesMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -693
- 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 -15
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -498
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -76
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/domainServiceOperations.d.ts +0 -46
- package/esm/operations/domainServiceOperations.d.ts.map +0 -1
- package/esm/operations/domainServiceOperations.js +0 -77
- package/esm/operations/domainServiceOperations.js.map +0 -1
- package/esm/operations/domainServices.d.ts +0 -189
- package/esm/operations/domainServices.d.ts.map +0 -1
- package/esm/operations/domainServices.js +0 -356
- package/esm/operations/domainServices.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/lib/domainservicesManagementClient.ts +0 -45
- package/lib/domainservicesManagementClientContext.ts +0 -63
- package/lib/models/domainServiceOperationsMappers.ts +0 -17
- package/lib/models/domainServicesMappers.ts +0 -23
- package/lib/models/index.ts +0 -736
- package/lib/models/mappers.ts +0 -526
- package/lib/models/parameters.ts +0 -78
- package/lib/operations/domainServiceOperations.ts +0 -123
- package/lib/operations/domainServices.ts +0 -513
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServiceOperations.d.ts","sourceRoot":"","sources":["../../lib/operations/domainServiceOperations.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AAEjG,oDAAoD;AACpD,qBAAa,uBAAuB;IAClC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAwC;IAE/D;;;OAGG;gBACS,MAAM,EAAE,qCAAqC;IAIzD;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,mCAAmC,CAAC;IAC9F;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,yBAAyB,CAAC,GAAG,IAAI;IAC9E;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,yBAAyB,CAAC,GAAG,IAAI;IAUlH;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,uCAAuC,CAAC;IAC5H;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,yBAAyB,CAAC,GAAG,IAAI;IACxG;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,yBAAyB,CAAC,GAAG,IAAI;CAU7I"}
|
@@ -1,77 +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 * as msRest from "@azure/ms-rest-js";
|
11
|
-
import * as Mappers from "../models/domainServiceOperationsMappers";
|
12
|
-
import * as Parameters from "../models/parameters";
|
13
|
-
/** Class representing a DomainServiceOperations. */
|
14
|
-
var DomainServiceOperations = /** @class */ (function () {
|
15
|
-
/**
|
16
|
-
* Create a DomainServiceOperations.
|
17
|
-
* @param {DomainservicesManagementClientContext} client Reference to the service client.
|
18
|
-
*/
|
19
|
-
function DomainServiceOperations(client) {
|
20
|
-
this.client = client;
|
21
|
-
}
|
22
|
-
DomainServiceOperations.prototype.list = function (options, callback) {
|
23
|
-
return this.client.sendOperationRequest({
|
24
|
-
options: options
|
25
|
-
}, listOperationSpec, callback);
|
26
|
-
};
|
27
|
-
DomainServiceOperations.prototype.listNext = function (nextPageLink, options, callback) {
|
28
|
-
return this.client.sendOperationRequest({
|
29
|
-
nextPageLink: nextPageLink,
|
30
|
-
options: options
|
31
|
-
}, listNextOperationSpec, callback);
|
32
|
-
};
|
33
|
-
return DomainServiceOperations;
|
34
|
-
}());
|
35
|
-
export { DomainServiceOperations };
|
36
|
-
// Operation Specifications
|
37
|
-
var serializer = new msRest.Serializer(Mappers);
|
38
|
-
var listOperationSpec = {
|
39
|
-
httpMethod: "GET",
|
40
|
-
path: "providers/Microsoft.AAD/operations",
|
41
|
-
queryParameters: [
|
42
|
-
Parameters.apiVersion
|
43
|
-
],
|
44
|
-
headerParameters: [
|
45
|
-
Parameters.acceptLanguage
|
46
|
-
],
|
47
|
-
responses: {
|
48
|
-
200: {
|
49
|
-
bodyMapper: Mappers.OperationEntityListResult
|
50
|
-
},
|
51
|
-
default: {
|
52
|
-
bodyMapper: Mappers.CloudError
|
53
|
-
}
|
54
|
-
},
|
55
|
-
serializer: serializer
|
56
|
-
};
|
57
|
-
var listNextOperationSpec = {
|
58
|
-
httpMethod: "GET",
|
59
|
-
baseUrl: "https://management.azure.com",
|
60
|
-
path: "{nextLink}",
|
61
|
-
urlParameters: [
|
62
|
-
Parameters.nextPageLink
|
63
|
-
],
|
64
|
-
headerParameters: [
|
65
|
-
Parameters.acceptLanguage
|
66
|
-
],
|
67
|
-
responses: {
|
68
|
-
200: {
|
69
|
-
bodyMapper: Mappers.OperationEntityListResult
|
70
|
-
},
|
71
|
-
default: {
|
72
|
-
bodyMapper: Mappers.CloudError
|
73
|
-
}
|
74
|
-
},
|
75
|
-
serializer: serializer
|
76
|
-
};
|
77
|
-
//# sourceMappingURL=domainServiceOperations.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServiceOperations.js","sourceRoot":"","sources":["../../lib/operations/domainServiceOperations.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,0CAA0C,CAAC;AACpE,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,oDAAoD;AACpD;IAGE;;;OAGG;IACH,iCAAY,MAA6C;QACvD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAiBD,sCAAI,GAAJ,UAAK,OAA8F,EAAE,QAAmE;QACtK,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAAwD,CAAC;IACrE,CAAC;IAoBD,0CAAQ,GAAR,UAAS,YAAoB,EAAE,OAA8F,EAAE,QAAmE;QAChM,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAA4D,CAAC;IACzE,CAAC;IACH,8BAAC;AAAD,CAAC,AA9DD,IA8DC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,iBAAiB,GAAyB;IAC9C,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,oCAAoC;IAC1C,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,yBAAyB;SAC9C;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,qBAAqB,GAAyB;IAClD,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,8BAA8B;IACvC,IAAI,EAAE,YAAY;IAClB,aAAa,EAAE;QACb,UAAU,CAAC,YAAY;KACxB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,yBAAyB;SAC9C;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
|
@@ -1,189 +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 { DomainservicesManagementClientContext } from "../domainservicesManagementClientContext";
|
5
|
-
/** Class representing a DomainServices. */
|
6
|
-
export declare class DomainServices {
|
7
|
-
private readonly client;
|
8
|
-
/**
|
9
|
-
* Create a DomainServices.
|
10
|
-
* @param {DomainservicesManagementClientContext} client Reference to the service client.
|
11
|
-
*/
|
12
|
-
constructor(client: DomainservicesManagementClientContext);
|
13
|
-
/**
|
14
|
-
* The List Domain Services in Subscription operation lists all the domain services available under
|
15
|
-
* the given subscription (and across all resource groups within that subscription).
|
16
|
-
* @summary List Domain Services in Subscription (GET Resources)
|
17
|
-
* @param [options] The optional parameters
|
18
|
-
* @returns Promise<Models.DomainServicesListResponse>
|
19
|
-
*/
|
20
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesListResponse>;
|
21
|
-
/**
|
22
|
-
* @param callback The callback
|
23
|
-
*/
|
24
|
-
list(callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
25
|
-
/**
|
26
|
-
* @param options The optional parameters
|
27
|
-
* @param callback The callback
|
28
|
-
*/
|
29
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
30
|
-
/**
|
31
|
-
* The List Domain Services in Resource Group operation lists all the domain services available
|
32
|
-
* under the given resource group.
|
33
|
-
* @summary List Domain Services in Resource Group (GET Resources)
|
34
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
35
|
-
* is case insensitive.
|
36
|
-
* @param [options] The optional parameters
|
37
|
-
* @returns Promise<Models.DomainServicesListByResourceGroupResponse>
|
38
|
-
*/
|
39
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesListByResourceGroupResponse>;
|
40
|
-
/**
|
41
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
42
|
-
* is case insensitive.
|
43
|
-
* @param callback The callback
|
44
|
-
*/
|
45
|
-
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
46
|
-
/**
|
47
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
48
|
-
* is case insensitive.
|
49
|
-
* @param options The optional parameters
|
50
|
-
* @param callback The callback
|
51
|
-
*/
|
52
|
-
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
53
|
-
/**
|
54
|
-
* The Create Domain Service operation creates a new domain service with the specified parameters.
|
55
|
-
* If the specific service already exists, then any patchable properties will be updated and any
|
56
|
-
* immutable properties will remain unchanged.
|
57
|
-
* @summary Create or Update Domain Service (PUT Resource)
|
58
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
59
|
-
* is case insensitive.
|
60
|
-
* @param domainServiceName The name of the domain service.
|
61
|
-
* @param domainService Properties supplied to the Create or Update a Domain Service operation.
|
62
|
-
* @param [options] The optional parameters
|
63
|
-
* @returns Promise<Models.DomainServicesCreateOrUpdateResponse>
|
64
|
-
*/
|
65
|
-
createOrUpdate(resourceGroupName: string, domainServiceName: string, domainService: Models.DomainService, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesCreateOrUpdateResponse>;
|
66
|
-
/**
|
67
|
-
* The Get Domain Service operation retrieves a json representation of the Domain Service.
|
68
|
-
* @summary Get Domain Service (GET Resources)
|
69
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
70
|
-
* is case insensitive.
|
71
|
-
* @param domainServiceName The name of the domain service.
|
72
|
-
* @param [options] The optional parameters
|
73
|
-
* @returns Promise<Models.DomainServicesGetResponse>
|
74
|
-
*/
|
75
|
-
get(resourceGroupName: string, domainServiceName: string, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesGetResponse>;
|
76
|
-
/**
|
77
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
78
|
-
* is case insensitive.
|
79
|
-
* @param domainServiceName The name of the domain service.
|
80
|
-
* @param callback The callback
|
81
|
-
*/
|
82
|
-
get(resourceGroupName: string, domainServiceName: string, callback: msRest.ServiceCallback<Models.DomainService>): void;
|
83
|
-
/**
|
84
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
85
|
-
* is case insensitive.
|
86
|
-
* @param domainServiceName The name of the domain service.
|
87
|
-
* @param options The optional parameters
|
88
|
-
* @param callback The callback
|
89
|
-
*/
|
90
|
-
get(resourceGroupName: string, domainServiceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.DomainService>): void;
|
91
|
-
/**
|
92
|
-
* The Delete Domain Service operation deletes an existing Domain Service.
|
93
|
-
* @summary Delete Domain Service (DELETE Resource)
|
94
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
95
|
-
* is case insensitive.
|
96
|
-
* @param domainServiceName The name of the domain service.
|
97
|
-
* @param [options] The optional parameters
|
98
|
-
* @returns Promise<Models.DomainServicesDeleteMethodResponse>
|
99
|
-
*/
|
100
|
-
deleteMethod(resourceGroupName: string, domainServiceName: string, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesDeleteMethodResponse>;
|
101
|
-
/**
|
102
|
-
* The Update Domain Service operation can be used to update the existing deployment. The update
|
103
|
-
* call only supports the properties listed in the PATCH body.
|
104
|
-
* @summary Update Domain Service (PATCH Resource)
|
105
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
106
|
-
* is case insensitive.
|
107
|
-
* @param domainServiceName The name of the domain service.
|
108
|
-
* @param domainService Properties supplied to the Update a Domain Service operation.
|
109
|
-
* @param [options] The optional parameters
|
110
|
-
* @returns Promise<Models.DomainServicesUpdateResponse>
|
111
|
-
*/
|
112
|
-
update(resourceGroupName: string, domainServiceName: string, domainService: Models.DomainService, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesUpdateResponse>;
|
113
|
-
/**
|
114
|
-
* The Create Domain Service operation creates a new domain service with the specified parameters.
|
115
|
-
* If the specific service already exists, then any patchable properties will be updated and any
|
116
|
-
* immutable properties will remain unchanged.
|
117
|
-
* @summary Create or Update Domain Service (PUT Resource)
|
118
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
119
|
-
* is case insensitive.
|
120
|
-
* @param domainServiceName The name of the domain service.
|
121
|
-
* @param domainService Properties supplied to the Create or Update a Domain Service operation.
|
122
|
-
* @param [options] The optional parameters
|
123
|
-
* @returns Promise<msRestAzure.LROPoller>
|
124
|
-
*/
|
125
|
-
beginCreateOrUpdate(resourceGroupName: string, domainServiceName: string, domainService: Models.DomainService, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
126
|
-
/**
|
127
|
-
* The Delete Domain Service operation deletes an existing Domain Service.
|
128
|
-
* @summary Delete Domain Service (DELETE Resource)
|
129
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
130
|
-
* is case insensitive.
|
131
|
-
* @param domainServiceName The name of the domain service.
|
132
|
-
* @param [options] The optional parameters
|
133
|
-
* @returns Promise<msRestAzure.LROPoller>
|
134
|
-
*/
|
135
|
-
beginDeleteMethod(resourceGroupName: string, domainServiceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
136
|
-
/**
|
137
|
-
* The Update Domain Service operation can be used to update the existing deployment. The update
|
138
|
-
* call only supports the properties listed in the PATCH body.
|
139
|
-
* @summary Update Domain Service (PATCH Resource)
|
140
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
141
|
-
* is case insensitive.
|
142
|
-
* @param domainServiceName The name of the domain service.
|
143
|
-
* @param domainService Properties supplied to the Update a Domain Service operation.
|
144
|
-
* @param [options] The optional parameters
|
145
|
-
* @returns Promise<msRestAzure.LROPoller>
|
146
|
-
*/
|
147
|
-
beginUpdate(resourceGroupName: string, domainServiceName: string, domainService: Models.DomainService, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
148
|
-
/**
|
149
|
-
* The List Domain Services in Subscription operation lists all the domain services available under
|
150
|
-
* the given subscription (and across all resource groups within that subscription).
|
151
|
-
* @summary List Domain Services in Subscription (GET Resources)
|
152
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
153
|
-
* @param [options] The optional parameters
|
154
|
-
* @returns Promise<Models.DomainServicesListNextResponse>
|
155
|
-
*/
|
156
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesListNextResponse>;
|
157
|
-
/**
|
158
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
159
|
-
* @param callback The callback
|
160
|
-
*/
|
161
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
162
|
-
/**
|
163
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
164
|
-
* @param options The optional parameters
|
165
|
-
* @param callback The callback
|
166
|
-
*/
|
167
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
168
|
-
/**
|
169
|
-
* The List Domain Services in Resource Group operation lists all the domain services available
|
170
|
-
* under the given resource group.
|
171
|
-
* @summary List Domain Services in Resource Group (GET Resources)
|
172
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
173
|
-
* @param [options] The optional parameters
|
174
|
-
* @returns Promise<Models.DomainServicesListByResourceGroupNextResponse>
|
175
|
-
*/
|
176
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.DomainServicesListByResourceGroupNextResponse>;
|
177
|
-
/**
|
178
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
179
|
-
* @param callback The callback
|
180
|
-
*/
|
181
|
-
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
182
|
-
/**
|
183
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
184
|
-
* @param options The optional parameters
|
185
|
-
* @param callback The callback
|
186
|
-
*/
|
187
|
-
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.DomainServiceListResult>): void;
|
188
|
-
}
|
189
|
-
//# sourceMappingURL=domainServices.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServices.d.ts","sourceRoot":"","sources":["../../lib/operations/domainServices.ts"],"names":[],"mappings":"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"}
|
@@ -1,356 +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 * as tslib_1 from "tslib";
|
11
|
-
import * as msRest from "@azure/ms-rest-js";
|
12
|
-
import * as Mappers from "../models/domainServicesMappers";
|
13
|
-
import * as Parameters from "../models/parameters";
|
14
|
-
/** Class representing a DomainServices. */
|
15
|
-
var DomainServices = /** @class */ (function () {
|
16
|
-
/**
|
17
|
-
* Create a DomainServices.
|
18
|
-
* @param {DomainservicesManagementClientContext} client Reference to the service client.
|
19
|
-
*/
|
20
|
-
function DomainServices(client) {
|
21
|
-
this.client = client;
|
22
|
-
}
|
23
|
-
DomainServices.prototype.list = function (options, callback) {
|
24
|
-
return this.client.sendOperationRequest({
|
25
|
-
options: options
|
26
|
-
}, listOperationSpec, callback);
|
27
|
-
};
|
28
|
-
DomainServices.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
|
29
|
-
return this.client.sendOperationRequest({
|
30
|
-
resourceGroupName: resourceGroupName,
|
31
|
-
options: options
|
32
|
-
}, listByResourceGroupOperationSpec, callback);
|
33
|
-
};
|
34
|
-
/**
|
35
|
-
* The Create Domain Service operation creates a new domain service with the specified parameters.
|
36
|
-
* If the specific service already exists, then any patchable properties will be updated and any
|
37
|
-
* immutable properties will remain unchanged.
|
38
|
-
* @summary Create or Update Domain Service (PUT Resource)
|
39
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
40
|
-
* is case insensitive.
|
41
|
-
* @param domainServiceName The name of the domain service.
|
42
|
-
* @param domainService Properties supplied to the Create or Update a Domain Service operation.
|
43
|
-
* @param [options] The optional parameters
|
44
|
-
* @returns Promise<Models.DomainServicesCreateOrUpdateResponse>
|
45
|
-
*/
|
46
|
-
DomainServices.prototype.createOrUpdate = function (resourceGroupName, domainServiceName, domainService, options) {
|
47
|
-
return this.beginCreateOrUpdate(resourceGroupName, domainServiceName, domainService, options)
|
48
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
49
|
-
};
|
50
|
-
DomainServices.prototype.get = function (resourceGroupName, domainServiceName, options, callback) {
|
51
|
-
return this.client.sendOperationRequest({
|
52
|
-
resourceGroupName: resourceGroupName,
|
53
|
-
domainServiceName: domainServiceName,
|
54
|
-
options: options
|
55
|
-
}, getOperationSpec, callback);
|
56
|
-
};
|
57
|
-
/**
|
58
|
-
* The Delete Domain Service operation deletes an existing Domain Service.
|
59
|
-
* @summary Delete Domain Service (DELETE Resource)
|
60
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
61
|
-
* is case insensitive.
|
62
|
-
* @param domainServiceName The name of the domain service.
|
63
|
-
* @param [options] The optional parameters
|
64
|
-
* @returns Promise<Models.DomainServicesDeleteMethodResponse>
|
65
|
-
*/
|
66
|
-
DomainServices.prototype.deleteMethod = function (resourceGroupName, domainServiceName, options) {
|
67
|
-
return this.beginDeleteMethod(resourceGroupName, domainServiceName, options)
|
68
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
69
|
-
};
|
70
|
-
/**
|
71
|
-
* The Update Domain Service operation can be used to update the existing deployment. The update
|
72
|
-
* call only supports the properties listed in the PATCH body.
|
73
|
-
* @summary Update Domain Service (PATCH Resource)
|
74
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
75
|
-
* is case insensitive.
|
76
|
-
* @param domainServiceName The name of the domain service.
|
77
|
-
* @param domainService Properties supplied to the Update a Domain Service operation.
|
78
|
-
* @param [options] The optional parameters
|
79
|
-
* @returns Promise<Models.DomainServicesUpdateResponse>
|
80
|
-
*/
|
81
|
-
DomainServices.prototype.update = function (resourceGroupName, domainServiceName, domainService, options) {
|
82
|
-
return this.beginUpdate(resourceGroupName, domainServiceName, domainService, options)
|
83
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
84
|
-
};
|
85
|
-
/**
|
86
|
-
* The Create Domain Service operation creates a new domain service with the specified parameters.
|
87
|
-
* If the specific service already exists, then any patchable properties will be updated and any
|
88
|
-
* immutable properties will remain unchanged.
|
89
|
-
* @summary Create or Update Domain Service (PUT Resource)
|
90
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
91
|
-
* is case insensitive.
|
92
|
-
* @param domainServiceName The name of the domain service.
|
93
|
-
* @param domainService Properties supplied to the Create or Update a Domain Service operation.
|
94
|
-
* @param [options] The optional parameters
|
95
|
-
* @returns Promise<msRestAzure.LROPoller>
|
96
|
-
*/
|
97
|
-
DomainServices.prototype.beginCreateOrUpdate = function (resourceGroupName, domainServiceName, domainService, options) {
|
98
|
-
return this.client.sendLRORequest({
|
99
|
-
resourceGroupName: resourceGroupName,
|
100
|
-
domainServiceName: domainServiceName,
|
101
|
-
domainService: domainService,
|
102
|
-
options: options
|
103
|
-
}, beginCreateOrUpdateOperationSpec, options);
|
104
|
-
};
|
105
|
-
/**
|
106
|
-
* The Delete Domain Service operation deletes an existing Domain Service.
|
107
|
-
* @summary Delete Domain Service (DELETE Resource)
|
108
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
109
|
-
* is case insensitive.
|
110
|
-
* @param domainServiceName The name of the domain service.
|
111
|
-
* @param [options] The optional parameters
|
112
|
-
* @returns Promise<msRestAzure.LROPoller>
|
113
|
-
*/
|
114
|
-
DomainServices.prototype.beginDeleteMethod = function (resourceGroupName, domainServiceName, options) {
|
115
|
-
return this.client.sendLRORequest({
|
116
|
-
resourceGroupName: resourceGroupName,
|
117
|
-
domainServiceName: domainServiceName,
|
118
|
-
options: options
|
119
|
-
}, beginDeleteMethodOperationSpec, options);
|
120
|
-
};
|
121
|
-
/**
|
122
|
-
* The Update Domain Service operation can be used to update the existing deployment. The update
|
123
|
-
* call only supports the properties listed in the PATCH body.
|
124
|
-
* @summary Update Domain Service (PATCH Resource)
|
125
|
-
* @param resourceGroupName The name of the resource group within the user's subscription. The name
|
126
|
-
* is case insensitive.
|
127
|
-
* @param domainServiceName The name of the domain service.
|
128
|
-
* @param domainService Properties supplied to the Update a Domain Service operation.
|
129
|
-
* @param [options] The optional parameters
|
130
|
-
* @returns Promise<msRestAzure.LROPoller>
|
131
|
-
*/
|
132
|
-
DomainServices.prototype.beginUpdate = function (resourceGroupName, domainServiceName, domainService, options) {
|
133
|
-
return this.client.sendLRORequest({
|
134
|
-
resourceGroupName: resourceGroupName,
|
135
|
-
domainServiceName: domainServiceName,
|
136
|
-
domainService: domainService,
|
137
|
-
options: options
|
138
|
-
}, beginUpdateOperationSpec, options);
|
139
|
-
};
|
140
|
-
DomainServices.prototype.listNext = function (nextPageLink, options, callback) {
|
141
|
-
return this.client.sendOperationRequest({
|
142
|
-
nextPageLink: nextPageLink,
|
143
|
-
options: options
|
144
|
-
}, listNextOperationSpec, callback);
|
145
|
-
};
|
146
|
-
DomainServices.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
|
147
|
-
return this.client.sendOperationRequest({
|
148
|
-
nextPageLink: nextPageLink,
|
149
|
-
options: options
|
150
|
-
}, listByResourceGroupNextOperationSpec, callback);
|
151
|
-
};
|
152
|
-
return DomainServices;
|
153
|
-
}());
|
154
|
-
export { DomainServices };
|
155
|
-
// Operation Specifications
|
156
|
-
var serializer = new msRest.Serializer(Mappers);
|
157
|
-
var listOperationSpec = {
|
158
|
-
httpMethod: "GET",
|
159
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.AAD/domainServices",
|
160
|
-
urlParameters: [
|
161
|
-
Parameters.subscriptionId
|
162
|
-
],
|
163
|
-
queryParameters: [
|
164
|
-
Parameters.apiVersion
|
165
|
-
],
|
166
|
-
headerParameters: [
|
167
|
-
Parameters.acceptLanguage
|
168
|
-
],
|
169
|
-
responses: {
|
170
|
-
200: {
|
171
|
-
bodyMapper: Mappers.DomainServiceListResult
|
172
|
-
},
|
173
|
-
default: {
|
174
|
-
bodyMapper: Mappers.CloudError
|
175
|
-
}
|
176
|
-
},
|
177
|
-
serializer: serializer
|
178
|
-
};
|
179
|
-
var listByResourceGroupOperationSpec = {
|
180
|
-
httpMethod: "GET",
|
181
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices",
|
182
|
-
urlParameters: [
|
183
|
-
Parameters.subscriptionId,
|
184
|
-
Parameters.resourceGroupName
|
185
|
-
],
|
186
|
-
queryParameters: [
|
187
|
-
Parameters.apiVersion
|
188
|
-
],
|
189
|
-
headerParameters: [
|
190
|
-
Parameters.acceptLanguage
|
191
|
-
],
|
192
|
-
responses: {
|
193
|
-
200: {
|
194
|
-
bodyMapper: Mappers.DomainServiceListResult
|
195
|
-
},
|
196
|
-
default: {
|
197
|
-
bodyMapper: Mappers.CloudError
|
198
|
-
}
|
199
|
-
},
|
200
|
-
serializer: serializer
|
201
|
-
};
|
202
|
-
var getOperationSpec = {
|
203
|
-
httpMethod: "GET",
|
204
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",
|
205
|
-
urlParameters: [
|
206
|
-
Parameters.subscriptionId,
|
207
|
-
Parameters.resourceGroupName,
|
208
|
-
Parameters.domainServiceName
|
209
|
-
],
|
210
|
-
queryParameters: [
|
211
|
-
Parameters.apiVersion
|
212
|
-
],
|
213
|
-
headerParameters: [
|
214
|
-
Parameters.acceptLanguage
|
215
|
-
],
|
216
|
-
responses: {
|
217
|
-
200: {
|
218
|
-
bodyMapper: Mappers.DomainService
|
219
|
-
},
|
220
|
-
default: {
|
221
|
-
bodyMapper: Mappers.CloudError
|
222
|
-
}
|
223
|
-
},
|
224
|
-
serializer: serializer
|
225
|
-
};
|
226
|
-
var beginCreateOrUpdateOperationSpec = {
|
227
|
-
httpMethod: "PUT",
|
228
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",
|
229
|
-
urlParameters: [
|
230
|
-
Parameters.subscriptionId,
|
231
|
-
Parameters.resourceGroupName,
|
232
|
-
Parameters.domainServiceName
|
233
|
-
],
|
234
|
-
queryParameters: [
|
235
|
-
Parameters.apiVersion
|
236
|
-
],
|
237
|
-
headerParameters: [
|
238
|
-
Parameters.acceptLanguage
|
239
|
-
],
|
240
|
-
requestBody: {
|
241
|
-
parameterPath: "domainService",
|
242
|
-
mapper: tslib_1.__assign({}, Mappers.DomainService, { required: true })
|
243
|
-
},
|
244
|
-
responses: {
|
245
|
-
200: {
|
246
|
-
bodyMapper: Mappers.DomainService
|
247
|
-
},
|
248
|
-
201: {
|
249
|
-
bodyMapper: Mappers.DomainService
|
250
|
-
},
|
251
|
-
202: {
|
252
|
-
bodyMapper: Mappers.DomainService
|
253
|
-
},
|
254
|
-
default: {
|
255
|
-
bodyMapper: Mappers.CloudError
|
256
|
-
}
|
257
|
-
},
|
258
|
-
serializer: serializer
|
259
|
-
};
|
260
|
-
var beginDeleteMethodOperationSpec = {
|
261
|
-
httpMethod: "DELETE",
|
262
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",
|
263
|
-
urlParameters: [
|
264
|
-
Parameters.subscriptionId,
|
265
|
-
Parameters.resourceGroupName,
|
266
|
-
Parameters.domainServiceName
|
267
|
-
],
|
268
|
-
queryParameters: [
|
269
|
-
Parameters.apiVersion
|
270
|
-
],
|
271
|
-
headerParameters: [
|
272
|
-
Parameters.acceptLanguage
|
273
|
-
],
|
274
|
-
responses: {
|
275
|
-
202: {
|
276
|
-
bodyMapper: Mappers.DomainService
|
277
|
-
},
|
278
|
-
204: {},
|
279
|
-
default: {
|
280
|
-
bodyMapper: Mappers.CloudError
|
281
|
-
}
|
282
|
-
},
|
283
|
-
serializer: serializer
|
284
|
-
};
|
285
|
-
var beginUpdateOperationSpec = {
|
286
|
-
httpMethod: "PATCH",
|
287
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}",
|
288
|
-
urlParameters: [
|
289
|
-
Parameters.subscriptionId,
|
290
|
-
Parameters.resourceGroupName,
|
291
|
-
Parameters.domainServiceName
|
292
|
-
],
|
293
|
-
queryParameters: [
|
294
|
-
Parameters.apiVersion
|
295
|
-
],
|
296
|
-
headerParameters: [
|
297
|
-
Parameters.acceptLanguage
|
298
|
-
],
|
299
|
-
requestBody: {
|
300
|
-
parameterPath: "domainService",
|
301
|
-
mapper: tslib_1.__assign({}, Mappers.DomainService, { required: true })
|
302
|
-
},
|
303
|
-
responses: {
|
304
|
-
200: {
|
305
|
-
bodyMapper: Mappers.DomainService
|
306
|
-
},
|
307
|
-
202: {
|
308
|
-
bodyMapper: Mappers.DomainService
|
309
|
-
},
|
310
|
-
default: {
|
311
|
-
bodyMapper: Mappers.CloudError
|
312
|
-
}
|
313
|
-
},
|
314
|
-
serializer: serializer
|
315
|
-
};
|
316
|
-
var listNextOperationSpec = {
|
317
|
-
httpMethod: "GET",
|
318
|
-
baseUrl: "https://management.azure.com",
|
319
|
-
path: "{nextLink}",
|
320
|
-
urlParameters: [
|
321
|
-
Parameters.nextPageLink
|
322
|
-
],
|
323
|
-
headerParameters: [
|
324
|
-
Parameters.acceptLanguage
|
325
|
-
],
|
326
|
-
responses: {
|
327
|
-
200: {
|
328
|
-
bodyMapper: Mappers.DomainServiceListResult
|
329
|
-
},
|
330
|
-
default: {
|
331
|
-
bodyMapper: Mappers.CloudError
|
332
|
-
}
|
333
|
-
},
|
334
|
-
serializer: serializer
|
335
|
-
};
|
336
|
-
var listByResourceGroupNextOperationSpec = {
|
337
|
-
httpMethod: "GET",
|
338
|
-
baseUrl: "https://management.azure.com",
|
339
|
-
path: "{nextLink}",
|
340
|
-
urlParameters: [
|
341
|
-
Parameters.nextPageLink
|
342
|
-
],
|
343
|
-
headerParameters: [
|
344
|
-
Parameters.acceptLanguage
|
345
|
-
],
|
346
|
-
responses: {
|
347
|
-
200: {
|
348
|
-
bodyMapper: Mappers.DomainServiceListResult
|
349
|
-
},
|
350
|
-
default: {
|
351
|
-
bodyMapper: Mappers.CloudError
|
352
|
-
}
|
353
|
-
},
|
354
|
-
serializer: serializer
|
355
|
-
};
|
356
|
-
//# sourceMappingURL=domainServices.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"domainServices.js","sourceRoot":"","sources":["../../lib/operations/domainServices.ts"],"names":[],"mappings":"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"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/operations/index.ts"],"names":[],"mappings":"AAUA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC"}
|