@azure/arm-signalr 6.0.0-alpha.20250620.1 → 6.0.0-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.
|
@@ -1,1100 +1,1100 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-signalr"
|
|
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 type ACLAction = string;
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
export type CreatedByType = string;
|
|
18
|
-
|
|
19
|
-
// @public
|
|
20
|
-
export interface CustomCertificate extends ProxyResource {
|
|
21
|
-
keyVaultBaseUri: string;
|
|
22
|
-
keyVaultSecretName: string;
|
|
23
|
-
keyVaultSecretVersion?: string;
|
|
24
|
-
readonly provisioningState?: ProvisioningState;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// @public
|
|
28
|
-
export interface CustomCertificateList {
|
|
29
|
-
nextLink?: string;
|
|
30
|
-
value?: CustomCertificate[];
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// @public
|
|
34
|
-
export interface CustomDomain extends ProxyResource {
|
|
35
|
-
customCertificate: ResourceReference;
|
|
36
|
-
domainName: string;
|
|
37
|
-
readonly provisioningState?: ProvisioningState;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export interface CustomDomainList {
|
|
42
|
-
nextLink?: string;
|
|
43
|
-
value?: CustomDomain[];
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
// @public
|
|
47
|
-
export interface Dimension {
|
|
48
|
-
displayName?: string;
|
|
49
|
-
internalName?: string;
|
|
50
|
-
name?: string;
|
|
51
|
-
toBeExportedForShoebox?: boolean;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// @public
|
|
55
|
-
export interface ErrorAdditionalInfo {
|
|
56
|
-
readonly info?: Record<string, unknown>;
|
|
57
|
-
readonly type?: string;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
// @public
|
|
61
|
-
export interface ErrorDetail {
|
|
62
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
63
|
-
readonly code?: string;
|
|
64
|
-
readonly details?: ErrorDetail[];
|
|
65
|
-
readonly message?: string;
|
|
66
|
-
readonly target?: string;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// @public
|
|
70
|
-
export interface ErrorResponse {
|
|
71
|
-
error?: ErrorDetail;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
// @public
|
|
75
|
-
export type FeatureFlags = string;
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export interface IPRule {
|
|
82
|
-
action?: ACLAction;
|
|
83
|
-
value?: string;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
// @public
|
|
87
|
-
export type KeyType = string;
|
|
88
|
-
|
|
89
|
-
// @public
|
|
90
|
-
export enum KnownACLAction {
|
|
91
|
-
Allow = "Allow",
|
|
92
|
-
Deny = "Deny"
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
// @public
|
|
96
|
-
export enum KnownCreatedByType {
|
|
97
|
-
Application = "Application",
|
|
98
|
-
Key = "Key",
|
|
99
|
-
ManagedIdentity = "ManagedIdentity",
|
|
100
|
-
User = "User"
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
// @public
|
|
104
|
-
export enum KnownFeatureFlags {
|
|
105
|
-
EnableConnectivityLogs = "EnableConnectivityLogs",
|
|
106
|
-
EnableLiveTrace = "EnableLiveTrace",
|
|
107
|
-
EnableMessagingLogs = "EnableMessagingLogs",
|
|
108
|
-
ServiceMode = "ServiceMode"
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// @public
|
|
112
|
-
export enum KnownKeyType {
|
|
113
|
-
Primary = "Primary",
|
|
114
|
-
Salt = "Salt",
|
|
115
|
-
Secondary = "Secondary"
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export enum KnownManagedIdentityType {
|
|
120
|
-
None = "None",
|
|
121
|
-
SystemAssigned = "SystemAssigned",
|
|
122
|
-
UserAssigned = "UserAssigned"
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// @public
|
|
126
|
-
export enum KnownPrivateLinkServiceConnectionStatus {
|
|
127
|
-
Approved = "Approved",
|
|
128
|
-
Disconnected = "Disconnected",
|
|
129
|
-
Pending = "Pending",
|
|
130
|
-
Rejected = "Rejected"
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export enum KnownProvisioningState {
|
|
135
|
-
Canceled = "Canceled",
|
|
136
|
-
Creating = "Creating",
|
|
137
|
-
Deleting = "Deleting",
|
|
138
|
-
Failed = "Failed",
|
|
139
|
-
Moving = "Moving",
|
|
140
|
-
Running = "Running",
|
|
141
|
-
Succeeded = "Succeeded",
|
|
142
|
-
Unknown = "Unknown",
|
|
143
|
-
Updating = "Updating"
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
// @public
|
|
147
|
-
export enum KnownScaleType {
|
|
148
|
-
Automatic = "Automatic",
|
|
149
|
-
Manual = "Manual",
|
|
150
|
-
None = "None"
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export enum KnownServiceKind {
|
|
155
|
-
RawWebSockets = "RawWebSockets",
|
|
156
|
-
SignalR = "SignalR"
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
// @public
|
|
160
|
-
export enum KnownSharedPrivateLinkResourceStatus {
|
|
161
|
-
Approved = "Approved",
|
|
162
|
-
Disconnected = "Disconnected",
|
|
163
|
-
Pending = "Pending",
|
|
164
|
-
Rejected = "Rejected",
|
|
165
|
-
Timeout = "Timeout"
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
// @public
|
|
169
|
-
export enum KnownSignalRRequestType {
|
|
170
|
-
ClientConnection = "ClientConnection",
|
|
171
|
-
Restapi = "RESTAPI",
|
|
172
|
-
ServerConnection = "ServerConnection",
|
|
173
|
-
Trace = "Trace"
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
// @public
|
|
177
|
-
export enum KnownSignalRSkuTier {
|
|
178
|
-
Basic = "Basic",
|
|
179
|
-
Free = "Free",
|
|
180
|
-
Premium = "Premium",
|
|
181
|
-
Standard = "Standard"
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
// @public
|
|
185
|
-
export enum KnownUpstreamAuthType {
|
|
186
|
-
ManagedIdentity = "ManagedIdentity",
|
|
187
|
-
None = "None"
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
// @public
|
|
191
|
-
export interface LiveTraceCategory {
|
|
192
|
-
enabled?: string;
|
|
193
|
-
name?: string;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// @public
|
|
197
|
-
export interface LiveTraceConfiguration {
|
|
198
|
-
categories?: LiveTraceCategory[];
|
|
199
|
-
enabled?: string;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
// @public
|
|
203
|
-
export interface LogSpecification {
|
|
204
|
-
displayName?: string;
|
|
205
|
-
name?: string;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
// @public
|
|
209
|
-
export interface ManagedIdentity {
|
|
210
|
-
readonly principalId?: string;
|
|
211
|
-
readonly tenantId?: string;
|
|
212
|
-
type?: ManagedIdentityType;
|
|
213
|
-
userAssignedIdentities?: {
|
|
214
|
-
[propertyName: string]: UserAssignedIdentityProperty;
|
|
215
|
-
};
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
// @public
|
|
219
|
-
export interface ManagedIdentitySettings {
|
|
220
|
-
resource?: string;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
// @public
|
|
224
|
-
export type ManagedIdentityType = string;
|
|
225
|
-
|
|
226
|
-
// @public
|
|
227
|
-
export interface MetricSpecification {
|
|
228
|
-
aggregationType?: string;
|
|
229
|
-
category?: string;
|
|
230
|
-
dimensions?: Dimension[];
|
|
231
|
-
displayDescription?: string;
|
|
232
|
-
displayName?: string;
|
|
233
|
-
fillGapWithZero?: string;
|
|
234
|
-
name?: string;
|
|
235
|
-
unit?: string;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
// @public
|
|
239
|
-
export interface NameAvailability {
|
|
240
|
-
message?: string;
|
|
241
|
-
nameAvailable?: boolean;
|
|
242
|
-
reason?: string;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
// @public
|
|
246
|
-
export interface NameAvailabilityParameters {
|
|
247
|
-
name: string;
|
|
248
|
-
type: string;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
// @public
|
|
252
|
-
export interface NetworkACL {
|
|
253
|
-
allow?: SignalRRequestType[];
|
|
254
|
-
deny?: SignalRRequestType[];
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
// @public
|
|
258
|
-
export interface Operation {
|
|
259
|
-
display?: OperationDisplay;
|
|
260
|
-
isDataAction?: boolean;
|
|
261
|
-
name?: string;
|
|
262
|
-
origin?: string;
|
|
263
|
-
properties?: OperationProperties;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
// @public
|
|
267
|
-
export interface OperationDisplay {
|
|
268
|
-
description?: string;
|
|
269
|
-
operation?: string;
|
|
270
|
-
provider?: string;
|
|
271
|
-
resource?: string;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
// @public
|
|
275
|
-
export interface OperationList {
|
|
276
|
-
nextLink?: string;
|
|
277
|
-
value?: Operation[];
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
// @public
|
|
281
|
-
export interface OperationProperties {
|
|
282
|
-
serviceSpecification?: ServiceSpecification;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
// @public
|
|
286
|
-
export interface Operations {
|
|
287
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
// @public
|
|
291
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
// @public
|
|
295
|
-
export type OperationsListNextResponse = OperationList;
|
|
296
|
-
|
|
297
|
-
// @public
|
|
298
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
// @public
|
|
302
|
-
export type OperationsListResponse = OperationList;
|
|
303
|
-
|
|
304
|
-
// @public
|
|
305
|
-
export interface PrivateEndpoint {
|
|
306
|
-
id?: string;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
// @public
|
|
310
|
-
export interface PrivateEndpointACL extends NetworkACL {
|
|
311
|
-
name: string;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
// @public
|
|
315
|
-
export interface PrivateEndpointConnection extends ProxyResource {
|
|
316
|
-
readonly groupIds?: string[];
|
|
317
|
-
privateEndpoint?: PrivateEndpoint;
|
|
318
|
-
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
319
|
-
readonly provisioningState?: ProvisioningState;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
// @public
|
|
323
|
-
export interface PrivateEndpointConnectionList {
|
|
324
|
-
nextLink?: string;
|
|
325
|
-
value?: PrivateEndpointConnection[];
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
// @public
|
|
329
|
-
export interface PrivateLinkResource extends ProxyResource {
|
|
330
|
-
groupId?: string;
|
|
331
|
-
requiredMembers?: string[];
|
|
332
|
-
requiredZoneNames?: string[];
|
|
333
|
-
shareablePrivateLinkResourceTypes?: ShareablePrivateLinkResourceType[];
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
// @public
|
|
337
|
-
export interface PrivateLinkResourceList {
|
|
338
|
-
nextLink?: string;
|
|
339
|
-
value?: PrivateLinkResource[];
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
// @public
|
|
343
|
-
export interface PrivateLinkServiceConnectionState {
|
|
344
|
-
actionsRequired?: string;
|
|
345
|
-
description?: string;
|
|
346
|
-
status?: PrivateLinkServiceConnectionStatus;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
// @public
|
|
350
|
-
export type PrivateLinkServiceConnectionStatus = string;
|
|
351
|
-
|
|
352
|
-
// @public
|
|
353
|
-
export type ProvisioningState = string;
|
|
354
|
-
|
|
355
|
-
// @public
|
|
356
|
-
export interface ProxyResource extends Resource {
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
// @public
|
|
360
|
-
export interface RegenerateKeyParameters {
|
|
361
|
-
keyType?: KeyType;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
// @public
|
|
365
|
-
export interface Replica extends TrackedResource {
|
|
366
|
-
readonly provisioningState?: ProvisioningState;
|
|
367
|
-
regionEndpointEnabled?: string;
|
|
368
|
-
resourceStopped?: string;
|
|
369
|
-
sku?: ResourceSku;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
// @public (undocumented)
|
|
373
|
-
export interface ReplicaList {
|
|
374
|
-
nextLink?: string;
|
|
375
|
-
value?: Replica[];
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
// @public
|
|
379
|
-
export interface Resource {
|
|
380
|
-
readonly id?: string;
|
|
381
|
-
readonly name?: string;
|
|
382
|
-
readonly systemData?: SystemData;
|
|
383
|
-
readonly type?: string;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
// @public
|
|
387
|
-
export interface ResourceLogCategory {
|
|
388
|
-
enabled?: string;
|
|
389
|
-
name?: string;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
// @public
|
|
393
|
-
export interface ResourceLogConfiguration {
|
|
394
|
-
categories?: ResourceLogCategory[];
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
// @public
|
|
398
|
-
export interface ResourceReference {
|
|
399
|
-
id?: string;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
// @public
|
|
403
|
-
export interface ResourceSku {
|
|
404
|
-
capacity?: number;
|
|
405
|
-
readonly family?: string;
|
|
406
|
-
name: string;
|
|
407
|
-
readonly size?: string;
|
|
408
|
-
tier?: SignalRSkuTier;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
// @public
|
|
412
|
-
export type ScaleType = string;
|
|
413
|
-
|
|
414
|
-
// @public
|
|
415
|
-
export interface ServerlessSettings {
|
|
416
|
-
connectionTimeoutInSeconds?: number;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export interface ServerlessUpstreamSettings {
|
|
421
|
-
templates?: UpstreamTemplate[];
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
// @public
|
|
425
|
-
export type ServiceKind = string;
|
|
426
|
-
|
|
427
|
-
// @public
|
|
428
|
-
export interface ServiceSpecification {
|
|
429
|
-
logSpecifications?: LogSpecification[];
|
|
430
|
-
metricSpecifications?: MetricSpecification[];
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
// @public
|
|
434
|
-
export interface ShareablePrivateLinkResourceProperties {
|
|
435
|
-
description?: string;
|
|
436
|
-
groupId?: string;
|
|
437
|
-
type?: string;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
// @public
|
|
441
|
-
export interface ShareablePrivateLinkResourceType {
|
|
442
|
-
name?: string;
|
|
443
|
-
properties?: ShareablePrivateLinkResourceProperties;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
// @public
|
|
447
|
-
export interface SharedPrivateLinkResource extends ProxyResource {
|
|
448
|
-
groupId?: string;
|
|
449
|
-
privateLinkResourceId?: string;
|
|
450
|
-
readonly provisioningState?: ProvisioningState;
|
|
451
|
-
requestMessage?: string;
|
|
452
|
-
readonly status?: SharedPrivateLinkResourceStatus;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
// @public
|
|
456
|
-
export interface SharedPrivateLinkResourceList {
|
|
457
|
-
nextLink?: string;
|
|
458
|
-
value?: SharedPrivateLinkResource[];
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
// @public
|
|
462
|
-
export type SharedPrivateLinkResourceStatus = string;
|
|
463
|
-
|
|
464
|
-
// @public
|
|
465
|
-
export interface SignalR {
|
|
466
|
-
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRCreateOrUpdateResponse>, SignalRCreateOrUpdateResponse>>;
|
|
467
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRCreateOrUpdateOptionalParams): Promise<SignalRCreateOrUpdateResponse>;
|
|
468
|
-
beginDelete(resourceGroupName: string, resourceName: string, options?: SignalRDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
469
|
-
beginDeleteAndWait(resourceGroupName: string, resourceName: string, options?: SignalRDeleteOptionalParams): Promise<void>;
|
|
470
|
-
beginRegenerateKey(resourceGroupName: string, resourceName: string, parameters: RegenerateKeyParameters, options?: SignalRRegenerateKeyOptionalParams): Promise<SimplePollerLike<OperationState<SignalRRegenerateKeyResponse>, SignalRRegenerateKeyResponse>>;
|
|
471
|
-
beginRegenerateKeyAndWait(resourceGroupName: string, resourceName: string, parameters: RegenerateKeyParameters, options?: SignalRRegenerateKeyOptionalParams): Promise<SignalRRegenerateKeyResponse>;
|
|
472
|
-
beginRestart(resourceGroupName: string, resourceName: string, options?: SignalRRestartOptionalParams): Promise<SimplePollerLike<OperationState<SignalRRestartResponse>, SignalRRestartResponse>>;
|
|
473
|
-
beginRestartAndWait(resourceGroupName: string, resourceName: string, options?: SignalRRestartOptionalParams): Promise<SignalRRestartResponse>;
|
|
474
|
-
beginUpdate(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRUpdateResponse>, SignalRUpdateResponse>>;
|
|
475
|
-
beginUpdateAndWait(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRUpdateOptionalParams): Promise<SignalRUpdateResponse>;
|
|
476
|
-
checkNameAvailability(location: string, parameters: NameAvailabilityParameters, options?: SignalRCheckNameAvailabilityOptionalParams): Promise<SignalRCheckNameAvailabilityResponse>;
|
|
477
|
-
get(resourceGroupName: string, resourceName: string, options?: SignalRGetOptionalParams): Promise<SignalRGetResponse>;
|
|
478
|
-
listByResourceGroup(resourceGroupName: string, options?: SignalRListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SignalRResource>;
|
|
479
|
-
listBySubscription(options?: SignalRListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SignalRResource>;
|
|
480
|
-
listKeys(resourceGroupName: string, resourceName: string, options?: SignalRListKeysOptionalParams): Promise<SignalRListKeysResponse>;
|
|
481
|
-
listReplicaSkus(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRListReplicaSkusOptionalParams): Promise<SignalRListReplicaSkusResponse>;
|
|
482
|
-
listSkus(resourceGroupName: string, resourceName: string, options?: SignalRListSkusOptionalParams): Promise<SignalRListSkusResponse>;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
// @public
|
|
486
|
-
export interface SignalRCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
// @public
|
|
490
|
-
export type SignalRCheckNameAvailabilityResponse = NameAvailability;
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export interface SignalRCorsSettings {
|
|
494
|
-
allowedOrigins?: string[];
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
// @public
|
|
498
|
-
export interface SignalRCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
499
|
-
resumeFrom?: string;
|
|
500
|
-
updateIntervalInMs?: number;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
// @public
|
|
504
|
-
export type SignalRCreateOrUpdateResponse = SignalRResource;
|
|
505
|
-
|
|
506
|
-
// @public
|
|
507
|
-
export interface SignalRCustomCertificates {
|
|
508
|
-
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, certificateName: string, parameters: CustomCertificate, options?: SignalRCustomCertificatesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRCustomCertificatesCreateOrUpdateResponse>, SignalRCustomCertificatesCreateOrUpdateResponse>>;
|
|
509
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, certificateName: string, parameters: CustomCertificate, options?: SignalRCustomCertificatesCreateOrUpdateOptionalParams): Promise<SignalRCustomCertificatesCreateOrUpdateResponse>;
|
|
510
|
-
delete(resourceGroupName: string, resourceName: string, certificateName: string, options?: SignalRCustomCertificatesDeleteOptionalParams): Promise<void>;
|
|
511
|
-
get(resourceGroupName: string, resourceName: string, certificateName: string, options?: SignalRCustomCertificatesGetOptionalParams): Promise<SignalRCustomCertificatesGetResponse>;
|
|
512
|
-
list(resourceGroupName: string, resourceName: string, options?: SignalRCustomCertificatesListOptionalParams): PagedAsyncIterableIterator<CustomCertificate>;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
// @public
|
|
516
|
-
export interface SignalRCustomCertificatesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
517
|
-
resumeFrom?: string;
|
|
518
|
-
updateIntervalInMs?: number;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
// @public
|
|
522
|
-
export type SignalRCustomCertificatesCreateOrUpdateResponse = CustomCertificate;
|
|
523
|
-
|
|
524
|
-
// @public
|
|
525
|
-
export interface SignalRCustomCertificatesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
// @public
|
|
529
|
-
export interface SignalRCustomCertificatesGetOptionalParams extends coreClient.OperationOptions {
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
// @public
|
|
533
|
-
export type SignalRCustomCertificatesGetResponse = CustomCertificate;
|
|
534
|
-
|
|
535
|
-
// @public
|
|
536
|
-
export interface SignalRCustomCertificatesListNextOptionalParams extends coreClient.OperationOptions {
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
// @public
|
|
540
|
-
export type SignalRCustomCertificatesListNextResponse = CustomCertificateList;
|
|
541
|
-
|
|
542
|
-
// @public
|
|
543
|
-
export interface SignalRCustomCertificatesListOptionalParams extends coreClient.OperationOptions {
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
// @public
|
|
547
|
-
export type SignalRCustomCertificatesListResponse = CustomCertificateList;
|
|
548
|
-
|
|
549
|
-
// @public
|
|
550
|
-
export interface SignalRCustomDomains {
|
|
551
|
-
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, name: string, parameters: CustomDomain, options?: SignalRCustomDomainsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRCustomDomainsCreateOrUpdateResponse>, SignalRCustomDomainsCreateOrUpdateResponse>>;
|
|
552
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, name: string, parameters: CustomDomain, options?: SignalRCustomDomainsCreateOrUpdateOptionalParams): Promise<SignalRCustomDomainsCreateOrUpdateResponse>;
|
|
553
|
-
beginDelete(resourceGroupName: string, resourceName: string, name: string, options?: SignalRCustomDomainsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
554
|
-
beginDeleteAndWait(resourceGroupName: string, resourceName: string, name: string, options?: SignalRCustomDomainsDeleteOptionalParams): Promise<void>;
|
|
555
|
-
get(resourceGroupName: string, resourceName: string, name: string, options?: SignalRCustomDomainsGetOptionalParams): Promise<SignalRCustomDomainsGetResponse>;
|
|
556
|
-
list(resourceGroupName: string, resourceName: string, options?: SignalRCustomDomainsListOptionalParams): PagedAsyncIterableIterator<CustomDomain>;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
// @public
|
|
560
|
-
export interface SignalRCustomDomainsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
561
|
-
resumeFrom?: string;
|
|
562
|
-
updateIntervalInMs?: number;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
// @public
|
|
566
|
-
export type SignalRCustomDomainsCreateOrUpdateResponse = CustomDomain;
|
|
567
|
-
|
|
568
|
-
// @public
|
|
569
|
-
export interface SignalRCustomDomainsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
570
|
-
resumeFrom?: string;
|
|
571
|
-
updateIntervalInMs?: number;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
// @public
|
|
575
|
-
export interface SignalRCustomDomainsGetOptionalParams extends coreClient.OperationOptions {
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
// @public
|
|
579
|
-
export type SignalRCustomDomainsGetResponse = CustomDomain;
|
|
580
|
-
|
|
581
|
-
// @public
|
|
582
|
-
export interface SignalRCustomDomainsListNextOptionalParams extends coreClient.OperationOptions {
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
// @public
|
|
586
|
-
export type SignalRCustomDomainsListNextResponse = CustomDomainList;
|
|
587
|
-
|
|
588
|
-
// @public
|
|
589
|
-
export interface SignalRCustomDomainsListOptionalParams extends coreClient.OperationOptions {
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
// @public
|
|
593
|
-
export type SignalRCustomDomainsListResponse = CustomDomainList;
|
|
594
|
-
|
|
595
|
-
// @public
|
|
596
|
-
export interface SignalRDeleteOptionalParams extends coreClient.OperationOptions {
|
|
597
|
-
resumeFrom?: string;
|
|
598
|
-
updateIntervalInMs?: number;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
// @public
|
|
602
|
-
export interface SignalRFeature {
|
|
603
|
-
flag: FeatureFlags;
|
|
604
|
-
properties?: {
|
|
605
|
-
[propertyName: string]: string;
|
|
606
|
-
};
|
|
607
|
-
value: string;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
// @public
|
|
611
|
-
export interface SignalRGetOptionalParams extends coreClient.OperationOptions {
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
// @public
|
|
615
|
-
export type SignalRGetResponse = SignalRResource;
|
|
616
|
-
|
|
617
|
-
// @public
|
|
618
|
-
export interface SignalRKeys {
|
|
619
|
-
primaryConnectionString?: string;
|
|
620
|
-
primaryKey?: string;
|
|
621
|
-
secondaryConnectionString?: string;
|
|
622
|
-
secondaryKey?: string;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
// @public
|
|
626
|
-
export interface SignalRListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
// @public
|
|
630
|
-
export type SignalRListByResourceGroupNextResponse = SignalRResourceList;
|
|
631
|
-
|
|
632
|
-
// @public
|
|
633
|
-
export interface SignalRListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
// @public
|
|
637
|
-
export type SignalRListByResourceGroupResponse = SignalRResourceList;
|
|
638
|
-
|
|
639
|
-
// @public
|
|
640
|
-
export interface SignalRListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
// @public
|
|
644
|
-
export type SignalRListBySubscriptionNextResponse = SignalRResourceList;
|
|
645
|
-
|
|
646
|
-
// @public
|
|
647
|
-
export interface SignalRListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
// @public
|
|
651
|
-
export type SignalRListBySubscriptionResponse = SignalRResourceList;
|
|
652
|
-
|
|
653
|
-
// @public
|
|
654
|
-
export interface SignalRListKeysOptionalParams extends coreClient.OperationOptions {
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
// @public
|
|
658
|
-
export type SignalRListKeysResponse = SignalRKeys;
|
|
659
|
-
|
|
660
|
-
// @public
|
|
661
|
-
export interface SignalRListReplicaSkusOptionalParams extends coreClient.OperationOptions {
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
// @public
|
|
665
|
-
export type SignalRListReplicaSkusResponse = SkuList;
|
|
666
|
-
|
|
667
|
-
// @public
|
|
668
|
-
export interface SignalRListSkusOptionalParams extends coreClient.OperationOptions {
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
// @public
|
|
672
|
-
export type SignalRListSkusResponse = SkuList;
|
|
673
|
-
|
|
674
|
-
// @public (undocumented)
|
|
675
|
-
export class SignalRManagementClient extends coreClient.ServiceClient {
|
|
676
|
-
// (undocumented)
|
|
677
|
-
$host: string;
|
|
678
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: SignalRManagementClientOptionalParams);
|
|
679
|
-
// (undocumented)
|
|
680
|
-
apiVersion: string;
|
|
681
|
-
// (undocumented)
|
|
682
|
-
operations: Operations;
|
|
683
|
-
// (undocumented)
|
|
684
|
-
signalR: SignalR;
|
|
685
|
-
// (undocumented)
|
|
686
|
-
signalRCustomCertificates: SignalRCustomCertificates;
|
|
687
|
-
// (undocumented)
|
|
688
|
-
signalRCustomDomains: SignalRCustomDomains;
|
|
689
|
-
// (undocumented)
|
|
690
|
-
signalRPrivateEndpointConnections: SignalRPrivateEndpointConnections;
|
|
691
|
-
// (undocumented)
|
|
692
|
-
signalRPrivateLinkResources: SignalRPrivateLinkResources;
|
|
693
|
-
// (undocumented)
|
|
694
|
-
signalRReplicas: SignalRReplicas;
|
|
695
|
-
// (undocumented)
|
|
696
|
-
signalRSharedPrivateLinkResources: SignalRSharedPrivateLinkResources;
|
|
697
|
-
// (undocumented)
|
|
698
|
-
subscriptionId: string;
|
|
699
|
-
// (undocumented)
|
|
700
|
-
usages: Usages;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
// @public
|
|
704
|
-
export interface SignalRManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
705
|
-
$host?: string;
|
|
706
|
-
apiVersion?: string;
|
|
707
|
-
endpoint?: string;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
// @public
|
|
711
|
-
export interface SignalRNetworkACLs {
|
|
712
|
-
defaultAction?: ACLAction;
|
|
713
|
-
ipRules?: IPRule[];
|
|
714
|
-
privateEndpoints?: PrivateEndpointACL[];
|
|
715
|
-
publicNetwork?: NetworkACL;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
// @public
|
|
719
|
-
export interface SignalRPrivateEndpointConnections {
|
|
720
|
-
beginDelete(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
721
|
-
beginDeleteAndWait(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
722
|
-
get(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsGetOptionalParams): Promise<SignalRPrivateEndpointConnectionsGetResponse>;
|
|
723
|
-
list(resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
724
|
-
update(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, parameters: PrivateEndpointConnection, options?: SignalRPrivateEndpointConnectionsUpdateOptionalParams): Promise<SignalRPrivateEndpointConnectionsUpdateResponse>;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
// @public
|
|
728
|
-
export interface SignalRPrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
729
|
-
resumeFrom?: string;
|
|
730
|
-
updateIntervalInMs?: number;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
// @public
|
|
734
|
-
export interface SignalRPrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
// @public
|
|
738
|
-
export type SignalRPrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
739
|
-
|
|
740
|
-
// @public
|
|
741
|
-
export interface SignalRPrivateEndpointConnectionsListNextOptionalParams extends coreClient.OperationOptions {
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
// @public
|
|
745
|
-
export type SignalRPrivateEndpointConnectionsListNextResponse = PrivateEndpointConnectionList;
|
|
746
|
-
|
|
747
|
-
// @public
|
|
748
|
-
export interface SignalRPrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
// @public
|
|
752
|
-
export type SignalRPrivateEndpointConnectionsListResponse = PrivateEndpointConnectionList;
|
|
753
|
-
|
|
754
|
-
// @public
|
|
755
|
-
export interface SignalRPrivateEndpointConnectionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
// @public
|
|
759
|
-
export type SignalRPrivateEndpointConnectionsUpdateResponse = PrivateEndpointConnection;
|
|
760
|
-
|
|
761
|
-
// @public
|
|
762
|
-
export interface SignalRPrivateLinkResources {
|
|
763
|
-
list(resourceGroupName: string, resourceName: string, options?: SignalRPrivateLinkResourcesListOptionalParams): PagedAsyncIterableIterator<PrivateLinkResource>;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
// @public
|
|
767
|
-
export interface SignalRPrivateLinkResourcesListNextOptionalParams extends coreClient.OperationOptions {
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
// @public
|
|
771
|
-
export type SignalRPrivateLinkResourcesListNextResponse = PrivateLinkResourceList;
|
|
772
|
-
|
|
773
|
-
// @public
|
|
774
|
-
export interface SignalRPrivateLinkResourcesListOptionalParams extends coreClient.OperationOptions {
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
// @public
|
|
778
|
-
export type SignalRPrivateLinkResourcesListResponse = PrivateLinkResourceList;
|
|
779
|
-
|
|
780
|
-
// @public
|
|
781
|
-
export interface SignalRRegenerateKeyHeaders {
|
|
782
|
-
// (undocumented)
|
|
783
|
-
location?: string;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
// @public
|
|
787
|
-
export interface SignalRRegenerateKeyOptionalParams extends coreClient.OperationOptions {
|
|
788
|
-
resumeFrom?: string;
|
|
789
|
-
updateIntervalInMs?: number;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
// @public
|
|
793
|
-
export type SignalRRegenerateKeyResponse = SignalRKeys;
|
|
794
|
-
|
|
795
|
-
// @public
|
|
796
|
-
export interface SignalRReplicas {
|
|
797
|
-
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRReplicasCreateOrUpdateResponse>, SignalRReplicasCreateOrUpdateResponse>>;
|
|
798
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasCreateOrUpdateOptionalParams): Promise<SignalRReplicasCreateOrUpdateResponse>;
|
|
799
|
-
beginRestart(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasRestartOptionalParams): Promise<SimplePollerLike<OperationState<SignalRReplicasRestartResponse>, SignalRReplicasRestartResponse>>;
|
|
800
|
-
beginRestartAndWait(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasRestartOptionalParams): Promise<SignalRReplicasRestartResponse>;
|
|
801
|
-
beginUpdate(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRReplicasUpdateResponse>, SignalRReplicasUpdateResponse>>;
|
|
802
|
-
beginUpdateAndWait(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasUpdateOptionalParams): Promise<SignalRReplicasUpdateResponse>;
|
|
803
|
-
delete(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasDeleteOptionalParams): Promise<void>;
|
|
804
|
-
get(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasGetOptionalParams): Promise<SignalRReplicasGetResponse>;
|
|
805
|
-
list(resourceGroupName: string, resourceName: string, options?: SignalRReplicasListOptionalParams): PagedAsyncIterableIterator<Replica>;
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
// @public
|
|
809
|
-
export interface SignalRReplicasCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
810
|
-
resumeFrom?: string;
|
|
811
|
-
updateIntervalInMs?: number;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
// @public
|
|
815
|
-
export type SignalRReplicasCreateOrUpdateResponse = Replica;
|
|
816
|
-
|
|
817
|
-
// @public
|
|
818
|
-
export interface SignalRReplicasDeleteOptionalParams extends coreClient.OperationOptions {
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
// @public
|
|
822
|
-
export interface SignalRReplicasGetOptionalParams extends coreClient.OperationOptions {
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
// @public
|
|
826
|
-
export type SignalRReplicasGetResponse = Replica;
|
|
827
|
-
|
|
828
|
-
// @public
|
|
829
|
-
export interface SignalRReplicasListNextOptionalParams extends coreClient.OperationOptions {
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
// @public
|
|
833
|
-
export type SignalRReplicasListNextResponse = ReplicaList;
|
|
834
|
-
|
|
835
|
-
// @public
|
|
836
|
-
export interface SignalRReplicasListOptionalParams extends coreClient.OperationOptions {
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
// @public
|
|
840
|
-
export type SignalRReplicasListResponse = ReplicaList;
|
|
841
|
-
|
|
842
|
-
// @public
|
|
843
|
-
export interface SignalRReplicasRestartHeaders {
|
|
844
|
-
// (undocumented)
|
|
845
|
-
location?: string;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
// @public
|
|
849
|
-
export interface SignalRReplicasRestartOptionalParams extends coreClient.OperationOptions {
|
|
850
|
-
resumeFrom?: string;
|
|
851
|
-
updateIntervalInMs?: number;
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
// @public
|
|
855
|
-
export type SignalRReplicasRestartResponse = SignalRReplicasRestartHeaders;
|
|
856
|
-
|
|
857
|
-
// @public
|
|
858
|
-
export interface SignalRReplicasUpdateHeaders {
|
|
859
|
-
// (undocumented)
|
|
860
|
-
location?: string;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
// @public
|
|
864
|
-
export interface SignalRReplicasUpdateOptionalParams extends coreClient.OperationOptions {
|
|
865
|
-
resumeFrom?: string;
|
|
866
|
-
updateIntervalInMs?: number;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
// @public
|
|
870
|
-
export type SignalRReplicasUpdateResponse = Replica;
|
|
871
|
-
|
|
872
|
-
// @public
|
|
873
|
-
export type SignalRRequestType = string;
|
|
874
|
-
|
|
875
|
-
// @public
|
|
876
|
-
export interface SignalRResource extends TrackedResource {
|
|
877
|
-
cors?: SignalRCorsSettings;
|
|
878
|
-
disableAadAuth?: boolean;
|
|
879
|
-
disableLocalAuth?: boolean;
|
|
880
|
-
readonly externalIP?: string;
|
|
881
|
-
features?: SignalRFeature[];
|
|
882
|
-
readonly hostName?: string;
|
|
883
|
-
readonly hostNamePrefix?: string;
|
|
884
|
-
identity?: ManagedIdentity;
|
|
885
|
-
kind?: ServiceKind;
|
|
886
|
-
liveTraceConfiguration?: LiveTraceConfiguration;
|
|
887
|
-
networkACLs?: SignalRNetworkACLs;
|
|
888
|
-
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
889
|
-
readonly provisioningState?: ProvisioningState;
|
|
890
|
-
publicNetworkAccess?: string;
|
|
891
|
-
readonly publicPort?: number;
|
|
892
|
-
regionEndpointEnabled?: string;
|
|
893
|
-
resourceLogConfiguration?: ResourceLogConfiguration;
|
|
894
|
-
resourceStopped?: string;
|
|
895
|
-
serverless?: ServerlessSettings;
|
|
896
|
-
readonly serverPort?: number;
|
|
897
|
-
readonly sharedPrivateLinkResources?: SharedPrivateLinkResource[];
|
|
898
|
-
sku?: ResourceSku;
|
|
899
|
-
tls?: SignalRTlsSettings;
|
|
900
|
-
upstream?: ServerlessUpstreamSettings;
|
|
901
|
-
readonly version?: string;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
// @public
|
|
905
|
-
export interface SignalRResourceList {
|
|
906
|
-
nextLink?: string;
|
|
907
|
-
value?: SignalRResource[];
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
// @public
|
|
911
|
-
export interface SignalRRestartHeaders {
|
|
912
|
-
// (undocumented)
|
|
913
|
-
location?: string;
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
// @public
|
|
917
|
-
export interface SignalRRestartOptionalParams extends coreClient.OperationOptions {
|
|
918
|
-
resumeFrom?: string;
|
|
919
|
-
updateIntervalInMs?: number;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
// @public
|
|
923
|
-
export type SignalRRestartResponse = SignalRRestartHeaders;
|
|
924
|
-
|
|
925
|
-
// @public
|
|
926
|
-
export interface SignalRSharedPrivateLinkResources {
|
|
927
|
-
beginCreateOrUpdate(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, parameters: SharedPrivateLinkResource, options?: SignalRSharedPrivateLinkResourcesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse>, SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse>>;
|
|
928
|
-
beginCreateOrUpdateAndWait(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, parameters: SharedPrivateLinkResource, options?: SignalRSharedPrivateLinkResourcesCreateOrUpdateOptionalParams): Promise<SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse>;
|
|
929
|
-
beginDelete(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
930
|
-
beginDeleteAndWait(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesDeleteOptionalParams): Promise<void>;
|
|
931
|
-
get(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesGetOptionalParams): Promise<SignalRSharedPrivateLinkResourcesGetResponse>;
|
|
932
|
-
list(resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesListOptionalParams): PagedAsyncIterableIterator<SharedPrivateLinkResource>;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
// @public
|
|
936
|
-
export interface SignalRSharedPrivateLinkResourcesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
937
|
-
resumeFrom?: string;
|
|
938
|
-
updateIntervalInMs?: number;
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
// @public
|
|
942
|
-
export type SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse = SharedPrivateLinkResource;
|
|
943
|
-
|
|
944
|
-
// @public
|
|
945
|
-
export interface SignalRSharedPrivateLinkResourcesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
946
|
-
resumeFrom?: string;
|
|
947
|
-
updateIntervalInMs?: number;
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
// @public
|
|
951
|
-
export interface SignalRSharedPrivateLinkResourcesGetOptionalParams extends coreClient.OperationOptions {
|
|
952
|
-
}
|
|
953
|
-
|
|
954
|
-
// @public
|
|
955
|
-
export type SignalRSharedPrivateLinkResourcesGetResponse = SharedPrivateLinkResource;
|
|
956
|
-
|
|
957
|
-
// @public
|
|
958
|
-
export interface SignalRSharedPrivateLinkResourcesListNextOptionalParams extends coreClient.OperationOptions {
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
// @public
|
|
962
|
-
export type SignalRSharedPrivateLinkResourcesListNextResponse = SharedPrivateLinkResourceList;
|
|
963
|
-
|
|
964
|
-
// @public
|
|
965
|
-
export interface SignalRSharedPrivateLinkResourcesListOptionalParams extends coreClient.OperationOptions {
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
// @public
|
|
969
|
-
export type SignalRSharedPrivateLinkResourcesListResponse = SharedPrivateLinkResourceList;
|
|
970
|
-
|
|
971
|
-
// @public
|
|
972
|
-
export type SignalRSkuTier = string;
|
|
973
|
-
|
|
974
|
-
// @public
|
|
975
|
-
export interface SignalRTlsSettings {
|
|
976
|
-
clientCertEnabled?: boolean;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
// @public
|
|
980
|
-
export interface SignalRUpdateHeaders {
|
|
981
|
-
// (undocumented)
|
|
982
|
-
location?: string;
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
// @public
|
|
986
|
-
export interface SignalRUpdateOptionalParams extends coreClient.OperationOptions {
|
|
987
|
-
resumeFrom?: string;
|
|
988
|
-
updateIntervalInMs?: number;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
// @public
|
|
992
|
-
export type SignalRUpdateResponse = SignalRResource;
|
|
993
|
-
|
|
994
|
-
// @public
|
|
995
|
-
export interface SignalRUsage {
|
|
996
|
-
currentValue?: number;
|
|
997
|
-
id?: string;
|
|
998
|
-
limit?: number;
|
|
999
|
-
name?: SignalRUsageName;
|
|
1000
|
-
unit?: string;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
// @public
|
|
1004
|
-
export interface SignalRUsageList {
|
|
1005
|
-
nextLink?: string;
|
|
1006
|
-
value?: SignalRUsage[];
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
// @public
|
|
1010
|
-
export interface SignalRUsageName {
|
|
1011
|
-
localizedValue?: string;
|
|
1012
|
-
value?: string;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
// @public
|
|
1016
|
-
export interface Sku {
|
|
1017
|
-
readonly capacity?: SkuCapacity;
|
|
1018
|
-
readonly resourceType?: string;
|
|
1019
|
-
readonly sku?: ResourceSku;
|
|
1020
|
-
}
|
|
1021
|
-
|
|
1022
|
-
// @public
|
|
1023
|
-
export interface SkuCapacity {
|
|
1024
|
-
readonly allowedValues?: number[];
|
|
1025
|
-
readonly default?: number;
|
|
1026
|
-
readonly maximum?: number;
|
|
1027
|
-
readonly minimum?: number;
|
|
1028
|
-
readonly scaleType?: ScaleType;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
// @public
|
|
1032
|
-
export interface SkuList {
|
|
1033
|
-
readonly nextLink?: string;
|
|
1034
|
-
readonly value?: Sku[];
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
// @public
|
|
1038
|
-
export interface SystemData {
|
|
1039
|
-
createdAt?: Date;
|
|
1040
|
-
createdBy?: string;
|
|
1041
|
-
createdByType?: CreatedByType;
|
|
1042
|
-
lastModifiedAt?: Date;
|
|
1043
|
-
lastModifiedBy?: string;
|
|
1044
|
-
lastModifiedByType?: CreatedByType;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
// @public
|
|
1048
|
-
export interface TrackedResource extends Resource {
|
|
1049
|
-
location: string;
|
|
1050
|
-
tags?: {
|
|
1051
|
-
[propertyName: string]: string;
|
|
1052
|
-
};
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
// @public
|
|
1056
|
-
export interface UpstreamAuthSettings {
|
|
1057
|
-
managedIdentity?: ManagedIdentitySettings;
|
|
1058
|
-
type?: UpstreamAuthType;
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
// @public
|
|
1062
|
-
export type UpstreamAuthType = string;
|
|
1063
|
-
|
|
1064
|
-
// @public
|
|
1065
|
-
export interface UpstreamTemplate {
|
|
1066
|
-
auth?: UpstreamAuthSettings;
|
|
1067
|
-
categoryPattern?: string;
|
|
1068
|
-
eventPattern?: string;
|
|
1069
|
-
hubPattern?: string;
|
|
1070
|
-
urlTemplate: string;
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
// @public
|
|
1074
|
-
export interface Usages {
|
|
1075
|
-
list(location: string, options?: UsagesListOptionalParams): PagedAsyncIterableIterator<SignalRUsage>;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
// @public
|
|
1079
|
-
export interface UsagesListNextOptionalParams extends coreClient.OperationOptions {
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
// @public
|
|
1083
|
-
export type UsagesListNextResponse = SignalRUsageList;
|
|
1084
|
-
|
|
1085
|
-
// @public
|
|
1086
|
-
export interface UsagesListOptionalParams extends coreClient.OperationOptions {
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
// @public
|
|
1090
|
-
export type UsagesListResponse = SignalRUsageList;
|
|
1091
|
-
|
|
1092
|
-
// @public
|
|
1093
|
-
export interface UserAssignedIdentityProperty {
|
|
1094
|
-
readonly clientId?: string;
|
|
1095
|
-
readonly principalId?: string;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
// (No @packageDocumentation comment for this package)
|
|
1099
|
-
|
|
1100
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-signalr"
|
|
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 type ACLAction = string;
|
|
15
|
+
|
|
16
|
+
// @public
|
|
17
|
+
export type CreatedByType = string;
|
|
18
|
+
|
|
19
|
+
// @public
|
|
20
|
+
export interface CustomCertificate extends ProxyResource {
|
|
21
|
+
keyVaultBaseUri: string;
|
|
22
|
+
keyVaultSecretName: string;
|
|
23
|
+
keyVaultSecretVersion?: string;
|
|
24
|
+
readonly provisioningState?: ProvisioningState;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// @public
|
|
28
|
+
export interface CustomCertificateList {
|
|
29
|
+
nextLink?: string;
|
|
30
|
+
value?: CustomCertificate[];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// @public
|
|
34
|
+
export interface CustomDomain extends ProxyResource {
|
|
35
|
+
customCertificate: ResourceReference;
|
|
36
|
+
domainName: string;
|
|
37
|
+
readonly provisioningState?: ProvisioningState;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export interface CustomDomainList {
|
|
42
|
+
nextLink?: string;
|
|
43
|
+
value?: CustomDomain[];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// @public
|
|
47
|
+
export interface Dimension {
|
|
48
|
+
displayName?: string;
|
|
49
|
+
internalName?: string;
|
|
50
|
+
name?: string;
|
|
51
|
+
toBeExportedForShoebox?: boolean;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// @public
|
|
55
|
+
export interface ErrorAdditionalInfo {
|
|
56
|
+
readonly info?: Record<string, unknown>;
|
|
57
|
+
readonly type?: string;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// @public
|
|
61
|
+
export interface ErrorDetail {
|
|
62
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
63
|
+
readonly code?: string;
|
|
64
|
+
readonly details?: ErrorDetail[];
|
|
65
|
+
readonly message?: string;
|
|
66
|
+
readonly target?: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export interface ErrorResponse {
|
|
71
|
+
error?: ErrorDetail;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// @public
|
|
75
|
+
export type FeatureFlags = string;
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export interface IPRule {
|
|
82
|
+
action?: ACLAction;
|
|
83
|
+
value?: string;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// @public
|
|
87
|
+
export type KeyType = string;
|
|
88
|
+
|
|
89
|
+
// @public
|
|
90
|
+
export enum KnownACLAction {
|
|
91
|
+
Allow = "Allow",
|
|
92
|
+
Deny = "Deny"
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// @public
|
|
96
|
+
export enum KnownCreatedByType {
|
|
97
|
+
Application = "Application",
|
|
98
|
+
Key = "Key",
|
|
99
|
+
ManagedIdentity = "ManagedIdentity",
|
|
100
|
+
User = "User"
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// @public
|
|
104
|
+
export enum KnownFeatureFlags {
|
|
105
|
+
EnableConnectivityLogs = "EnableConnectivityLogs",
|
|
106
|
+
EnableLiveTrace = "EnableLiveTrace",
|
|
107
|
+
EnableMessagingLogs = "EnableMessagingLogs",
|
|
108
|
+
ServiceMode = "ServiceMode"
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// @public
|
|
112
|
+
export enum KnownKeyType {
|
|
113
|
+
Primary = "Primary",
|
|
114
|
+
Salt = "Salt",
|
|
115
|
+
Secondary = "Secondary"
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export enum KnownManagedIdentityType {
|
|
120
|
+
None = "None",
|
|
121
|
+
SystemAssigned = "SystemAssigned",
|
|
122
|
+
UserAssigned = "UserAssigned"
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// @public
|
|
126
|
+
export enum KnownPrivateLinkServiceConnectionStatus {
|
|
127
|
+
Approved = "Approved",
|
|
128
|
+
Disconnected = "Disconnected",
|
|
129
|
+
Pending = "Pending",
|
|
130
|
+
Rejected = "Rejected"
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export enum KnownProvisioningState {
|
|
135
|
+
Canceled = "Canceled",
|
|
136
|
+
Creating = "Creating",
|
|
137
|
+
Deleting = "Deleting",
|
|
138
|
+
Failed = "Failed",
|
|
139
|
+
Moving = "Moving",
|
|
140
|
+
Running = "Running",
|
|
141
|
+
Succeeded = "Succeeded",
|
|
142
|
+
Unknown = "Unknown",
|
|
143
|
+
Updating = "Updating"
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// @public
|
|
147
|
+
export enum KnownScaleType {
|
|
148
|
+
Automatic = "Automatic",
|
|
149
|
+
Manual = "Manual",
|
|
150
|
+
None = "None"
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// @public
|
|
154
|
+
export enum KnownServiceKind {
|
|
155
|
+
RawWebSockets = "RawWebSockets",
|
|
156
|
+
SignalR = "SignalR"
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// @public
|
|
160
|
+
export enum KnownSharedPrivateLinkResourceStatus {
|
|
161
|
+
Approved = "Approved",
|
|
162
|
+
Disconnected = "Disconnected",
|
|
163
|
+
Pending = "Pending",
|
|
164
|
+
Rejected = "Rejected",
|
|
165
|
+
Timeout = "Timeout"
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// @public
|
|
169
|
+
export enum KnownSignalRRequestType {
|
|
170
|
+
ClientConnection = "ClientConnection",
|
|
171
|
+
Restapi = "RESTAPI",
|
|
172
|
+
ServerConnection = "ServerConnection",
|
|
173
|
+
Trace = "Trace"
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
// @public
|
|
177
|
+
export enum KnownSignalRSkuTier {
|
|
178
|
+
Basic = "Basic",
|
|
179
|
+
Free = "Free",
|
|
180
|
+
Premium = "Premium",
|
|
181
|
+
Standard = "Standard"
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
// @public
|
|
185
|
+
export enum KnownUpstreamAuthType {
|
|
186
|
+
ManagedIdentity = "ManagedIdentity",
|
|
187
|
+
None = "None"
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// @public
|
|
191
|
+
export interface LiveTraceCategory {
|
|
192
|
+
enabled?: string;
|
|
193
|
+
name?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// @public
|
|
197
|
+
export interface LiveTraceConfiguration {
|
|
198
|
+
categories?: LiveTraceCategory[];
|
|
199
|
+
enabled?: string;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// @public
|
|
203
|
+
export interface LogSpecification {
|
|
204
|
+
displayName?: string;
|
|
205
|
+
name?: string;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
// @public
|
|
209
|
+
export interface ManagedIdentity {
|
|
210
|
+
readonly principalId?: string;
|
|
211
|
+
readonly tenantId?: string;
|
|
212
|
+
type?: ManagedIdentityType;
|
|
213
|
+
userAssignedIdentities?: {
|
|
214
|
+
[propertyName: string]: UserAssignedIdentityProperty;
|
|
215
|
+
};
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// @public
|
|
219
|
+
export interface ManagedIdentitySettings {
|
|
220
|
+
resource?: string;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// @public
|
|
224
|
+
export type ManagedIdentityType = string;
|
|
225
|
+
|
|
226
|
+
// @public
|
|
227
|
+
export interface MetricSpecification {
|
|
228
|
+
aggregationType?: string;
|
|
229
|
+
category?: string;
|
|
230
|
+
dimensions?: Dimension[];
|
|
231
|
+
displayDescription?: string;
|
|
232
|
+
displayName?: string;
|
|
233
|
+
fillGapWithZero?: string;
|
|
234
|
+
name?: string;
|
|
235
|
+
unit?: string;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
// @public
|
|
239
|
+
export interface NameAvailability {
|
|
240
|
+
message?: string;
|
|
241
|
+
nameAvailable?: boolean;
|
|
242
|
+
reason?: string;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// @public
|
|
246
|
+
export interface NameAvailabilityParameters {
|
|
247
|
+
name: string;
|
|
248
|
+
type: string;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
// @public
|
|
252
|
+
export interface NetworkACL {
|
|
253
|
+
allow?: SignalRRequestType[];
|
|
254
|
+
deny?: SignalRRequestType[];
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
// @public
|
|
258
|
+
export interface Operation {
|
|
259
|
+
display?: OperationDisplay;
|
|
260
|
+
isDataAction?: boolean;
|
|
261
|
+
name?: string;
|
|
262
|
+
origin?: string;
|
|
263
|
+
properties?: OperationProperties;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// @public
|
|
267
|
+
export interface OperationDisplay {
|
|
268
|
+
description?: string;
|
|
269
|
+
operation?: string;
|
|
270
|
+
provider?: string;
|
|
271
|
+
resource?: string;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// @public
|
|
275
|
+
export interface OperationList {
|
|
276
|
+
nextLink?: string;
|
|
277
|
+
value?: Operation[];
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
// @public
|
|
281
|
+
export interface OperationProperties {
|
|
282
|
+
serviceSpecification?: ServiceSpecification;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// @public
|
|
286
|
+
export interface Operations {
|
|
287
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
// @public
|
|
291
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// @public
|
|
295
|
+
export type OperationsListNextResponse = OperationList;
|
|
296
|
+
|
|
297
|
+
// @public
|
|
298
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
// @public
|
|
302
|
+
export type OperationsListResponse = OperationList;
|
|
303
|
+
|
|
304
|
+
// @public
|
|
305
|
+
export interface PrivateEndpoint {
|
|
306
|
+
id?: string;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
// @public
|
|
310
|
+
export interface PrivateEndpointACL extends NetworkACL {
|
|
311
|
+
name: string;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
// @public
|
|
315
|
+
export interface PrivateEndpointConnection extends ProxyResource {
|
|
316
|
+
readonly groupIds?: string[];
|
|
317
|
+
privateEndpoint?: PrivateEndpoint;
|
|
318
|
+
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
319
|
+
readonly provisioningState?: ProvisioningState;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// @public
|
|
323
|
+
export interface PrivateEndpointConnectionList {
|
|
324
|
+
nextLink?: string;
|
|
325
|
+
value?: PrivateEndpointConnection[];
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// @public
|
|
329
|
+
export interface PrivateLinkResource extends ProxyResource {
|
|
330
|
+
groupId?: string;
|
|
331
|
+
requiredMembers?: string[];
|
|
332
|
+
requiredZoneNames?: string[];
|
|
333
|
+
shareablePrivateLinkResourceTypes?: ShareablePrivateLinkResourceType[];
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
// @public
|
|
337
|
+
export interface PrivateLinkResourceList {
|
|
338
|
+
nextLink?: string;
|
|
339
|
+
value?: PrivateLinkResource[];
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
// @public
|
|
343
|
+
export interface PrivateLinkServiceConnectionState {
|
|
344
|
+
actionsRequired?: string;
|
|
345
|
+
description?: string;
|
|
346
|
+
status?: PrivateLinkServiceConnectionStatus;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
// @public
|
|
350
|
+
export type PrivateLinkServiceConnectionStatus = string;
|
|
351
|
+
|
|
352
|
+
// @public
|
|
353
|
+
export type ProvisioningState = string;
|
|
354
|
+
|
|
355
|
+
// @public
|
|
356
|
+
export interface ProxyResource extends Resource {
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
// @public
|
|
360
|
+
export interface RegenerateKeyParameters {
|
|
361
|
+
keyType?: KeyType;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
// @public
|
|
365
|
+
export interface Replica extends TrackedResource {
|
|
366
|
+
readonly provisioningState?: ProvisioningState;
|
|
367
|
+
regionEndpointEnabled?: string;
|
|
368
|
+
resourceStopped?: string;
|
|
369
|
+
sku?: ResourceSku;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
// @public (undocumented)
|
|
373
|
+
export interface ReplicaList {
|
|
374
|
+
nextLink?: string;
|
|
375
|
+
value?: Replica[];
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// @public
|
|
379
|
+
export interface Resource {
|
|
380
|
+
readonly id?: string;
|
|
381
|
+
readonly name?: string;
|
|
382
|
+
readonly systemData?: SystemData;
|
|
383
|
+
readonly type?: string;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
// @public
|
|
387
|
+
export interface ResourceLogCategory {
|
|
388
|
+
enabled?: string;
|
|
389
|
+
name?: string;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// @public
|
|
393
|
+
export interface ResourceLogConfiguration {
|
|
394
|
+
categories?: ResourceLogCategory[];
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
// @public
|
|
398
|
+
export interface ResourceReference {
|
|
399
|
+
id?: string;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
// @public
|
|
403
|
+
export interface ResourceSku {
|
|
404
|
+
capacity?: number;
|
|
405
|
+
readonly family?: string;
|
|
406
|
+
name: string;
|
|
407
|
+
readonly size?: string;
|
|
408
|
+
tier?: SignalRSkuTier;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
// @public
|
|
412
|
+
export type ScaleType = string;
|
|
413
|
+
|
|
414
|
+
// @public
|
|
415
|
+
export interface ServerlessSettings {
|
|
416
|
+
connectionTimeoutInSeconds?: number;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export interface ServerlessUpstreamSettings {
|
|
421
|
+
templates?: UpstreamTemplate[];
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// @public
|
|
425
|
+
export type ServiceKind = string;
|
|
426
|
+
|
|
427
|
+
// @public
|
|
428
|
+
export interface ServiceSpecification {
|
|
429
|
+
logSpecifications?: LogSpecification[];
|
|
430
|
+
metricSpecifications?: MetricSpecification[];
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
// @public
|
|
434
|
+
export interface ShareablePrivateLinkResourceProperties {
|
|
435
|
+
description?: string;
|
|
436
|
+
groupId?: string;
|
|
437
|
+
type?: string;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
// @public
|
|
441
|
+
export interface ShareablePrivateLinkResourceType {
|
|
442
|
+
name?: string;
|
|
443
|
+
properties?: ShareablePrivateLinkResourceProperties;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
// @public
|
|
447
|
+
export interface SharedPrivateLinkResource extends ProxyResource {
|
|
448
|
+
groupId?: string;
|
|
449
|
+
privateLinkResourceId?: string;
|
|
450
|
+
readonly provisioningState?: ProvisioningState;
|
|
451
|
+
requestMessage?: string;
|
|
452
|
+
readonly status?: SharedPrivateLinkResourceStatus;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
// @public
|
|
456
|
+
export interface SharedPrivateLinkResourceList {
|
|
457
|
+
nextLink?: string;
|
|
458
|
+
value?: SharedPrivateLinkResource[];
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
// @public
|
|
462
|
+
export type SharedPrivateLinkResourceStatus = string;
|
|
463
|
+
|
|
464
|
+
// @public
|
|
465
|
+
export interface SignalR {
|
|
466
|
+
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRCreateOrUpdateResponse>, SignalRCreateOrUpdateResponse>>;
|
|
467
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRCreateOrUpdateOptionalParams): Promise<SignalRCreateOrUpdateResponse>;
|
|
468
|
+
beginDelete(resourceGroupName: string, resourceName: string, options?: SignalRDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
469
|
+
beginDeleteAndWait(resourceGroupName: string, resourceName: string, options?: SignalRDeleteOptionalParams): Promise<void>;
|
|
470
|
+
beginRegenerateKey(resourceGroupName: string, resourceName: string, parameters: RegenerateKeyParameters, options?: SignalRRegenerateKeyOptionalParams): Promise<SimplePollerLike<OperationState<SignalRRegenerateKeyResponse>, SignalRRegenerateKeyResponse>>;
|
|
471
|
+
beginRegenerateKeyAndWait(resourceGroupName: string, resourceName: string, parameters: RegenerateKeyParameters, options?: SignalRRegenerateKeyOptionalParams): Promise<SignalRRegenerateKeyResponse>;
|
|
472
|
+
beginRestart(resourceGroupName: string, resourceName: string, options?: SignalRRestartOptionalParams): Promise<SimplePollerLike<OperationState<SignalRRestartResponse>, SignalRRestartResponse>>;
|
|
473
|
+
beginRestartAndWait(resourceGroupName: string, resourceName: string, options?: SignalRRestartOptionalParams): Promise<SignalRRestartResponse>;
|
|
474
|
+
beginUpdate(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRUpdateResponse>, SignalRUpdateResponse>>;
|
|
475
|
+
beginUpdateAndWait(resourceGroupName: string, resourceName: string, parameters: SignalRResource, options?: SignalRUpdateOptionalParams): Promise<SignalRUpdateResponse>;
|
|
476
|
+
checkNameAvailability(location: string, parameters: NameAvailabilityParameters, options?: SignalRCheckNameAvailabilityOptionalParams): Promise<SignalRCheckNameAvailabilityResponse>;
|
|
477
|
+
get(resourceGroupName: string, resourceName: string, options?: SignalRGetOptionalParams): Promise<SignalRGetResponse>;
|
|
478
|
+
listByResourceGroup(resourceGroupName: string, options?: SignalRListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SignalRResource>;
|
|
479
|
+
listBySubscription(options?: SignalRListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SignalRResource>;
|
|
480
|
+
listKeys(resourceGroupName: string, resourceName: string, options?: SignalRListKeysOptionalParams): Promise<SignalRListKeysResponse>;
|
|
481
|
+
listReplicaSkus(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRListReplicaSkusOptionalParams): Promise<SignalRListReplicaSkusResponse>;
|
|
482
|
+
listSkus(resourceGroupName: string, resourceName: string, options?: SignalRListSkusOptionalParams): Promise<SignalRListSkusResponse>;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
// @public
|
|
486
|
+
export interface SignalRCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
// @public
|
|
490
|
+
export type SignalRCheckNameAvailabilityResponse = NameAvailability;
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export interface SignalRCorsSettings {
|
|
494
|
+
allowedOrigins?: string[];
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
// @public
|
|
498
|
+
export interface SignalRCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
499
|
+
resumeFrom?: string;
|
|
500
|
+
updateIntervalInMs?: number;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
// @public
|
|
504
|
+
export type SignalRCreateOrUpdateResponse = SignalRResource;
|
|
505
|
+
|
|
506
|
+
// @public
|
|
507
|
+
export interface SignalRCustomCertificates {
|
|
508
|
+
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, certificateName: string, parameters: CustomCertificate, options?: SignalRCustomCertificatesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRCustomCertificatesCreateOrUpdateResponse>, SignalRCustomCertificatesCreateOrUpdateResponse>>;
|
|
509
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, certificateName: string, parameters: CustomCertificate, options?: SignalRCustomCertificatesCreateOrUpdateOptionalParams): Promise<SignalRCustomCertificatesCreateOrUpdateResponse>;
|
|
510
|
+
delete(resourceGroupName: string, resourceName: string, certificateName: string, options?: SignalRCustomCertificatesDeleteOptionalParams): Promise<void>;
|
|
511
|
+
get(resourceGroupName: string, resourceName: string, certificateName: string, options?: SignalRCustomCertificatesGetOptionalParams): Promise<SignalRCustomCertificatesGetResponse>;
|
|
512
|
+
list(resourceGroupName: string, resourceName: string, options?: SignalRCustomCertificatesListOptionalParams): PagedAsyncIterableIterator<CustomCertificate>;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
// @public
|
|
516
|
+
export interface SignalRCustomCertificatesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
517
|
+
resumeFrom?: string;
|
|
518
|
+
updateIntervalInMs?: number;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
// @public
|
|
522
|
+
export type SignalRCustomCertificatesCreateOrUpdateResponse = CustomCertificate;
|
|
523
|
+
|
|
524
|
+
// @public
|
|
525
|
+
export interface SignalRCustomCertificatesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
// @public
|
|
529
|
+
export interface SignalRCustomCertificatesGetOptionalParams extends coreClient.OperationOptions {
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
// @public
|
|
533
|
+
export type SignalRCustomCertificatesGetResponse = CustomCertificate;
|
|
534
|
+
|
|
535
|
+
// @public
|
|
536
|
+
export interface SignalRCustomCertificatesListNextOptionalParams extends coreClient.OperationOptions {
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
// @public
|
|
540
|
+
export type SignalRCustomCertificatesListNextResponse = CustomCertificateList;
|
|
541
|
+
|
|
542
|
+
// @public
|
|
543
|
+
export interface SignalRCustomCertificatesListOptionalParams extends coreClient.OperationOptions {
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
// @public
|
|
547
|
+
export type SignalRCustomCertificatesListResponse = CustomCertificateList;
|
|
548
|
+
|
|
549
|
+
// @public
|
|
550
|
+
export interface SignalRCustomDomains {
|
|
551
|
+
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, name: string, parameters: CustomDomain, options?: SignalRCustomDomainsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRCustomDomainsCreateOrUpdateResponse>, SignalRCustomDomainsCreateOrUpdateResponse>>;
|
|
552
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, name: string, parameters: CustomDomain, options?: SignalRCustomDomainsCreateOrUpdateOptionalParams): Promise<SignalRCustomDomainsCreateOrUpdateResponse>;
|
|
553
|
+
beginDelete(resourceGroupName: string, resourceName: string, name: string, options?: SignalRCustomDomainsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
554
|
+
beginDeleteAndWait(resourceGroupName: string, resourceName: string, name: string, options?: SignalRCustomDomainsDeleteOptionalParams): Promise<void>;
|
|
555
|
+
get(resourceGroupName: string, resourceName: string, name: string, options?: SignalRCustomDomainsGetOptionalParams): Promise<SignalRCustomDomainsGetResponse>;
|
|
556
|
+
list(resourceGroupName: string, resourceName: string, options?: SignalRCustomDomainsListOptionalParams): PagedAsyncIterableIterator<CustomDomain>;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
// @public
|
|
560
|
+
export interface SignalRCustomDomainsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
561
|
+
resumeFrom?: string;
|
|
562
|
+
updateIntervalInMs?: number;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
// @public
|
|
566
|
+
export type SignalRCustomDomainsCreateOrUpdateResponse = CustomDomain;
|
|
567
|
+
|
|
568
|
+
// @public
|
|
569
|
+
export interface SignalRCustomDomainsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
570
|
+
resumeFrom?: string;
|
|
571
|
+
updateIntervalInMs?: number;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
// @public
|
|
575
|
+
export interface SignalRCustomDomainsGetOptionalParams extends coreClient.OperationOptions {
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// @public
|
|
579
|
+
export type SignalRCustomDomainsGetResponse = CustomDomain;
|
|
580
|
+
|
|
581
|
+
// @public
|
|
582
|
+
export interface SignalRCustomDomainsListNextOptionalParams extends coreClient.OperationOptions {
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// @public
|
|
586
|
+
export type SignalRCustomDomainsListNextResponse = CustomDomainList;
|
|
587
|
+
|
|
588
|
+
// @public
|
|
589
|
+
export interface SignalRCustomDomainsListOptionalParams extends coreClient.OperationOptions {
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
// @public
|
|
593
|
+
export type SignalRCustomDomainsListResponse = CustomDomainList;
|
|
594
|
+
|
|
595
|
+
// @public
|
|
596
|
+
export interface SignalRDeleteOptionalParams extends coreClient.OperationOptions {
|
|
597
|
+
resumeFrom?: string;
|
|
598
|
+
updateIntervalInMs?: number;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
// @public
|
|
602
|
+
export interface SignalRFeature {
|
|
603
|
+
flag: FeatureFlags;
|
|
604
|
+
properties?: {
|
|
605
|
+
[propertyName: string]: string;
|
|
606
|
+
};
|
|
607
|
+
value: string;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
// @public
|
|
611
|
+
export interface SignalRGetOptionalParams extends coreClient.OperationOptions {
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
// @public
|
|
615
|
+
export type SignalRGetResponse = SignalRResource;
|
|
616
|
+
|
|
617
|
+
// @public
|
|
618
|
+
export interface SignalRKeys {
|
|
619
|
+
primaryConnectionString?: string;
|
|
620
|
+
primaryKey?: string;
|
|
621
|
+
secondaryConnectionString?: string;
|
|
622
|
+
secondaryKey?: string;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
// @public
|
|
626
|
+
export interface SignalRListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
// @public
|
|
630
|
+
export type SignalRListByResourceGroupNextResponse = SignalRResourceList;
|
|
631
|
+
|
|
632
|
+
// @public
|
|
633
|
+
export interface SignalRListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
// @public
|
|
637
|
+
export type SignalRListByResourceGroupResponse = SignalRResourceList;
|
|
638
|
+
|
|
639
|
+
// @public
|
|
640
|
+
export interface SignalRListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
// @public
|
|
644
|
+
export type SignalRListBySubscriptionNextResponse = SignalRResourceList;
|
|
645
|
+
|
|
646
|
+
// @public
|
|
647
|
+
export interface SignalRListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
// @public
|
|
651
|
+
export type SignalRListBySubscriptionResponse = SignalRResourceList;
|
|
652
|
+
|
|
653
|
+
// @public
|
|
654
|
+
export interface SignalRListKeysOptionalParams extends coreClient.OperationOptions {
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
// @public
|
|
658
|
+
export type SignalRListKeysResponse = SignalRKeys;
|
|
659
|
+
|
|
660
|
+
// @public
|
|
661
|
+
export interface SignalRListReplicaSkusOptionalParams extends coreClient.OperationOptions {
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
// @public
|
|
665
|
+
export type SignalRListReplicaSkusResponse = SkuList;
|
|
666
|
+
|
|
667
|
+
// @public
|
|
668
|
+
export interface SignalRListSkusOptionalParams extends coreClient.OperationOptions {
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
// @public
|
|
672
|
+
export type SignalRListSkusResponse = SkuList;
|
|
673
|
+
|
|
674
|
+
// @public (undocumented)
|
|
675
|
+
export class SignalRManagementClient extends coreClient.ServiceClient {
|
|
676
|
+
// (undocumented)
|
|
677
|
+
$host: string;
|
|
678
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: SignalRManagementClientOptionalParams);
|
|
679
|
+
// (undocumented)
|
|
680
|
+
apiVersion: string;
|
|
681
|
+
// (undocumented)
|
|
682
|
+
operations: Operations;
|
|
683
|
+
// (undocumented)
|
|
684
|
+
signalR: SignalR;
|
|
685
|
+
// (undocumented)
|
|
686
|
+
signalRCustomCertificates: SignalRCustomCertificates;
|
|
687
|
+
// (undocumented)
|
|
688
|
+
signalRCustomDomains: SignalRCustomDomains;
|
|
689
|
+
// (undocumented)
|
|
690
|
+
signalRPrivateEndpointConnections: SignalRPrivateEndpointConnections;
|
|
691
|
+
// (undocumented)
|
|
692
|
+
signalRPrivateLinkResources: SignalRPrivateLinkResources;
|
|
693
|
+
// (undocumented)
|
|
694
|
+
signalRReplicas: SignalRReplicas;
|
|
695
|
+
// (undocumented)
|
|
696
|
+
signalRSharedPrivateLinkResources: SignalRSharedPrivateLinkResources;
|
|
697
|
+
// (undocumented)
|
|
698
|
+
subscriptionId: string;
|
|
699
|
+
// (undocumented)
|
|
700
|
+
usages: Usages;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
// @public
|
|
704
|
+
export interface SignalRManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
705
|
+
$host?: string;
|
|
706
|
+
apiVersion?: string;
|
|
707
|
+
endpoint?: string;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
// @public
|
|
711
|
+
export interface SignalRNetworkACLs {
|
|
712
|
+
defaultAction?: ACLAction;
|
|
713
|
+
ipRules?: IPRule[];
|
|
714
|
+
privateEndpoints?: PrivateEndpointACL[];
|
|
715
|
+
publicNetwork?: NetworkACL;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
// @public
|
|
719
|
+
export interface SignalRPrivateEndpointConnections {
|
|
720
|
+
beginDelete(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
721
|
+
beginDeleteAndWait(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
722
|
+
get(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsGetOptionalParams): Promise<SignalRPrivateEndpointConnectionsGetResponse>;
|
|
723
|
+
list(resourceGroupName: string, resourceName: string, options?: SignalRPrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
724
|
+
update(privateEndpointConnectionName: string, resourceGroupName: string, resourceName: string, parameters: PrivateEndpointConnection, options?: SignalRPrivateEndpointConnectionsUpdateOptionalParams): Promise<SignalRPrivateEndpointConnectionsUpdateResponse>;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
// @public
|
|
728
|
+
export interface SignalRPrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
729
|
+
resumeFrom?: string;
|
|
730
|
+
updateIntervalInMs?: number;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
// @public
|
|
734
|
+
export interface SignalRPrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
// @public
|
|
738
|
+
export type SignalRPrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
739
|
+
|
|
740
|
+
// @public
|
|
741
|
+
export interface SignalRPrivateEndpointConnectionsListNextOptionalParams extends coreClient.OperationOptions {
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
// @public
|
|
745
|
+
export type SignalRPrivateEndpointConnectionsListNextResponse = PrivateEndpointConnectionList;
|
|
746
|
+
|
|
747
|
+
// @public
|
|
748
|
+
export interface SignalRPrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
// @public
|
|
752
|
+
export type SignalRPrivateEndpointConnectionsListResponse = PrivateEndpointConnectionList;
|
|
753
|
+
|
|
754
|
+
// @public
|
|
755
|
+
export interface SignalRPrivateEndpointConnectionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
// @public
|
|
759
|
+
export type SignalRPrivateEndpointConnectionsUpdateResponse = PrivateEndpointConnection;
|
|
760
|
+
|
|
761
|
+
// @public
|
|
762
|
+
export interface SignalRPrivateLinkResources {
|
|
763
|
+
list(resourceGroupName: string, resourceName: string, options?: SignalRPrivateLinkResourcesListOptionalParams): PagedAsyncIterableIterator<PrivateLinkResource>;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
// @public
|
|
767
|
+
export interface SignalRPrivateLinkResourcesListNextOptionalParams extends coreClient.OperationOptions {
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
// @public
|
|
771
|
+
export type SignalRPrivateLinkResourcesListNextResponse = PrivateLinkResourceList;
|
|
772
|
+
|
|
773
|
+
// @public
|
|
774
|
+
export interface SignalRPrivateLinkResourcesListOptionalParams extends coreClient.OperationOptions {
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
// @public
|
|
778
|
+
export type SignalRPrivateLinkResourcesListResponse = PrivateLinkResourceList;
|
|
779
|
+
|
|
780
|
+
// @public
|
|
781
|
+
export interface SignalRRegenerateKeyHeaders {
|
|
782
|
+
// (undocumented)
|
|
783
|
+
location?: string;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
// @public
|
|
787
|
+
export interface SignalRRegenerateKeyOptionalParams extends coreClient.OperationOptions {
|
|
788
|
+
resumeFrom?: string;
|
|
789
|
+
updateIntervalInMs?: number;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
// @public
|
|
793
|
+
export type SignalRRegenerateKeyResponse = SignalRKeys;
|
|
794
|
+
|
|
795
|
+
// @public
|
|
796
|
+
export interface SignalRReplicas {
|
|
797
|
+
beginCreateOrUpdate(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRReplicasCreateOrUpdateResponse>, SignalRReplicasCreateOrUpdateResponse>>;
|
|
798
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasCreateOrUpdateOptionalParams): Promise<SignalRReplicasCreateOrUpdateResponse>;
|
|
799
|
+
beginRestart(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasRestartOptionalParams): Promise<SimplePollerLike<OperationState<SignalRReplicasRestartResponse>, SignalRReplicasRestartResponse>>;
|
|
800
|
+
beginRestartAndWait(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasRestartOptionalParams): Promise<SignalRReplicasRestartResponse>;
|
|
801
|
+
beginUpdate(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRReplicasUpdateResponse>, SignalRReplicasUpdateResponse>>;
|
|
802
|
+
beginUpdateAndWait(resourceGroupName: string, resourceName: string, replicaName: string, parameters: Replica, options?: SignalRReplicasUpdateOptionalParams): Promise<SignalRReplicasUpdateResponse>;
|
|
803
|
+
delete(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasDeleteOptionalParams): Promise<void>;
|
|
804
|
+
get(resourceGroupName: string, resourceName: string, replicaName: string, options?: SignalRReplicasGetOptionalParams): Promise<SignalRReplicasGetResponse>;
|
|
805
|
+
list(resourceGroupName: string, resourceName: string, options?: SignalRReplicasListOptionalParams): PagedAsyncIterableIterator<Replica>;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
// @public
|
|
809
|
+
export interface SignalRReplicasCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
810
|
+
resumeFrom?: string;
|
|
811
|
+
updateIntervalInMs?: number;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
// @public
|
|
815
|
+
export type SignalRReplicasCreateOrUpdateResponse = Replica;
|
|
816
|
+
|
|
817
|
+
// @public
|
|
818
|
+
export interface SignalRReplicasDeleteOptionalParams extends coreClient.OperationOptions {
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
// @public
|
|
822
|
+
export interface SignalRReplicasGetOptionalParams extends coreClient.OperationOptions {
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
// @public
|
|
826
|
+
export type SignalRReplicasGetResponse = Replica;
|
|
827
|
+
|
|
828
|
+
// @public
|
|
829
|
+
export interface SignalRReplicasListNextOptionalParams extends coreClient.OperationOptions {
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
// @public
|
|
833
|
+
export type SignalRReplicasListNextResponse = ReplicaList;
|
|
834
|
+
|
|
835
|
+
// @public
|
|
836
|
+
export interface SignalRReplicasListOptionalParams extends coreClient.OperationOptions {
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
// @public
|
|
840
|
+
export type SignalRReplicasListResponse = ReplicaList;
|
|
841
|
+
|
|
842
|
+
// @public
|
|
843
|
+
export interface SignalRReplicasRestartHeaders {
|
|
844
|
+
// (undocumented)
|
|
845
|
+
location?: string;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
// @public
|
|
849
|
+
export interface SignalRReplicasRestartOptionalParams extends coreClient.OperationOptions {
|
|
850
|
+
resumeFrom?: string;
|
|
851
|
+
updateIntervalInMs?: number;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
// @public
|
|
855
|
+
export type SignalRReplicasRestartResponse = SignalRReplicasRestartHeaders;
|
|
856
|
+
|
|
857
|
+
// @public
|
|
858
|
+
export interface SignalRReplicasUpdateHeaders {
|
|
859
|
+
// (undocumented)
|
|
860
|
+
location?: string;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
// @public
|
|
864
|
+
export interface SignalRReplicasUpdateOptionalParams extends coreClient.OperationOptions {
|
|
865
|
+
resumeFrom?: string;
|
|
866
|
+
updateIntervalInMs?: number;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
// @public
|
|
870
|
+
export type SignalRReplicasUpdateResponse = Replica;
|
|
871
|
+
|
|
872
|
+
// @public
|
|
873
|
+
export type SignalRRequestType = string;
|
|
874
|
+
|
|
875
|
+
// @public
|
|
876
|
+
export interface SignalRResource extends TrackedResource {
|
|
877
|
+
cors?: SignalRCorsSettings;
|
|
878
|
+
disableAadAuth?: boolean;
|
|
879
|
+
disableLocalAuth?: boolean;
|
|
880
|
+
readonly externalIP?: string;
|
|
881
|
+
features?: SignalRFeature[];
|
|
882
|
+
readonly hostName?: string;
|
|
883
|
+
readonly hostNamePrefix?: string;
|
|
884
|
+
identity?: ManagedIdentity;
|
|
885
|
+
kind?: ServiceKind;
|
|
886
|
+
liveTraceConfiguration?: LiveTraceConfiguration;
|
|
887
|
+
networkACLs?: SignalRNetworkACLs;
|
|
888
|
+
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
889
|
+
readonly provisioningState?: ProvisioningState;
|
|
890
|
+
publicNetworkAccess?: string;
|
|
891
|
+
readonly publicPort?: number;
|
|
892
|
+
regionEndpointEnabled?: string;
|
|
893
|
+
resourceLogConfiguration?: ResourceLogConfiguration;
|
|
894
|
+
resourceStopped?: string;
|
|
895
|
+
serverless?: ServerlessSettings;
|
|
896
|
+
readonly serverPort?: number;
|
|
897
|
+
readonly sharedPrivateLinkResources?: SharedPrivateLinkResource[];
|
|
898
|
+
sku?: ResourceSku;
|
|
899
|
+
tls?: SignalRTlsSettings;
|
|
900
|
+
upstream?: ServerlessUpstreamSettings;
|
|
901
|
+
readonly version?: string;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
// @public
|
|
905
|
+
export interface SignalRResourceList {
|
|
906
|
+
nextLink?: string;
|
|
907
|
+
value?: SignalRResource[];
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
// @public
|
|
911
|
+
export interface SignalRRestartHeaders {
|
|
912
|
+
// (undocumented)
|
|
913
|
+
location?: string;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
// @public
|
|
917
|
+
export interface SignalRRestartOptionalParams extends coreClient.OperationOptions {
|
|
918
|
+
resumeFrom?: string;
|
|
919
|
+
updateIntervalInMs?: number;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
// @public
|
|
923
|
+
export type SignalRRestartResponse = SignalRRestartHeaders;
|
|
924
|
+
|
|
925
|
+
// @public
|
|
926
|
+
export interface SignalRSharedPrivateLinkResources {
|
|
927
|
+
beginCreateOrUpdate(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, parameters: SharedPrivateLinkResource, options?: SignalRSharedPrivateLinkResourcesCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse>, SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse>>;
|
|
928
|
+
beginCreateOrUpdateAndWait(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, parameters: SharedPrivateLinkResource, options?: SignalRSharedPrivateLinkResourcesCreateOrUpdateOptionalParams): Promise<SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse>;
|
|
929
|
+
beginDelete(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
930
|
+
beginDeleteAndWait(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesDeleteOptionalParams): Promise<void>;
|
|
931
|
+
get(sharedPrivateLinkResourceName: string, resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesGetOptionalParams): Promise<SignalRSharedPrivateLinkResourcesGetResponse>;
|
|
932
|
+
list(resourceGroupName: string, resourceName: string, options?: SignalRSharedPrivateLinkResourcesListOptionalParams): PagedAsyncIterableIterator<SharedPrivateLinkResource>;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
// @public
|
|
936
|
+
export interface SignalRSharedPrivateLinkResourcesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
937
|
+
resumeFrom?: string;
|
|
938
|
+
updateIntervalInMs?: number;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
// @public
|
|
942
|
+
export type SignalRSharedPrivateLinkResourcesCreateOrUpdateResponse = SharedPrivateLinkResource;
|
|
943
|
+
|
|
944
|
+
// @public
|
|
945
|
+
export interface SignalRSharedPrivateLinkResourcesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
946
|
+
resumeFrom?: string;
|
|
947
|
+
updateIntervalInMs?: number;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
// @public
|
|
951
|
+
export interface SignalRSharedPrivateLinkResourcesGetOptionalParams extends coreClient.OperationOptions {
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
// @public
|
|
955
|
+
export type SignalRSharedPrivateLinkResourcesGetResponse = SharedPrivateLinkResource;
|
|
956
|
+
|
|
957
|
+
// @public
|
|
958
|
+
export interface SignalRSharedPrivateLinkResourcesListNextOptionalParams extends coreClient.OperationOptions {
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
// @public
|
|
962
|
+
export type SignalRSharedPrivateLinkResourcesListNextResponse = SharedPrivateLinkResourceList;
|
|
963
|
+
|
|
964
|
+
// @public
|
|
965
|
+
export interface SignalRSharedPrivateLinkResourcesListOptionalParams extends coreClient.OperationOptions {
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
// @public
|
|
969
|
+
export type SignalRSharedPrivateLinkResourcesListResponse = SharedPrivateLinkResourceList;
|
|
970
|
+
|
|
971
|
+
// @public
|
|
972
|
+
export type SignalRSkuTier = string;
|
|
973
|
+
|
|
974
|
+
// @public
|
|
975
|
+
export interface SignalRTlsSettings {
|
|
976
|
+
clientCertEnabled?: boolean;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
// @public
|
|
980
|
+
export interface SignalRUpdateHeaders {
|
|
981
|
+
// (undocumented)
|
|
982
|
+
location?: string;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
// @public
|
|
986
|
+
export interface SignalRUpdateOptionalParams extends coreClient.OperationOptions {
|
|
987
|
+
resumeFrom?: string;
|
|
988
|
+
updateIntervalInMs?: number;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
// @public
|
|
992
|
+
export type SignalRUpdateResponse = SignalRResource;
|
|
993
|
+
|
|
994
|
+
// @public
|
|
995
|
+
export interface SignalRUsage {
|
|
996
|
+
currentValue?: number;
|
|
997
|
+
id?: string;
|
|
998
|
+
limit?: number;
|
|
999
|
+
name?: SignalRUsageName;
|
|
1000
|
+
unit?: string;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
// @public
|
|
1004
|
+
export interface SignalRUsageList {
|
|
1005
|
+
nextLink?: string;
|
|
1006
|
+
value?: SignalRUsage[];
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
// @public
|
|
1010
|
+
export interface SignalRUsageName {
|
|
1011
|
+
localizedValue?: string;
|
|
1012
|
+
value?: string;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
// @public
|
|
1016
|
+
export interface Sku {
|
|
1017
|
+
readonly capacity?: SkuCapacity;
|
|
1018
|
+
readonly resourceType?: string;
|
|
1019
|
+
readonly sku?: ResourceSku;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
// @public
|
|
1023
|
+
export interface SkuCapacity {
|
|
1024
|
+
readonly allowedValues?: number[];
|
|
1025
|
+
readonly default?: number;
|
|
1026
|
+
readonly maximum?: number;
|
|
1027
|
+
readonly minimum?: number;
|
|
1028
|
+
readonly scaleType?: ScaleType;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
// @public
|
|
1032
|
+
export interface SkuList {
|
|
1033
|
+
readonly nextLink?: string;
|
|
1034
|
+
readonly value?: Sku[];
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
// @public
|
|
1038
|
+
export interface SystemData {
|
|
1039
|
+
createdAt?: Date;
|
|
1040
|
+
createdBy?: string;
|
|
1041
|
+
createdByType?: CreatedByType;
|
|
1042
|
+
lastModifiedAt?: Date;
|
|
1043
|
+
lastModifiedBy?: string;
|
|
1044
|
+
lastModifiedByType?: CreatedByType;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// @public
|
|
1048
|
+
export interface TrackedResource extends Resource {
|
|
1049
|
+
location: string;
|
|
1050
|
+
tags?: {
|
|
1051
|
+
[propertyName: string]: string;
|
|
1052
|
+
};
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
// @public
|
|
1056
|
+
export interface UpstreamAuthSettings {
|
|
1057
|
+
managedIdentity?: ManagedIdentitySettings;
|
|
1058
|
+
type?: UpstreamAuthType;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
// @public
|
|
1062
|
+
export type UpstreamAuthType = string;
|
|
1063
|
+
|
|
1064
|
+
// @public
|
|
1065
|
+
export interface UpstreamTemplate {
|
|
1066
|
+
auth?: UpstreamAuthSettings;
|
|
1067
|
+
categoryPattern?: string;
|
|
1068
|
+
eventPattern?: string;
|
|
1069
|
+
hubPattern?: string;
|
|
1070
|
+
urlTemplate: string;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
// @public
|
|
1074
|
+
export interface Usages {
|
|
1075
|
+
list(location: string, options?: UsagesListOptionalParams): PagedAsyncIterableIterator<SignalRUsage>;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
// @public
|
|
1079
|
+
export interface UsagesListNextOptionalParams extends coreClient.OperationOptions {
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
// @public
|
|
1083
|
+
export type UsagesListNextResponse = SignalRUsageList;
|
|
1084
|
+
|
|
1085
|
+
// @public
|
|
1086
|
+
export interface UsagesListOptionalParams extends coreClient.OperationOptions {
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
// @public
|
|
1090
|
+
export type UsagesListResponse = SignalRUsageList;
|
|
1091
|
+
|
|
1092
|
+
// @public
|
|
1093
|
+
export interface UserAssignedIdentityProperty {
|
|
1094
|
+
readonly clientId?: string;
|
|
1095
|
+
readonly principalId?: string;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
// (No @packageDocumentation comment for this package)
|
|
1099
|
+
|
|
1100
|
+
```
|