@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
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
import * as coreAuth from '@azure/core-auth';
|
|
2
|
+
import * as coreClient from '@azure/core-client';
|
|
3
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
4
|
+
import { PollerLike } from '@azure/core-lro';
|
|
5
|
+
import { PollOperationState } from '@azure/core-lro';
|
|
6
|
+
|
|
7
|
+
/** Detailed HANA operation information */
|
|
8
|
+
export declare interface Display {
|
|
9
|
+
/**
|
|
10
|
+
* 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.
|
|
11
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
12
|
+
*/
|
|
13
|
+
readonly provider?: string;
|
|
14
|
+
/**
|
|
15
|
+
* 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.
|
|
16
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
17
|
+
*/
|
|
18
|
+
readonly resource?: string;
|
|
19
|
+
/**
|
|
20
|
+
* 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.
|
|
21
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
22
|
+
*/
|
|
23
|
+
readonly operation?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 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.
|
|
26
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
27
|
+
*/
|
|
28
|
+
readonly description?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 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'
|
|
31
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
32
|
+
*/
|
|
33
|
+
readonly origin?: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/** Describes the format of Error response. */
|
|
37
|
+
export declare interface ErrorResponse {
|
|
38
|
+
/** Describes the error object. */
|
|
39
|
+
error?: ErrorResponseError;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** Describes the error object. */
|
|
43
|
+
export declare interface ErrorResponseError {
|
|
44
|
+
/**
|
|
45
|
+
* Error code
|
|
46
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
47
|
+
*/
|
|
48
|
+
readonly code?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Error message indicating why the operation failed.
|
|
51
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
52
|
+
*/
|
|
53
|
+
readonly message?: string;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export declare class HanaManagementClient extends coreClient.ServiceClient {
|
|
57
|
+
$host: string;
|
|
58
|
+
apiVersion: string;
|
|
59
|
+
subscriptionId: string;
|
|
60
|
+
/**
|
|
61
|
+
* Initializes a new instance of the HanaManagementClient class.
|
|
62
|
+
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
63
|
+
* @param subscriptionId Subscription ID which uniquely identify Microsoft Azure subscription. The
|
|
64
|
+
* subscription ID forms part of the URI for every service call.
|
|
65
|
+
* @param options The parameter options
|
|
66
|
+
*/
|
|
67
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: HanaManagementClientOptionalParams);
|
|
68
|
+
operations: Operations;
|
|
69
|
+
sapMonitors: SapMonitors;
|
|
70
|
+
providerInstances: ProviderInstances;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/** Optional parameters. */
|
|
74
|
+
export declare interface HanaManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
75
|
+
/** server parameter */
|
|
76
|
+
$host?: string;
|
|
77
|
+
/** Api Version */
|
|
78
|
+
apiVersion?: string;
|
|
79
|
+
/** Overrides client endpoint. */
|
|
80
|
+
endpoint?: string;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Defines values for HanaProvisioningStatesEnum. \
|
|
85
|
+
* {@link KnownHanaProvisioningStatesEnum} can be used interchangeably with HanaProvisioningStatesEnum,
|
|
86
|
+
* this enum contains the known values that the service supports.
|
|
87
|
+
* ### Known values supported by the service
|
|
88
|
+
* **Accepted** \
|
|
89
|
+
* **Creating** \
|
|
90
|
+
* **Updating** \
|
|
91
|
+
* **Failed** \
|
|
92
|
+
* **Succeeded** \
|
|
93
|
+
* **Deleting** \
|
|
94
|
+
* **Migrating**
|
|
95
|
+
*/
|
|
96
|
+
export declare type HanaProvisioningStatesEnum = string;
|
|
97
|
+
|
|
98
|
+
/** Known values of {@link HanaProvisioningStatesEnum} that the service accepts. */
|
|
99
|
+
export declare enum KnownHanaProvisioningStatesEnum {
|
|
100
|
+
Accepted = "Accepted",
|
|
101
|
+
Creating = "Creating",
|
|
102
|
+
Updating = "Updating",
|
|
103
|
+
Failed = "Failed",
|
|
104
|
+
Succeeded = "Succeeded",
|
|
105
|
+
Deleting = "Deleting",
|
|
106
|
+
Migrating = "Migrating"
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/** HANA operation information */
|
|
110
|
+
export declare interface Operation {
|
|
111
|
+
/**
|
|
112
|
+
* 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.
|
|
113
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
114
|
+
*/
|
|
115
|
+
readonly name?: string;
|
|
116
|
+
/** Displayed HANA operation information */
|
|
117
|
+
display?: Display;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/** List of HANA operations */
|
|
121
|
+
export declare interface OperationList {
|
|
122
|
+
/** List of HANA operations */
|
|
123
|
+
value?: Operation[];
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/** Interface representing a Operations. */
|
|
127
|
+
export declare interface Operations {
|
|
128
|
+
/**
|
|
129
|
+
* Gets a list of SAP HANA management operations.
|
|
130
|
+
* @param options The options parameters.
|
|
131
|
+
*/
|
|
132
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/** Optional parameters. */
|
|
136
|
+
export declare interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/** Contains response data for the list operation. */
|
|
140
|
+
export declare type OperationsListResponse = OperationList;
|
|
141
|
+
|
|
142
|
+
/** A provider instance associated with a SAP monitor. */
|
|
143
|
+
export declare type ProviderInstance = ProxyResource & {
|
|
144
|
+
/** The type of provider instance. */
|
|
145
|
+
typePropertiesType?: string;
|
|
146
|
+
/** A JSON string containing the properties of the provider instance. */
|
|
147
|
+
properties?: string;
|
|
148
|
+
/** A JSON string containing metadata of the provider instance. */
|
|
149
|
+
metadata?: string;
|
|
150
|
+
/**
|
|
151
|
+
* State of provisioning of the provider instance
|
|
152
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
153
|
+
*/
|
|
154
|
+
readonly provisioningState?: HanaProvisioningStatesEnum;
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
/** The response from the List provider instances operation. */
|
|
158
|
+
export declare interface ProviderInstanceListResult {
|
|
159
|
+
/** The list of provider instances. */
|
|
160
|
+
value?: ProviderInstance[];
|
|
161
|
+
/** The URL to get the next set of provider instances. */
|
|
162
|
+
nextLink?: string;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/** Interface representing a ProviderInstances. */
|
|
166
|
+
export declare interface ProviderInstances {
|
|
167
|
+
/**
|
|
168
|
+
* Gets a list of provider instances in the specified SAP monitor. The operations returns various
|
|
169
|
+
* properties of each provider instances.
|
|
170
|
+
* @param resourceGroupName Name of the resource group.
|
|
171
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
172
|
+
* @param options The options parameters.
|
|
173
|
+
*/
|
|
174
|
+
list(resourceGroupName: string, sapMonitorName: string, options?: ProviderInstancesListOptionalParams): PagedAsyncIterableIterator<ProviderInstance>;
|
|
175
|
+
/**
|
|
176
|
+
* Gets properties of a provider instance for the specified subscription, resource group, SapMonitor
|
|
177
|
+
* name, and resource name.
|
|
178
|
+
* @param resourceGroupName Name of the resource group.
|
|
179
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
180
|
+
* @param providerInstanceName Name of the provider instance.
|
|
181
|
+
* @param options The options parameters.
|
|
182
|
+
*/
|
|
183
|
+
get(resourceGroupName: string, sapMonitorName: string, providerInstanceName: string, options?: ProviderInstancesGetOptionalParams): Promise<ProviderInstancesGetResponse>;
|
|
184
|
+
/**
|
|
185
|
+
* Creates a provider instance for the specified subscription, resource group, SapMonitor name, and
|
|
186
|
+
* resource name.
|
|
187
|
+
* @param resourceGroupName Name of the resource group.
|
|
188
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
189
|
+
* @param providerInstanceName Name of the provider instance.
|
|
190
|
+
* @param providerInstanceParameter Request body representing a provider instance
|
|
191
|
+
* @param options The options parameters.
|
|
192
|
+
*/
|
|
193
|
+
beginCreate(resourceGroupName: string, sapMonitorName: string, providerInstanceName: string, providerInstanceParameter: ProviderInstance, options?: ProviderInstancesCreateOptionalParams): Promise<PollerLike<PollOperationState<ProviderInstancesCreateResponse>, ProviderInstancesCreateResponse>>;
|
|
194
|
+
/**
|
|
195
|
+
* Creates a provider instance for the specified subscription, resource group, SapMonitor name, and
|
|
196
|
+
* resource name.
|
|
197
|
+
* @param resourceGroupName Name of the resource group.
|
|
198
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
199
|
+
* @param providerInstanceName Name of the provider instance.
|
|
200
|
+
* @param providerInstanceParameter Request body representing a provider instance
|
|
201
|
+
* @param options The options parameters.
|
|
202
|
+
*/
|
|
203
|
+
beginCreateAndWait(resourceGroupName: string, sapMonitorName: string, providerInstanceName: string, providerInstanceParameter: ProviderInstance, options?: ProviderInstancesCreateOptionalParams): Promise<ProviderInstancesCreateResponse>;
|
|
204
|
+
/**
|
|
205
|
+
* Deletes a provider instance for the specified subscription, resource group, SapMonitor name, and
|
|
206
|
+
* resource name.
|
|
207
|
+
* @param resourceGroupName Name of the resource group.
|
|
208
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
209
|
+
* @param providerInstanceName Name of the provider instance.
|
|
210
|
+
* @param options The options parameters.
|
|
211
|
+
*/
|
|
212
|
+
beginDelete(resourceGroupName: string, sapMonitorName: string, providerInstanceName: string, options?: ProviderInstancesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
213
|
+
/**
|
|
214
|
+
* Deletes a provider instance for the specified subscription, resource group, SapMonitor name, and
|
|
215
|
+
* resource name.
|
|
216
|
+
* @param resourceGroupName Name of the resource group.
|
|
217
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
218
|
+
* @param providerInstanceName Name of the provider instance.
|
|
219
|
+
* @param options The options parameters.
|
|
220
|
+
*/
|
|
221
|
+
beginDeleteAndWait(resourceGroupName: string, sapMonitorName: string, providerInstanceName: string, options?: ProviderInstancesDeleteOptionalParams): Promise<void>;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/** Optional parameters. */
|
|
225
|
+
export declare interface ProviderInstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
226
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
227
|
+
updateIntervalInMs?: number;
|
|
228
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
229
|
+
resumeFrom?: string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/** Contains response data for the create operation. */
|
|
233
|
+
export declare type ProviderInstancesCreateResponse = ProviderInstance;
|
|
234
|
+
|
|
235
|
+
/** Optional parameters. */
|
|
236
|
+
export declare interface ProviderInstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
237
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
238
|
+
updateIntervalInMs?: number;
|
|
239
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
240
|
+
resumeFrom?: string;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/** Optional parameters. */
|
|
244
|
+
export declare interface ProviderInstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/** Contains response data for the get operation. */
|
|
248
|
+
export declare type ProviderInstancesGetResponse = ProviderInstance;
|
|
249
|
+
|
|
250
|
+
/** Optional parameters. */
|
|
251
|
+
export declare interface ProviderInstancesListNextOptionalParams extends coreClient.OperationOptions {
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/** Contains response data for the listNext operation. */
|
|
255
|
+
export declare type ProviderInstancesListNextResponse = ProviderInstanceListResult;
|
|
256
|
+
|
|
257
|
+
/** Optional parameters. */
|
|
258
|
+
export declare interface ProviderInstancesListOptionalParams extends coreClient.OperationOptions {
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/** Contains response data for the list operation. */
|
|
262
|
+
export declare type ProviderInstancesListResponse = ProviderInstanceListResult;
|
|
263
|
+
|
|
264
|
+
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
265
|
+
export declare type ProxyResource = Resource & {};
|
|
266
|
+
|
|
267
|
+
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
268
|
+
export declare interface Resource {
|
|
269
|
+
/**
|
|
270
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
271
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
272
|
+
*/
|
|
273
|
+
readonly id?: string;
|
|
274
|
+
/**
|
|
275
|
+
* The name of the resource
|
|
276
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
277
|
+
*/
|
|
278
|
+
readonly name?: string;
|
|
279
|
+
/**
|
|
280
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
281
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
282
|
+
*/
|
|
283
|
+
readonly type?: string;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/** SAP monitor info on Azure (ARM properties and SAP monitor properties) */
|
|
287
|
+
export declare type SapMonitor = TrackedResource & {
|
|
288
|
+
/**
|
|
289
|
+
* State of provisioning of the HanaInstance
|
|
290
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
291
|
+
*/
|
|
292
|
+
readonly provisioningState?: HanaProvisioningStatesEnum;
|
|
293
|
+
/**
|
|
294
|
+
* The name of the resource group the SAP Monitor resources get deployed into.
|
|
295
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
296
|
+
*/
|
|
297
|
+
readonly managedResourceGroupName?: string;
|
|
298
|
+
/** The ARM ID of the Log Analytics Workspace that is used for monitoring */
|
|
299
|
+
logAnalyticsWorkspaceArmId?: string;
|
|
300
|
+
/** The value indicating whether to send analytics to Microsoft */
|
|
301
|
+
enableCustomerAnalytics?: boolean;
|
|
302
|
+
/** The workspace ID of the log analytics workspace to be used for monitoring */
|
|
303
|
+
logAnalyticsWorkspaceId?: string;
|
|
304
|
+
/** The shared key of the log analytics workspace that is used for monitoring */
|
|
305
|
+
logAnalyticsWorkspaceSharedKey?: string;
|
|
306
|
+
/**
|
|
307
|
+
* The version of the payload running in the Collector VM
|
|
308
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
309
|
+
*/
|
|
310
|
+
readonly sapMonitorCollectorVersion?: string;
|
|
311
|
+
/** The subnet which the SAP monitor will be deployed in */
|
|
312
|
+
monitorSubnet?: string;
|
|
313
|
+
};
|
|
314
|
+
|
|
315
|
+
/** The response from the List SAP monitors operation. */
|
|
316
|
+
export declare interface SapMonitorListResult {
|
|
317
|
+
/** The list of SAP monitors. */
|
|
318
|
+
value?: SapMonitor[];
|
|
319
|
+
/** The URL to get the next set of SAP monitors. */
|
|
320
|
+
nextLink?: string;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/** Interface representing a SapMonitors. */
|
|
324
|
+
export declare interface SapMonitors {
|
|
325
|
+
/**
|
|
326
|
+
* Gets a list of SAP monitors in the specified subscription. The operations returns various properties
|
|
327
|
+
* of each SAP monitor.
|
|
328
|
+
* @param options The options parameters.
|
|
329
|
+
*/
|
|
330
|
+
list(options?: SapMonitorsListOptionalParams): PagedAsyncIterableIterator<SapMonitor>;
|
|
331
|
+
/**
|
|
332
|
+
* Gets properties of a SAP monitor for the specified subscription, resource group, and resource name.
|
|
333
|
+
* @param resourceGroupName Name of the resource group.
|
|
334
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
335
|
+
* @param options The options parameters.
|
|
336
|
+
*/
|
|
337
|
+
get(resourceGroupName: string, sapMonitorName: string, options?: SapMonitorsGetOptionalParams): Promise<SapMonitorsGetResponse>;
|
|
338
|
+
/**
|
|
339
|
+
* Creates a SAP monitor for the specified subscription, resource group, and resource name.
|
|
340
|
+
* @param resourceGroupName Name of the resource group.
|
|
341
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
342
|
+
* @param sapMonitorParameter Request body representing a SAP Monitor
|
|
343
|
+
* @param options The options parameters.
|
|
344
|
+
*/
|
|
345
|
+
beginCreate(resourceGroupName: string, sapMonitorName: string, sapMonitorParameter: SapMonitor, options?: SapMonitorsCreateOptionalParams): Promise<PollerLike<PollOperationState<SapMonitorsCreateResponse>, SapMonitorsCreateResponse>>;
|
|
346
|
+
/**
|
|
347
|
+
* Creates a SAP monitor for the specified subscription, resource group, and resource name.
|
|
348
|
+
* @param resourceGroupName Name of the resource group.
|
|
349
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
350
|
+
* @param sapMonitorParameter Request body representing a SAP Monitor
|
|
351
|
+
* @param options The options parameters.
|
|
352
|
+
*/
|
|
353
|
+
beginCreateAndWait(resourceGroupName: string, sapMonitorName: string, sapMonitorParameter: SapMonitor, options?: SapMonitorsCreateOptionalParams): Promise<SapMonitorsCreateResponse>;
|
|
354
|
+
/**
|
|
355
|
+
* Deletes a SAP monitor with the specified subscription, resource group, and monitor name.
|
|
356
|
+
* @param resourceGroupName Name of the resource group.
|
|
357
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
358
|
+
* @param options The options parameters.
|
|
359
|
+
*/
|
|
360
|
+
beginDelete(resourceGroupName: string, sapMonitorName: string, options?: SapMonitorsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
361
|
+
/**
|
|
362
|
+
* Deletes a SAP monitor with the specified subscription, resource group, and monitor name.
|
|
363
|
+
* @param resourceGroupName Name of the resource group.
|
|
364
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
365
|
+
* @param options The options parameters.
|
|
366
|
+
*/
|
|
367
|
+
beginDeleteAndWait(resourceGroupName: string, sapMonitorName: string, options?: SapMonitorsDeleteOptionalParams): Promise<void>;
|
|
368
|
+
/**
|
|
369
|
+
* Patches the Tags field of a SAP monitor for the specified subscription, resource group, and monitor
|
|
370
|
+
* name.
|
|
371
|
+
* @param resourceGroupName Name of the resource group.
|
|
372
|
+
* @param sapMonitorName Name of the SAP monitor resource.
|
|
373
|
+
* @param tagsParameter Request body that only contains the new Tags field
|
|
374
|
+
* @param options The options parameters.
|
|
375
|
+
*/
|
|
376
|
+
update(resourceGroupName: string, sapMonitorName: string, tagsParameter: Tags, options?: SapMonitorsUpdateOptionalParams): Promise<SapMonitorsUpdateResponse>;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
/** Optional parameters. */
|
|
380
|
+
export declare interface SapMonitorsCreateOptionalParams extends coreClient.OperationOptions {
|
|
381
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
382
|
+
updateIntervalInMs?: number;
|
|
383
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
384
|
+
resumeFrom?: string;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/** Contains response data for the create operation. */
|
|
388
|
+
export declare type SapMonitorsCreateResponse = SapMonitor;
|
|
389
|
+
|
|
390
|
+
/** Optional parameters. */
|
|
391
|
+
export declare interface SapMonitorsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
392
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
393
|
+
updateIntervalInMs?: number;
|
|
394
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
395
|
+
resumeFrom?: string;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/** Optional parameters. */
|
|
399
|
+
export declare interface SapMonitorsGetOptionalParams extends coreClient.OperationOptions {
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
/** Contains response data for the get operation. */
|
|
403
|
+
export declare type SapMonitorsGetResponse = SapMonitor;
|
|
404
|
+
|
|
405
|
+
/** Optional parameters. */
|
|
406
|
+
export declare interface SapMonitorsListNextOptionalParams extends coreClient.OperationOptions {
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/** Contains response data for the listNext operation. */
|
|
410
|
+
export declare type SapMonitorsListNextResponse = SapMonitorListResult;
|
|
411
|
+
|
|
412
|
+
/** Optional parameters. */
|
|
413
|
+
export declare interface SapMonitorsListOptionalParams extends coreClient.OperationOptions {
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
/** Contains response data for the list operation. */
|
|
417
|
+
export declare type SapMonitorsListResponse = SapMonitorListResult;
|
|
418
|
+
|
|
419
|
+
/** Optional parameters. */
|
|
420
|
+
export declare interface SapMonitorsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/** Contains response data for the update operation. */
|
|
424
|
+
export declare type SapMonitorsUpdateResponse = SapMonitor;
|
|
425
|
+
|
|
426
|
+
/** Tags field of the resource. */
|
|
427
|
+
export declare interface Tags {
|
|
428
|
+
/** Tags field of the resource. */
|
|
429
|
+
tags?: {
|
|
430
|
+
[propertyName: string]: string;
|
|
431
|
+
};
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
435
|
+
export declare type TrackedResource = Resource & {
|
|
436
|
+
/** Resource tags. */
|
|
437
|
+
tags?: {
|
|
438
|
+
[propertyName: string]: string;
|
|
439
|
+
};
|
|
440
|
+
/** The geo-location where the resource lives */
|
|
441
|
+
location: string;
|
|
442
|
+
};
|
|
443
|
+
|
|
444
|
+
export { }
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.19.2"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|