@azure/arm-changes 1.1.1-alpha.20250620.1 → 1.1.1-alpha.20250718.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,142 +1,142 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-changes"
|
|
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
|
|
12
|
-
export interface ChangeAttributes {
|
|
13
|
-
readonly changesCount?: number;
|
|
14
|
-
readonly correlationId?: string;
|
|
15
|
-
readonly newResourceSnapshotId?: string;
|
|
16
|
-
readonly previousResourceSnapshotId?: string;
|
|
17
|
-
readonly timestamp?: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// @public
|
|
21
|
-
export interface ChangeBase {
|
|
22
|
-
readonly changeCategory?: ChangeCategory;
|
|
23
|
-
readonly newValue?: string;
|
|
24
|
-
readonly previousValue?: string;
|
|
25
|
-
readonly propertyChangeType?: PropertyChangeType;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export type ChangeCategory = "User" | "System";
|
|
30
|
-
|
|
31
|
-
// @public
|
|
32
|
-
export interface ChangeProperties {
|
|
33
|
-
changeAttributes?: ChangeAttributes;
|
|
34
|
-
changes?: {
|
|
35
|
-
[propertyName: string]: ChangeBase;
|
|
36
|
-
};
|
|
37
|
-
readonly changeType?: ChangeType;
|
|
38
|
-
readonly targetResourceId?: string;
|
|
39
|
-
readonly targetResourceType?: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// @public
|
|
43
|
-
export interface ChangeResourceListResult {
|
|
44
|
-
nextLink?: string;
|
|
45
|
-
value?: ChangeResourceResult[];
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
// @public
|
|
49
|
-
export interface ChangeResourceResult extends Resource {
|
|
50
|
-
properties?: ChangeProperties;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// @public
|
|
54
|
-
export interface Changes {
|
|
55
|
-
get(resourceGroupName: string, resourceProviderNamespace: string, resourceType: string, resourceName: string, changeResourceId: string, options?: ChangesGetOptionalParams): Promise<ChangesGetResponse>;
|
|
56
|
-
list(resourceGroupName: string, resourceProviderNamespace: string, resourceType: string, resourceName: string, options?: ChangesListOptionalParams): PagedAsyncIterableIterator<ChangeResourceResult>;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// @public (undocumented)
|
|
60
|
-
export class ChangesClient extends coreClient.ServiceClient {
|
|
61
|
-
// (undocumented)
|
|
62
|
-
$host: string;
|
|
63
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ChangesClientOptionalParams);
|
|
64
|
-
// (undocumented)
|
|
65
|
-
apiVersion: string;
|
|
66
|
-
// (undocumented)
|
|
67
|
-
changes: Changes;
|
|
68
|
-
// (undocumented)
|
|
69
|
-
subscriptionId: string;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// @public
|
|
73
|
-
export interface ChangesClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
74
|
-
$host?: string;
|
|
75
|
-
apiVersion?: string;
|
|
76
|
-
endpoint?: string;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
// @public
|
|
80
|
-
export interface ChangesGetOptionalParams extends coreClient.OperationOptions {
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
// @public
|
|
84
|
-
export type ChangesGetResponse = ChangeResourceResult;
|
|
85
|
-
|
|
86
|
-
// @public
|
|
87
|
-
export interface ChangesListNextOptionalParams extends coreClient.OperationOptions {
|
|
88
|
-
skipToken?: string;
|
|
89
|
-
top?: number;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// @public
|
|
93
|
-
export type ChangesListNextResponse = ChangeResourceListResult;
|
|
94
|
-
|
|
95
|
-
// @public
|
|
96
|
-
export interface ChangesListOptionalParams extends coreClient.OperationOptions {
|
|
97
|
-
skipToken?: string;
|
|
98
|
-
top?: number;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
// @public
|
|
102
|
-
export type ChangesListResponse = ChangeResourceListResult;
|
|
103
|
-
|
|
104
|
-
// @public
|
|
105
|
-
export type ChangeType = "Update" | "Delete" | "Create";
|
|
106
|
-
|
|
107
|
-
// @public
|
|
108
|
-
export interface ErrorAdditionalInfo {
|
|
109
|
-
readonly info?: Record<string, unknown>;
|
|
110
|
-
readonly type?: string;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
// @public
|
|
114
|
-
export interface ErrorDetail {
|
|
115
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
116
|
-
readonly code?: string;
|
|
117
|
-
readonly details?: ErrorDetail[];
|
|
118
|
-
readonly message?: string;
|
|
119
|
-
readonly target?: string;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
// @public
|
|
123
|
-
export interface ErrorResponse {
|
|
124
|
-
error?: ErrorDetail;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
// @public
|
|
128
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
129
|
-
|
|
130
|
-
// @public
|
|
131
|
-
export type PropertyChangeType = "Update" | "Insert" | "Remove";
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export interface Resource {
|
|
135
|
-
readonly id?: string;
|
|
136
|
-
readonly name?: string;
|
|
137
|
-
readonly type?: string;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
// (No @packageDocumentation comment for this package)
|
|
141
|
-
|
|
142
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-changes"
|
|
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
|
|
12
|
+
export interface ChangeAttributes {
|
|
13
|
+
readonly changesCount?: number;
|
|
14
|
+
readonly correlationId?: string;
|
|
15
|
+
readonly newResourceSnapshotId?: string;
|
|
16
|
+
readonly previousResourceSnapshotId?: string;
|
|
17
|
+
readonly timestamp?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// @public
|
|
21
|
+
export interface ChangeBase {
|
|
22
|
+
readonly changeCategory?: ChangeCategory;
|
|
23
|
+
readonly newValue?: string;
|
|
24
|
+
readonly previousValue?: string;
|
|
25
|
+
readonly propertyChangeType?: PropertyChangeType;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export type ChangeCategory = "User" | "System";
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export interface ChangeProperties {
|
|
33
|
+
changeAttributes?: ChangeAttributes;
|
|
34
|
+
changes?: {
|
|
35
|
+
[propertyName: string]: ChangeBase;
|
|
36
|
+
};
|
|
37
|
+
readonly changeType?: ChangeType;
|
|
38
|
+
readonly targetResourceId?: string;
|
|
39
|
+
readonly targetResourceType?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// @public
|
|
43
|
+
export interface ChangeResourceListResult {
|
|
44
|
+
nextLink?: string;
|
|
45
|
+
value?: ChangeResourceResult[];
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
// @public
|
|
49
|
+
export interface ChangeResourceResult extends Resource {
|
|
50
|
+
properties?: ChangeProperties;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// @public
|
|
54
|
+
export interface Changes {
|
|
55
|
+
get(resourceGroupName: string, resourceProviderNamespace: string, resourceType: string, resourceName: string, changeResourceId: string, options?: ChangesGetOptionalParams): Promise<ChangesGetResponse>;
|
|
56
|
+
list(resourceGroupName: string, resourceProviderNamespace: string, resourceType: string, resourceName: string, options?: ChangesListOptionalParams): PagedAsyncIterableIterator<ChangeResourceResult>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// @public (undocumented)
|
|
60
|
+
export class ChangesClient extends coreClient.ServiceClient {
|
|
61
|
+
// (undocumented)
|
|
62
|
+
$host: string;
|
|
63
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ChangesClientOptionalParams);
|
|
64
|
+
// (undocumented)
|
|
65
|
+
apiVersion: string;
|
|
66
|
+
// (undocumented)
|
|
67
|
+
changes: Changes;
|
|
68
|
+
// (undocumented)
|
|
69
|
+
subscriptionId: string;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// @public
|
|
73
|
+
export interface ChangesClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
74
|
+
$host?: string;
|
|
75
|
+
apiVersion?: string;
|
|
76
|
+
endpoint?: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// @public
|
|
80
|
+
export interface ChangesGetOptionalParams extends coreClient.OperationOptions {
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// @public
|
|
84
|
+
export type ChangesGetResponse = ChangeResourceResult;
|
|
85
|
+
|
|
86
|
+
// @public
|
|
87
|
+
export interface ChangesListNextOptionalParams extends coreClient.OperationOptions {
|
|
88
|
+
skipToken?: string;
|
|
89
|
+
top?: number;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// @public
|
|
93
|
+
export type ChangesListNextResponse = ChangeResourceListResult;
|
|
94
|
+
|
|
95
|
+
// @public
|
|
96
|
+
export interface ChangesListOptionalParams extends coreClient.OperationOptions {
|
|
97
|
+
skipToken?: string;
|
|
98
|
+
top?: number;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// @public
|
|
102
|
+
export type ChangesListResponse = ChangeResourceListResult;
|
|
103
|
+
|
|
104
|
+
// @public
|
|
105
|
+
export type ChangeType = "Update" | "Delete" | "Create";
|
|
106
|
+
|
|
107
|
+
// @public
|
|
108
|
+
export interface ErrorAdditionalInfo {
|
|
109
|
+
readonly info?: Record<string, unknown>;
|
|
110
|
+
readonly type?: string;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// @public
|
|
114
|
+
export interface ErrorDetail {
|
|
115
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
116
|
+
readonly code?: string;
|
|
117
|
+
readonly details?: ErrorDetail[];
|
|
118
|
+
readonly message?: string;
|
|
119
|
+
readonly target?: string;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// @public
|
|
123
|
+
export interface ErrorResponse {
|
|
124
|
+
error?: ErrorDetail;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// @public
|
|
128
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
129
|
+
|
|
130
|
+
// @public
|
|
131
|
+
export type PropertyChangeType = "Update" | "Insert" | "Remove";
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export interface Resource {
|
|
135
|
+
readonly id?: string;
|
|
136
|
+
readonly name?: string;
|
|
137
|
+
readonly type?: string;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// (No @packageDocumentation comment for this package)
|
|
141
|
+
|
|
142
|
+
```
|