@azure/eventgrid 5.1.1 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +300 -2
- package/dist/index.js.map +1 -1
- package/dist-esm/src/cloudEventDistrubtedTracingEnricherPolicy.js.map +1 -1
- package/dist-esm/src/consumer.js.map +1 -1
- package/dist-esm/src/eventGridAuthenticationPolicy.js.map +1 -1
- package/dist-esm/src/eventGridClient.js.map +1 -1
- package/dist-esm/src/generated/generatedClientContext.js +1 -1
- package/dist-esm/src/generated/generatedClientContext.js.map +1 -1
- package/dist-esm/src/generated/models/index.js.map +1 -1
- package/dist-esm/src/generated/models/mappers.js +281 -0
- package/dist-esm/src/generated/models/mappers.js.map +1 -1
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/predicates.js.map +1 -1
- package/dist-esm/src/tracing.js +1 -1
- package/dist-esm/src/tracing.js.map +1 -1
- package/dist-esm/src/util.js.map +1 -1
- package/package.json +2 -2
- package/types/eventgrid.d.ts +534 -0
package/types/eventgrid.d.ts
CHANGED
@@ -1008,6 +1008,84 @@ export declare interface AppServicePlanEventTypeDetail {
|
|
1008
1008
|
*/
|
1009
1009
|
export declare type AsyncStatus = string;
|
1010
1010
|
|
1011
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterCreated event. */
|
1012
|
+
export declare type AvsClusterCreatedEventData = AvsClusterEventData & {};
|
1013
|
+
|
1014
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterDeleted event. */
|
1015
|
+
export declare type AvsClusterDeletedEventData = AvsClusterEventData & {};
|
1016
|
+
|
1017
|
+
/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/clusters events. */
|
1018
|
+
export declare interface AvsClusterEventData {
|
1019
|
+
/** Id of the operation that caused this event. */
|
1020
|
+
operationId: string;
|
1021
|
+
/** Hosts added to the cluster in this event, if any. */
|
1022
|
+
addedHostNames: string[];
|
1023
|
+
/** Hosts removed to the cluster in this event, if any. */
|
1024
|
+
removedHostNames: string[];
|
1025
|
+
/** Hosts in Maintenance mode in the cluster, if any. */
|
1026
|
+
inMaintenanceHostNames: string[];
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterFailed event. */
|
1030
|
+
export declare type AvsClusterFailedEventData = AvsClusterEventData & {
|
1031
|
+
/** Failure reason of an event. */
|
1032
|
+
failureMessage: string;
|
1033
|
+
};
|
1034
|
+
|
1035
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterUpdated event. */
|
1036
|
+
export declare type AvsClusterUpdatedEventData = AvsClusterEventData & {};
|
1037
|
+
|
1038
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterUpdating event. */
|
1039
|
+
export declare type AvsClusterUpdatingEventData = AvsClusterEventData & {};
|
1040
|
+
|
1041
|
+
/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/privateClouds events. */
|
1042
|
+
export declare interface AvsPrivateCloudEventData {
|
1043
|
+
/** Id of the operation that caused this event. */
|
1044
|
+
operationId: string;
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudFailed event. */
|
1048
|
+
export declare type AvsPrivateCloudFailedEventData = AvsPrivateCloudEventData & {
|
1049
|
+
/** Failure reason of an event. */
|
1050
|
+
failureMessage: string;
|
1051
|
+
};
|
1052
|
+
|
1053
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudUpdated event. */
|
1054
|
+
export declare type AvsPrivateCloudUpdatedEventData = AvsPrivateCloudEventData & {};
|
1055
|
+
|
1056
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudUpdating event. */
|
1057
|
+
export declare type AvsPrivateCloudUpdatingEventData = AvsPrivateCloudEventData & {};
|
1058
|
+
|
1059
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionCancelled event. */
|
1060
|
+
export declare type AvsScriptExecutionCancelledEventData = AvsScriptExecutionEventData & {};
|
1061
|
+
|
1062
|
+
/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/scriptExecutions events. */
|
1063
|
+
export declare interface AvsScriptExecutionEventData {
|
1064
|
+
/** Id of the operation that caused this event. */
|
1065
|
+
operationId: string;
|
1066
|
+
/** Cmdlet referenced in the execution that caused this event. */
|
1067
|
+
cmdletId: string;
|
1068
|
+
/** Stdout outputs from the execution, if any. */
|
1069
|
+
output: string[];
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionFailed event. */
|
1073
|
+
export declare type AvsScriptExecutionFailedEventData = AvsScriptExecutionEventData & {
|
1074
|
+
/** Failure reason of an event. */
|
1075
|
+
failureMessage: string;
|
1076
|
+
};
|
1077
|
+
|
1078
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionFinished event. */
|
1079
|
+
export declare type AvsScriptExecutionFinishedEventData = AvsScriptExecutionEventData & {
|
1080
|
+
/** Named outputs of completed execution, if any. */
|
1081
|
+
namedOutputs: {
|
1082
|
+
[propertyName: string]: string;
|
1083
|
+
};
|
1084
|
+
};
|
1085
|
+
|
1086
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionStarted event. */
|
1087
|
+
export declare type AvsScriptExecutionStartedEventData = AvsScriptExecutionEventData & {};
|
1088
|
+
|
1011
1089
|
export { AzureKeyCredential }
|
1012
1090
|
|
1013
1091
|
export { AzureSASCredential }
|
@@ -2143,6 +2221,22 @@ export declare interface KeyVaultSecretNewVersionCreatedEventData {
|
|
2143
2221
|
exp: number;
|
2144
2222
|
}
|
2145
2223
|
|
2224
|
+
/** Known values of {@link AcsEmailDeliveryReportStatus} that the service accepts. */
|
2225
|
+
export declare const enum KnownAcsEmailDeliveryReportStatus {
|
2226
|
+
/** Hard bounce detected while sending the email */
|
2227
|
+
Bounced = "Bounced",
|
2228
|
+
/** The email was delivered */
|
2229
|
+
Delivered = "Delivered",
|
2230
|
+
/** The email failed to be delivered */
|
2231
|
+
Failed = "Failed",
|
2232
|
+
/** The message was identified spam and was rejected or blocked (not quarantined). */
|
2233
|
+
FilteredSpam = "FilteredSpam",
|
2234
|
+
/** The message was quarantined (as spam, bulk mail, or phishing). For more information, see Quarantined email messages in EOP (EXCHANGE ONLINE PROTECTION). */
|
2235
|
+
Quarantined = "Quarantined",
|
2236
|
+
/** The email was suppressed */
|
2237
|
+
Suppressed = "Suppressed"
|
2238
|
+
}
|
2239
|
+
|
2146
2240
|
/** Known values of {@link AcsRouterJobStatus} that the service accepts. */
|
2147
2241
|
export declare const enum KnownAcsRouterJobStatus {
|
2148
2242
|
PendingClassification = "PendingClassification",
|
@@ -2183,6 +2277,12 @@ export declare const enum KnownAcsRouterWorkerSelectorState {
|
|
2183
2277
|
Expired = "expired"
|
2184
2278
|
}
|
2185
2279
|
|
2280
|
+
/** Known values of {@link AcsUserEngagement} that the service accepts. */
|
2281
|
+
export declare const enum KnownAcsUserEngagement {
|
2282
|
+
View = "view",
|
2283
|
+
Click = "click"
|
2284
|
+
}
|
2285
|
+
|
2186
2286
|
/** Known values of {@link AppAction} that the service accepts. */
|
2187
2287
|
export declare const enum KnownAppAction {
|
2188
2288
|
/** Web app was restarted. */
|
@@ -2215,6 +2315,23 @@ export declare const enum KnownAsyncStatus {
|
|
2215
2315
|
Failed = "Failed"
|
2216
2316
|
}
|
2217
2317
|
|
2318
|
+
/** Known values of {@link CommunicationCloudEnvironmentModel} that the service accepts. */
|
2319
|
+
export declare const enum KnownCommunicationCloudEnvironmentModel {
|
2320
|
+
Public = "public",
|
2321
|
+
Dod = "dod",
|
2322
|
+
Gcch = "gcch"
|
2323
|
+
}
|
2324
|
+
|
2325
|
+
/** Known values of {@link DataBoxStageName} that the service accepts. */
|
2326
|
+
export declare const enum KnownDataBoxStageName {
|
2327
|
+
/** Copy has started */
|
2328
|
+
CopyStarted = "CopyStarted",
|
2329
|
+
/** Copy has completed */
|
2330
|
+
CopyCompleted = "CopyCompleted",
|
2331
|
+
/** Order has been completed */
|
2332
|
+
OrderCompleted = "OrderCompleted"
|
2333
|
+
}
|
2334
|
+
|
2218
2335
|
/** Known values of {@link EventGridMqttClientDisconnectionReason} that the service accepts. */
|
2219
2336
|
export declare const enum KnownEventGridMqttClientDisconnectionReason {
|
2220
2337
|
/** The client got disconnected for any authentication reasons (for example, certificate expired, client got disabled, or client configuration changed). */
|
@@ -2247,6 +2364,351 @@ export declare const enum KnownEventGridMqttClientState {
|
|
2247
2364
|
Disabled = "Disabled"
|
2248
2365
|
}
|
2249
2366
|
|
2367
|
+
/** Known values of {@link HealthcareFhirResourceType} that the service accepts. */
|
2368
|
+
export declare const enum KnownHealthcareFhirResourceType {
|
2369
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2370
|
+
Account = "Account",
|
2371
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2372
|
+
ActivityDefinition = "ActivityDefinition",
|
2373
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2374
|
+
AdverseEvent = "AdverseEvent",
|
2375
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2376
|
+
AllergyIntolerance = "AllergyIntolerance",
|
2377
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2378
|
+
Appointment = "Appointment",
|
2379
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2380
|
+
AppointmentResponse = "AppointmentResponse",
|
2381
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2382
|
+
AuditEvent = "AuditEvent",
|
2383
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2384
|
+
Basic = "Basic",
|
2385
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2386
|
+
Binary = "Binary",
|
2387
|
+
/** The FHIR resource type defined in R4. */
|
2388
|
+
BiologicallyDerivedProduct = "BiologicallyDerivedProduct",
|
2389
|
+
/** The FHIR resource type defined in STU3. */
|
2390
|
+
BodySite = "BodySite",
|
2391
|
+
/** The FHIR resource type defined in R4. */
|
2392
|
+
BodyStructure = "BodyStructure",
|
2393
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2394
|
+
Bundle = "Bundle",
|
2395
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2396
|
+
CapabilityStatement = "CapabilityStatement",
|
2397
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2398
|
+
CarePlan = "CarePlan",
|
2399
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2400
|
+
CareTeam = "CareTeam",
|
2401
|
+
/** The FHIR resource type defined in R4. */
|
2402
|
+
CatalogEntry = "CatalogEntry",
|
2403
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2404
|
+
ChargeItem = "ChargeItem",
|
2405
|
+
/** The FHIR resource type defined in R4. */
|
2406
|
+
ChargeItemDefinition = "ChargeItemDefinition",
|
2407
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2408
|
+
Claim = "Claim",
|
2409
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2410
|
+
ClaimResponse = "ClaimResponse",
|
2411
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2412
|
+
ClinicalImpression = "ClinicalImpression",
|
2413
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2414
|
+
CodeSystem = "CodeSystem",
|
2415
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2416
|
+
Communication = "Communication",
|
2417
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2418
|
+
CommunicationRequest = "CommunicationRequest",
|
2419
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2420
|
+
CompartmentDefinition = "CompartmentDefinition",
|
2421
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2422
|
+
Composition = "Composition",
|
2423
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2424
|
+
ConceptMap = "ConceptMap",
|
2425
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2426
|
+
Condition = "Condition",
|
2427
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2428
|
+
Consent = "Consent",
|
2429
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2430
|
+
Contract = "Contract",
|
2431
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2432
|
+
Coverage = "Coverage",
|
2433
|
+
/** The FHIR resource type defined in R4. */
|
2434
|
+
CoverageEligibilityRequest = "CoverageEligibilityRequest",
|
2435
|
+
/** The FHIR resource type defined in R4. */
|
2436
|
+
CoverageEligibilityResponse = "CoverageEligibilityResponse",
|
2437
|
+
/** The FHIR resource type defined in STU3. */
|
2438
|
+
DataElement = "DataElement",
|
2439
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2440
|
+
DetectedIssue = "DetectedIssue",
|
2441
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2442
|
+
Device = "Device",
|
2443
|
+
/** The FHIR resource type defined in STU3. */
|
2444
|
+
DeviceComponent = "DeviceComponent",
|
2445
|
+
/** The FHIR resource type defined in R4. */
|
2446
|
+
DeviceDefinition = "DeviceDefinition",
|
2447
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2448
|
+
DeviceMetric = "DeviceMetric",
|
2449
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2450
|
+
DeviceRequest = "DeviceRequest",
|
2451
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2452
|
+
DeviceUseStatement = "DeviceUseStatement",
|
2453
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2454
|
+
DiagnosticReport = "DiagnosticReport",
|
2455
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2456
|
+
DocumentManifest = "DocumentManifest",
|
2457
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2458
|
+
DocumentReference = "DocumentReference",
|
2459
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2460
|
+
DomainResource = "DomainResource",
|
2461
|
+
/** The FHIR resource type defined in R4. */
|
2462
|
+
EffectEvidenceSynthesis = "EffectEvidenceSynthesis",
|
2463
|
+
/** The FHIR resource type defined in STU3. */
|
2464
|
+
EligibilityRequest = "EligibilityRequest",
|
2465
|
+
/** The FHIR resource type defined in STU3. */
|
2466
|
+
EligibilityResponse = "EligibilityResponse",
|
2467
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2468
|
+
Encounter = "Encounter",
|
2469
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2470
|
+
Endpoint = "Endpoint",
|
2471
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2472
|
+
EnrollmentRequest = "EnrollmentRequest",
|
2473
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2474
|
+
EnrollmentResponse = "EnrollmentResponse",
|
2475
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2476
|
+
EpisodeOfCare = "EpisodeOfCare",
|
2477
|
+
/** The FHIR resource type defined in R4. */
|
2478
|
+
EventDefinition = "EventDefinition",
|
2479
|
+
/** The FHIR resource type defined in R4. */
|
2480
|
+
Evidence = "Evidence",
|
2481
|
+
/** The FHIR resource type defined in R4. */
|
2482
|
+
EvidenceVariable = "EvidenceVariable",
|
2483
|
+
/** The FHIR resource type defined in R4. */
|
2484
|
+
ExampleScenario = "ExampleScenario",
|
2485
|
+
/** The FHIR resource type defined in STU3. */
|
2486
|
+
ExpansionProfile = "ExpansionProfile",
|
2487
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2488
|
+
ExplanationOfBenefit = "ExplanationOfBenefit",
|
2489
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2490
|
+
FamilyMemberHistory = "FamilyMemberHistory",
|
2491
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2492
|
+
Flag = "Flag",
|
2493
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2494
|
+
Goal = "Goal",
|
2495
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2496
|
+
GraphDefinition = "GraphDefinition",
|
2497
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2498
|
+
Group = "Group",
|
2499
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2500
|
+
GuidanceResponse = "GuidanceResponse",
|
2501
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2502
|
+
HealthcareService = "HealthcareService",
|
2503
|
+
/** The FHIR resource type defined in STU3. */
|
2504
|
+
ImagingManifest = "ImagingManifest",
|
2505
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2506
|
+
ImagingStudy = "ImagingStudy",
|
2507
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2508
|
+
Immunization = "Immunization",
|
2509
|
+
/** The FHIR resource type defined in R4. */
|
2510
|
+
ImmunizationEvaluation = "ImmunizationEvaluation",
|
2511
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2512
|
+
ImmunizationRecommendation = "ImmunizationRecommendation",
|
2513
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2514
|
+
ImplementationGuide = "ImplementationGuide",
|
2515
|
+
/** The FHIR resource type defined in R4. */
|
2516
|
+
InsurancePlan = "InsurancePlan",
|
2517
|
+
/** The FHIR resource type defined in R4. */
|
2518
|
+
Invoice = "Invoice",
|
2519
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2520
|
+
Library = "Library",
|
2521
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2522
|
+
Linkage = "Linkage",
|
2523
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2524
|
+
List = "List",
|
2525
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2526
|
+
Location = "Location",
|
2527
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2528
|
+
Measure = "Measure",
|
2529
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2530
|
+
MeasureReport = "MeasureReport",
|
2531
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2532
|
+
Media = "Media",
|
2533
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2534
|
+
Medication = "Medication",
|
2535
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2536
|
+
MedicationAdministration = "MedicationAdministration",
|
2537
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2538
|
+
MedicationDispense = "MedicationDispense",
|
2539
|
+
/** The FHIR resource type defined in R4. */
|
2540
|
+
MedicationKnowledge = "MedicationKnowledge",
|
2541
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2542
|
+
MedicationRequest = "MedicationRequest",
|
2543
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2544
|
+
MedicationStatement = "MedicationStatement",
|
2545
|
+
/** The FHIR resource type defined in R4. */
|
2546
|
+
MedicinalProduct = "MedicinalProduct",
|
2547
|
+
/** The FHIR resource type defined in R4. */
|
2548
|
+
MedicinalProductAuthorization = "MedicinalProductAuthorization",
|
2549
|
+
/** The FHIR resource type defined in R4. */
|
2550
|
+
MedicinalProductContraindication = "MedicinalProductContraindication",
|
2551
|
+
/** The FHIR resource type defined in R4. */
|
2552
|
+
MedicinalProductIndication = "MedicinalProductIndication",
|
2553
|
+
/** The FHIR resource type defined in R4. */
|
2554
|
+
MedicinalProductIngredient = "MedicinalProductIngredient",
|
2555
|
+
/** The FHIR resource type defined in R4. */
|
2556
|
+
MedicinalProductInteraction = "MedicinalProductInteraction",
|
2557
|
+
/** The FHIR resource type defined in R4. */
|
2558
|
+
MedicinalProductManufactured = "MedicinalProductManufactured",
|
2559
|
+
/** The FHIR resource type defined in R4. */
|
2560
|
+
MedicinalProductPackaged = "MedicinalProductPackaged",
|
2561
|
+
/** The FHIR resource type defined in R4. */
|
2562
|
+
MedicinalProductPharmaceutical = "MedicinalProductPharmaceutical",
|
2563
|
+
/** The FHIR resource type defined in R4. */
|
2564
|
+
MedicinalProductUndesirableEffect = "MedicinalProductUndesirableEffect",
|
2565
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2566
|
+
MessageDefinition = "MessageDefinition",
|
2567
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2568
|
+
MessageHeader = "MessageHeader",
|
2569
|
+
/** The FHIR resource type defined in R4. */
|
2570
|
+
MolecularSequence = "MolecularSequence",
|
2571
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2572
|
+
NamingSystem = "NamingSystem",
|
2573
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2574
|
+
NutritionOrder = "NutritionOrder",
|
2575
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2576
|
+
Observation = "Observation",
|
2577
|
+
/** The FHIR resource type defined in R4. */
|
2578
|
+
ObservationDefinition = "ObservationDefinition",
|
2579
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2580
|
+
OperationDefinition = "OperationDefinition",
|
2581
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2582
|
+
OperationOutcome = "OperationOutcome",
|
2583
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2584
|
+
Organization = "Organization",
|
2585
|
+
/** The FHIR resource type defined in R4. */
|
2586
|
+
OrganizationAffiliation = "OrganizationAffiliation",
|
2587
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2588
|
+
Parameters = "Parameters",
|
2589
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2590
|
+
Patient = "Patient",
|
2591
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2592
|
+
PaymentNotice = "PaymentNotice",
|
2593
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2594
|
+
PaymentReconciliation = "PaymentReconciliation",
|
2595
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2596
|
+
Person = "Person",
|
2597
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2598
|
+
PlanDefinition = "PlanDefinition",
|
2599
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2600
|
+
Practitioner = "Practitioner",
|
2601
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2602
|
+
PractitionerRole = "PractitionerRole",
|
2603
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2604
|
+
Procedure = "Procedure",
|
2605
|
+
/** The FHIR resource type defined in STU3. */
|
2606
|
+
ProcedureRequest = "ProcedureRequest",
|
2607
|
+
/** The FHIR resource type defined in STU3. */
|
2608
|
+
ProcessRequest = "ProcessRequest",
|
2609
|
+
/** The FHIR resource type defined in STU3. */
|
2610
|
+
ProcessResponse = "ProcessResponse",
|
2611
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2612
|
+
Provenance = "Provenance",
|
2613
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2614
|
+
Questionnaire = "Questionnaire",
|
2615
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2616
|
+
QuestionnaireResponse = "QuestionnaireResponse",
|
2617
|
+
/** The FHIR resource type defined in STU3. */
|
2618
|
+
ReferralRequest = "ReferralRequest",
|
2619
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2620
|
+
RelatedPerson = "RelatedPerson",
|
2621
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2622
|
+
RequestGroup = "RequestGroup",
|
2623
|
+
/** The FHIR resource type defined in R4. */
|
2624
|
+
ResearchDefinition = "ResearchDefinition",
|
2625
|
+
/** The FHIR resource type defined in R4. */
|
2626
|
+
ResearchElementDefinition = "ResearchElementDefinition",
|
2627
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2628
|
+
ResearchStudy = "ResearchStudy",
|
2629
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2630
|
+
ResearchSubject = "ResearchSubject",
|
2631
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2632
|
+
Resource = "Resource",
|
2633
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2634
|
+
RiskAssessment = "RiskAssessment",
|
2635
|
+
/** The FHIR resource type defined in R4. */
|
2636
|
+
RiskEvidenceSynthesis = "RiskEvidenceSynthesis",
|
2637
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2638
|
+
Schedule = "Schedule",
|
2639
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2640
|
+
SearchParameter = "SearchParameter",
|
2641
|
+
/** The FHIR resource type defined in STU3. */
|
2642
|
+
Sequence = "Sequence",
|
2643
|
+
/** The FHIR resource type defined in STU3. */
|
2644
|
+
ServiceDefinition = "ServiceDefinition",
|
2645
|
+
/** The FHIR resource type defined in R4. */
|
2646
|
+
ServiceRequest = "ServiceRequest",
|
2647
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2648
|
+
Slot = "Slot",
|
2649
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2650
|
+
Specimen = "Specimen",
|
2651
|
+
/** The FHIR resource type defined in R4. */
|
2652
|
+
SpecimenDefinition = "SpecimenDefinition",
|
2653
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2654
|
+
StructureDefinition = "StructureDefinition",
|
2655
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2656
|
+
StructureMap = "StructureMap",
|
2657
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2658
|
+
Subscription = "Subscription",
|
2659
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2660
|
+
Substance = "Substance",
|
2661
|
+
/** The FHIR resource type defined in R4. */
|
2662
|
+
SubstanceNucleicAcid = "SubstanceNucleicAcid",
|
2663
|
+
/** The FHIR resource type defined in R4. */
|
2664
|
+
SubstancePolymer = "SubstancePolymer",
|
2665
|
+
/** The FHIR resource type defined in R4. */
|
2666
|
+
SubstanceProtein = "SubstanceProtein",
|
2667
|
+
/** The FHIR resource type defined in R4. */
|
2668
|
+
SubstanceReferenceInformation = "SubstanceReferenceInformation",
|
2669
|
+
/** The FHIR resource type defined in R4. */
|
2670
|
+
SubstanceSourceMaterial = "SubstanceSourceMaterial",
|
2671
|
+
/** The FHIR resource type defined in R4. */
|
2672
|
+
SubstanceSpecification = "SubstanceSpecification",
|
2673
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2674
|
+
SupplyDelivery = "SupplyDelivery",
|
2675
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2676
|
+
SupplyRequest = "SupplyRequest",
|
2677
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2678
|
+
Task = "Task",
|
2679
|
+
/** The FHIR resource type defined in R4. */
|
2680
|
+
TerminologyCapabilities = "TerminologyCapabilities",
|
2681
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2682
|
+
TestReport = "TestReport",
|
2683
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2684
|
+
TestScript = "TestScript",
|
2685
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2686
|
+
ValueSet = "ValueSet",
|
2687
|
+
/** The FHIR resource type defined in R4. */
|
2688
|
+
VerificationResult = "VerificationResult",
|
2689
|
+
/** The FHIR resource type defined in STU3 and R4. */
|
2690
|
+
VisionPrescription = "VisionPrescription"
|
2691
|
+
}
|
2692
|
+
|
2693
|
+
/** Known values of {@link RecordingChannelType} that the service accepts. */
|
2694
|
+
export declare const enum KnownRecordingChannelType {
|
2695
|
+
Mixed = "Mixed",
|
2696
|
+
Unmixed = "Unmixed"
|
2697
|
+
}
|
2698
|
+
|
2699
|
+
/** Known values of {@link RecordingContentType} that the service accepts. */
|
2700
|
+
export declare const enum KnownRecordingContentType {
|
2701
|
+
AudioVideo = "AudioVideo",
|
2702
|
+
Audio = "Audio"
|
2703
|
+
}
|
2704
|
+
|
2705
|
+
/** Known values of {@link RecordingFormatType} that the service accepts. */
|
2706
|
+
export declare const enum KnownRecordingFormatType {
|
2707
|
+
Wav = "Wav",
|
2708
|
+
Mp3 = "Mp3",
|
2709
|
+
Mp4 = "Mp4"
|
2710
|
+
}
|
2711
|
+
|
2250
2712
|
/** Known values of {@link StampKind} that the service accepts. */
|
2251
2713
|
export declare const enum KnownStampKind {
|
2252
2714
|
/** App Service Plan is running on a public stamp. */
|
@@ -2257,6 +2719,18 @@ export declare const enum KnownStampKind {
|
|
2257
2719
|
AseV2 = "AseV2"
|
2258
2720
|
}
|
2259
2721
|
|
2722
|
+
/** Known values of {@link StorageTaskAssignmentCompletedStatus} that the service accepts. */
|
2723
|
+
export declare const enum KnownStorageTaskAssignmentCompletedStatus {
|
2724
|
+
Succeeded = "Succeeded",
|
2725
|
+
Failed = "Failed"
|
2726
|
+
}
|
2727
|
+
|
2728
|
+
/** Known values of {@link StorageTaskCompletedStatus} that the service accepts. */
|
2729
|
+
export declare const enum KnownStorageTaskCompletedStatus {
|
2730
|
+
Succeeded = "Succeeded",
|
2731
|
+
Failed = "Failed"
|
2732
|
+
}
|
2733
|
+
|
2260
2734
|
/**
|
2261
2735
|
* The Event Types for all System Events. These may be used with `isSystemEvent` to determine if an
|
2262
2736
|
* event is a system event of a given type.
|
@@ -3701,6 +4175,38 @@ export declare interface StorageLifecyclePolicyCompletedEventData {
|
|
3701
4175
|
tierToArchiveSummary: StorageLifecyclePolicyActionSummaryDetail;
|
3702
4176
|
}
|
3703
4177
|
|
4178
|
+
/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentCompleted event. */
|
4179
|
+
export declare interface StorageTaskAssignmentCompletedEventData {
|
4180
|
+
/** The status for a storage task. */
|
4181
|
+
status: StorageTaskAssignmentCompletedStatus;
|
4182
|
+
/** The time at which a storage task was completed. */
|
4183
|
+
completedOn: string;
|
4184
|
+
/** The execution id for a storage task. */
|
4185
|
+
taskExecutionId: string;
|
4186
|
+
/** The task name for a storage task. */
|
4187
|
+
taskName: string;
|
4188
|
+
/** The summary report blob url for a storage task */
|
4189
|
+
summaryReportBlobUri: string;
|
4190
|
+
}
|
4191
|
+
|
4192
|
+
/**
|
4193
|
+
* Defines values for StorageTaskAssignmentCompletedStatus. \
|
4194
|
+
* {@link KnownStorageTaskAssignmentCompletedStatus} can be used interchangeably with StorageTaskAssignmentCompletedStatus,
|
4195
|
+
* this enum contains the known values that the service supports.
|
4196
|
+
* ### Known values supported by the service
|
4197
|
+
* **Succeeded** \
|
4198
|
+
* **Failed**
|
4199
|
+
*/
|
4200
|
+
export declare type StorageTaskAssignmentCompletedStatus = string;
|
4201
|
+
|
4202
|
+
/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentQueued event. */
|
4203
|
+
export declare interface StorageTaskAssignmentQueuedEventData {
|
4204
|
+
/** The time at which a storage task was queued. */
|
4205
|
+
queuedOn: string;
|
4206
|
+
/** The execution id for a storage task. */
|
4207
|
+
taskExecutionId: string;
|
4208
|
+
}
|
4209
|
+
|
3704
4210
|
/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskCompleted event. */
|
3705
4211
|
export declare interface StorageTaskCompletedEventData {
|
3706
4212
|
/** The status for a storage task. */
|
@@ -4136,6 +4642,34 @@ export declare interface SystemEventNameToEventData {
|
|
4136
4642
|
"Microsoft.ResourceNotifications.Resources.CreatedOrUpdated": ResourceNotificationsResourceManagementCreatedOrUpdatedEventData;
|
4137
4643
|
/** An interface for the event data of a "Microsoft.ResourceNotifications.Resources.Deleted" event. */
|
4138
4644
|
"Microsoft.ResourceNotifications.Resources.Deleted": ResourceNotificationsResourceManagementDeletedEventData;
|
4645
|
+
/** An interface for the event data of a "Microsoft.Storage.StorageTaskAssignmentQueued" event. */
|
4646
|
+
"Microsoft.Storage.StorageTaskAssignmentQueued": StorageTaskAssignmentQueuedEventData;
|
4647
|
+
/** An interface for the event data of a "Microsoft.Storage.StorageTaskAssignmentCompleted" event. */
|
4648
|
+
"Microsoft.Storage.StorageTaskAssignmentCompleted": StorageTaskAssignmentCompletedEventData;
|
4649
|
+
/** An interface for the event data of a "Microsoft.AVS.ScriptExecutionStarted" event. */
|
4650
|
+
"Microsoft.AVS.ScriptExecutionStarted": AvsScriptExecutionStartedEventData;
|
4651
|
+
/** An interface for the event data of a "Microsoft.AVS.ScriptExecutionFinished" event. */
|
4652
|
+
"Microsoft.AVS.ScriptExecutionFinished": AvsScriptExecutionFinishedEventData;
|
4653
|
+
/** An interface for the event data of a "Microsoft.AVS.ScriptExecutionCancelled" event. */
|
4654
|
+
"Microsoft.AVS.ScriptExecutionCancelled": AvsScriptExecutionCancelledEventData;
|
4655
|
+
/** An interface for the event data of a "Microsoft.AVS.ScriptExecutionFailed" event. */
|
4656
|
+
"Microsoft.AVS.ScriptExecutionFailed": AvsScriptExecutionFailedEventData;
|
4657
|
+
/** An interface for the event data of a "Microsoft.AVS.PrivateCloudUpdating" event. */
|
4658
|
+
"Microsoft.AVS.PrivateCloudUpdating": AvsPrivateCloudUpdatingEventData;
|
4659
|
+
/** An interface for the event data of a "Microsoft.AVS.PrivateCloudUpdated" event. */
|
4660
|
+
"Microsoft.AVS.PrivateCloudUpdated": AvsPrivateCloudUpdatedEventData;
|
4661
|
+
/** An interface for the event data of a "Microsoft.AVS.PrivateCloudFailed" event. */
|
4662
|
+
"Microsoft.AVS.PrivateCloudFailed": AvsPrivateCloudFailedEventData;
|
4663
|
+
/** An interface for the event data of a "Microsoft.AVS.ClusterCreated" event. */
|
4664
|
+
"Microsoft.AVS.ClusterCreated": AvsClusterCreatedEventData;
|
4665
|
+
/** An interface for the event data of a "Microsoft.AVS.ClusterDeleted" event. */
|
4666
|
+
"Microsoft.AVS.ClusterDeleted": AvsClusterDeletedEventData;
|
4667
|
+
/** An interface for the event data of a "Microsoft.AVS.ClusterUpdating" event. */
|
4668
|
+
"Microsoft.AVS.ClusterUpdating": AvsClusterUpdatingEventData;
|
4669
|
+
/** An interface for the event data of a "Microsoft.AVS.ClusterUpdated" event. */
|
4670
|
+
"Microsoft.AVS.ClusterUpdated": AvsClusterUpdatedEventData;
|
4671
|
+
/** An interface for the event data of a "Microsoft.AVS.ClusterFailed" event. */
|
4672
|
+
"Microsoft.AVS.ClusterFailed": AvsClusterFailedEventData;
|
4139
4673
|
}
|
4140
4674
|
|
4141
4675
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.AppServicePlanUpdated event. */
|