@azure/arm-hanaonazure 2.2.0 → 4.0.0-beta.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 +11 -0
- package/LICENSE +21 -0
- package/LICENSE.txt +1 -1
- package/README.md +72 -72
- package/dist/index.js +1333 -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/hanaManagementClient.d.ts +21 -0
- package/dist-esm/src/hanaManagementClient.d.ts.map +1 -0
- package/dist-esm/src/hanaManagementClient.js +54 -0
- package/dist-esm/src/hanaManagementClient.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 +260 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +19 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +15 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +330 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +14 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +116 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +26 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +90 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/providerInstances.d.ts +88 -0
- package/dist-esm/src/operations/providerInstances.d.ts.map +1 -0
- package/dist-esm/src/operations/providerInstances.js +344 -0
- package/dist-esm/src/operations/providerInstances.js.map +1 -0
- package/dist-esm/src/operations/sapMonitors.d.ts +81 -0
- package/dist-esm/src/operations/sapMonitors.d.ts.map +1 -0
- package/dist-esm/src/operations/sapMonitors.js +346 -0
- package/dist-esm/src/operations/sapMonitors.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 +11 -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/src/operationsInterfaces/providerInstances.d.ts +62 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.js +9 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts +59 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.js +9 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.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 +65 -31
- package/review/arm-hanaonazure.api.md +260 -0
- package/rollup.config.js +181 -30
- package/src/hanaManagementClient.ts +75 -34
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +227 -638
- package/src/models/mappers.ts +138 -367
- package/src/models/parameters.ts +84 -30
- package/src/operations/index.ts +4 -6
- package/src/operations/operations.ts +66 -42
- package/src/operations/providerInstances.ts +477 -0
- package/src/operations/sapMonitors.ts +332 -256
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/providerInstances.ts +115 -0
- package/src/operationsInterfaces/sapMonitors.ts +113 -0
- package/tsconfig.json +4 -4
- package/types/arm-hanaonazure.d.ts +444 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-hanaonazure.js +0 -1702
- package/dist/arm-hanaonazure.js.map +0 -1
- package/dist/arm-hanaonazure.min.js +0 -1
- package/dist/arm-hanaonazure.min.js.map +0 -1
- package/esm/hanaManagementClient.d.ts +0 -21
- package/esm/hanaManagementClient.d.ts.map +0 -1
- package/esm/hanaManagementClient.js +0 -36
- package/esm/hanaManagementClient.js.map +0 -1
- package/esm/hanaManagementClientContext.d.ts +0 -17
- package/esm/hanaManagementClientContext.d.ts.map +0 -1
- package/esm/hanaManagementClientContext.js +0 -57
- package/esm/hanaManagementClientContext.js.map +0 -1
- package/esm/models/hanaInstancesMappers.d.ts +0 -2
- package/esm/models/hanaInstancesMappers.d.ts.map +0 -1
- package/esm/models/hanaInstancesMappers.js +0 -9
- package/esm/models/hanaInstancesMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -661
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -21
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -556
- 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 -9
- 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 -81
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/sapMonitorsMappers.d.ts +0 -2
- package/esm/models/sapMonitorsMappers.d.ts.map +0 -1
- package/esm/models/sapMonitorsMappers.js +0 -9
- package/esm/models/sapMonitorsMappers.js.map +0 -1
- package/esm/operations/hanaInstances.d.ts +0 -244
- package/esm/operations/hanaInstances.d.ts.map +0 -1
- package/esm/operations/hanaInstances.js +0 -514
- package/esm/operations/hanaInstances.js.map +0 -1
- package/esm/operations/index.d.ts +0 -4
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -13
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/sapMonitors.d.ts +0 -138
- package/esm/operations/sapMonitors.d.ts.map +0 -1
- package/esm/operations/sapMonitors.js +0 -260
- package/esm/operations/sapMonitors.js.map +0 -1
- package/src/hanaManagementClientContext.ts +0 -63
- package/src/models/hanaInstancesMappers.ts +0 -25
- package/src/models/operationsMappers.ts +0 -14
- package/src/models/sapMonitorsMappers.ts +0 -23
- package/src/operations/hanaInstances.ts +0 -718
|
@@ -1,138 +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 { HanaManagementClientContext } from "../hanaManagementClientContext";
|
|
5
|
-
/** Class representing a SapMonitors. */
|
|
6
|
-
export declare class SapMonitors {
|
|
7
|
-
private readonly client;
|
|
8
|
-
/**
|
|
9
|
-
* Create a SapMonitors.
|
|
10
|
-
* @param {HanaManagementClientContext} client Reference to the service client.
|
|
11
|
-
*/
|
|
12
|
-
constructor(client: HanaManagementClientContext);
|
|
13
|
-
/**
|
|
14
|
-
* Gets a list of SAP monitors in the specified subscription. The operations returns various
|
|
15
|
-
* properties of each SAP monitor.
|
|
16
|
-
* @summary Gets a list of SAP monitors in the specified subscription.
|
|
17
|
-
* @param [options] The optional parameters
|
|
18
|
-
* @returns Promise<Models.SapMonitorsListResponse>
|
|
19
|
-
*/
|
|
20
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.SapMonitorsListResponse>;
|
|
21
|
-
/**
|
|
22
|
-
* @param callback The callback
|
|
23
|
-
*/
|
|
24
|
-
list(callback: msRest.ServiceCallback<Models.SapMonitorListResult>): void;
|
|
25
|
-
/**
|
|
26
|
-
* @param options The optional parameters
|
|
27
|
-
* @param callback The callback
|
|
28
|
-
*/
|
|
29
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SapMonitorListResult>): void;
|
|
30
|
-
/**
|
|
31
|
-
* Gets properties of a SAP monitor for the specified subscription, resource group, and resource
|
|
32
|
-
* name.
|
|
33
|
-
* @summary Gets properties of a SAP monitor.
|
|
34
|
-
* @param resourceGroupName Name of the resource group.
|
|
35
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
36
|
-
* @param [options] The optional parameters
|
|
37
|
-
* @returns Promise<Models.SapMonitorsGetResponse>
|
|
38
|
-
*/
|
|
39
|
-
get(resourceGroupName: string, sapMonitorName: string, options?: msRest.RequestOptionsBase): Promise<Models.SapMonitorsGetResponse>;
|
|
40
|
-
/**
|
|
41
|
-
* @param resourceGroupName Name of the resource group.
|
|
42
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
43
|
-
* @param callback The callback
|
|
44
|
-
*/
|
|
45
|
-
get(resourceGroupName: string, sapMonitorName: string, callback: msRest.ServiceCallback<Models.SapMonitor>): void;
|
|
46
|
-
/**
|
|
47
|
-
* @param resourceGroupName Name of the resource group.
|
|
48
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
49
|
-
* @param options The optional parameters
|
|
50
|
-
* @param callback The callback
|
|
51
|
-
*/
|
|
52
|
-
get(resourceGroupName: string, sapMonitorName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SapMonitor>): void;
|
|
53
|
-
/**
|
|
54
|
-
* Creates a SAP monitor for the specified subscription, resource group, and resource name.
|
|
55
|
-
* @summary Creates a SAP monitor.
|
|
56
|
-
* @param resourceGroupName Name of the resource group.
|
|
57
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
58
|
-
* @param sapMonitorParameter Request body representing a SAP Monitor
|
|
59
|
-
* @param [options] The optional parameters
|
|
60
|
-
* @returns Promise<Models.SapMonitorsCreateResponse>
|
|
61
|
-
*/
|
|
62
|
-
create(resourceGroupName: string, sapMonitorName: string, sapMonitorParameter: Models.SapMonitor, options?: msRest.RequestOptionsBase): Promise<Models.SapMonitorsCreateResponse>;
|
|
63
|
-
/**
|
|
64
|
-
* Deletes a SAP monitor with the specified subscription, resource group, and monitor name.
|
|
65
|
-
* @summary Deletes a SAP monitor.
|
|
66
|
-
* @param resourceGroupName Name of the resource group.
|
|
67
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
68
|
-
* @param [options] The optional parameters
|
|
69
|
-
* @returns Promise<msRest.RestResponse>
|
|
70
|
-
*/
|
|
71
|
-
deleteMethod(resourceGroupName: string, sapMonitorName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
|
|
72
|
-
/**
|
|
73
|
-
* Patches the Tags field of a SAP monitor for the specified subscription, resource group, and
|
|
74
|
-
* monitor name.
|
|
75
|
-
* @summary Patches the Tags field of a SAP monitor.
|
|
76
|
-
* @param resourceGroupName Name of the resource group.
|
|
77
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
78
|
-
* @param tagsParameter Request body that only contains the new Tags field
|
|
79
|
-
* @param [options] The optional parameters
|
|
80
|
-
* @returns Promise<Models.SapMonitorsUpdateResponse>
|
|
81
|
-
*/
|
|
82
|
-
update(resourceGroupName: string, sapMonitorName: string, tagsParameter: Models.Tags, options?: msRest.RequestOptionsBase): Promise<Models.SapMonitorsUpdateResponse>;
|
|
83
|
-
/**
|
|
84
|
-
* @param resourceGroupName Name of the resource group.
|
|
85
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
86
|
-
* @param tagsParameter Request body that only contains the new Tags field
|
|
87
|
-
* @param callback The callback
|
|
88
|
-
*/
|
|
89
|
-
update(resourceGroupName: string, sapMonitorName: string, tagsParameter: Models.Tags, callback: msRest.ServiceCallback<Models.SapMonitor>): void;
|
|
90
|
-
/**
|
|
91
|
-
* @param resourceGroupName Name of the resource group.
|
|
92
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
93
|
-
* @param tagsParameter Request body that only contains the new Tags field
|
|
94
|
-
* @param options The optional parameters
|
|
95
|
-
* @param callback The callback
|
|
96
|
-
*/
|
|
97
|
-
update(resourceGroupName: string, sapMonitorName: string, tagsParameter: Models.Tags, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SapMonitor>): void;
|
|
98
|
-
/**
|
|
99
|
-
* Creates a SAP monitor for the specified subscription, resource group, and resource name.
|
|
100
|
-
* @summary Creates a SAP monitor.
|
|
101
|
-
* @param resourceGroupName Name of the resource group.
|
|
102
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
103
|
-
* @param sapMonitorParameter Request body representing a SAP Monitor
|
|
104
|
-
* @param [options] The optional parameters
|
|
105
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
106
|
-
*/
|
|
107
|
-
beginCreate(resourceGroupName: string, sapMonitorName: string, sapMonitorParameter: Models.SapMonitor, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
108
|
-
/**
|
|
109
|
-
* Deletes a SAP monitor with the specified subscription, resource group, and monitor name.
|
|
110
|
-
* @summary Deletes a SAP monitor.
|
|
111
|
-
* @param resourceGroupName Name of the resource group.
|
|
112
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
113
|
-
* @param [options] The optional parameters
|
|
114
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
115
|
-
*/
|
|
116
|
-
beginDeleteMethod(resourceGroupName: string, sapMonitorName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
117
|
-
/**
|
|
118
|
-
* Gets a list of SAP monitors in the specified subscription. The operations returns various
|
|
119
|
-
* properties of each SAP monitor.
|
|
120
|
-
* @summary Gets a list of SAP monitors in the specified subscription.
|
|
121
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
122
|
-
* @param [options] The optional parameters
|
|
123
|
-
* @returns Promise<Models.SapMonitorsListNextResponse>
|
|
124
|
-
*/
|
|
125
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.SapMonitorsListNextResponse>;
|
|
126
|
-
/**
|
|
127
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
128
|
-
* @param callback The callback
|
|
129
|
-
*/
|
|
130
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.SapMonitorListResult>): void;
|
|
131
|
-
/**
|
|
132
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
133
|
-
* @param options The optional parameters
|
|
134
|
-
* @param callback The callback
|
|
135
|
-
*/
|
|
136
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SapMonitorListResult>): void;
|
|
137
|
-
}
|
|
138
|
-
//# sourceMappingURL=sapMonitors.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sapMonitors.d.ts","sourceRoot":"","sources":["../../src/operations/sapMonitors.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,260 +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/sapMonitorsMappers";
|
|
13
|
-
import * as Parameters from "../models/parameters";
|
|
14
|
-
/** Class representing a SapMonitors. */
|
|
15
|
-
var SapMonitors = /** @class */ (function () {
|
|
16
|
-
/**
|
|
17
|
-
* Create a SapMonitors.
|
|
18
|
-
* @param {HanaManagementClientContext} client Reference to the service client.
|
|
19
|
-
*/
|
|
20
|
-
function SapMonitors(client) {
|
|
21
|
-
this.client = client;
|
|
22
|
-
}
|
|
23
|
-
SapMonitors.prototype.list = function (options, callback) {
|
|
24
|
-
return this.client.sendOperationRequest({
|
|
25
|
-
options: options
|
|
26
|
-
}, listOperationSpec, callback);
|
|
27
|
-
};
|
|
28
|
-
SapMonitors.prototype.get = function (resourceGroupName, sapMonitorName, options, callback) {
|
|
29
|
-
return this.client.sendOperationRequest({
|
|
30
|
-
resourceGroupName: resourceGroupName,
|
|
31
|
-
sapMonitorName: sapMonitorName,
|
|
32
|
-
options: options
|
|
33
|
-
}, getOperationSpec, callback);
|
|
34
|
-
};
|
|
35
|
-
/**
|
|
36
|
-
* Creates a SAP monitor for the specified subscription, resource group, and resource name.
|
|
37
|
-
* @summary Creates a SAP monitor.
|
|
38
|
-
* @param resourceGroupName Name of the resource group.
|
|
39
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
40
|
-
* @param sapMonitorParameter Request body representing a SAP Monitor
|
|
41
|
-
* @param [options] The optional parameters
|
|
42
|
-
* @returns Promise<Models.SapMonitorsCreateResponse>
|
|
43
|
-
*/
|
|
44
|
-
SapMonitors.prototype.create = function (resourceGroupName, sapMonitorName, sapMonitorParameter, options) {
|
|
45
|
-
return this.beginCreate(resourceGroupName, sapMonitorName, sapMonitorParameter, options)
|
|
46
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
|
47
|
-
};
|
|
48
|
-
/**
|
|
49
|
-
* Deletes a SAP monitor with the specified subscription, resource group, and monitor name.
|
|
50
|
-
* @summary Deletes a SAP monitor.
|
|
51
|
-
* @param resourceGroupName Name of the resource group.
|
|
52
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
53
|
-
* @param [options] The optional parameters
|
|
54
|
-
* @returns Promise<msRest.RestResponse>
|
|
55
|
-
*/
|
|
56
|
-
SapMonitors.prototype.deleteMethod = function (resourceGroupName, sapMonitorName, options) {
|
|
57
|
-
return this.beginDeleteMethod(resourceGroupName, sapMonitorName, options)
|
|
58
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
|
59
|
-
};
|
|
60
|
-
SapMonitors.prototype.update = function (resourceGroupName, sapMonitorName, tagsParameter, options, callback) {
|
|
61
|
-
return this.client.sendOperationRequest({
|
|
62
|
-
resourceGroupName: resourceGroupName,
|
|
63
|
-
sapMonitorName: sapMonitorName,
|
|
64
|
-
tagsParameter: tagsParameter,
|
|
65
|
-
options: options
|
|
66
|
-
}, updateOperationSpec, callback);
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
* Creates a SAP monitor for the specified subscription, resource group, and resource name.
|
|
70
|
-
* @summary Creates a SAP monitor.
|
|
71
|
-
* @param resourceGroupName Name of the resource group.
|
|
72
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
73
|
-
* @param sapMonitorParameter Request body representing a SAP Monitor
|
|
74
|
-
* @param [options] The optional parameters
|
|
75
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
76
|
-
*/
|
|
77
|
-
SapMonitors.prototype.beginCreate = function (resourceGroupName, sapMonitorName, sapMonitorParameter, options) {
|
|
78
|
-
return this.client.sendLRORequest({
|
|
79
|
-
resourceGroupName: resourceGroupName,
|
|
80
|
-
sapMonitorName: sapMonitorName,
|
|
81
|
-
sapMonitorParameter: sapMonitorParameter,
|
|
82
|
-
options: options
|
|
83
|
-
}, beginCreateOperationSpec, options);
|
|
84
|
-
};
|
|
85
|
-
/**
|
|
86
|
-
* Deletes a SAP monitor with the specified subscription, resource group, and monitor name.
|
|
87
|
-
* @summary Deletes a SAP monitor.
|
|
88
|
-
* @param resourceGroupName Name of the resource group.
|
|
89
|
-
* @param sapMonitorName Name of the SAP monitor resource.
|
|
90
|
-
* @param [options] The optional parameters
|
|
91
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
92
|
-
*/
|
|
93
|
-
SapMonitors.prototype.beginDeleteMethod = function (resourceGroupName, sapMonitorName, options) {
|
|
94
|
-
return this.client.sendLRORequest({
|
|
95
|
-
resourceGroupName: resourceGroupName,
|
|
96
|
-
sapMonitorName: sapMonitorName,
|
|
97
|
-
options: options
|
|
98
|
-
}, beginDeleteMethodOperationSpec, options);
|
|
99
|
-
};
|
|
100
|
-
SapMonitors.prototype.listNext = function (nextPageLink, options, callback) {
|
|
101
|
-
return this.client.sendOperationRequest({
|
|
102
|
-
nextPageLink: nextPageLink,
|
|
103
|
-
options: options
|
|
104
|
-
}, listNextOperationSpec, callback);
|
|
105
|
-
};
|
|
106
|
-
return SapMonitors;
|
|
107
|
-
}());
|
|
108
|
-
export { SapMonitors };
|
|
109
|
-
// Operation Specifications
|
|
110
|
-
var serializer = new msRest.Serializer(Mappers);
|
|
111
|
-
var listOperationSpec = {
|
|
112
|
-
httpMethod: "GET",
|
|
113
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.HanaOnAzure/sapMonitors",
|
|
114
|
-
urlParameters: [
|
|
115
|
-
Parameters.subscriptionId
|
|
116
|
-
],
|
|
117
|
-
queryParameters: [
|
|
118
|
-
Parameters.apiVersion
|
|
119
|
-
],
|
|
120
|
-
headerParameters: [
|
|
121
|
-
Parameters.acceptLanguage
|
|
122
|
-
],
|
|
123
|
-
responses: {
|
|
124
|
-
200: {
|
|
125
|
-
bodyMapper: Mappers.SapMonitorListResult
|
|
126
|
-
},
|
|
127
|
-
default: {
|
|
128
|
-
bodyMapper: Mappers.ErrorResponse
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
|
-
serializer: serializer
|
|
132
|
-
};
|
|
133
|
-
var getOperationSpec = {
|
|
134
|
-
httpMethod: "GET",
|
|
135
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/sapMonitors/{sapMonitorName}",
|
|
136
|
-
urlParameters: [
|
|
137
|
-
Parameters.subscriptionId,
|
|
138
|
-
Parameters.resourceGroupName,
|
|
139
|
-
Parameters.sapMonitorName
|
|
140
|
-
],
|
|
141
|
-
queryParameters: [
|
|
142
|
-
Parameters.apiVersion
|
|
143
|
-
],
|
|
144
|
-
headerParameters: [
|
|
145
|
-
Parameters.acceptLanguage
|
|
146
|
-
],
|
|
147
|
-
responses: {
|
|
148
|
-
200: {
|
|
149
|
-
bodyMapper: Mappers.SapMonitor
|
|
150
|
-
},
|
|
151
|
-
default: {
|
|
152
|
-
bodyMapper: Mappers.ErrorResponse
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
serializer: serializer
|
|
156
|
-
};
|
|
157
|
-
var updateOperationSpec = {
|
|
158
|
-
httpMethod: "PATCH",
|
|
159
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/sapMonitors/{sapMonitorName}",
|
|
160
|
-
urlParameters: [
|
|
161
|
-
Parameters.subscriptionId,
|
|
162
|
-
Parameters.resourceGroupName,
|
|
163
|
-
Parameters.sapMonitorName
|
|
164
|
-
],
|
|
165
|
-
queryParameters: [
|
|
166
|
-
Parameters.apiVersion
|
|
167
|
-
],
|
|
168
|
-
headerParameters: [
|
|
169
|
-
Parameters.acceptLanguage
|
|
170
|
-
],
|
|
171
|
-
requestBody: {
|
|
172
|
-
parameterPath: "tagsParameter",
|
|
173
|
-
mapper: tslib_1.__assign({}, Mappers.Tags, { required: true })
|
|
174
|
-
},
|
|
175
|
-
responses: {
|
|
176
|
-
200: {
|
|
177
|
-
bodyMapper: Mappers.SapMonitor
|
|
178
|
-
},
|
|
179
|
-
default: {
|
|
180
|
-
bodyMapper: Mappers.ErrorResponse
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
serializer: serializer
|
|
184
|
-
};
|
|
185
|
-
var beginCreateOperationSpec = {
|
|
186
|
-
httpMethod: "PUT",
|
|
187
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/sapMonitors/{sapMonitorName}",
|
|
188
|
-
urlParameters: [
|
|
189
|
-
Parameters.subscriptionId,
|
|
190
|
-
Parameters.resourceGroupName,
|
|
191
|
-
Parameters.sapMonitorName
|
|
192
|
-
],
|
|
193
|
-
queryParameters: [
|
|
194
|
-
Parameters.apiVersion
|
|
195
|
-
],
|
|
196
|
-
headerParameters: [
|
|
197
|
-
Parameters.acceptLanguage
|
|
198
|
-
],
|
|
199
|
-
requestBody: {
|
|
200
|
-
parameterPath: "sapMonitorParameter",
|
|
201
|
-
mapper: tslib_1.__assign({}, Mappers.SapMonitor, { required: true })
|
|
202
|
-
},
|
|
203
|
-
responses: {
|
|
204
|
-
200: {
|
|
205
|
-
bodyMapper: Mappers.SapMonitor
|
|
206
|
-
},
|
|
207
|
-
201: {
|
|
208
|
-
bodyMapper: Mappers.SapMonitor
|
|
209
|
-
},
|
|
210
|
-
default: {
|
|
211
|
-
bodyMapper: Mappers.ErrorResponse
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
serializer: serializer
|
|
215
|
-
};
|
|
216
|
-
var beginDeleteMethodOperationSpec = {
|
|
217
|
-
httpMethod: "DELETE",
|
|
218
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/sapMonitors/{sapMonitorName}",
|
|
219
|
-
urlParameters: [
|
|
220
|
-
Parameters.subscriptionId,
|
|
221
|
-
Parameters.resourceGroupName,
|
|
222
|
-
Parameters.sapMonitorName
|
|
223
|
-
],
|
|
224
|
-
queryParameters: [
|
|
225
|
-
Parameters.apiVersion
|
|
226
|
-
],
|
|
227
|
-
headerParameters: [
|
|
228
|
-
Parameters.acceptLanguage
|
|
229
|
-
],
|
|
230
|
-
responses: {
|
|
231
|
-
200: {},
|
|
232
|
-
202: {},
|
|
233
|
-
204: {},
|
|
234
|
-
default: {
|
|
235
|
-
bodyMapper: Mappers.ErrorResponse
|
|
236
|
-
}
|
|
237
|
-
},
|
|
238
|
-
serializer: serializer
|
|
239
|
-
};
|
|
240
|
-
var listNextOperationSpec = {
|
|
241
|
-
httpMethod: "GET",
|
|
242
|
-
baseUrl: "https://management.azure.com",
|
|
243
|
-
path: "{nextLink}",
|
|
244
|
-
urlParameters: [
|
|
245
|
-
Parameters.nextPageLink
|
|
246
|
-
],
|
|
247
|
-
headerParameters: [
|
|
248
|
-
Parameters.acceptLanguage
|
|
249
|
-
],
|
|
250
|
-
responses: {
|
|
251
|
-
200: {
|
|
252
|
-
bodyMapper: Mappers.SapMonitorListResult
|
|
253
|
-
},
|
|
254
|
-
default: {
|
|
255
|
-
bodyMapper: Mappers.ErrorResponse
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
serializer: serializer
|
|
259
|
-
};
|
|
260
|
-
//# sourceMappingURL=sapMonitors.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sapMonitors.js","sourceRoot":"","sources":["../../src/operations/sapMonitors.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAG5C,OAAO,KAAK,OAAO,MAAM,8BAA8B,CAAC;AACxD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,wCAAwC;AACxC;IAGE;;;OAGG;IACH,qBAAY,MAAmC;QAC7C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAmBD,0BAAI,GAAJ,UAAK,OAAyF,EAAE,QAA8D;QAC5J,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAA4C,CAAC;IACzD,CAAC;IAyBD,yBAAG,GAAH,UAAI,iBAAyB,EAAE,cAAsB,EAAE,OAA+E,EAAE,QAAoD;QAC1L,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,iBAAiB,mBAAA;YACjB,cAAc,gBAAA;YACd,OAAO,SAAA;SACR,EACD,gBAAgB,EAChB,QAAQ,CAA2C,CAAC;IACxD,CAAC;IAED;;;;;;;;OAQG;IACH,4BAAM,GAAN,UAAO,iBAAyB,EAAE,cAAsB,EAAE,mBAAsC,EAAE,OAAmC;QACnI,OAAO,IAAI,CAAC,WAAW,CAAC,iBAAiB,EAAC,cAAc,EAAC,mBAAmB,EAAC,OAAO,CAAC;aAClF,IAAI,CAAC,UAAA,SAAS,IAAI,OAAA,SAAS,CAAC,iBAAiB,EAAE,EAA7B,CAA6B,CAA8C,CAAC;IACnG,CAAC;IAED;;;;;;;OAOG;IACH,kCAAY,GAAZ,UAAa,iBAAyB,EAAE,cAAsB,EAAE,OAAmC;QACjG,OAAO,IAAI,CAAC,iBAAiB,CAAC,iBAAiB,EAAC,cAAc,EAAC,OAAO,CAAC;aACpE,IAAI,CAAC,UAAA,SAAS,IAAI,OAAA,SAAS,CAAC,iBAAiB,EAAE,EAA7B,CAA6B,CAAC,CAAC;IACtD,CAAC;IA4BD,4BAAM,GAAN,UAAO,iBAAyB,EAAE,cAAsB,EAAE,aAA0B,EAAE,OAA+E,EAAE,QAAoD;QACzN,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,iBAAiB,mBAAA;YACjB,cAAc,gBAAA;YACd,aAAa,eAAA;YACb,OAAO,SAAA;SACR,EACD,mBAAmB,EACnB,QAAQ,CAA8C,CAAC;IAC3D,CAAC;IAED;;;;;;;;OAQG;IACH,iCAAW,GAAX,UAAY,iBAAyB,EAAE,cAAsB,EAAE,mBAAsC,EAAE,OAAmC;QACxI,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAC/B;YACE,iBAAiB,mBAAA;YACjB,cAAc,gBAAA;YACd,mBAAmB,qBAAA;YACnB,OAAO,SAAA;SACR,EACD,wBAAwB,EACxB,OAAO,CAAC,CAAC;IACb,CAAC;IAED;;;;;;;OAOG;IACH,uCAAiB,GAAjB,UAAkB,iBAAyB,EAAE,cAAsB,EAAE,OAAmC;QACtG,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAC/B;YACE,iBAAiB,mBAAA;YACjB,cAAc,gBAAA;YACd,OAAO,SAAA;SACR,EACD,8BAA8B,EAC9B,OAAO,CAAC,CAAC;IACb,CAAC;IAsBD,8BAAQ,GAAR,UAAS,YAAoB,EAAE,OAAyF,EAAE,QAA8D;QACtL,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAAgD,CAAC;IAC7D,CAAC;IACH,kBAAC;AAAD,CAAC,AA7MD,IA6MC;;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,4EAA4E;IAClF,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;KAC1B;IACD,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,oBAAoB;SACzC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,gBAAgB,GAAyB;IAC7C,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,gIAAgI;IACtI,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,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,UAAU;SAC/B;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,mBAAmB,GAAyB;IAChD,UAAU,EAAE,OAAO;IACnB,IAAI,EAAE,gIAAgI;IACtI,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,WAAW,EAAE;QACX,aAAa,EAAE,eAAe;QAC9B,MAAM,uBACD,OAAO,CAAC,IAAI,IACf,QAAQ,EAAE,IAAI,GACf;KACF;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,wBAAwB,GAAyB;IACrD,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,gIAAgI;IACtI,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,WAAW,EAAE;QACX,aAAa,EAAE,qBAAqB;QACpC,MAAM,uBACD,OAAO,CAAC,UAAU,IACrB,QAAQ,EAAE,IAAI,GACf;KACF;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;QACD,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,8BAA8B,GAAyB;IAC3D,UAAU,EAAE,QAAQ;IACpB,IAAI,EAAE,gIAAgI;IACtI,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE,EAAE;QACP,GAAG,EAAE,EAAE;QACP,GAAG,EAAE,EAAE;QACP,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;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,oBAAoB;SACzC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
|
|
@@ -1,63 +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
|
-
|
|
11
|
-
import * as Models from "./models";
|
|
12
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
13
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
14
|
-
|
|
15
|
-
const packageName = "@azure/arm-hanaonazure";
|
|
16
|
-
const packageVersion = "2.2.0";
|
|
17
|
-
|
|
18
|
-
export class HanaManagementClientContext extends msRestAzure.AzureServiceClient {
|
|
19
|
-
credentials: msRest.ServiceClientCredentials;
|
|
20
|
-
subscriptionId: string;
|
|
21
|
-
apiVersion?: string;
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Initializes a new instance of the HanaManagementClient class.
|
|
25
|
-
* @param credentials Credentials needed for the client to connect to Azure.
|
|
26
|
-
* @param subscriptionId Subscription ID which uniquely identify Microsoft Azure subscription. The
|
|
27
|
-
* subscription ID forms part of the URI for every service call.
|
|
28
|
-
* @param [options] The parameter options
|
|
29
|
-
*/
|
|
30
|
-
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.HanaManagementClientOptions) {
|
|
31
|
-
if (credentials == undefined) {
|
|
32
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
33
|
-
}
|
|
34
|
-
if (subscriptionId == undefined) {
|
|
35
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
if (!options) {
|
|
39
|
-
options = {};
|
|
40
|
-
}
|
|
41
|
-
if(!options.userAgent) {
|
|
42
|
-
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
43
|
-
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
super(credentials, options);
|
|
47
|
-
|
|
48
|
-
this.apiVersion = '2017-11-03-preview';
|
|
49
|
-
this.acceptLanguage = 'en-US';
|
|
50
|
-
this.longRunningOperationRetryTimeout = 30;
|
|
51
|
-
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
|
|
52
|
-
this.requestContentType = "application/json; charset=utf-8";
|
|
53
|
-
this.credentials = credentials;
|
|
54
|
-
this.subscriptionId = subscriptionId;
|
|
55
|
-
|
|
56
|
-
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
57
|
-
this.acceptLanguage = options.acceptLanguage;
|
|
58
|
-
}
|
|
59
|
-
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
60
|
-
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
@@ -1,25 +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 license information.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
BaseResource,
|
|
11
|
-
CloudError,
|
|
12
|
-
Disk,
|
|
13
|
-
ErrorResponse,
|
|
14
|
-
HanaInstance,
|
|
15
|
-
HanaInstancesListResult,
|
|
16
|
-
HardwareProfile,
|
|
17
|
-
IpAddress,
|
|
18
|
-
MonitoringDetails,
|
|
19
|
-
NetworkProfile,
|
|
20
|
-
OSProfile,
|
|
21
|
-
Resource,
|
|
22
|
-
SapMonitor,
|
|
23
|
-
StorageProfile,
|
|
24
|
-
Tags
|
|
25
|
-
} from "../models/mappers";
|
|
@@ -1,14 +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 license information.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
Display,
|
|
11
|
-
ErrorResponse,
|
|
12
|
-
Operation,
|
|
13
|
-
OperationList
|
|
14
|
-
} from "../models/mappers";
|
|
@@ -1,23 +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 license information.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
BaseResource,
|
|
11
|
-
Disk,
|
|
12
|
-
ErrorResponse,
|
|
13
|
-
HanaInstance,
|
|
14
|
-
HardwareProfile,
|
|
15
|
-
IpAddress,
|
|
16
|
-
NetworkProfile,
|
|
17
|
-
OSProfile,
|
|
18
|
-
Resource,
|
|
19
|
-
SapMonitor,
|
|
20
|
-
SapMonitorListResult,
|
|
21
|
-
StorageProfile,
|
|
22
|
-
Tags
|
|
23
|
-
} from "../models/mappers";
|