@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.
Files changed (145) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +72 -72
  5. package/dist/index.js +1333 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.min.js +1 -0
  8. package/dist/index.min.js.map +1 -0
  9. package/dist-esm/src/hanaManagementClient.d.ts +21 -0
  10. package/dist-esm/src/hanaManagementClient.d.ts.map +1 -0
  11. package/dist-esm/src/hanaManagementClient.js +54 -0
  12. package/dist-esm/src/hanaManagementClient.js.map +1 -0
  13. package/dist-esm/src/index.d.ts +5 -0
  14. package/dist-esm/src/index.d.ts.map +1 -0
  15. package/dist-esm/src/index.js +12 -0
  16. package/dist-esm/src/index.js.map +1 -0
  17. package/dist-esm/src/lroImpl.d.ts +16 -0
  18. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  19. package/dist-esm/src/lroImpl.js +29 -0
  20. package/dist-esm/src/lroImpl.js.map +1 -0
  21. package/dist-esm/src/models/index.d.ts +260 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +19 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +15 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/dist-esm/src/models/mappers.js +330 -0
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +14 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/dist-esm/src/models/parameters.js +116 -0
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/index.d.ts +4 -0
  34. package/dist-esm/src/operations/index.d.ts.map +1 -0
  35. package/dist-esm/src/operations/index.js +11 -0
  36. package/dist-esm/src/operations/index.js.map +1 -0
  37. package/dist-esm/src/operations/operations.d.ts +26 -0
  38. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  39. package/dist-esm/src/operations/operations.js +90 -0
  40. package/dist-esm/src/operations/operations.js.map +1 -0
  41. package/dist-esm/src/operations/providerInstances.d.ts +88 -0
  42. package/dist-esm/src/operations/providerInstances.d.ts.map +1 -0
  43. package/dist-esm/src/operations/providerInstances.js +344 -0
  44. package/dist-esm/src/operations/providerInstances.js.map +1 -0
  45. package/dist-esm/src/operations/sapMonitors.d.ts +81 -0
  46. package/dist-esm/src/operations/sapMonitors.d.ts.map +1 -0
  47. package/dist-esm/src/operations/sapMonitors.js +346 -0
  48. package/dist-esm/src/operations/sapMonitors.js.map +1 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  50. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  51. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  52. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  53. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  54. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  55. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  56. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/providerInstances.d.ts +62 -0
  58. package/dist-esm/src/operationsInterfaces/providerInstances.d.ts.map +1 -0
  59. package/dist-esm/src/operationsInterfaces/providerInstances.js +9 -0
  60. package/dist-esm/src/operationsInterfaces/providerInstances.js.map +1 -0
  61. package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts +59 -0
  62. package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts.map +1 -0
  63. package/dist-esm/src/operationsInterfaces/sapMonitors.js +9 -0
  64. package/dist-esm/src/operationsInterfaces/sapMonitors.js.map +1 -0
  65. package/dist-esm/test/sampleTest.d.ts +2 -0
  66. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  67. package/dist-esm/test/sampleTest.js +40 -0
  68. package/dist-esm/test/sampleTest.js.map +1 -0
  69. package/package.json +65 -31
  70. package/review/arm-hanaonazure.api.md +260 -0
  71. package/rollup.config.js +181 -30
  72. package/src/hanaManagementClient.ts +75 -34
  73. package/src/index.ts +12 -0
  74. package/src/lroImpl.ts +34 -0
  75. package/src/models/index.ts +227 -638
  76. package/src/models/mappers.ts +138 -367
  77. package/src/models/parameters.ts +84 -30
  78. package/src/operations/index.ts +4 -6
  79. package/src/operations/operations.ts +66 -42
  80. package/src/operations/providerInstances.ts +477 -0
  81. package/src/operations/sapMonitors.ts +332 -256
  82. package/src/operationsInterfaces/index.ts +11 -0
  83. package/src/operationsInterfaces/operations.ts +22 -0
  84. package/src/operationsInterfaces/providerInstances.ts +115 -0
  85. package/src/operationsInterfaces/sapMonitors.ts +113 -0
  86. package/tsconfig.json +4 -4
  87. package/types/arm-hanaonazure.d.ts +444 -0
  88. package/types/tsdoc-metadata.json +11 -0
  89. package/dist/arm-hanaonazure.js +0 -1702
  90. package/dist/arm-hanaonazure.js.map +0 -1
  91. package/dist/arm-hanaonazure.min.js +0 -1
  92. package/dist/arm-hanaonazure.min.js.map +0 -1
  93. package/esm/hanaManagementClient.d.ts +0 -21
  94. package/esm/hanaManagementClient.d.ts.map +0 -1
  95. package/esm/hanaManagementClient.js +0 -36
  96. package/esm/hanaManagementClient.js.map +0 -1
  97. package/esm/hanaManagementClientContext.d.ts +0 -17
  98. package/esm/hanaManagementClientContext.d.ts.map +0 -1
  99. package/esm/hanaManagementClientContext.js +0 -57
  100. package/esm/hanaManagementClientContext.js.map +0 -1
  101. package/esm/models/hanaInstancesMappers.d.ts +0 -2
  102. package/esm/models/hanaInstancesMappers.d.ts.map +0 -1
  103. package/esm/models/hanaInstancesMappers.js +0 -9
  104. package/esm/models/hanaInstancesMappers.js.map +0 -1
  105. package/esm/models/index.d.ts +0 -661
  106. package/esm/models/index.d.ts.map +0 -1
  107. package/esm/models/index.js +0 -8
  108. package/esm/models/index.js.map +0 -1
  109. package/esm/models/mappers.d.ts +0 -21
  110. package/esm/models/mappers.d.ts.map +0 -1
  111. package/esm/models/mappers.js +0 -556
  112. package/esm/models/mappers.js.map +0 -1
  113. package/esm/models/operationsMappers.d.ts +0 -2
  114. package/esm/models/operationsMappers.d.ts.map +0 -1
  115. package/esm/models/operationsMappers.js +0 -9
  116. package/esm/models/operationsMappers.js.map +0 -1
  117. package/esm/models/parameters.d.ts +0 -9
  118. package/esm/models/parameters.d.ts.map +0 -1
  119. package/esm/models/parameters.js +0 -81
  120. package/esm/models/parameters.js.map +0 -1
  121. package/esm/models/sapMonitorsMappers.d.ts +0 -2
  122. package/esm/models/sapMonitorsMappers.d.ts.map +0 -1
  123. package/esm/models/sapMonitorsMappers.js +0 -9
  124. package/esm/models/sapMonitorsMappers.js.map +0 -1
  125. package/esm/operations/hanaInstances.d.ts +0 -244
  126. package/esm/operations/hanaInstances.d.ts.map +0 -1
  127. package/esm/operations/hanaInstances.js +0 -514
  128. package/esm/operations/hanaInstances.js.map +0 -1
  129. package/esm/operations/index.d.ts +0 -4
  130. package/esm/operations/index.d.ts.map +0 -1
  131. package/esm/operations/index.js +0 -13
  132. package/esm/operations/index.js.map +0 -1
  133. package/esm/operations/operations.d.ts +0 -28
  134. package/esm/operations/operations.d.ts.map +0 -1
  135. package/esm/operations/operations.js +0 -51
  136. package/esm/operations/operations.js.map +0 -1
  137. package/esm/operations/sapMonitors.d.ts +0 -138
  138. package/esm/operations/sapMonitors.d.ts.map +0 -1
  139. package/esm/operations/sapMonitors.js +0 -260
  140. package/esm/operations/sapMonitors.js.map +0 -1
  141. package/src/hanaManagementClientContext.ts +0 -63
  142. package/src/models/hanaInstancesMappers.ts +0 -25
  143. package/src/models/operationsMappers.ts +0 -14
  144. package/src/models/sapMonitorsMappers.ts +0 -23
  145. package/src/operations/hanaInstances.ts +0 -718
