@azure/arm-portal 1.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 +3 -0
- package/LICENSE +21 -0
- package/README.md +98 -0
- package/dist/index.js +1627 -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/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/models/index.d.ts +334 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +13 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +28 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +624 -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 +120 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/dashboards.d.ts +83 -0
- package/dist-esm/src/operations/dashboards.d.ts.map +1 -0
- package/dist-esm/src/operations/dashboards.js +361 -0
- package/dist-esm/src/operations/dashboards.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/listTenantConfigurationViolations.d.ts +32 -0
- package/dist-esm/src/operations/listTenantConfigurationViolations.d.ts.map +1 -0
- package/dist-esm/src/operations/listTenantConfigurationViolations.js +120 -0
- package/dist-esm/src/operations/listTenantConfigurationViolations.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/tenantConfigurations.d.ts +52 -0
- package/dist-esm/src/operations/tenantConfigurations.d.ts.map +1 -0
- package/dist-esm/src/operations/tenantConfigurations.js +199 -0
- package/dist-esm/src/operations/tenantConfigurations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/dashboards.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/dashboards.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/dashboards.js +9 -0
- package/dist-esm/src/operationsInterfaces/dashboards.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.js +9 -0
- package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.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/tenantConfigurations.d.ts +31 -0
- package/dist-esm/src/operationsInterfaces/tenantConfigurations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/tenantConfigurations.js +9 -0
- package/dist-esm/src/operationsInterfaces/tenantConfigurations.js.map +1 -0
- package/dist-esm/src/portal.d.ts +22 -0
- package/dist-esm/src/portal.d.ts.map +1 -0
- package/dist-esm/src/portal.js +55 -0
- package/dist-esm/src/portal.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 +90 -0
- package/review/arm-portal.api.md +349 -0
- package/rollup.config.js +188 -0
- package/src/index.ts +12 -0
- package/src/models/index.ts +389 -0
- package/src/models/mappers.ts +658 -0
- package/src/models/parameters.ts +141 -0
- package/src/operations/dashboards.ts +451 -0
- package/src/operations/index.ts +12 -0
- package/src/operations/listTenantConfigurationViolations.ts +138 -0
- package/src/operations/operations.ts +137 -0
- package/src/operations/tenantConfigurations.ts +244 -0
- package/src/operationsInterfaces/dashboards.ts +91 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/listTenantConfigurationViolations.ts +25 -0
- package/src/operationsInterfaces/operations.ts +25 -0
- package/src/operationsInterfaces/tenantConfigurations.ts +61 -0
- package/src/portal.ts +94 -0
- package/tsconfig.json +19 -0
- package/types/arm-portal.d.ts +505 -0
- package/types/tsdoc-metadata.json +11 -0
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
export declare type DashboardPartMetadataUnion = DashboardPartMetadata | MarkdownPartMetadata;
|
|
3
|
+
/** Results of the request to list operations. */
|
|
4
|
+
export interface ResourceProviderOperationList {
|
|
5
|
+
/** List of operations supported by this resource provider. */
|
|
6
|
+
value?: ResourceProviderOperation[];
|
|
7
|
+
/** The URL to use for getting the next set of results. */
|
|
8
|
+
nextLink?: string;
|
|
9
|
+
}
|
|
10
|
+
/** Supported operations of this resource provider. */
|
|
11
|
+
export interface ResourceProviderOperation {
|
|
12
|
+
/** Operation name, in format of {provider}/{resource}/{operation} */
|
|
13
|
+
name?: string;
|
|
14
|
+
/** Indicates whether the operation applies to data-plane. */
|
|
15
|
+
isDataAction?: string;
|
|
16
|
+
/** Display metadata associated with the operation. */
|
|
17
|
+
display?: ResourceProviderOperationDisplay;
|
|
18
|
+
}
|
|
19
|
+
/** Display metadata associated with the operation. */
|
|
20
|
+
export interface ResourceProviderOperationDisplay {
|
|
21
|
+
/** Resource provider: Microsoft Custom Providers. */
|
|
22
|
+
provider?: string;
|
|
23
|
+
/** Resource on which the operation is performed. */
|
|
24
|
+
resource?: string;
|
|
25
|
+
/** Type of operation: get, read, delete, etc. */
|
|
26
|
+
operation?: string;
|
|
27
|
+
/** Description of this operation. */
|
|
28
|
+
description?: string;
|
|
29
|
+
}
|
|
30
|
+
/** Error response. */
|
|
31
|
+
export interface ErrorResponse {
|
|
32
|
+
/** The error details. */
|
|
33
|
+
error?: ErrorDefinition;
|
|
34
|
+
}
|
|
35
|
+
/** Error definition. */
|
|
36
|
+
export interface ErrorDefinition {
|
|
37
|
+
/**
|
|
38
|
+
* Service specific error code which serves as the substatus for the HTTP error code.
|
|
39
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
40
|
+
*/
|
|
41
|
+
readonly code?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Description of the error.
|
|
44
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
45
|
+
*/
|
|
46
|
+
readonly message?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Internal error details.
|
|
49
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
50
|
+
*/
|
|
51
|
+
readonly details?: ErrorDefinition[];
|
|
52
|
+
}
|
|
53
|
+
/** The shared dashboard resource definition. */
|
|
54
|
+
export interface Dashboard {
|
|
55
|
+
/**
|
|
56
|
+
* Resource Id
|
|
57
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
58
|
+
*/
|
|
59
|
+
readonly id?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Resource name
|
|
62
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
63
|
+
*/
|
|
64
|
+
readonly name?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Resource type
|
|
67
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
68
|
+
*/
|
|
69
|
+
readonly type?: string;
|
|
70
|
+
/** Resource location */
|
|
71
|
+
location: string;
|
|
72
|
+
/** Resource tags */
|
|
73
|
+
tags?: {
|
|
74
|
+
[propertyName: string]: string;
|
|
75
|
+
};
|
|
76
|
+
/** The dashboard lenses. */
|
|
77
|
+
lenses?: DashboardLens[];
|
|
78
|
+
/** The dashboard metadata. */
|
|
79
|
+
metadata?: {
|
|
80
|
+
[propertyName: string]: Record<string, unknown>;
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
/** A dashboard lens. */
|
|
84
|
+
export interface DashboardLens {
|
|
85
|
+
/** The lens order. */
|
|
86
|
+
order: number;
|
|
87
|
+
/** The dashboard parts. */
|
|
88
|
+
parts: DashboardParts[];
|
|
89
|
+
/** The dashboard len's metadata. */
|
|
90
|
+
metadata?: {
|
|
91
|
+
[propertyName: string]: Record<string, unknown>;
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
/** A dashboard part. */
|
|
95
|
+
export interface DashboardParts {
|
|
96
|
+
/** The dashboard's part position. */
|
|
97
|
+
position: DashboardPartsPosition;
|
|
98
|
+
/** The dashboard part's metadata. */
|
|
99
|
+
metadata?: DashboardPartMetadataUnion;
|
|
100
|
+
}
|
|
101
|
+
/** The dashboard's part position. */
|
|
102
|
+
export interface DashboardPartsPosition {
|
|
103
|
+
/** The dashboard's part x coordinate. */
|
|
104
|
+
x: number;
|
|
105
|
+
/** The dashboard's part y coordinate. */
|
|
106
|
+
y: number;
|
|
107
|
+
/** The dashboard's part row span. */
|
|
108
|
+
rowSpan: number;
|
|
109
|
+
/** The dashboard's part column span. */
|
|
110
|
+
colSpan: number;
|
|
111
|
+
/** The dashboard part's metadata. */
|
|
112
|
+
metadata?: {
|
|
113
|
+
[propertyName: string]: Record<string, unknown>;
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
/** A dashboard part metadata. */
|
|
117
|
+
export interface DashboardPartMetadata {
|
|
118
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
119
|
+
type: "Extension/HubsExtension/PartType/MarkdownPart";
|
|
120
|
+
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
121
|
+
[property: string]: any;
|
|
122
|
+
}
|
|
123
|
+
/** The shared dashboard resource definition. */
|
|
124
|
+
export interface PatchableDashboard {
|
|
125
|
+
/** Resource tags */
|
|
126
|
+
tags?: {
|
|
127
|
+
[propertyName: string]: string;
|
|
128
|
+
};
|
|
129
|
+
/** The dashboard lenses. */
|
|
130
|
+
lenses?: DashboardLens[];
|
|
131
|
+
/** The dashboard metadata. */
|
|
132
|
+
metadata?: {
|
|
133
|
+
[propertyName: string]: Record<string, unknown>;
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
/** List of dashboards. */
|
|
137
|
+
export interface DashboardListResult {
|
|
138
|
+
/** The array of custom resource provider manifests. */
|
|
139
|
+
value?: Dashboard[];
|
|
140
|
+
/** The URL to use for getting the next set of results. */
|
|
141
|
+
nextLink?: string;
|
|
142
|
+
}
|
|
143
|
+
/** List of tenant configurations. */
|
|
144
|
+
export interface ConfigurationList {
|
|
145
|
+
/** The array of tenant configurations. */
|
|
146
|
+
value?: Configuration[];
|
|
147
|
+
/** The URL to use for getting the next set of results. */
|
|
148
|
+
nextLink?: string;
|
|
149
|
+
}
|
|
150
|
+
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
151
|
+
export interface Resource {
|
|
152
|
+
/**
|
|
153
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
154
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
155
|
+
*/
|
|
156
|
+
readonly id?: string;
|
|
157
|
+
/**
|
|
158
|
+
* The name of the resource
|
|
159
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
160
|
+
*/
|
|
161
|
+
readonly name?: string;
|
|
162
|
+
/**
|
|
163
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
164
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
165
|
+
*/
|
|
166
|
+
readonly type?: string;
|
|
167
|
+
}
|
|
168
|
+
/** List of list of items that violate tenant's configuration. */
|
|
169
|
+
export interface ViolationsList {
|
|
170
|
+
/** The array of violations. */
|
|
171
|
+
value?: Violation[];
|
|
172
|
+
/** The URL to use for getting the next set of results. */
|
|
173
|
+
nextLink?: string;
|
|
174
|
+
}
|
|
175
|
+
/** Violation information. */
|
|
176
|
+
export interface Violation {
|
|
177
|
+
/**
|
|
178
|
+
* Id of the item that violates tenant configuration.
|
|
179
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
180
|
+
*/
|
|
181
|
+
readonly id?: string;
|
|
182
|
+
/**
|
|
183
|
+
* Id of the user who owns violated item.
|
|
184
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
185
|
+
*/
|
|
186
|
+
readonly userId?: string;
|
|
187
|
+
/**
|
|
188
|
+
* Error message.
|
|
189
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
190
|
+
*/
|
|
191
|
+
readonly errorMessage?: string;
|
|
192
|
+
}
|
|
193
|
+
/** Markdown part settings. */
|
|
194
|
+
export interface MarkdownPartMetadataSettings {
|
|
195
|
+
/** The content of markdown part. */
|
|
196
|
+
content?: MarkdownPartMetadataSettingsContent;
|
|
197
|
+
}
|
|
198
|
+
/** The content of markdown part. */
|
|
199
|
+
export interface MarkdownPartMetadataSettingsContent {
|
|
200
|
+
/** The setting of the content of markdown part. */
|
|
201
|
+
settings?: MarkdownPartMetadataSettingsContentSettings;
|
|
202
|
+
}
|
|
203
|
+
/** The setting of the content of markdown part. */
|
|
204
|
+
export interface MarkdownPartMetadataSettingsContentSettings {
|
|
205
|
+
/** The content of the markdown part. */
|
|
206
|
+
content?: string;
|
|
207
|
+
/** The title of the markdown part. */
|
|
208
|
+
title?: string;
|
|
209
|
+
/** The subtitle of the markdown part. */
|
|
210
|
+
subtitle?: string;
|
|
211
|
+
/** The source of the content of the markdown part. */
|
|
212
|
+
markdownSource?: number;
|
|
213
|
+
/** The uri of markdown content. */
|
|
214
|
+
markdownUri?: string;
|
|
215
|
+
}
|
|
216
|
+
/** Markdown part metadata. */
|
|
217
|
+
export declare type MarkdownPartMetadata = DashboardPartMetadata & {
|
|
218
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
219
|
+
type: "Extension/HubsExtension/PartType/MarkdownPart";
|
|
220
|
+
/** Input to dashboard part. */
|
|
221
|
+
inputs?: Record<string, unknown>[];
|
|
222
|
+
/** Markdown part settings. */
|
|
223
|
+
settings?: MarkdownPartMetadataSettings;
|
|
224
|
+
};
|
|
225
|
+
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
226
|
+
export declare type ProxyResource = Resource & {};
|
|
227
|
+
/** Tenant configuration. */
|
|
228
|
+
export declare type Configuration = ProxyResource & {
|
|
229
|
+
/** When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited. */
|
|
230
|
+
enforcePrivateMarkdownStorage?: boolean;
|
|
231
|
+
};
|
|
232
|
+
/** Known values of {@link ConfigurationName} that the service accepts. */
|
|
233
|
+
export declare enum KnownConfigurationName {
|
|
234
|
+
Default = "default"
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* Defines values for ConfigurationName. \
|
|
238
|
+
* {@link KnownConfigurationName} can be used interchangeably with ConfigurationName,
|
|
239
|
+
* this enum contains the known values that the service supports.
|
|
240
|
+
* ### Known values supported by the service
|
|
241
|
+
* **default**
|
|
242
|
+
*/
|
|
243
|
+
export declare type ConfigurationName = string;
|
|
244
|
+
/** Optional parameters. */
|
|
245
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
246
|
+
}
|
|
247
|
+
/** Contains response data for the list operation. */
|
|
248
|
+
export declare type OperationsListResponse = ResourceProviderOperationList;
|
|
249
|
+
/** Optional parameters. */
|
|
250
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
251
|
+
}
|
|
252
|
+
/** Contains response data for the listNext operation. */
|
|
253
|
+
export declare type OperationsListNextResponse = ResourceProviderOperationList;
|
|
254
|
+
/** Optional parameters. */
|
|
255
|
+
export interface DashboardsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
256
|
+
}
|
|
257
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
258
|
+
export declare type DashboardsCreateOrUpdateResponse = Dashboard;
|
|
259
|
+
/** Optional parameters. */
|
|
260
|
+
export interface DashboardsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
261
|
+
}
|
|
262
|
+
/** Optional parameters. */
|
|
263
|
+
export interface DashboardsGetOptionalParams extends coreClient.OperationOptions {
|
|
264
|
+
}
|
|
265
|
+
/** Contains response data for the get operation. */
|
|
266
|
+
export declare type DashboardsGetResponse = Dashboard;
|
|
267
|
+
/** Optional parameters. */
|
|
268
|
+
export interface DashboardsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
269
|
+
}
|
|
270
|
+
/** Contains response data for the update operation. */
|
|
271
|
+
export declare type DashboardsUpdateResponse = Dashboard;
|
|
272
|
+
/** Optional parameters. */
|
|
273
|
+
export interface DashboardsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
274
|
+
}
|
|
275
|
+
/** Contains response data for the listByResourceGroup operation. */
|
|
276
|
+
export declare type DashboardsListByResourceGroupResponse = DashboardListResult;
|
|
277
|
+
/** Optional parameters. */
|
|
278
|
+
export interface DashboardsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
279
|
+
}
|
|
280
|
+
/** Contains response data for the listBySubscription operation. */
|
|
281
|
+
export declare type DashboardsListBySubscriptionResponse = DashboardListResult;
|
|
282
|
+
/** Optional parameters. */
|
|
283
|
+
export interface DashboardsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
284
|
+
}
|
|
285
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
|
286
|
+
export declare type DashboardsListByResourceGroupNextResponse = DashboardListResult;
|
|
287
|
+
/** Optional parameters. */
|
|
288
|
+
export interface DashboardsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
289
|
+
}
|
|
290
|
+
/** Contains response data for the listBySubscriptionNext operation. */
|
|
291
|
+
export declare type DashboardsListBySubscriptionNextResponse = DashboardListResult;
|
|
292
|
+
/** Optional parameters. */
|
|
293
|
+
export interface TenantConfigurationsListOptionalParams extends coreClient.OperationOptions {
|
|
294
|
+
}
|
|
295
|
+
/** Contains response data for the list operation. */
|
|
296
|
+
export declare type TenantConfigurationsListResponse = ConfigurationList;
|
|
297
|
+
/** Optional parameters. */
|
|
298
|
+
export interface TenantConfigurationsGetOptionalParams extends coreClient.OperationOptions {
|
|
299
|
+
}
|
|
300
|
+
/** Contains response data for the get operation. */
|
|
301
|
+
export declare type TenantConfigurationsGetResponse = Configuration;
|
|
302
|
+
/** Optional parameters. */
|
|
303
|
+
export interface TenantConfigurationsCreateOptionalParams extends coreClient.OperationOptions {
|
|
304
|
+
}
|
|
305
|
+
/** Contains response data for the create operation. */
|
|
306
|
+
export declare type TenantConfigurationsCreateResponse = Configuration;
|
|
307
|
+
/** Optional parameters. */
|
|
308
|
+
export interface TenantConfigurationsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
309
|
+
}
|
|
310
|
+
/** Optional parameters. */
|
|
311
|
+
export interface TenantConfigurationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
312
|
+
}
|
|
313
|
+
/** Contains response data for the listNext operation. */
|
|
314
|
+
export declare type TenantConfigurationsListNextResponse = ConfigurationList;
|
|
315
|
+
/** Optional parameters. */
|
|
316
|
+
export interface ListTenantConfigurationViolationsListOptionalParams extends coreClient.OperationOptions {
|
|
317
|
+
}
|
|
318
|
+
/** Contains response data for the list operation. */
|
|
319
|
+
export declare type ListTenantConfigurationViolationsListResponse = ViolationsList;
|
|
320
|
+
/** Optional parameters. */
|
|
321
|
+
export interface ListTenantConfigurationViolationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
322
|
+
}
|
|
323
|
+
/** Contains response data for the listNext operation. */
|
|
324
|
+
export declare type ListTenantConfigurationViolationsListNextResponse = ViolationsList;
|
|
325
|
+
/** Optional parameters. */
|
|
326
|
+
export interface PortalOptionalParams extends coreClient.ServiceClientOptions {
|
|
327
|
+
/** server parameter */
|
|
328
|
+
$host?: string;
|
|
329
|
+
/** Api Version */
|
|
330
|
+
apiVersion?: string;
|
|
331
|
+
/** Overrides client endpoint. */
|
|
332
|
+
endpoint?: string;
|
|
333
|
+
}
|
|
334
|
+
//# 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,13 @@
|
|
|
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 ConfigurationName} that the service accepts. */
|
|
9
|
+
export var KnownConfigurationName;
|
|
10
|
+
(function (KnownConfigurationName) {
|
|
11
|
+
KnownConfigurationName["Default"] = "default";
|
|
12
|
+
})(KnownConfigurationName || (KnownConfigurationName = {}));
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAuPH,0EAA0E;AAC1E,MAAM,CAAN,IAAY,sBAEX;AAFD,WAAY,sBAAsB;IAChC,6CAAmB,CAAA;AACrB,CAAC,EAFW,sBAAsB,KAAtB,sBAAsB,QAEjC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
export declare const ResourceProviderOperationList: coreClient.CompositeMapper;
|
|
3
|
+
export declare const ResourceProviderOperation: coreClient.CompositeMapper;
|
|
4
|
+
export declare const ResourceProviderOperationDisplay: coreClient.CompositeMapper;
|
|
5
|
+
export declare const ErrorResponse: coreClient.CompositeMapper;
|
|
6
|
+
export declare const ErrorDefinition: coreClient.CompositeMapper;
|
|
7
|
+
export declare const Dashboard: coreClient.CompositeMapper;
|
|
8
|
+
export declare const DashboardLens: coreClient.CompositeMapper;
|
|
9
|
+
export declare const DashboardParts: coreClient.CompositeMapper;
|
|
10
|
+
export declare const DashboardPartsPosition: coreClient.CompositeMapper;
|
|
11
|
+
export declare const DashboardPartMetadata: coreClient.CompositeMapper;
|
|
12
|
+
export declare const PatchableDashboard: coreClient.CompositeMapper;
|
|
13
|
+
export declare const DashboardListResult: coreClient.CompositeMapper;
|
|
14
|
+
export declare const ConfigurationList: coreClient.CompositeMapper;
|
|
15
|
+
export declare const Resource: coreClient.CompositeMapper;
|
|
16
|
+
export declare const ViolationsList: coreClient.CompositeMapper;
|
|
17
|
+
export declare const Violation: coreClient.CompositeMapper;
|
|
18
|
+
export declare const MarkdownPartMetadataSettings: coreClient.CompositeMapper;
|
|
19
|
+
export declare const MarkdownPartMetadataSettingsContent: coreClient.CompositeMapper;
|
|
20
|
+
export declare const MarkdownPartMetadataSettingsContentSettings: coreClient.CompositeMapper;
|
|
21
|
+
export declare const MarkdownPartMetadata: coreClient.CompositeMapper;
|
|
22
|
+
export declare const ProxyResource: coreClient.CompositeMapper;
|
|
23
|
+
export declare const Configuration: coreClient.CompositeMapper;
|
|
24
|
+
export declare let discriminators: {
|
|
25
|
+
DashboardPartMetadata: coreClient.CompositeMapper;
|
|
26
|
+
"DashboardPartMetadata.Extension/HubsExtension/PartType/MarkdownPart": coreClient.CompositeMapper;
|
|
27
|
+
};
|
|
28
|
+
//# 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,6BAA6B,EAAE,UAAU,CAAC,eAyBtD,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,eA0BlD,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,eA+BzD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eActC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAkCxC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eA+DlC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAoCtC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqBvC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eA4C/C,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eAqB9C,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,eAmC3C,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAyB5C,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,eAyB1C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAyBvC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eA4BlC,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,eAcrD,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,UAAU,CAAC,eAc5D,CAAC;AAEF,eAAO,MAAM,2CAA2C,EAAE,UAAU,CAAC,eAqCpE,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAgC7C,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAQtC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eActC,CAAC;AAEF,eAAO,IAAI,cAAc;;;CAGxB,CAAC"}
|