@azure/arm-resourcesdeployments 1.0.0-alpha.20250716.1 → 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.
|
@@ -1,1226 +1,1226 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-resourcesdeployments"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
|
8
|
-
import * as coreClient from '@azure/core-client';
|
|
9
|
-
import { OperationState } from '@azure/core-lro';
|
|
10
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
-
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
-
|
|
13
|
-
// @public
|
|
14
|
-
export interface Alias {
|
|
15
|
-
readonly defaultMetadata?: AliasPathMetadata;
|
|
16
|
-
defaultPath?: string;
|
|
17
|
-
defaultPattern?: AliasPattern;
|
|
18
|
-
name?: string;
|
|
19
|
-
paths?: AliasPath[];
|
|
20
|
-
type?: AliasType;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
// @public
|
|
24
|
-
export interface AliasPath {
|
|
25
|
-
apiVersions?: string[];
|
|
26
|
-
readonly metadata?: AliasPathMetadata;
|
|
27
|
-
path?: string;
|
|
28
|
-
pattern?: AliasPattern;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// @public
|
|
32
|
-
export type AliasPathAttributes = string;
|
|
33
|
-
|
|
34
|
-
// @public (undocumented)
|
|
35
|
-
export interface AliasPathMetadata {
|
|
36
|
-
readonly attributes?: AliasPathAttributes;
|
|
37
|
-
readonly type?: AliasPathTokenType;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export type AliasPathTokenType = string;
|
|
42
|
-
|
|
43
|
-
// @public
|
|
44
|
-
export interface AliasPattern {
|
|
45
|
-
phrase?: string;
|
|
46
|
-
type?: AliasPatternType;
|
|
47
|
-
variable?: string;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
// @public
|
|
51
|
-
export type AliasPatternType = "NotSpecified" | "Extract";
|
|
52
|
-
|
|
53
|
-
// @public
|
|
54
|
-
export type AliasType = "NotSpecified" | "PlainText" | "Mask";
|
|
55
|
-
|
|
56
|
-
// @public (undocumented)
|
|
57
|
-
export interface ApiProfile {
|
|
58
|
-
readonly apiVersion?: string;
|
|
59
|
-
readonly profileVersion?: string;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
// @public
|
|
63
|
-
export interface BasicDependency {
|
|
64
|
-
id?: string;
|
|
65
|
-
resourceName?: string;
|
|
66
|
-
resourceType?: string;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// @public
|
|
70
|
-
export type ChangeType = "Create" | "Delete" | "Ignore" | "Deploy" | "NoChange" | "Modify" | "Unsupported";
|
|
71
|
-
|
|
72
|
-
// @public
|
|
73
|
-
export interface CloudError {
|
|
74
|
-
error?: ErrorResponse;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export interface DebugSetting {
|
|
79
|
-
detailLevel?: string;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
// @public
|
|
83
|
-
export interface Dependency {
|
|
84
|
-
dependsOn?: BasicDependency[];
|
|
85
|
-
id?: string;
|
|
86
|
-
resourceName?: string;
|
|
87
|
-
resourceType?: string;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// @public
|
|
91
|
-
export interface Deployment {
|
|
92
|
-
identity?: DeploymentIdentity;
|
|
93
|
-
location?: string;
|
|
94
|
-
properties: DeploymentProperties;
|
|
95
|
-
tags?: {
|
|
96
|
-
[propertyName: string]: string;
|
|
97
|
-
};
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// @public (undocumented)
|
|
101
|
-
export interface DeploymentDiagnosticsDefinition {
|
|
102
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
103
|
-
readonly code: string;
|
|
104
|
-
readonly level: Level;
|
|
105
|
-
readonly message: string;
|
|
106
|
-
readonly target?: string;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface DeploymentExportResult {
|
|
111
|
-
template?: Record<string, unknown>;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export interface DeploymentExtended {
|
|
116
|
-
readonly id?: string;
|
|
117
|
-
location?: string;
|
|
118
|
-
readonly name?: string;
|
|
119
|
-
properties?: DeploymentPropertiesExtended;
|
|
120
|
-
tags?: {
|
|
121
|
-
[propertyName: string]: string;
|
|
122
|
-
};
|
|
123
|
-
readonly type?: string;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// @public
|
|
127
|
-
export interface DeploymentExtendedFilter {
|
|
128
|
-
provisioningState?: string;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
// @public (undocumented)
|
|
132
|
-
export interface DeploymentExtensionConfigItem {
|
|
133
|
-
keyVaultReference?: KeyVaultParameterReference;
|
|
134
|
-
readonly type?: ExtensionConfigPropertyType;
|
|
135
|
-
value?: any;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
// @public (undocumented)
|
|
139
|
-
export interface DeploymentExtensionDefinition {
|
|
140
|
-
readonly alias?: string;
|
|
141
|
-
readonly config?: {
|
|
142
|
-
[propertyName: string]: DeploymentExtensionConfigItem;
|
|
143
|
-
};
|
|
144
|
-
readonly configId?: string;
|
|
145
|
-
readonly name?: string;
|
|
146
|
-
readonly version?: string;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
// @public
|
|
150
|
-
export interface DeploymentExternalInput {
|
|
151
|
-
value: any;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
// @public
|
|
155
|
-
export interface DeploymentExternalInputDefinition {
|
|
156
|
-
config?: any;
|
|
157
|
-
kind: string;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export interface DeploymentIdentity {
|
|
162
|
-
type: DeploymentIdentityType;
|
|
163
|
-
userAssignedIdentities?: {
|
|
164
|
-
[propertyName: string]: UserAssignedIdentity | null;
|
|
165
|
-
};
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
// @public
|
|
169
|
-
export type DeploymentIdentityType = string;
|
|
170
|
-
|
|
171
|
-
// @public
|
|
172
|
-
export interface DeploymentListResult {
|
|
173
|
-
readonly nextLink?: string;
|
|
174
|
-
value?: DeploymentExtended[];
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
// @public
|
|
178
|
-
export type DeploymentMode = "Incremental" | "Complete";
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export interface DeploymentOperation {
|
|
182
|
-
readonly id?: string;
|
|
183
|
-
readonly operationId?: string;
|
|
184
|
-
properties?: DeploymentOperationProperties;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
// @public
|
|
188
|
-
export interface DeploymentOperationProperties {
|
|
189
|
-
readonly duration?: string;
|
|
190
|
-
readonly provisioningOperation?: ProvisioningOperation;
|
|
191
|
-
readonly provisioningState?: string;
|
|
192
|
-
readonly request?: HttpMessage;
|
|
193
|
-
readonly response?: HttpMessage;
|
|
194
|
-
readonly serviceRequestId?: string;
|
|
195
|
-
readonly statusCode?: string;
|
|
196
|
-
readonly statusMessage?: StatusMessage;
|
|
197
|
-
readonly targetResource?: TargetResource;
|
|
198
|
-
readonly timestamp?: Date;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
// @public
|
|
202
|
-
export interface DeploymentOperations {
|
|
203
|
-
get(resourceGroupName: string, deploymentName: string, operationId: string, options?: DeploymentOperationsGetOptionalParams): Promise<DeploymentOperationsGetResponse>;
|
|
204
|
-
getAtManagementGroupScope(groupId: string, deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtManagementGroupScopeOptionalParams): Promise<DeploymentOperationsGetAtManagementGroupScopeResponse>;
|
|
205
|
-
getAtScope(scope: string, deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtScopeOptionalParams): Promise<DeploymentOperationsGetAtScopeResponse>;
|
|
206
|
-
getAtSubscriptionScope(deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtSubscriptionScopeOptionalParams): Promise<DeploymentOperationsGetAtSubscriptionScopeResponse>;
|
|
207
|
-
getAtTenantScope(deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtTenantScopeOptionalParams): Promise<DeploymentOperationsGetAtTenantScopeResponse>;
|
|
208
|
-
list(resourceGroupName: string, deploymentName: string, options?: DeploymentOperationsListOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
209
|
-
listAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
210
|
-
listAtScope(scope: string, deploymentName: string, options?: DeploymentOperationsListAtScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
211
|
-
listAtSubscriptionScope(deploymentName: string, options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
212
|
-
listAtTenantScope(deploymentName: string, options?: DeploymentOperationsListAtTenantScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
// @public
|
|
216
|
-
export interface DeploymentOperationsGetAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// @public
|
|
220
|
-
export type DeploymentOperationsGetAtManagementGroupScopeResponse = DeploymentOperation;
|
|
221
|
-
|
|
222
|
-
// @public
|
|
223
|
-
export interface DeploymentOperationsGetAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
// @public
|
|
227
|
-
export type DeploymentOperationsGetAtScopeResponse = DeploymentOperation;
|
|
228
|
-
|
|
229
|
-
// @public
|
|
230
|
-
export interface DeploymentOperationsGetAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
// @public
|
|
234
|
-
export type DeploymentOperationsGetAtSubscriptionScopeResponse = DeploymentOperation;
|
|
235
|
-
|
|
236
|
-
// @public
|
|
237
|
-
export interface DeploymentOperationsGetAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
// @public
|
|
241
|
-
export type DeploymentOperationsGetAtTenantScopeResponse = DeploymentOperation;
|
|
242
|
-
|
|
243
|
-
// @public
|
|
244
|
-
export interface DeploymentOperationsGetOptionalParams extends coreClient.OperationOptions {
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
// @public
|
|
248
|
-
export type DeploymentOperationsGetResponse = DeploymentOperation;
|
|
249
|
-
|
|
250
|
-
// @public
|
|
251
|
-
export interface DeploymentOperationsListAtManagementGroupScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
// @public
|
|
255
|
-
export type DeploymentOperationsListAtManagementGroupScopeNextResponse = DeploymentOperationsListResult;
|
|
256
|
-
|
|
257
|
-
// @public
|
|
258
|
-
export interface DeploymentOperationsListAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
259
|
-
top?: number;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
// @public
|
|
263
|
-
export type DeploymentOperationsListAtManagementGroupScopeResponse = DeploymentOperationsListResult;
|
|
264
|
-
|
|
265
|
-
// @public
|
|
266
|
-
export interface DeploymentOperationsListAtScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
// @public
|
|
270
|
-
export type DeploymentOperationsListAtScopeNextResponse = DeploymentOperationsListResult;
|
|
271
|
-
|
|
272
|
-
// @public
|
|
273
|
-
export interface DeploymentOperationsListAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
274
|
-
top?: number;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
// @public
|
|
278
|
-
export type DeploymentOperationsListAtScopeResponse = DeploymentOperationsListResult;
|
|
279
|
-
|
|
280
|
-
// @public
|
|
281
|
-
export interface DeploymentOperationsListAtSubscriptionScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
// @public
|
|
285
|
-
export type DeploymentOperationsListAtSubscriptionScopeNextResponse = DeploymentOperationsListResult;
|
|
286
|
-
|
|
287
|
-
// @public
|
|
288
|
-
export interface DeploymentOperationsListAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
289
|
-
top?: number;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
// @public
|
|
293
|
-
export type DeploymentOperationsListAtSubscriptionScopeResponse = DeploymentOperationsListResult;
|
|
294
|
-
|
|
295
|
-
// @public
|
|
296
|
-
export interface DeploymentOperationsListAtTenantScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
// @public
|
|
300
|
-
export type DeploymentOperationsListAtTenantScopeNextResponse = DeploymentOperationsListResult;
|
|
301
|
-
|
|
302
|
-
// @public
|
|
303
|
-
export interface DeploymentOperationsListAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
304
|
-
top?: number;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export type DeploymentOperationsListAtTenantScopeResponse = DeploymentOperationsListResult;
|
|
309
|
-
|
|
310
|
-
// @public
|
|
311
|
-
export interface DeploymentOperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export type DeploymentOperationsListNextResponse = DeploymentOperationsListResult;
|
|
316
|
-
|
|
317
|
-
// @public
|
|
318
|
-
export interface DeploymentOperationsListOptionalParams extends coreClient.OperationOptions {
|
|
319
|
-
top?: number;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
// @public
|
|
323
|
-
export type DeploymentOperationsListResponse = DeploymentOperationsListResult;
|
|
324
|
-
|
|
325
|
-
// @public
|
|
326
|
-
export interface DeploymentOperationsListResult {
|
|
327
|
-
readonly nextLink?: string;
|
|
328
|
-
value?: DeploymentOperation[];
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
// @public
|
|
332
|
-
export interface DeploymentParameter {
|
|
333
|
-
expression?: string;
|
|
334
|
-
reference?: KeyVaultParameterReference;
|
|
335
|
-
value?: any;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
// @public
|
|
339
|
-
export interface DeploymentProperties {
|
|
340
|
-
debugSetting?: DebugSetting;
|
|
341
|
-
expressionEvaluationOptions?: ExpressionEvaluationOptions;
|
|
342
|
-
extensionConfigs?: {
|
|
343
|
-
[propertyName: string]: {
|
|
344
|
-
[propertyName: string]: DeploymentExtensionConfigItem;
|
|
345
|
-
};
|
|
346
|
-
};
|
|
347
|
-
externalInputDefinitions?: {
|
|
348
|
-
[propertyName: string]: DeploymentExternalInputDefinition;
|
|
349
|
-
};
|
|
350
|
-
externalInputs?: {
|
|
351
|
-
[propertyName: string]: DeploymentExternalInput;
|
|
352
|
-
};
|
|
353
|
-
mode: DeploymentMode;
|
|
354
|
-
onErrorDeployment?: OnErrorDeployment;
|
|
355
|
-
parameters?: {
|
|
356
|
-
[propertyName: string]: DeploymentParameter;
|
|
357
|
-
};
|
|
358
|
-
parametersLink?: ParametersLink;
|
|
359
|
-
template?: Record<string, unknown>;
|
|
360
|
-
templateLink?: TemplateLink;
|
|
361
|
-
validationLevel?: ValidationLevel;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
// @public
|
|
365
|
-
export interface DeploymentPropertiesExtended {
|
|
366
|
-
readonly correlationId?: string;
|
|
367
|
-
readonly debugSetting?: DebugSetting;
|
|
368
|
-
readonly dependencies?: Dependency[];
|
|
369
|
-
readonly diagnostics?: DeploymentDiagnosticsDefinition[];
|
|
370
|
-
readonly duration?: string;
|
|
371
|
-
readonly error?: ErrorResponse;
|
|
372
|
-
readonly extensions?: DeploymentExtensionDefinition[];
|
|
373
|
-
readonly mode?: DeploymentMode;
|
|
374
|
-
readonly onErrorDeployment?: OnErrorDeploymentExtended;
|
|
375
|
-
readonly outputResources?: ResourceReference[];
|
|
376
|
-
readonly outputs?: Record<string, unknown>;
|
|
377
|
-
readonly parameters?: Record<string, unknown>;
|
|
378
|
-
readonly parametersLink?: ParametersLink;
|
|
379
|
-
readonly providers?: Provider[];
|
|
380
|
-
readonly provisioningState?: ProvisioningState;
|
|
381
|
-
readonly templateHash?: string;
|
|
382
|
-
readonly templateLink?: TemplateLink;
|
|
383
|
-
readonly timestamp?: Date;
|
|
384
|
-
readonly validatedResources?: ResourceReference[];
|
|
385
|
-
validationLevel?: ValidationLevel;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
// @public
|
|
389
|
-
export interface Deployments {
|
|
390
|
-
beginCreateOrUpdate(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateResponse>, DeploymentsCreateOrUpdateResponse>>;
|
|
391
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateOptionalParams): Promise<DeploymentsCreateOrUpdateResponse>;
|
|
392
|
-
beginCreateOrUpdateAtManagementGroupScope(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtManagementGroupScopeResponse>, DeploymentsCreateOrUpdateAtManagementGroupScopeResponse>>;
|
|
393
|
-
beginCreateOrUpdateAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtManagementGroupScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtManagementGroupScopeResponse>;
|
|
394
|
-
beginCreateOrUpdateAtScope(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtScopeResponse>, DeploymentsCreateOrUpdateAtScopeResponse>>;
|
|
395
|
-
beginCreateOrUpdateAtScopeAndWait(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtScopeResponse>;
|
|
396
|
-
beginCreateOrUpdateAtSubscriptionScope(deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtSubscriptionScopeResponse>, DeploymentsCreateOrUpdateAtSubscriptionScopeResponse>>;
|
|
397
|
-
beginCreateOrUpdateAtSubscriptionScopeAndWait(deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtSubscriptionScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtSubscriptionScopeResponse>;
|
|
398
|
-
beginCreateOrUpdateAtTenantScope(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtTenantScopeResponse>, DeploymentsCreateOrUpdateAtTenantScopeResponse>>;
|
|
399
|
-
beginCreateOrUpdateAtTenantScopeAndWait(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtTenantScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtTenantScopeResponse>;
|
|
400
|
-
beginDelete(resourceGroupName: string, deploymentName: string, options?: DeploymentsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
401
|
-
beginDeleteAndWait(resourceGroupName: string, deploymentName: string, options?: DeploymentsDeleteOptionalParams): Promise<void>;
|
|
402
|
-
beginDeleteAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsDeleteAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
403
|
-
beginDeleteAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, options?: DeploymentsDeleteAtManagementGroupScopeOptionalParams): Promise<void>;
|
|
404
|
-
beginDeleteAtScope(scope: string, deploymentName: string, options?: DeploymentsDeleteAtScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
405
|
-
beginDeleteAtScopeAndWait(scope: string, deploymentName: string, options?: DeploymentsDeleteAtScopeOptionalParams): Promise<void>;
|
|
406
|
-
beginDeleteAtSubscriptionScope(deploymentName: string, options?: DeploymentsDeleteAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
407
|
-
beginDeleteAtSubscriptionScopeAndWait(deploymentName: string, options?: DeploymentsDeleteAtSubscriptionScopeOptionalParams): Promise<void>;
|
|
408
|
-
beginDeleteAtTenantScope(deploymentName: string, options?: DeploymentsDeleteAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
409
|
-
beginDeleteAtTenantScopeAndWait(deploymentName: string, options?: DeploymentsDeleteAtTenantScopeOptionalParams): Promise<void>;
|
|
410
|
-
beginValidate(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateResponse>, DeploymentsValidateResponse>>;
|
|
411
|
-
beginValidateAndWait(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateOptionalParams): Promise<DeploymentsValidateResponse>;
|
|
412
|
-
beginValidateAtManagementGroupScope(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtManagementGroupScopeResponse>, DeploymentsValidateAtManagementGroupScopeResponse>>;
|
|
413
|
-
beginValidateAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtManagementGroupScopeOptionalParams): Promise<DeploymentsValidateAtManagementGroupScopeResponse>;
|
|
414
|
-
beginValidateAtScope(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtScopeResponse>, DeploymentsValidateAtScopeResponse>>;
|
|
415
|
-
beginValidateAtScopeAndWait(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtScopeOptionalParams): Promise<DeploymentsValidateAtScopeResponse>;
|
|
416
|
-
beginValidateAtSubscriptionScope(deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtSubscriptionScopeResponse>, DeploymentsValidateAtSubscriptionScopeResponse>>;
|
|
417
|
-
beginValidateAtSubscriptionScopeAndWait(deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtSubscriptionScopeOptionalParams): Promise<DeploymentsValidateAtSubscriptionScopeResponse>;
|
|
418
|
-
beginValidateAtTenantScope(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtTenantScopeResponse>, DeploymentsValidateAtTenantScopeResponse>>;
|
|
419
|
-
beginValidateAtTenantScopeAndWait(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtTenantScopeOptionalParams): Promise<DeploymentsValidateAtTenantScopeResponse>;
|
|
420
|
-
beginWhatIf(resourceGroupName: string, deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfResponse>, DeploymentsWhatIfResponse>>;
|
|
421
|
-
beginWhatIfAndWait(resourceGroupName: string, deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfOptionalParams): Promise<DeploymentsWhatIfResponse>;
|
|
422
|
-
beginWhatIfAtManagementGroupScope(groupId: string, deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfAtManagementGroupScopeResponse>, DeploymentsWhatIfAtManagementGroupScopeResponse>>;
|
|
423
|
-
beginWhatIfAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtManagementGroupScopeOptionalParams): Promise<DeploymentsWhatIfAtManagementGroupScopeResponse>;
|
|
424
|
-
beginWhatIfAtSubscriptionScope(deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfAtSubscriptionScopeResponse>, DeploymentsWhatIfAtSubscriptionScopeResponse>>;
|
|
425
|
-
beginWhatIfAtSubscriptionScopeAndWait(deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfAtSubscriptionScopeOptionalParams): Promise<DeploymentsWhatIfAtSubscriptionScopeResponse>;
|
|
426
|
-
beginWhatIfAtTenantScope(deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfAtTenantScopeResponse>, DeploymentsWhatIfAtTenantScopeResponse>>;
|
|
427
|
-
beginWhatIfAtTenantScopeAndWait(deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtTenantScopeOptionalParams): Promise<DeploymentsWhatIfAtTenantScopeResponse>;
|
|
428
|
-
calculateTemplateHash(template: Record<string, unknown>, options?: DeploymentsCalculateTemplateHashOptionalParams): Promise<DeploymentsCalculateTemplateHashResponse>;
|
|
429
|
-
cancel(resourceGroupName: string, deploymentName: string, options?: DeploymentsCancelOptionalParams): Promise<void>;
|
|
430
|
-
cancelAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsCancelAtManagementGroupScopeOptionalParams): Promise<void>;
|
|
431
|
-
cancelAtScope(scope: string, deploymentName: string, options?: DeploymentsCancelAtScopeOptionalParams): Promise<void>;
|
|
432
|
-
cancelAtSubscriptionScope(deploymentName: string, options?: DeploymentsCancelAtSubscriptionScopeOptionalParams): Promise<void>;
|
|
433
|
-
cancelAtTenantScope(deploymentName: string, options?: DeploymentsCancelAtTenantScopeOptionalParams): Promise<void>;
|
|
434
|
-
checkExistence(resourceGroupName: string, deploymentName: string, options?: DeploymentsCheckExistenceOptionalParams): Promise<DeploymentsCheckExistenceResponse>;
|
|
435
|
-
checkExistenceAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsCheckExistenceAtManagementGroupScopeOptionalParams): Promise<DeploymentsCheckExistenceAtManagementGroupScopeResponse>;
|
|
436
|
-
checkExistenceAtScope(scope: string, deploymentName: string, options?: DeploymentsCheckExistenceAtScopeOptionalParams): Promise<DeploymentsCheckExistenceAtScopeResponse>;
|
|
437
|
-
checkExistenceAtSubscriptionScope(deploymentName: string, options?: DeploymentsCheckExistenceAtSubscriptionScopeOptionalParams): Promise<DeploymentsCheckExistenceAtSubscriptionScopeResponse>;
|
|
438
|
-
checkExistenceAtTenantScope(deploymentName: string, options?: DeploymentsCheckExistenceAtTenantScopeOptionalParams): Promise<DeploymentsCheckExistenceAtTenantScopeResponse>;
|
|
439
|
-
exportTemplate(resourceGroupName: string, deploymentName: string, options?: DeploymentsExportTemplateOptionalParams): Promise<DeploymentsExportTemplateResponse>;
|
|
440
|
-
exportTemplateAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsExportTemplateAtManagementGroupScopeOptionalParams): Promise<DeploymentsExportTemplateAtManagementGroupScopeResponse>;
|
|
441
|
-
exportTemplateAtScope(scope: string, deploymentName: string, options?: DeploymentsExportTemplateAtScopeOptionalParams): Promise<DeploymentsExportTemplateAtScopeResponse>;
|
|
442
|
-
exportTemplateAtSubscriptionScope(deploymentName: string, options?: DeploymentsExportTemplateAtSubscriptionScopeOptionalParams): Promise<DeploymentsExportTemplateAtSubscriptionScopeResponse>;
|
|
443
|
-
exportTemplateAtTenantScope(deploymentName: string, options?: DeploymentsExportTemplateAtTenantScopeOptionalParams): Promise<DeploymentsExportTemplateAtTenantScopeResponse>;
|
|
444
|
-
get(resourceGroupName: string, deploymentName: string, options?: DeploymentsGetOptionalParams): Promise<DeploymentsGetResponse>;
|
|
445
|
-
getAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsGetAtManagementGroupScopeOptionalParams): Promise<DeploymentsGetAtManagementGroupScopeResponse>;
|
|
446
|
-
getAtScope(scope: string, deploymentName: string, options?: DeploymentsGetAtScopeOptionalParams): Promise<DeploymentsGetAtScopeResponse>;
|
|
447
|
-
getAtSubscriptionScope(deploymentName: string, options?: DeploymentsGetAtSubscriptionScopeOptionalParams): Promise<DeploymentsGetAtSubscriptionScopeResponse>;
|
|
448
|
-
getAtTenantScope(deploymentName: string, options?: DeploymentsGetAtTenantScopeOptionalParams): Promise<DeploymentsGetAtTenantScopeResponse>;
|
|
449
|
-
listAtManagementGroupScope(groupId: string, options?: DeploymentsListAtManagementGroupScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
450
|
-
listAtScope(scope: string, options?: DeploymentsListAtScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
451
|
-
listAtSubscriptionScope(options?: DeploymentsListAtSubscriptionScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
452
|
-
listAtTenantScope(options?: DeploymentsListAtTenantScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
453
|
-
listByResourceGroup(resourceGroupName: string, options?: DeploymentsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
// @public
|
|
457
|
-
export interface DeploymentsCalculateTemplateHashOptionalParams extends coreClient.OperationOptions {
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
// @public
|
|
461
|
-
export type DeploymentsCalculateTemplateHashResponse = TemplateHashResult;
|
|
462
|
-
|
|
463
|
-
// @public
|
|
464
|
-
export interface DeploymentsCancelAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
// @public
|
|
468
|
-
export interface DeploymentsCancelAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
// @public
|
|
472
|
-
export interface DeploymentsCancelAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
// @public
|
|
476
|
-
export interface DeploymentsCancelAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
// @public
|
|
480
|
-
export interface DeploymentsCancelOptionalParams extends coreClient.OperationOptions {
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
// @public
|
|
484
|
-
export interface DeploymentsCheckExistenceAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
// @public
|
|
488
|
-
export type DeploymentsCheckExistenceAtManagementGroupScopeResponse = {
|
|
489
|
-
body: boolean;
|
|
490
|
-
};
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export interface DeploymentsCheckExistenceAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
// @public
|
|
497
|
-
export type DeploymentsCheckExistenceAtScopeResponse = {
|
|
498
|
-
body: boolean;
|
|
499
|
-
};
|
|
500
|
-
|
|
501
|
-
// @public
|
|
502
|
-
export interface DeploymentsCheckExistenceAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
// @public
|
|
506
|
-
export type DeploymentsCheckExistenceAtSubscriptionScopeResponse = {
|
|
507
|
-
body: boolean;
|
|
508
|
-
};
|
|
509
|
-
|
|
510
|
-
// @public
|
|
511
|
-
export interface DeploymentsCheckExistenceAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
// @public
|
|
515
|
-
export type DeploymentsCheckExistenceAtTenantScopeResponse = {
|
|
516
|
-
body: boolean;
|
|
517
|
-
};
|
|
518
|
-
|
|
519
|
-
// @public
|
|
520
|
-
export interface DeploymentsCheckExistenceOptionalParams extends coreClient.OperationOptions {
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
// @public
|
|
524
|
-
export type DeploymentsCheckExistenceResponse = {
|
|
525
|
-
body: boolean;
|
|
526
|
-
};
|
|
527
|
-
|
|
528
|
-
// @public (undocumented)
|
|
529
|
-
export class DeploymentsClient extends coreClient.ServiceClient {
|
|
530
|
-
// (undocumented)
|
|
531
|
-
$host: string;
|
|
532
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DeploymentsClientOptionalParams);
|
|
533
|
-
constructor(credentials: coreAuth.TokenCredential, options?: DeploymentsClientOptionalParams);
|
|
534
|
-
// (undocumented)
|
|
535
|
-
apiVersion: string;
|
|
536
|
-
// (undocumented)
|
|
537
|
-
deploymentOperations: DeploymentOperations;
|
|
538
|
-
// (undocumented)
|
|
539
|
-
deployments: Deployments;
|
|
540
|
-
// (undocumented)
|
|
541
|
-
subscriptionId?: string;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
// @public
|
|
545
|
-
export interface DeploymentsClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
546
|
-
$host?: string;
|
|
547
|
-
apiVersion?: string;
|
|
548
|
-
endpoint?: string;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
// @public
|
|
552
|
-
export interface DeploymentsCreateOrUpdateAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
553
|
-
resumeFrom?: string;
|
|
554
|
-
updateIntervalInMs?: number;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
// @public
|
|
558
|
-
export type DeploymentsCreateOrUpdateAtManagementGroupScopeResponse = DeploymentExtended;
|
|
559
|
-
|
|
560
|
-
// @public
|
|
561
|
-
export interface DeploymentsCreateOrUpdateAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
562
|
-
resumeFrom?: string;
|
|
563
|
-
updateIntervalInMs?: number;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
// @public
|
|
567
|
-
export type DeploymentsCreateOrUpdateAtScopeResponse = DeploymentExtended;
|
|
568
|
-
|
|
569
|
-
// @public
|
|
570
|
-
export interface DeploymentsCreateOrUpdateAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
571
|
-
resumeFrom?: string;
|
|
572
|
-
updateIntervalInMs?: number;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
// @public
|
|
576
|
-
export type DeploymentsCreateOrUpdateAtSubscriptionScopeResponse = DeploymentExtended;
|
|
577
|
-
|
|
578
|
-
// @public
|
|
579
|
-
export interface DeploymentsCreateOrUpdateAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
580
|
-
resumeFrom?: string;
|
|
581
|
-
updateIntervalInMs?: number;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
// @public
|
|
585
|
-
export type DeploymentsCreateOrUpdateAtTenantScopeResponse = DeploymentExtended;
|
|
586
|
-
|
|
587
|
-
// @public
|
|
588
|
-
export interface DeploymentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
589
|
-
resumeFrom?: string;
|
|
590
|
-
updateIntervalInMs?: number;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
// @public
|
|
594
|
-
export type DeploymentsCreateOrUpdateResponse = DeploymentExtended;
|
|
595
|
-
|
|
596
|
-
// @public
|
|
597
|
-
export interface DeploymentsDeleteAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
598
|
-
resumeFrom?: string;
|
|
599
|
-
updateIntervalInMs?: number;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
// @public
|
|
603
|
-
export interface DeploymentsDeleteAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
604
|
-
resumeFrom?: string;
|
|
605
|
-
updateIntervalInMs?: number;
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
// @public
|
|
609
|
-
export interface DeploymentsDeleteAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
610
|
-
resumeFrom?: string;
|
|
611
|
-
updateIntervalInMs?: number;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
// @public
|
|
615
|
-
export interface DeploymentsDeleteAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
616
|
-
resumeFrom?: string;
|
|
617
|
-
updateIntervalInMs?: number;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
// @public
|
|
621
|
-
export interface DeploymentsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
622
|
-
resumeFrom?: string;
|
|
623
|
-
updateIntervalInMs?: number;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
// @public
|
|
627
|
-
export interface DeploymentsExportTemplateAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
// @public
|
|
631
|
-
export type DeploymentsExportTemplateAtManagementGroupScopeResponse = DeploymentExportResult;
|
|
632
|
-
|
|
633
|
-
// @public
|
|
634
|
-
export interface DeploymentsExportTemplateAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
// @public
|
|
638
|
-
export type DeploymentsExportTemplateAtScopeResponse = DeploymentExportResult;
|
|
639
|
-
|
|
640
|
-
// @public
|
|
641
|
-
export interface DeploymentsExportTemplateAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
// @public
|
|
645
|
-
export type DeploymentsExportTemplateAtSubscriptionScopeResponse = DeploymentExportResult;
|
|
646
|
-
|
|
647
|
-
// @public
|
|
648
|
-
export interface DeploymentsExportTemplateAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
// @public
|
|
652
|
-
export type DeploymentsExportTemplateAtTenantScopeResponse = DeploymentExportResult;
|
|
653
|
-
|
|
654
|
-
// @public
|
|
655
|
-
export interface DeploymentsExportTemplateOptionalParams extends coreClient.OperationOptions {
|
|
656
|
-
}
|
|
657
|
-
|
|
658
|
-
// @public
|
|
659
|
-
export type DeploymentsExportTemplateResponse = DeploymentExportResult;
|
|
660
|
-
|
|
661
|
-
// @public
|
|
662
|
-
export interface DeploymentsGetAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
// @public
|
|
666
|
-
export type DeploymentsGetAtManagementGroupScopeResponse = DeploymentExtended;
|
|
667
|
-
|
|
668
|
-
// @public
|
|
669
|
-
export interface DeploymentsGetAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
// @public
|
|
673
|
-
export type DeploymentsGetAtScopeResponse = DeploymentExtended;
|
|
674
|
-
|
|
675
|
-
// @public
|
|
676
|
-
export interface DeploymentsGetAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
// @public
|
|
680
|
-
export type DeploymentsGetAtSubscriptionScopeResponse = DeploymentExtended;
|
|
681
|
-
|
|
682
|
-
// @public
|
|
683
|
-
export interface DeploymentsGetAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
// @public
|
|
687
|
-
export type DeploymentsGetAtTenantScopeResponse = DeploymentExtended;
|
|
688
|
-
|
|
689
|
-
// @public
|
|
690
|
-
export interface DeploymentsGetOptionalParams extends coreClient.OperationOptions {
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
// @public
|
|
694
|
-
export type DeploymentsGetResponse = DeploymentExtended;
|
|
695
|
-
|
|
696
|
-
// @public
|
|
697
|
-
export interface DeploymentsListAtManagementGroupScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
// @public
|
|
701
|
-
export type DeploymentsListAtManagementGroupScopeNextResponse = DeploymentListResult;
|
|
702
|
-
|
|
703
|
-
// @public
|
|
704
|
-
export interface DeploymentsListAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
705
|
-
filter?: string;
|
|
706
|
-
top?: number;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
// @public
|
|
710
|
-
export type DeploymentsListAtManagementGroupScopeResponse = DeploymentListResult;
|
|
711
|
-
|
|
712
|
-
// @public
|
|
713
|
-
export interface DeploymentsListAtScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
// @public
|
|
717
|
-
export type DeploymentsListAtScopeNextResponse = DeploymentListResult;
|
|
718
|
-
|
|
719
|
-
// @public
|
|
720
|
-
export interface DeploymentsListAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
721
|
-
filter?: string;
|
|
722
|
-
top?: number;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
// @public
|
|
726
|
-
export type DeploymentsListAtScopeResponse = DeploymentListResult;
|
|
727
|
-
|
|
728
|
-
// @public
|
|
729
|
-
export interface DeploymentsListAtSubscriptionScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
// @public
|
|
733
|
-
export type DeploymentsListAtSubscriptionScopeNextResponse = DeploymentListResult;
|
|
734
|
-
|
|
735
|
-
// @public
|
|
736
|
-
export interface DeploymentsListAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
737
|
-
filter?: string;
|
|
738
|
-
top?: number;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
// @public
|
|
742
|
-
export type DeploymentsListAtSubscriptionScopeResponse = DeploymentListResult;
|
|
743
|
-
|
|
744
|
-
// @public
|
|
745
|
-
export interface DeploymentsListAtTenantScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
// @public
|
|
749
|
-
export type DeploymentsListAtTenantScopeNextResponse = DeploymentListResult;
|
|
750
|
-
|
|
751
|
-
// @public
|
|
752
|
-
export interface DeploymentsListAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
753
|
-
filter?: string;
|
|
754
|
-
top?: number;
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
// @public
|
|
758
|
-
export type DeploymentsListAtTenantScopeResponse = DeploymentListResult;
|
|
759
|
-
|
|
760
|
-
// @public
|
|
761
|
-
export interface DeploymentsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
// @public
|
|
765
|
-
export type DeploymentsListByResourceGroupNextResponse = DeploymentListResult;
|
|
766
|
-
|
|
767
|
-
// @public
|
|
768
|
-
export interface DeploymentsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
769
|
-
filter?: string;
|
|
770
|
-
top?: number;
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
// @public
|
|
774
|
-
export type DeploymentsListByResourceGroupResponse = DeploymentListResult;
|
|
775
|
-
|
|
776
|
-
// @public
|
|
777
|
-
export interface DeploymentsValidateAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
778
|
-
resumeFrom?: string;
|
|
779
|
-
updateIntervalInMs?: number;
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
// @public
|
|
783
|
-
export type DeploymentsValidateAtManagementGroupScopeResponse = DeploymentValidateResult;
|
|
784
|
-
|
|
785
|
-
// @public
|
|
786
|
-
export interface DeploymentsValidateAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
787
|
-
resumeFrom?: string;
|
|
788
|
-
updateIntervalInMs?: number;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
// @public
|
|
792
|
-
export type DeploymentsValidateAtScopeResponse = DeploymentValidateResult;
|
|
793
|
-
|
|
794
|
-
// @public
|
|
795
|
-
export interface DeploymentsValidateAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
796
|
-
resumeFrom?: string;
|
|
797
|
-
updateIntervalInMs?: number;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
// @public
|
|
801
|
-
export type DeploymentsValidateAtSubscriptionScopeResponse = DeploymentValidateResult;
|
|
802
|
-
|
|
803
|
-
// @public
|
|
804
|
-
export interface DeploymentsValidateAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
805
|
-
resumeFrom?: string;
|
|
806
|
-
updateIntervalInMs?: number;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
// @public
|
|
810
|
-
export type DeploymentsValidateAtTenantScopeResponse = DeploymentValidateResult;
|
|
811
|
-
|
|
812
|
-
// @public
|
|
813
|
-
export interface DeploymentsValidateOptionalParams extends coreClient.OperationOptions {
|
|
814
|
-
resumeFrom?: string;
|
|
815
|
-
updateIntervalInMs?: number;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
// @public
|
|
819
|
-
export type DeploymentsValidateResponse = DeploymentValidateResult;
|
|
820
|
-
|
|
821
|
-
// @public
|
|
822
|
-
export interface DeploymentsWhatIfAtManagementGroupScopeHeaders {
|
|
823
|
-
location?: string;
|
|
824
|
-
retryAfter?: string;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
// @public
|
|
828
|
-
export interface DeploymentsWhatIfAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
829
|
-
resumeFrom?: string;
|
|
830
|
-
updateIntervalInMs?: number;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
// @public
|
|
834
|
-
export type DeploymentsWhatIfAtManagementGroupScopeResponse = WhatIfOperationResult;
|
|
835
|
-
|
|
836
|
-
// @public
|
|
837
|
-
export interface DeploymentsWhatIfAtSubscriptionScopeHeaders {
|
|
838
|
-
location?: string;
|
|
839
|
-
retryAfter?: string;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
// @public
|
|
843
|
-
export interface DeploymentsWhatIfAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
844
|
-
resumeFrom?: string;
|
|
845
|
-
updateIntervalInMs?: number;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
// @public
|
|
849
|
-
export type DeploymentsWhatIfAtSubscriptionScopeResponse = WhatIfOperationResult;
|
|
850
|
-
|
|
851
|
-
// @public
|
|
852
|
-
export interface DeploymentsWhatIfAtTenantScopeHeaders {
|
|
853
|
-
location?: string;
|
|
854
|
-
retryAfter?: string;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
// @public
|
|
858
|
-
export interface DeploymentsWhatIfAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
859
|
-
resumeFrom?: string;
|
|
860
|
-
updateIntervalInMs?: number;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
// @public
|
|
864
|
-
export type DeploymentsWhatIfAtTenantScopeResponse = WhatIfOperationResult;
|
|
865
|
-
|
|
866
|
-
// @public
|
|
867
|
-
export interface DeploymentsWhatIfHeaders {
|
|
868
|
-
location?: string;
|
|
869
|
-
retryAfter?: string;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
// @public
|
|
873
|
-
export interface DeploymentsWhatIfOptionalParams extends coreClient.OperationOptions {
|
|
874
|
-
resumeFrom?: string;
|
|
875
|
-
updateIntervalInMs?: number;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
// @public
|
|
879
|
-
export type DeploymentsWhatIfResponse = WhatIfOperationResult;
|
|
880
|
-
|
|
881
|
-
// @public
|
|
882
|
-
export interface DeploymentValidateResult {
|
|
883
|
-
readonly error?: ErrorResponse;
|
|
884
|
-
readonly id?: string;
|
|
885
|
-
readonly name?: string;
|
|
886
|
-
properties?: DeploymentPropertiesExtended;
|
|
887
|
-
readonly type?: string;
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
// @public
|
|
891
|
-
export interface DeploymentWhatIf {
|
|
892
|
-
location?: string;
|
|
893
|
-
properties: DeploymentWhatIfProperties;
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
// @public
|
|
897
|
-
export interface DeploymentWhatIfProperties extends DeploymentProperties {
|
|
898
|
-
whatIfSettings?: DeploymentWhatIfSettings;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
// @public
|
|
902
|
-
export interface DeploymentWhatIfSettings {
|
|
903
|
-
resultFormat?: WhatIfResultFormat;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
// @public
|
|
907
|
-
export interface ErrorAdditionalInfo {
|
|
908
|
-
readonly info?: Record<string, unknown>;
|
|
909
|
-
readonly type?: string;
|
|
910
|
-
}
|
|
911
|
-
|
|
912
|
-
// @public
|
|
913
|
-
export interface ErrorResponse {
|
|
914
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
915
|
-
readonly code?: string;
|
|
916
|
-
readonly details?: ErrorResponse[];
|
|
917
|
-
readonly message?: string;
|
|
918
|
-
readonly target?: string;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
// @public
|
|
922
|
-
export interface ExpressionEvaluationOptions {
|
|
923
|
-
scope?: ExpressionEvaluationOptionsScopeType;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
// @public
|
|
927
|
-
export type ExpressionEvaluationOptionsScopeType = string;
|
|
928
|
-
|
|
929
|
-
// @public
|
|
930
|
-
export type ExtensionConfigPropertyType = string;
|
|
931
|
-
|
|
932
|
-
// @public
|
|
933
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
934
|
-
|
|
935
|
-
// @public
|
|
936
|
-
export interface HttpMessage {
|
|
937
|
-
content?: Record<string, unknown>;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
// @public
|
|
941
|
-
export interface KeyVaultParameterReference {
|
|
942
|
-
keyVault: KeyVaultReference;
|
|
943
|
-
secretName: string;
|
|
944
|
-
secretVersion?: string;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
// @public
|
|
948
|
-
export interface KeyVaultReference {
|
|
949
|
-
id: string;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
// @public
|
|
953
|
-
export enum KnownAliasPathAttributes {
|
|
954
|
-
Modifiable = "Modifiable",
|
|
955
|
-
None = "None"
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
// @public
|
|
959
|
-
export enum KnownAliasPathTokenType {
|
|
960
|
-
Any = "Any",
|
|
961
|
-
Array = "Array",
|
|
962
|
-
Boolean = "Boolean",
|
|
963
|
-
Integer = "Integer",
|
|
964
|
-
NotSpecified = "NotSpecified",
|
|
965
|
-
Number = "Number",
|
|
966
|
-
Object = "Object",
|
|
967
|
-
String = "String"
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
// @public
|
|
971
|
-
export enum KnownDeploymentIdentityType {
|
|
972
|
-
None = "None",
|
|
973
|
-
UserAssigned = "UserAssigned"
|
|
974
|
-
}
|
|
975
|
-
|
|
976
|
-
// @public
|
|
977
|
-
export enum KnownExpressionEvaluationOptionsScopeType {
|
|
978
|
-
Inner = "Inner",
|
|
979
|
-
NotSpecified = "NotSpecified",
|
|
980
|
-
Outer = "Outer"
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
// @public
|
|
984
|
-
export enum KnownExtensionConfigPropertyType {
|
|
985
|
-
Array = "Array",
|
|
986
|
-
Bool = "Bool",
|
|
987
|
-
Int = "Int",
|
|
988
|
-
Object = "Object",
|
|
989
|
-
SecureObject = "SecureObject",
|
|
990
|
-
SecureString = "SecureString",
|
|
991
|
-
String = "String"
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
// @public
|
|
995
|
-
export enum KnownLevel {
|
|
996
|
-
Error = "Error",
|
|
997
|
-
Info = "Info",
|
|
998
|
-
Warning = "Warning"
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
|
-
// @public
|
|
1002
|
-
export enum KnownProviderAuthorizationConsentState {
|
|
1003
|
-
Consented = "Consented",
|
|
1004
|
-
NotRequired = "NotRequired",
|
|
1005
|
-
NotSpecified = "NotSpecified",
|
|
1006
|
-
Required = "Required"
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
// @public
|
|
1010
|
-
export enum KnownProvisioningState {
|
|
1011
|
-
Accepted = "Accepted",
|
|
1012
|
-
Canceled = "Canceled",
|
|
1013
|
-
Created = "Created",
|
|
1014
|
-
Creating = "Creating",
|
|
1015
|
-
Deleted = "Deleted",
|
|
1016
|
-
Deleting = "Deleting",
|
|
1017
|
-
Failed = "Failed",
|
|
1018
|
-
NotSpecified = "NotSpecified",
|
|
1019
|
-
Ready = "Ready",
|
|
1020
|
-
Running = "Running",
|
|
1021
|
-
Succeeded = "Succeeded",
|
|
1022
|
-
Updating = "Updating"
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
// @public
|
|
1026
|
-
export enum KnownValidationLevel {
|
|
1027
|
-
Provider = "Provider",
|
|
1028
|
-
ProviderNoRbac = "ProviderNoRbac",
|
|
1029
|
-
Template = "Template"
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
// @public
|
|
1033
|
-
export type Level = string;
|
|
1034
|
-
|
|
1035
|
-
// @public
|
|
1036
|
-
export interface OnErrorDeployment {
|
|
1037
|
-
deploymentName?: string;
|
|
1038
|
-
type?: OnErrorDeploymentType;
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
// @public
|
|
1042
|
-
export interface OnErrorDeploymentExtended {
|
|
1043
|
-
deploymentName?: string;
|
|
1044
|
-
readonly provisioningState?: string;
|
|
1045
|
-
type?: OnErrorDeploymentType;
|
|
1046
|
-
}
|
|
1047
|
-
|
|
1048
|
-
// @public
|
|
1049
|
-
export type OnErrorDeploymentType = "LastSuccessful" | "SpecificDeployment";
|
|
1050
|
-
|
|
1051
|
-
// @public
|
|
1052
|
-
export interface ParametersLink {
|
|
1053
|
-
contentVersion?: string;
|
|
1054
|
-
uri: string;
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
// @public
|
|
1058
|
-
export type PropertyChangeType = "Create" | "Delete" | "Modify" | "Array" | "NoEffect";
|
|
1059
|
-
|
|
1060
|
-
// @public
|
|
1061
|
-
export interface Provider {
|
|
1062
|
-
readonly id?: string;
|
|
1063
|
-
namespace?: string;
|
|
1064
|
-
providerAuthorizationConsentState?: ProviderAuthorizationConsentState;
|
|
1065
|
-
readonly registrationPolicy?: string;
|
|
1066
|
-
readonly registrationState?: string;
|
|
1067
|
-
readonly resourceTypes?: ProviderResourceType[];
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
// @public
|
|
1071
|
-
export type ProviderAuthorizationConsentState = string;
|
|
1072
|
-
|
|
1073
|
-
// @public
|
|
1074
|
-
export interface ProviderExtendedLocation {
|
|
1075
|
-
extendedLocations?: string[];
|
|
1076
|
-
location?: string;
|
|
1077
|
-
type?: string;
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
// @public
|
|
1081
|
-
export interface ProviderResourceType {
|
|
1082
|
-
aliases?: Alias[];
|
|
1083
|
-
readonly apiProfiles?: ApiProfile[];
|
|
1084
|
-
apiVersions?: string[];
|
|
1085
|
-
capabilities?: string;
|
|
1086
|
-
readonly defaultApiVersion?: string;
|
|
1087
|
-
locationMappings?: ProviderExtendedLocation[];
|
|
1088
|
-
locations?: string[];
|
|
1089
|
-
properties?: {
|
|
1090
|
-
[propertyName: string]: string;
|
|
1091
|
-
};
|
|
1092
|
-
resourceType?: string;
|
|
1093
|
-
// (undocumented)
|
|
1094
|
-
zoneMappings?: ZoneMapping[];
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
// @public
|
|
1098
|
-
export type ProvisioningOperation = "NotSpecified" | "Create" | "Delete" | "Waiting" | "AzureAsyncOperationWaiting" | "ResourceCacheWaiting" | "Action" | "Read" | "EvaluateDeploymentOutput" | "DeploymentCleanup";
|
|
1099
|
-
|
|
1100
|
-
// @public
|
|
1101
|
-
export type ProvisioningState = string;
|
|
1102
|
-
|
|
1103
|
-
// @public
|
|
1104
|
-
export interface ResourceProviderOperationDisplayProperties {
|
|
1105
|
-
description?: string;
|
|
1106
|
-
operation?: string;
|
|
1107
|
-
provider?: string;
|
|
1108
|
-
publisher?: string;
|
|
1109
|
-
resource?: string;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
// @public
|
|
1113
|
-
export interface ResourceReference {
|
|
1114
|
-
readonly apiVersion?: string;
|
|
1115
|
-
readonly extension?: DeploymentExtensionDefinition;
|
|
1116
|
-
readonly id?: string;
|
|
1117
|
-
readonly identifiers?: Record<string, unknown>;
|
|
1118
|
-
readonly resourceType?: string;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
// @public
|
|
1122
|
-
export interface ScopedDeployment {
|
|
1123
|
-
location: string;
|
|
1124
|
-
properties: DeploymentProperties;
|
|
1125
|
-
tags?: {
|
|
1126
|
-
[propertyName: string]: string;
|
|
1127
|
-
};
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
// @public
|
|
1131
|
-
export interface ScopedDeploymentWhatIf {
|
|
1132
|
-
location: string;
|
|
1133
|
-
properties: DeploymentWhatIfProperties;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
// @public
|
|
1137
|
-
export interface StatusMessage {
|
|
1138
|
-
error?: ErrorResponse;
|
|
1139
|
-
status?: string;
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
// @public
|
|
1143
|
-
export interface SubResource {
|
|
1144
|
-
id?: string;
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
// @public
|
|
1148
|
-
export interface TargetResource {
|
|
1149
|
-
apiVersion?: string;
|
|
1150
|
-
extension?: DeploymentExtensionDefinition;
|
|
1151
|
-
id?: string;
|
|
1152
|
-
identifiers?: Record<string, unknown>;
|
|
1153
|
-
resourceName?: string;
|
|
1154
|
-
resourceType?: string;
|
|
1155
|
-
symbolicName?: string;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
// @public
|
|
1159
|
-
export interface TemplateHashResult {
|
|
1160
|
-
minifiedTemplate?: string;
|
|
1161
|
-
templateHash?: string;
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
// @public
|
|
1165
|
-
export interface TemplateLink {
|
|
1166
|
-
contentVersion?: string;
|
|
1167
|
-
id?: string;
|
|
1168
|
-
queryString?: string;
|
|
1169
|
-
relativePath?: string;
|
|
1170
|
-
uri?: string;
|
|
1171
|
-
}
|
|
1172
|
-
|
|
1173
|
-
// @public
|
|
1174
|
-
export interface UserAssignedIdentity {
|
|
1175
|
-
readonly clientId?: string;
|
|
1176
|
-
readonly principalId?: string;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
// @public
|
|
1180
|
-
export type ValidationLevel = string;
|
|
1181
|
-
|
|
1182
|
-
// @public
|
|
1183
|
-
export interface WhatIfChange {
|
|
1184
|
-
after?: Record<string, unknown>;
|
|
1185
|
-
before?: Record<string, unknown>;
|
|
1186
|
-
changeType: ChangeType;
|
|
1187
|
-
delta?: WhatIfPropertyChange[];
|
|
1188
|
-
deploymentId?: string;
|
|
1189
|
-
extension?: DeploymentExtensionDefinition;
|
|
1190
|
-
identifiers?: Record<string, unknown>;
|
|
1191
|
-
resourceId?: string;
|
|
1192
|
-
symbolicName?: string;
|
|
1193
|
-
unsupportedReason?: string;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
// @public
|
|
1197
|
-
export interface WhatIfOperationResult {
|
|
1198
|
-
changes?: WhatIfChange[];
|
|
1199
|
-
readonly diagnostics?: DeploymentDiagnosticsDefinition[];
|
|
1200
|
-
error?: ErrorResponse;
|
|
1201
|
-
potentialChanges?: WhatIfChange[];
|
|
1202
|
-
status?: string;
|
|
1203
|
-
}
|
|
1204
|
-
|
|
1205
|
-
// @public
|
|
1206
|
-
export interface WhatIfPropertyChange {
|
|
1207
|
-
after?: Record<string, unknown>;
|
|
1208
|
-
before?: Record<string, unknown>;
|
|
1209
|
-
children?: WhatIfPropertyChange[];
|
|
1210
|
-
path: string;
|
|
1211
|
-
propertyChangeType: PropertyChangeType;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
// @public
|
|
1215
|
-
export type WhatIfResultFormat = "ResourceIdOnly" | "FullResourcePayloads";
|
|
1216
|
-
|
|
1217
|
-
// @public (undocumented)
|
|
1218
|
-
export interface ZoneMapping {
|
|
1219
|
-
location?: string;
|
|
1220
|
-
// (undocumented)
|
|
1221
|
-
zones?: string[];
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
// (No @packageDocumentation comment for this package)
|
|
1225
|
-
|
|
1226
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-resourcesdeployments"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
|
8
|
+
import * as coreClient from '@azure/core-client';
|
|
9
|
+
import { OperationState } from '@azure/core-lro';
|
|
10
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
+
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
+
|
|
13
|
+
// @public
|
|
14
|
+
export interface Alias {
|
|
15
|
+
readonly defaultMetadata?: AliasPathMetadata;
|
|
16
|
+
defaultPath?: string;
|
|
17
|
+
defaultPattern?: AliasPattern;
|
|
18
|
+
name?: string;
|
|
19
|
+
paths?: AliasPath[];
|
|
20
|
+
type?: AliasType;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// @public
|
|
24
|
+
export interface AliasPath {
|
|
25
|
+
apiVersions?: string[];
|
|
26
|
+
readonly metadata?: AliasPathMetadata;
|
|
27
|
+
path?: string;
|
|
28
|
+
pattern?: AliasPattern;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export type AliasPathAttributes = string;
|
|
33
|
+
|
|
34
|
+
// @public (undocumented)
|
|
35
|
+
export interface AliasPathMetadata {
|
|
36
|
+
readonly attributes?: AliasPathAttributes;
|
|
37
|
+
readonly type?: AliasPathTokenType;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export type AliasPathTokenType = string;
|
|
42
|
+
|
|
43
|
+
// @public
|
|
44
|
+
export interface AliasPattern {
|
|
45
|
+
phrase?: string;
|
|
46
|
+
type?: AliasPatternType;
|
|
47
|
+
variable?: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// @public
|
|
51
|
+
export type AliasPatternType = "NotSpecified" | "Extract";
|
|
52
|
+
|
|
53
|
+
// @public
|
|
54
|
+
export type AliasType = "NotSpecified" | "PlainText" | "Mask";
|
|
55
|
+
|
|
56
|
+
// @public (undocumented)
|
|
57
|
+
export interface ApiProfile {
|
|
58
|
+
readonly apiVersion?: string;
|
|
59
|
+
readonly profileVersion?: string;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// @public
|
|
63
|
+
export interface BasicDependency {
|
|
64
|
+
id?: string;
|
|
65
|
+
resourceName?: string;
|
|
66
|
+
resourceType?: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export type ChangeType = "Create" | "Delete" | "Ignore" | "Deploy" | "NoChange" | "Modify" | "Unsupported";
|
|
71
|
+
|
|
72
|
+
// @public
|
|
73
|
+
export interface CloudError {
|
|
74
|
+
error?: ErrorResponse;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export interface DebugSetting {
|
|
79
|
+
detailLevel?: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// @public
|
|
83
|
+
export interface Dependency {
|
|
84
|
+
dependsOn?: BasicDependency[];
|
|
85
|
+
id?: string;
|
|
86
|
+
resourceName?: string;
|
|
87
|
+
resourceType?: string;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// @public
|
|
91
|
+
export interface Deployment {
|
|
92
|
+
identity?: DeploymentIdentity;
|
|
93
|
+
location?: string;
|
|
94
|
+
properties: DeploymentProperties;
|
|
95
|
+
tags?: {
|
|
96
|
+
[propertyName: string]: string;
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// @public (undocumented)
|
|
101
|
+
export interface DeploymentDiagnosticsDefinition {
|
|
102
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
103
|
+
readonly code: string;
|
|
104
|
+
readonly level: Level;
|
|
105
|
+
readonly message: string;
|
|
106
|
+
readonly target?: string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface DeploymentExportResult {
|
|
111
|
+
template?: Record<string, unknown>;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// @public
|
|
115
|
+
export interface DeploymentExtended {
|
|
116
|
+
readonly id?: string;
|
|
117
|
+
location?: string;
|
|
118
|
+
readonly name?: string;
|
|
119
|
+
properties?: DeploymentPropertiesExtended;
|
|
120
|
+
tags?: {
|
|
121
|
+
[propertyName: string]: string;
|
|
122
|
+
};
|
|
123
|
+
readonly type?: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// @public
|
|
127
|
+
export interface DeploymentExtendedFilter {
|
|
128
|
+
provisioningState?: string;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// @public (undocumented)
|
|
132
|
+
export interface DeploymentExtensionConfigItem {
|
|
133
|
+
keyVaultReference?: KeyVaultParameterReference;
|
|
134
|
+
readonly type?: ExtensionConfigPropertyType;
|
|
135
|
+
value?: any;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// @public (undocumented)
|
|
139
|
+
export interface DeploymentExtensionDefinition {
|
|
140
|
+
readonly alias?: string;
|
|
141
|
+
readonly config?: {
|
|
142
|
+
[propertyName: string]: DeploymentExtensionConfigItem;
|
|
143
|
+
};
|
|
144
|
+
readonly configId?: string;
|
|
145
|
+
readonly name?: string;
|
|
146
|
+
readonly version?: string;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// @public
|
|
150
|
+
export interface DeploymentExternalInput {
|
|
151
|
+
value: any;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// @public
|
|
155
|
+
export interface DeploymentExternalInputDefinition {
|
|
156
|
+
config?: any;
|
|
157
|
+
kind: string;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export interface DeploymentIdentity {
|
|
162
|
+
type: DeploymentIdentityType;
|
|
163
|
+
userAssignedIdentities?: {
|
|
164
|
+
[propertyName: string]: UserAssignedIdentity | null;
|
|
165
|
+
};
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// @public
|
|
169
|
+
export type DeploymentIdentityType = string;
|
|
170
|
+
|
|
171
|
+
// @public
|
|
172
|
+
export interface DeploymentListResult {
|
|
173
|
+
readonly nextLink?: string;
|
|
174
|
+
value?: DeploymentExtended[];
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// @public
|
|
178
|
+
export type DeploymentMode = "Incremental" | "Complete";
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export interface DeploymentOperation {
|
|
182
|
+
readonly id?: string;
|
|
183
|
+
readonly operationId?: string;
|
|
184
|
+
properties?: DeploymentOperationProperties;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// @public
|
|
188
|
+
export interface DeploymentOperationProperties {
|
|
189
|
+
readonly duration?: string;
|
|
190
|
+
readonly provisioningOperation?: ProvisioningOperation;
|
|
191
|
+
readonly provisioningState?: string;
|
|
192
|
+
readonly request?: HttpMessage;
|
|
193
|
+
readonly response?: HttpMessage;
|
|
194
|
+
readonly serviceRequestId?: string;
|
|
195
|
+
readonly statusCode?: string;
|
|
196
|
+
readonly statusMessage?: StatusMessage;
|
|
197
|
+
readonly targetResource?: TargetResource;
|
|
198
|
+
readonly timestamp?: Date;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
// @public
|
|
202
|
+
export interface DeploymentOperations {
|
|
203
|
+
get(resourceGroupName: string, deploymentName: string, operationId: string, options?: DeploymentOperationsGetOptionalParams): Promise<DeploymentOperationsGetResponse>;
|
|
204
|
+
getAtManagementGroupScope(groupId: string, deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtManagementGroupScopeOptionalParams): Promise<DeploymentOperationsGetAtManagementGroupScopeResponse>;
|
|
205
|
+
getAtScope(scope: string, deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtScopeOptionalParams): Promise<DeploymentOperationsGetAtScopeResponse>;
|
|
206
|
+
getAtSubscriptionScope(deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtSubscriptionScopeOptionalParams): Promise<DeploymentOperationsGetAtSubscriptionScopeResponse>;
|
|
207
|
+
getAtTenantScope(deploymentName: string, operationId: string, options?: DeploymentOperationsGetAtTenantScopeOptionalParams): Promise<DeploymentOperationsGetAtTenantScopeResponse>;
|
|
208
|
+
list(resourceGroupName: string, deploymentName: string, options?: DeploymentOperationsListOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
209
|
+
listAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
210
|
+
listAtScope(scope: string, deploymentName: string, options?: DeploymentOperationsListAtScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
211
|
+
listAtSubscriptionScope(deploymentName: string, options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
212
|
+
listAtTenantScope(deploymentName: string, options?: DeploymentOperationsListAtTenantScopeOptionalParams): PagedAsyncIterableIterator<DeploymentOperation>;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// @public
|
|
216
|
+
export interface DeploymentOperationsGetAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// @public
|
|
220
|
+
export type DeploymentOperationsGetAtManagementGroupScopeResponse = DeploymentOperation;
|
|
221
|
+
|
|
222
|
+
// @public
|
|
223
|
+
export interface DeploymentOperationsGetAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// @public
|
|
227
|
+
export type DeploymentOperationsGetAtScopeResponse = DeploymentOperation;
|
|
228
|
+
|
|
229
|
+
// @public
|
|
230
|
+
export interface DeploymentOperationsGetAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// @public
|
|
234
|
+
export type DeploymentOperationsGetAtSubscriptionScopeResponse = DeploymentOperation;
|
|
235
|
+
|
|
236
|
+
// @public
|
|
237
|
+
export interface DeploymentOperationsGetAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// @public
|
|
241
|
+
export type DeploymentOperationsGetAtTenantScopeResponse = DeploymentOperation;
|
|
242
|
+
|
|
243
|
+
// @public
|
|
244
|
+
export interface DeploymentOperationsGetOptionalParams extends coreClient.OperationOptions {
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
// @public
|
|
248
|
+
export type DeploymentOperationsGetResponse = DeploymentOperation;
|
|
249
|
+
|
|
250
|
+
// @public
|
|
251
|
+
export interface DeploymentOperationsListAtManagementGroupScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// @public
|
|
255
|
+
export type DeploymentOperationsListAtManagementGroupScopeNextResponse = DeploymentOperationsListResult;
|
|
256
|
+
|
|
257
|
+
// @public
|
|
258
|
+
export interface DeploymentOperationsListAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
259
|
+
top?: number;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
// @public
|
|
263
|
+
export type DeploymentOperationsListAtManagementGroupScopeResponse = DeploymentOperationsListResult;
|
|
264
|
+
|
|
265
|
+
// @public
|
|
266
|
+
export interface DeploymentOperationsListAtScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// @public
|
|
270
|
+
export type DeploymentOperationsListAtScopeNextResponse = DeploymentOperationsListResult;
|
|
271
|
+
|
|
272
|
+
// @public
|
|
273
|
+
export interface DeploymentOperationsListAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
274
|
+
top?: number;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
// @public
|
|
278
|
+
export type DeploymentOperationsListAtScopeResponse = DeploymentOperationsListResult;
|
|
279
|
+
|
|
280
|
+
// @public
|
|
281
|
+
export interface DeploymentOperationsListAtSubscriptionScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
// @public
|
|
285
|
+
export type DeploymentOperationsListAtSubscriptionScopeNextResponse = DeploymentOperationsListResult;
|
|
286
|
+
|
|
287
|
+
// @public
|
|
288
|
+
export interface DeploymentOperationsListAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
289
|
+
top?: number;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// @public
|
|
293
|
+
export type DeploymentOperationsListAtSubscriptionScopeResponse = DeploymentOperationsListResult;
|
|
294
|
+
|
|
295
|
+
// @public
|
|
296
|
+
export interface DeploymentOperationsListAtTenantScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// @public
|
|
300
|
+
export type DeploymentOperationsListAtTenantScopeNextResponse = DeploymentOperationsListResult;
|
|
301
|
+
|
|
302
|
+
// @public
|
|
303
|
+
export interface DeploymentOperationsListAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
304
|
+
top?: number;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export type DeploymentOperationsListAtTenantScopeResponse = DeploymentOperationsListResult;
|
|
309
|
+
|
|
310
|
+
// @public
|
|
311
|
+
export interface DeploymentOperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export type DeploymentOperationsListNextResponse = DeploymentOperationsListResult;
|
|
316
|
+
|
|
317
|
+
// @public
|
|
318
|
+
export interface DeploymentOperationsListOptionalParams extends coreClient.OperationOptions {
|
|
319
|
+
top?: number;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// @public
|
|
323
|
+
export type DeploymentOperationsListResponse = DeploymentOperationsListResult;
|
|
324
|
+
|
|
325
|
+
// @public
|
|
326
|
+
export interface DeploymentOperationsListResult {
|
|
327
|
+
readonly nextLink?: string;
|
|
328
|
+
value?: DeploymentOperation[];
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
// @public
|
|
332
|
+
export interface DeploymentParameter {
|
|
333
|
+
expression?: string;
|
|
334
|
+
reference?: KeyVaultParameterReference;
|
|
335
|
+
value?: any;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// @public
|
|
339
|
+
export interface DeploymentProperties {
|
|
340
|
+
debugSetting?: DebugSetting;
|
|
341
|
+
expressionEvaluationOptions?: ExpressionEvaluationOptions;
|
|
342
|
+
extensionConfigs?: {
|
|
343
|
+
[propertyName: string]: {
|
|
344
|
+
[propertyName: string]: DeploymentExtensionConfigItem;
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
externalInputDefinitions?: {
|
|
348
|
+
[propertyName: string]: DeploymentExternalInputDefinition;
|
|
349
|
+
};
|
|
350
|
+
externalInputs?: {
|
|
351
|
+
[propertyName: string]: DeploymentExternalInput;
|
|
352
|
+
};
|
|
353
|
+
mode: DeploymentMode;
|
|
354
|
+
onErrorDeployment?: OnErrorDeployment;
|
|
355
|
+
parameters?: {
|
|
356
|
+
[propertyName: string]: DeploymentParameter;
|
|
357
|
+
};
|
|
358
|
+
parametersLink?: ParametersLink;
|
|
359
|
+
template?: Record<string, unknown>;
|
|
360
|
+
templateLink?: TemplateLink;
|
|
361
|
+
validationLevel?: ValidationLevel;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
// @public
|
|
365
|
+
export interface DeploymentPropertiesExtended {
|
|
366
|
+
readonly correlationId?: string;
|
|
367
|
+
readonly debugSetting?: DebugSetting;
|
|
368
|
+
readonly dependencies?: Dependency[];
|
|
369
|
+
readonly diagnostics?: DeploymentDiagnosticsDefinition[];
|
|
370
|
+
readonly duration?: string;
|
|
371
|
+
readonly error?: ErrorResponse;
|
|
372
|
+
readonly extensions?: DeploymentExtensionDefinition[];
|
|
373
|
+
readonly mode?: DeploymentMode;
|
|
374
|
+
readonly onErrorDeployment?: OnErrorDeploymentExtended;
|
|
375
|
+
readonly outputResources?: ResourceReference[];
|
|
376
|
+
readonly outputs?: Record<string, unknown>;
|
|
377
|
+
readonly parameters?: Record<string, unknown>;
|
|
378
|
+
readonly parametersLink?: ParametersLink;
|
|
379
|
+
readonly providers?: Provider[];
|
|
380
|
+
readonly provisioningState?: ProvisioningState;
|
|
381
|
+
readonly templateHash?: string;
|
|
382
|
+
readonly templateLink?: TemplateLink;
|
|
383
|
+
readonly timestamp?: Date;
|
|
384
|
+
readonly validatedResources?: ResourceReference[];
|
|
385
|
+
validationLevel?: ValidationLevel;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
// @public
|
|
389
|
+
export interface Deployments {
|
|
390
|
+
beginCreateOrUpdate(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateResponse>, DeploymentsCreateOrUpdateResponse>>;
|
|
391
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateOptionalParams): Promise<DeploymentsCreateOrUpdateResponse>;
|
|
392
|
+
beginCreateOrUpdateAtManagementGroupScope(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtManagementGroupScopeResponse>, DeploymentsCreateOrUpdateAtManagementGroupScopeResponse>>;
|
|
393
|
+
beginCreateOrUpdateAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtManagementGroupScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtManagementGroupScopeResponse>;
|
|
394
|
+
beginCreateOrUpdateAtScope(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtScopeResponse>, DeploymentsCreateOrUpdateAtScopeResponse>>;
|
|
395
|
+
beginCreateOrUpdateAtScopeAndWait(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtScopeResponse>;
|
|
396
|
+
beginCreateOrUpdateAtSubscriptionScope(deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtSubscriptionScopeResponse>, DeploymentsCreateOrUpdateAtSubscriptionScopeResponse>>;
|
|
397
|
+
beginCreateOrUpdateAtSubscriptionScopeAndWait(deploymentName: string, parameters: Deployment, options?: DeploymentsCreateOrUpdateAtSubscriptionScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtSubscriptionScopeResponse>;
|
|
398
|
+
beginCreateOrUpdateAtTenantScope(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsCreateOrUpdateAtTenantScopeResponse>, DeploymentsCreateOrUpdateAtTenantScopeResponse>>;
|
|
399
|
+
beginCreateOrUpdateAtTenantScopeAndWait(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsCreateOrUpdateAtTenantScopeOptionalParams): Promise<DeploymentsCreateOrUpdateAtTenantScopeResponse>;
|
|
400
|
+
beginDelete(resourceGroupName: string, deploymentName: string, options?: DeploymentsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
401
|
+
beginDeleteAndWait(resourceGroupName: string, deploymentName: string, options?: DeploymentsDeleteOptionalParams): Promise<void>;
|
|
402
|
+
beginDeleteAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsDeleteAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
403
|
+
beginDeleteAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, options?: DeploymentsDeleteAtManagementGroupScopeOptionalParams): Promise<void>;
|
|
404
|
+
beginDeleteAtScope(scope: string, deploymentName: string, options?: DeploymentsDeleteAtScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
405
|
+
beginDeleteAtScopeAndWait(scope: string, deploymentName: string, options?: DeploymentsDeleteAtScopeOptionalParams): Promise<void>;
|
|
406
|
+
beginDeleteAtSubscriptionScope(deploymentName: string, options?: DeploymentsDeleteAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
407
|
+
beginDeleteAtSubscriptionScopeAndWait(deploymentName: string, options?: DeploymentsDeleteAtSubscriptionScopeOptionalParams): Promise<void>;
|
|
408
|
+
beginDeleteAtTenantScope(deploymentName: string, options?: DeploymentsDeleteAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
409
|
+
beginDeleteAtTenantScopeAndWait(deploymentName: string, options?: DeploymentsDeleteAtTenantScopeOptionalParams): Promise<void>;
|
|
410
|
+
beginValidate(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateResponse>, DeploymentsValidateResponse>>;
|
|
411
|
+
beginValidateAndWait(resourceGroupName: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateOptionalParams): Promise<DeploymentsValidateResponse>;
|
|
412
|
+
beginValidateAtManagementGroupScope(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtManagementGroupScopeResponse>, DeploymentsValidateAtManagementGroupScopeResponse>>;
|
|
413
|
+
beginValidateAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtManagementGroupScopeOptionalParams): Promise<DeploymentsValidateAtManagementGroupScopeResponse>;
|
|
414
|
+
beginValidateAtScope(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtScopeResponse>, DeploymentsValidateAtScopeResponse>>;
|
|
415
|
+
beginValidateAtScopeAndWait(scope: string, deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtScopeOptionalParams): Promise<DeploymentsValidateAtScopeResponse>;
|
|
416
|
+
beginValidateAtSubscriptionScope(deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtSubscriptionScopeResponse>, DeploymentsValidateAtSubscriptionScopeResponse>>;
|
|
417
|
+
beginValidateAtSubscriptionScopeAndWait(deploymentName: string, parameters: Deployment, options?: DeploymentsValidateAtSubscriptionScopeOptionalParams): Promise<DeploymentsValidateAtSubscriptionScopeResponse>;
|
|
418
|
+
beginValidateAtTenantScope(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsValidateAtTenantScopeResponse>, DeploymentsValidateAtTenantScopeResponse>>;
|
|
419
|
+
beginValidateAtTenantScopeAndWait(deploymentName: string, parameters: ScopedDeployment, options?: DeploymentsValidateAtTenantScopeOptionalParams): Promise<DeploymentsValidateAtTenantScopeResponse>;
|
|
420
|
+
beginWhatIf(resourceGroupName: string, deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfResponse>, DeploymentsWhatIfResponse>>;
|
|
421
|
+
beginWhatIfAndWait(resourceGroupName: string, deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfOptionalParams): Promise<DeploymentsWhatIfResponse>;
|
|
422
|
+
beginWhatIfAtManagementGroupScope(groupId: string, deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtManagementGroupScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfAtManagementGroupScopeResponse>, DeploymentsWhatIfAtManagementGroupScopeResponse>>;
|
|
423
|
+
beginWhatIfAtManagementGroupScopeAndWait(groupId: string, deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtManagementGroupScopeOptionalParams): Promise<DeploymentsWhatIfAtManagementGroupScopeResponse>;
|
|
424
|
+
beginWhatIfAtSubscriptionScope(deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfAtSubscriptionScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfAtSubscriptionScopeResponse>, DeploymentsWhatIfAtSubscriptionScopeResponse>>;
|
|
425
|
+
beginWhatIfAtSubscriptionScopeAndWait(deploymentName: string, parameters: DeploymentWhatIf, options?: DeploymentsWhatIfAtSubscriptionScopeOptionalParams): Promise<DeploymentsWhatIfAtSubscriptionScopeResponse>;
|
|
426
|
+
beginWhatIfAtTenantScope(deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtTenantScopeOptionalParams): Promise<SimplePollerLike<OperationState<DeploymentsWhatIfAtTenantScopeResponse>, DeploymentsWhatIfAtTenantScopeResponse>>;
|
|
427
|
+
beginWhatIfAtTenantScopeAndWait(deploymentName: string, parameters: ScopedDeploymentWhatIf, options?: DeploymentsWhatIfAtTenantScopeOptionalParams): Promise<DeploymentsWhatIfAtTenantScopeResponse>;
|
|
428
|
+
calculateTemplateHash(template: Record<string, unknown>, options?: DeploymentsCalculateTemplateHashOptionalParams): Promise<DeploymentsCalculateTemplateHashResponse>;
|
|
429
|
+
cancel(resourceGroupName: string, deploymentName: string, options?: DeploymentsCancelOptionalParams): Promise<void>;
|
|
430
|
+
cancelAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsCancelAtManagementGroupScopeOptionalParams): Promise<void>;
|
|
431
|
+
cancelAtScope(scope: string, deploymentName: string, options?: DeploymentsCancelAtScopeOptionalParams): Promise<void>;
|
|
432
|
+
cancelAtSubscriptionScope(deploymentName: string, options?: DeploymentsCancelAtSubscriptionScopeOptionalParams): Promise<void>;
|
|
433
|
+
cancelAtTenantScope(deploymentName: string, options?: DeploymentsCancelAtTenantScopeOptionalParams): Promise<void>;
|
|
434
|
+
checkExistence(resourceGroupName: string, deploymentName: string, options?: DeploymentsCheckExistenceOptionalParams): Promise<DeploymentsCheckExistenceResponse>;
|
|
435
|
+
checkExistenceAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsCheckExistenceAtManagementGroupScopeOptionalParams): Promise<DeploymentsCheckExistenceAtManagementGroupScopeResponse>;
|
|
436
|
+
checkExistenceAtScope(scope: string, deploymentName: string, options?: DeploymentsCheckExistenceAtScopeOptionalParams): Promise<DeploymentsCheckExistenceAtScopeResponse>;
|
|
437
|
+
checkExistenceAtSubscriptionScope(deploymentName: string, options?: DeploymentsCheckExistenceAtSubscriptionScopeOptionalParams): Promise<DeploymentsCheckExistenceAtSubscriptionScopeResponse>;
|
|
438
|
+
checkExistenceAtTenantScope(deploymentName: string, options?: DeploymentsCheckExistenceAtTenantScopeOptionalParams): Promise<DeploymentsCheckExistenceAtTenantScopeResponse>;
|
|
439
|
+
exportTemplate(resourceGroupName: string, deploymentName: string, options?: DeploymentsExportTemplateOptionalParams): Promise<DeploymentsExportTemplateResponse>;
|
|
440
|
+
exportTemplateAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsExportTemplateAtManagementGroupScopeOptionalParams): Promise<DeploymentsExportTemplateAtManagementGroupScopeResponse>;
|
|
441
|
+
exportTemplateAtScope(scope: string, deploymentName: string, options?: DeploymentsExportTemplateAtScopeOptionalParams): Promise<DeploymentsExportTemplateAtScopeResponse>;
|
|
442
|
+
exportTemplateAtSubscriptionScope(deploymentName: string, options?: DeploymentsExportTemplateAtSubscriptionScopeOptionalParams): Promise<DeploymentsExportTemplateAtSubscriptionScopeResponse>;
|
|
443
|
+
exportTemplateAtTenantScope(deploymentName: string, options?: DeploymentsExportTemplateAtTenantScopeOptionalParams): Promise<DeploymentsExportTemplateAtTenantScopeResponse>;
|
|
444
|
+
get(resourceGroupName: string, deploymentName: string, options?: DeploymentsGetOptionalParams): Promise<DeploymentsGetResponse>;
|
|
445
|
+
getAtManagementGroupScope(groupId: string, deploymentName: string, options?: DeploymentsGetAtManagementGroupScopeOptionalParams): Promise<DeploymentsGetAtManagementGroupScopeResponse>;
|
|
446
|
+
getAtScope(scope: string, deploymentName: string, options?: DeploymentsGetAtScopeOptionalParams): Promise<DeploymentsGetAtScopeResponse>;
|
|
447
|
+
getAtSubscriptionScope(deploymentName: string, options?: DeploymentsGetAtSubscriptionScopeOptionalParams): Promise<DeploymentsGetAtSubscriptionScopeResponse>;
|
|
448
|
+
getAtTenantScope(deploymentName: string, options?: DeploymentsGetAtTenantScopeOptionalParams): Promise<DeploymentsGetAtTenantScopeResponse>;
|
|
449
|
+
listAtManagementGroupScope(groupId: string, options?: DeploymentsListAtManagementGroupScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
450
|
+
listAtScope(scope: string, options?: DeploymentsListAtScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
451
|
+
listAtSubscriptionScope(options?: DeploymentsListAtSubscriptionScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
452
|
+
listAtTenantScope(options?: DeploymentsListAtTenantScopeOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
453
|
+
listByResourceGroup(resourceGroupName: string, options?: DeploymentsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<DeploymentExtended>;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
// @public
|
|
457
|
+
export interface DeploymentsCalculateTemplateHashOptionalParams extends coreClient.OperationOptions {
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
// @public
|
|
461
|
+
export type DeploymentsCalculateTemplateHashResponse = TemplateHashResult;
|
|
462
|
+
|
|
463
|
+
// @public
|
|
464
|
+
export interface DeploymentsCancelAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
// @public
|
|
468
|
+
export interface DeploymentsCancelAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
// @public
|
|
472
|
+
export interface DeploymentsCancelAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
// @public
|
|
476
|
+
export interface DeploymentsCancelAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
// @public
|
|
480
|
+
export interface DeploymentsCancelOptionalParams extends coreClient.OperationOptions {
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
// @public
|
|
484
|
+
export interface DeploymentsCheckExistenceAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
// @public
|
|
488
|
+
export type DeploymentsCheckExistenceAtManagementGroupScopeResponse = {
|
|
489
|
+
body: boolean;
|
|
490
|
+
};
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export interface DeploymentsCheckExistenceAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// @public
|
|
497
|
+
export type DeploymentsCheckExistenceAtScopeResponse = {
|
|
498
|
+
body: boolean;
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
// @public
|
|
502
|
+
export interface DeploymentsCheckExistenceAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
// @public
|
|
506
|
+
export type DeploymentsCheckExistenceAtSubscriptionScopeResponse = {
|
|
507
|
+
body: boolean;
|
|
508
|
+
};
|
|
509
|
+
|
|
510
|
+
// @public
|
|
511
|
+
export interface DeploymentsCheckExistenceAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
// @public
|
|
515
|
+
export type DeploymentsCheckExistenceAtTenantScopeResponse = {
|
|
516
|
+
body: boolean;
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
// @public
|
|
520
|
+
export interface DeploymentsCheckExistenceOptionalParams extends coreClient.OperationOptions {
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
// @public
|
|
524
|
+
export type DeploymentsCheckExistenceResponse = {
|
|
525
|
+
body: boolean;
|
|
526
|
+
};
|
|
527
|
+
|
|
528
|
+
// @public (undocumented)
|
|
529
|
+
export class DeploymentsClient extends coreClient.ServiceClient {
|
|
530
|
+
// (undocumented)
|
|
531
|
+
$host: string;
|
|
532
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DeploymentsClientOptionalParams);
|
|
533
|
+
constructor(credentials: coreAuth.TokenCredential, options?: DeploymentsClientOptionalParams);
|
|
534
|
+
// (undocumented)
|
|
535
|
+
apiVersion: string;
|
|
536
|
+
// (undocumented)
|
|
537
|
+
deploymentOperations: DeploymentOperations;
|
|
538
|
+
// (undocumented)
|
|
539
|
+
deployments: Deployments;
|
|
540
|
+
// (undocumented)
|
|
541
|
+
subscriptionId?: string;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
// @public
|
|
545
|
+
export interface DeploymentsClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
546
|
+
$host?: string;
|
|
547
|
+
apiVersion?: string;
|
|
548
|
+
endpoint?: string;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
// @public
|
|
552
|
+
export interface DeploymentsCreateOrUpdateAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
553
|
+
resumeFrom?: string;
|
|
554
|
+
updateIntervalInMs?: number;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
// @public
|
|
558
|
+
export type DeploymentsCreateOrUpdateAtManagementGroupScopeResponse = DeploymentExtended;
|
|
559
|
+
|
|
560
|
+
// @public
|
|
561
|
+
export interface DeploymentsCreateOrUpdateAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
562
|
+
resumeFrom?: string;
|
|
563
|
+
updateIntervalInMs?: number;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
// @public
|
|
567
|
+
export type DeploymentsCreateOrUpdateAtScopeResponse = DeploymentExtended;
|
|
568
|
+
|
|
569
|
+
// @public
|
|
570
|
+
export interface DeploymentsCreateOrUpdateAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
571
|
+
resumeFrom?: string;
|
|
572
|
+
updateIntervalInMs?: number;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
// @public
|
|
576
|
+
export type DeploymentsCreateOrUpdateAtSubscriptionScopeResponse = DeploymentExtended;
|
|
577
|
+
|
|
578
|
+
// @public
|
|
579
|
+
export interface DeploymentsCreateOrUpdateAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
580
|
+
resumeFrom?: string;
|
|
581
|
+
updateIntervalInMs?: number;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
// @public
|
|
585
|
+
export type DeploymentsCreateOrUpdateAtTenantScopeResponse = DeploymentExtended;
|
|
586
|
+
|
|
587
|
+
// @public
|
|
588
|
+
export interface DeploymentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
589
|
+
resumeFrom?: string;
|
|
590
|
+
updateIntervalInMs?: number;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
// @public
|
|
594
|
+
export type DeploymentsCreateOrUpdateResponse = DeploymentExtended;
|
|
595
|
+
|
|
596
|
+
// @public
|
|
597
|
+
export interface DeploymentsDeleteAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
598
|
+
resumeFrom?: string;
|
|
599
|
+
updateIntervalInMs?: number;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
// @public
|
|
603
|
+
export interface DeploymentsDeleteAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
604
|
+
resumeFrom?: string;
|
|
605
|
+
updateIntervalInMs?: number;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
// @public
|
|
609
|
+
export interface DeploymentsDeleteAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
610
|
+
resumeFrom?: string;
|
|
611
|
+
updateIntervalInMs?: number;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
// @public
|
|
615
|
+
export interface DeploymentsDeleteAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
616
|
+
resumeFrom?: string;
|
|
617
|
+
updateIntervalInMs?: number;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
// @public
|
|
621
|
+
export interface DeploymentsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
622
|
+
resumeFrom?: string;
|
|
623
|
+
updateIntervalInMs?: number;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
// @public
|
|
627
|
+
export interface DeploymentsExportTemplateAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
// @public
|
|
631
|
+
export type DeploymentsExportTemplateAtManagementGroupScopeResponse = DeploymentExportResult;
|
|
632
|
+
|
|
633
|
+
// @public
|
|
634
|
+
export interface DeploymentsExportTemplateAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
// @public
|
|
638
|
+
export type DeploymentsExportTemplateAtScopeResponse = DeploymentExportResult;
|
|
639
|
+
|
|
640
|
+
// @public
|
|
641
|
+
export interface DeploymentsExportTemplateAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
// @public
|
|
645
|
+
export type DeploymentsExportTemplateAtSubscriptionScopeResponse = DeploymentExportResult;
|
|
646
|
+
|
|
647
|
+
// @public
|
|
648
|
+
export interface DeploymentsExportTemplateAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
// @public
|
|
652
|
+
export type DeploymentsExportTemplateAtTenantScopeResponse = DeploymentExportResult;
|
|
653
|
+
|
|
654
|
+
// @public
|
|
655
|
+
export interface DeploymentsExportTemplateOptionalParams extends coreClient.OperationOptions {
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
// @public
|
|
659
|
+
export type DeploymentsExportTemplateResponse = DeploymentExportResult;
|
|
660
|
+
|
|
661
|
+
// @public
|
|
662
|
+
export interface DeploymentsGetAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
// @public
|
|
666
|
+
export type DeploymentsGetAtManagementGroupScopeResponse = DeploymentExtended;
|
|
667
|
+
|
|
668
|
+
// @public
|
|
669
|
+
export interface DeploymentsGetAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
// @public
|
|
673
|
+
export type DeploymentsGetAtScopeResponse = DeploymentExtended;
|
|
674
|
+
|
|
675
|
+
// @public
|
|
676
|
+
export interface DeploymentsGetAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
// @public
|
|
680
|
+
export type DeploymentsGetAtSubscriptionScopeResponse = DeploymentExtended;
|
|
681
|
+
|
|
682
|
+
// @public
|
|
683
|
+
export interface DeploymentsGetAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
// @public
|
|
687
|
+
export type DeploymentsGetAtTenantScopeResponse = DeploymentExtended;
|
|
688
|
+
|
|
689
|
+
// @public
|
|
690
|
+
export interface DeploymentsGetOptionalParams extends coreClient.OperationOptions {
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
// @public
|
|
694
|
+
export type DeploymentsGetResponse = DeploymentExtended;
|
|
695
|
+
|
|
696
|
+
// @public
|
|
697
|
+
export interface DeploymentsListAtManagementGroupScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
// @public
|
|
701
|
+
export type DeploymentsListAtManagementGroupScopeNextResponse = DeploymentListResult;
|
|
702
|
+
|
|
703
|
+
// @public
|
|
704
|
+
export interface DeploymentsListAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
705
|
+
filter?: string;
|
|
706
|
+
top?: number;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
// @public
|
|
710
|
+
export type DeploymentsListAtManagementGroupScopeResponse = DeploymentListResult;
|
|
711
|
+
|
|
712
|
+
// @public
|
|
713
|
+
export interface DeploymentsListAtScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
// @public
|
|
717
|
+
export type DeploymentsListAtScopeNextResponse = DeploymentListResult;
|
|
718
|
+
|
|
719
|
+
// @public
|
|
720
|
+
export interface DeploymentsListAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
721
|
+
filter?: string;
|
|
722
|
+
top?: number;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
// @public
|
|
726
|
+
export type DeploymentsListAtScopeResponse = DeploymentListResult;
|
|
727
|
+
|
|
728
|
+
// @public
|
|
729
|
+
export interface DeploymentsListAtSubscriptionScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
// @public
|
|
733
|
+
export type DeploymentsListAtSubscriptionScopeNextResponse = DeploymentListResult;
|
|
734
|
+
|
|
735
|
+
// @public
|
|
736
|
+
export interface DeploymentsListAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
737
|
+
filter?: string;
|
|
738
|
+
top?: number;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
// @public
|
|
742
|
+
export type DeploymentsListAtSubscriptionScopeResponse = DeploymentListResult;
|
|
743
|
+
|
|
744
|
+
// @public
|
|
745
|
+
export interface DeploymentsListAtTenantScopeNextOptionalParams extends coreClient.OperationOptions {
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
// @public
|
|
749
|
+
export type DeploymentsListAtTenantScopeNextResponse = DeploymentListResult;
|
|
750
|
+
|
|
751
|
+
// @public
|
|
752
|
+
export interface DeploymentsListAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
753
|
+
filter?: string;
|
|
754
|
+
top?: number;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
// @public
|
|
758
|
+
export type DeploymentsListAtTenantScopeResponse = DeploymentListResult;
|
|
759
|
+
|
|
760
|
+
// @public
|
|
761
|
+
export interface DeploymentsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
// @public
|
|
765
|
+
export type DeploymentsListByResourceGroupNextResponse = DeploymentListResult;
|
|
766
|
+
|
|
767
|
+
// @public
|
|
768
|
+
export interface DeploymentsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
769
|
+
filter?: string;
|
|
770
|
+
top?: number;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
// @public
|
|
774
|
+
export type DeploymentsListByResourceGroupResponse = DeploymentListResult;
|
|
775
|
+
|
|
776
|
+
// @public
|
|
777
|
+
export interface DeploymentsValidateAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
778
|
+
resumeFrom?: string;
|
|
779
|
+
updateIntervalInMs?: number;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
// @public
|
|
783
|
+
export type DeploymentsValidateAtManagementGroupScopeResponse = DeploymentValidateResult;
|
|
784
|
+
|
|
785
|
+
// @public
|
|
786
|
+
export interface DeploymentsValidateAtScopeOptionalParams extends coreClient.OperationOptions {
|
|
787
|
+
resumeFrom?: string;
|
|
788
|
+
updateIntervalInMs?: number;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
// @public
|
|
792
|
+
export type DeploymentsValidateAtScopeResponse = DeploymentValidateResult;
|
|
793
|
+
|
|
794
|
+
// @public
|
|
795
|
+
export interface DeploymentsValidateAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
796
|
+
resumeFrom?: string;
|
|
797
|
+
updateIntervalInMs?: number;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
// @public
|
|
801
|
+
export type DeploymentsValidateAtSubscriptionScopeResponse = DeploymentValidateResult;
|
|
802
|
+
|
|
803
|
+
// @public
|
|
804
|
+
export interface DeploymentsValidateAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
805
|
+
resumeFrom?: string;
|
|
806
|
+
updateIntervalInMs?: number;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
// @public
|
|
810
|
+
export type DeploymentsValidateAtTenantScopeResponse = DeploymentValidateResult;
|
|
811
|
+
|
|
812
|
+
// @public
|
|
813
|
+
export interface DeploymentsValidateOptionalParams extends coreClient.OperationOptions {
|
|
814
|
+
resumeFrom?: string;
|
|
815
|
+
updateIntervalInMs?: number;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
// @public
|
|
819
|
+
export type DeploymentsValidateResponse = DeploymentValidateResult;
|
|
820
|
+
|
|
821
|
+
// @public
|
|
822
|
+
export interface DeploymentsWhatIfAtManagementGroupScopeHeaders {
|
|
823
|
+
location?: string;
|
|
824
|
+
retryAfter?: string;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
// @public
|
|
828
|
+
export interface DeploymentsWhatIfAtManagementGroupScopeOptionalParams extends coreClient.OperationOptions {
|
|
829
|
+
resumeFrom?: string;
|
|
830
|
+
updateIntervalInMs?: number;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
// @public
|
|
834
|
+
export type DeploymentsWhatIfAtManagementGroupScopeResponse = WhatIfOperationResult;
|
|
835
|
+
|
|
836
|
+
// @public
|
|
837
|
+
export interface DeploymentsWhatIfAtSubscriptionScopeHeaders {
|
|
838
|
+
location?: string;
|
|
839
|
+
retryAfter?: string;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
// @public
|
|
843
|
+
export interface DeploymentsWhatIfAtSubscriptionScopeOptionalParams extends coreClient.OperationOptions {
|
|
844
|
+
resumeFrom?: string;
|
|
845
|
+
updateIntervalInMs?: number;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
// @public
|
|
849
|
+
export type DeploymentsWhatIfAtSubscriptionScopeResponse = WhatIfOperationResult;
|
|
850
|
+
|
|
851
|
+
// @public
|
|
852
|
+
export interface DeploymentsWhatIfAtTenantScopeHeaders {
|
|
853
|
+
location?: string;
|
|
854
|
+
retryAfter?: string;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
// @public
|
|
858
|
+
export interface DeploymentsWhatIfAtTenantScopeOptionalParams extends coreClient.OperationOptions {
|
|
859
|
+
resumeFrom?: string;
|
|
860
|
+
updateIntervalInMs?: number;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
// @public
|
|
864
|
+
export type DeploymentsWhatIfAtTenantScopeResponse = WhatIfOperationResult;
|
|
865
|
+
|
|
866
|
+
// @public
|
|
867
|
+
export interface DeploymentsWhatIfHeaders {
|
|
868
|
+
location?: string;
|
|
869
|
+
retryAfter?: string;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// @public
|
|
873
|
+
export interface DeploymentsWhatIfOptionalParams extends coreClient.OperationOptions {
|
|
874
|
+
resumeFrom?: string;
|
|
875
|
+
updateIntervalInMs?: number;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
// @public
|
|
879
|
+
export type DeploymentsWhatIfResponse = WhatIfOperationResult;
|
|
880
|
+
|
|
881
|
+
// @public
|
|
882
|
+
export interface DeploymentValidateResult {
|
|
883
|
+
readonly error?: ErrorResponse;
|
|
884
|
+
readonly id?: string;
|
|
885
|
+
readonly name?: string;
|
|
886
|
+
properties?: DeploymentPropertiesExtended;
|
|
887
|
+
readonly type?: string;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
// @public
|
|
891
|
+
export interface DeploymentWhatIf {
|
|
892
|
+
location?: string;
|
|
893
|
+
properties: DeploymentWhatIfProperties;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
// @public
|
|
897
|
+
export interface DeploymentWhatIfProperties extends DeploymentProperties {
|
|
898
|
+
whatIfSettings?: DeploymentWhatIfSettings;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
// @public
|
|
902
|
+
export interface DeploymentWhatIfSettings {
|
|
903
|
+
resultFormat?: WhatIfResultFormat;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
// @public
|
|
907
|
+
export interface ErrorAdditionalInfo {
|
|
908
|
+
readonly info?: Record<string, unknown>;
|
|
909
|
+
readonly type?: string;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
// @public
|
|
913
|
+
export interface ErrorResponse {
|
|
914
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
915
|
+
readonly code?: string;
|
|
916
|
+
readonly details?: ErrorResponse[];
|
|
917
|
+
readonly message?: string;
|
|
918
|
+
readonly target?: string;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
// @public
|
|
922
|
+
export interface ExpressionEvaluationOptions {
|
|
923
|
+
scope?: ExpressionEvaluationOptionsScopeType;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
// @public
|
|
927
|
+
export type ExpressionEvaluationOptionsScopeType = string;
|
|
928
|
+
|
|
929
|
+
// @public
|
|
930
|
+
export type ExtensionConfigPropertyType = string;
|
|
931
|
+
|
|
932
|
+
// @public
|
|
933
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
934
|
+
|
|
935
|
+
// @public
|
|
936
|
+
export interface HttpMessage {
|
|
937
|
+
content?: Record<string, unknown>;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
// @public
|
|
941
|
+
export interface KeyVaultParameterReference {
|
|
942
|
+
keyVault: KeyVaultReference;
|
|
943
|
+
secretName: string;
|
|
944
|
+
secretVersion?: string;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
// @public
|
|
948
|
+
export interface KeyVaultReference {
|
|
949
|
+
id: string;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
// @public
|
|
953
|
+
export enum KnownAliasPathAttributes {
|
|
954
|
+
Modifiable = "Modifiable",
|
|
955
|
+
None = "None"
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
// @public
|
|
959
|
+
export enum KnownAliasPathTokenType {
|
|
960
|
+
Any = "Any",
|
|
961
|
+
Array = "Array",
|
|
962
|
+
Boolean = "Boolean",
|
|
963
|
+
Integer = "Integer",
|
|
964
|
+
NotSpecified = "NotSpecified",
|
|
965
|
+
Number = "Number",
|
|
966
|
+
Object = "Object",
|
|
967
|
+
String = "String"
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
// @public
|
|
971
|
+
export enum KnownDeploymentIdentityType {
|
|
972
|
+
None = "None",
|
|
973
|
+
UserAssigned = "UserAssigned"
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
// @public
|
|
977
|
+
export enum KnownExpressionEvaluationOptionsScopeType {
|
|
978
|
+
Inner = "Inner",
|
|
979
|
+
NotSpecified = "NotSpecified",
|
|
980
|
+
Outer = "Outer"
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
// @public
|
|
984
|
+
export enum KnownExtensionConfigPropertyType {
|
|
985
|
+
Array = "Array",
|
|
986
|
+
Bool = "Bool",
|
|
987
|
+
Int = "Int",
|
|
988
|
+
Object = "Object",
|
|
989
|
+
SecureObject = "SecureObject",
|
|
990
|
+
SecureString = "SecureString",
|
|
991
|
+
String = "String"
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
// @public
|
|
995
|
+
export enum KnownLevel {
|
|
996
|
+
Error = "Error",
|
|
997
|
+
Info = "Info",
|
|
998
|
+
Warning = "Warning"
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
// @public
|
|
1002
|
+
export enum KnownProviderAuthorizationConsentState {
|
|
1003
|
+
Consented = "Consented",
|
|
1004
|
+
NotRequired = "NotRequired",
|
|
1005
|
+
NotSpecified = "NotSpecified",
|
|
1006
|
+
Required = "Required"
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
// @public
|
|
1010
|
+
export enum KnownProvisioningState {
|
|
1011
|
+
Accepted = "Accepted",
|
|
1012
|
+
Canceled = "Canceled",
|
|
1013
|
+
Created = "Created",
|
|
1014
|
+
Creating = "Creating",
|
|
1015
|
+
Deleted = "Deleted",
|
|
1016
|
+
Deleting = "Deleting",
|
|
1017
|
+
Failed = "Failed",
|
|
1018
|
+
NotSpecified = "NotSpecified",
|
|
1019
|
+
Ready = "Ready",
|
|
1020
|
+
Running = "Running",
|
|
1021
|
+
Succeeded = "Succeeded",
|
|
1022
|
+
Updating = "Updating"
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
// @public
|
|
1026
|
+
export enum KnownValidationLevel {
|
|
1027
|
+
Provider = "Provider",
|
|
1028
|
+
ProviderNoRbac = "ProviderNoRbac",
|
|
1029
|
+
Template = "Template"
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
// @public
|
|
1033
|
+
export type Level = string;
|
|
1034
|
+
|
|
1035
|
+
// @public
|
|
1036
|
+
export interface OnErrorDeployment {
|
|
1037
|
+
deploymentName?: string;
|
|
1038
|
+
type?: OnErrorDeploymentType;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
// @public
|
|
1042
|
+
export interface OnErrorDeploymentExtended {
|
|
1043
|
+
deploymentName?: string;
|
|
1044
|
+
readonly provisioningState?: string;
|
|
1045
|
+
type?: OnErrorDeploymentType;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
// @public
|
|
1049
|
+
export type OnErrorDeploymentType = "LastSuccessful" | "SpecificDeployment";
|
|
1050
|
+
|
|
1051
|
+
// @public
|
|
1052
|
+
export interface ParametersLink {
|
|
1053
|
+
contentVersion?: string;
|
|
1054
|
+
uri: string;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
// @public
|
|
1058
|
+
export type PropertyChangeType = "Create" | "Delete" | "Modify" | "Array" | "NoEffect";
|
|
1059
|
+
|
|
1060
|
+
// @public
|
|
1061
|
+
export interface Provider {
|
|
1062
|
+
readonly id?: string;
|
|
1063
|
+
namespace?: string;
|
|
1064
|
+
providerAuthorizationConsentState?: ProviderAuthorizationConsentState;
|
|
1065
|
+
readonly registrationPolicy?: string;
|
|
1066
|
+
readonly registrationState?: string;
|
|
1067
|
+
readonly resourceTypes?: ProviderResourceType[];
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
// @public
|
|
1071
|
+
export type ProviderAuthorizationConsentState = string;
|
|
1072
|
+
|
|
1073
|
+
// @public
|
|
1074
|
+
export interface ProviderExtendedLocation {
|
|
1075
|
+
extendedLocations?: string[];
|
|
1076
|
+
location?: string;
|
|
1077
|
+
type?: string;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
// @public
|
|
1081
|
+
export interface ProviderResourceType {
|
|
1082
|
+
aliases?: Alias[];
|
|
1083
|
+
readonly apiProfiles?: ApiProfile[];
|
|
1084
|
+
apiVersions?: string[];
|
|
1085
|
+
capabilities?: string;
|
|
1086
|
+
readonly defaultApiVersion?: string;
|
|
1087
|
+
locationMappings?: ProviderExtendedLocation[];
|
|
1088
|
+
locations?: string[];
|
|
1089
|
+
properties?: {
|
|
1090
|
+
[propertyName: string]: string;
|
|
1091
|
+
};
|
|
1092
|
+
resourceType?: string;
|
|
1093
|
+
// (undocumented)
|
|
1094
|
+
zoneMappings?: ZoneMapping[];
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
// @public
|
|
1098
|
+
export type ProvisioningOperation = "NotSpecified" | "Create" | "Delete" | "Waiting" | "AzureAsyncOperationWaiting" | "ResourceCacheWaiting" | "Action" | "Read" | "EvaluateDeploymentOutput" | "DeploymentCleanup";
|
|
1099
|
+
|
|
1100
|
+
// @public
|
|
1101
|
+
export type ProvisioningState = string;
|
|
1102
|
+
|
|
1103
|
+
// @public
|
|
1104
|
+
export interface ResourceProviderOperationDisplayProperties {
|
|
1105
|
+
description?: string;
|
|
1106
|
+
operation?: string;
|
|
1107
|
+
provider?: string;
|
|
1108
|
+
publisher?: string;
|
|
1109
|
+
resource?: string;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
// @public
|
|
1113
|
+
export interface ResourceReference {
|
|
1114
|
+
readonly apiVersion?: string;
|
|
1115
|
+
readonly extension?: DeploymentExtensionDefinition;
|
|
1116
|
+
readonly id?: string;
|
|
1117
|
+
readonly identifiers?: Record<string, unknown>;
|
|
1118
|
+
readonly resourceType?: string;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
// @public
|
|
1122
|
+
export interface ScopedDeployment {
|
|
1123
|
+
location: string;
|
|
1124
|
+
properties: DeploymentProperties;
|
|
1125
|
+
tags?: {
|
|
1126
|
+
[propertyName: string]: string;
|
|
1127
|
+
};
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
// @public
|
|
1131
|
+
export interface ScopedDeploymentWhatIf {
|
|
1132
|
+
location: string;
|
|
1133
|
+
properties: DeploymentWhatIfProperties;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
// @public
|
|
1137
|
+
export interface StatusMessage {
|
|
1138
|
+
error?: ErrorResponse;
|
|
1139
|
+
status?: string;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
// @public
|
|
1143
|
+
export interface SubResource {
|
|
1144
|
+
id?: string;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
// @public
|
|
1148
|
+
export interface TargetResource {
|
|
1149
|
+
apiVersion?: string;
|
|
1150
|
+
extension?: DeploymentExtensionDefinition;
|
|
1151
|
+
id?: string;
|
|
1152
|
+
identifiers?: Record<string, unknown>;
|
|
1153
|
+
resourceName?: string;
|
|
1154
|
+
resourceType?: string;
|
|
1155
|
+
symbolicName?: string;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
// @public
|
|
1159
|
+
export interface TemplateHashResult {
|
|
1160
|
+
minifiedTemplate?: string;
|
|
1161
|
+
templateHash?: string;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
// @public
|
|
1165
|
+
export interface TemplateLink {
|
|
1166
|
+
contentVersion?: string;
|
|
1167
|
+
id?: string;
|
|
1168
|
+
queryString?: string;
|
|
1169
|
+
relativePath?: string;
|
|
1170
|
+
uri?: string;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
// @public
|
|
1174
|
+
export interface UserAssignedIdentity {
|
|
1175
|
+
readonly clientId?: string;
|
|
1176
|
+
readonly principalId?: string;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
// @public
|
|
1180
|
+
export type ValidationLevel = string;
|
|
1181
|
+
|
|
1182
|
+
// @public
|
|
1183
|
+
export interface WhatIfChange {
|
|
1184
|
+
after?: Record<string, unknown>;
|
|
1185
|
+
before?: Record<string, unknown>;
|
|
1186
|
+
changeType: ChangeType;
|
|
1187
|
+
delta?: WhatIfPropertyChange[];
|
|
1188
|
+
deploymentId?: string;
|
|
1189
|
+
extension?: DeploymentExtensionDefinition;
|
|
1190
|
+
identifiers?: Record<string, unknown>;
|
|
1191
|
+
resourceId?: string;
|
|
1192
|
+
symbolicName?: string;
|
|
1193
|
+
unsupportedReason?: string;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
// @public
|
|
1197
|
+
export interface WhatIfOperationResult {
|
|
1198
|
+
changes?: WhatIfChange[];
|
|
1199
|
+
readonly diagnostics?: DeploymentDiagnosticsDefinition[];
|
|
1200
|
+
error?: ErrorResponse;
|
|
1201
|
+
potentialChanges?: WhatIfChange[];
|
|
1202
|
+
status?: string;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
// @public
|
|
1206
|
+
export interface WhatIfPropertyChange {
|
|
1207
|
+
after?: Record<string, unknown>;
|
|
1208
|
+
before?: Record<string, unknown>;
|
|
1209
|
+
children?: WhatIfPropertyChange[];
|
|
1210
|
+
path: string;
|
|
1211
|
+
propertyChangeType: PropertyChangeType;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
// @public
|
|
1215
|
+
export type WhatIfResultFormat = "ResourceIdOnly" | "FullResourcePayloads";
|
|
1216
|
+
|
|
1217
|
+
// @public (undocumented)
|
|
1218
|
+
export interface ZoneMapping {
|
|
1219
|
+
location?: string;
|
|
1220
|
+
// (undocumented)
|
|
1221
|
+
zones?: string[];
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
// (No @packageDocumentation comment for this package)
|
|
1225
|
+
|
|
1226
|
+
```
|