@azure/arm-attestation 2.1.1-alpha.20250619.1 → 2.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,334 +1,334 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-attestation"
|
|
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 AttestationManagementClient extends coreClient.ServiceClient {
|
|
13
|
-
// (undocumented)
|
|
14
|
-
$host: string;
|
|
15
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AttestationManagementClientOptionalParams);
|
|
16
|
-
// (undocumented)
|
|
17
|
-
apiVersion: string;
|
|
18
|
-
// (undocumented)
|
|
19
|
-
attestationProviders: AttestationProviders;
|
|
20
|
-
// (undocumented)
|
|
21
|
-
operations: Operations;
|
|
22
|
-
// (undocumented)
|
|
23
|
-
privateEndpointConnections: PrivateEndpointConnections;
|
|
24
|
-
// (undocumented)
|
|
25
|
-
subscriptionId: string;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export interface AttestationManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
30
|
-
$host?: string;
|
|
31
|
-
apiVersion?: string;
|
|
32
|
-
endpoint?: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// @public
|
|
36
|
-
export interface AttestationProvider extends TrackedResource {
|
|
37
|
-
attestUri?: string;
|
|
38
|
-
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
39
|
-
status?: AttestationServiceStatus;
|
|
40
|
-
readonly systemData?: SystemData;
|
|
41
|
-
trustModel?: string;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
// @public
|
|
45
|
-
export interface AttestationProviderListResult {
|
|
46
|
-
readonly systemData?: SystemData;
|
|
47
|
-
value?: AttestationProvider[];
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
// @public
|
|
51
|
-
export interface AttestationProviders {
|
|
52
|
-
create(resourceGroupName: string, providerName: string, creationParams: AttestationServiceCreationParams, options?: AttestationProvidersCreateOptionalParams): Promise<AttestationProvidersCreateResponse>;
|
|
53
|
-
delete(resourceGroupName: string, providerName: string, options?: AttestationProvidersDeleteOptionalParams): Promise<void>;
|
|
54
|
-
get(resourceGroupName: string, providerName: string, options?: AttestationProvidersGetOptionalParams): Promise<AttestationProvidersGetResponse>;
|
|
55
|
-
getDefaultByLocation(location: string, options?: AttestationProvidersGetDefaultByLocationOptionalParams): Promise<AttestationProvidersGetDefaultByLocationResponse>;
|
|
56
|
-
list(options?: AttestationProvidersListOptionalParams): Promise<AttestationProvidersListResponse>;
|
|
57
|
-
listByResourceGroup(resourceGroupName: string, options?: AttestationProvidersListByResourceGroupOptionalParams): Promise<AttestationProvidersListByResourceGroupResponse>;
|
|
58
|
-
listDefault(options?: AttestationProvidersListDefaultOptionalParams): Promise<AttestationProvidersListDefaultResponse>;
|
|
59
|
-
update(resourceGroupName: string, providerName: string, updateParams: AttestationServicePatchParams, options?: AttestationProvidersUpdateOptionalParams): Promise<AttestationProvidersUpdateResponse>;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
// @public
|
|
63
|
-
export interface AttestationProvidersCreateOptionalParams extends coreClient.OperationOptions {
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// @public
|
|
67
|
-
export type AttestationProvidersCreateResponse = AttestationProvider;
|
|
68
|
-
|
|
69
|
-
// @public
|
|
70
|
-
export interface AttestationProvidersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface AttestationProvidersGetDefaultByLocationOptionalParams extends coreClient.OperationOptions {
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export type AttestationProvidersGetDefaultByLocationResponse = AttestationProvider;
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export interface AttestationProvidersGetOptionalParams extends coreClient.OperationOptions {
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// @public
|
|
85
|
-
export type AttestationProvidersGetResponse = AttestationProvider;
|
|
86
|
-
|
|
87
|
-
// @public
|
|
88
|
-
export interface AttestationProvidersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
// @public
|
|
92
|
-
export type AttestationProvidersListByResourceGroupResponse = AttestationProviderListResult;
|
|
93
|
-
|
|
94
|
-
// @public
|
|
95
|
-
export interface AttestationProvidersListDefaultOptionalParams extends coreClient.OperationOptions {
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
// @public
|
|
99
|
-
export type AttestationProvidersListDefaultResponse = AttestationProviderListResult;
|
|
100
|
-
|
|
101
|
-
// @public
|
|
102
|
-
export interface AttestationProvidersListOptionalParams extends coreClient.OperationOptions {
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// @public
|
|
106
|
-
export type AttestationProvidersListResponse = AttestationProviderListResult;
|
|
107
|
-
|
|
108
|
-
// @public
|
|
109
|
-
export interface AttestationProvidersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
// @public
|
|
113
|
-
export type AttestationProvidersUpdateResponse = AttestationProvider;
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export interface AttestationServiceCreationParams {
|
|
117
|
-
location: string;
|
|
118
|
-
properties: AttestationServiceCreationSpecificParams;
|
|
119
|
-
tags?: {
|
|
120
|
-
[propertyName: string]: string;
|
|
121
|
-
};
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// @public
|
|
125
|
-
export interface AttestationServiceCreationSpecificParams {
|
|
126
|
-
policySigningCertificates?: JsonWebKeySet;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export interface AttestationServicePatchParams {
|
|
131
|
-
tags?: {
|
|
132
|
-
[propertyName: string]: string;
|
|
133
|
-
};
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export type AttestationServiceStatus = string;
|
|
138
|
-
|
|
139
|
-
// @public
|
|
140
|
-
export interface CloudError {
|
|
141
|
-
error?: CloudErrorBody;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
// @public
|
|
145
|
-
export interface CloudErrorBody {
|
|
146
|
-
code?: string;
|
|
147
|
-
message?: string;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// @public
|
|
151
|
-
export type CreatedByType = string;
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
155
|
-
|
|
156
|
-
// @public (undocumented)
|
|
157
|
-
export interface JsonWebKey {
|
|
158
|
-
alg?: string;
|
|
159
|
-
crv?: string;
|
|
160
|
-
d?: string;
|
|
161
|
-
dp?: string;
|
|
162
|
-
dq?: string;
|
|
163
|
-
e?: string;
|
|
164
|
-
k?: string;
|
|
165
|
-
kid?: string;
|
|
166
|
-
kty: string;
|
|
167
|
-
n?: string;
|
|
168
|
-
p?: string;
|
|
169
|
-
q?: string;
|
|
170
|
-
qi?: string;
|
|
171
|
-
use?: string;
|
|
172
|
-
x?: string;
|
|
173
|
-
x5C?: string[];
|
|
174
|
-
y?: string;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
// @public (undocumented)
|
|
178
|
-
export interface JsonWebKeySet {
|
|
179
|
-
keys?: JsonWebKey[];
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
// @public
|
|
183
|
-
export enum KnownAttestationServiceStatus {
|
|
184
|
-
Error = "Error",
|
|
185
|
-
NotReady = "NotReady",
|
|
186
|
-
Ready = "Ready"
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
// @public
|
|
190
|
-
export enum KnownCreatedByType {
|
|
191
|
-
Application = "Application",
|
|
192
|
-
Key = "Key",
|
|
193
|
-
ManagedIdentity = "ManagedIdentity",
|
|
194
|
-
User = "User"
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
// @public
|
|
198
|
-
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
199
|
-
Creating = "Creating",
|
|
200
|
-
Deleting = "Deleting",
|
|
201
|
-
Failed = "Failed",
|
|
202
|
-
Succeeded = "Succeeded"
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
// @public
|
|
206
|
-
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
207
|
-
Approved = "Approved",
|
|
208
|
-
Pending = "Pending",
|
|
209
|
-
Rejected = "Rejected"
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
// @public
|
|
213
|
-
export interface OperationList {
|
|
214
|
-
readonly systemData?: SystemData;
|
|
215
|
-
value?: OperationsDefinition[];
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
// @public
|
|
219
|
-
export interface Operations {
|
|
220
|
-
list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
// @public
|
|
224
|
-
export interface OperationsDefinition {
|
|
225
|
-
display?: OperationsDisplayDefinition;
|
|
226
|
-
name?: string;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
// @public
|
|
230
|
-
export interface OperationsDisplayDefinition {
|
|
231
|
-
description?: string;
|
|
232
|
-
operation?: string;
|
|
233
|
-
provider?: string;
|
|
234
|
-
resource?: string;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
// @public
|
|
238
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
// @public
|
|
242
|
-
export type OperationsListResponse = OperationList;
|
|
243
|
-
|
|
244
|
-
// @public
|
|
245
|
-
export interface PrivateEndpoint {
|
|
246
|
-
readonly id?: string;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
// @public
|
|
250
|
-
export interface PrivateEndpointConnection extends Resource {
|
|
251
|
-
privateEndpoint?: PrivateEndpoint;
|
|
252
|
-
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
253
|
-
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
// @public
|
|
257
|
-
export interface PrivateEndpointConnectionListResult {
|
|
258
|
-
value?: PrivateEndpointConnection[];
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
// @public
|
|
262
|
-
export type PrivateEndpointConnectionProvisioningState = string;
|
|
263
|
-
|
|
264
|
-
// @public
|
|
265
|
-
export interface PrivateEndpointConnections {
|
|
266
|
-
create(resourceGroupName: string, providerName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOptionalParams): Promise<PrivateEndpointConnectionsCreateResponse>;
|
|
267
|
-
delete(resourceGroupName: string, providerName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
268
|
-
get(resourceGroupName: string, providerName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
269
|
-
list(resourceGroupName: string, providerName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
// @public
|
|
273
|
-
export interface PrivateEndpointConnectionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
// @public
|
|
277
|
-
export type PrivateEndpointConnectionsCreateResponse = PrivateEndpointConnection;
|
|
278
|
-
|
|
279
|
-
// @public
|
|
280
|
-
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
// @public
|
|
284
|
-
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
// @public
|
|
288
|
-
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
289
|
-
|
|
290
|
-
// @public
|
|
291
|
-
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
// @public
|
|
295
|
-
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
296
|
-
|
|
297
|
-
// @public
|
|
298
|
-
export type PrivateEndpointServiceConnectionStatus = string;
|
|
299
|
-
|
|
300
|
-
// @public
|
|
301
|
-
export interface PrivateLinkServiceConnectionState {
|
|
302
|
-
actionsRequired?: string;
|
|
303
|
-
description?: string;
|
|
304
|
-
status?: PrivateEndpointServiceConnectionStatus;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export interface Resource {
|
|
309
|
-
readonly id?: string;
|
|
310
|
-
readonly name?: string;
|
|
311
|
-
readonly type?: string;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export interface SystemData {
|
|
316
|
-
createdAt?: Date;
|
|
317
|
-
createdBy?: string;
|
|
318
|
-
createdByType?: CreatedByType;
|
|
319
|
-
lastModifiedAt?: Date;
|
|
320
|
-
lastModifiedBy?: string;
|
|
321
|
-
lastModifiedByType?: CreatedByType;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
// @public
|
|
325
|
-
export interface TrackedResource extends Resource {
|
|
326
|
-
location: string;
|
|
327
|
-
tags?: {
|
|
328
|
-
[propertyName: string]: string;
|
|
329
|
-
};
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
// (No @packageDocumentation comment for this package)
|
|
333
|
-
|
|
334
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-attestation"
|
|
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 AttestationManagementClient extends coreClient.ServiceClient {
|
|
13
|
+
// (undocumented)
|
|
14
|
+
$host: string;
|
|
15
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AttestationManagementClientOptionalParams);
|
|
16
|
+
// (undocumented)
|
|
17
|
+
apiVersion: string;
|
|
18
|
+
// (undocumented)
|
|
19
|
+
attestationProviders: AttestationProviders;
|
|
20
|
+
// (undocumented)
|
|
21
|
+
operations: Operations;
|
|
22
|
+
// (undocumented)
|
|
23
|
+
privateEndpointConnections: PrivateEndpointConnections;
|
|
24
|
+
// (undocumented)
|
|
25
|
+
subscriptionId: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export interface AttestationManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
30
|
+
$host?: string;
|
|
31
|
+
apiVersion?: string;
|
|
32
|
+
endpoint?: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// @public
|
|
36
|
+
export interface AttestationProvider extends TrackedResource {
|
|
37
|
+
attestUri?: string;
|
|
38
|
+
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
39
|
+
status?: AttestationServiceStatus;
|
|
40
|
+
readonly systemData?: SystemData;
|
|
41
|
+
trustModel?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// @public
|
|
45
|
+
export interface AttestationProviderListResult {
|
|
46
|
+
readonly systemData?: SystemData;
|
|
47
|
+
value?: AttestationProvider[];
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// @public
|
|
51
|
+
export interface AttestationProviders {
|
|
52
|
+
create(resourceGroupName: string, providerName: string, creationParams: AttestationServiceCreationParams, options?: AttestationProvidersCreateOptionalParams): Promise<AttestationProvidersCreateResponse>;
|
|
53
|
+
delete(resourceGroupName: string, providerName: string, options?: AttestationProvidersDeleteOptionalParams): Promise<void>;
|
|
54
|
+
get(resourceGroupName: string, providerName: string, options?: AttestationProvidersGetOptionalParams): Promise<AttestationProvidersGetResponse>;
|
|
55
|
+
getDefaultByLocation(location: string, options?: AttestationProvidersGetDefaultByLocationOptionalParams): Promise<AttestationProvidersGetDefaultByLocationResponse>;
|
|
56
|
+
list(options?: AttestationProvidersListOptionalParams): Promise<AttestationProvidersListResponse>;
|
|
57
|
+
listByResourceGroup(resourceGroupName: string, options?: AttestationProvidersListByResourceGroupOptionalParams): Promise<AttestationProvidersListByResourceGroupResponse>;
|
|
58
|
+
listDefault(options?: AttestationProvidersListDefaultOptionalParams): Promise<AttestationProvidersListDefaultResponse>;
|
|
59
|
+
update(resourceGroupName: string, providerName: string, updateParams: AttestationServicePatchParams, options?: AttestationProvidersUpdateOptionalParams): Promise<AttestationProvidersUpdateResponse>;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// @public
|
|
63
|
+
export interface AttestationProvidersCreateOptionalParams extends coreClient.OperationOptions {
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export type AttestationProvidersCreateResponse = AttestationProvider;
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export interface AttestationProvidersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface AttestationProvidersGetDefaultByLocationOptionalParams extends coreClient.OperationOptions {
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export type AttestationProvidersGetDefaultByLocationResponse = AttestationProvider;
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export interface AttestationProvidersGetOptionalParams extends coreClient.OperationOptions {
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// @public
|
|
85
|
+
export type AttestationProvidersGetResponse = AttestationProvider;
|
|
86
|
+
|
|
87
|
+
// @public
|
|
88
|
+
export interface AttestationProvidersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// @public
|
|
92
|
+
export type AttestationProvidersListByResourceGroupResponse = AttestationProviderListResult;
|
|
93
|
+
|
|
94
|
+
// @public
|
|
95
|
+
export interface AttestationProvidersListDefaultOptionalParams extends coreClient.OperationOptions {
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// @public
|
|
99
|
+
export type AttestationProvidersListDefaultResponse = AttestationProviderListResult;
|
|
100
|
+
|
|
101
|
+
// @public
|
|
102
|
+
export interface AttestationProvidersListOptionalParams extends coreClient.OperationOptions {
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// @public
|
|
106
|
+
export type AttestationProvidersListResponse = AttestationProviderListResult;
|
|
107
|
+
|
|
108
|
+
// @public
|
|
109
|
+
export interface AttestationProvidersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// @public
|
|
113
|
+
export type AttestationProvidersUpdateResponse = AttestationProvider;
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export interface AttestationServiceCreationParams {
|
|
117
|
+
location: string;
|
|
118
|
+
properties: AttestationServiceCreationSpecificParams;
|
|
119
|
+
tags?: {
|
|
120
|
+
[propertyName: string]: string;
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// @public
|
|
125
|
+
export interface AttestationServiceCreationSpecificParams {
|
|
126
|
+
policySigningCertificates?: JsonWebKeySet;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export interface AttestationServicePatchParams {
|
|
131
|
+
tags?: {
|
|
132
|
+
[propertyName: string]: string;
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export type AttestationServiceStatus = string;
|
|
138
|
+
|
|
139
|
+
// @public
|
|
140
|
+
export interface CloudError {
|
|
141
|
+
error?: CloudErrorBody;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// @public
|
|
145
|
+
export interface CloudErrorBody {
|
|
146
|
+
code?: string;
|
|
147
|
+
message?: string;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// @public
|
|
151
|
+
export type CreatedByType = string;
|
|
152
|
+
|
|
153
|
+
// @public
|
|
154
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
155
|
+
|
|
156
|
+
// @public (undocumented)
|
|
157
|
+
export interface JsonWebKey {
|
|
158
|
+
alg?: string;
|
|
159
|
+
crv?: string;
|
|
160
|
+
d?: string;
|
|
161
|
+
dp?: string;
|
|
162
|
+
dq?: string;
|
|
163
|
+
e?: string;
|
|
164
|
+
k?: string;
|
|
165
|
+
kid?: string;
|
|
166
|
+
kty: string;
|
|
167
|
+
n?: string;
|
|
168
|
+
p?: string;
|
|
169
|
+
q?: string;
|
|
170
|
+
qi?: string;
|
|
171
|
+
use?: string;
|
|
172
|
+
x?: string;
|
|
173
|
+
x5C?: string[];
|
|
174
|
+
y?: string;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// @public (undocumented)
|
|
178
|
+
export interface JsonWebKeySet {
|
|
179
|
+
keys?: JsonWebKey[];
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// @public
|
|
183
|
+
export enum KnownAttestationServiceStatus {
|
|
184
|
+
Error = "Error",
|
|
185
|
+
NotReady = "NotReady",
|
|
186
|
+
Ready = "Ready"
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export enum KnownCreatedByType {
|
|
191
|
+
Application = "Application",
|
|
192
|
+
Key = "Key",
|
|
193
|
+
ManagedIdentity = "ManagedIdentity",
|
|
194
|
+
User = "User"
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// @public
|
|
198
|
+
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
199
|
+
Creating = "Creating",
|
|
200
|
+
Deleting = "Deleting",
|
|
201
|
+
Failed = "Failed",
|
|
202
|
+
Succeeded = "Succeeded"
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
// @public
|
|
206
|
+
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
207
|
+
Approved = "Approved",
|
|
208
|
+
Pending = "Pending",
|
|
209
|
+
Rejected = "Rejected"
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// @public
|
|
213
|
+
export interface OperationList {
|
|
214
|
+
readonly systemData?: SystemData;
|
|
215
|
+
value?: OperationsDefinition[];
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// @public
|
|
219
|
+
export interface Operations {
|
|
220
|
+
list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// @public
|
|
224
|
+
export interface OperationsDefinition {
|
|
225
|
+
display?: OperationsDisplayDefinition;
|
|
226
|
+
name?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// @public
|
|
230
|
+
export interface OperationsDisplayDefinition {
|
|
231
|
+
description?: string;
|
|
232
|
+
operation?: string;
|
|
233
|
+
provider?: string;
|
|
234
|
+
resource?: string;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// @public
|
|
238
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// @public
|
|
242
|
+
export type OperationsListResponse = OperationList;
|
|
243
|
+
|
|
244
|
+
// @public
|
|
245
|
+
export interface PrivateEndpoint {
|
|
246
|
+
readonly id?: string;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
// @public
|
|
250
|
+
export interface PrivateEndpointConnection extends Resource {
|
|
251
|
+
privateEndpoint?: PrivateEndpoint;
|
|
252
|
+
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
253
|
+
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// @public
|
|
257
|
+
export interface PrivateEndpointConnectionListResult {
|
|
258
|
+
value?: PrivateEndpointConnection[];
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
// @public
|
|
262
|
+
export type PrivateEndpointConnectionProvisioningState = string;
|
|
263
|
+
|
|
264
|
+
// @public
|
|
265
|
+
export interface PrivateEndpointConnections {
|
|
266
|
+
create(resourceGroupName: string, providerName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOptionalParams): Promise<PrivateEndpointConnectionsCreateResponse>;
|
|
267
|
+
delete(resourceGroupName: string, providerName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
268
|
+
get(resourceGroupName: string, providerName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
269
|
+
list(resourceGroupName: string, providerName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// @public
|
|
273
|
+
export interface PrivateEndpointConnectionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
// @public
|
|
277
|
+
export type PrivateEndpointConnectionsCreateResponse = PrivateEndpointConnection;
|
|
278
|
+
|
|
279
|
+
// @public
|
|
280
|
+
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// @public
|
|
284
|
+
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// @public
|
|
288
|
+
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
289
|
+
|
|
290
|
+
// @public
|
|
291
|
+
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// @public
|
|
295
|
+
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
296
|
+
|
|
297
|
+
// @public
|
|
298
|
+
export type PrivateEndpointServiceConnectionStatus = string;
|
|
299
|
+
|
|
300
|
+
// @public
|
|
301
|
+
export interface PrivateLinkServiceConnectionState {
|
|
302
|
+
actionsRequired?: string;
|
|
303
|
+
description?: string;
|
|
304
|
+
status?: PrivateEndpointServiceConnectionStatus;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export interface Resource {
|
|
309
|
+
readonly id?: string;
|
|
310
|
+
readonly name?: string;
|
|
311
|
+
readonly type?: string;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export interface SystemData {
|
|
316
|
+
createdAt?: Date;
|
|
317
|
+
createdBy?: string;
|
|
318
|
+
createdByType?: CreatedByType;
|
|
319
|
+
lastModifiedAt?: Date;
|
|
320
|
+
lastModifiedBy?: string;
|
|
321
|
+
lastModifiedByType?: CreatedByType;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
// @public
|
|
325
|
+
export interface TrackedResource extends Resource {
|
|
326
|
+
location: string;
|
|
327
|
+
tags?: {
|
|
328
|
+
[propertyName: string]: string;
|
|
329
|
+
};
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// (No @packageDocumentation comment for this package)
|
|
333
|
+
|
|
334
|
+
```
|