@azure/arm-changeanalysis 2.1.1-alpha.20250619.1 → 2.1.1-alpha.20250717.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,228 +1,228 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-changeanalysis"
|
|
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 { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
-
|
|
11
|
-
// @public (undocumented)
|
|
12
|
-
export class AzureChangeAnalysisManagementClient extends coreClient.ServiceClient {
|
|
13
|
-
// (undocumented)
|
|
14
|
-
$host: string;
|
|
15
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureChangeAnalysisManagementClientOptionalParams);
|
|
16
|
-
// (undocumented)
|
|
17
|
-
apiVersion: string;
|
|
18
|
-
// (undocumented)
|
|
19
|
-
changes: Changes;
|
|
20
|
-
// (undocumented)
|
|
21
|
-
operations: Operations;
|
|
22
|
-
// (undocumented)
|
|
23
|
-
resourceChanges: ResourceChanges;
|
|
24
|
-
// (undocumented)
|
|
25
|
-
subscriptionId: string;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export interface AzureChangeAnalysisManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
30
|
-
$host?: string;
|
|
31
|
-
apiVersion?: string;
|
|
32
|
-
endpoint?: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// @public
|
|
36
|
-
export interface Change extends ProxyResource {
|
|
37
|
-
properties?: ChangeProperties;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export type ChangeCategory = "User" | "System";
|
|
42
|
-
|
|
43
|
-
// @public
|
|
44
|
-
export interface ChangeList {
|
|
45
|
-
nextLink?: string;
|
|
46
|
-
value?: Change[];
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// @public
|
|
50
|
-
export interface ChangeProperties {
|
|
51
|
-
changeType?: ChangeType;
|
|
52
|
-
initiatedByList?: string[];
|
|
53
|
-
propertyChanges?: PropertyChange[];
|
|
54
|
-
resourceId?: string;
|
|
55
|
-
timeStamp?: Date;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// @public
|
|
59
|
-
export interface Changes {
|
|
60
|
-
listChangesByResourceGroup(resourceGroupName: string, startTime: Date, endTime: Date, options?: ChangesListChangesByResourceGroupOptionalParams): PagedAsyncIterableIterator<Change>;
|
|
61
|
-
listChangesBySubscription(startTime: Date, endTime: Date, options?: ChangesListChangesBySubscriptionOptionalParams): PagedAsyncIterableIterator<Change>;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
// @public
|
|
65
|
-
export interface ChangesListChangesByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
66
|
-
skipToken?: string;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// @public
|
|
70
|
-
export type ChangesListChangesByResourceGroupNextResponse = ChangeList;
|
|
71
|
-
|
|
72
|
-
// @public
|
|
73
|
-
export interface ChangesListChangesByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
74
|
-
skipToken?: string;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export type ChangesListChangesByResourceGroupResponse = ChangeList;
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export interface ChangesListChangesBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
82
|
-
skipToken?: string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// @public
|
|
86
|
-
export type ChangesListChangesBySubscriptionNextResponse = ChangeList;
|
|
87
|
-
|
|
88
|
-
// @public
|
|
89
|
-
export interface ChangesListChangesBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
90
|
-
skipToken?: string;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export type ChangesListChangesBySubscriptionResponse = ChangeList;
|
|
95
|
-
|
|
96
|
-
// @public
|
|
97
|
-
export type ChangeType = string;
|
|
98
|
-
|
|
99
|
-
// @public
|
|
100
|
-
export interface ErrorAdditionalInfo {
|
|
101
|
-
readonly info?: Record<string, unknown>;
|
|
102
|
-
readonly type?: string;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// @public
|
|
106
|
-
export interface ErrorDetail {
|
|
107
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
108
|
-
readonly code?: string;
|
|
109
|
-
readonly details?: ErrorDetail[];
|
|
110
|
-
readonly message?: string;
|
|
111
|
-
readonly target?: string;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export interface ErrorResponse {
|
|
116
|
-
error?: ErrorDetail;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// @public
|
|
120
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
121
|
-
|
|
122
|
-
// @public
|
|
123
|
-
export enum KnownChangeType {
|
|
124
|
-
Add = "Add",
|
|
125
|
-
Remove = "Remove",
|
|
126
|
-
Update = "Update"
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export enum KnownLevel {
|
|
131
|
-
Important = "Important",
|
|
132
|
-
Noisy = "Noisy",
|
|
133
|
-
Normal = "Normal"
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export type Level = string;
|
|
138
|
-
|
|
139
|
-
// @public
|
|
140
|
-
export interface Operations {
|
|
141
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<ResourceProviderOperationDefinition>;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
// @public
|
|
145
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
146
|
-
skipToken?: string;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
// @public
|
|
150
|
-
export type OperationsListNextResponse = ResourceProviderOperationList;
|
|
151
|
-
|
|
152
|
-
// @public
|
|
153
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
154
|
-
skipToken?: string;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
// @public
|
|
158
|
-
export type OperationsListResponse = ResourceProviderOperationList;
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export interface PropertyChange {
|
|
162
|
-
changeCategory?: ChangeCategory;
|
|
163
|
-
changeType?: ChangeType;
|
|
164
|
-
description?: string;
|
|
165
|
-
displayName?: string;
|
|
166
|
-
isDataMasked?: boolean;
|
|
167
|
-
jsonPath?: string;
|
|
168
|
-
// (undocumented)
|
|
169
|
-
level?: Level;
|
|
170
|
-
newValue?: string;
|
|
171
|
-
oldValue?: string;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
// @public
|
|
175
|
-
export interface ProxyResource extends Resource {
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
// @public
|
|
179
|
-
export interface Resource {
|
|
180
|
-
readonly id?: string;
|
|
181
|
-
readonly name?: string;
|
|
182
|
-
readonly type?: string;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
// @public
|
|
186
|
-
export interface ResourceChanges {
|
|
187
|
-
list(resourceId: string, startTime: Date, endTime: Date, options?: ResourceChangesListOptionalParams): PagedAsyncIterableIterator<Change>;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
// @public
|
|
191
|
-
export interface ResourceChangesListNextOptionalParams extends coreClient.OperationOptions {
|
|
192
|
-
skipToken?: string;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// @public
|
|
196
|
-
export type ResourceChangesListNextResponse = ChangeList;
|
|
197
|
-
|
|
198
|
-
// @public
|
|
199
|
-
export interface ResourceChangesListOptionalParams extends coreClient.OperationOptions {
|
|
200
|
-
skipToken?: string;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
// @public
|
|
204
|
-
export type ResourceChangesListResponse = ChangeList;
|
|
205
|
-
|
|
206
|
-
// @public
|
|
207
|
-
export interface ResourceProviderOperationDefinition {
|
|
208
|
-
display?: ResourceProviderOperationDisplay;
|
|
209
|
-
name?: string;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
// @public
|
|
213
|
-
export interface ResourceProviderOperationDisplay {
|
|
214
|
-
description?: string;
|
|
215
|
-
operation?: string;
|
|
216
|
-
provider?: string;
|
|
217
|
-
resource?: string;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
// @public
|
|
221
|
-
export interface ResourceProviderOperationList {
|
|
222
|
-
nextLink?: string;
|
|
223
|
-
value?: ResourceProviderOperationDefinition[];
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
// (No @packageDocumentation comment for this package)
|
|
227
|
-
|
|
228
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-changeanalysis"
|
|
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 { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
|
|
11
|
+
// @public (undocumented)
|
|
12
|
+
export class AzureChangeAnalysisManagementClient extends coreClient.ServiceClient {
|
|
13
|
+
// (undocumented)
|
|
14
|
+
$host: string;
|
|
15
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureChangeAnalysisManagementClientOptionalParams);
|
|
16
|
+
// (undocumented)
|
|
17
|
+
apiVersion: string;
|
|
18
|
+
// (undocumented)
|
|
19
|
+
changes: Changes;
|
|
20
|
+
// (undocumented)
|
|
21
|
+
operations: Operations;
|
|
22
|
+
// (undocumented)
|
|
23
|
+
resourceChanges: ResourceChanges;
|
|
24
|
+
// (undocumented)
|
|
25
|
+
subscriptionId: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export interface AzureChangeAnalysisManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
30
|
+
$host?: string;
|
|
31
|
+
apiVersion?: string;
|
|
32
|
+
endpoint?: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// @public
|
|
36
|
+
export interface Change extends ProxyResource {
|
|
37
|
+
properties?: ChangeProperties;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export type ChangeCategory = "User" | "System";
|
|
42
|
+
|
|
43
|
+
// @public
|
|
44
|
+
export interface ChangeList {
|
|
45
|
+
nextLink?: string;
|
|
46
|
+
value?: Change[];
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// @public
|
|
50
|
+
export interface ChangeProperties {
|
|
51
|
+
changeType?: ChangeType;
|
|
52
|
+
initiatedByList?: string[];
|
|
53
|
+
propertyChanges?: PropertyChange[];
|
|
54
|
+
resourceId?: string;
|
|
55
|
+
timeStamp?: Date;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// @public
|
|
59
|
+
export interface Changes {
|
|
60
|
+
listChangesByResourceGroup(resourceGroupName: string, startTime: Date, endTime: Date, options?: ChangesListChangesByResourceGroupOptionalParams): PagedAsyncIterableIterator<Change>;
|
|
61
|
+
listChangesBySubscription(startTime: Date, endTime: Date, options?: ChangesListChangesBySubscriptionOptionalParams): PagedAsyncIterableIterator<Change>;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// @public
|
|
65
|
+
export interface ChangesListChangesByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
66
|
+
skipToken?: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export type ChangesListChangesByResourceGroupNextResponse = ChangeList;
|
|
71
|
+
|
|
72
|
+
// @public
|
|
73
|
+
export interface ChangesListChangesByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
74
|
+
skipToken?: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export type ChangesListChangesByResourceGroupResponse = ChangeList;
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export interface ChangesListChangesBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
82
|
+
skipToken?: string;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// @public
|
|
86
|
+
export type ChangesListChangesBySubscriptionNextResponse = ChangeList;
|
|
87
|
+
|
|
88
|
+
// @public
|
|
89
|
+
export interface ChangesListChangesBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
90
|
+
skipToken?: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export type ChangesListChangesBySubscriptionResponse = ChangeList;
|
|
95
|
+
|
|
96
|
+
// @public
|
|
97
|
+
export type ChangeType = string;
|
|
98
|
+
|
|
99
|
+
// @public
|
|
100
|
+
export interface ErrorAdditionalInfo {
|
|
101
|
+
readonly info?: Record<string, unknown>;
|
|
102
|
+
readonly type?: string;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// @public
|
|
106
|
+
export interface ErrorDetail {
|
|
107
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
108
|
+
readonly code?: string;
|
|
109
|
+
readonly details?: ErrorDetail[];
|
|
110
|
+
readonly message?: string;
|
|
111
|
+
readonly target?: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// @public
|
|
115
|
+
export interface ErrorResponse {
|
|
116
|
+
error?: ErrorDetail;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// @public
|
|
120
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
121
|
+
|
|
122
|
+
// @public
|
|
123
|
+
export enum KnownChangeType {
|
|
124
|
+
Add = "Add",
|
|
125
|
+
Remove = "Remove",
|
|
126
|
+
Update = "Update"
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export enum KnownLevel {
|
|
131
|
+
Important = "Important",
|
|
132
|
+
Noisy = "Noisy",
|
|
133
|
+
Normal = "Normal"
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export type Level = string;
|
|
138
|
+
|
|
139
|
+
// @public
|
|
140
|
+
export interface Operations {
|
|
141
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<ResourceProviderOperationDefinition>;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// @public
|
|
145
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
146
|
+
skipToken?: string;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// @public
|
|
150
|
+
export type OperationsListNextResponse = ResourceProviderOperationList;
|
|
151
|
+
|
|
152
|
+
// @public
|
|
153
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
154
|
+
skipToken?: string;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export type OperationsListResponse = ResourceProviderOperationList;
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export interface PropertyChange {
|
|
162
|
+
changeCategory?: ChangeCategory;
|
|
163
|
+
changeType?: ChangeType;
|
|
164
|
+
description?: string;
|
|
165
|
+
displayName?: string;
|
|
166
|
+
isDataMasked?: boolean;
|
|
167
|
+
jsonPath?: string;
|
|
168
|
+
// (undocumented)
|
|
169
|
+
level?: Level;
|
|
170
|
+
newValue?: string;
|
|
171
|
+
oldValue?: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// @public
|
|
175
|
+
export interface ProxyResource extends Resource {
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// @public
|
|
179
|
+
export interface Resource {
|
|
180
|
+
readonly id?: string;
|
|
181
|
+
readonly name?: string;
|
|
182
|
+
readonly type?: string;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
// @public
|
|
186
|
+
export interface ResourceChanges {
|
|
187
|
+
list(resourceId: string, startTime: Date, endTime: Date, options?: ResourceChangesListOptionalParams): PagedAsyncIterableIterator<Change>;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// @public
|
|
191
|
+
export interface ResourceChangesListNextOptionalParams extends coreClient.OperationOptions {
|
|
192
|
+
skipToken?: string;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// @public
|
|
196
|
+
export type ResourceChangesListNextResponse = ChangeList;
|
|
197
|
+
|
|
198
|
+
// @public
|
|
199
|
+
export interface ResourceChangesListOptionalParams extends coreClient.OperationOptions {
|
|
200
|
+
skipToken?: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
// @public
|
|
204
|
+
export type ResourceChangesListResponse = ChangeList;
|
|
205
|
+
|
|
206
|
+
// @public
|
|
207
|
+
export interface ResourceProviderOperationDefinition {
|
|
208
|
+
display?: ResourceProviderOperationDisplay;
|
|
209
|
+
name?: string;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// @public
|
|
213
|
+
export interface ResourceProviderOperationDisplay {
|
|
214
|
+
description?: string;
|
|
215
|
+
operation?: string;
|
|
216
|
+
provider?: string;
|
|
217
|
+
resource?: string;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
// @public
|
|
221
|
+
export interface ResourceProviderOperationList {
|
|
222
|
+
nextLink?: string;
|
|
223
|
+
value?: ResourceProviderOperationDefinition[];
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// (No @packageDocumentation comment for this package)
|
|
227
|
+
|
|
228
|
+
```
|