Skip to content

Commit 4212ed6

Browse files
authored
[EventGrid] Update System Events and Prepare for Release (Azure#21141)
This change updates our swagger to the latest version in `azure-rest-api-specs`. This includes support for three new system events related to healthcare.
1 parent 2318aa3 commit 4212ed6

File tree

10 files changed

+724
-9
lines changed

10 files changed

+724
-9
lines changed

.vscode/cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"ECONNRESET",
5959
"Eloqua",
6060
"etags",
61+
"Fhir",
6162
"Guids",
6263
"Hana",
6364
"IMDS",

sdk/eventgrid/eventgrid/CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Release History
22

3-
## 4.8.1 (Unreleased)
3+
## 4.9.0 (2022-04-07)
44

55
### Features Added
66

7-
### Breaking Changes
8-
9-
### Bugs Fixed
7+
- Added new System Events:
108

11-
### Other Changes
9+
- `Microsoft.HealthcareApis.FhirResourceCreated`
10+
- `Microsoft.HealthcareApis.FhirUpdatedCreated`
11+
- `Microsoft.HealthcareApis.FhirDeletedCreated`
1212

1313
## 4.8.0 (2022-03-08)
1414

sdk/eventgrid/eventgrid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"sdk-type": "client",
44
"author": "Microsoft Corporation",
55
"description": "An isomorphic client library for the Azure Event Grid service.",
6-
"version": "4.8.1",
6+
"version": "4.9.0",
77
"keywords": [
88
"node",
99
"azure",

sdk/eventgrid/eventgrid/review/eventgrid.api.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,33 @@ export interface GenerateSharedAccessSignatureOptions {
570570
apiVersion?: string;
571571
}
572572

573+
// @public
574+
export interface HealthcareFhirResourceCreatedEventData {
575+
resourceFhirAccount: string;
576+
resourceFhirId: string;
577+
resourceType: HealthcareFhirResourceType;
578+
resourceVersionId: number;
579+
}
580+
581+
// @public
582+
export interface HealthcareFhirResourceDeletedEventData {
583+
resourceFhirAccount: string;
584+
resourceFhirId: string;
585+
resourceType: HealthcareFhirResourceType;
586+
resourceVersionId: number;
587+
}
588+
589+
// @public
590+
export type HealthcareFhirResourceType = string;
591+
592+
// @public
593+
export interface HealthcareFhirResourceUpdatedEventData {
594+
resourceFhirAccount: string;
595+
resourceFhirId: string;
596+
resourceType: HealthcareFhirResourceType;
597+
resourceVersionId: number;
598+
}
599+
573600
// @public
574601
export type InputSchema = keyof InputSchemaToInputTypeMap;
575602

@@ -1504,6 +1531,9 @@ export interface SystemEventNameToEventData {
15041531
"Microsoft.EventGrid.SubscriptionDeletedEvent": SubscriptionDeletedEventData;
15051532
"Microsoft.EventGrid.SubscriptionValidationEvent": SubscriptionValidationEventData;
15061533
"Microsoft.EventHub.CaptureFileCreated": EventHubCaptureFileCreatedEventData;
1534+
"Microsoft.HealthcareApis.FhirDeletedCreated": HealthcareFhirResourceDeletedEventData;
1535+
"Microsoft.HealthcareApis.FhirResourceCreated": HealthcareFhirResourceCreatedEventData;
1536+
"Microsoft.HealthcareApis.FhirUpdatedCreated": HealthcareFhirResourceUpdatedEventData;
15071537
"Microsoft.KeyVault.CertificateExpired": KeyVaultCertificateExpiredEventData;
15081538
"Microsoft.KeyVault.CertificateNearExpiry": KeyVaultCertificateNearExpiryEventData;
15091539
"Microsoft.KeyVault.CertificateNewVersionCreated": KeyVaultCertificateNewVersionCreatedEventData;

sdk/eventgrid/eventgrid/src/generated/generatedClientContext.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)