@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
@@ -0,0 +1,260 @@
1
+ import * as coreClient from "@azure/core-client";
2
+ /** List of HANA operations */
3
+ export interface OperationList {
4
+ /** List of HANA operations */
5
+ value?: Operation[];
6
+ }
7
+ /** HANA operation information */
8
+ export interface Operation {
9
+ /**
10
+ * The name of the operation being performed on this particular object. This name should match the action name that appears in RBAC / the event service.
11
+ * NOTE: This property will not be serialized. It can only be populated by the server.
12
+ */
13
+ readonly name?: string;
14
+ /** Displayed HANA operation information */
15
+ display?: Display;
16
+ }
17
+ /** Detailed HANA operation information */
18
+ export interface Display {
19
+ /**
20
+ * The localized friendly form of the resource provider name. This form is also expected to include the publisher/company responsible. Use Title Casing. Begin with "Microsoft" for 1st party services.
21
+ * NOTE: This property will not be serialized. It can only be populated by the server.
22
+ */
23
+ readonly provider?: string;
24
+ /**
25
+ * The localized friendly form of the resource type related to this action/operation. This form should match the public documentation for the resource provider. Use Title Casing. For examples, refer to the “name” section.
26
+ * NOTE: This property will not be serialized. It can only be populated by the server.
27
+ */
28
+ readonly resource?: string;
29
+ /**
30
+ * The localized friendly name for the operation as shown to the user. This name should be concise (to fit in drop downs), but clear (self-documenting). Use Title Casing and include the entity/resource to which it applies.
31
+ * NOTE: This property will not be serialized. It can only be populated by the server.
32
+ */
33
+ readonly operation?: string;
34
+ /**
35
+ * The localized friendly description for the operation as shown to the user. This description should be thorough, yet concise. It will be used in tool-tips and detailed views.
36
+ * NOTE: This property will not be serialized. It can only be populated by the server.
37
+ */
38
+ readonly description?: string;
39
+ /**
40
+ * The intended executor of the operation; governs the display of the operation in the RBAC UX and the audit logs UX. Default value is 'user,system'
41
+ * NOTE: This property will not be serialized. It can only be populated by the server.
42
+ */
43
+ readonly origin?: string;
44
+ }
45
+ /** Describes the format of Error response. */
46
+ export interface ErrorResponse {
47
+ /** Describes the error object. */
48
+ error?: ErrorResponseError;
49
+ }
50
+ /** Describes the error object. */
51
+ export interface ErrorResponseError {
52
+ /**
53
+ * Error code
54
+ * NOTE: This property will not be serialized. It can only be populated by the server.
55
+ */
56
+ readonly code?: string;
57
+ /**
58
+ * Error message indicating why the operation failed.
59
+ * NOTE: This property will not be serialized. It can only be populated by the server.
60
+ */
61
+ readonly message?: string;
62
+ }
63
+ /** The response from the List SAP monitors operation. */
64
+ export interface SapMonitorListResult {
65
+ /** The list of SAP monitors. */
66
+ value?: SapMonitor[];
67
+ /** The URL to get the next set of SAP monitors. */
68
+ nextLink?: string;
69
+ }
70
+ /** Common fields that are returned in the response for all Azure Resource Manager resources */
71
+ export interface Resource {
72
+ /**
73
+ * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
74
+ * NOTE: This property will not be serialized. It can only be populated by the server.
75
+ */
76
+ readonly id?: string;
77
+ /**
78
+ * The name of the resource
79
+ * NOTE: This property will not be serialized. It can only be populated by the server.
80
+ */
81
+ readonly name?: string;
82
+ /**
83
+ * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
84
+ * NOTE: This property will not be serialized. It can only be populated by the server.
85
+ */
86
+ readonly type?: string;
87
+ }
88
+ /** Tags field of the resource. */
89
+ export interface Tags {
90
+ /** Tags field of the resource. */
91
+ tags?: {
92
+ [propertyName: string]: string;
93
+ };
94
+ }
95
+ /** The response from the List provider instances operation. */
96
+ export interface ProviderInstanceListResult {
97
+ /** The list of provider instances. */
98
+ value?: ProviderInstance[];
99
+ /** The URL to get the next set of provider instances. */
100
+ nextLink?: string;
101
+ }
102
+ /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
103
+ export declare type TrackedResource = Resource & {
104
+ /** Resource tags. */
105
+ tags?: {
106
+ [propertyName: string]: string;
107
+ };
108
+ /** The geo-location where the resource lives */
109
+ location: string;
110
+ };
111
+ /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
112
+ export declare type ProxyResource = Resource & {};
113
+ /** SAP monitor info on Azure (ARM properties and SAP monitor properties) */
114
+ export declare type SapMonitor = TrackedResource & {
115
+ /**
116
+ * State of provisioning of the HanaInstance
117
+ * NOTE: This property will not be serialized. It can only be populated by the server.
118
+ */
119
+ readonly provisioningState?: HanaProvisioningStatesEnum;
120
+ /**
121
+ * The name of the resource group the SAP Monitor resources get deployed into.
122
+ * NOTE: This property will not be serialized. It can only be populated by the server.
123
+ */
124
+ readonly managedResourceGroupName?: string;
125
+ /** The ARM ID of the Log Analytics Workspace that is used for monitoring */
126
+ logAnalyticsWorkspaceArmId?: string;
127
+ /** The value indicating whether to send analytics to Microsoft */
128
+ enableCustomerAnalytics?: boolean;
129
+ /** The workspace ID of the log analytics workspace to be used for monitoring */
130
+ logAnalyticsWorkspaceId?: string;
131
+ /** The shared key of the log analytics workspace that is used for monitoring */
132
+ logAnalyticsWorkspaceSharedKey?: string;
133
+ /**
134
+ * The version of the payload running in the Collector VM
135
+ * NOTE: This property will not be serialized. It can only be populated by the server.
136
+ */
137
+ readonly sapMonitorCollectorVersion?: string;
138
+ /** The subnet which the SAP monitor will be deployed in */
139
+ monitorSubnet?: string;
140
+ };
141
+ /** A provider instance associated with a SAP monitor. */
142
+ export declare type ProviderInstance = ProxyResource & {
143
+ /** The type of provider instance. */
144
+ typePropertiesType?: string;
145
+ /** A JSON string containing the properties of the provider instance. */
146
+ properties?: string;
147
+ /** A JSON string containing metadata of the provider instance. */
148
+ metadata?: string;
149
+ /**
150
+ * State of provisioning of the provider instance
151
+ * NOTE: This property will not be serialized. It can only be populated by the server.
152
+ */
153
+ readonly provisioningState?: HanaProvisioningStatesEnum;
154
+ };
155
+ /** Known values of {@link HanaProvisioningStatesEnum} that the service accepts. */
156
+ export declare enum KnownHanaProvisioningStatesEnum {
157
+ Accepted = "Accepted",
158
+ Creating = "Creating",
159
+ Updating = "Updating",
160
+ Failed = "Failed",
161
+ Succeeded = "Succeeded",
162
+ Deleting = "Deleting",
163
+ Migrating = "Migrating"
164
+ }
165
+ /**
166
+ * Defines values for HanaProvisioningStatesEnum. \
167
+ * {@link KnownHanaProvisioningStatesEnum} can be used interchangeably with HanaProvisioningStatesEnum,
168
+ * this enum contains the known values that the service supports.
169
+ * ### Known values supported by the service
170
+ * **Accepted** \
171
+ * **Creating** \
172
+ * **Updating** \
173
+ * **Failed** \
174
+ * **Succeeded** \
175
+ * **Deleting** \
176
+ * **Migrating**
177
+ */
178
+ export declare type HanaProvisioningStatesEnum = string;
179
+ /** Optional parameters. */
180
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
181
+ }
182
+ /** Contains response data for the list operation. */
183
+ export declare type OperationsListResponse = OperationList;
184
+ /** Optional parameters. */
185
+ export interface SapMonitorsListOptionalParams extends coreClient.OperationOptions {
186
+ }
187
+ /** Contains response data for the list operation. */
188
+ export declare type SapMonitorsListResponse = SapMonitorListResult;
189
+ /** Optional parameters. */
190
+ export interface SapMonitorsGetOptionalParams extends coreClient.OperationOptions {
191
+ }
192
+ /** Contains response data for the get operation. */
193
+ export declare type SapMonitorsGetResponse = SapMonitor;
194
+ /** Optional parameters. */
195
+ export interface SapMonitorsCreateOptionalParams extends coreClient.OperationOptions {
196
+ /** Delay to wait until next poll, in milliseconds. */
197
+ updateIntervalInMs?: number;
198
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
199
+ resumeFrom?: string;
200
+ }
201
+ /** Contains response data for the create operation. */
202
+ export declare type SapMonitorsCreateResponse = SapMonitor;
203
+ /** Optional parameters. */
204
+ export interface SapMonitorsDeleteOptionalParams extends coreClient.OperationOptions {
205
+ /** Delay to wait until next poll, in milliseconds. */
206
+ updateIntervalInMs?: number;
207
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
208
+ resumeFrom?: string;
209
+ }
210
+ /** Optional parameters. */
211
+ export interface SapMonitorsUpdateOptionalParams extends coreClient.OperationOptions {
212
+ }
213
+ /** Contains response data for the update operation. */
214
+ export declare type SapMonitorsUpdateResponse = SapMonitor;
215
+ /** Optional parameters. */
216
+ export interface SapMonitorsListNextOptionalParams extends coreClient.OperationOptions {
217
+ }
218
+ /** Contains response data for the listNext operation. */
219
+ export declare type SapMonitorsListNextResponse = SapMonitorListResult;
220
+ /** Optional parameters. */
221
+ export interface ProviderInstancesListOptionalParams extends coreClient.OperationOptions {
222
+ }
223
+ /** Contains response data for the list operation. */
224
+ export declare type ProviderInstancesListResponse = ProviderInstanceListResult;
225
+ /** Optional parameters. */
226
+ export interface ProviderInstancesGetOptionalParams extends coreClient.OperationOptions {
227
+ }
228
+ /** Contains response data for the get operation. */
229
+ export declare type ProviderInstancesGetResponse = ProviderInstance;
230
+ /** Optional parameters. */
231
+ export interface ProviderInstancesCreateOptionalParams extends coreClient.OperationOptions {
232
+ /** Delay to wait until next poll, in milliseconds. */
233
+ updateIntervalInMs?: number;
234
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
235
+ resumeFrom?: string;
236
+ }
237
+ /** Contains response data for the create operation. */
238
+ export declare type ProviderInstancesCreateResponse = ProviderInstance;
239
+ /** Optional parameters. */
240
+ export interface ProviderInstancesDeleteOptionalParams extends coreClient.OperationOptions {
241
+ /** Delay to wait until next poll, in milliseconds. */
242
+ updateIntervalInMs?: number;
243
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
244
+ resumeFrom?: string;
245
+ }
246
+ /** Optional parameters. */
247
+ export interface ProviderInstancesListNextOptionalParams extends coreClient.OperationOptions {
248
+ }
249
+ /** Contains response data for the listNext operation. */
250
+ export declare type ProviderInstancesListNextResponse = ProviderInstanceListResult;
251
+ /** Optional parameters. */
252
+ export interface HanaManagementClientOptionalParams extends coreClient.ServiceClientOptions {
253
+ /** server parameter */
254
+ $host?: string;
255
+ /** Api Version */
256
+ apiVersion?: string;
257
+ /** Overrides client endpoint. */
258
+ endpoint?: string;
259
+ }
260
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
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
+ /** Known values of {@link HanaProvisioningStatesEnum} that the service accepts. */
9
+ export var KnownHanaProvisioningStatesEnum;
10
+ (function (KnownHanaProvisioningStatesEnum) {
11
+ KnownHanaProvisioningStatesEnum["Accepted"] = "Accepted";
12
+ KnownHanaProvisioningStatesEnum["Creating"] = "Creating";
13
+ KnownHanaProvisioningStatesEnum["Updating"] = "Updating";
14
+ KnownHanaProvisioningStatesEnum["Failed"] = "Failed";
15
+ KnownHanaProvisioningStatesEnum["Succeeded"] = "Succeeded";
16
+ KnownHanaProvisioningStatesEnum["Deleting"] = "Deleting";
17
+ KnownHanaProvisioningStatesEnum["Migrating"] = "Migrating";
18
+ })(KnownHanaProvisioningStatesEnum || (KnownHanaProvisioningStatesEnum = {}));
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAsKH,mFAAmF;AACnF,MAAM,CAAN,IAAY,+BAQX;AARD,WAAY,+BAA+B;IACzC,wDAAqB,CAAA;IACrB,wDAAqB,CAAA;IACrB,wDAAqB,CAAA;IACrB,oDAAiB,CAAA;IACjB,0DAAuB,CAAA;IACvB,wDAAqB,CAAA;IACrB,0DAAuB,CAAA;AACzB,CAAC,EARW,+BAA+B,KAA/B,+BAA+B,QAQ1C"}
@@ -0,0 +1,15 @@
1
+ import * as coreClient from "@azure/core-client";
2
+ export declare const OperationList: coreClient.CompositeMapper;
3
+ export declare const Operation: coreClient.CompositeMapper;
4
+ export declare const Display: coreClient.CompositeMapper;
5
+ export declare const ErrorResponse: coreClient.CompositeMapper;
6
+ export declare const ErrorResponseError: coreClient.CompositeMapper;
7
+ export declare const SapMonitorListResult: coreClient.CompositeMapper;
8
+ export declare const Resource: coreClient.CompositeMapper;
9
+ export declare const Tags: coreClient.CompositeMapper;
10
+ export declare const ProviderInstanceListResult: coreClient.CompositeMapper;
11
+ export declare const TrackedResource: coreClient.CompositeMapper;
12
+ export declare const ProxyResource: coreClient.CompositeMapper;
13
+ export declare const SapMonitor: coreClient.CompositeMapper;
14
+ export declare const ProviderInstance: coreClient.CompositeMapper;
15
+ //# sourceMappingURL=mappers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAmBtC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAqBlC,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,UAAU,CAAC,eA0ChC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eActC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,eAqB3C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAyB7C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,UAAU,CAAC,eAc7B,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,eAyBnD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAQtC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eA2DnC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eAiCzC,CAAC"}
@@ -0,0 +1,330 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
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 const OperationList = {
9
+ type: {
10
+ name: "Composite",
11
+ className: "OperationList",
12
+ modelProperties: {
13
+ value: {
14
+ serializedName: "value",
15
+ type: {
16
+ name: "Sequence",
17
+ element: {
18
+ type: {
19
+ name: "Composite",
20
+ className: "Operation"
21
+ }
22
+ }
23
+ }
24
+ }
25
+ }
26
+ }
27
+ };
28
+ export const Operation = {
29
+ type: {
30
+ name: "Composite",
31
+ className: "Operation",
32
+ modelProperties: {
33
+ name: {
34
+ serializedName: "name",
35
+ readOnly: true,
36
+ type: {
37
+ name: "String"
38
+ }
39
+ },
40
+ display: {
41
+ serializedName: "display",
42
+ type: {
43
+ name: "Composite",
44
+ className: "Display"
45
+ }
46
+ }
47
+ }
48
+ }
49
+ };
50
+ export const Display = {
51
+ type: {
52
+ name: "Composite",
53
+ className: "Display",
54
+ modelProperties: {
55
+ provider: {
56
+ serializedName: "provider",
57
+ readOnly: true,
58
+ type: {
59
+ name: "String"
60
+ }
61
+ },
62
+ resource: {
63
+ serializedName: "resource",
64
+ readOnly: true,
65
+ type: {
66
+ name: "String"
67
+ }
68
+ },
69
+ operation: {
70
+ serializedName: "operation",
71
+ readOnly: true,
72
+ type: {
73
+ name: "String"
74
+ }
75
+ },
76
+ description: {
77
+ serializedName: "description",
78
+ readOnly: true,
79
+ type: {
80
+ name: "String"
81
+ }
82
+ },
83
+ origin: {
84
+ serializedName: "origin",
85
+ readOnly: true,
86
+ type: {
87
+ name: "String"
88
+ }
89
+ }
90
+ }
91
+ }
92
+ };
93
+ export const ErrorResponse = {
94
+ type: {
95
+ name: "Composite",
96
+ className: "ErrorResponse",
97
+ modelProperties: {
98
+ error: {
99
+ serializedName: "error",
100
+ type: {
101
+ name: "Composite",
102
+ className: "ErrorResponseError"
103
+ }
104
+ }
105
+ }
106
+ }
107
+ };
108
+ export const ErrorResponseError = {
109
+ type: {
110
+ name: "Composite",
111
+ className: "ErrorResponseError",
112
+ modelProperties: {
113
+ code: {
114
+ serializedName: "code",
115
+ readOnly: true,
116
+ type: {
117
+ name: "String"
118
+ }
119
+ },
120
+ message: {
121
+ serializedName: "message",
122
+ readOnly: true,
123
+ type: {
124
+ name: "String"
125
+ }
126
+ }
127
+ }
128
+ }
129
+ };
130
+ export const SapMonitorListResult = {
131
+ type: {
132
+ name: "Composite",
133
+ className: "SapMonitorListResult",
134
+ modelProperties: {
135
+ value: {
136
+ serializedName: "value",
137
+ type: {
138
+ name: "Sequence",
139
+ element: {
140
+ type: {
141
+ name: "Composite",
142
+ className: "SapMonitor"
143
+ }
144
+ }
145
+ }
146
+ },
147
+ nextLink: {
148
+ serializedName: "nextLink",
149
+ type: {
150
+ name: "String"
151
+ }
152
+ }
153
+ }
154
+ }
155
+ };
156
+ export const Resource = {
157
+ type: {
158
+ name: "Composite",
159
+ className: "Resource",
160
+ modelProperties: {
161
+ id: {
162
+ serializedName: "id",
163
+ readOnly: true,
164
+ type: {
165
+ name: "String"
166
+ }
167
+ },
168
+ name: {
169
+ serializedName: "name",
170
+ readOnly: true,
171
+ type: {
172
+ name: "String"
173
+ }
174
+ },
175
+ type: {
176
+ serializedName: "type",
177
+ readOnly: true,
178
+ type: {
179
+ name: "String"
180
+ }
181
+ }
182
+ }
183
+ }
184
+ };
185
+ export const Tags = {
186
+ type: {
187
+ name: "Composite",
188
+ className: "Tags",
189
+ modelProperties: {
190
+ tags: {
191
+ serializedName: "tags",
192
+ type: {
193
+ name: "Dictionary",
194
+ value: { type: { name: "String" } }
195
+ }
196
+ }
197
+ }
198
+ }
199
+ };
200
+ export const ProviderInstanceListResult = {
201
+ type: {
202
+ name: "Composite",
203
+ className: "ProviderInstanceListResult",
204
+ modelProperties: {
205
+ value: {
206
+ serializedName: "value",
207
+ type: {
208
+ name: "Sequence",
209
+ element: {
210
+ type: {
211
+ name: "Composite",
212
+ className: "ProviderInstance"
213
+ }
214
+ }
215
+ }
216
+ },
217
+ nextLink: {
218
+ serializedName: "nextLink",
219
+ type: {
220
+ name: "String"
221
+ }
222
+ }
223
+ }
224
+ }
225
+ };
226
+ export const TrackedResource = {
227
+ type: {
228
+ name: "Composite",
229
+ className: "TrackedResource",
230
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { tags: {
231
+ serializedName: "tags",
232
+ type: {
233
+ name: "Dictionary",
234
+ value: { type: { name: "String" } }
235
+ }
236
+ }, location: {
237
+ serializedName: "location",
238
+ required: true,
239
+ type: {
240
+ name: "String"
241
+ }
242
+ } })
243
+ }
244
+ };
245
+ export const ProxyResource = {
246
+ type: {
247
+ name: "Composite",
248
+ className: "ProxyResource",
249
+ modelProperties: Object.assign({}, Resource.type.modelProperties)
250
+ }
251
+ };
252
+ export const SapMonitor = {
253
+ type: {
254
+ name: "Composite",
255
+ className: "SapMonitor",
256
+ modelProperties: Object.assign(Object.assign({}, TrackedResource.type.modelProperties), { provisioningState: {
257
+ serializedName: "properties.provisioningState",
258
+ readOnly: true,
259
+ type: {
260
+ name: "String"
261
+ }
262
+ }, managedResourceGroupName: {
263
+ serializedName: "properties.managedResourceGroupName",
264
+ readOnly: true,
265
+ type: {
266
+ name: "String"
267
+ }
268
+ }, logAnalyticsWorkspaceArmId: {
269
+ serializedName: "properties.logAnalyticsWorkspaceArmId",
270
+ type: {
271
+ name: "String"
272
+ }
273
+ }, enableCustomerAnalytics: {
274
+ serializedName: "properties.enableCustomerAnalytics",
275
+ type: {
276
+ name: "Boolean"
277
+ }
278
+ }, logAnalyticsWorkspaceId: {
279
+ serializedName: "properties.logAnalyticsWorkspaceId",
280
+ type: {
281
+ name: "String"
282
+ }
283
+ }, logAnalyticsWorkspaceSharedKey: {
284
+ serializedName: "properties.logAnalyticsWorkspaceSharedKey",
285
+ type: {
286
+ name: "String"
287
+ }
288
+ }, sapMonitorCollectorVersion: {
289
+ serializedName: "properties.sapMonitorCollectorVersion",
290
+ readOnly: true,
291
+ type: {
292
+ name: "String"
293
+ }
294
+ }, monitorSubnet: {
295
+ serializedName: "properties.monitorSubnet",
296
+ type: {
297
+ name: "String"
298
+ }
299
+ } })
300
+ }
301
+ };
302
+ export const ProviderInstance = {
303
+ type: {
304
+ name: "Composite",
305
+ className: "ProviderInstance",
306
+ modelProperties: Object.assign(Object.assign({}, ProxyResource.type.modelProperties), { typePropertiesType: {
307
+ serializedName: "properties.type",
308
+ type: {
309
+ name: "String"
310
+ }
311
+ }, properties: {
312
+ serializedName: "properties.properties",
313
+ type: {
314
+ name: "String"
315
+ }
316
+ }, metadata: {
317
+ serializedName: "properties.metadata",
318
+ type: {
319
+ name: "String"
320
+ }
321
+ }, provisioningState: {
322
+ serializedName: "properties.provisioningState",
323
+ readOnly: true,
324
+ type: {
325
+ name: "String"
326
+ }
327
+ } })
328
+ }
329
+ };
330
+ //# sourceMappingURL=mappers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { OperationParameter, OperationURLParameter, OperationQueryParameter } from "@azure/core-client";
2
+ export declare const accept: OperationParameter;
3
+ export declare const $host: OperationURLParameter;
4
+ export declare const apiVersion: OperationQueryParameter;
5
+ export declare const subscriptionId: OperationURLParameter;
6
+ export declare const resourceGroupName: OperationURLParameter;
7
+ export declare const sapMonitorName: OperationURLParameter;
8
+ export declare const contentType: OperationParameter;
9
+ export declare const sapMonitorParameter: OperationParameter;
10
+ export declare const tagsParameter: OperationParameter;
11
+ export declare const nextLink: OperationURLParameter;
12
+ export declare const providerInstanceName: OperationURLParameter;
13
+ export declare const providerInstanceParameter: OperationParameter;
14
+ //# sourceMappingURL=parameters.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../../src/models/parameters.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,oBAAoB,CAAC;AAO5B,eAAO,MAAM,MAAM,EAAE,kBAUpB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,qBAUnB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,uBAUxB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,qBAS5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,qBAS/B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,qBAS5B,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,kBAGjC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,kBAG3B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,qBAUtB,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,qBASlC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,kBAGvC,CAAC"}