@azure/arm-servicelinker 2.2.0-alpha.20250717.1 → 2.2.0-alpha.20250730.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/dist/browser/lroImpl.js +7 -3
- package/dist/browser/lroImpl.js.map +1 -1
- package/dist/browser/models/mappers.js +187 -79
- package/dist/browser/models/mappers.js.map +1 -1
- package/dist/browser/operations/configurationNames.js +23 -40
- package/dist/browser/operations/configurationNames.js.map +1 -1
- package/dist/browser/operations/connector.js +111 -115
- package/dist/browser/operations/connector.js.map +1 -1
- package/dist/browser/operations/linker.js +67 -64
- package/dist/browser/operations/linker.js.map +1 -1
- package/dist/browser/operations/linkers.js +67 -91
- package/dist/browser/operations/linkers.js.map +1 -1
- package/dist/browser/operations/operations.js +23 -40
- package/dist/browser/operations/operations.js.map +1 -1
- package/dist/browser/pagingHelper.js +2 -4
- package/dist/browser/pagingHelper.js.map +1 -1
- package/dist/browser/serviceLinkerManagementClient.js +17 -5
- package/dist/browser/serviceLinkerManagementClient.js.map +1 -1
- package/dist/commonjs/lroImpl.js +7 -3
- package/dist/commonjs/lroImpl.js.map +1 -1
- package/dist/commonjs/models/mappers.js +187 -79
- package/dist/commonjs/models/mappers.js.map +1 -1
- package/dist/commonjs/operations/configurationNames.js +23 -39
- package/dist/commonjs/operations/configurationNames.js.map +1 -1
- package/dist/commonjs/operations/connector.js +111 -114
- package/dist/commonjs/operations/connector.js.map +1 -1
- package/dist/commonjs/operations/linker.js +67 -63
- package/dist/commonjs/operations/linker.js.map +1 -1
- package/dist/commonjs/operations/linkers.js +67 -90
- package/dist/commonjs/operations/linkers.js.map +1 -1
- package/dist/commonjs/operations/operations.js +23 -39
- package/dist/commonjs/operations/operations.js.map +1 -1
- package/dist/commonjs/pagingHelper.js +2 -4
- package/dist/commonjs/pagingHelper.js.map +1 -1
- package/dist/commonjs/serviceLinkerManagementClient.js +17 -5
- package/dist/commonjs/serviceLinkerManagementClient.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +11 -11
- package/dist/esm/lroImpl.js +7 -3
- package/dist/esm/lroImpl.js.map +1 -1
- package/dist/esm/models/mappers.js +187 -79
- package/dist/esm/models/mappers.js.map +1 -1
- package/dist/esm/operations/configurationNames.js +23 -40
- package/dist/esm/operations/configurationNames.js.map +1 -1
- package/dist/esm/operations/connector.js +111 -115
- package/dist/esm/operations/connector.js.map +1 -1
- package/dist/esm/operations/linker.js +67 -64
- package/dist/esm/operations/linker.js.map +1 -1
- package/dist/esm/operations/linkers.js +67 -91
- package/dist/esm/operations/linkers.js.map +1 -1
- package/dist/esm/operations/operations.js +23 -40
- package/dist/esm/operations/operations.js.map +1 -1
- package/dist/esm/pagingHelper.js +2 -4
- package/dist/esm/pagingHelper.js.map +1 -1
- package/dist/esm/serviceLinkerManagementClient.js +17 -5
- package/dist/esm/serviceLinkerManagementClient.js.map +1 -1
- package/dist/react-native/lroImpl.js +7 -3
- package/dist/react-native/lroImpl.js.map +1 -1
- package/dist/react-native/models/mappers.js +187 -79
- package/dist/react-native/models/mappers.js.map +1 -1
- package/dist/react-native/operations/configurationNames.js +23 -40
- package/dist/react-native/operations/configurationNames.js.map +1 -1
- package/dist/react-native/operations/connector.js +111 -115
- package/dist/react-native/operations/connector.js.map +1 -1
- package/dist/react-native/operations/linker.js +67 -64
- package/dist/react-native/operations/linker.js.map +1 -1
- package/dist/react-native/operations/linkers.js +67 -91
- package/dist/react-native/operations/linkers.js.map +1 -1
- package/dist/react-native/operations/operations.js +23 -40
- package/dist/react-native/operations/operations.js.map +1 -1
- package/dist/react-native/pagingHelper.js +2 -4
- package/dist/react-native/pagingHelper.js.map +1 -1
- package/dist/react-native/serviceLinkerManagementClient.js +17 -5
- package/dist/react-native/serviceLinkerManagementClient.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-servicelinker-node.api.md +1067 -1067
|
@@ -1,1067 +1,1067 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-servicelinker"
|
|
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 AccessKeyInfoBase extends AuthInfoBase {
|
|
15
|
-
authType: "accessKey";
|
|
16
|
-
permissions?: AccessKeyPermissions[];
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// @public
|
|
20
|
-
export type AccessKeyPermissions = string;
|
|
21
|
-
|
|
22
|
-
// @public
|
|
23
|
-
export type ActionType = string;
|
|
24
|
-
|
|
25
|
-
// @public
|
|
26
|
-
export type AllowType = string;
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export interface AuthInfoBase {
|
|
30
|
-
authMode?: AuthMode;
|
|
31
|
-
authType: "accessKey" | "secret" | "userAssignedIdentity" | "systemAssignedIdentity" | "servicePrincipalSecret" | "servicePrincipalCertificate" | "userAccount" | "easyAuthMicrosoftEntraID";
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// @public (undocumented)
|
|
35
|
-
export type AuthInfoBaseUnion = AuthInfoBase | AccessKeyInfoBase | SecretAuthInfo | UserAssignedIdentityAuthInfo | SystemAssignedIdentityAuthInfo | ServicePrincipalSecretAuthInfo | ServicePrincipalCertificateAuthInfo | UserAccountAuthInfo | EasyAuthMicrosoftEntraIDAuthInfo;
|
|
36
|
-
|
|
37
|
-
// @public
|
|
38
|
-
export type AuthMode = string;
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export type AuthType = string;
|
|
42
|
-
|
|
43
|
-
// @public
|
|
44
|
-
export interface AzureAppConfigProperties extends AzureResourcePropertiesBase {
|
|
45
|
-
connectWithKubernetesExtension?: boolean;
|
|
46
|
-
type: "AppConfig";
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// @public
|
|
50
|
-
export interface AzureKeyVaultProperties extends AzureResourcePropertiesBase {
|
|
51
|
-
connectAsKubernetesCsiDriver?: boolean;
|
|
52
|
-
type: "KeyVault";
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// @public
|
|
56
|
-
export interface AzureResource extends TargetServiceBase {
|
|
57
|
-
id?: string;
|
|
58
|
-
resourceProperties?: AzureResourcePropertiesBaseUnion;
|
|
59
|
-
type: "AzureResource";
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
// @public
|
|
63
|
-
export interface AzureResourcePropertiesBase {
|
|
64
|
-
type: "KeyVault" | "AppConfig";
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
// @public (undocumented)
|
|
68
|
-
export type AzureResourcePropertiesBaseUnion = AzureResourcePropertiesBase | AzureKeyVaultProperties | AzureAppConfigProperties;
|
|
69
|
-
|
|
70
|
-
// @public
|
|
71
|
-
export type AzureResourceType = string;
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface BasicErrorDryrunPrerequisiteResult extends DryrunPrerequisiteResult {
|
|
75
|
-
code?: string;
|
|
76
|
-
message?: string;
|
|
77
|
-
type: "basicError";
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export type ClientType = string;
|
|
82
|
-
|
|
83
|
-
// @public
|
|
84
|
-
export interface ConfigurationInfo {
|
|
85
|
-
action?: ActionType;
|
|
86
|
-
additionalConfigurations?: {
|
|
87
|
-
[propertyName: string]: string;
|
|
88
|
-
};
|
|
89
|
-
additionalConnectionStringProperties?: {
|
|
90
|
-
[propertyName: string]: string;
|
|
91
|
-
};
|
|
92
|
-
configurationStore?: ConfigurationStore;
|
|
93
|
-
customizedKeys?: {
|
|
94
|
-
[propertyName: string]: string;
|
|
95
|
-
};
|
|
96
|
-
daprProperties?: DaprProperties;
|
|
97
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export interface ConfigurationName {
|
|
102
|
-
description?: string;
|
|
103
|
-
required?: boolean;
|
|
104
|
-
// (undocumented)
|
|
105
|
-
value?: string;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
// @public (undocumented)
|
|
109
|
-
export interface ConfigurationNameItem {
|
|
110
|
-
authType?: AuthType;
|
|
111
|
-
clientType?: ClientType;
|
|
112
|
-
daprProperties?: DaprProperties;
|
|
113
|
-
names?: ConfigurationName[];
|
|
114
|
-
secretType?: SecretSourceType;
|
|
115
|
-
targetService?: string;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export interface ConfigurationNameResult {
|
|
120
|
-
readonly nextLink?: string;
|
|
121
|
-
value?: ConfigurationNameItem[];
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// @public
|
|
125
|
-
export interface ConfigurationNames {
|
|
126
|
-
list(options?: ConfigurationNamesListOptionalParams): PagedAsyncIterableIterator<ConfigurationNameItem>;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export interface ConfigurationNamesListNextOptionalParams extends coreClient.OperationOptions {
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export type ConfigurationNamesListNextResponse = ConfigurationNameResult;
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export interface ConfigurationNamesListOptionalParams extends coreClient.OperationOptions {
|
|
138
|
-
filter?: string;
|
|
139
|
-
skipToken?: string;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
// @public
|
|
143
|
-
export type ConfigurationNamesListResponse = ConfigurationNameResult;
|
|
144
|
-
|
|
145
|
-
// @public
|
|
146
|
-
export interface ConfigurationResult {
|
|
147
|
-
configurations?: SourceConfiguration[];
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// @public
|
|
151
|
-
export interface ConfigurationStore {
|
|
152
|
-
appConfigurationId?: string;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
// @public
|
|
156
|
-
export interface ConfluentBootstrapServer extends TargetServiceBase {
|
|
157
|
-
endpoint?: string;
|
|
158
|
-
type: "ConfluentBootstrapServer";
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
// @public
|
|
162
|
-
export interface ConfluentSchemaRegistry extends TargetServiceBase {
|
|
163
|
-
endpoint?: string;
|
|
164
|
-
type: "ConfluentSchemaRegistry";
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
// @public
|
|
168
|
-
export interface Connector {
|
|
169
|
-
beginCreateDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunResource, options?: ConnectorCreateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorCreateDryrunResponse>, ConnectorCreateDryrunResponse>>;
|
|
170
|
-
beginCreateDryrunAndWait(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunResource, options?: ConnectorCreateDryrunOptionalParams): Promise<ConnectorCreateDryrunResponse>;
|
|
171
|
-
beginCreateOrUpdate(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerResource, options?: ConnectorCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorCreateOrUpdateResponse>, ConnectorCreateOrUpdateResponse>>;
|
|
172
|
-
beginCreateOrUpdateAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerResource, options?: ConnectorCreateOrUpdateOptionalParams): Promise<ConnectorCreateOrUpdateResponse>;
|
|
173
|
-
beginDelete(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
174
|
-
beginDeleteAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorDeleteOptionalParams): Promise<void>;
|
|
175
|
-
beginUpdate(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerPatch, options?: ConnectorUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorUpdateResponse>, ConnectorUpdateResponse>>;
|
|
176
|
-
beginUpdateAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerPatch, options?: ConnectorUpdateOptionalParams): Promise<ConnectorUpdateResponse>;
|
|
177
|
-
beginUpdateDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunPatch, options?: ConnectorUpdateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorUpdateDryrunResponse>, ConnectorUpdateDryrunResponse>>;
|
|
178
|
-
beginUpdateDryrunAndWait(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunPatch, options?: ConnectorUpdateDryrunOptionalParams): Promise<ConnectorUpdateDryrunResponse>;
|
|
179
|
-
beginValidate(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorValidateOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorValidateResponse>, ConnectorValidateResponse>>;
|
|
180
|
-
beginValidateAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorValidateOptionalParams): Promise<ConnectorValidateResponse>;
|
|
181
|
-
deleteDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, options?: ConnectorDeleteDryrunOptionalParams): Promise<void>;
|
|
182
|
-
generateConfigurations(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorGenerateConfigurationsOptionalParams): Promise<ConnectorGenerateConfigurationsResponse>;
|
|
183
|
-
get(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorGetOptionalParams): Promise<ConnectorGetResponse>;
|
|
184
|
-
getDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, options?: ConnectorGetDryrunOptionalParams): Promise<ConnectorGetDryrunResponse>;
|
|
185
|
-
list(subscriptionId: string, resourceGroupName: string, location: string, options?: ConnectorListOptionalParams): PagedAsyncIterableIterator<LinkerResource>;
|
|
186
|
-
listDryrun(subscriptionId: string, resourceGroupName: string, location: string, options?: ConnectorListDryrunOptionalParams): PagedAsyncIterableIterator<DryrunResource>;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
// @public
|
|
190
|
-
export interface ConnectorCreateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
191
|
-
resumeFrom?: string;
|
|
192
|
-
updateIntervalInMs?: number;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// @public
|
|
196
|
-
export type ConnectorCreateDryrunResponse = DryrunResource;
|
|
197
|
-
|
|
198
|
-
// @public
|
|
199
|
-
export interface ConnectorCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
200
|
-
resumeFrom?: string;
|
|
201
|
-
updateIntervalInMs?: number;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
// @public
|
|
205
|
-
export type ConnectorCreateOrUpdateResponse = LinkerResource;
|
|
206
|
-
|
|
207
|
-
// @public
|
|
208
|
-
export interface ConnectorDeleteDryrunOptionalParams extends coreClient.OperationOptions {
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
// @public
|
|
212
|
-
export interface ConnectorDeleteOptionalParams extends coreClient.OperationOptions {
|
|
213
|
-
resumeFrom?: string;
|
|
214
|
-
updateIntervalInMs?: number;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
// @public
|
|
218
|
-
export interface ConnectorGenerateConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
219
|
-
parameters?: ConfigurationInfo;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
// @public
|
|
223
|
-
export type ConnectorGenerateConfigurationsResponse = ConfigurationResult;
|
|
224
|
-
|
|
225
|
-
// @public
|
|
226
|
-
export interface ConnectorGetDryrunOptionalParams extends coreClient.OperationOptions {
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
// @public
|
|
230
|
-
export type ConnectorGetDryrunResponse = DryrunResource;
|
|
231
|
-
|
|
232
|
-
// @public
|
|
233
|
-
export interface ConnectorGetOptionalParams extends coreClient.OperationOptions {
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
// @public
|
|
237
|
-
export type ConnectorGetResponse = LinkerResource;
|
|
238
|
-
|
|
239
|
-
// @public
|
|
240
|
-
export interface ConnectorListDryrunNextOptionalParams extends coreClient.OperationOptions {
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
// @public
|
|
244
|
-
export type ConnectorListDryrunNextResponse = DryrunList;
|
|
245
|
-
|
|
246
|
-
// @public
|
|
247
|
-
export interface ConnectorListDryrunOptionalParams extends coreClient.OperationOptions {
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
// @public
|
|
251
|
-
export type ConnectorListDryrunResponse = DryrunList;
|
|
252
|
-
|
|
253
|
-
// @public
|
|
254
|
-
export interface ConnectorListNextOptionalParams extends coreClient.OperationOptions {
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
// @public
|
|
258
|
-
export type ConnectorListNextResponse = ResourceList;
|
|
259
|
-
|
|
260
|
-
// @public
|
|
261
|
-
export interface ConnectorListOptionalParams extends coreClient.OperationOptions {
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
// @public
|
|
265
|
-
export type ConnectorListResponse = ResourceList;
|
|
266
|
-
|
|
267
|
-
// @public
|
|
268
|
-
export interface ConnectorUpdateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
269
|
-
resumeFrom?: string;
|
|
270
|
-
updateIntervalInMs?: number;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
// @public
|
|
274
|
-
export type ConnectorUpdateDryrunResponse = DryrunResource;
|
|
275
|
-
|
|
276
|
-
// @public
|
|
277
|
-
export interface ConnectorUpdateOptionalParams extends coreClient.OperationOptions {
|
|
278
|
-
resumeFrom?: string;
|
|
279
|
-
updateIntervalInMs?: number;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
// @public
|
|
283
|
-
export type ConnectorUpdateResponse = LinkerResource;
|
|
284
|
-
|
|
285
|
-
// @public
|
|
286
|
-
export interface ConnectorValidateOptionalParams extends coreClient.OperationOptions {
|
|
287
|
-
resumeFrom?: string;
|
|
288
|
-
updateIntervalInMs?: number;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
// @public
|
|
292
|
-
export type ConnectorValidateResponse = ValidateOperationResult;
|
|
293
|
-
|
|
294
|
-
// @public
|
|
295
|
-
export type CreatedByType = string;
|
|
296
|
-
|
|
297
|
-
// @public
|
|
298
|
-
export interface CreateOrUpdateDryrunParameters extends DryrunParameters, LinkerProperties {
|
|
299
|
-
actionName: "createOrUpdate";
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
// @public
|
|
303
|
-
export type DaprBindingComponentDirection = string;
|
|
304
|
-
|
|
305
|
-
// @public
|
|
306
|
-
export interface DaprConfigurationList {
|
|
307
|
-
readonly nextLink?: string;
|
|
308
|
-
value?: DaprConfigurationResource[];
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
// @public
|
|
312
|
-
export interface DaprConfigurationResource {
|
|
313
|
-
authType?: AuthType;
|
|
314
|
-
daprProperties?: DaprProperties;
|
|
315
|
-
targetType?: string;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
// @public
|
|
319
|
-
export interface DaprMetadata {
|
|
320
|
-
description?: string;
|
|
321
|
-
name?: string;
|
|
322
|
-
required?: DaprMetadataRequired;
|
|
323
|
-
secretRef?: string;
|
|
324
|
-
value?: string;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
// @public
|
|
328
|
-
export type DaprMetadataRequired = string;
|
|
329
|
-
|
|
330
|
-
// @public
|
|
331
|
-
export interface DaprProperties {
|
|
332
|
-
readonly bindingComponentDirection?: DaprBindingComponentDirection;
|
|
333
|
-
componentType?: string;
|
|
334
|
-
metadata?: DaprMetadata[];
|
|
335
|
-
readonly runtimeVersion?: string;
|
|
336
|
-
scopes?: string[];
|
|
337
|
-
secretStoreComponent?: string;
|
|
338
|
-
version?: string;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
// @public
|
|
342
|
-
export interface DatabaseAadAuthInfo {
|
|
343
|
-
userName?: string;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
// @public
|
|
347
|
-
export type DeleteOrUpdateBehavior = string;
|
|
348
|
-
|
|
349
|
-
// @public
|
|
350
|
-
export type DryrunActionName = string;
|
|
351
|
-
|
|
352
|
-
// @public
|
|
353
|
-
export interface DryrunList {
|
|
354
|
-
nextLink?: string;
|
|
355
|
-
value?: DryrunResource[];
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
// @public
|
|
359
|
-
export interface DryrunOperationPreview {
|
|
360
|
-
action?: string;
|
|
361
|
-
description?: string;
|
|
362
|
-
name?: string;
|
|
363
|
-
operationType?: DryrunPreviewOperationType;
|
|
364
|
-
scope?: string;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
// @public
|
|
368
|
-
export interface DryrunParameters {
|
|
369
|
-
actionName: "createOrUpdate";
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
// @public (undocumented)
|
|
373
|
-
export type DryrunParametersUnion = DryrunParameters | CreateOrUpdateDryrunParameters;
|
|
374
|
-
|
|
375
|
-
// @public
|
|
376
|
-
export interface DryrunPatch {
|
|
377
|
-
readonly operationPreviews?: DryrunOperationPreview[];
|
|
378
|
-
parameters?: DryrunParametersUnion;
|
|
379
|
-
readonly prerequisiteResults?: DryrunPrerequisiteResultUnion[];
|
|
380
|
-
readonly provisioningState?: string;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
// @public
|
|
384
|
-
export interface DryrunPrerequisiteResult {
|
|
385
|
-
type: "basicError" | "permissionsMissing";
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
// @public
|
|
389
|
-
export type DryrunPrerequisiteResultType = string;
|
|
390
|
-
|
|
391
|
-
// @public (undocumented)
|
|
392
|
-
export type DryrunPrerequisiteResultUnion = DryrunPrerequisiteResult | BasicErrorDryrunPrerequisiteResult | PermissionsMissingDryrunPrerequisiteResult;
|
|
393
|
-
|
|
394
|
-
// @public
|
|
395
|
-
export type DryrunPreviewOperationType = string;
|
|
396
|
-
|
|
397
|
-
// @public
|
|
398
|
-
export interface DryrunResource extends ProxyResource {
|
|
399
|
-
readonly operationPreviews?: DryrunOperationPreview[];
|
|
400
|
-
parameters?: DryrunParametersUnion;
|
|
401
|
-
readonly prerequisiteResults?: DryrunPrerequisiteResultUnion[];
|
|
402
|
-
readonly provisioningState?: string;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
// @public
|
|
406
|
-
export interface EasyAuthMicrosoftEntraIDAuthInfo extends AuthInfoBase {
|
|
407
|
-
authType: "easyAuthMicrosoftEntraID";
|
|
408
|
-
clientId?: string;
|
|
409
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
410
|
-
secret?: string;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
// @public
|
|
414
|
-
export interface ErrorAdditionalInfo {
|
|
415
|
-
readonly info?: Record<string, unknown>;
|
|
416
|
-
readonly type?: string;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export interface ErrorDetail {
|
|
421
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
422
|
-
readonly code?: string;
|
|
423
|
-
readonly details?: ErrorDetail[];
|
|
424
|
-
readonly message?: string;
|
|
425
|
-
readonly target?: string;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
// @public
|
|
429
|
-
export interface ErrorResponse {
|
|
430
|
-
error?: ErrorDetail;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
// @public
|
|
434
|
-
export interface FabricPlatform extends TargetServiceBase {
|
|
435
|
-
endpoint?: string;
|
|
436
|
-
type: "FabricPlatform";
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
// @public
|
|
440
|
-
export interface FirewallRules {
|
|
441
|
-
azureServices?: AllowType;
|
|
442
|
-
callerClientIP?: AllowType;
|
|
443
|
-
ipRanges?: string[];
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
// @public
|
|
447
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
448
|
-
|
|
449
|
-
// @public
|
|
450
|
-
export interface KeyVaultSecretReferenceSecretInfo extends SecretInfoBase {
|
|
451
|
-
name?: string;
|
|
452
|
-
secretType: "keyVaultSecretReference";
|
|
453
|
-
version?: string;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
// @public
|
|
457
|
-
export interface KeyVaultSecretUriSecretInfo extends SecretInfoBase {
|
|
458
|
-
secretType: "keyVaultSecretUri";
|
|
459
|
-
value?: string;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
// @public
|
|
463
|
-
export enum KnownAccessKeyPermissions {
|
|
464
|
-
Listen = "Listen",
|
|
465
|
-
Manage = "Manage",
|
|
466
|
-
Read = "Read",
|
|
467
|
-
Send = "Send",
|
|
468
|
-
Write = "Write"
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
// @public
|
|
472
|
-
export enum KnownActionType {
|
|
473
|
-
Enable = "enable",
|
|
474
|
-
Internal = "Internal",
|
|
475
|
-
OptOut = "optOut"
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
// @public
|
|
479
|
-
export enum KnownAllowType {
|
|
480
|
-
False = "false",
|
|
481
|
-
True = "true"
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
// @public
|
|
485
|
-
export enum KnownAuthMode {
|
|
486
|
-
OptInAllAuth = "optInAllAuth",
|
|
487
|
-
OptOutAllAuth = "optOutAllAuth"
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
// @public
|
|
491
|
-
export enum KnownAuthType {
|
|
492
|
-
AccessKey = "accessKey",
|
|
493
|
-
EasyAuthMicrosoftEntraID = "easyAuthMicrosoftEntraID",
|
|
494
|
-
Secret = "secret",
|
|
495
|
-
ServicePrincipalCertificate = "servicePrincipalCertificate",
|
|
496
|
-
ServicePrincipalSecret = "servicePrincipalSecret",
|
|
497
|
-
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
498
|
-
UserAccount = "userAccount",
|
|
499
|
-
UserAssignedIdentity = "userAssignedIdentity"
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
// @public
|
|
503
|
-
export enum KnownAzureResourceType {
|
|
504
|
-
AppConfig = "AppConfig",
|
|
505
|
-
KeyVault = "KeyVault"
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
// @public
|
|
509
|
-
export enum KnownClientType {
|
|
510
|
-
Dapr = "dapr",
|
|
511
|
-
Django = "django",
|
|
512
|
-
Dotnet = "dotnet",
|
|
513
|
-
Go = "go",
|
|
514
|
-
Java = "java",
|
|
515
|
-
JmsSpringBoot = "jms-springBoot",
|
|
516
|
-
KafkaSpringBoot = "kafka-springBoot",
|
|
517
|
-
Nodejs = "nodejs",
|
|
518
|
-
None = "none",
|
|
519
|
-
Php = "php",
|
|
520
|
-
Python = "python",
|
|
521
|
-
Ruby = "ruby",
|
|
522
|
-
SpringBoot = "springBoot"
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
// @public
|
|
526
|
-
export enum KnownCreatedByType {
|
|
527
|
-
Application = "Application",
|
|
528
|
-
Key = "Key",
|
|
529
|
-
ManagedIdentity = "ManagedIdentity",
|
|
530
|
-
User = "User"
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
// @public
|
|
534
|
-
export enum KnownDaprBindingComponentDirection {
|
|
535
|
-
Input = "input",
|
|
536
|
-
Output = "output"
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
// @public
|
|
540
|
-
export enum KnownDaprMetadataRequired {
|
|
541
|
-
False = "false",
|
|
542
|
-
True = "true"
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
// @public
|
|
546
|
-
export enum KnownDeleteOrUpdateBehavior {
|
|
547
|
-
Default = "Default",
|
|
548
|
-
ForcedCleanup = "ForcedCleanup"
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
// @public
|
|
552
|
-
export enum KnownDryrunActionName {
|
|
553
|
-
CreateOrUpdate = "createOrUpdate"
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
// @public
|
|
557
|
-
export enum KnownDryrunPrerequisiteResultType {
|
|
558
|
-
BasicError = "basicError",
|
|
559
|
-
PermissionsMissing = "permissionsMissing"
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
// @public
|
|
563
|
-
export enum KnownDryrunPreviewOperationType {
|
|
564
|
-
ConfigAuth = "configAuth",
|
|
565
|
-
ConfigConnection = "configConnection",
|
|
566
|
-
ConfigNetwork = "configNetwork"
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
// @public
|
|
570
|
-
export enum KnownLinkerConfigurationType {
|
|
571
|
-
Default = "Default",
|
|
572
|
-
KeyVaultSecret = "KeyVaultSecret"
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
// @public
|
|
576
|
-
export enum KnownOrigin {
|
|
577
|
-
System = "system",
|
|
578
|
-
User = "user",
|
|
579
|
-
UserSystem = "user,system"
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
// @public
|
|
583
|
-
export enum KnownSecretSourceType {
|
|
584
|
-
KeyVaultSecret = "keyVaultSecret",
|
|
585
|
-
RawValue = "rawValue"
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
// @public
|
|
589
|
-
export enum KnownSecretType {
|
|
590
|
-
KeyVaultSecretReference = "keyVaultSecretReference",
|
|
591
|
-
KeyVaultSecretUri = "keyVaultSecretUri",
|
|
592
|
-
RawValue = "rawValue"
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
// @public
|
|
596
|
-
export enum KnownTargetServiceType {
|
|
597
|
-
AzureResource = "AzureResource",
|
|
598
|
-
ConfluentBootstrapServer = "ConfluentBootstrapServer",
|
|
599
|
-
ConfluentSchemaRegistry = "ConfluentSchemaRegistry",
|
|
600
|
-
FabricPlatform = "FabricPlatform",
|
|
601
|
-
SelfHostedServer = "SelfHostedServer"
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
// @public
|
|
605
|
-
export enum KnownValidationResultStatus {
|
|
606
|
-
Failure = "failure",
|
|
607
|
-
Success = "success",
|
|
608
|
-
Warning = "warning"
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
// @public
|
|
612
|
-
export enum KnownVNetSolutionType {
|
|
613
|
-
PrivateLink = "privateLink",
|
|
614
|
-
ServiceEndpoint = "serviceEndpoint"
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
// @public
|
|
618
|
-
export interface Linker {
|
|
619
|
-
beginCreateOrUpdate(resourceUri: string, linkerName: string, parameters: LinkerResource, options?: LinkerCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<LinkerCreateOrUpdateResponse>, LinkerCreateOrUpdateResponse>>;
|
|
620
|
-
beginCreateOrUpdateAndWait(resourceUri: string, linkerName: string, parameters: LinkerResource, options?: LinkerCreateOrUpdateOptionalParams): Promise<LinkerCreateOrUpdateResponse>;
|
|
621
|
-
beginDelete(resourceUri: string, linkerName: string, options?: LinkerDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
622
|
-
beginDeleteAndWait(resourceUri: string, linkerName: string, options?: LinkerDeleteOptionalParams): Promise<void>;
|
|
623
|
-
beginUpdate(resourceUri: string, linkerName: string, parameters: LinkerPatch, options?: LinkerUpdateOptionalParams): Promise<SimplePollerLike<OperationState<LinkerUpdateResponse>, LinkerUpdateResponse>>;
|
|
624
|
-
beginUpdateAndWait(resourceUri: string, linkerName: string, parameters: LinkerPatch, options?: LinkerUpdateOptionalParams): Promise<LinkerUpdateResponse>;
|
|
625
|
-
beginValidate(resourceUri: string, linkerName: string, options?: LinkerValidateOptionalParams): Promise<SimplePollerLike<OperationState<LinkerValidateResponse>, LinkerValidateResponse>>;
|
|
626
|
-
beginValidateAndWait(resourceUri: string, linkerName: string, options?: LinkerValidateOptionalParams): Promise<LinkerValidateResponse>;
|
|
627
|
-
get(resourceUri: string, linkerName: string, options?: LinkerGetOptionalParams): Promise<LinkerGetResponse>;
|
|
628
|
-
list(resourceUri: string, options?: LinkerListOptionalParams): PagedAsyncIterableIterator<LinkerResource>;
|
|
629
|
-
listConfigurations(resourceUri: string, linkerName: string, options?: LinkerListConfigurationsOptionalParams): Promise<LinkerListConfigurationsResponse>;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
// @public
|
|
633
|
-
export type LinkerConfigurationType = string;
|
|
634
|
-
|
|
635
|
-
// @public
|
|
636
|
-
export interface LinkerCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
637
|
-
resumeFrom?: string;
|
|
638
|
-
updateIntervalInMs?: number;
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
// @public
|
|
642
|
-
export type LinkerCreateOrUpdateResponse = LinkerResource;
|
|
643
|
-
|
|
644
|
-
// @public
|
|
645
|
-
export interface LinkerDeleteOptionalParams extends coreClient.OperationOptions {
|
|
646
|
-
resumeFrom?: string;
|
|
647
|
-
updateIntervalInMs?: number;
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
// @public
|
|
651
|
-
export interface LinkerGetOptionalParams extends coreClient.OperationOptions {
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
// @public
|
|
655
|
-
export type LinkerGetResponse = LinkerResource;
|
|
656
|
-
|
|
657
|
-
// @public
|
|
658
|
-
export interface LinkerListConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
// @public
|
|
662
|
-
export type LinkerListConfigurationsResponse = ConfigurationResult;
|
|
663
|
-
|
|
664
|
-
// @public
|
|
665
|
-
export interface LinkerListNextOptionalParams extends coreClient.OperationOptions {
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
// @public
|
|
669
|
-
export type LinkerListNextResponse = ResourceList;
|
|
670
|
-
|
|
671
|
-
// @public
|
|
672
|
-
export interface LinkerListOptionalParams extends coreClient.OperationOptions {
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
// @public
|
|
676
|
-
export type LinkerListResponse = ResourceList;
|
|
677
|
-
|
|
678
|
-
// @public
|
|
679
|
-
export interface LinkerPatch {
|
|
680
|
-
authInfo?: AuthInfoBaseUnion;
|
|
681
|
-
clientType?: ClientType;
|
|
682
|
-
configurationInfo?: ConfigurationInfo;
|
|
683
|
-
readonly provisioningState?: string;
|
|
684
|
-
publicNetworkSolution?: PublicNetworkSolution;
|
|
685
|
-
scope?: string;
|
|
686
|
-
secretStore?: SecretStore;
|
|
687
|
-
targetService?: TargetServiceBaseUnion;
|
|
688
|
-
vNetSolution?: VNetSolution;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
// @public
|
|
692
|
-
export interface LinkerProperties {
|
|
693
|
-
authInfo?: AuthInfoBaseUnion;
|
|
694
|
-
clientType?: ClientType;
|
|
695
|
-
configurationInfo?: ConfigurationInfo;
|
|
696
|
-
readonly provisioningState?: string;
|
|
697
|
-
publicNetworkSolution?: PublicNetworkSolution;
|
|
698
|
-
scope?: string;
|
|
699
|
-
secretStore?: SecretStore;
|
|
700
|
-
targetService?: TargetServiceBaseUnion;
|
|
701
|
-
vNetSolution?: VNetSolution;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
// @public
|
|
705
|
-
export interface LinkerResource extends ProxyResource {
|
|
706
|
-
authInfo?: AuthInfoBaseUnion;
|
|
707
|
-
clientType?: ClientType;
|
|
708
|
-
configurationInfo?: ConfigurationInfo;
|
|
709
|
-
readonly provisioningState?: string;
|
|
710
|
-
publicNetworkSolution?: PublicNetworkSolution;
|
|
711
|
-
scope?: string;
|
|
712
|
-
secretStore?: SecretStore;
|
|
713
|
-
targetService?: TargetServiceBaseUnion;
|
|
714
|
-
vNetSolution?: VNetSolution;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
// @public
|
|
718
|
-
export interface Linkers {
|
|
719
|
-
beginCreateDryrun(resourceUri: string, dryrunName: string, parameters: DryrunResource, options?: LinkersCreateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<LinkersCreateDryrunResponse>, LinkersCreateDryrunResponse>>;
|
|
720
|
-
beginCreateDryrunAndWait(resourceUri: string, dryrunName: string, parameters: DryrunResource, options?: LinkersCreateDryrunOptionalParams): Promise<LinkersCreateDryrunResponse>;
|
|
721
|
-
beginUpdateDryrun(resourceUri: string, dryrunName: string, parameters: DryrunPatch, options?: LinkersUpdateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<LinkersUpdateDryrunResponse>, LinkersUpdateDryrunResponse>>;
|
|
722
|
-
beginUpdateDryrunAndWait(resourceUri: string, dryrunName: string, parameters: DryrunPatch, options?: LinkersUpdateDryrunOptionalParams): Promise<LinkersUpdateDryrunResponse>;
|
|
723
|
-
deleteDryrun(resourceUri: string, dryrunName: string, options?: LinkersDeleteDryrunOptionalParams): Promise<void>;
|
|
724
|
-
generateConfigurations(resourceUri: string, linkerName: string, options?: LinkersGenerateConfigurationsOptionalParams): Promise<LinkersGenerateConfigurationsResponse>;
|
|
725
|
-
getDryrun(resourceUri: string, dryrunName: string, options?: LinkersGetDryrunOptionalParams): Promise<LinkersGetDryrunResponse>;
|
|
726
|
-
listDaprConfigurations(resourceUri: string, options?: LinkersListDaprConfigurationsOptionalParams): PagedAsyncIterableIterator<DaprConfigurationResource>;
|
|
727
|
-
listDryrun(resourceUri: string, options?: LinkersListDryrunOptionalParams): PagedAsyncIterableIterator<DryrunResource>;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
// @public
|
|
731
|
-
export interface LinkersCreateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
732
|
-
resumeFrom?: string;
|
|
733
|
-
updateIntervalInMs?: number;
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
// @public
|
|
737
|
-
export type LinkersCreateDryrunResponse = DryrunResource;
|
|
738
|
-
|
|
739
|
-
// @public
|
|
740
|
-
export interface LinkersDeleteDryrunOptionalParams extends coreClient.OperationOptions {
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
// @public
|
|
744
|
-
export interface LinkersGenerateConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
745
|
-
parameters?: ConfigurationInfo;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
// @public
|
|
749
|
-
export type LinkersGenerateConfigurationsResponse = ConfigurationResult;
|
|
750
|
-
|
|
751
|
-
// @public
|
|
752
|
-
export interface LinkersGetDryrunOptionalParams extends coreClient.OperationOptions {
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
// @public
|
|
756
|
-
export type LinkersGetDryrunResponse = DryrunResource;
|
|
757
|
-
|
|
758
|
-
// @public
|
|
759
|
-
export interface LinkersListDaprConfigurationsNextOptionalParams extends coreClient.OperationOptions {
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
// @public
|
|
763
|
-
export type LinkersListDaprConfigurationsNextResponse = DaprConfigurationList;
|
|
764
|
-
|
|
765
|
-
// @public
|
|
766
|
-
export interface LinkersListDaprConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
// @public
|
|
770
|
-
export type LinkersListDaprConfigurationsResponse = DaprConfigurationList;
|
|
771
|
-
|
|
772
|
-
// @public
|
|
773
|
-
export interface LinkersListDryrunNextOptionalParams extends coreClient.OperationOptions {
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
// @public
|
|
777
|
-
export type LinkersListDryrunNextResponse = DryrunList;
|
|
778
|
-
|
|
779
|
-
// @public
|
|
780
|
-
export interface LinkersListDryrunOptionalParams extends coreClient.OperationOptions {
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
// @public
|
|
784
|
-
export type LinkersListDryrunResponse = DryrunList;
|
|
785
|
-
|
|
786
|
-
// @public
|
|
787
|
-
export interface LinkersUpdateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
788
|
-
resumeFrom?: string;
|
|
789
|
-
updateIntervalInMs?: number;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
// @public
|
|
793
|
-
export type LinkersUpdateDryrunResponse = DryrunResource;
|
|
794
|
-
|
|
795
|
-
// @public
|
|
796
|
-
export interface LinkerUpdateOptionalParams extends coreClient.OperationOptions {
|
|
797
|
-
resumeFrom?: string;
|
|
798
|
-
updateIntervalInMs?: number;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
// @public
|
|
802
|
-
export type LinkerUpdateResponse = LinkerResource;
|
|
803
|
-
|
|
804
|
-
// @public
|
|
805
|
-
export interface LinkerValidateOptionalParams extends coreClient.OperationOptions {
|
|
806
|
-
resumeFrom?: string;
|
|
807
|
-
updateIntervalInMs?: number;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
// @public
|
|
811
|
-
export type LinkerValidateResponse = ValidateOperationResult;
|
|
812
|
-
|
|
813
|
-
// @public
|
|
814
|
-
export interface Operation {
|
|
815
|
-
readonly actionType?: ActionType;
|
|
816
|
-
display?: OperationDisplay;
|
|
817
|
-
readonly isDataAction?: boolean;
|
|
818
|
-
readonly name?: string;
|
|
819
|
-
readonly origin?: Origin;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
// @public
|
|
823
|
-
export interface OperationDisplay {
|
|
824
|
-
readonly description?: string;
|
|
825
|
-
readonly operation?: string;
|
|
826
|
-
readonly provider?: string;
|
|
827
|
-
readonly resource?: string;
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
// @public
|
|
831
|
-
export interface OperationListResult {
|
|
832
|
-
readonly nextLink?: string;
|
|
833
|
-
readonly value?: Operation[];
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
// @public
|
|
837
|
-
export interface Operations {
|
|
838
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
// @public
|
|
842
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
// @public
|
|
846
|
-
export type OperationsListNextResponse = OperationListResult;
|
|
847
|
-
|
|
848
|
-
// @public
|
|
849
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
// @public
|
|
853
|
-
export type OperationsListResponse = OperationListResult;
|
|
854
|
-
|
|
855
|
-
// @public
|
|
856
|
-
export type Origin = string;
|
|
857
|
-
|
|
858
|
-
// @public
|
|
859
|
-
export interface PermissionsMissingDryrunPrerequisiteResult extends DryrunPrerequisiteResult {
|
|
860
|
-
permissions?: string[];
|
|
861
|
-
recommendedRole?: string;
|
|
862
|
-
scope?: string;
|
|
863
|
-
type: "permissionsMissing";
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
// @public
|
|
867
|
-
export interface ProxyResource extends Resource {
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
// @public
|
|
871
|
-
export interface PublicNetworkSolution {
|
|
872
|
-
action?: ActionType;
|
|
873
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
874
|
-
firewallRules?: FirewallRules;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
// @public
|
|
878
|
-
export interface Resource {
|
|
879
|
-
readonly id?: string;
|
|
880
|
-
readonly name?: string;
|
|
881
|
-
readonly systemData?: SystemData;
|
|
882
|
-
readonly type?: string;
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
// @public
|
|
886
|
-
export interface ResourceList {
|
|
887
|
-
nextLink?: string;
|
|
888
|
-
value?: LinkerResource[];
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
// @public
|
|
892
|
-
export interface SecretAuthInfo extends AuthInfoBase {
|
|
893
|
-
authType: "secret";
|
|
894
|
-
name?: string;
|
|
895
|
-
secretInfo?: SecretInfoBaseUnion;
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
// @public
|
|
899
|
-
export interface SecretInfoBase {
|
|
900
|
-
secretType: "rawValue" | "keyVaultSecretReference" | "keyVaultSecretUri";
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
// @public (undocumented)
|
|
904
|
-
export type SecretInfoBaseUnion = SecretInfoBase | ValueSecretInfo | KeyVaultSecretReferenceSecretInfo | KeyVaultSecretUriSecretInfo;
|
|
905
|
-
|
|
906
|
-
// @public
|
|
907
|
-
export type SecretSourceType = string;
|
|
908
|
-
|
|
909
|
-
// @public
|
|
910
|
-
export interface SecretStore {
|
|
911
|
-
keyVaultId?: string;
|
|
912
|
-
keyVaultSecretName?: string;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
// @public
|
|
916
|
-
export type SecretType = string;
|
|
917
|
-
|
|
918
|
-
// @public
|
|
919
|
-
export interface SelfHostedServer extends TargetServiceBase {
|
|
920
|
-
endpoint?: string;
|
|
921
|
-
type: "SelfHostedServer";
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
// @public (undocumented)
|
|
925
|
-
export class ServiceLinkerManagementClient extends coreClient.ServiceClient {
|
|
926
|
-
// (undocumented)
|
|
927
|
-
$host: string;
|
|
928
|
-
constructor(credentials: coreAuth.TokenCredential, options?: ServiceLinkerManagementClientOptionalParams);
|
|
929
|
-
// (undocumented)
|
|
930
|
-
apiVersion: string;
|
|
931
|
-
// (undocumented)
|
|
932
|
-
configurationNames: ConfigurationNames;
|
|
933
|
-
// (undocumented)
|
|
934
|
-
connector: Connector;
|
|
935
|
-
// (undocumented)
|
|
936
|
-
linker: Linker;
|
|
937
|
-
// (undocumented)
|
|
938
|
-
linkers: Linkers;
|
|
939
|
-
// (undocumented)
|
|
940
|
-
operations: Operations;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
// @public
|
|
944
|
-
export interface ServiceLinkerManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
945
|
-
$host?: string;
|
|
946
|
-
apiVersion?: string;
|
|
947
|
-
endpoint?: string;
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
// @public
|
|
951
|
-
export interface ServicePrincipalCertificateAuthInfo extends AuthInfoBase {
|
|
952
|
-
authType: "servicePrincipalCertificate";
|
|
953
|
-
certificate: string;
|
|
954
|
-
clientId: string;
|
|
955
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
956
|
-
principalId: string;
|
|
957
|
-
roles?: string[];
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
// @public
|
|
961
|
-
export interface ServicePrincipalSecretAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
962
|
-
authType: "servicePrincipalSecret";
|
|
963
|
-
clientId: string;
|
|
964
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
965
|
-
principalId: string;
|
|
966
|
-
roles?: string[];
|
|
967
|
-
secret: string;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
// @public
|
|
971
|
-
export interface SourceConfiguration {
|
|
972
|
-
readonly configType?: LinkerConfigurationType;
|
|
973
|
-
description?: string;
|
|
974
|
-
keyVaultReferenceIdentity?: string;
|
|
975
|
-
name?: string;
|
|
976
|
-
value?: string;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
// @public
|
|
980
|
-
export interface SystemAssignedIdentityAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
981
|
-
authType: "systemAssignedIdentity";
|
|
982
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
983
|
-
roles?: string[];
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
// @public
|
|
987
|
-
export interface SystemData {
|
|
988
|
-
createdAt?: Date;
|
|
989
|
-
createdBy?: string;
|
|
990
|
-
createdByType?: CreatedByType;
|
|
991
|
-
lastModifiedAt?: Date;
|
|
992
|
-
lastModifiedBy?: string;
|
|
993
|
-
lastModifiedByType?: CreatedByType;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
// @public
|
|
997
|
-
export interface TargetServiceBase {
|
|
998
|
-
type: "AzureResource" | "ConfluentBootstrapServer" | "FabricPlatform" | "SelfHostedServer" | "ConfluentSchemaRegistry";
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
|
-
// @public (undocumented)
|
|
1002
|
-
export type TargetServiceBaseUnion = TargetServiceBase | AzureResource | ConfluentBootstrapServer | FabricPlatform | SelfHostedServer | ConfluentSchemaRegistry;
|
|
1003
|
-
|
|
1004
|
-
// @public
|
|
1005
|
-
export type TargetServiceType = string;
|
|
1006
|
-
|
|
1007
|
-
// @public
|
|
1008
|
-
export interface UserAccountAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
1009
|
-
authType: "userAccount";
|
|
1010
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
1011
|
-
principalId?: string;
|
|
1012
|
-
roles?: string[];
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
// @public
|
|
1016
|
-
export interface UserAssignedIdentityAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
1017
|
-
authType: "userAssignedIdentity";
|
|
1018
|
-
clientId?: string;
|
|
1019
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
1020
|
-
roles?: string[];
|
|
1021
|
-
subscriptionId?: string;
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
// @public
|
|
1025
|
-
export interface ValidateOperationResult {
|
|
1026
|
-
authType?: AuthType;
|
|
1027
|
-
isConnectionAvailable?: boolean;
|
|
1028
|
-
linkerName?: string;
|
|
1029
|
-
reportEndTimeUtc?: Date;
|
|
1030
|
-
reportStartTimeUtc?: Date;
|
|
1031
|
-
resourceId?: string;
|
|
1032
|
-
sourceId?: string;
|
|
1033
|
-
status?: string;
|
|
1034
|
-
targetId?: string;
|
|
1035
|
-
validationDetail?: ValidationResultItem[];
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
// @public
|
|
1039
|
-
export interface ValidationResultItem {
|
|
1040
|
-
description?: string;
|
|
1041
|
-
errorCode?: string;
|
|
1042
|
-
errorMessage?: string;
|
|
1043
|
-
name?: string;
|
|
1044
|
-
result?: ValidationResultStatus;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
// @public
|
|
1048
|
-
export type ValidationResultStatus = string;
|
|
1049
|
-
|
|
1050
|
-
// @public
|
|
1051
|
-
export interface ValueSecretInfo extends SecretInfoBase {
|
|
1052
|
-
secretType: "rawValue";
|
|
1053
|
-
value?: string;
|
|
1054
|
-
}
|
|
1055
|
-
|
|
1056
|
-
// @public
|
|
1057
|
-
export interface VNetSolution {
|
|
1058
|
-
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
1059
|
-
type?: VNetSolutionType;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
// @public
|
|
1063
|
-
export type VNetSolutionType = string;
|
|
1064
|
-
|
|
1065
|
-
// (No @packageDocumentation comment for this package)
|
|
1066
|
-
|
|
1067
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-servicelinker"
|
|
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 AccessKeyInfoBase extends AuthInfoBase {
|
|
15
|
+
authType: "accessKey";
|
|
16
|
+
permissions?: AccessKeyPermissions[];
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// @public
|
|
20
|
+
export type AccessKeyPermissions = string;
|
|
21
|
+
|
|
22
|
+
// @public
|
|
23
|
+
export type ActionType = string;
|
|
24
|
+
|
|
25
|
+
// @public
|
|
26
|
+
export type AllowType = string;
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export interface AuthInfoBase {
|
|
30
|
+
authMode?: AuthMode;
|
|
31
|
+
authType: "accessKey" | "secret" | "userAssignedIdentity" | "systemAssignedIdentity" | "servicePrincipalSecret" | "servicePrincipalCertificate" | "userAccount" | "easyAuthMicrosoftEntraID";
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// @public (undocumented)
|
|
35
|
+
export type AuthInfoBaseUnion = AuthInfoBase | AccessKeyInfoBase | SecretAuthInfo | UserAssignedIdentityAuthInfo | SystemAssignedIdentityAuthInfo | ServicePrincipalSecretAuthInfo | ServicePrincipalCertificateAuthInfo | UserAccountAuthInfo | EasyAuthMicrosoftEntraIDAuthInfo;
|
|
36
|
+
|
|
37
|
+
// @public
|
|
38
|
+
export type AuthMode = string;
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export type AuthType = string;
|
|
42
|
+
|
|
43
|
+
// @public
|
|
44
|
+
export interface AzureAppConfigProperties extends AzureResourcePropertiesBase {
|
|
45
|
+
connectWithKubernetesExtension?: boolean;
|
|
46
|
+
type: "AppConfig";
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// @public
|
|
50
|
+
export interface AzureKeyVaultProperties extends AzureResourcePropertiesBase {
|
|
51
|
+
connectAsKubernetesCsiDriver?: boolean;
|
|
52
|
+
type: "KeyVault";
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// @public
|
|
56
|
+
export interface AzureResource extends TargetServiceBase {
|
|
57
|
+
id?: string;
|
|
58
|
+
resourceProperties?: AzureResourcePropertiesBaseUnion;
|
|
59
|
+
type: "AzureResource";
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// @public
|
|
63
|
+
export interface AzureResourcePropertiesBase {
|
|
64
|
+
type: "KeyVault" | "AppConfig";
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// @public (undocumented)
|
|
68
|
+
export type AzureResourcePropertiesBaseUnion = AzureResourcePropertiesBase | AzureKeyVaultProperties | AzureAppConfigProperties;
|
|
69
|
+
|
|
70
|
+
// @public
|
|
71
|
+
export type AzureResourceType = string;
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface BasicErrorDryrunPrerequisiteResult extends DryrunPrerequisiteResult {
|
|
75
|
+
code?: string;
|
|
76
|
+
message?: string;
|
|
77
|
+
type: "basicError";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export type ClientType = string;
|
|
82
|
+
|
|
83
|
+
// @public
|
|
84
|
+
export interface ConfigurationInfo {
|
|
85
|
+
action?: ActionType;
|
|
86
|
+
additionalConfigurations?: {
|
|
87
|
+
[propertyName: string]: string;
|
|
88
|
+
};
|
|
89
|
+
additionalConnectionStringProperties?: {
|
|
90
|
+
[propertyName: string]: string;
|
|
91
|
+
};
|
|
92
|
+
configurationStore?: ConfigurationStore;
|
|
93
|
+
customizedKeys?: {
|
|
94
|
+
[propertyName: string]: string;
|
|
95
|
+
};
|
|
96
|
+
daprProperties?: DaprProperties;
|
|
97
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export interface ConfigurationName {
|
|
102
|
+
description?: string;
|
|
103
|
+
required?: boolean;
|
|
104
|
+
// (undocumented)
|
|
105
|
+
value?: string;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// @public (undocumented)
|
|
109
|
+
export interface ConfigurationNameItem {
|
|
110
|
+
authType?: AuthType;
|
|
111
|
+
clientType?: ClientType;
|
|
112
|
+
daprProperties?: DaprProperties;
|
|
113
|
+
names?: ConfigurationName[];
|
|
114
|
+
secretType?: SecretSourceType;
|
|
115
|
+
targetService?: string;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export interface ConfigurationNameResult {
|
|
120
|
+
readonly nextLink?: string;
|
|
121
|
+
value?: ConfigurationNameItem[];
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// @public
|
|
125
|
+
export interface ConfigurationNames {
|
|
126
|
+
list(options?: ConfigurationNamesListOptionalParams): PagedAsyncIterableIterator<ConfigurationNameItem>;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export interface ConfigurationNamesListNextOptionalParams extends coreClient.OperationOptions {
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export type ConfigurationNamesListNextResponse = ConfigurationNameResult;
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export interface ConfigurationNamesListOptionalParams extends coreClient.OperationOptions {
|
|
138
|
+
filter?: string;
|
|
139
|
+
skipToken?: string;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// @public
|
|
143
|
+
export type ConfigurationNamesListResponse = ConfigurationNameResult;
|
|
144
|
+
|
|
145
|
+
// @public
|
|
146
|
+
export interface ConfigurationResult {
|
|
147
|
+
configurations?: SourceConfiguration[];
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// @public
|
|
151
|
+
export interface ConfigurationStore {
|
|
152
|
+
appConfigurationId?: string;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// @public
|
|
156
|
+
export interface ConfluentBootstrapServer extends TargetServiceBase {
|
|
157
|
+
endpoint?: string;
|
|
158
|
+
type: "ConfluentBootstrapServer";
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// @public
|
|
162
|
+
export interface ConfluentSchemaRegistry extends TargetServiceBase {
|
|
163
|
+
endpoint?: string;
|
|
164
|
+
type: "ConfluentSchemaRegistry";
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// @public
|
|
168
|
+
export interface Connector {
|
|
169
|
+
beginCreateDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunResource, options?: ConnectorCreateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorCreateDryrunResponse>, ConnectorCreateDryrunResponse>>;
|
|
170
|
+
beginCreateDryrunAndWait(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunResource, options?: ConnectorCreateDryrunOptionalParams): Promise<ConnectorCreateDryrunResponse>;
|
|
171
|
+
beginCreateOrUpdate(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerResource, options?: ConnectorCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorCreateOrUpdateResponse>, ConnectorCreateOrUpdateResponse>>;
|
|
172
|
+
beginCreateOrUpdateAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerResource, options?: ConnectorCreateOrUpdateOptionalParams): Promise<ConnectorCreateOrUpdateResponse>;
|
|
173
|
+
beginDelete(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
174
|
+
beginDeleteAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorDeleteOptionalParams): Promise<void>;
|
|
175
|
+
beginUpdate(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerPatch, options?: ConnectorUpdateOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorUpdateResponse>, ConnectorUpdateResponse>>;
|
|
176
|
+
beginUpdateAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, parameters: LinkerPatch, options?: ConnectorUpdateOptionalParams): Promise<ConnectorUpdateResponse>;
|
|
177
|
+
beginUpdateDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunPatch, options?: ConnectorUpdateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorUpdateDryrunResponse>, ConnectorUpdateDryrunResponse>>;
|
|
178
|
+
beginUpdateDryrunAndWait(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, parameters: DryrunPatch, options?: ConnectorUpdateDryrunOptionalParams): Promise<ConnectorUpdateDryrunResponse>;
|
|
179
|
+
beginValidate(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorValidateOptionalParams): Promise<SimplePollerLike<OperationState<ConnectorValidateResponse>, ConnectorValidateResponse>>;
|
|
180
|
+
beginValidateAndWait(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorValidateOptionalParams): Promise<ConnectorValidateResponse>;
|
|
181
|
+
deleteDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, options?: ConnectorDeleteDryrunOptionalParams): Promise<void>;
|
|
182
|
+
generateConfigurations(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorGenerateConfigurationsOptionalParams): Promise<ConnectorGenerateConfigurationsResponse>;
|
|
183
|
+
get(subscriptionId: string, resourceGroupName: string, location: string, connectorName: string, options?: ConnectorGetOptionalParams): Promise<ConnectorGetResponse>;
|
|
184
|
+
getDryrun(subscriptionId: string, resourceGroupName: string, location: string, dryrunName: string, options?: ConnectorGetDryrunOptionalParams): Promise<ConnectorGetDryrunResponse>;
|
|
185
|
+
list(subscriptionId: string, resourceGroupName: string, location: string, options?: ConnectorListOptionalParams): PagedAsyncIterableIterator<LinkerResource>;
|
|
186
|
+
listDryrun(subscriptionId: string, resourceGroupName: string, location: string, options?: ConnectorListDryrunOptionalParams): PagedAsyncIterableIterator<DryrunResource>;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export interface ConnectorCreateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
191
|
+
resumeFrom?: string;
|
|
192
|
+
updateIntervalInMs?: number;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// @public
|
|
196
|
+
export type ConnectorCreateDryrunResponse = DryrunResource;
|
|
197
|
+
|
|
198
|
+
// @public
|
|
199
|
+
export interface ConnectorCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
200
|
+
resumeFrom?: string;
|
|
201
|
+
updateIntervalInMs?: number;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// @public
|
|
205
|
+
export type ConnectorCreateOrUpdateResponse = LinkerResource;
|
|
206
|
+
|
|
207
|
+
// @public
|
|
208
|
+
export interface ConnectorDeleteDryrunOptionalParams extends coreClient.OperationOptions {
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// @public
|
|
212
|
+
export interface ConnectorDeleteOptionalParams extends coreClient.OperationOptions {
|
|
213
|
+
resumeFrom?: string;
|
|
214
|
+
updateIntervalInMs?: number;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// @public
|
|
218
|
+
export interface ConnectorGenerateConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
219
|
+
parameters?: ConfigurationInfo;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// @public
|
|
223
|
+
export type ConnectorGenerateConfigurationsResponse = ConfigurationResult;
|
|
224
|
+
|
|
225
|
+
// @public
|
|
226
|
+
export interface ConnectorGetDryrunOptionalParams extends coreClient.OperationOptions {
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// @public
|
|
230
|
+
export type ConnectorGetDryrunResponse = DryrunResource;
|
|
231
|
+
|
|
232
|
+
// @public
|
|
233
|
+
export interface ConnectorGetOptionalParams extends coreClient.OperationOptions {
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
// @public
|
|
237
|
+
export type ConnectorGetResponse = LinkerResource;
|
|
238
|
+
|
|
239
|
+
// @public
|
|
240
|
+
export interface ConnectorListDryrunNextOptionalParams extends coreClient.OperationOptions {
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
// @public
|
|
244
|
+
export type ConnectorListDryrunNextResponse = DryrunList;
|
|
245
|
+
|
|
246
|
+
// @public
|
|
247
|
+
export interface ConnectorListDryrunOptionalParams extends coreClient.OperationOptions {
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
// @public
|
|
251
|
+
export type ConnectorListDryrunResponse = DryrunList;
|
|
252
|
+
|
|
253
|
+
// @public
|
|
254
|
+
export interface ConnectorListNextOptionalParams extends coreClient.OperationOptions {
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
// @public
|
|
258
|
+
export type ConnectorListNextResponse = ResourceList;
|
|
259
|
+
|
|
260
|
+
// @public
|
|
261
|
+
export interface ConnectorListOptionalParams extends coreClient.OperationOptions {
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
// @public
|
|
265
|
+
export type ConnectorListResponse = ResourceList;
|
|
266
|
+
|
|
267
|
+
// @public
|
|
268
|
+
export interface ConnectorUpdateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
269
|
+
resumeFrom?: string;
|
|
270
|
+
updateIntervalInMs?: number;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// @public
|
|
274
|
+
export type ConnectorUpdateDryrunResponse = DryrunResource;
|
|
275
|
+
|
|
276
|
+
// @public
|
|
277
|
+
export interface ConnectorUpdateOptionalParams extends coreClient.OperationOptions {
|
|
278
|
+
resumeFrom?: string;
|
|
279
|
+
updateIntervalInMs?: number;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
// @public
|
|
283
|
+
export type ConnectorUpdateResponse = LinkerResource;
|
|
284
|
+
|
|
285
|
+
// @public
|
|
286
|
+
export interface ConnectorValidateOptionalParams extends coreClient.OperationOptions {
|
|
287
|
+
resumeFrom?: string;
|
|
288
|
+
updateIntervalInMs?: number;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// @public
|
|
292
|
+
export type ConnectorValidateResponse = ValidateOperationResult;
|
|
293
|
+
|
|
294
|
+
// @public
|
|
295
|
+
export type CreatedByType = string;
|
|
296
|
+
|
|
297
|
+
// @public
|
|
298
|
+
export interface CreateOrUpdateDryrunParameters extends DryrunParameters, LinkerProperties {
|
|
299
|
+
actionName: "createOrUpdate";
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
// @public
|
|
303
|
+
export type DaprBindingComponentDirection = string;
|
|
304
|
+
|
|
305
|
+
// @public
|
|
306
|
+
export interface DaprConfigurationList {
|
|
307
|
+
readonly nextLink?: string;
|
|
308
|
+
value?: DaprConfigurationResource[];
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
// @public
|
|
312
|
+
export interface DaprConfigurationResource {
|
|
313
|
+
authType?: AuthType;
|
|
314
|
+
daprProperties?: DaprProperties;
|
|
315
|
+
targetType?: string;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
// @public
|
|
319
|
+
export interface DaprMetadata {
|
|
320
|
+
description?: string;
|
|
321
|
+
name?: string;
|
|
322
|
+
required?: DaprMetadataRequired;
|
|
323
|
+
secretRef?: string;
|
|
324
|
+
value?: string;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
// @public
|
|
328
|
+
export type DaprMetadataRequired = string;
|
|
329
|
+
|
|
330
|
+
// @public
|
|
331
|
+
export interface DaprProperties {
|
|
332
|
+
readonly bindingComponentDirection?: DaprBindingComponentDirection;
|
|
333
|
+
componentType?: string;
|
|
334
|
+
metadata?: DaprMetadata[];
|
|
335
|
+
readonly runtimeVersion?: string;
|
|
336
|
+
scopes?: string[];
|
|
337
|
+
secretStoreComponent?: string;
|
|
338
|
+
version?: string;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// @public
|
|
342
|
+
export interface DatabaseAadAuthInfo {
|
|
343
|
+
userName?: string;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
// @public
|
|
347
|
+
export type DeleteOrUpdateBehavior = string;
|
|
348
|
+
|
|
349
|
+
// @public
|
|
350
|
+
export type DryrunActionName = string;
|
|
351
|
+
|
|
352
|
+
// @public
|
|
353
|
+
export interface DryrunList {
|
|
354
|
+
nextLink?: string;
|
|
355
|
+
value?: DryrunResource[];
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
// @public
|
|
359
|
+
export interface DryrunOperationPreview {
|
|
360
|
+
action?: string;
|
|
361
|
+
description?: string;
|
|
362
|
+
name?: string;
|
|
363
|
+
operationType?: DryrunPreviewOperationType;
|
|
364
|
+
scope?: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
// @public
|
|
368
|
+
export interface DryrunParameters {
|
|
369
|
+
actionName: "createOrUpdate";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
// @public (undocumented)
|
|
373
|
+
export type DryrunParametersUnion = DryrunParameters | CreateOrUpdateDryrunParameters;
|
|
374
|
+
|
|
375
|
+
// @public
|
|
376
|
+
export interface DryrunPatch {
|
|
377
|
+
readonly operationPreviews?: DryrunOperationPreview[];
|
|
378
|
+
parameters?: DryrunParametersUnion;
|
|
379
|
+
readonly prerequisiteResults?: DryrunPrerequisiteResultUnion[];
|
|
380
|
+
readonly provisioningState?: string;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
// @public
|
|
384
|
+
export interface DryrunPrerequisiteResult {
|
|
385
|
+
type: "basicError" | "permissionsMissing";
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
// @public
|
|
389
|
+
export type DryrunPrerequisiteResultType = string;
|
|
390
|
+
|
|
391
|
+
// @public (undocumented)
|
|
392
|
+
export type DryrunPrerequisiteResultUnion = DryrunPrerequisiteResult | BasicErrorDryrunPrerequisiteResult | PermissionsMissingDryrunPrerequisiteResult;
|
|
393
|
+
|
|
394
|
+
// @public
|
|
395
|
+
export type DryrunPreviewOperationType = string;
|
|
396
|
+
|
|
397
|
+
// @public
|
|
398
|
+
export interface DryrunResource extends ProxyResource {
|
|
399
|
+
readonly operationPreviews?: DryrunOperationPreview[];
|
|
400
|
+
parameters?: DryrunParametersUnion;
|
|
401
|
+
readonly prerequisiteResults?: DryrunPrerequisiteResultUnion[];
|
|
402
|
+
readonly provisioningState?: string;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
// @public
|
|
406
|
+
export interface EasyAuthMicrosoftEntraIDAuthInfo extends AuthInfoBase {
|
|
407
|
+
authType: "easyAuthMicrosoftEntraID";
|
|
408
|
+
clientId?: string;
|
|
409
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
410
|
+
secret?: string;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// @public
|
|
414
|
+
export interface ErrorAdditionalInfo {
|
|
415
|
+
readonly info?: Record<string, unknown>;
|
|
416
|
+
readonly type?: string;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export interface ErrorDetail {
|
|
421
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
422
|
+
readonly code?: string;
|
|
423
|
+
readonly details?: ErrorDetail[];
|
|
424
|
+
readonly message?: string;
|
|
425
|
+
readonly target?: string;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
// @public
|
|
429
|
+
export interface ErrorResponse {
|
|
430
|
+
error?: ErrorDetail;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
// @public
|
|
434
|
+
export interface FabricPlatform extends TargetServiceBase {
|
|
435
|
+
endpoint?: string;
|
|
436
|
+
type: "FabricPlatform";
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
// @public
|
|
440
|
+
export interface FirewallRules {
|
|
441
|
+
azureServices?: AllowType;
|
|
442
|
+
callerClientIP?: AllowType;
|
|
443
|
+
ipRanges?: string[];
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
// @public
|
|
447
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
448
|
+
|
|
449
|
+
// @public
|
|
450
|
+
export interface KeyVaultSecretReferenceSecretInfo extends SecretInfoBase {
|
|
451
|
+
name?: string;
|
|
452
|
+
secretType: "keyVaultSecretReference";
|
|
453
|
+
version?: string;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
// @public
|
|
457
|
+
export interface KeyVaultSecretUriSecretInfo extends SecretInfoBase {
|
|
458
|
+
secretType: "keyVaultSecretUri";
|
|
459
|
+
value?: string;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
// @public
|
|
463
|
+
export enum KnownAccessKeyPermissions {
|
|
464
|
+
Listen = "Listen",
|
|
465
|
+
Manage = "Manage",
|
|
466
|
+
Read = "Read",
|
|
467
|
+
Send = "Send",
|
|
468
|
+
Write = "Write"
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
// @public
|
|
472
|
+
export enum KnownActionType {
|
|
473
|
+
Enable = "enable",
|
|
474
|
+
Internal = "Internal",
|
|
475
|
+
OptOut = "optOut"
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
// @public
|
|
479
|
+
export enum KnownAllowType {
|
|
480
|
+
False = "false",
|
|
481
|
+
True = "true"
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
// @public
|
|
485
|
+
export enum KnownAuthMode {
|
|
486
|
+
OptInAllAuth = "optInAllAuth",
|
|
487
|
+
OptOutAllAuth = "optOutAllAuth"
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
// @public
|
|
491
|
+
export enum KnownAuthType {
|
|
492
|
+
AccessKey = "accessKey",
|
|
493
|
+
EasyAuthMicrosoftEntraID = "easyAuthMicrosoftEntraID",
|
|
494
|
+
Secret = "secret",
|
|
495
|
+
ServicePrincipalCertificate = "servicePrincipalCertificate",
|
|
496
|
+
ServicePrincipalSecret = "servicePrincipalSecret",
|
|
497
|
+
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
498
|
+
UserAccount = "userAccount",
|
|
499
|
+
UserAssignedIdentity = "userAssignedIdentity"
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
// @public
|
|
503
|
+
export enum KnownAzureResourceType {
|
|
504
|
+
AppConfig = "AppConfig",
|
|
505
|
+
KeyVault = "KeyVault"
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
// @public
|
|
509
|
+
export enum KnownClientType {
|
|
510
|
+
Dapr = "dapr",
|
|
511
|
+
Django = "django",
|
|
512
|
+
Dotnet = "dotnet",
|
|
513
|
+
Go = "go",
|
|
514
|
+
Java = "java",
|
|
515
|
+
JmsSpringBoot = "jms-springBoot",
|
|
516
|
+
KafkaSpringBoot = "kafka-springBoot",
|
|
517
|
+
Nodejs = "nodejs",
|
|
518
|
+
None = "none",
|
|
519
|
+
Php = "php",
|
|
520
|
+
Python = "python",
|
|
521
|
+
Ruby = "ruby",
|
|
522
|
+
SpringBoot = "springBoot"
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
// @public
|
|
526
|
+
export enum KnownCreatedByType {
|
|
527
|
+
Application = "Application",
|
|
528
|
+
Key = "Key",
|
|
529
|
+
ManagedIdentity = "ManagedIdentity",
|
|
530
|
+
User = "User"
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
// @public
|
|
534
|
+
export enum KnownDaprBindingComponentDirection {
|
|
535
|
+
Input = "input",
|
|
536
|
+
Output = "output"
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
// @public
|
|
540
|
+
export enum KnownDaprMetadataRequired {
|
|
541
|
+
False = "false",
|
|
542
|
+
True = "true"
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
// @public
|
|
546
|
+
export enum KnownDeleteOrUpdateBehavior {
|
|
547
|
+
Default = "Default",
|
|
548
|
+
ForcedCleanup = "ForcedCleanup"
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
// @public
|
|
552
|
+
export enum KnownDryrunActionName {
|
|
553
|
+
CreateOrUpdate = "createOrUpdate"
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export enum KnownDryrunPrerequisiteResultType {
|
|
558
|
+
BasicError = "basicError",
|
|
559
|
+
PermissionsMissing = "permissionsMissing"
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
// @public
|
|
563
|
+
export enum KnownDryrunPreviewOperationType {
|
|
564
|
+
ConfigAuth = "configAuth",
|
|
565
|
+
ConfigConnection = "configConnection",
|
|
566
|
+
ConfigNetwork = "configNetwork"
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
// @public
|
|
570
|
+
export enum KnownLinkerConfigurationType {
|
|
571
|
+
Default = "Default",
|
|
572
|
+
KeyVaultSecret = "KeyVaultSecret"
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
// @public
|
|
576
|
+
export enum KnownOrigin {
|
|
577
|
+
System = "system",
|
|
578
|
+
User = "user",
|
|
579
|
+
UserSystem = "user,system"
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
// @public
|
|
583
|
+
export enum KnownSecretSourceType {
|
|
584
|
+
KeyVaultSecret = "keyVaultSecret",
|
|
585
|
+
RawValue = "rawValue"
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
// @public
|
|
589
|
+
export enum KnownSecretType {
|
|
590
|
+
KeyVaultSecretReference = "keyVaultSecretReference",
|
|
591
|
+
KeyVaultSecretUri = "keyVaultSecretUri",
|
|
592
|
+
RawValue = "rawValue"
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
// @public
|
|
596
|
+
export enum KnownTargetServiceType {
|
|
597
|
+
AzureResource = "AzureResource",
|
|
598
|
+
ConfluentBootstrapServer = "ConfluentBootstrapServer",
|
|
599
|
+
ConfluentSchemaRegistry = "ConfluentSchemaRegistry",
|
|
600
|
+
FabricPlatform = "FabricPlatform",
|
|
601
|
+
SelfHostedServer = "SelfHostedServer"
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
// @public
|
|
605
|
+
export enum KnownValidationResultStatus {
|
|
606
|
+
Failure = "failure",
|
|
607
|
+
Success = "success",
|
|
608
|
+
Warning = "warning"
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
// @public
|
|
612
|
+
export enum KnownVNetSolutionType {
|
|
613
|
+
PrivateLink = "privateLink",
|
|
614
|
+
ServiceEndpoint = "serviceEndpoint"
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
// @public
|
|
618
|
+
export interface Linker {
|
|
619
|
+
beginCreateOrUpdate(resourceUri: string, linkerName: string, parameters: LinkerResource, options?: LinkerCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<LinkerCreateOrUpdateResponse>, LinkerCreateOrUpdateResponse>>;
|
|
620
|
+
beginCreateOrUpdateAndWait(resourceUri: string, linkerName: string, parameters: LinkerResource, options?: LinkerCreateOrUpdateOptionalParams): Promise<LinkerCreateOrUpdateResponse>;
|
|
621
|
+
beginDelete(resourceUri: string, linkerName: string, options?: LinkerDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
622
|
+
beginDeleteAndWait(resourceUri: string, linkerName: string, options?: LinkerDeleteOptionalParams): Promise<void>;
|
|
623
|
+
beginUpdate(resourceUri: string, linkerName: string, parameters: LinkerPatch, options?: LinkerUpdateOptionalParams): Promise<SimplePollerLike<OperationState<LinkerUpdateResponse>, LinkerUpdateResponse>>;
|
|
624
|
+
beginUpdateAndWait(resourceUri: string, linkerName: string, parameters: LinkerPatch, options?: LinkerUpdateOptionalParams): Promise<LinkerUpdateResponse>;
|
|
625
|
+
beginValidate(resourceUri: string, linkerName: string, options?: LinkerValidateOptionalParams): Promise<SimplePollerLike<OperationState<LinkerValidateResponse>, LinkerValidateResponse>>;
|
|
626
|
+
beginValidateAndWait(resourceUri: string, linkerName: string, options?: LinkerValidateOptionalParams): Promise<LinkerValidateResponse>;
|
|
627
|
+
get(resourceUri: string, linkerName: string, options?: LinkerGetOptionalParams): Promise<LinkerGetResponse>;
|
|
628
|
+
list(resourceUri: string, options?: LinkerListOptionalParams): PagedAsyncIterableIterator<LinkerResource>;
|
|
629
|
+
listConfigurations(resourceUri: string, linkerName: string, options?: LinkerListConfigurationsOptionalParams): Promise<LinkerListConfigurationsResponse>;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
// @public
|
|
633
|
+
export type LinkerConfigurationType = string;
|
|
634
|
+
|
|
635
|
+
// @public
|
|
636
|
+
export interface LinkerCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
637
|
+
resumeFrom?: string;
|
|
638
|
+
updateIntervalInMs?: number;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
// @public
|
|
642
|
+
export type LinkerCreateOrUpdateResponse = LinkerResource;
|
|
643
|
+
|
|
644
|
+
// @public
|
|
645
|
+
export interface LinkerDeleteOptionalParams extends coreClient.OperationOptions {
|
|
646
|
+
resumeFrom?: string;
|
|
647
|
+
updateIntervalInMs?: number;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
// @public
|
|
651
|
+
export interface LinkerGetOptionalParams extends coreClient.OperationOptions {
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
// @public
|
|
655
|
+
export type LinkerGetResponse = LinkerResource;
|
|
656
|
+
|
|
657
|
+
// @public
|
|
658
|
+
export interface LinkerListConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
// @public
|
|
662
|
+
export type LinkerListConfigurationsResponse = ConfigurationResult;
|
|
663
|
+
|
|
664
|
+
// @public
|
|
665
|
+
export interface LinkerListNextOptionalParams extends coreClient.OperationOptions {
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
// @public
|
|
669
|
+
export type LinkerListNextResponse = ResourceList;
|
|
670
|
+
|
|
671
|
+
// @public
|
|
672
|
+
export interface LinkerListOptionalParams extends coreClient.OperationOptions {
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
// @public
|
|
676
|
+
export type LinkerListResponse = ResourceList;
|
|
677
|
+
|
|
678
|
+
// @public
|
|
679
|
+
export interface LinkerPatch {
|
|
680
|
+
authInfo?: AuthInfoBaseUnion;
|
|
681
|
+
clientType?: ClientType;
|
|
682
|
+
configurationInfo?: ConfigurationInfo;
|
|
683
|
+
readonly provisioningState?: string;
|
|
684
|
+
publicNetworkSolution?: PublicNetworkSolution;
|
|
685
|
+
scope?: string;
|
|
686
|
+
secretStore?: SecretStore;
|
|
687
|
+
targetService?: TargetServiceBaseUnion;
|
|
688
|
+
vNetSolution?: VNetSolution;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
// @public
|
|
692
|
+
export interface LinkerProperties {
|
|
693
|
+
authInfo?: AuthInfoBaseUnion;
|
|
694
|
+
clientType?: ClientType;
|
|
695
|
+
configurationInfo?: ConfigurationInfo;
|
|
696
|
+
readonly provisioningState?: string;
|
|
697
|
+
publicNetworkSolution?: PublicNetworkSolution;
|
|
698
|
+
scope?: string;
|
|
699
|
+
secretStore?: SecretStore;
|
|
700
|
+
targetService?: TargetServiceBaseUnion;
|
|
701
|
+
vNetSolution?: VNetSolution;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// @public
|
|
705
|
+
export interface LinkerResource extends ProxyResource {
|
|
706
|
+
authInfo?: AuthInfoBaseUnion;
|
|
707
|
+
clientType?: ClientType;
|
|
708
|
+
configurationInfo?: ConfigurationInfo;
|
|
709
|
+
readonly provisioningState?: string;
|
|
710
|
+
publicNetworkSolution?: PublicNetworkSolution;
|
|
711
|
+
scope?: string;
|
|
712
|
+
secretStore?: SecretStore;
|
|
713
|
+
targetService?: TargetServiceBaseUnion;
|
|
714
|
+
vNetSolution?: VNetSolution;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
// @public
|
|
718
|
+
export interface Linkers {
|
|
719
|
+
beginCreateDryrun(resourceUri: string, dryrunName: string, parameters: DryrunResource, options?: LinkersCreateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<LinkersCreateDryrunResponse>, LinkersCreateDryrunResponse>>;
|
|
720
|
+
beginCreateDryrunAndWait(resourceUri: string, dryrunName: string, parameters: DryrunResource, options?: LinkersCreateDryrunOptionalParams): Promise<LinkersCreateDryrunResponse>;
|
|
721
|
+
beginUpdateDryrun(resourceUri: string, dryrunName: string, parameters: DryrunPatch, options?: LinkersUpdateDryrunOptionalParams): Promise<SimplePollerLike<OperationState<LinkersUpdateDryrunResponse>, LinkersUpdateDryrunResponse>>;
|
|
722
|
+
beginUpdateDryrunAndWait(resourceUri: string, dryrunName: string, parameters: DryrunPatch, options?: LinkersUpdateDryrunOptionalParams): Promise<LinkersUpdateDryrunResponse>;
|
|
723
|
+
deleteDryrun(resourceUri: string, dryrunName: string, options?: LinkersDeleteDryrunOptionalParams): Promise<void>;
|
|
724
|
+
generateConfigurations(resourceUri: string, linkerName: string, options?: LinkersGenerateConfigurationsOptionalParams): Promise<LinkersGenerateConfigurationsResponse>;
|
|
725
|
+
getDryrun(resourceUri: string, dryrunName: string, options?: LinkersGetDryrunOptionalParams): Promise<LinkersGetDryrunResponse>;
|
|
726
|
+
listDaprConfigurations(resourceUri: string, options?: LinkersListDaprConfigurationsOptionalParams): PagedAsyncIterableIterator<DaprConfigurationResource>;
|
|
727
|
+
listDryrun(resourceUri: string, options?: LinkersListDryrunOptionalParams): PagedAsyncIterableIterator<DryrunResource>;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
// @public
|
|
731
|
+
export interface LinkersCreateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
732
|
+
resumeFrom?: string;
|
|
733
|
+
updateIntervalInMs?: number;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
// @public
|
|
737
|
+
export type LinkersCreateDryrunResponse = DryrunResource;
|
|
738
|
+
|
|
739
|
+
// @public
|
|
740
|
+
export interface LinkersDeleteDryrunOptionalParams extends coreClient.OperationOptions {
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
// @public
|
|
744
|
+
export interface LinkersGenerateConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
745
|
+
parameters?: ConfigurationInfo;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
// @public
|
|
749
|
+
export type LinkersGenerateConfigurationsResponse = ConfigurationResult;
|
|
750
|
+
|
|
751
|
+
// @public
|
|
752
|
+
export interface LinkersGetDryrunOptionalParams extends coreClient.OperationOptions {
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
// @public
|
|
756
|
+
export type LinkersGetDryrunResponse = DryrunResource;
|
|
757
|
+
|
|
758
|
+
// @public
|
|
759
|
+
export interface LinkersListDaprConfigurationsNextOptionalParams extends coreClient.OperationOptions {
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
// @public
|
|
763
|
+
export type LinkersListDaprConfigurationsNextResponse = DaprConfigurationList;
|
|
764
|
+
|
|
765
|
+
// @public
|
|
766
|
+
export interface LinkersListDaprConfigurationsOptionalParams extends coreClient.OperationOptions {
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
// @public
|
|
770
|
+
export type LinkersListDaprConfigurationsResponse = DaprConfigurationList;
|
|
771
|
+
|
|
772
|
+
// @public
|
|
773
|
+
export interface LinkersListDryrunNextOptionalParams extends coreClient.OperationOptions {
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
// @public
|
|
777
|
+
export type LinkersListDryrunNextResponse = DryrunList;
|
|
778
|
+
|
|
779
|
+
// @public
|
|
780
|
+
export interface LinkersListDryrunOptionalParams extends coreClient.OperationOptions {
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
// @public
|
|
784
|
+
export type LinkersListDryrunResponse = DryrunList;
|
|
785
|
+
|
|
786
|
+
// @public
|
|
787
|
+
export interface LinkersUpdateDryrunOptionalParams extends coreClient.OperationOptions {
|
|
788
|
+
resumeFrom?: string;
|
|
789
|
+
updateIntervalInMs?: number;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
// @public
|
|
793
|
+
export type LinkersUpdateDryrunResponse = DryrunResource;
|
|
794
|
+
|
|
795
|
+
// @public
|
|
796
|
+
export interface LinkerUpdateOptionalParams extends coreClient.OperationOptions {
|
|
797
|
+
resumeFrom?: string;
|
|
798
|
+
updateIntervalInMs?: number;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
// @public
|
|
802
|
+
export type LinkerUpdateResponse = LinkerResource;
|
|
803
|
+
|
|
804
|
+
// @public
|
|
805
|
+
export interface LinkerValidateOptionalParams extends coreClient.OperationOptions {
|
|
806
|
+
resumeFrom?: string;
|
|
807
|
+
updateIntervalInMs?: number;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
// @public
|
|
811
|
+
export type LinkerValidateResponse = ValidateOperationResult;
|
|
812
|
+
|
|
813
|
+
// @public
|
|
814
|
+
export interface Operation {
|
|
815
|
+
readonly actionType?: ActionType;
|
|
816
|
+
display?: OperationDisplay;
|
|
817
|
+
readonly isDataAction?: boolean;
|
|
818
|
+
readonly name?: string;
|
|
819
|
+
readonly origin?: Origin;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
// @public
|
|
823
|
+
export interface OperationDisplay {
|
|
824
|
+
readonly description?: string;
|
|
825
|
+
readonly operation?: string;
|
|
826
|
+
readonly provider?: string;
|
|
827
|
+
readonly resource?: string;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
// @public
|
|
831
|
+
export interface OperationListResult {
|
|
832
|
+
readonly nextLink?: string;
|
|
833
|
+
readonly value?: Operation[];
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
// @public
|
|
837
|
+
export interface Operations {
|
|
838
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
// @public
|
|
842
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
// @public
|
|
846
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
847
|
+
|
|
848
|
+
// @public
|
|
849
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// @public
|
|
853
|
+
export type OperationsListResponse = OperationListResult;
|
|
854
|
+
|
|
855
|
+
// @public
|
|
856
|
+
export type Origin = string;
|
|
857
|
+
|
|
858
|
+
// @public
|
|
859
|
+
export interface PermissionsMissingDryrunPrerequisiteResult extends DryrunPrerequisiteResult {
|
|
860
|
+
permissions?: string[];
|
|
861
|
+
recommendedRole?: string;
|
|
862
|
+
scope?: string;
|
|
863
|
+
type: "permissionsMissing";
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
// @public
|
|
867
|
+
export interface ProxyResource extends Resource {
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
// @public
|
|
871
|
+
export interface PublicNetworkSolution {
|
|
872
|
+
action?: ActionType;
|
|
873
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
874
|
+
firewallRules?: FirewallRules;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
// @public
|
|
878
|
+
export interface Resource {
|
|
879
|
+
readonly id?: string;
|
|
880
|
+
readonly name?: string;
|
|
881
|
+
readonly systemData?: SystemData;
|
|
882
|
+
readonly type?: string;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
// @public
|
|
886
|
+
export interface ResourceList {
|
|
887
|
+
nextLink?: string;
|
|
888
|
+
value?: LinkerResource[];
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
// @public
|
|
892
|
+
export interface SecretAuthInfo extends AuthInfoBase {
|
|
893
|
+
authType: "secret";
|
|
894
|
+
name?: string;
|
|
895
|
+
secretInfo?: SecretInfoBaseUnion;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
// @public
|
|
899
|
+
export interface SecretInfoBase {
|
|
900
|
+
secretType: "rawValue" | "keyVaultSecretReference" | "keyVaultSecretUri";
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
// @public (undocumented)
|
|
904
|
+
export type SecretInfoBaseUnion = SecretInfoBase | ValueSecretInfo | KeyVaultSecretReferenceSecretInfo | KeyVaultSecretUriSecretInfo;
|
|
905
|
+
|
|
906
|
+
// @public
|
|
907
|
+
export type SecretSourceType = string;
|
|
908
|
+
|
|
909
|
+
// @public
|
|
910
|
+
export interface SecretStore {
|
|
911
|
+
keyVaultId?: string;
|
|
912
|
+
keyVaultSecretName?: string;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
// @public
|
|
916
|
+
export type SecretType = string;
|
|
917
|
+
|
|
918
|
+
// @public
|
|
919
|
+
export interface SelfHostedServer extends TargetServiceBase {
|
|
920
|
+
endpoint?: string;
|
|
921
|
+
type: "SelfHostedServer";
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
// @public (undocumented)
|
|
925
|
+
export class ServiceLinkerManagementClient extends coreClient.ServiceClient {
|
|
926
|
+
// (undocumented)
|
|
927
|
+
$host: string;
|
|
928
|
+
constructor(credentials: coreAuth.TokenCredential, options?: ServiceLinkerManagementClientOptionalParams);
|
|
929
|
+
// (undocumented)
|
|
930
|
+
apiVersion: string;
|
|
931
|
+
// (undocumented)
|
|
932
|
+
configurationNames: ConfigurationNames;
|
|
933
|
+
// (undocumented)
|
|
934
|
+
connector: Connector;
|
|
935
|
+
// (undocumented)
|
|
936
|
+
linker: Linker;
|
|
937
|
+
// (undocumented)
|
|
938
|
+
linkers: Linkers;
|
|
939
|
+
// (undocumented)
|
|
940
|
+
operations: Operations;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
// @public
|
|
944
|
+
export interface ServiceLinkerManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
945
|
+
$host?: string;
|
|
946
|
+
apiVersion?: string;
|
|
947
|
+
endpoint?: string;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
// @public
|
|
951
|
+
export interface ServicePrincipalCertificateAuthInfo extends AuthInfoBase {
|
|
952
|
+
authType: "servicePrincipalCertificate";
|
|
953
|
+
certificate: string;
|
|
954
|
+
clientId: string;
|
|
955
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
956
|
+
principalId: string;
|
|
957
|
+
roles?: string[];
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
// @public
|
|
961
|
+
export interface ServicePrincipalSecretAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
962
|
+
authType: "servicePrincipalSecret";
|
|
963
|
+
clientId: string;
|
|
964
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
965
|
+
principalId: string;
|
|
966
|
+
roles?: string[];
|
|
967
|
+
secret: string;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
// @public
|
|
971
|
+
export interface SourceConfiguration {
|
|
972
|
+
readonly configType?: LinkerConfigurationType;
|
|
973
|
+
description?: string;
|
|
974
|
+
keyVaultReferenceIdentity?: string;
|
|
975
|
+
name?: string;
|
|
976
|
+
value?: string;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
// @public
|
|
980
|
+
export interface SystemAssignedIdentityAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
981
|
+
authType: "systemAssignedIdentity";
|
|
982
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
983
|
+
roles?: string[];
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
// @public
|
|
987
|
+
export interface SystemData {
|
|
988
|
+
createdAt?: Date;
|
|
989
|
+
createdBy?: string;
|
|
990
|
+
createdByType?: CreatedByType;
|
|
991
|
+
lastModifiedAt?: Date;
|
|
992
|
+
lastModifiedBy?: string;
|
|
993
|
+
lastModifiedByType?: CreatedByType;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
// @public
|
|
997
|
+
export interface TargetServiceBase {
|
|
998
|
+
type: "AzureResource" | "ConfluentBootstrapServer" | "FabricPlatform" | "SelfHostedServer" | "ConfluentSchemaRegistry";
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
// @public (undocumented)
|
|
1002
|
+
export type TargetServiceBaseUnion = TargetServiceBase | AzureResource | ConfluentBootstrapServer | FabricPlatform | SelfHostedServer | ConfluentSchemaRegistry;
|
|
1003
|
+
|
|
1004
|
+
// @public
|
|
1005
|
+
export type TargetServiceType = string;
|
|
1006
|
+
|
|
1007
|
+
// @public
|
|
1008
|
+
export interface UserAccountAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
1009
|
+
authType: "userAccount";
|
|
1010
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
1011
|
+
principalId?: string;
|
|
1012
|
+
roles?: string[];
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
// @public
|
|
1016
|
+
export interface UserAssignedIdentityAuthInfo extends AuthInfoBase, DatabaseAadAuthInfo {
|
|
1017
|
+
authType: "userAssignedIdentity";
|
|
1018
|
+
clientId?: string;
|
|
1019
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
1020
|
+
roles?: string[];
|
|
1021
|
+
subscriptionId?: string;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
// @public
|
|
1025
|
+
export interface ValidateOperationResult {
|
|
1026
|
+
authType?: AuthType;
|
|
1027
|
+
isConnectionAvailable?: boolean;
|
|
1028
|
+
linkerName?: string;
|
|
1029
|
+
reportEndTimeUtc?: Date;
|
|
1030
|
+
reportStartTimeUtc?: Date;
|
|
1031
|
+
resourceId?: string;
|
|
1032
|
+
sourceId?: string;
|
|
1033
|
+
status?: string;
|
|
1034
|
+
targetId?: string;
|
|
1035
|
+
validationDetail?: ValidationResultItem[];
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
// @public
|
|
1039
|
+
export interface ValidationResultItem {
|
|
1040
|
+
description?: string;
|
|
1041
|
+
errorCode?: string;
|
|
1042
|
+
errorMessage?: string;
|
|
1043
|
+
name?: string;
|
|
1044
|
+
result?: ValidationResultStatus;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// @public
|
|
1048
|
+
export type ValidationResultStatus = string;
|
|
1049
|
+
|
|
1050
|
+
// @public
|
|
1051
|
+
export interface ValueSecretInfo extends SecretInfoBase {
|
|
1052
|
+
secretType: "rawValue";
|
|
1053
|
+
value?: string;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
// @public
|
|
1057
|
+
export interface VNetSolution {
|
|
1058
|
+
deleteOrUpdateBehavior?: DeleteOrUpdateBehavior;
|
|
1059
|
+
type?: VNetSolutionType;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
// @public
|
|
1063
|
+
export type VNetSolutionType = string;
|
|
1064
|
+
|
|
1065
|
+
// (No @packageDocumentation comment for this package)
|
|
1066
|
+
|
|
1067
|
+
```
|