@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,718 +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 msRest from "@azure/ms-rest-js";
|
|
12
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
13
|
-
import * as Models from "../models";
|
|
14
|
-
import * as Mappers from "../models/hanaInstancesMappers";
|
|
15
|
-
import * as Parameters from "../models/parameters";
|
|
16
|
-
import { HanaManagementClientContext } from "../hanaManagementClientContext";
|
|
17
|
-
|
|
18
|
-
/** Class representing a HanaInstances. */
|
|
19
|
-
export class HanaInstances {
|
|
20
|
-
private readonly client: HanaManagementClientContext;
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Create a HanaInstances.
|
|
24
|
-
* @param {HanaManagementClientContext} client Reference to the service client.
|
|
25
|
-
*/
|
|
26
|
-
constructor(client: HanaManagementClientContext) {
|
|
27
|
-
this.client = client;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Gets a list of SAP HANA instances in the specified subscription. The operations returns various
|
|
32
|
-
* properties of each SAP HANA on Azure instance.
|
|
33
|
-
* @summary Gets a list of SAP HANA instances in the specified subscription.
|
|
34
|
-
* @param [options] The optional parameters
|
|
35
|
-
* @returns Promise<Models.HanaInstancesListResponse>
|
|
36
|
-
*/
|
|
37
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListResponse>;
|
|
38
|
-
/**
|
|
39
|
-
* @param callback The callback
|
|
40
|
-
*/
|
|
41
|
-
list(callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
42
|
-
/**
|
|
43
|
-
* @param options The optional parameters
|
|
44
|
-
* @param callback The callback
|
|
45
|
-
*/
|
|
46
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
47
|
-
list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HanaInstancesListResult>, callback?: msRest.ServiceCallback<Models.HanaInstancesListResult>): Promise<Models.HanaInstancesListResponse> {
|
|
48
|
-
return this.client.sendOperationRequest(
|
|
49
|
-
{
|
|
50
|
-
options
|
|
51
|
-
},
|
|
52
|
-
listOperationSpec,
|
|
53
|
-
callback) as Promise<Models.HanaInstancesListResponse>;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* Gets a list of SAP HANA instances in the specified subscription and the resource group. The
|
|
58
|
-
* operations returns various properties of each SAP HANA on Azure instance.
|
|
59
|
-
* @summary Gets a list of SAP HANA instances in the specified subscription and the resource group.
|
|
60
|
-
* @param resourceGroupName Name of the resource group.
|
|
61
|
-
* @param [options] The optional parameters
|
|
62
|
-
* @returns Promise<Models.HanaInstancesListByResourceGroupResponse>
|
|
63
|
-
*/
|
|
64
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListByResourceGroupResponse>;
|
|
65
|
-
/**
|
|
66
|
-
* @param resourceGroupName Name of the resource group.
|
|
67
|
-
* @param callback The callback
|
|
68
|
-
*/
|
|
69
|
-
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
70
|
-
/**
|
|
71
|
-
* @param resourceGroupName Name of the resource group.
|
|
72
|
-
* @param options The optional parameters
|
|
73
|
-
* @param callback The callback
|
|
74
|
-
*/
|
|
75
|
-
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
76
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HanaInstancesListResult>, callback?: msRest.ServiceCallback<Models.HanaInstancesListResult>): Promise<Models.HanaInstancesListByResourceGroupResponse> {
|
|
77
|
-
return this.client.sendOperationRequest(
|
|
78
|
-
{
|
|
79
|
-
resourceGroupName,
|
|
80
|
-
options
|
|
81
|
-
},
|
|
82
|
-
listByResourceGroupOperationSpec,
|
|
83
|
-
callback) as Promise<Models.HanaInstancesListByResourceGroupResponse>;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
/**
|
|
87
|
-
* Gets properties of a SAP HANA instance for the specified subscription, resource group, and
|
|
88
|
-
* instance name.
|
|
89
|
-
* @summary Gets properties of a SAP HANA instance.
|
|
90
|
-
* @param resourceGroupName Name of the resource group.
|
|
91
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
92
|
-
* @param [options] The optional parameters
|
|
93
|
-
* @returns Promise<Models.HanaInstancesGetResponse>
|
|
94
|
-
*/
|
|
95
|
-
get(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesGetResponse>;
|
|
96
|
-
/**
|
|
97
|
-
* @param resourceGroupName Name of the resource group.
|
|
98
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
99
|
-
* @param callback The callback
|
|
100
|
-
*/
|
|
101
|
-
get(resourceGroupName: string, hanaInstanceName: string, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
|
|
102
|
-
/**
|
|
103
|
-
* @param resourceGroupName Name of the resource group.
|
|
104
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
105
|
-
* @param options The optional parameters
|
|
106
|
-
* @param callback The callback
|
|
107
|
-
*/
|
|
108
|
-
get(resourceGroupName: string, hanaInstanceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
|
|
109
|
-
get(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HanaInstance>, callback?: msRest.ServiceCallback<Models.HanaInstance>): Promise<Models.HanaInstancesGetResponse> {
|
|
110
|
-
return this.client.sendOperationRequest(
|
|
111
|
-
{
|
|
112
|
-
resourceGroupName,
|
|
113
|
-
hanaInstanceName,
|
|
114
|
-
options
|
|
115
|
-
},
|
|
116
|
-
getOperationSpec,
|
|
117
|
-
callback) as Promise<Models.HanaInstancesGetResponse>;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* Creates a SAP HANA instance for the specified subscription, resource group, and instance name.
|
|
122
|
-
* @summary Creates a SAP HANA instance.
|
|
123
|
-
* @param resourceGroupName Name of the resource group.
|
|
124
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
125
|
-
* @param hanaInstanceParameter Request body representing a HanaInstance
|
|
126
|
-
* @param [options] The optional parameters
|
|
127
|
-
* @returns Promise<Models.HanaInstancesCreateResponse>
|
|
128
|
-
*/
|
|
129
|
-
create(resourceGroupName: string, hanaInstanceName: string, hanaInstanceParameter: Models.HanaInstance, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesCreateResponse> {
|
|
130
|
-
return this.beginCreate(resourceGroupName,hanaInstanceName,hanaInstanceParameter,options)
|
|
131
|
-
.then(lroPoller => lroPoller.pollUntilFinished()) as Promise<Models.HanaInstancesCreateResponse>;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* Deletes a SAP HANA instance with the specified subscription, resource group, and instance name.
|
|
136
|
-
* @summary Deletes a SAP HANA instance.
|
|
137
|
-
* @param resourceGroupName Name of the resource group.
|
|
138
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
139
|
-
* @param [options] The optional parameters
|
|
140
|
-
* @returns Promise<msRest.RestResponse>
|
|
141
|
-
*/
|
|
142
|
-
deleteMethod(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {
|
|
143
|
-
return this.beginDeleteMethod(resourceGroupName,hanaInstanceName,options)
|
|
144
|
-
.then(lroPoller => lroPoller.pollUntilFinished());
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* Patches the Tags field of a SAP HANA instance for the specified subscription, resource group,
|
|
149
|
-
* and instance name.
|
|
150
|
-
* @summary Patches the Tags field of a SAP HANA instance.
|
|
151
|
-
* @param resourceGroupName Name of the resource group.
|
|
152
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
153
|
-
* @param tagsParameter Request body that only contains the new Tags field
|
|
154
|
-
* @param [options] The optional parameters
|
|
155
|
-
* @returns Promise<Models.HanaInstancesUpdateResponse>
|
|
156
|
-
*/
|
|
157
|
-
update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesUpdateResponse>;
|
|
158
|
-
/**
|
|
159
|
-
* @param resourceGroupName Name of the resource group.
|
|
160
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
161
|
-
* @param tagsParameter Request body that only contains the new Tags field
|
|
162
|
-
* @param callback The callback
|
|
163
|
-
*/
|
|
164
|
-
update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
|
|
165
|
-
/**
|
|
166
|
-
* @param resourceGroupName Name of the resource group.
|
|
167
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
168
|
-
* @param tagsParameter Request body that only contains the new Tags field
|
|
169
|
-
* @param options The optional parameters
|
|
170
|
-
* @param callback The callback
|
|
171
|
-
*/
|
|
172
|
-
update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
|
|
173
|
-
update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HanaInstance>, callback?: msRest.ServiceCallback<Models.HanaInstance>): Promise<Models.HanaInstancesUpdateResponse> {
|
|
174
|
-
return this.client.sendOperationRequest(
|
|
175
|
-
{
|
|
176
|
-
resourceGroupName,
|
|
177
|
-
hanaInstanceName,
|
|
178
|
-
tagsParameter,
|
|
179
|
-
options
|
|
180
|
-
},
|
|
181
|
-
updateOperationSpec,
|
|
182
|
-
callback) as Promise<Models.HanaInstancesUpdateResponse>;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* The operation to restart a SAP HANA instance.
|
|
187
|
-
* @param resourceGroupName Name of the resource group.
|
|
188
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
189
|
-
* @param [options] The optional parameters
|
|
190
|
-
* @returns Promise<msRest.RestResponse>
|
|
191
|
-
*/
|
|
192
|
-
restart(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {
|
|
193
|
-
return this.beginRestart(resourceGroupName,hanaInstanceName,options)
|
|
194
|
-
.then(lroPoller => lroPoller.pollUntilFinished());
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
/**
|
|
198
|
-
* The operation to start a SAP HANA instance.
|
|
199
|
-
* @param resourceGroupName Name of the resource group.
|
|
200
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
201
|
-
* @param [options] The optional parameters
|
|
202
|
-
* @returns Promise<msRest.RestResponse>
|
|
203
|
-
*/
|
|
204
|
-
start(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {
|
|
205
|
-
return this.beginStart(resourceGroupName,hanaInstanceName,options)
|
|
206
|
-
.then(lroPoller => lroPoller.pollUntilFinished());
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
* The operation to shutdown a SAP HANA instance.
|
|
211
|
-
* @param resourceGroupName Name of the resource group.
|
|
212
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
213
|
-
* @param [options] The optional parameters
|
|
214
|
-
* @returns Promise<msRest.RestResponse>
|
|
215
|
-
*/
|
|
216
|
-
shutdown(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {
|
|
217
|
-
return this.beginShutdown(resourceGroupName,hanaInstanceName,options)
|
|
218
|
-
.then(lroPoller => lroPoller.pollUntilFinished());
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
/**
|
|
222
|
-
* The operation to add a monitor to an SAP HANA instance.
|
|
223
|
-
* @param resourceGroupName Name of the resource group.
|
|
224
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
225
|
-
* @param monitoringParameter Request body that only contains monitoring attributes
|
|
226
|
-
* @param [options] The optional parameters
|
|
227
|
-
* @returns Promise<msRest.RestResponse>
|
|
228
|
-
*/
|
|
229
|
-
enableMonitoring(resourceGroupName: string, hanaInstanceName: string, monitoringParameter: Models.MonitoringDetails, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse> {
|
|
230
|
-
return this.beginEnableMonitoring(resourceGroupName,hanaInstanceName,monitoringParameter,options)
|
|
231
|
-
.then(lroPoller => lroPoller.pollUntilFinished());
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/**
|
|
235
|
-
* Creates a SAP HANA instance for the specified subscription, resource group, and instance name.
|
|
236
|
-
* @summary Creates a SAP HANA instance.
|
|
237
|
-
* @param resourceGroupName Name of the resource group.
|
|
238
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
239
|
-
* @param hanaInstanceParameter Request body representing a HanaInstance
|
|
240
|
-
* @param [options] The optional parameters
|
|
241
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
242
|
-
*/
|
|
243
|
-
beginCreate(resourceGroupName: string, hanaInstanceName: string, hanaInstanceParameter: Models.HanaInstance, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {
|
|
244
|
-
return this.client.sendLRORequest(
|
|
245
|
-
{
|
|
246
|
-
resourceGroupName,
|
|
247
|
-
hanaInstanceName,
|
|
248
|
-
hanaInstanceParameter,
|
|
249
|
-
options
|
|
250
|
-
},
|
|
251
|
-
beginCreateOperationSpec,
|
|
252
|
-
options);
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* Deletes a SAP HANA instance with the specified subscription, resource group, and instance name.
|
|
257
|
-
* @summary Deletes a SAP HANA instance.
|
|
258
|
-
* @param resourceGroupName Name of the resource group.
|
|
259
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
260
|
-
* @param [options] The optional parameters
|
|
261
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
262
|
-
*/
|
|
263
|
-
beginDeleteMethod(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {
|
|
264
|
-
return this.client.sendLRORequest(
|
|
265
|
-
{
|
|
266
|
-
resourceGroupName,
|
|
267
|
-
hanaInstanceName,
|
|
268
|
-
options
|
|
269
|
-
},
|
|
270
|
-
beginDeleteMethodOperationSpec,
|
|
271
|
-
options);
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
/**
|
|
275
|
-
* The operation to restart a SAP HANA instance.
|
|
276
|
-
* @param resourceGroupName Name of the resource group.
|
|
277
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
278
|
-
* @param [options] The optional parameters
|
|
279
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
280
|
-
*/
|
|
281
|
-
beginRestart(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {
|
|
282
|
-
return this.client.sendLRORequest(
|
|
283
|
-
{
|
|
284
|
-
resourceGroupName,
|
|
285
|
-
hanaInstanceName,
|
|
286
|
-
options
|
|
287
|
-
},
|
|
288
|
-
beginRestartOperationSpec,
|
|
289
|
-
options);
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
/**
|
|
293
|
-
* The operation to start a SAP HANA instance.
|
|
294
|
-
* @param resourceGroupName Name of the resource group.
|
|
295
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
296
|
-
* @param [options] The optional parameters
|
|
297
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
298
|
-
*/
|
|
299
|
-
beginStart(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {
|
|
300
|
-
return this.client.sendLRORequest(
|
|
301
|
-
{
|
|
302
|
-
resourceGroupName,
|
|
303
|
-
hanaInstanceName,
|
|
304
|
-
options
|
|
305
|
-
},
|
|
306
|
-
beginStartOperationSpec,
|
|
307
|
-
options);
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
/**
|
|
311
|
-
* The operation to shutdown a SAP HANA instance.
|
|
312
|
-
* @param resourceGroupName Name of the resource group.
|
|
313
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
314
|
-
* @param [options] The optional parameters
|
|
315
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
316
|
-
*/
|
|
317
|
-
beginShutdown(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {
|
|
318
|
-
return this.client.sendLRORequest(
|
|
319
|
-
{
|
|
320
|
-
resourceGroupName,
|
|
321
|
-
hanaInstanceName,
|
|
322
|
-
options
|
|
323
|
-
},
|
|
324
|
-
beginShutdownOperationSpec,
|
|
325
|
-
options);
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
/**
|
|
329
|
-
* The operation to add a monitor to an SAP HANA instance.
|
|
330
|
-
* @param resourceGroupName Name of the resource group.
|
|
331
|
-
* @param hanaInstanceName Name of the SAP HANA on Azure instance.
|
|
332
|
-
* @param monitoringParameter Request body that only contains monitoring attributes
|
|
333
|
-
* @param [options] The optional parameters
|
|
334
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
335
|
-
*/
|
|
336
|
-
beginEnableMonitoring(resourceGroupName: string, hanaInstanceName: string, monitoringParameter: Models.MonitoringDetails, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller> {
|
|
337
|
-
return this.client.sendLRORequest(
|
|
338
|
-
{
|
|
339
|
-
resourceGroupName,
|
|
340
|
-
hanaInstanceName,
|
|
341
|
-
monitoringParameter,
|
|
342
|
-
options
|
|
343
|
-
},
|
|
344
|
-
beginEnableMonitoringOperationSpec,
|
|
345
|
-
options);
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
/**
|
|
349
|
-
* Gets a list of SAP HANA instances in the specified subscription. The operations returns various
|
|
350
|
-
* properties of each SAP HANA on Azure instance.
|
|
351
|
-
* @summary Gets a list of SAP HANA instances in the specified subscription.
|
|
352
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
353
|
-
* @param [options] The optional parameters
|
|
354
|
-
* @returns Promise<Models.HanaInstancesListNextResponse>
|
|
355
|
-
*/
|
|
356
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListNextResponse>;
|
|
357
|
-
/**
|
|
358
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
359
|
-
* @param callback The callback
|
|
360
|
-
*/
|
|
361
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
362
|
-
/**
|
|
363
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
364
|
-
* @param options The optional parameters
|
|
365
|
-
* @param callback The callback
|
|
366
|
-
*/
|
|
367
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
368
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HanaInstancesListResult>, callback?: msRest.ServiceCallback<Models.HanaInstancesListResult>): Promise<Models.HanaInstancesListNextResponse> {
|
|
369
|
-
return this.client.sendOperationRequest(
|
|
370
|
-
{
|
|
371
|
-
nextPageLink,
|
|
372
|
-
options
|
|
373
|
-
},
|
|
374
|
-
listNextOperationSpec,
|
|
375
|
-
callback) as Promise<Models.HanaInstancesListNextResponse>;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
/**
|
|
379
|
-
* Gets a list of SAP HANA instances in the specified subscription and the resource group. The
|
|
380
|
-
* operations returns various properties of each SAP HANA on Azure instance.
|
|
381
|
-
* @summary Gets a list of SAP HANA instances in the specified subscription and the resource group.
|
|
382
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
383
|
-
* @param [options] The optional parameters
|
|
384
|
-
* @returns Promise<Models.HanaInstancesListByResourceGroupNextResponse>
|
|
385
|
-
*/
|
|
386
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListByResourceGroupNextResponse>;
|
|
387
|
-
/**
|
|
388
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
389
|
-
* @param callback The callback
|
|
390
|
-
*/
|
|
391
|
-
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
392
|
-
/**
|
|
393
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
394
|
-
* @param options The optional parameters
|
|
395
|
-
* @param callback The callback
|
|
396
|
-
*/
|
|
397
|
-
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
|
|
398
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.HanaInstancesListResult>, callback?: msRest.ServiceCallback<Models.HanaInstancesListResult>): Promise<Models.HanaInstancesListByResourceGroupNextResponse> {
|
|
399
|
-
return this.client.sendOperationRequest(
|
|
400
|
-
{
|
|
401
|
-
nextPageLink,
|
|
402
|
-
options
|
|
403
|
-
},
|
|
404
|
-
listByResourceGroupNextOperationSpec,
|
|
405
|
-
callback) as Promise<Models.HanaInstancesListByResourceGroupNextResponse>;
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
// Operation Specifications
|
|
410
|
-
const serializer = new msRest.Serializer(Mappers);
|
|
411
|
-
const listOperationSpec: msRest.OperationSpec = {
|
|
412
|
-
httpMethod: "GET",
|
|
413
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.HanaOnAzure/hanaInstances",
|
|
414
|
-
urlParameters: [
|
|
415
|
-
Parameters.subscriptionId
|
|
416
|
-
],
|
|
417
|
-
queryParameters: [
|
|
418
|
-
Parameters.apiVersion
|
|
419
|
-
],
|
|
420
|
-
headerParameters: [
|
|
421
|
-
Parameters.acceptLanguage
|
|
422
|
-
],
|
|
423
|
-
responses: {
|
|
424
|
-
200: {
|
|
425
|
-
bodyMapper: Mappers.HanaInstancesListResult
|
|
426
|
-
},
|
|
427
|
-
default: {
|
|
428
|
-
bodyMapper: Mappers.ErrorResponse
|
|
429
|
-
}
|
|
430
|
-
},
|
|
431
|
-
serializer
|
|
432
|
-
};
|
|
433
|
-
|
|
434
|
-
const listByResourceGroupOperationSpec: msRest.OperationSpec = {
|
|
435
|
-
httpMethod: "GET",
|
|
436
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances",
|
|
437
|
-
urlParameters: [
|
|
438
|
-
Parameters.subscriptionId,
|
|
439
|
-
Parameters.resourceGroupName
|
|
440
|
-
],
|
|
441
|
-
queryParameters: [
|
|
442
|
-
Parameters.apiVersion
|
|
443
|
-
],
|
|
444
|
-
headerParameters: [
|
|
445
|
-
Parameters.acceptLanguage
|
|
446
|
-
],
|
|
447
|
-
responses: {
|
|
448
|
-
200: {
|
|
449
|
-
bodyMapper: Mappers.HanaInstancesListResult
|
|
450
|
-
},
|
|
451
|
-
default: {
|
|
452
|
-
bodyMapper: Mappers.ErrorResponse
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
|
-
serializer
|
|
456
|
-
};
|
|
457
|
-
|
|
458
|
-
const getOperationSpec: msRest.OperationSpec = {
|
|
459
|
-
httpMethod: "GET",
|
|
460
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}",
|
|
461
|
-
urlParameters: [
|
|
462
|
-
Parameters.subscriptionId,
|
|
463
|
-
Parameters.resourceGroupName,
|
|
464
|
-
Parameters.hanaInstanceName
|
|
465
|
-
],
|
|
466
|
-
queryParameters: [
|
|
467
|
-
Parameters.apiVersion
|
|
468
|
-
],
|
|
469
|
-
headerParameters: [
|
|
470
|
-
Parameters.acceptLanguage
|
|
471
|
-
],
|
|
472
|
-
responses: {
|
|
473
|
-
200: {
|
|
474
|
-
bodyMapper: Mappers.HanaInstance
|
|
475
|
-
},
|
|
476
|
-
default: {
|
|
477
|
-
bodyMapper: Mappers.ErrorResponse
|
|
478
|
-
}
|
|
479
|
-
},
|
|
480
|
-
serializer
|
|
481
|
-
};
|
|
482
|
-
|
|
483
|
-
const updateOperationSpec: msRest.OperationSpec = {
|
|
484
|
-
httpMethod: "PATCH",
|
|
485
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}",
|
|
486
|
-
urlParameters: [
|
|
487
|
-
Parameters.subscriptionId,
|
|
488
|
-
Parameters.resourceGroupName,
|
|
489
|
-
Parameters.hanaInstanceName
|
|
490
|
-
],
|
|
491
|
-
queryParameters: [
|
|
492
|
-
Parameters.apiVersion
|
|
493
|
-
],
|
|
494
|
-
headerParameters: [
|
|
495
|
-
Parameters.acceptLanguage
|
|
496
|
-
],
|
|
497
|
-
requestBody: {
|
|
498
|
-
parameterPath: "tagsParameter",
|
|
499
|
-
mapper: {
|
|
500
|
-
...Mappers.Tags,
|
|
501
|
-
required: true
|
|
502
|
-
}
|
|
503
|
-
},
|
|
504
|
-
responses: {
|
|
505
|
-
200: {
|
|
506
|
-
bodyMapper: Mappers.HanaInstance
|
|
507
|
-
},
|
|
508
|
-
default: {
|
|
509
|
-
bodyMapper: Mappers.ErrorResponse
|
|
510
|
-
}
|
|
511
|
-
},
|
|
512
|
-
serializer
|
|
513
|
-
};
|
|
514
|
-
|
|
515
|
-
const beginCreateOperationSpec: msRest.OperationSpec = {
|
|
516
|
-
httpMethod: "PUT",
|
|
517
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}",
|
|
518
|
-
urlParameters: [
|
|
519
|
-
Parameters.subscriptionId,
|
|
520
|
-
Parameters.resourceGroupName,
|
|
521
|
-
Parameters.hanaInstanceName
|
|
522
|
-
],
|
|
523
|
-
queryParameters: [
|
|
524
|
-
Parameters.apiVersion
|
|
525
|
-
],
|
|
526
|
-
headerParameters: [
|
|
527
|
-
Parameters.acceptLanguage
|
|
528
|
-
],
|
|
529
|
-
requestBody: {
|
|
530
|
-
parameterPath: "hanaInstanceParameter",
|
|
531
|
-
mapper: {
|
|
532
|
-
...Mappers.HanaInstance,
|
|
533
|
-
required: true
|
|
534
|
-
}
|
|
535
|
-
},
|
|
536
|
-
responses: {
|
|
537
|
-
200: {
|
|
538
|
-
bodyMapper: Mappers.HanaInstance
|
|
539
|
-
},
|
|
540
|
-
201: {
|
|
541
|
-
bodyMapper: Mappers.HanaInstance
|
|
542
|
-
},
|
|
543
|
-
default: {
|
|
544
|
-
bodyMapper: Mappers.ErrorResponse
|
|
545
|
-
}
|
|
546
|
-
},
|
|
547
|
-
serializer
|
|
548
|
-
};
|
|
549
|
-
|
|
550
|
-
const beginDeleteMethodOperationSpec: msRest.OperationSpec = {
|
|
551
|
-
httpMethod: "DELETE",
|
|
552
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}",
|
|
553
|
-
urlParameters: [
|
|
554
|
-
Parameters.subscriptionId,
|
|
555
|
-
Parameters.resourceGroupName,
|
|
556
|
-
Parameters.hanaInstanceName
|
|
557
|
-
],
|
|
558
|
-
queryParameters: [
|
|
559
|
-
Parameters.apiVersion
|
|
560
|
-
],
|
|
561
|
-
headerParameters: [
|
|
562
|
-
Parameters.acceptLanguage
|
|
563
|
-
],
|
|
564
|
-
responses: {
|
|
565
|
-
200: {},
|
|
566
|
-
202: {},
|
|
567
|
-
204: {},
|
|
568
|
-
default: {
|
|
569
|
-
bodyMapper: Mappers.ErrorResponse
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
serializer
|
|
573
|
-
};
|
|
574
|
-
|
|
575
|
-
const beginRestartOperationSpec: msRest.OperationSpec = {
|
|
576
|
-
httpMethod: "POST",
|
|
577
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}/restart",
|
|
578
|
-
urlParameters: [
|
|
579
|
-
Parameters.subscriptionId,
|
|
580
|
-
Parameters.resourceGroupName,
|
|
581
|
-
Parameters.hanaInstanceName
|
|
582
|
-
],
|
|
583
|
-
queryParameters: [
|
|
584
|
-
Parameters.apiVersion
|
|
585
|
-
],
|
|
586
|
-
headerParameters: [
|
|
587
|
-
Parameters.acceptLanguage
|
|
588
|
-
],
|
|
589
|
-
responses: {
|
|
590
|
-
200: {},
|
|
591
|
-
202: {},
|
|
592
|
-
default: {
|
|
593
|
-
bodyMapper: Mappers.ErrorResponse
|
|
594
|
-
}
|
|
595
|
-
},
|
|
596
|
-
serializer
|
|
597
|
-
};
|
|
598
|
-
|
|
599
|
-
const beginStartOperationSpec: msRest.OperationSpec = {
|
|
600
|
-
httpMethod: "POST",
|
|
601
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}/start",
|
|
602
|
-
urlParameters: [
|
|
603
|
-
Parameters.subscriptionId,
|
|
604
|
-
Parameters.resourceGroupName,
|
|
605
|
-
Parameters.hanaInstanceName
|
|
606
|
-
],
|
|
607
|
-
queryParameters: [
|
|
608
|
-
Parameters.apiVersion
|
|
609
|
-
],
|
|
610
|
-
headerParameters: [
|
|
611
|
-
Parameters.acceptLanguage
|
|
612
|
-
],
|
|
613
|
-
responses: {
|
|
614
|
-
200: {},
|
|
615
|
-
202: {},
|
|
616
|
-
default: {
|
|
617
|
-
bodyMapper: Mappers.ErrorResponse
|
|
618
|
-
}
|
|
619
|
-
},
|
|
620
|
-
serializer
|
|
621
|
-
};
|
|
622
|
-
|
|
623
|
-
const beginShutdownOperationSpec: msRest.OperationSpec = {
|
|
624
|
-
httpMethod: "POST",
|
|
625
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}/shutdown",
|
|
626
|
-
urlParameters: [
|
|
627
|
-
Parameters.subscriptionId,
|
|
628
|
-
Parameters.resourceGroupName,
|
|
629
|
-
Parameters.hanaInstanceName
|
|
630
|
-
],
|
|
631
|
-
queryParameters: [
|
|
632
|
-
Parameters.apiVersion
|
|
633
|
-
],
|
|
634
|
-
headerParameters: [
|
|
635
|
-
Parameters.acceptLanguage
|
|
636
|
-
],
|
|
637
|
-
responses: {
|
|
638
|
-
200: {},
|
|
639
|
-
202: {},
|
|
640
|
-
default: {
|
|
641
|
-
bodyMapper: Mappers.ErrorResponse
|
|
642
|
-
}
|
|
643
|
-
},
|
|
644
|
-
serializer
|
|
645
|
-
};
|
|
646
|
-
|
|
647
|
-
const beginEnableMonitoringOperationSpec: msRest.OperationSpec = {
|
|
648
|
-
httpMethod: "POST",
|
|
649
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HanaOnAzure/hanaInstances/{hanaInstanceName}/monitoring",
|
|
650
|
-
urlParameters: [
|
|
651
|
-
Parameters.subscriptionId,
|
|
652
|
-
Parameters.resourceGroupName,
|
|
653
|
-
Parameters.hanaInstanceName
|
|
654
|
-
],
|
|
655
|
-
queryParameters: [
|
|
656
|
-
Parameters.apiVersion
|
|
657
|
-
],
|
|
658
|
-
headerParameters: [
|
|
659
|
-
Parameters.acceptLanguage
|
|
660
|
-
],
|
|
661
|
-
requestBody: {
|
|
662
|
-
parameterPath: "monitoringParameter",
|
|
663
|
-
mapper: {
|
|
664
|
-
...Mappers.MonitoringDetails,
|
|
665
|
-
required: true
|
|
666
|
-
}
|
|
667
|
-
},
|
|
668
|
-
responses: {
|
|
669
|
-
200: {},
|
|
670
|
-
202: {},
|
|
671
|
-
default: {
|
|
672
|
-
bodyMapper: Mappers.CloudError
|
|
673
|
-
}
|
|
674
|
-
},
|
|
675
|
-
serializer
|
|
676
|
-
};
|
|
677
|
-
|
|
678
|
-
const listNextOperationSpec: msRest.OperationSpec = {
|
|
679
|
-
httpMethod: "GET",
|
|
680
|
-
baseUrl: "https://management.azure.com",
|
|
681
|
-
path: "{nextLink}",
|
|
682
|
-
urlParameters: [
|
|
683
|
-
Parameters.nextPageLink
|
|
684
|
-
],
|
|
685
|
-
headerParameters: [
|
|
686
|
-
Parameters.acceptLanguage
|
|
687
|
-
],
|
|
688
|
-
responses: {
|
|
689
|
-
200: {
|
|
690
|
-
bodyMapper: Mappers.HanaInstancesListResult
|
|
691
|
-
},
|
|
692
|
-
default: {
|
|
693
|
-
bodyMapper: Mappers.ErrorResponse
|
|
694
|
-
}
|
|
695
|
-
},
|
|
696
|
-
serializer
|
|
697
|
-
};
|
|
698
|
-
|
|
699
|
-
const listByResourceGroupNextOperationSpec: msRest.OperationSpec = {
|
|
700
|
-
httpMethod: "GET",
|
|
701
|
-
baseUrl: "https://management.azure.com",
|
|
702
|
-
path: "{nextLink}",
|
|
703
|
-
urlParameters: [
|
|
704
|
-
Parameters.nextPageLink
|
|
705
|
-
],
|
|
706
|
-
headerParameters: [
|
|
707
|
-
Parameters.acceptLanguage
|
|
708
|
-
],
|
|
709
|
-
responses: {
|
|
710
|
-
200: {
|
|
711
|
-
bodyMapper: Mappers.HanaInstancesListResult
|
|
712
|
-
},
|
|
713
|
-
default: {
|
|
714
|
-
bodyMapper: Mappers.ErrorResponse
|
|
715
|
-
}
|
|
716
|
-
},
|
|
717
|
-
serializer
|
|
718
|
-
};
|