@@ -1,81 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- export var acceptLanguage = {
11
- parameterPath: "acceptLanguage",
12
- mapper: {
13
- serializedName: "accept-language",
14
- defaultValue: 'en-US',
15
- type: {
16
- name: "String"
17
- }
18
- }
19
- };
20
- export var apiVersion = {
21
- parameterPath: "apiVersion",
22
- mapper: {
23
- required: true,
24
- serializedName: "api-version",
25
- type: {
26
- name: "String"
27
- }
28
- }
29
- };
30
- export var hanaInstanceName = {
31
- parameterPath: "hanaInstanceName",
32
- mapper: {
33
- required: true,
34
- serializedName: "hanaInstanceName",
35
- type: {
36
- name: "String"
37
- }
38
- }
39
- };
40
- export var nextPageLink = {
41
- parameterPath: "nextPageLink",
42
- mapper: {
43
- required: true,
44
- serializedName: "nextLink",
45
- type: {
46
- name: "String"
47
- }
48
- },
49
- skipEncoding: true
50
- };
51
- export var resourceGroupName = {
52
- parameterPath: "resourceGroupName",
53
- mapper: {
54
- required: true,
55
- serializedName: "resourceGroupName",
56
- type: {
57
- name: "String"
58
- }
59
- }
60
- };
61
- export var sapMonitorName = {
62
- parameterPath: "sapMonitorName",
63
- mapper: {
64
- required: true,
65
- serializedName: "sapMonitorName",
66
- type: {
67
- name: "String"
68
- }
69
- }
70
- };
71
- export var subscriptionId = {
72
- parameterPath: "subscriptionId",
73
- mapper: {
74
- required: true,
75
- serializedName: "subscriptionId",
76
- type: {
77
- name: "String"
78
- }
79
- }
80
- };
81
- //# sourceMappingURL=parameters.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,gBAAgB,GAAiC;IAC5D,aAAa,EAAE,kBAAkB;IACjC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,kBAAkB;QAClC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}
@@ -1,2 +0,0 @@
1
- export { BaseResource, Disk, ErrorResponse, HanaInstance, HardwareProfile, IpAddress, NetworkProfile, OSProfile, Resource, SapMonitor, SapMonitorListResult, StorageProfile, Tags } from "../models/mappers";
2
- //# sourceMappingURL=sapMonitorsMappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sapMonitorsMappers.d.ts","sourceRoot":"","sources":["../../src/models/sapMonitorsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,YAAY,EACZ,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,eAAe,EACf,SAAS,EACT,cAAc,EACd,SAAS,EACT,QAAQ,EACR,UAAU,EACV,oBAAoB,EACpB,cAAc,EACd,IAAI,EACL,MAAM,mBAAmB,CAAC"}
@@ -1,9 +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
- export { BaseResource, Disk, ErrorResponse, HanaInstance, HardwareProfile, IpAddress, NetworkProfile, OSProfile, Resource, SapMonitor, SapMonitorListResult, StorageProfile, Tags } from "../models/mappers";
9
- //# sourceMappingURL=sapMonitorsMappers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sapMonitorsMappers.js","sourceRoot":"","sources":["../../src/models/sapMonitorsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,YAAY,EACZ,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,eAAe,EACf,SAAS,EACT,cAAc,EACd,SAAS,EACT,QAAQ,EACR,UAAU,EACV,oBAAoB,EACpB,cAAc,EACd,IAAI,EACL,MAAM,mBAAmB,CAAC"}
@@ -1,244 +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 HanaInstances. */
6
- export declare class HanaInstances {
7
- private readonly client;
8
- /**
9
- * Create a HanaInstances.
10
- * @param {HanaManagementClientContext} client Reference to the service client.
11
- */
12
- constructor(client: HanaManagementClientContext);
13
- /**
14
- * Gets a list of SAP HANA instances in the specified subscription. The operations returns various
15
- * properties of each SAP HANA on Azure instance.
16
- * @summary Gets a list of SAP HANA instances in the specified subscription.
17
- * @param [options] The optional parameters
18
- * @returns Promise<Models.HanaInstancesListResponse>
19
- */
20
- list(options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListResponse>;
21
- /**
22
- * @param callback The callback
23
- */
24
- list(callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
25
- /**
26
- * @param options The optional parameters
27
- * @param callback The callback
28
- */
29
- list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
30
- /**
31
- * Gets a list of SAP HANA instances in the specified subscription and the resource group. The
32
- * operations returns various properties of each SAP HANA on Azure instance.
33
- * @summary Gets a list of SAP HANA instances in the specified subscription and the resource group.
34
- * @param resourceGroupName Name of the resource group.
35
- * @param [options] The optional parameters
36
- * @returns Promise<Models.HanaInstancesListByResourceGroupResponse>
37
- */
38
- listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListByResourceGroupResponse>;
39
- /**
40
- * @param resourceGroupName Name of the resource group.
41
- * @param callback The callback
42
- */
43
- listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
44
- /**
45
- * @param resourceGroupName Name of the resource group.
46
- * @param options The optional parameters
47
- * @param callback The callback
48
- */
49
- listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
50
- /**
51
- * Gets properties of a SAP HANA instance for the specified subscription, resource group, and
52
- * instance name.
53
- * @summary Gets properties of a SAP HANA instance.
54
- * @param resourceGroupName Name of the resource group.
55
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
56
- * @param [options] The optional parameters
57
- * @returns Promise<Models.HanaInstancesGetResponse>
58
- */
59
- get(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesGetResponse>;
60
- /**
61
- * @param resourceGroupName Name of the resource group.
62
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
63
- * @param callback The callback
64
- */
65
- get(resourceGroupName: string, hanaInstanceName: string, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
66
- /**
67
- * @param resourceGroupName Name of the resource group.
68
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
69
- * @param options The optional parameters
70
- * @param callback The callback
71
- */
72
- get(resourceGroupName: string, hanaInstanceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
73
- /**
74
- * Creates a SAP HANA instance for the specified subscription, resource group, and instance name.
75
- * @summary Creates a SAP HANA instance.
76
- * @param resourceGroupName Name of the resource group.
77
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
78
- * @param hanaInstanceParameter Request body representing a HanaInstance
79
- * @param [options] The optional parameters
80
- * @returns Promise<Models.HanaInstancesCreateResponse>
81
- */
82
- create(resourceGroupName: string, hanaInstanceName: string, hanaInstanceParameter: Models.HanaInstance, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesCreateResponse>;
83
- /**
84
- * Deletes a SAP HANA instance with the specified subscription, resource group, and instance name.
85
- * @summary Deletes a SAP HANA instance.
86
- * @param resourceGroupName Name of the resource group.
87
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
88
- * @param [options] The optional parameters
89
- * @returns Promise<msRest.RestResponse>
90
- */
91
- deleteMethod(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
92
- /**
93
- * Patches the Tags field of a SAP HANA instance for the specified subscription, resource group,
94
- * and instance name.
95
- * @summary Patches the Tags field of a SAP HANA instance.
96
- * @param resourceGroupName Name of the resource group.
97
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
98
- * @param tagsParameter Request body that only contains the new Tags field
99
- * @param [options] The optional parameters
100
- * @returns Promise<Models.HanaInstancesUpdateResponse>
101
- */
102
- update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesUpdateResponse>;
103
- /**
104
- * @param resourceGroupName Name of the resource group.
105
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
106
- * @param tagsParameter Request body that only contains the new Tags field
107
- * @param callback The callback
108
- */
109
- update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
110
- /**
111
- * @param resourceGroupName Name of the resource group.
112
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
113
- * @param tagsParameter Request body that only contains the new Tags field
114
- * @param options The optional parameters
115
- * @param callback The callback
116
- */
117
- update(resourceGroupName: string, hanaInstanceName: string, tagsParameter: Models.Tags, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstance>): void;
118
- /**
119
- * The operation to restart a SAP HANA instance.
120
- * @param resourceGroupName Name of the resource group.
121
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
122
- * @param [options] The optional parameters
123
- * @returns Promise<msRest.RestResponse>
124
- */
125
- restart(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
126
- /**
127
- * The operation to start a SAP HANA instance.
128
- * @param resourceGroupName Name of the resource group.
129
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
130
- * @param [options] The optional parameters
131
- * @returns Promise<msRest.RestResponse>
132
- */
133
- start(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
134
- /**
135
- * The operation to shutdown a SAP HANA instance.
136
- * @param resourceGroupName Name of the resource group.
137
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
138
- * @param [options] The optional parameters
139
- * @returns Promise<msRest.RestResponse>
140
- */
141
- shutdown(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
142
- /**
143
- * The operation to add a monitor to an SAP HANA instance.
144
- * @param resourceGroupName Name of the resource group.
145
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
146
- * @param monitoringParameter Request body that only contains monitoring attributes
147
- * @param [options] The optional parameters
148
- * @returns Promise<msRest.RestResponse>
149
- */
150
- enableMonitoring(resourceGroupName: string, hanaInstanceName: string, monitoringParameter: Models.MonitoringDetails, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
151
- /**
152
- * Creates a SAP HANA instance for the specified subscription, resource group, and instance name.
153
- * @summary Creates a SAP HANA instance.
154
- * @param resourceGroupName Name of the resource group.
155
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
156
- * @param hanaInstanceParameter Request body representing a HanaInstance
157
- * @param [options] The optional parameters
158
- * @returns Promise<msRestAzure.LROPoller>
159
- */
160
- beginCreate(resourceGroupName: string, hanaInstanceName: string, hanaInstanceParameter: Models.HanaInstance, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
161
- /**
162
- * Deletes a SAP HANA instance with the specified subscription, resource group, and instance name.
163
- * @summary Deletes a SAP HANA instance.
164
- * @param resourceGroupName Name of the resource group.
165
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
166
- * @param [options] The optional parameters
167
- * @returns Promise<msRestAzure.LROPoller>
168
- */
169
- beginDeleteMethod(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
170
- /**
171
- * The operation to restart a SAP HANA instance.
172
- * @param resourceGroupName Name of the resource group.
173
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
174
- * @param [options] The optional parameters
175
- * @returns Promise<msRestAzure.LROPoller>
176
- */
177
- beginRestart(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
178
- /**
179
- * The operation to start a SAP HANA instance.
180
- * @param resourceGroupName Name of the resource group.
181
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
182
- * @param [options] The optional parameters
183
- * @returns Promise<msRestAzure.LROPoller>
184
- */
185
- beginStart(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
186
- /**
187
- * The operation to shutdown a SAP HANA instance.
188
- * @param resourceGroupName Name of the resource group.
189
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
190
- * @param [options] The optional parameters
191
- * @returns Promise<msRestAzure.LROPoller>
192
- */
193
- beginShutdown(resourceGroupName: string, hanaInstanceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
194
- /**
195
- * The operation to add a monitor to an SAP HANA instance.
196
- * @param resourceGroupName Name of the resource group.
197
- * @param hanaInstanceName Name of the SAP HANA on Azure instance.
198
- * @param monitoringParameter Request body that only contains monitoring attributes
199
- * @param [options] The optional parameters
200
- * @returns Promise<msRestAzure.LROPoller>
201
- */
202
- beginEnableMonitoring(resourceGroupName: string, hanaInstanceName: string, monitoringParameter: Models.MonitoringDetails, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
203
- /**
204
- * Gets a list of SAP HANA instances in the specified subscription. The operations returns various
205
- * properties of each SAP HANA on Azure instance.
206
- * @summary Gets a list of SAP HANA instances in the specified subscription.
207
- * @param nextPageLink The NextLink from the previous successful call to List operation.
208
- * @param [options] The optional parameters
209
- * @returns Promise<Models.HanaInstancesListNextResponse>
210
- */
211
- listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListNextResponse>;
212
- /**
213
- * @param nextPageLink The NextLink from the previous successful call to List operation.
214
- * @param callback The callback
215
- */
216
- listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
217
- /**
218
- * @param nextPageLink The NextLink from the previous successful call to List operation.
219
- * @param options The optional parameters
220
- * @param callback The callback
221
- */
222
- listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
223
- /**
224
- * Gets a list of SAP HANA instances in the specified subscription and the resource group. The
225
- * operations returns various properties of each SAP HANA on Azure instance.
226
- * @summary Gets a list of SAP HANA instances in the specified subscription and the resource group.
227
- * @param nextPageLink The NextLink from the previous successful call to List operation.
228
- * @param [options] The optional parameters
229
- * @returns Promise<Models.HanaInstancesListByResourceGroupNextResponse>
230
- */
231
- listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.HanaInstancesListByResourceGroupNextResponse>;
232
- /**
233
- * @param nextPageLink The NextLink from the previous successful call to List operation.
234
- * @param callback The callback
235
- */
236
- listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
237
- /**
238
- * @param nextPageLink The NextLink from the previous successful call to List operation.
239
- * @param options The optional parameters
240
- * @param callback The callback
241
- */
242
- listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.HanaInstancesListResult>): void;
243
- }
244
- //# sourceMappingURL=hanaInstances.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"hanaInstances.d.ts","sourceRoot":"","sources":["../../src/operations/hanaInstances.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AACvD,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAE7E,0CAA0C;AAC1C,qBAAa,aAAa;IACxB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA8B;IAErD;;;OAGG;gBACS,MAAM,EAAE,2BAA2B;IAI/C;;;;;;OAMG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAC;IACpF;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IAC5E;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IAUhH;;;;;;;OAOG;IACH,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,wCAAwC,CAAC;IAC7I;;;OAGG;IACH,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IACtH;;;;OAIG;IACH,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IAW1J;;;;;;;;OAQG;IACH,GAAG,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAC;IACvI;;;;OAIG;IACH,GAAG,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI;IACrH;;;;;OAKG;IACH,GAAG,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI;IAYzJ;;;;;;;;OAQG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,qBAAqB,EAAE,MAAM,CAAC,YAAY,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAC;IAKzL;;;;;;;OAOG;IACH,YAAY,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;IAKpI;;;;;;;;;OASG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAC;IACzK;;;;;OAKG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,CAAC,IAAI,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI;IACpJ;;;;;;OAMG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI;IAaxL;;;;;;OAMG;IACH,OAAO,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;IAK/H;;;;;;OAMG;IACH,KAAK,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;IAK7H;;;;;;OAMG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;IAKhI;;;;;;;OAOG;IACH,gBAAgB,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,CAAC,iBAAiB,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;IAKvL;;;;;;;;OAQG;IACH,WAAW,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,qBAAqB,EAAE,MAAM,CAAC,YAAY,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC;IAYjL;;;;;;;OAOG;IACH,iBAAiB,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC;IAW3I;;;;;;OAMG;IACH,YAAY,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC;IAWtI;;;;;;OAMG;IACH,UAAU,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC;IAWpI;;;;;;OAMG;IACH,aAAa,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC;IAWvI;;;;;;;OAOG;IACH,qBAAqB,CAAC,iBAAiB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,CAAC,iBAAiB,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC;IAY9L;;;;;;;OAOG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAC;IAClH;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IACtG;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IAW1I;;;;;;;OAOG;IACH,uBAAuB,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,4CAA4C,CAAC;IAChJ;;;OAGG;IACH,uBAAuB,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IACrH;;;;OAIG;IACH,uBAAuB,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;CAU1J"}