@azure/eventgrid 5.7.0 → 5.8.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 +9 -15
- package/dist/index.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 +7 -13
- package/dist-esm/src/generated/models/mappers.js.map +1 -1
- package/dist-esm/src/tracing.js +1 -1
- package/dist-esm/src/tracing.js.map +1 -1
- package/package.json +12 -11
- package/types/eventgrid.d.ts +3 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/generated/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport type MediaJobOutputUnion = MediaJobOutput | MediaJobOutputAsset;\n\n/** Properties of an event published to an Event Grid topic using the EventGrid Schema. */\nexport interface EventGridEvent {\n /** An unique identifier for the event. */\n id: string;\n /** The resource path of the event source. */\n topic?: string;\n /** A resource path relative to the topic path. */\n subject: string;\n /** Event data specific to the event type. */\n data: any;\n /** The type of the event that occurred. */\n eventType: string;\n /** The time (in UTC) the event was generated. */\n eventTime: Date;\n /**\n * The schema version of the event metadata.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly metadataVersion?: string;\n /** The schema version of the data object. */\n dataVersion: string;\n}\n\n/** Properties of an event published to an Event Grid topic using the CloudEvent 1.0 Schema */\nexport interface CloudEvent {\n /** Describes unknown properties. The value of an unknown property can be of \"any\" type. */\n [property: string]: any;\n /** An identifier for the event. The combination of id and source must be unique for each distinct event. */\n id: string;\n /** Identifies the context in which an event happened. The combination of id and source must be unique for each distinct event. */\n source: string;\n /** Event data specific to the event type. */\n data?: any;\n /** Event data specific to the event type, encoded as a base64 string. */\n dataBase64?: Uint8Array;\n /** Type of event related to the originating occurrence. */\n type: string;\n /** The time (in UTC) the event was generated, in RFC3339 format. */\n time?: Date;\n /** The version of the CloudEvents specification which the event uses. */\n specversion: string;\n /** Identifies the schema that data adheres to. */\n dataschema?: string;\n /** Content type of data value. */\n datacontenttype?: string;\n /** This describes the subject of the event in the context of the event producer (identified by source). */\n subject?: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobCreated event. */\nexport interface StorageBlobCreatedEventData {\n /** The name of the API/operation that triggered this event. */\n api?: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId?: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId?: string;\n /** The etag of the blob at the time this event was triggered. */\n eTag?: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType?: string;\n /** The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob. */\n contentLength?: number;\n /** The offset of the blob in bytes. */\n contentOffset?: number;\n /** The type of blob. */\n blobType?: string;\n /** The current tier of the blob. */\n accessTier: StorageBlobAccessTier;\n /** The path to the blob. */\n url?: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer?: string;\n /** The identity of the requester that triggered this event. */\n identity?: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics?: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobDeleted event. */\nexport interface StorageBlobDeletedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType: string;\n /** The type of blob. */\n blobType: string;\n /** The path to the blob. */\n url: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryCreated event. */\nexport interface StorageDirectoryCreatedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The etag of the directory at the time this event was triggered. */\n eTag: string;\n /** The path to the directory. */\n url: string;\n /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryDeleted event. */\nexport interface StorageDirectoryDeletedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The path to the deleted directory. */\n url: string;\n /** Is this event for a recursive delete operation. */\n recursive: string;\n /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobRenamed event. */\nexport interface StorageBlobRenamedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The path to the blob that was renamed. */\n sourceUrl: string;\n /** The new path to the blob after the rename operation. */\n destinationUrl: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryRenamed event. */\nexport interface StorageDirectoryRenamedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The path to the directory that was renamed. */\n sourceUrl: string;\n /** The new path to the directory after the rename operation. */\n destinationUrl: string;\n /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.LifecyclePolicyCompleted event. */\nexport interface StorageLifecyclePolicyCompletedEventData {\n /** The time the policy task was scheduled. */\n scheduleTime: string;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n deleteSummary: StorageLifecyclePolicyActionSummaryDetail;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n tierToCoolSummary: StorageLifecyclePolicyActionSummaryDetail;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n tierToColdSummary: StorageLifecyclePolicyActionSummaryDetail;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n tierToArchiveSummary: StorageLifecyclePolicyActionSummaryDetail;\n}\n\n/** Execution statistics of a specific policy action in a Blob Management cycle. */\nexport interface StorageLifecyclePolicyActionSummaryDetail {\n /** Total number of objects to be acted on by this action. */\n totalObjectsCount: number;\n /** Number of success operations of this action. */\n successCount: number;\n /** Error messages of this action if any. */\n errorList: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobTierChanged event. */\nexport interface StorageBlobTierChangedEventData {\n /** The name of the API/operation that triggered this event. */\n api?: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId?: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId?: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType?: string;\n /** The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob. */\n contentLength?: number;\n /** The type of blob. */\n blobType?: string;\n /** The current tier of the blob. */\n accessTier: StorageBlobAccessTier;\n /** The previous tier of the blob. */\n previousTier: StorageBlobAccessTier;\n /** The path to the blob. */\n url?: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer?: string;\n /** The identity of the requester that triggered this event. */\n identity?: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics?: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.AsyncOperationInitiated event. */\nexport interface StorageAsyncOperationInitiatedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType: string;\n /** The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob. */\n contentLength: number;\n /** The type of blob. */\n blobType: string;\n /** The path to the blob. */\n url: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.BlobInventoryPolicyCompleted event. */\nexport interface StorageBlobInventoryPolicyCompletedEventData {\n /** The time at which inventory policy was scheduled. */\n scheduleDateTime: string;\n /** The account name for which inventory policy is registered. */\n accountName: string;\n /** The rule name for inventory policy. */\n ruleName: string;\n /** The status of inventory run, it can be Succeeded/PartiallySucceeded/Failed. */\n policyRunStatus: string;\n /** The status message for inventory run. */\n policyRunStatusMessage: string;\n /** The policy run id for inventory run. */\n policyRunId: string;\n /** The blob URL for manifest file for inventory run. */\n manifestBlobUrl: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskQueued event. */\nexport interface StorageTaskQueuedEventData {\n /** The time at which a storage task was queued. */\n queuedDateTime: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskCompleted event. */\nexport interface StorageTaskCompletedEventData {\n /** The status for a storage task. */\n status: StorageTaskCompletedStatus;\n /** The time at which a storage task was completed. */\n completedDateTime: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n /** The task name for a storage task. */\n taskName: string;\n /** The summary report blob url for a storage task */\n summaryReportBlobUrl: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentQueued event. */\nexport interface StorageTaskAssignmentQueuedEventData {\n /** The time at which a storage task was queued. */\n queuedOn: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentCompleted event. */\nexport interface StorageTaskAssignmentCompletedEventData {\n /** The status for a storage task. */\n status: StorageTaskAssignmentCompletedStatus;\n /** The time at which a storage task was completed. */\n completedOn: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n /** The task name for a storage task. */\n taskName: string;\n /** The summary report blob url for a storage task */\n summaryReportBlobUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.EventHub.CaptureFileCreated event. */\nexport interface EventHubCaptureFileCreatedEventData {\n /** The path to the capture file. */\n fileUrl: string;\n /** The file type of the capture file. */\n fileType: string;\n /** The shard ID. */\n partitionId: string;\n /** The file size. */\n sizeInBytes: number;\n /** The number of events in the file. */\n eventCount: number;\n /** The smallest sequence number from the queue. */\n firstSequenceNumber: number;\n /** The last sequence number from the queue. */\n lastSequenceNumber: number;\n /** The first time from the queue. */\n firstEnqueueTime: string;\n /** The last time from the queue. */\n lastEnqueueTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteSuccess event. This is raised when a resource create or update operation succeeds. */\nexport interface ResourceWriteSuccessEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** The details of the authorization for the resource. */\nexport interface ResourceAuthorization {\n /** The scope of the authorization. */\n scope: string;\n /** The action being requested. */\n action: string;\n /** The evidence for the authorization. */\n evidence: { [propertyName: string]: string };\n}\n\n/** The details of the HTTP request. */\nexport interface ResourceHttpRequest {\n /** The client request ID. */\n clientRequestId: string;\n /** The client IP address. */\n clientIpAddress: string;\n /** The request method. */\n method: string;\n /** The url used in the request. */\n url: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteFailure event. This is raised when a resource create or update operation fails. */\nexport interface ResourceWriteFailureEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteCancel event. This is raised when a resource create or update operation is canceled. */\nexport interface ResourceWriteCancelEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceDeleteSuccess event. This is raised when a resource delete operation succeeds. */\nexport interface ResourceDeleteSuccessEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceDeleteFailure event. This is raised when a resource delete operation fails. */\nexport interface ResourceDeleteFailureEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceDeleteCancel event. This is raised when a resource delete operation is canceled. */\nexport interface ResourceDeleteCancelEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionSuccess event. This is raised when a resource action operation succeeds. */\nexport interface ResourceActionSuccessEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionFailure event. This is raised when a resource action operation fails. */\nexport interface ResourceActionFailureEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionCancel event. This is raised when a resource action operation is canceled. */\nexport interface ResourceActionCancelEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.EventGrid.SubscriptionValidationEvent event. */\nexport interface SubscriptionValidationEventData {\n /**\n * The validation code sent by Azure Event Grid to validate an event subscription. To complete the validation handshake, the subscriber must either respond with this validation code as part of the validation response, or perform a GET request on the validationUrl (available starting version 2018-05-01-preview).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly validationCode: string;\n /**\n * The validation URL sent by Azure Event Grid (available starting version 2018-05-01-preview). To complete the validation handshake, the subscriber must either respond with the validationCode as part of the validation response, or perform a GET request on the validationUrl (available starting version 2018-05-01-preview).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly validationUrl: string;\n}\n\n/** To complete an event subscription validation handshake, a subscriber can use either the validationCode or the validationUrl received in a SubscriptionValidationEvent. When the validationCode is used, the SubscriptionValidationResponse can be used to build the response. */\nexport interface SubscriptionValidationResponse {\n /** The validation response sent by the subscriber to Azure Event Grid to complete the validation of an event subscription. */\n validationResponse: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.EventGrid.SubscriptionDeletedEvent event. */\nexport interface SubscriptionDeletedEventData {\n /**\n * The Azure resource ID of the deleted event subscription.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly eventSubscriptionId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for MQTT Client state changes. */\nexport interface EventGridMqttClientEventData {\n /** Unique identifier for the MQTT client that the client presents to the service for authentication. This case-sensitive string can be up to 128 characters long, and supports UTF-8 characters. */\n clientAuthenticationName: string;\n /** Name of the client resource in the Event Grid namespace. */\n clientName: string;\n /** Name of the Event Grid namespace where the MQTT client was created or updated. */\n namespaceName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.CopyStarted event. */\nexport interface DataBoxCopyStartedEventData {\n /** Serial Number of the device associated with the event. The list is comma separated if more than one serial number is associated. */\n serialNumber: string;\n /** Name of the current Stage */\n stageName: DataBoxStageName;\n /** The time at which the stage happened. */\n stageTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.CopyCompleted event. */\nexport interface DataBoxCopyCompletedEventData {\n /** Serial Number of the device associated with the event. The list is comma separated if more than one serial number is associated. */\n serialNumber: string;\n /** Name of the current Stage */\n stageName: DataBoxStageName;\n /** The time at which the stage happened. */\n stageTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.OrderCompleted event. */\nexport interface DataBoxOrderCompletedEventData {\n /** Serial Number of the device associated with the event. The list is comma separated if more than one serial number is associated. */\n serialNumber: string;\n /** Name of the current Stage */\n stageName: DataBoxStageName;\n /** The time at which the stage happened. */\n stageTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a device life cycle event (DeviceCreated, DeviceDeleted). */\nexport interface DeviceLifeCycleEvent {\n /** The unique identifier of the device. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. */\n deviceId: string;\n /** Name of the IoT Hub where the device was created or deleted. */\n hubName: string;\n /** Information about the device twin, which is the cloud representation of application device metadata. */\n twin: DeviceTwinInfo;\n}\n\n/** Information about the device twin, which is the cloud representation of application device metadata. */\nexport interface DeviceTwinInfo {\n /** Authentication type used for this device: either SAS, SelfSigned, or CertificateAuthority. */\n authenticationType: string;\n /** Count of cloud to device messages sent to this device. */\n cloudToDeviceMessageCount: number;\n /** Whether the device is connected or disconnected. */\n connectionState: string;\n /** The unique identifier of the device twin. */\n deviceId: string;\n /** A piece of information that describes the content of the device twin. Each etag is guaranteed to be unique per device twin. */\n etag: string;\n /** The ISO8601 timestamp of the last activity. */\n lastActivityTime: string;\n /** Properties JSON element. */\n properties: DeviceTwinInfoProperties;\n /** Whether the device twin is enabled or disabled. */\n status: string;\n /** The ISO8601 timestamp of the last device twin status update. */\n statusUpdateTime: string;\n /** An integer that is incremented by one each time the device twin is updated. */\n version: number;\n /** The thumbprint is a unique value for the x509 certificate, commonly used to find a particular certificate in a certificate store. The thumbprint is dynamically generated using the SHA1 algorithm, and does not physically exist in the certificate. */\n x509Thumbprint: DeviceTwinInfoX509Thumbprint;\n}\n\n/** Properties JSON element. */\nexport interface DeviceTwinInfoProperties {\n /** A portion of the properties that can be written only by the application back-end, and read by the device. */\n desired?: DeviceTwin;\n /** A portion of the properties that can be written only by the device, and read by the application back-end. */\n reported?: DeviceTwin;\n}\n\n/** A portion of the properties that can be written only by the application back-end, and read by the device. */\nexport interface DeviceTwin {\n /** Metadata information for the properties JSON document. */\n metadata: DeviceTwinMetadata;\n /** Version of device twin properties. */\n version: number;\n}\n\n/** Metadata information for the properties JSON document. */\nexport interface DeviceTwinMetadata {\n /** The ISO8601 timestamp of the last time the properties were updated. */\n lastUpdated: string;\n}\n\n/** The thumbprint is a unique value for the x509 certificate, commonly used to find a particular certificate in a certificate store. The thumbprint is dynamically generated using the SHA1 algorithm, and does not physically exist in the certificate. */\nexport interface DeviceTwinInfoX509Thumbprint {\n /** Primary thumbprint for the x509 certificate. */\n primaryThumbprint?: string;\n /** Secondary thumbprint for the x509 certificate. */\n secondaryThumbprint?: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a device connection state event (DeviceConnected, DeviceDisconnected). */\nexport interface DeviceConnectionStateEvent {\n /** The unique identifier of the device. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. */\n deviceId: string;\n /** The unique identifier of the module. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. */\n moduleId: string;\n /** Name of the IoT Hub where the device was created or deleted. */\n hubName: string;\n /** Information about the device connection state event. */\n deviceConnectionStateEventInfo: DeviceConnectionStateEventInfo;\n}\n\n/** Information about the device connection state event. */\nexport interface DeviceConnectionStateEventInfo {\n /** Sequence number is string representation of a hexadecimal number. string compare can be used to identify the larger number because both in ASCII and HEX numbers come after alphabets. If you are converting the string to hex, then the number is a 256 bit number. */\n sequenceNumber: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a device telemetry event (DeviceTelemetry). */\nexport interface DeviceTelemetryEvent {\n /** The content of the message from the device. */\n body: any;\n /** Application properties are user-defined strings that can be added to the message. These fields are optional. */\n properties: { [propertyName: string]: string };\n /** System properties help identify contents and source of the messages. */\n systemProperties: { [propertyName: string]: string };\n}\n\n/** The content of the event request message. */\nexport interface ContainerRegistryEventData {\n /** The event ID. */\n id: string;\n /** The time at which the event occurred. */\n timestamp: string;\n /** The action that encompasses the provided event. */\n action: string;\n /** The location of the event. */\n location: string;\n /** The target of the event. */\n target: ContainerRegistryEventTarget;\n /** The request that generated the event. */\n request: ContainerRegistryEventRequest;\n /** The agent that initiated the event. For most situations, this could be from the authorization context of the request. */\n actor: ContainerRegistryEventActor;\n /** The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it. */\n source: ContainerRegistryEventSource;\n /** The connected registry information if the event is generated by a connected registry. */\n connectedRegistry: ContainerRegistryEventConnectedRegistry;\n}\n\n/** The target of the event. */\nexport interface ContainerRegistryEventTarget {\n /** The MIME type of the referenced object. */\n mediaType: string;\n /** The number of bytes of the content. Same as Length field. */\n size: number;\n /** The digest of the content, as defined by the Registry V2 HTTP API Specification. */\n digest: string;\n /** The number of bytes of the content. Same as Size field. */\n length: number;\n /** The repository name. */\n repository: string;\n /** The direct URL to the content. */\n url: string;\n /** The tag name. */\n tag: string;\n}\n\n/** The request that generated the event. */\nexport interface ContainerRegistryEventRequest {\n /** The ID of the request that initiated the event. */\n id: string;\n /** The IP or hostname and possibly port of the client connection that initiated the event. This is the RemoteAddr from the standard http request. */\n addr: string;\n /** The externally accessible hostname of the registry instance, as specified by the http host header on incoming requests. */\n host: string;\n /** The request method that generated the event. */\n method: string;\n /** The user agent header of the request. */\n useragent: string;\n}\n\n/** The agent that initiated the event. For most situations, this could be from the authorization context of the request. */\nexport interface ContainerRegistryEventActor {\n /** The subject or username associated with the request context that generated the event. */\n name: string;\n}\n\n/** The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it. */\nexport interface ContainerRegistryEventSource {\n /** The IP or hostname and the port of the registry node that generated the event. Generally, this will be resolved by os.Hostname() along with the running port. */\n addr: string;\n /** The running instance of an application. Changes after each restart. */\n instanceID: string;\n}\n\n/** The connected registry information if the event is generated by a connected registry. */\nexport interface ContainerRegistryEventConnectedRegistry {\n /** The name of the connected registry that generated this event. */\n name: string;\n}\n\n/** The content of the event request message. */\nexport interface ContainerRegistryArtifactEventData {\n /** The event ID. */\n id: string;\n /** The time at which the event occurred. */\n timestamp: string;\n /** The action that encompasses the provided event. */\n action: string;\n /** The location of the event. */\n location: string;\n /** The target of the event. */\n target: ContainerRegistryArtifactEventTarget;\n /** The connected registry information if the event is generated by a connected registry. */\n connectedRegistry: ContainerRegistryEventConnectedRegistry;\n}\n\n/** The target of the event. */\nexport interface ContainerRegistryArtifactEventTarget {\n /** The MIME type of the artifact. */\n mediaType: string;\n /** The size in bytes of the artifact. */\n size: number;\n /** The digest of the artifact. */\n digest: string;\n /** The repository name of the artifact. */\n repository: string;\n /** The tag of the artifact. */\n tag: string;\n /** The name of the artifact. */\n name: string;\n /** The version of the artifact. */\n version: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.ActiveMessagesAvailableWithNoListeners event. */\nexport interface ServiceBusActiveMessagesAvailableWithNoListenersEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.DeadletterMessagesAvailableWithNoListeners event. */\nexport interface ServiceBusDeadletterMessagesAvailableWithNoListenersEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.ActiveMessagesAvailablePeriodicNotifications event. */\nexport interface ServiceBusActiveMessagesAvailablePeriodicNotificationsEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.DeadletterMessagesAvailablePeriodicNotifications event. */\nexport interface ServiceBusDeadletterMessagesAvailablePeriodicNotificationsEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Media.JobStateChange event. */\nexport interface MediaJobStateChangeEventData {\n /**\n * The previous state of the Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly previousState: MediaJobState;\n /**\n * The new state of the Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly state: MediaJobState;\n /** Gets the Job correlation data. */\n correlationData: { [propertyName: string]: string };\n}\n\n/** Details of JobOutput errors. */\nexport interface MediaJobError {\n /**\n * Error code describing the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code: MediaJobErrorCode;\n /**\n * A human-readable language-dependent representation of the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message: string;\n /**\n * Helps with categorization of errors.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly category: MediaJobErrorCategory;\n /**\n * Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly retry: MediaJobRetry;\n /**\n * An array of details about specific errors that led to this reported error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details: MediaJobErrorDetail[];\n}\n\n/** Details of JobOutput errors. */\nexport interface MediaJobErrorDetail {\n /**\n * Code describing the error detail.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code: string;\n /**\n * A human-readable representation of the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message: string;\n}\n\n/** The event data for a Job output. */\nexport interface MediaJobOutput {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n odataType: \"#Microsoft.Media.JobOutputAsset\";\n /** Gets the Job output error. */\n error?: MediaJobError;\n /** Gets the Job output label. */\n label?: string;\n /** Gets the Job output progress. */\n progress: number;\n /** Gets the Job output state. */\n state: MediaJobState;\n}\n\n/** Job Output Progress Event Data. Schema of the Data property of an EventGridEvent for a Microsoft.Media.JobOutputProgress event. */\nexport interface MediaJobOutputProgressEventData {\n /** Gets the Job output label. */\n label: string;\n /** Gets the Job output progress. */\n progress: number;\n /** Gets the Job correlation data. */\n jobCorrelationData: { [propertyName: string]: string };\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Media.JobOutputStateChange event. */\nexport interface MediaJobOutputStateChangeEventData {\n /**\n * The previous state of the Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly previousState: MediaJobState;\n /** Gets the output. */\n output: MediaJobOutputUnion;\n /** Gets the Job correlation data. */\n jobCorrelationData: { [propertyName: string]: string };\n}\n\n/** Encoder connect event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventEncoderConnected event. */\nexport interface MediaLiveEventEncoderConnectedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the stream Id.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly streamId: string;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n}\n\n/** Encoder connection rejected event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventConnectionRejected event. */\nexport interface MediaLiveEventConnectionRejectedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the stream Id.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly streamId: string;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n /**\n * Gets the result code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resultCode: string;\n}\n\n/** Encoder disconnected event data. Schema of the Data property of an EventGridEvent for a Microsoft.Media.LiveEventEncoderDisconnected event. */\nexport interface MediaLiveEventEncoderDisconnectedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the stream Id.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly streamId: string;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n /**\n * Gets the result code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resultCode: string;\n}\n\n/** Encoder connect event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingStreamReceived event. */\nexport interface MediaLiveEventIncomingStreamReceivedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the track name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n /**\n * Gets the bitrate of the track.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n /**\n * Gets the first timestamp of the data chunk received.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timestamp: string;\n /**\n * Gets the duration of the first data chunk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly duration: string;\n /**\n * Gets the timescale in which timestamp is represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n}\n\n/** Incoming streams out of sync event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingStreamsOutOfSync event. */\nexport interface MediaLiveEventIncomingStreamsOutOfSyncEventData {\n /**\n * Gets the minimum last timestamp received.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly minLastTimestamp: string;\n /**\n * Gets the type of stream with minimum last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly typeOfStreamWithMinLastTimestamp: string;\n /**\n * Gets the maximum timestamp among all the tracks (audio or video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly maxLastTimestamp: string;\n /**\n * Gets the type of stream with maximum last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly typeOfStreamWithMaxLastTimestamp: string;\n /**\n * Gets the timescale in which \"MinLastTimestamp\" is represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescaleOfMinLastTimestamp: string;\n /**\n * Gets the timescale in which \"MaxLastTimestamp\" is represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescaleOfMaxLastTimestamp: string;\n}\n\n/** Incoming video stream out of sync event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingVideoStreamsOutOfSync event. */\nexport interface MediaLiveEventIncomingVideoStreamsOutOfSyncEventData {\n /**\n * Gets the first timestamp received for one of the quality levels.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly firstTimestamp: string;\n /**\n * Gets the duration of the data chunk with first timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly firstDuration: string;\n /**\n * Gets the timestamp received for some other quality levels.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly secondTimestamp: string;\n /**\n * Gets the duration of the data chunk with second timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly secondDuration: string;\n /**\n * Gets the timescale in which both the timestamps and durations are represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n}\n\n/** Ingest fragment dropped event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingDataChunkDropped event. */\nexport interface MediaLiveEventIncomingDataChunkDroppedEventData {\n /**\n * Gets the timestamp of the data chunk dropped.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timestamp: string;\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the bitrate of the track.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the timescale of the Timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n /**\n * Gets the result code for fragment drop operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resultCode: string;\n /**\n * Gets the name of the track for which fragment is dropped.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n}\n\n/** Ingest heartbeat event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIngestHeartbeat event. */\nexport interface MediaLiveEventIngestHeartbeatEventData {\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the track name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n /**\n * Gets the Live Transcription language.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transcriptionLanguage: string;\n /**\n * Gets the Live Transcription state.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transcriptionState: string;\n /**\n * Gets the bitrate of the track.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the incoming bitrate.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly incomingBitrate: number;\n /**\n * Gets the track ingest drift value.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestDriftValue: string;\n /**\n * Gets the arrival UTC time of the last fragment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastFragmentArrivalTime: string;\n /**\n * Gets the last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastTimestamp: string;\n /**\n * Gets the timescale of the last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n /**\n * Gets the fragment Overlap count.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly overlapCount: number;\n /**\n * Gets the fragment Discontinuity count.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly discontinuityCount: number;\n /**\n * Gets Non increasing count.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nonincreasingCount: number;\n /**\n * Gets a value indicating whether unexpected bitrate is present or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly unexpectedBitrate: boolean;\n /**\n * Gets the state of the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly state: string;\n /**\n * Gets a value indicating whether preview is healthy or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly healthy: boolean;\n}\n\n/** Ingest track discontinuity detected event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventTrackDiscontinuityDetected event. */\nexport interface MediaLiveEventTrackDiscontinuityDetectedEventData {\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the track name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n /**\n * Gets the bitrate.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the timestamp of the previous fragment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly previousTimestamp: string;\n /**\n * Gets the timestamp of the current fragment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly newTimestamp: string;\n /**\n * Gets the timescale in which both timestamps and discontinuity gap are represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n /**\n * Gets the discontinuity gap between PreviousTimestamp and NewTimestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly discontinuityGap: string;\n}\n\n/** Channel Archive heartbeat event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventChannelArchiveHeartbeat event. */\nexport interface MediaLiveEventChannelArchiveHeartbeatEventData {\n /**\n * Gets the channel latency in ms.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly channelLatencyMs: string;\n /**\n * Gets the latency result code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly latencyResultCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Geofence event (GeofenceEntered, GeofenceExited, GeofenceResult). */\nexport interface MapsGeofenceEvent {\n /** Lists of the geometry ID of the geofence which is expired relative to the user time in the request. */\n expiredGeofenceGeometryId: string[];\n /** Lists the fence geometries that either fully contain the coordinate position or have an overlap with the searchBuffer around the fence. */\n geometries: MapsGeofenceGeometry[];\n /** Lists of the geometry ID of the geofence which is in invalid period relative to the user time in the request. */\n invalidPeriodGeofenceGeometryId: string[];\n /** True if at least one event is published to the Azure Maps event subscriber, false if no event is published to the Azure Maps event subscriber. */\n isEventPublished: boolean;\n}\n\n/** The geofence geometry. */\nexport interface MapsGeofenceGeometry {\n /** ID of the device. */\n deviceId: string;\n /** Distance from the coordinate to the closest border of the geofence. Positive means the coordinate is outside of the geofence. If the coordinate is outside of the geofence, but more than the value of searchBuffer away from the closest geofence border, then the value is 999. Negative means the coordinate is inside of the geofence. If the coordinate is inside the polygon, but more than the value of searchBuffer away from the closest geofencing border,then the value is -999. A value of 999 means that there is great confidence the coordinate is well outside the geofence. A value of -999 means that there is great confidence the coordinate is well within the geofence. */\n distance: number;\n /** The unique ID for the geofence geometry. */\n geometryId: string;\n /** Latitude of the nearest point of the geometry. */\n nearestLat: number;\n /** Longitude of the nearest point of the geometry. */\n nearestLon: number;\n /** The unique id returned from user upload service when uploading a geofence. Will not be included in geofencing post API. */\n udId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueModified event. */\nexport interface AppConfigurationKeyValueModifiedEventData {\n /** The key used to identify the key-value that was modified. */\n key: string;\n /** The label, if any, used to identify the key-value that was modified. */\n label: string;\n /** The etag representing the new state of the key-value. */\n etag: string;\n /** The sync token representing the server state after the event. */\n syncToken: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueDeleted event. */\nexport interface AppConfigurationKeyValueDeletedEventData {\n /** The key used to identify the key-value that was deleted. */\n key: string;\n /** The label, if any, used to identify the key-value that was deleted. */\n label: string;\n /** The etag representing the key-value that was deleted. */\n etag: string;\n /** The sync token representing the server state after the event. */\n syncToken: string;\n}\n\n/** Schema of common properties of snapshot events */\nexport interface AppConfigurationSnapshotEventData {\n /** The name of the snapshot. */\n name: string;\n /** The etag representing the new state of the snapshot. */\n etag: string;\n /** The sync token representing the server state after the event. */\n syncToken: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.SignalRService.ClientConnectionConnected event. */\nexport interface SignalRServiceClientConnectionConnectedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The hub of connected client connection. */\n hubName: string;\n /** The connection Id of connected client connection. */\n connectionId: string;\n /** The user Id of connected client connection. */\n userId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.SignalRService.ClientConnectionDisconnected event. */\nexport interface SignalRServiceClientConnectionDisconnectedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The hub of connected client connection. */\n hubName: string;\n /** The connection Id of connected client connection. */\n connectionId: string;\n /** The user Id of connected client connection. */\n userId: string;\n /** The message of error that cause the client connection disconnected. */\n errorMessage: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.CertificateNewVersionCreated event. */\nexport interface KeyVaultCertificateNewVersionCreatedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.CertificateNearExpiry event. */\nexport interface KeyVaultCertificateNearExpiryEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.CertificateExpired event. */\nexport interface KeyVaultCertificateExpiredEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.KeyNewVersionCreated event. */\nexport interface KeyVaultKeyNewVersionCreatedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.KeyNearExpiry event. */\nexport interface KeyVaultKeyNearExpiryEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.KeyExpired event. */\nexport interface KeyVaultKeyExpiredEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.SecretNewVersionCreated event. */\nexport interface KeyVaultSecretNewVersionCreatedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.SecretNearExpiry event. */\nexport interface KeyVaultSecretNearExpiryEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.SecretExpired event. */\nexport interface KeyVaultSecretExpiredEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.VaultAccessPolicyChanged event. */\nexport interface KeyVaultAccessPolicyChangedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.ModelRegistered event. */\nexport interface MachineLearningServicesModelRegisteredEventData {\n /** The name of the model that was registered. */\n modelName: string;\n /** The version of the model that was registered. */\n modelVersion: string;\n /** The tags of the model that was registered. */\n modelTags: any;\n /** The properties of the model that was registered. */\n modelProperties: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.ModelDeployed event. */\nexport interface MachineLearningServicesModelDeployedEventData {\n /** The name of the deployed service. */\n serviceName: string;\n /** The compute type (e.g. ACI, AKS) of the deployed service. */\n serviceComputeType: string;\n /** A common separated list of model IDs. The IDs of the models deployed in the service. */\n modelIds: string;\n /** The tags of the deployed service. */\n serviceTags: any;\n /** The properties of the deployed service. */\n serviceProperties: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.RunCompleted event. */\nexport interface MachineLearningServicesRunCompletedEventData {\n /** The ID of the experiment that the run belongs to. */\n experimentId: string;\n /** The name of the experiment that the run belongs to. */\n experimentName: string;\n /** The ID of the Run that was completed. */\n runId: string;\n /** The Run Type of the completed Run. */\n runType: string;\n /** The tags of the completed Run. */\n runTags: any;\n /** The properties of the completed Run. */\n runProperties: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.DatasetDriftDetected event. */\nexport interface MachineLearningServicesDatasetDriftDetectedEventData {\n /** The ID of the data drift monitor that triggered the event. */\n dataDriftId: string;\n /** The name of the data drift monitor that triggered the event. */\n dataDriftName: string;\n /** The ID of the Run that detected data drift. */\n runId: string;\n /** The ID of the base Dataset used to detect drift. */\n baseDatasetId: string;\n /** The ID of the target Dataset used to detect drift. */\n targetDatasetId: string;\n /** The coefficient result that triggered the event. */\n driftCoefficient: number;\n /** The start time of the target dataset time series that resulted in drift detection. */\n startTime: string;\n /** The end time of the target dataset time series that resulted in drift detection. */\n endTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.RunStatusChanged event. */\nexport interface MachineLearningServicesRunStatusChangedEventData {\n /** The ID of the experiment that the Machine Learning Run belongs to. */\n experimentId: string;\n /** The name of the experiment that the Machine Learning Run belongs to. */\n experimentName: string;\n /** The ID of the Machine Learning Run. */\n runId: string;\n /** The Run Type of the Machine Learning Run. */\n runType: string;\n /** The tags of the Machine Learning Run. */\n runTags: any;\n /** The properties of the Machine Learning Run. */\n runProperties: any;\n /** The status of the Machine Learning Run. */\n runStatus: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.PatchingCompleted event. */\nexport interface RedisPatchingCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.ScalingCompleted event. */\nexport interface RedisScalingCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.ExportRDBCompleted event. */\nexport interface RedisExportRDBCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.ImportRDBCompleted event. */\nexport interface RedisImportRDBCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.AppUpdated event. */\nexport interface WebAppUpdatedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Detail of action on the app. */\nexport interface AppEventTypeDetail {\n /** Type of action of the operation. */\n action: AppAction;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.BackupOperationStarted event. */\nexport interface WebBackupOperationStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.BackupOperationCompleted event. */\nexport interface WebBackupOperationCompletedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.BackupOperationFailed event. */\nexport interface WebBackupOperationFailedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.RestoreOperationStarted event. */\nexport interface WebRestoreOperationStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.RestoreOperationCompleted event. */\nexport interface WebRestoreOperationCompletedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.RestoreOperationFailed event. */\nexport interface WebRestoreOperationFailedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapStarted event. */\nexport interface WebSlotSwapStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapCompleted event. */\nexport interface WebSlotSwapCompletedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapFailed event. */\nexport interface WebSlotSwapFailedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapWithPreviewStarted event. */\nexport interface WebSlotSwapWithPreviewStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapWithPreviewCancelled event. */\nexport interface WebSlotSwapWithPreviewCancelledEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.AppServicePlanUpdated event. */\nexport interface WebAppServicePlanUpdatedEventData {\n /** Detail of action on the app service plan. */\n appServicePlanEventTypeDetail: AppServicePlanEventTypeDetail;\n /** sku of app service plan. */\n sku: WebAppServicePlanUpdatedEventDataSku;\n /** name of the app service plan that had this event. */\n name: string;\n /** The client request id generated by the app service for the app service plan API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the app service plan API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the app service plan API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Detail of action on the app service plan. */\nexport interface AppServicePlanEventTypeDetail {\n /** Kind of environment where app service plan is. */\n stampKind: StampKind;\n /** Type of action on the app service plan. */\n action: AppServicePlanAction;\n /** Asynchronous operation status of the operation on the app service plan. */\n status: AsyncStatus;\n}\n\n/** sku of app service plan. */\nexport interface WebAppServicePlanUpdatedEventDataSku {\n /** name of app service plan sku. */\n name?: string;\n /** tier of app service plan sku. */\n tier?: string;\n /** size of app service plan sku. */\n size?: string;\n /** family of app service plan sku. */\n family?: string;\n /** capacity of app service plan sku. */\n capacity?: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Communication.IncomingCall event */\nexport interface AcsIncomingCallEventData {\n /** The communication identifier of the target user. */\n toCommunicationIdentifier: CommunicationIdentifierModel;\n /** The communication identifier of the user who initiated the call. */\n fromCommunicationIdentifier: CommunicationIdentifierModel;\n /** The Id of the server call */\n serverCallId: string;\n /** Display name of caller. */\n callerDisplayName: string;\n /** Custom Context of Incoming Call */\n customContext: AcsIncomingCallCustomContext;\n /** Signed incoming call context. */\n incomingCallContext: string;\n /** CorrelationId (CallId). */\n correlationId: string;\n}\n\n/** Identifies a participant in Azure Communication services. A participant is, for example, a phone number or an Azure communication user. This model is polymorphic: Apart from kind and rawId, at most one further property may be set which must match the kind enum value. */\nexport interface CommunicationIdentifierModel {\n /** The identifier kind. Only required in responses. */\n kind?: CommunicationIdentifierModelKind;\n /** Raw Id of the identifier. Optional in requests, required in responses. */\n rawId: string;\n /** The communication user. */\n communicationUser?: CommunicationUserIdentifierModel;\n /** The phone number. */\n phoneNumber?: PhoneNumberIdentifierModel;\n /** The Microsoft Teams user. */\n microsoftTeamsUser?: MicrosoftTeamsUserIdentifierModel;\n /** The Microsoft Teams application. */\n microsoftTeamsApp?: MicrosoftTeamsAppIdentifierModel;\n}\n\n/** A user that got created with an Azure Communication Services resource. */\nexport interface CommunicationUserIdentifierModel {\n /** The Id of the communication user. */\n id: string;\n}\n\n/** A phone number. */\nexport interface PhoneNumberIdentifierModel {\n /** The phone number in E.164 format. */\n value: string;\n}\n\n/** A Microsoft Teams user. */\nexport interface MicrosoftTeamsUserIdentifierModel {\n /** The Id of the Microsoft Teams user. If not anonymous, this is the AAD object Id of the user. */\n userId: string;\n /** True if the Microsoft Teams user is anonymous. By default false if missing. */\n isAnonymous?: boolean;\n /** The cloud that the Microsoft Teams user belongs to. By default 'public' if missing. */\n cloud?: CommunicationCloudEnvironmentModel;\n}\n\n/** A Microsoft Teams application. */\nexport interface MicrosoftTeamsAppIdentifierModel {\n /** The Id of the Microsoft Teams application. */\n appId: string;\n /** The cloud that the Microsoft Teams application belongs to. By default 'public' if missing. */\n cloud?: CommunicationCloudEnvironmentModel;\n}\n\n/** Custom Context of Incoming Call */\nexport interface AcsIncomingCallCustomContext {\n /** Sip Headers for incoming call */\n sipHeaders: { [propertyName: string]: string };\n /** Voip Headers for incoming call */\n voipHeaders: { [propertyName: string]: string };\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Communication.UserDisconnected event. */\nexport interface AcsUserDisconnectedEventData {\n /** The communication identifier of the user who was disconnected */\n userCommunicationIdentifier: CommunicationIdentifierModel;\n}\n\n/** Schema of common properties of all Router events */\nexport interface AcsRouterEventData {\n /** Router Event Job ID */\n jobId: string;\n /** Router Event Channel Reference */\n channelReference: string;\n /** Router Event Channel ID */\n channelId: string;\n}\n\n/** Router Communication Error */\nexport interface AcsRouterCommunicationError {\n /** Router Communication Error Code */\n code: string;\n /** Router Communication Error Message */\n message: string;\n /** Router Communication Error Target */\n target: string;\n /** Router Communication Inner Error */\n innererror: AcsRouterCommunicationError;\n /** List of Router Communication Errors */\n details: AcsRouterCommunicationError[];\n}\n\n/** Router Queue Details */\nexport interface AcsRouterQueueDetails {\n /** Router Queue Id */\n id: string;\n /** Router Queue Name */\n name: string;\n /** Router Queue Labels */\n labels: { [propertyName: string]: string };\n}\n\n/** Router Job Worker Selector */\nexport interface AcsRouterWorkerSelector {\n /** Router Job Worker Selector Key */\n key: string;\n /** Router Job Worker Selector Label Operator */\n labelOperator: AcsRouterLabelOperator;\n /** Router Job Worker Selector Value */\n labelValue: any;\n /** Router Job Worker Selector Time to Live in Seconds */\n ttlSeconds: number;\n /** Router Job Worker Selector State */\n state: AcsRouterWorkerSelectorState;\n /** Router Job Worker Selector Expiration Time */\n expirationTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerDeregistered event */\nexport interface AcsRouterWorkerDeregisteredEventData {\n /** Router Worker Deregistered Worker Id */\n workerId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerRegistered event */\nexport interface AcsRouterWorkerRegisteredEventData {\n /** Router Worker Registered Worker Id */\n workerId: string;\n /** Router Worker Registered Queue Info */\n queueAssignments: AcsRouterQueueDetails[];\n /** Router Worker Registered Channel Configuration */\n channelConfigurations: AcsRouterChannelConfiguration[];\n /** Router Worker Register Total Capacity */\n totalCapacity: number;\n /** Router Worker Registered Labels */\n labels: { [propertyName: string]: string };\n /** Router Worker Registered Tags */\n tags: { [propertyName: string]: string };\n}\n\n/** Router Channel Configuration */\nexport interface AcsRouterChannelConfiguration {\n /** Channel ID for Router Job */\n channelId: string;\n /** Capacity Cost Per Job for Router Job */\n capacityCostPerJob: number;\n /** Max Number of Jobs for Router Job */\n maxNumberOfJobs: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerUpdated event */\nexport interface AcsRouterWorkerUpdatedEventData {\n /** Router Worker Updated Worker Id */\n workerId: string;\n /** Router Worker Updated Queue Info */\n queueAssignments: AcsRouterQueueDetails[];\n /** Router Worker Updated Channel Configuration */\n channelConfigurations: AcsRouterChannelConfiguration[];\n /** Router Worker Updated Total Capacity */\n totalCapacity: number;\n /** Router Worker Updated Labels */\n labels: { [propertyName: string]: string };\n /** Router Worker Updated Tags */\n tags: { [propertyName: string]: string };\n /** Router Worker Properties Updated */\n updatedWorkerProperties: AcsRouterUpdatedWorkerProperty[];\n}\n\n/** Schema of common properties of all chat events */\nexport interface AcsChatEventBase {\n /** The communication identifier of the target user */\n recipientCommunicationIdentifier: CommunicationIdentifierModel;\n /** The transaction id will be used as co-relation vector */\n transactionId: string;\n /** The chat thread id */\n threadId: string;\n}\n\n/** Schema of common properties of all thread-level chat events */\nexport interface AcsChatEventInThreadBase {\n /** The transaction id will be used as co-relation vector */\n transactionId: string;\n /** The chat thread id */\n threadId: string;\n}\n\n/** Schema of the chat thread participant */\nexport interface AcsChatThreadParticipant {\n /** The name of the user */\n displayName: string;\n /** The communication identifier of the user */\n participantCommunicationIdentifier: CommunicationIdentifierModel;\n /** The metadata of the user */\n metadata: { [propertyName: string]: string };\n}\n\n/** Schema for details of a delivery attempt */\nexport interface AcsSmsDeliveryAttempt {\n /** TimeStamp when delivery was attempted */\n timestamp: string;\n /** Number of segments that were successfully delivered */\n segmentsSucceeded: number;\n /** Number of segments whose delivery failed */\n segmentsFailed: number;\n}\n\n/** Schema of common properties of all SMS events */\nexport interface AcsSmsEventBase {\n /** The identity of the SMS message */\n messageId: string;\n /** The identity of SMS message sender */\n from: string;\n /** The identity of SMS message receiver */\n to: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RecordingFileStatusUpdated event. */\nexport interface AcsRecordingFileStatusUpdatedEventData {\n /** The details of recording storage information */\n recordingStorageInfo: AcsRecordingStorageInfo;\n /** The time at which the recording started */\n recordingStartTime: string;\n /** The recording duration in milliseconds */\n recordingDurationMs: number;\n /** The recording content type- AudioVideo, or Audio */\n recordingContentType: RecordingContentType;\n /** The recording channel type - Mixed, Unmixed */\n recordingChannelType: RecordingChannelType;\n /** The recording format type - Mp4, Mp3, Wav */\n recordingFormatType: RecordingFormatType;\n /** The reason for ending recording session */\n sessionEndReason: string;\n}\n\n/** Schema for all properties of Recording Storage Information. */\nexport interface AcsRecordingStorageInfo {\n /** List of details of recording chunks information */\n recordingChunks: AcsRecordingChunkInfo[];\n}\n\n/** Schema for all properties of Recording Chunk Information. */\nexport interface AcsRecordingChunkInfo {\n /** The documentId of the recording chunk */\n documentId: string;\n /** The index of the recording chunk */\n index: number;\n /** The reason for ending the recording chunk */\n endReason: string;\n /** The location of the metadata for this chunk */\n metadataLocation: string;\n /** The location of the content for this chunk */\n contentLocation: string;\n /** The location to delete all chunk storage */\n deleteLocation: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.EmailDeliveryReportReceived event. */\nexport interface AcsEmailDeliveryReportReceivedEventData {\n /** The Sender Email Address */\n sender: string;\n /** The recipient Email Address */\n recipient: string;\n /** The Id of the email been sent */\n messageId: string;\n /** The status of the email. Any value other than Delivered is considered failed. */\n status: AcsEmailDeliveryReportStatus;\n /** Detailed information about the status if any */\n deliveryStatusDetails: AcsEmailDeliveryReportStatusDetails;\n /** The time at which the email delivery report received timestamp */\n deliveryAttemptTimestamp: string;\n}\n\n/** Detailed information about the status if any */\nexport interface AcsEmailDeliveryReportStatusDetails {\n /** Detailed status message */\n statusMessage: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.EmailEngagementTrackingReportReceived event. */\nexport interface AcsEmailEngagementTrackingReportReceivedEventData {\n /** The Sender Email Address */\n sender: string;\n /** The Recipient Email Address */\n recipient: string;\n /** The Id of the email that has been sent */\n messageId: string;\n /** The time at which the user interacted with the email */\n userActionTimestamp: string;\n /** The context of the type of engagement user had with email */\n engagementContext: string;\n /** The user agent interacting with the email */\n userAgent: string;\n /** The type of engagement user have with email */\n engagement: AcsUserEngagement;\n}\n\n/** Message Media Content */\nexport interface AcsMessageMediaContent {\n /** The MIME type of the file this media represents */\n mimeType: string;\n /** The media identifier */\n mediaId: string;\n /** The filename of the underlying media file as specified when uploaded */\n fileName: string;\n /** The caption for the media object, if supported and provided */\n caption: string;\n}\n\n/** Message Context */\nexport interface AcsMessageContext {\n /** The WhatsApp ID for the customer who replied to an inbound message. */\n from: string;\n /** The message ID for the sent message for an inbound reply */\n messageId: string;\n}\n\n/** Message Button Content */\nexport interface AcsMessageButtonContent {\n /** The Text of the button */\n text: string;\n /** The Payload of the button which was clicked by the user, setup by the business */\n payload: string;\n}\n\n/** Message Interactive Content */\nexport interface AcsMessageInteractiveContent {\n /** The Message interactive reply type */\n replyKind: AcsInteractiveReplyKind;\n /** The Message Sent when a customer clicks a button */\n buttonReply: AcsMessageInteractiveButtonReplyContent;\n /** The Message Sent when a customer selects an item from a list */\n listReply: AcsMessageInteractiveListReplyContent;\n}\n\n/** Message Interactive button reply content for a user to business message */\nexport interface AcsMessageInteractiveButtonReplyContent {\n /** The ID of the button */\n buttonId: string;\n /** The title of the button */\n title: string;\n}\n\n/** Message Interactive list reply content for a user to business message */\nexport interface AcsMessageInteractiveListReplyContent {\n /** The ID of the selected list item */\n listItemId: string;\n /** The title of the selected list item */\n title: string;\n /** The sescription of the selected row */\n description: string;\n}\n\n/** Schema of common properties of all chat thread events */\nexport interface AcsMessageEventData {\n /** The message sender */\n from: string;\n /** The message recipient */\n to: string;\n /** The time message was received */\n receivedTimestamp: string;\n /** The channel event error */\n error: AcsMessageChannelEventError;\n}\n\n/** Message Channel Event Error */\nexport interface AcsMessageChannelEventError {\n /** The channel error code */\n channelCode: string;\n /** The channel error message */\n channelMessage: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.PolicyInsights.PolicyStateCreated event. */\nexport interface PolicyInsightsPolicyStateCreatedEventData {\n /** The time that the resource was scanned by Azure Policy in the Universal ISO 8601 DateTime format yyyy-MM-ddTHH:mm:ss.fffffffZ. */\n timestamp: string;\n /** The resource ID of the policy assignment. */\n policyAssignmentId: string;\n /** The resource ID of the policy definition. */\n policyDefinitionId: string;\n /** The reference ID for the policy definition inside the initiative definition, if the policy assignment is for an initiative. May be empty. */\n policyDefinitionReferenceId: string;\n /** The compliance state of the resource with respect to the policy assignment. */\n complianceState: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The compliance reason code. May be empty. */\n complianceReasonCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.PolicyInsights.PolicyStateChanged event. */\nexport interface PolicyInsightsPolicyStateChangedEventData {\n /** The time that the resource was scanned by Azure Policy in the Universal ISO 8601 DateTime format yyyy-MM-ddTHH:mm:ss.fffffffZ. */\n timestamp: string;\n /** The resource ID of the policy assignment. */\n policyAssignmentId: string;\n /** The resource ID of the policy definition. */\n policyDefinitionId: string;\n /** The reference ID for the policy definition inside the initiative definition, if the policy assignment is for an initiative. May be empty. */\n policyDefinitionReferenceId: string;\n /** The compliance state of the resource with respect to the policy assignment. */\n complianceState: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The compliance reason code. May be empty. */\n complianceReasonCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.PolicyInsights.PolicyStateDeleted event. */\nexport interface PolicyInsightsPolicyStateDeletedEventData {\n /** The time that the resource was scanned by Azure Policy in the Universal ISO 8601 DateTime format yyyy-MM-ddTHH:mm:ss.fffffffZ. */\n timestamp: string;\n /** The resource ID of the policy assignment. */\n policyAssignmentId: string;\n /** The resource ID of the policy definition. */\n policyDefinitionId: string;\n /** The reference ID for the policy definition inside the initiative definition, if the policy assignment is for an initiative. May be empty. */\n policyDefinitionReferenceId: string;\n /** The compliance state of the resource with respect to the policy assignment. */\n complianceState: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The compliance reason code. May be empty. */\n complianceReasonCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NewKubernetesVersionAvailable event */\nexport interface ContainerServiceNewKubernetesVersionAvailableEventData {\n /** The highest PATCH Kubernetes version for the highest MINOR version supported by ManagedCluster resource */\n latestSupportedKubernetesVersion: string;\n /** The highest PATCH Kubernetes version for the MINOR version considered stable for the ManagedCluster resource */\n latestStableKubernetesVersion: string;\n /** The highest PATCH Kubernetes version for the lowest applicable MINOR version available for the ManagedCluster resource */\n lowestMinorKubernetesVersion: string;\n /** The highest PATCH Kubernetes version considered preview for the ManagedCluster resource. There might not be any version in preview at the time of publishing the event */\n latestPreviewKubernetesVersion: string;\n}\n\n/** Schema of common properties of cluster support events */\nexport interface ContainerServiceClusterSupportEventData {\n /** The Kubernetes version of the ManagedCluster resource */\n kubernetesVersion: string;\n}\n\n/** Schema of common properties of node pool rolling events */\nexport interface ContainerServiceNodePoolRollingEventData {\n /** The name of the node pool in the ManagedCluster resource */\n nodePoolName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.UserCreated event. */\nexport interface ApiManagementUserCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.UserUpdated event. */\nexport interface ApiManagementUserUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.UserDeleted event. */\nexport interface ApiManagementUserDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.SubscriptionCreated event. */\nexport interface ApiManagementSubscriptionCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.SubscriptionUpdated event. */\nexport interface ApiManagementSubscriptionUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.SubscriptionDeleted event. */\nexport interface ApiManagementSubscriptionDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductCreated event. */\nexport interface ApiManagementProductCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductUpdated event. */\nexport interface ApiManagementProductUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductDeleted event. */\nexport interface ApiManagementProductDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APICreated event. */\nexport interface ApiManagementApiCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIUpdated event. */\nexport interface ApiManagementApiUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIDeleted event. */\nexport interface ApiManagementApiDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIReleaseCreated event. */\nexport interface ApiManagementApiReleaseCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIReleaseUpdated event. */\nexport interface ApiManagementApiReleaseUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIReleaseDeleted event. */\nexport interface ApiManagementApiReleaseDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCreated event. */\nexport interface ApiManagementGatewayCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayUpdated event. */\nexport interface ApiManagementGatewayUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayDeleted event. */\nexport interface ApiManagementGatewayDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayHostnameConfigurationCreated event. */\nexport interface ApiManagementGatewayHostnameConfigurationCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/hostnameConfigurations/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayHostnameConfigurationUpdated event. */\nexport interface ApiManagementGatewayHostnameConfigurationUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/hostnameConfigurations/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayHostnameConfigurationDeleted event. */\nexport interface ApiManagementGatewayHostnameConfigurationDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/hostnameConfigurations/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCertificateAuthorityCreated event. */\nexport interface ApiManagementGatewayCertificateAuthorityCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/certificateAuthorities/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCertificateAuthorityUpdated event. */\nexport interface ApiManagementGatewayCertificateAuthorityUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/certificateAuthorities/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCertificateAuthorityDeleted event. */\nexport interface ApiManagementGatewayCertificateAuthorityDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/certificateAuthorities/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayAPIAdded event. */\nexport interface ApiManagementGatewayApiAddedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/apis/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayAPIRemoved event. */\nexport interface ApiManagementGatewayApiRemovedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/apis/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceCreated event. */\nexport interface HealthcareFhirResourceCreatedEventData {\n /** Type of HL7 FHIR resource. */\n resourceType: HealthcareFhirResourceType;\n /** Domain name of FHIR account for this resource. */\n resourceFhirAccount: string;\n /** Id of HL7 FHIR resource. */\n resourceFhirId: string;\n /** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */\n resourceVersionId: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceUpdated event. */\nexport interface HealthcareFhirResourceUpdatedEventData {\n /** Type of HL7 FHIR resource. */\n resourceType: HealthcareFhirResourceType;\n /** Domain name of FHIR account for this resource. */\n resourceFhirAccount: string;\n /** Id of HL7 FHIR resource. */\n resourceFhirId: string;\n /** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */\n resourceVersionId: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceDeleted event. */\nexport interface HealthcareFhirResourceDeletedEventData {\n /** Type of HL7 FHIR resource. */\n resourceType: HealthcareFhirResourceType;\n /** Domain name of FHIR account for this resource. */\n resourceFhirAccount: string;\n /** Id of HL7 FHIR resource. */\n resourceFhirId: string;\n /** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */\n resourceVersionId: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageCreated event. */\nexport interface HealthcareDicomImageCreatedEventData {\n /** Data partition name */\n partitionName: string;\n /** Unique identifier for the Study */\n imageStudyInstanceUid: string;\n /** Unique identifier for the Series */\n imageSeriesInstanceUid: string;\n /** Unique identifier for the DICOM Image */\n imageSopInstanceUid: string;\n /** Domain name of the DICOM account for this image. */\n serviceHostName: string;\n /** Sequence number of the DICOM Service within Azure Health Data Services. It is unique for every image creation and deletion within the service. */\n sequenceNumber: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageUpdated event. */\nexport interface HealthcareDicomImageUpdatedEventData {\n /** Data partition name */\n partitionName: string;\n /** Unique identifier for the Study */\n imageStudyInstanceUid: string;\n /** Unique identifier for the Series */\n imageSeriesInstanceUid: string;\n /** Unique identifier for the DICOM Image */\n imageSopInstanceUid: string;\n /** Domain name of the DICOM account for this image. */\n serviceHostName: string;\n /** Sequence number of the DICOM Service within Azure Health Data Services. It is unique for every image creation, updation and deletion within the service. */\n sequenceNumber: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageDeleted event. */\nexport interface HealthcareDicomImageDeletedEventData {\n /** Data partition name */\n partitionName: string;\n /** Unique identifier for the Study */\n imageStudyInstanceUid: string;\n /** Unique identifier for the Series */\n imageSeriesInstanceUid: string;\n /** Unique identifier for the DICOM Image */\n imageSopInstanceUid: string;\n /** Host name of the DICOM account for this image. */\n serviceHostName: string;\n /** Sequence number of the DICOM Service within Azure Health Data Services. It is unique for every image creation and deletion within the service. */\n sequenceNumber: number;\n}\n\n/** Describes the schema of the properties under resource info which are common across all ARN system topic events */\nexport interface ResourceNotificationsResourceUpdatedDetails {\n /** id of the resource for which the event is being emitted */\n id: string;\n /** name of the resource for which the event is being emitted */\n name: string;\n /** the type of the resource for which the event is being emitted */\n type: string;\n /** the location of the resource for which the event is being emitted */\n location: string;\n /** the tags on the resource for which the event is being emitted */\n tags: { [propertyName: string]: string };\n /** properties in the payload of the resource for which the event is being emitted */\n properties: { [propertyName: string]: any };\n}\n\n/** details of operational info */\nexport interface ResourceNotificationsOperationalDetails {\n /** Date and Time when resource was updated */\n resourceEventTime: string;\n}\n\n/** Describes the schema of the common properties across all ARN system topic events */\nexport interface ResourceNotificationsResourceUpdatedEventData {\n /** resourceInfo details for update event */\n resourceDetails: ResourceNotificationsResourceUpdatedDetails;\n /** details about operational info */\n operationalDetails: ResourceNotificationsOperationalDetails;\n /** api version of the resource properties bag */\n apiVersion: string;\n}\n\n/** Describes the schema of the properties under resource info which are common across all ARN system topic delete events */\nexport interface ResourceNotificationsResourceDeletedDetails {\n /** id of the resource for which the event is being emitted */\n id: string;\n /** name of the resource for which the event is being emitted */\n name: string;\n /** the type of the resource for which the event is being emitted */\n type: string;\n}\n\n/** Describes the schema of the common properties across all ARN system topic delete events */\nexport interface ResourceNotificationsResourceDeletedEventData {\n /** resourceInfo details for delete event */\n resourceDetails: ResourceNotificationsResourceDeletedDetails;\n /** details about operational info */\n operationalDetails: ResourceNotificationsOperationalDetails;\n}\n\n/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/privateClouds events. */\nexport interface AvsPrivateCloudEventData {\n /** Id of the operation that caused this event. */\n operationId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/clusters events. */\nexport interface AvsClusterEventData {\n /** Id of the operation that caused this event. */\n operationId: string;\n /** Hosts added to the cluster in this event, if any. */\n addedHostNames: string[];\n /** Hosts removed to the cluster in this event, if any. */\n removedHostNames: string[];\n /** Hosts in Maintenance mode in the cluster, if any. */\n inMaintenanceHostNames: string[];\n}\n\n/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/scriptExecutions events. */\nexport interface AvsScriptExecutionEventData {\n /** Id of the operation that caused this event. */\n operationId: string;\n /** Cmdlet referenced in the execution that caused this event. */\n cmdletId: string;\n /** Stdout outputs from the execution, if any. */\n output: string[];\n}\n\n/** Schema of the data property of an EventGridEvent for a Microsoft.ApiCenter.ApiDefinitionAdded event. */\nexport interface ApiCenterApiDefinitionAddedEventData {\n /** API definition title. */\n title: string;\n /** API definition description. */\n description: string;\n /** API specification details. */\n specification: ApiCenterApiSpecification;\n}\n\n/** API specification details. */\nexport interface ApiCenterApiSpecification {\n /** Specification name. */\n name: string;\n /** Specification version. */\n version: string;\n}\n\n/** Schema of the data property of an EventGridEvent for a Microsoft.ApiCenter.ApiDefinitionUpdated event. */\nexport interface ApiCenterApiDefinitionUpdatedEventData {\n /** API definition title. */\n title: string;\n /** API definition description. */\n description: string;\n /** API specification details. */\n specification: ApiCenterApiSpecification;\n}\n\n/** Event data for Microsoft.EventGrid.MQTTClientCreatedOrUpdated event. */\nexport type EventGridMqttClientCreatedOrUpdatedEventData = EventGridMqttClientEventData & {\n /** Configured state of the client. The value could be Enabled or Disabled */\n state: EventGridMqttClientState;\n /** Time the client resource is created based on the provider's UTC time. */\n createdOn: string;\n /** Time the client resource is last updated based on the provider's UTC time. If the client resource was never updated, this value is identical to the value of the 'createdOn' property. */\n updatedOn: string;\n /** The key-value attributes that are assigned to the client resource. */\n attributes: { [propertyName: string]: string };\n};\n\n/** Event data for Microsoft.EventGrid.MQTTClientDeleted event. */\nexport type EventGridMqttClientDeletedEventData = EventGridMqttClientEventData & {};\n\n/** Event data for Microsoft.EventGrid.MQTTClientSessionConnected event. */\nexport type EventGridMqttClientSessionConnectedEventData = EventGridMqttClientEventData & {\n /** Unique identifier for the MQTT client's session. This case-sensitive string can be up to 128 characters long, and supports UTF-8 characters. */\n clientSessionName: string;\n /** A number that helps indicate order of MQTT client session connected or disconnected events. Latest event will have a sequence number that is higher than the previous event. */\n sequenceNumber: number;\n};\n\n/** Event data for Microsoft.EventGrid.MQTTClientSessionDisconnected event. */\nexport type EventGridMqttClientSessionDisconnectedEventData = EventGridMqttClientEventData & {\n /** Unique identifier for the MQTT client's session. This case-sensitive string can be up to 128 characters long, and supports UTF-8 characters. */\n clientSessionName: string;\n /** A number that helps indicate order of MQTT client session connected or disconnected events. Latest event will have a sequence number that is higher than the previous event. */\n sequenceNumber: number;\n /** Reason for the disconnection of the MQTT client's session. The value could be one of the values in the disconnection reasons table. */\n disconnectionReason: EventGridMqttClientDisconnectionReason;\n};\n\n/** Event data for Microsoft.Devices.DeviceCreated event. */\nexport type IotHubDeviceCreatedEventData = DeviceLifeCycleEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceDeleted event. */\nexport type IotHubDeviceDeletedEventData = DeviceLifeCycleEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceConnected event. */\nexport type IotHubDeviceConnectedEventData = DeviceConnectionStateEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceDisconnected event. */\nexport type IotHubDeviceDisconnectedEventData = DeviceConnectionStateEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceTelemetry event. */\nexport type IotHubDeviceTelemetryEventData = DeviceTelemetryEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ImagePushed event. */\nexport type ContainerRegistryImagePushedEventData = ContainerRegistryEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ImageDeleted event. */\nexport type ContainerRegistryImageDeletedEventData = ContainerRegistryEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ChartPushed event. */\nexport type ContainerRegistryChartPushedEventData = ContainerRegistryArtifactEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ChartDeleted event. */\nexport type ContainerRegistryChartDeletedEventData = ContainerRegistryArtifactEventData & {};\n\n/** Job scheduled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobScheduled event. */\nexport type MediaJobScheduledEventData = MediaJobStateChangeEventData & {};\n\n/** Job processing event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobProcessing event. */\nexport type MediaJobProcessingEventData = MediaJobStateChangeEventData & {};\n\n/** Job canceling event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobCanceling event. */\nexport type MediaJobCancelingEventData = MediaJobStateChangeEventData & {};\n\n/** Job finished event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobFinished event. */\nexport type MediaJobFinishedEventData = MediaJobStateChangeEventData & {\n /** Gets the Job outputs. */\n outputs: MediaJobOutputUnion[];\n};\n\n/** Job canceled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobCanceled event. */\nexport type MediaJobCanceledEventData = MediaJobStateChangeEventData & {\n /** Gets the Job outputs. */\n outputs: MediaJobOutputUnion[];\n};\n\n/** Job error state event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobErrored event. */\nexport type MediaJobErroredEventData = MediaJobStateChangeEventData & {\n /** Gets the Job outputs. */\n outputs: MediaJobOutputUnion[];\n};\n\n/** The event data for a Job output asset. */\nexport type MediaJobOutputAsset = MediaJobOutput & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n odataType: \"#Microsoft.Media.JobOutputAsset\";\n /** Gets the Job output asset name. */\n assetName: string;\n};\n\n/** Job output canceled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputCanceled event. */\nexport type MediaJobOutputCanceledEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output canceling event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputCanceling event. */\nexport type MediaJobOutputCancelingEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output error event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputErrored event. */\nexport type MediaJobOutputErroredEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output finished event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputFinished event. */\nexport type MediaJobOutputFinishedEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output processing event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputProcessing event. */\nexport type MediaJobOutputProcessingEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output scheduled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputScheduled event. */\nexport type MediaJobOutputScheduledEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceEntered event. */\nexport type MapsGeofenceEnteredEventData = MapsGeofenceEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceExited event. */\nexport type MapsGeofenceExitedEventData = MapsGeofenceEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceResult event. */\nexport type MapsGeofenceResultEventData = MapsGeofenceEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.SnapshotCreated event. */\nexport type AppConfigurationSnapshotCreatedEventData = AppConfigurationSnapshotEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.SnapshotModified event. */\nexport type AppConfigurationSnapshotModifiedEventData = AppConfigurationSnapshotEventData & {};\n\n/** Schema of common properties of all Router Job events */\nexport type AcsRouterJobEventData = AcsRouterEventData & {\n /** Router Job events Queue Id */\n queueId: string;\n /** Router Job events Labels */\n labels: { [propertyName: string]: string };\n /** Router Jobs events Tags */\n tags: { [propertyName: string]: string };\n};\n\n/** Schema of common properties of all Router Worker events */\nexport type AcsRouterWorkerEventData = AcsRouterEventData & {\n /** Router Worker events Worker Id */\n workerId: string;\n};\n\n/** Schema of common properties of all chat message events */\nexport type AcsChatMessageEventBase = AcsChatEventBase & {\n /** The chat message id */\n messageId: string;\n /** The communication identifier of the sender */\n senderCommunicationIdentifier: CommunicationIdentifierModel;\n /** The display name of the sender */\n senderDisplayName: string;\n /** The original compose time of the message */\n composeTime: string;\n /** The type of the message */\n type: string;\n /** The version of the message */\n version: number;\n};\n\n/** Schema of common properties of all chat thread events */\nexport type AcsChatThreadEventBase = AcsChatEventBase & {\n /** The original creation time of the thread */\n createTime: string;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of common properties of all thread-level chat message events */\nexport type AcsChatMessageEventInThreadBase = AcsChatEventInThreadBase & {\n /** The chat message id */\n messageId: string;\n /** The communication identifier of the sender */\n senderCommunicationIdentifier: CommunicationIdentifierModel;\n /** The display name of the sender */\n senderDisplayName: string;\n /** The original compose time of the message */\n composeTime: string;\n /** The type of the message */\n type: string;\n /** The version of the message */\n version: number;\n};\n\n/** Schema of common properties of all chat thread events */\nexport type AcsChatThreadEventInThreadBase = AcsChatEventInThreadBase & {\n /** The original creation time of the thread */\n createTime: string;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadParticipantAdded event. */\nexport type AcsChatParticipantAddedToThreadEventData = AcsChatEventInThreadBase & {\n /** The time at which the user was added to the thread */\n time: string;\n /** The communication identifier of the user who added the user */\n addedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was added */\n participantAdded: AcsChatThreadParticipant;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadParticipantRemoved event. */\nexport type AcsChatParticipantRemovedFromThreadEventData = AcsChatEventInThreadBase & {\n /** The time at which the user was removed to the thread */\n time: string;\n /** The communication identifier of the user who removed the user */\n removedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was removed */\n participantRemoved: AcsChatThreadParticipant;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.SMSDeliveryReportReceived event. */\nexport type AcsSmsDeliveryReportReceivedEventData = AcsSmsEventBase & {\n /** Status of Delivery */\n deliveryStatus: string;\n /** Details about Delivery Status */\n deliveryStatusDetails: string;\n /** List of details of delivery attempts made */\n deliveryAttempts: AcsSmsDeliveryAttempt[];\n /** The time at which the SMS delivery report was received */\n receivedTimestamp: string;\n /** Customer Content */\n tag: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.SMSReceived event. */\nexport type AcsSmsReceivedEventData = AcsSmsEventBase & {\n /** The SMS content */\n message: string;\n /** The time at which the SMS was received */\n receivedTimestamp: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.AdvancedMessageReceived event. */\nexport type AcsMessageReceivedEventData = AcsMessageEventData & {\n /** The received message content */\n content: string;\n /** The received message channel Kind */\n channelKind: AcsMessageChannelKind;\n /** The received message media content */\n mediaContent: AcsMessageMediaContent;\n /** The received message context */\n context: AcsMessageContext;\n /** The received message button content */\n button: AcsMessageButtonContent;\n /** The received message interactive content */\n interactiveContent: AcsMessageInteractiveContent;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.AdvancedMessageDeliveryStatusUpdated event. */\nexport type AcsMessageDeliveryStatusUpdatedEventData = AcsMessageEventData & {\n /** The message id */\n messageId: string;\n /** The updated message status */\n status: AcsMessageDeliveryStatus;\n /** The updated message channel type */\n channelKind: AcsMessageChannelKind;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.ClusterSupportEnded event */\nexport type ContainerServiceClusterSupportEndedEventData = ContainerServiceClusterSupportEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.ClusterSupportEnding event */\nexport type ContainerServiceClusterSupportEndingEventData = ContainerServiceClusterSupportEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NodePoolRollingStarted event */\nexport type ContainerServiceNodePoolRollingStartedEventData = ContainerServiceNodePoolRollingEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NodePoolRollingSucceeded event */\nexport type ContainerServiceNodePoolRollingSucceededEventData = ContainerServiceNodePoolRollingEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NodePoolRollingFailed event */\nexport type ContainerServiceNodePoolRollingFailedEventData = ContainerServiceNodePoolRollingEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.HealthResources.AvailabilityStatusChanged event. */\nexport type ResourceNotificationsHealthResourcesAvailabilityStatusChangedEventData = ResourceNotificationsResourceUpdatedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.HealthResources.ResourceAnnotated event. */\nexport type ResourceNotificationsHealthResourcesAnnotatedEventData = ResourceNotificationsResourceUpdatedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.Resources.CreatedOrUpdated event. */\nexport type ResourceNotificationsResourceManagementCreatedOrUpdatedEventData = ResourceNotificationsResourceUpdatedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.Resources.Deleted event. */\nexport type ResourceNotificationsResourceManagementDeletedEventData = ResourceNotificationsResourceDeletedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudUpdating event. */\nexport type AvsPrivateCloudUpdatingEventData = AvsPrivateCloudEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudUpdated event. */\nexport type AvsPrivateCloudUpdatedEventData = AvsPrivateCloudEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudFailed event. */\nexport type AvsPrivateCloudFailedEventData = AvsPrivateCloudEventData & {\n /** Failure reason of an event. */\n failureMessage: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterCreated event. */\nexport type AvsClusterCreatedEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterDeleted event. */\nexport type AvsClusterDeletedEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterUpdating event. */\nexport type AvsClusterUpdatingEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterUpdated event. */\nexport type AvsClusterUpdatedEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterFailed event. */\nexport type AvsClusterFailedEventData = AvsClusterEventData & {\n /** Failure reason of an event. */\n failureMessage: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionStarted event. */\nexport type AvsScriptExecutionStartedEventData = AvsScriptExecutionEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionFinished event. */\nexport type AvsScriptExecutionFinishedEventData = AvsScriptExecutionEventData & {\n /** Named outputs of completed execution, if any. */\n namedOutputs: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionCancelled event. */\nexport type AvsScriptExecutionCancelledEventData = AvsScriptExecutionEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionFailed event. */\nexport type AvsScriptExecutionFailedEventData = AvsScriptExecutionEventData & {\n /** Failure reason of an event. */\n failureMessage: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobCancelled event */\nexport type AcsRouterJobCancelledEventData = AcsRouterJobEventData & {\n /** Router Job Note */\n note: string;\n /** Router Job Disposition Code */\n dispositionCode: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClassificationFailed event */\nexport type AcsRouterJobClassificationFailedEventData = AcsRouterJobEventData & {\n /** Router Job Classification Policy Id */\n classificationPolicyId: string;\n /** Router Job Classification Failed Errors */\n errors: AcsRouterCommunicationError[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClassified event */\nexport type AcsRouterJobClassifiedEventData = AcsRouterJobEventData & {\n /** Router Job Queue Info */\n queueDetails: AcsRouterQueueDetails;\n /** Router Job Classification Policy Id */\n classificationPolicyId: string;\n /** Router Job Priority */\n priority: number;\n /** Router Job Attached Worker Selector */\n attachedWorkerSelectors: AcsRouterWorkerSelector[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClosed event */\nexport type AcsRouterJobClosedEventData = AcsRouterJobEventData & {\n /** Router Job Closed Assignment Id */\n assignmentId: string;\n /** Router Job Closed Worker Id */\n workerId: string;\n /** Router Job Closed Disposition Code */\n dispositionCode: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobCompleted event */\nexport type AcsRouterJobCompletedEventData = AcsRouterJobEventData & {\n /** Router Job Completed Assignment Id */\n assignmentId: string;\n /** Router Job Completed Worker Id */\n workerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobDeleted event */\nexport type AcsRouterJobDeletedEventData = AcsRouterJobEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobExceptionTriggered event */\nexport type AcsRouterJobExceptionTriggeredEventData = AcsRouterJobEventData & {\n /** Router Job Exception Triggered Rule Key */\n ruleKey: string;\n /** Router Job Exception Triggered Rule Id */\n exceptionRuleId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobQueued event */\nexport type AcsRouterJobQueuedEventData = AcsRouterJobEventData & {\n /** Router Job Priority */\n priority: number;\n /** Router Job Queued Attached Worker Selector */\n attachedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Queued Requested Worker Selector */\n requestedWorkerSelectors: AcsRouterWorkerSelector[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobReceived event */\nexport type AcsRouterJobReceivedEventData = AcsRouterJobEventData & {\n /** Router Job Received Job Status */\n jobStatus?: AcsRouterJobStatus;\n /** Router Job Classification Policy Id */\n classificationPolicyId?: string;\n /** Router Job Priority */\n priority?: number;\n /** Router Job Received Requested Worker Selectors */\n requestedWorkerSelectors?: AcsRouterWorkerSelector[];\n /** Router Job Received Scheduled Time in UTC */\n scheduledOn?: string;\n /** Unavailable For Matching for Router Job Received */\n unavailableForMatching: boolean;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobSchedulingFailed event */\nexport type AcsRouterJobSchedulingFailedEventData = AcsRouterJobEventData & {\n /** Router Job Priority */\n priority: number;\n /** Router Job Scheduling Failed Attached Worker Selector Expired */\n expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Scheduling Failed Requested Worker Selector Expired */\n expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Scheduling Failed Scheduled Time in UTC */\n scheduledOn: string;\n /** Router Job Scheduling Failed Reason */\n failureReason: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobUnassigned event */\nexport type AcsRouterJobUnassignedEventData = AcsRouterJobEventData & {\n /** Router Job Unassigned Assignment Id */\n assignmentId: string;\n /** Router Job Unassigned Worker Id */\n workerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobWaitingForActivation event */\nexport type AcsRouterJobWaitingForActivationEventData = AcsRouterJobEventData & {\n /** Router Job Waiting For Activation Priority */\n priority?: number;\n /** Router Job Waiting For Activation Worker Selector Expired */\n expiredAttachedWorkerSelectors?: AcsRouterWorkerSelector[];\n /** Router Job Waiting For Activation Requested Worker Selector Expired */\n expiredRequestedWorkerSelectors?: AcsRouterWorkerSelector[];\n /** Router Job Waiting For Activation Scheduled Time in UTC */\n scheduledOn?: string;\n /** Router Job Waiting For Activation Unavailable For Matching */\n unavailableForMatching: boolean;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobWorkerSelectorsExpired event */\nexport type AcsRouterJobWorkerSelectorsExpiredEventData = AcsRouterJobEventData & {\n /** Router Job Worker Selectors Expired Requested Worker Selectors */\n expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Worker Selectors Expired Attached Worker Selectors */\n expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerDeleted event */\nexport type AcsRouterWorkerDeletedEventData = AcsRouterWorkerEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferAccepted event */\nexport type AcsRouterWorkerOfferAcceptedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Accepted Queue Id */\n queueId: string;\n /** Router Worker Offer Accepted Offer Id */\n offerId: string;\n /** Router Worker Offer Accepted Assignment Id */\n assignmentId: string;\n /** Router Worker Offer Accepted Job Priority */\n jobPriority: number;\n /** Router Worker Offer Accepted Worker Labels */\n workerLabels: { [propertyName: string]: string };\n /** Router Worker Offer Accepted Worker Tags */\n workerTags: { [propertyName: string]: string };\n /** Router Worker Offer Accepted Job Labels */\n jobLabels: { [propertyName: string]: string };\n /** Router Worker Offer Accepted Job Tags */\n jobTags: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferDeclined event */\nexport type AcsRouterWorkerOfferDeclinedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Declined Queue Id */\n queueId: string;\n /** Router Worker Offer Declined Offer Id */\n offerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferExpired event */\nexport type AcsRouterWorkerOfferExpiredEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Expired Queue Id */\n queueId: string;\n /** Router Worker Offer Expired Offer Id */\n offerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferIssued event */\nexport type AcsRouterWorkerOfferIssuedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Issued Queue Id */\n queueId: string;\n /** Router Worker Offer Issued Offer Id */\n offerId: string;\n /** Router Worker Offer Issued Job Priority */\n jobPriority: number;\n /** Router Worker Offer Issued Worker Labels */\n workerLabels: { [propertyName: string]: string };\n /** Router Worker Offer Issued Time in UTC */\n offeredOn: string;\n /** Router Worker Offer Issued Expiration Time in UTC */\n expiresOn: string;\n /** Router Worker Offer Issued Worker Tags */\n workerTags: { [propertyName: string]: string };\n /** Router Worker Offer Issued Job Labels */\n jobLabels: { [propertyName: string]: string };\n /** Router Worker Offer Issued Job Tags */\n jobTags: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferRevoked event */\nexport type AcsRouterWorkerOfferRevokedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Revoked Queue Id */\n queueId: string;\n /** Router Worker Offer Revoked Offer Id */\n offerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageReceived event. */\nexport type AcsChatMessageReceivedEventData = AcsChatMessageEventBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageEdited event. */\nexport type AcsChatMessageEditedEventData = AcsChatMessageEventBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n /** The time at which the message was edited */\n editTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageDeleted event. */\nexport type AcsChatMessageDeletedEventData = AcsChatMessageEventBase & {\n /** The time at which the message was deleted */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadCreatedWithUser event. */\nexport type AcsChatThreadCreatedWithUserEventData = AcsChatThreadEventBase & {\n /** The communication identifier of the user who created the thread */\n createdByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The thread properties */\n properties: { [propertyName: string]: any };\n /** The thread metadata */\n metadata: { [propertyName: string]: string };\n /** The list of properties of participants who are part of the thread */\n participants: AcsChatThreadParticipant[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadWithUserDeleted event. */\nexport type AcsChatThreadWithUserDeletedEventData = AcsChatThreadEventBase & {\n /** The communication identifier of the user who deleted the thread */\n deletedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The deletion time of the thread */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadPropertiesUpdatedPerUser event. */\nexport type AcsChatThreadPropertiesUpdatedPerUserEventData = AcsChatThreadEventBase & {\n /** The communication identifier of the user who updated the thread properties */\n editedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The time at which the properties of the thread were updated */\n editTime: string;\n /** The thread metadata */\n metadata: { [propertyName: string]: string };\n /** The updated thread properties */\n properties: { [propertyName: string]: any };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatParticipantAddedToThreadWithUser event. */\nexport type AcsChatParticipantAddedToThreadWithUserEventData = AcsChatThreadEventBase & {\n /** The time at which the user was added to the thread */\n time: string;\n /** The communication identifier of the user who added the user */\n addedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was added */\n participantAdded: AcsChatThreadParticipant;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatParticipantRemovedFromThreadWithUser event. */\nexport type AcsChatParticipantRemovedFromThreadWithUserEventData = AcsChatThreadEventBase & {\n /** The time at which the user was removed to the thread */\n time: string;\n /** The communication identifier of the user who removed the user */\n removedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was removed */\n participantRemoved: AcsChatThreadParticipant;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageReceivedInThread event. */\nexport type AcsChatMessageReceivedInThreadEventData = AcsChatMessageEventInThreadBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageEditedInThread event. */\nexport type AcsChatMessageEditedInThreadEventData = AcsChatMessageEventInThreadBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n /** The time at which the message was edited */\n editTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageDeletedInThread event. */\nexport type AcsChatMessageDeletedInThreadEventData = AcsChatMessageEventInThreadBase & {\n /** The time at which the message was deleted */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadCreated event. */\nexport type AcsChatThreadCreatedEventData = AcsChatThreadEventInThreadBase & {\n /** The communication identifier of the user who created the thread */\n createdByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The thread properties */\n properties: { [propertyName: string]: any };\n /** The chat thread created metadata */\n metadata: { [propertyName: string]: string };\n /** The list of properties of participants who are part of the thread */\n participants: AcsChatThreadParticipant[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadDeleted event. */\nexport type AcsChatThreadDeletedEventData = AcsChatThreadEventInThreadBase & {\n /** The communication identifier of the user who deleted the thread */\n deletedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The deletion time of the thread */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadPropertiesUpdated event. */\nexport type AcsChatThreadPropertiesUpdatedEventData = AcsChatThreadEventInThreadBase & {\n /** The communication identifier of the user who updated the thread properties */\n editedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The time at which the properties of the thread were updated */\n editTime: string;\n /** The updated thread properties */\n properties: { [propertyName: string]: any };\n /** The thread metadata */\n metadata: { [propertyName: string]: string };\n};\n\n/** Known values of {@link StorageBlobAccessTier} that the service accepts. */\nexport const enum KnownStorageBlobAccessTier {\n /** The blob is in access tier Hot */\n Hot = \"Hot\",\n /** The blob is in access tier Cool */\n Cool = \"Cool\",\n /** The blob is in access tier Cold */\n Cold = \"Cold\",\n /** The blob is in access tier Archive */\n Archive = \"Archive\",\n /** The blob is in access tier Default(Inferred) */\n Default = \"Default\"\n}\n\n/**\n * Defines values for StorageBlobAccessTier. \\\n * {@link KnownStorageBlobAccessTier} can be used interchangeably with StorageBlobAccessTier,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Hot**: The blob is in access tier Hot \\\n * **Cool**: The blob is in access tier Cool \\\n * **Cold**: The blob is in access tier Cold \\\n * **Archive**: The blob is in access tier Archive \\\n * **Default**: The blob is in access tier Default(Inferred)\n */\nexport type StorageBlobAccessTier = string;\n\n/** Known values of {@link StorageTaskCompletedStatus} that the service accepts. */\nexport const enum KnownStorageTaskCompletedStatus {\n Succeeded = \"Succeeded\",\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for StorageTaskCompletedStatus. \\\n * {@link KnownStorageTaskCompletedStatus} can be used interchangeably with StorageTaskCompletedStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Succeeded** \\\n * **Failed**\n */\nexport type StorageTaskCompletedStatus = string;\n\n/** Known values of {@link StorageTaskAssignmentCompletedStatus} that the service accepts. */\nexport const enum KnownStorageTaskAssignmentCompletedStatus {\n Succeeded = \"Succeeded\",\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for StorageTaskAssignmentCompletedStatus. \\\n * {@link KnownStorageTaskAssignmentCompletedStatus} can be used interchangeably with StorageTaskAssignmentCompletedStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Succeeded** \\\n * **Failed**\n */\nexport type StorageTaskAssignmentCompletedStatus = string;\n\n/** Known values of {@link EventGridMqttClientState} that the service accepts. */\nexport const enum KnownEventGridMqttClientState {\n Enabled = \"Enabled\",\n Disabled = \"Disabled\"\n}\n\n/**\n * Defines values for EventGridMqttClientState. \\\n * {@link KnownEventGridMqttClientState} can be used interchangeably with EventGridMqttClientState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Enabled** \\\n * **Disabled**\n */\nexport type EventGridMqttClientState = string;\n\n/** Known values of {@link EventGridMqttClientDisconnectionReason} that the service accepts. */\nexport const enum KnownEventGridMqttClientDisconnectionReason {\n /** The client got disconnected for any authentication reasons (for example, certificate expired, client got disabled, or client configuration changed). */\n ClientAuthenticationError = \"ClientAuthenticationError\",\n /** The client got disconnected for any authorization reasons (for example, because of a change in the configuration of topic spaces, permission bindings, or client groups). */\n ClientAuthorizationError = \"ClientAuthorizationError\",\n /** The client sent a bad request or used one of the unsupported features that resulted in a connection termination by the service. */\n ClientError = \"ClientError\",\n /** The client initiates a graceful disconnect through a DISCONNECT packet for MQTT or a close frame for MQTT over WebSocket. */\n ClientInitiatedDisconnect = \"ClientInitiatedDisconnect\",\n /** The client-server connection is lost. (EXCHANGE ONLINE PROTECTION). */\n ConnectionLost = \"ConnectionLost\",\n /** The client's IP address is blocked by IP filter or Private links configuration. */\n IpForbidden = \"IpForbidden\",\n /** The client exceeded one or more of the throttling limits that resulted in a connection termination by the service. */\n QuotaExceeded = \"QuotaExceeded\",\n /** The connection got terminated due to an unexpected server error. */\n ServerError = \"ServerError\",\n /** The server initiates a graceful disconnect for any operational reason. */\n ServerInitiatedDisconnect = \"ServerInitiatedDisconnect\",\n /** The client's queue for unacknowledged QoS1 messages reached its limit, which resulted in a connection termination by the server. */\n SessionOverflow = \"SessionOverflow\",\n /** The client reconnected with the same authentication name, which resulted in the termination of the previous connection. */\n SessionTakenOver = \"SessionTakenOver\"\n}\n\n/**\n * Defines values for EventGridMqttClientDisconnectionReason. \\\n * {@link KnownEventGridMqttClientDisconnectionReason} can be used interchangeably with EventGridMqttClientDisconnectionReason,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **ClientAuthenticationError**: The client got disconnected for any authentication reasons (for example, certificate expired, client got disabled, or client configuration changed). \\\n * **ClientAuthorizationError**: The client got disconnected for any authorization reasons (for example, because of a change in the configuration of topic spaces, permission bindings, or client groups). \\\n * **ClientError**: The client sent a bad request or used one of the unsupported features that resulted in a connection termination by the service. \\\n * **ClientInitiatedDisconnect**: The client initiates a graceful disconnect through a DISCONNECT packet for MQTT or a close frame for MQTT over WebSocket. \\\n * **ConnectionLost**: The client-server connection is lost. (EXCHANGE ONLINE PROTECTION). \\\n * **IpForbidden**: The client's IP address is blocked by IP filter or Private links configuration. \\\n * **QuotaExceeded**: The client exceeded one or more of the throttling limits that resulted in a connection termination by the service. \\\n * **ServerError**: The connection got terminated due to an unexpected server error. \\\n * **ServerInitiatedDisconnect**: The server initiates a graceful disconnect for any operational reason. \\\n * **SessionOverflow**: The client's queue for unacknowledged QoS1 messages reached its limit, which resulted in a connection termination by the server. \\\n * **SessionTakenOver**: The client reconnected with the same authentication name, which resulted in the termination of the previous connection.\n */\nexport type EventGridMqttClientDisconnectionReason = string;\n\n/** Known values of {@link DataBoxStageName} that the service accepts. */\nexport const enum KnownDataBoxStageName {\n /** Copy has started */\n CopyStarted = \"CopyStarted\",\n /** Copy has completed */\n CopyCompleted = \"CopyCompleted\",\n /** Order has been completed */\n OrderCompleted = \"OrderCompleted\"\n}\n\n/**\n * Defines values for DataBoxStageName. \\\n * {@link KnownDataBoxStageName} can be used interchangeably with DataBoxStageName,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **CopyStarted**: Copy has started \\\n * **CopyCompleted**: Copy has completed \\\n * **OrderCompleted**: Order has been completed\n */\nexport type DataBoxStageName = string;\n\n/** Known values of {@link AppAction} that the service accepts. */\nexport const enum KnownAppAction {\n /** Web app was restarted. */\n Restarted = \"Restarted\",\n /** Web app was stopped. */\n Stopped = \"Stopped\",\n /** There was an operation to change app setting on the web app. */\n ChangedAppSettings = \"ChangedAppSettings\",\n /** The job has started. */\n Started = \"Started\",\n /** The job has completed. */\n Completed = \"Completed\",\n /** The job has failed to complete. */\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for AppAction. \\\n * {@link KnownAppAction} can be used interchangeably with AppAction,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Restarted**: Web app was restarted. \\\n * **Stopped**: Web app was stopped. \\\n * **ChangedAppSettings**: There was an operation to change app setting on the web app. \\\n * **Started**: The job has started. \\\n * **Completed**: The job has completed. \\\n * **Failed**: The job has failed to complete.\n */\nexport type AppAction = string;\n\n/** Known values of {@link StampKind} that the service accepts. */\nexport const enum KnownStampKind {\n /** App Service Plan is running on a public stamp. */\n Public = \"Public\",\n /** App Service Plan is running on an App Service Environment V1. */\n AseV1 = \"AseV1\",\n /** App Service Plan is running on an App Service Environment V2. */\n AseV2 = \"AseV2\"\n}\n\n/**\n * Defines values for StampKind. \\\n * {@link KnownStampKind} can be used interchangeably with StampKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Public**: App Service Plan is running on a public stamp. \\\n * **AseV1**: App Service Plan is running on an App Service Environment V1. \\\n * **AseV2**: App Service Plan is running on an App Service Environment V2.\n */\nexport type StampKind = string;\n\n/** Known values of {@link AppServicePlanAction} that the service accepts. */\nexport const enum KnownAppServicePlanAction {\n /** App Service plan is being updated. */\n Updated = \"Updated\"\n}\n\n/**\n * Defines values for AppServicePlanAction. \\\n * {@link KnownAppServicePlanAction} can be used interchangeably with AppServicePlanAction,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Updated**: App Service plan is being updated.\n */\nexport type AppServicePlanAction = string;\n\n/** Known values of {@link AsyncStatus} that the service accepts. */\nexport const enum KnownAsyncStatus {\n /** Async operation has started. */\n Started = \"Started\",\n /** Async operation has completed. */\n Completed = \"Completed\",\n /** Async operation failed to complete. */\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for AsyncStatus. \\\n * {@link KnownAsyncStatus} can be used interchangeably with AsyncStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Started**: Async operation has started. \\\n * **Completed**: Async operation has completed. \\\n * **Failed**: Async operation failed to complete.\n */\nexport type AsyncStatus = string;\n\n/** Known values of {@link CommunicationIdentifierModelKind} that the service accepts. */\nexport const enum KnownCommunicationIdentifierModelKind {\n Unknown = \"unknown\",\n CommunicationUser = \"communicationUser\",\n PhoneNumber = \"phoneNumber\",\n MicrosoftTeamsUser = \"microsoftTeamsUser\",\n MicrosoftTeamsApp = \"microsoftTeamsApp\"\n}\n\n/**\n * Defines values for CommunicationIdentifierModelKind. \\\n * {@link KnownCommunicationIdentifierModelKind} can be used interchangeably with CommunicationIdentifierModelKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **unknown** \\\n * **communicationUser** \\\n * **phoneNumber** \\\n * **microsoftTeamsUser** \\\n * **microsoftTeamsApp**\n */\nexport type CommunicationIdentifierModelKind = string;\n\n/** Known values of {@link CommunicationCloudEnvironmentModel} that the service accepts. */\nexport const enum KnownCommunicationCloudEnvironmentModel {\n Public = \"public\",\n Dod = \"dod\",\n Gcch = \"gcch\"\n}\n\n/**\n * Defines values for CommunicationCloudEnvironmentModel. \\\n * {@link KnownCommunicationCloudEnvironmentModel} can be used interchangeably with CommunicationCloudEnvironmentModel,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **public** \\\n * **dod** \\\n * **gcch**\n */\nexport type CommunicationCloudEnvironmentModel = string;\n\n/** Known values of {@link AcsRouterLabelOperator} that the service accepts. */\nexport const enum KnownAcsRouterLabelOperator {\n /** = */\n Equal = \"Equal\",\n /** != */\n NotEqual = \"NotEqual\",\n /** > */\n Greater = \"Greater\",\n /** < */\n Less = \"Less\",\n /** >= */\n GreaterThanOrEqual = \"GreaterThanOrEqual\",\n /** <= */\n LessThanOrEqual = \"LessThanOrEqual\"\n}\n\n/**\n * Defines values for AcsRouterLabelOperator. \\\n * {@link KnownAcsRouterLabelOperator} can be used interchangeably with AcsRouterLabelOperator,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Equal**: = \\\n * **NotEqual**: != \\\n * **Greater**: > \\\n * **Less**: < \\\n * **GreaterThanOrEqual**: >= \\\n * **LessThanOrEqual**: <=\n */\nexport type AcsRouterLabelOperator = string;\n\n/** Known values of {@link AcsRouterWorkerSelectorState} that the service accepts. */\nexport const enum KnownAcsRouterWorkerSelectorState {\n /** Router Job Worker Selector is Active */\n Active = \"active\",\n /** Router Job Worker Selector has Expire */\n Expired = \"expired\"\n}\n\n/**\n * Defines values for AcsRouterWorkerSelectorState. \\\n * {@link KnownAcsRouterWorkerSelectorState} can be used interchangeably with AcsRouterWorkerSelectorState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **active**: Router Job Worker Selector is Active \\\n * **expired**: Router Job Worker Selector has Expire\n */\nexport type AcsRouterWorkerSelectorState = string;\n\n/** Known values of {@link AcsRouterJobStatus} that the service accepts. */\nexport const enum KnownAcsRouterJobStatus {\n PendingClassification = \"PendingClassification\",\n Queued = \"Queued\",\n Assigned = \"Assigned\",\n Completed = \"Completed\",\n Closed = \"Closed\",\n Cancelled = \"Cancelled\",\n ClassificationFailed = \"ClassificationFailed\",\n Created = \"Created\",\n PendingSchedule = \"PendingSchedule\",\n Scheduled = \"Scheduled\",\n ScheduleFailed = \"ScheduleFailed\",\n WaitingForActivation = \"WaitingForActivation\"\n}\n\n/**\n * Defines values for AcsRouterJobStatus. \\\n * {@link KnownAcsRouterJobStatus} can be used interchangeably with AcsRouterJobStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **PendingClassification** \\\n * **Queued** \\\n * **Assigned** \\\n * **Completed** \\\n * **Closed** \\\n * **Cancelled** \\\n * **ClassificationFailed** \\\n * **Created** \\\n * **PendingSchedule** \\\n * **Scheduled** \\\n * **ScheduleFailed** \\\n * **WaitingForActivation**\n */\nexport type AcsRouterJobStatus = string;\n\n/** Known values of {@link AcsRouterUpdatedWorkerProperty} that the service accepts. */\nexport const enum KnownAcsRouterUpdatedWorkerProperty {\n AvailableForOffers = \"AvailableForOffers\",\n TotalCapacity = \"TotalCapacity\",\n QueueAssignments = \"QueueAssignments\",\n Labels = \"Labels\",\n Tags = \"Tags\",\n ChannelConfigurations = \"ChannelConfigurations\"\n}\n\n/**\n * Defines values for AcsRouterUpdatedWorkerProperty. \\\n * {@link KnownAcsRouterUpdatedWorkerProperty} can be used interchangeably with AcsRouterUpdatedWorkerProperty,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **AvailableForOffers** \\\n * **TotalCapacity** \\\n * **QueueAssignments** \\\n * **Labels** \\\n * **Tags** \\\n * **ChannelConfigurations**\n */\nexport type AcsRouterUpdatedWorkerProperty = string;\n\n/** Known values of {@link RecordingContentType} that the service accepts. */\nexport const enum KnownRecordingContentType {\n AudioVideo = \"AudioVideo\",\n Audio = \"Audio\"\n}\n\n/**\n * Defines values for RecordingContentType. \\\n * {@link KnownRecordingContentType} can be used interchangeably with RecordingContentType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **AudioVideo** \\\n * **Audio**\n */\nexport type RecordingContentType = string;\n\n/** Known values of {@link RecordingChannelType} that the service accepts. */\nexport const enum KnownRecordingChannelType {\n Mixed = \"Mixed\",\n Unmixed = \"Unmixed\"\n}\n\n/**\n * Defines values for RecordingChannelType. \\\n * {@link KnownRecordingChannelType} can be used interchangeably with RecordingChannelType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Mixed** \\\n * **Unmixed**\n */\nexport type RecordingChannelType = string;\n\n/** Known values of {@link RecordingFormatType} that the service accepts. */\nexport const enum KnownRecordingFormatType {\n Wav = \"Wav\",\n Mp3 = \"Mp3\",\n Mp4 = \"Mp4\"\n}\n\n/**\n * Defines values for RecordingFormatType. \\\n * {@link KnownRecordingFormatType} can be used interchangeably with RecordingFormatType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Wav** \\\n * **Mp3** \\\n * **Mp4**\n */\nexport type RecordingFormatType = string;\n\n/** Known values of {@link AcsEmailDeliveryReportStatus} that the service accepts. */\nexport const enum KnownAcsEmailDeliveryReportStatus {\n /** Hard bounce detected while sending the email */\n Bounced = \"Bounced\",\n /** The email was delivered */\n Delivered = \"Delivered\",\n /** The email failed to be delivered */\n Failed = \"Failed\",\n /** The message was identified spam and was rejected or blocked (not quarantined). */\n FilteredSpam = \"FilteredSpam\",\n /** The message was quarantined (as spam, bulk mail, or phishing). For more information, see Quarantined email messages in EOP (EXCHANGE ONLINE PROTECTION). */\n Quarantined = \"Quarantined\",\n /** The email was suppressed */\n Suppressed = \"Suppressed\"\n}\n\n/**\n * Defines values for AcsEmailDeliveryReportStatus. \\\n * {@link KnownAcsEmailDeliveryReportStatus} can be used interchangeably with AcsEmailDeliveryReportStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Bounced**: Hard bounce detected while sending the email \\\n * **Delivered**: The email was delivered \\\n * **Failed**: The email failed to be delivered \\\n * **FilteredSpam**: The message was identified spam and was rejected or blocked (not quarantined). \\\n * **Quarantined**: The message was quarantined (as spam, bulk mail, or phishing). For more information, see Quarantined email messages in EOP (EXCHANGE ONLINE PROTECTION). \\\n * **Suppressed**: The email was suppressed\n */\nexport type AcsEmailDeliveryReportStatus = string;\n\n/** Known values of {@link AcsUserEngagement} that the service accepts. */\nexport const enum KnownAcsUserEngagement {\n View = \"view\",\n Click = \"click\"\n}\n\n/**\n * Defines values for AcsUserEngagement. \\\n * {@link KnownAcsUserEngagement} can be used interchangeably with AcsUserEngagement,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **view** \\\n * **click**\n */\nexport type AcsUserEngagement = string;\n\n/** Known values of {@link AcsMessageChannelKind} that the service accepts. */\nexport const enum KnownAcsMessageChannelKind {\n /** Updated message channel type is Whatsapp */\n Whatsapp = \"whatsapp\"\n}\n\n/**\n * Defines values for AcsMessageChannelKind. \\\n * {@link KnownAcsMessageChannelKind} can be used interchangeably with AcsMessageChannelKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **whatsapp**: Updated message channel type is Whatsapp\n */\nexport type AcsMessageChannelKind = string;\n\n/** Known values of {@link AcsInteractiveReplyKind} that the service accepts. */\nexport const enum KnownAcsInteractiveReplyKind {\n /** Messaged interactive reply type is ButtonReply */\n ButtonReply = \"buttonReply\",\n /** Messaged interactive reply type is ListReply */\n ListReply = \"listReply\",\n /** Messaged interactive reply type is Unknown */\n Unknown = \"unknown\"\n}\n\n/**\n * Defines values for AcsInteractiveReplyKind. \\\n * {@link KnownAcsInteractiveReplyKind} can be used interchangeably with AcsInteractiveReplyKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **buttonReply**: Messaged interactive reply type is ButtonReply \\\n * **listReply**: Messaged interactive reply type is ListReply \\\n * **unknown**: Messaged interactive reply type is Unknown\n */\nexport type AcsInteractiveReplyKind = string;\n\n/** Known values of {@link AcsMessageDeliveryStatus} that the service accepts. */\nexport const enum KnownAcsMessageDeliveryStatus {\n Read = \"read\",\n Delivered = \"delivered\",\n Failed = \"failed\",\n Sent = \"sent\",\n Warning = \"warning\",\n Unknown = \"unknown\"\n}\n\n/**\n * Defines values for AcsMessageDeliveryStatus. \\\n * {@link KnownAcsMessageDeliveryStatus} can be used interchangeably with AcsMessageDeliveryStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **read** \\\n * **delivered** \\\n * **failed** \\\n * **sent** \\\n * **warning** \\\n * **unknown**\n */\nexport type AcsMessageDeliveryStatus = string;\n\n/** Known values of {@link HealthcareFhirResourceType} that the service accepts. */\nexport const enum KnownHealthcareFhirResourceType {\n /** The FHIR resource type defined in STU3 and R4. */\n Account = \"Account\",\n /** The FHIR resource type defined in STU3 and R4. */\n ActivityDefinition = \"ActivityDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n AdverseEvent = \"AdverseEvent\",\n /** The FHIR resource type defined in STU3 and R4. */\n AllergyIntolerance = \"AllergyIntolerance\",\n /** The FHIR resource type defined in STU3 and R4. */\n Appointment = \"Appointment\",\n /** The FHIR resource type defined in STU3 and R4. */\n AppointmentResponse = \"AppointmentResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n AuditEvent = \"AuditEvent\",\n /** The FHIR resource type defined in STU3 and R4. */\n Basic = \"Basic\",\n /** The FHIR resource type defined in STU3 and R4. */\n Binary = \"Binary\",\n /** The FHIR resource type defined in R4. */\n BiologicallyDerivedProduct = \"BiologicallyDerivedProduct\",\n /** The FHIR resource type defined in STU3. */\n BodySite = \"BodySite\",\n /** The FHIR resource type defined in R4. */\n BodyStructure = \"BodyStructure\",\n /** The FHIR resource type defined in STU3 and R4. */\n Bundle = \"Bundle\",\n /** The FHIR resource type defined in STU3 and R4. */\n CapabilityStatement = \"CapabilityStatement\",\n /** The FHIR resource type defined in STU3 and R4. */\n CarePlan = \"CarePlan\",\n /** The FHIR resource type defined in STU3 and R4. */\n CareTeam = \"CareTeam\",\n /** The FHIR resource type defined in R4. */\n CatalogEntry = \"CatalogEntry\",\n /** The FHIR resource type defined in STU3 and R4. */\n ChargeItem = \"ChargeItem\",\n /** The FHIR resource type defined in R4. */\n ChargeItemDefinition = \"ChargeItemDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Claim = \"Claim\",\n /** The FHIR resource type defined in STU3 and R4. */\n ClaimResponse = \"ClaimResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n ClinicalImpression = \"ClinicalImpression\",\n /** The FHIR resource type defined in STU3 and R4. */\n CodeSystem = \"CodeSystem\",\n /** The FHIR resource type defined in STU3 and R4. */\n Communication = \"Communication\",\n /** The FHIR resource type defined in STU3 and R4. */\n CommunicationRequest = \"CommunicationRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n CompartmentDefinition = \"CompartmentDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Composition = \"Composition\",\n /** The FHIR resource type defined in STU3 and R4. */\n ConceptMap = \"ConceptMap\",\n /** The FHIR resource type defined in STU3 and R4. */\n Condition = \"Condition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Consent = \"Consent\",\n /** The FHIR resource type defined in STU3 and R4. */\n Contract = \"Contract\",\n /** The FHIR resource type defined in STU3 and R4. */\n Coverage = \"Coverage\",\n /** The FHIR resource type defined in R4. */\n CoverageEligibilityRequest = \"CoverageEligibilityRequest\",\n /** The FHIR resource type defined in R4. */\n CoverageEligibilityResponse = \"CoverageEligibilityResponse\",\n /** The FHIR resource type defined in STU3. */\n DataElement = \"DataElement\",\n /** The FHIR resource type defined in STU3 and R4. */\n DetectedIssue = \"DetectedIssue\",\n /** The FHIR resource type defined in STU3 and R4. */\n Device = \"Device\",\n /** The FHIR resource type defined in STU3. */\n DeviceComponent = \"DeviceComponent\",\n /** The FHIR resource type defined in R4. */\n DeviceDefinition = \"DeviceDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n DeviceMetric = \"DeviceMetric\",\n /** The FHIR resource type defined in STU3 and R4. */\n DeviceRequest = \"DeviceRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n DeviceUseStatement = \"DeviceUseStatement\",\n /** The FHIR resource type defined in STU3 and R4. */\n DiagnosticReport = \"DiagnosticReport\",\n /** The FHIR resource type defined in STU3 and R4. */\n DocumentManifest = \"DocumentManifest\",\n /** The FHIR resource type defined in STU3 and R4. */\n DocumentReference = \"DocumentReference\",\n /** The FHIR resource type defined in STU3 and R4. */\n DomainResource = \"DomainResource\",\n /** The FHIR resource type defined in R4. */\n EffectEvidenceSynthesis = \"EffectEvidenceSynthesis\",\n /** The FHIR resource type defined in STU3. */\n EligibilityRequest = \"EligibilityRequest\",\n /** The FHIR resource type defined in STU3. */\n EligibilityResponse = \"EligibilityResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n Encounter = \"Encounter\",\n /** The FHIR resource type defined in STU3 and R4. */\n Endpoint = \"Endpoint\",\n /** The FHIR resource type defined in STU3 and R4. */\n EnrollmentRequest = \"EnrollmentRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n EnrollmentResponse = \"EnrollmentResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n EpisodeOfCare = \"EpisodeOfCare\",\n /** The FHIR resource type defined in R4. */\n EventDefinition = \"EventDefinition\",\n /** The FHIR resource type defined in R4. */\n Evidence = \"Evidence\",\n /** The FHIR resource type defined in R4. */\n EvidenceVariable = \"EvidenceVariable\",\n /** The FHIR resource type defined in R4. */\n ExampleScenario = \"ExampleScenario\",\n /** The FHIR resource type defined in STU3. */\n ExpansionProfile = \"ExpansionProfile\",\n /** The FHIR resource type defined in STU3 and R4. */\n ExplanationOfBenefit = \"ExplanationOfBenefit\",\n /** The FHIR resource type defined in STU3 and R4. */\n FamilyMemberHistory = \"FamilyMemberHistory\",\n /** The FHIR resource type defined in STU3 and R4. */\n Flag = \"Flag\",\n /** The FHIR resource type defined in STU3 and R4. */\n Goal = \"Goal\",\n /** The FHIR resource type defined in STU3 and R4. */\n GraphDefinition = \"GraphDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Group = \"Group\",\n /** The FHIR resource type defined in STU3 and R4. */\n GuidanceResponse = \"GuidanceResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n HealthcareService = \"HealthcareService\",\n /** The FHIR resource type defined in STU3. */\n ImagingManifest = \"ImagingManifest\",\n /** The FHIR resource type defined in STU3 and R4. */\n ImagingStudy = \"ImagingStudy\",\n /** The FHIR resource type defined in STU3 and R4. */\n Immunization = \"Immunization\",\n /** The FHIR resource type defined in R4. */\n ImmunizationEvaluation = \"ImmunizationEvaluation\",\n /** The FHIR resource type defined in STU3 and R4. */\n ImmunizationRecommendation = \"ImmunizationRecommendation\",\n /** The FHIR resource type defined in STU3 and R4. */\n ImplementationGuide = \"ImplementationGuide\",\n /** The FHIR resource type defined in R4. */\n InsurancePlan = \"InsurancePlan\",\n /** The FHIR resource type defined in R4. */\n Invoice = \"Invoice\",\n /** The FHIR resource type defined in STU3 and R4. */\n Library = \"Library\",\n /** The FHIR resource type defined in STU3 and R4. */\n Linkage = \"Linkage\",\n /** The FHIR resource type defined in STU3 and R4. */\n List = \"List\",\n /** The FHIR resource type defined in STU3 and R4. */\n Location = \"Location\",\n /** The FHIR resource type defined in STU3 and R4. */\n Measure = \"Measure\",\n /** The FHIR resource type defined in STU3 and R4. */\n MeasureReport = \"MeasureReport\",\n /** The FHIR resource type defined in STU3 and R4. */\n Media = \"Media\",\n /** The FHIR resource type defined in STU3 and R4. */\n Medication = \"Medication\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationAdministration = \"MedicationAdministration\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationDispense = \"MedicationDispense\",\n /** The FHIR resource type defined in R4. */\n MedicationKnowledge = \"MedicationKnowledge\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationRequest = \"MedicationRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationStatement = \"MedicationStatement\",\n /** The FHIR resource type defined in R4. */\n MedicinalProduct = \"MedicinalProduct\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductAuthorization = \"MedicinalProductAuthorization\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductContraindication = \"MedicinalProductContraindication\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductIndication = \"MedicinalProductIndication\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductIngredient = \"MedicinalProductIngredient\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductInteraction = \"MedicinalProductInteraction\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductManufactured = \"MedicinalProductManufactured\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductPackaged = \"MedicinalProductPackaged\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductPharmaceutical = \"MedicinalProductPharmaceutical\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductUndesirableEffect = \"MedicinalProductUndesirableEffect\",\n /** The FHIR resource type defined in STU3 and R4. */\n MessageDefinition = \"MessageDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n MessageHeader = \"MessageHeader\",\n /** The FHIR resource type defined in R4. */\n MolecularSequence = \"MolecularSequence\",\n /** The FHIR resource type defined in STU3 and R4. */\n NamingSystem = \"NamingSystem\",\n /** The FHIR resource type defined in STU3 and R4. */\n NutritionOrder = \"NutritionOrder\",\n /** The FHIR resource type defined in STU3 and R4. */\n Observation = \"Observation\",\n /** The FHIR resource type defined in R4. */\n ObservationDefinition = \"ObservationDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n OperationDefinition = \"OperationDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n OperationOutcome = \"OperationOutcome\",\n /** The FHIR resource type defined in STU3 and R4. */\n Organization = \"Organization\",\n /** The FHIR resource type defined in R4. */\n OrganizationAffiliation = \"OrganizationAffiliation\",\n /** The FHIR resource type defined in STU3 and R4. */\n Parameters = \"Parameters\",\n /** The FHIR resource type defined in STU3 and R4. */\n Patient = \"Patient\",\n /** The FHIR resource type defined in STU3 and R4. */\n PaymentNotice = \"PaymentNotice\",\n /** The FHIR resource type defined in STU3 and R4. */\n PaymentReconciliation = \"PaymentReconciliation\",\n /** The FHIR resource type defined in STU3 and R4. */\n Person = \"Person\",\n /** The FHIR resource type defined in STU3 and R4. */\n PlanDefinition = \"PlanDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Practitioner = \"Practitioner\",\n /** The FHIR resource type defined in STU3 and R4. */\n PractitionerRole = \"PractitionerRole\",\n /** The FHIR resource type defined in STU3 and R4. */\n Procedure = \"Procedure\",\n /** The FHIR resource type defined in STU3. */\n ProcedureRequest = \"ProcedureRequest\",\n /** The FHIR resource type defined in STU3. */\n ProcessRequest = \"ProcessRequest\",\n /** The FHIR resource type defined in STU3. */\n ProcessResponse = \"ProcessResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n Provenance = \"Provenance\",\n /** The FHIR resource type defined in STU3 and R4. */\n Questionnaire = \"Questionnaire\",\n /** The FHIR resource type defined in STU3 and R4. */\n QuestionnaireResponse = \"QuestionnaireResponse\",\n /** The FHIR resource type defined in STU3. */\n ReferralRequest = \"ReferralRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n RelatedPerson = \"RelatedPerson\",\n /** The FHIR resource type defined in STU3 and R4. */\n RequestGroup = \"RequestGroup\",\n /** The FHIR resource type defined in R4. */\n ResearchDefinition = \"ResearchDefinition\",\n /** The FHIR resource type defined in R4. */\n ResearchElementDefinition = \"ResearchElementDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n ResearchStudy = \"ResearchStudy\",\n /** The FHIR resource type defined in STU3 and R4. */\n ResearchSubject = \"ResearchSubject\",\n /** The FHIR resource type defined in STU3 and R4. */\n Resource = \"Resource\",\n /** The FHIR resource type defined in STU3 and R4. */\n RiskAssessment = \"RiskAssessment\",\n /** The FHIR resource type defined in R4. */\n RiskEvidenceSynthesis = \"RiskEvidenceSynthesis\",\n /** The FHIR resource type defined in STU3 and R4. */\n Schedule = \"Schedule\",\n /** The FHIR resource type defined in STU3 and R4. */\n SearchParameter = \"SearchParameter\",\n /** The FHIR resource type defined in STU3. */\n Sequence = \"Sequence\",\n /** The FHIR resource type defined in STU3. */\n ServiceDefinition = \"ServiceDefinition\",\n /** The FHIR resource type defined in R4. */\n ServiceRequest = \"ServiceRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n Slot = \"Slot\",\n /** The FHIR resource type defined in STU3 and R4. */\n Specimen = \"Specimen\",\n /** The FHIR resource type defined in R4. */\n SpecimenDefinition = \"SpecimenDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n StructureDefinition = \"StructureDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n StructureMap = \"StructureMap\",\n /** The FHIR resource type defined in STU3 and R4. */\n Subscription = \"Subscription\",\n /** The FHIR resource type defined in STU3 and R4. */\n Substance = \"Substance\",\n /** The FHIR resource type defined in R4. */\n SubstanceNucleicAcid = \"SubstanceNucleicAcid\",\n /** The FHIR resource type defined in R4. */\n SubstancePolymer = \"SubstancePolymer\",\n /** The FHIR resource type defined in R4. */\n SubstanceProtein = \"SubstanceProtein\",\n /** The FHIR resource type defined in R4. */\n SubstanceReferenceInformation = \"SubstanceReferenceInformation\",\n /** The FHIR resource type defined in R4. */\n SubstanceSourceMaterial = \"SubstanceSourceMaterial\",\n /** The FHIR resource type defined in R4. */\n SubstanceSpecification = \"SubstanceSpecification\",\n /** The FHIR resource type defined in STU3 and R4. */\n SupplyDelivery = \"SupplyDelivery\",\n /** The FHIR resource type defined in STU3 and R4. */\n SupplyRequest = \"SupplyRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n Task = \"Task\",\n /** The FHIR resource type defined in R4. */\n TerminologyCapabilities = \"TerminologyCapabilities\",\n /** The FHIR resource type defined in STU3 and R4. */\n TestReport = \"TestReport\",\n /** The FHIR resource type defined in STU3 and R4. */\n TestScript = \"TestScript\",\n /** The FHIR resource type defined in STU3 and R4. */\n ValueSet = \"ValueSet\",\n /** The FHIR resource type defined in R4. */\n VerificationResult = \"VerificationResult\",\n /** The FHIR resource type defined in STU3 and R4. */\n VisionPrescription = \"VisionPrescription\"\n}\n\n/**\n * Defines values for HealthcareFhirResourceType. \\\n * {@link KnownHealthcareFhirResourceType} can be used interchangeably with HealthcareFhirResourceType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Account**: The FHIR resource type defined in STU3 and R4. \\\n * **ActivityDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **AdverseEvent**: The FHIR resource type defined in STU3 and R4. \\\n * **AllergyIntolerance**: The FHIR resource type defined in STU3 and R4. \\\n * **Appointment**: The FHIR resource type defined in STU3 and R4. \\\n * **AppointmentResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **AuditEvent**: The FHIR resource type defined in STU3 and R4. \\\n * **Basic**: The FHIR resource type defined in STU3 and R4. \\\n * **Binary**: The FHIR resource type defined in STU3 and R4. \\\n * **BiologicallyDerivedProduct**: The FHIR resource type defined in R4. \\\n * **BodySite**: The FHIR resource type defined in STU3. \\\n * **BodyStructure**: The FHIR resource type defined in R4. \\\n * **Bundle**: The FHIR resource type defined in STU3 and R4. \\\n * **CapabilityStatement**: The FHIR resource type defined in STU3 and R4. \\\n * **CarePlan**: The FHIR resource type defined in STU3 and R4. \\\n * **CareTeam**: The FHIR resource type defined in STU3 and R4. \\\n * **CatalogEntry**: The FHIR resource type defined in R4. \\\n * **ChargeItem**: The FHIR resource type defined in STU3 and R4. \\\n * **ChargeItemDefinition**: The FHIR resource type defined in R4. \\\n * **Claim**: The FHIR resource type defined in STU3 and R4. \\\n * **ClaimResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **ClinicalImpression**: The FHIR resource type defined in STU3 and R4. \\\n * **CodeSystem**: The FHIR resource type defined in STU3 and R4. \\\n * **Communication**: The FHIR resource type defined in STU3 and R4. \\\n * **CommunicationRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **CompartmentDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **Composition**: The FHIR resource type defined in STU3 and R4. \\\n * **ConceptMap**: The FHIR resource type defined in STU3 and R4. \\\n * **Condition**: The FHIR resource type defined in STU3 and R4. \\\n * **Consent**: The FHIR resource type defined in STU3 and R4. \\\n * **Contract**: The FHIR resource type defined in STU3 and R4. \\\n * **Coverage**: The FHIR resource type defined in STU3 and R4. \\\n * **CoverageEligibilityRequest**: The FHIR resource type defined in R4. \\\n * **CoverageEligibilityResponse**: The FHIR resource type defined in R4. \\\n * **DataElement**: The FHIR resource type defined in STU3. \\\n * **DetectedIssue**: The FHIR resource type defined in STU3 and R4. \\\n * **Device**: The FHIR resource type defined in STU3 and R4. \\\n * **DeviceComponent**: The FHIR resource type defined in STU3. \\\n * **DeviceDefinition**: The FHIR resource type defined in R4. \\\n * **DeviceMetric**: The FHIR resource type defined in STU3 and R4. \\\n * **DeviceRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **DeviceUseStatement**: The FHIR resource type defined in STU3 and R4. \\\n * **DiagnosticReport**: The FHIR resource type defined in STU3 and R4. \\\n * **DocumentManifest**: The FHIR resource type defined in STU3 and R4. \\\n * **DocumentReference**: The FHIR resource type defined in STU3 and R4. \\\n * **DomainResource**: The FHIR resource type defined in STU3 and R4. \\\n * **EffectEvidenceSynthesis**: The FHIR resource type defined in R4. \\\n * **EligibilityRequest**: The FHIR resource type defined in STU3. \\\n * **EligibilityResponse**: The FHIR resource type defined in STU3. \\\n * **Encounter**: The FHIR resource type defined in STU3 and R4. \\\n * **Endpoint**: The FHIR resource type defined in STU3 and R4. \\\n * **EnrollmentRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **EnrollmentResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **EpisodeOfCare**: The FHIR resource type defined in STU3 and R4. \\\n * **EventDefinition**: The FHIR resource type defined in R4. \\\n * **Evidence**: The FHIR resource type defined in R4. \\\n * **EvidenceVariable**: The FHIR resource type defined in R4. \\\n * **ExampleScenario**: The FHIR resource type defined in R4. \\\n * **ExpansionProfile**: The FHIR resource type defined in STU3. \\\n * **ExplanationOfBenefit**: The FHIR resource type defined in STU3 and R4. \\\n * **FamilyMemberHistory**: The FHIR resource type defined in STU3 and R4. \\\n * **Flag**: The FHIR resource type defined in STU3 and R4. \\\n * **Goal**: The FHIR resource type defined in STU3 and R4. \\\n * **GraphDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **Group**: The FHIR resource type defined in STU3 and R4. \\\n * **GuidanceResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **HealthcareService**: The FHIR resource type defined in STU3 and R4. \\\n * **ImagingManifest**: The FHIR resource type defined in STU3. \\\n * **ImagingStudy**: The FHIR resource type defined in STU3 and R4. \\\n * **Immunization**: The FHIR resource type defined in STU3 and R4. \\\n * **ImmunizationEvaluation**: The FHIR resource type defined in R4. \\\n * **ImmunizationRecommendation**: The FHIR resource type defined in STU3 and R4. \\\n * **ImplementationGuide**: The FHIR resource type defined in STU3 and R4. \\\n * **InsurancePlan**: The FHIR resource type defined in R4. \\\n * **Invoice**: The FHIR resource type defined in R4. \\\n * **Library**: The FHIR resource type defined in STU3 and R4. \\\n * **Linkage**: The FHIR resource type defined in STU3 and R4. \\\n * **List**: The FHIR resource type defined in STU3 and R4. \\\n * **Location**: The FHIR resource type defined in STU3 and R4. \\\n * **Measure**: The FHIR resource type defined in STU3 and R4. \\\n * **MeasureReport**: The FHIR resource type defined in STU3 and R4. \\\n * **Media**: The FHIR resource type defined in STU3 and R4. \\\n * **Medication**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationAdministration**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationDispense**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationKnowledge**: The FHIR resource type defined in R4. \\\n * **MedicationRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationStatement**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicinalProduct**: The FHIR resource type defined in R4. \\\n * **MedicinalProductAuthorization**: The FHIR resource type defined in R4. \\\n * **MedicinalProductContraindication**: The FHIR resource type defined in R4. \\\n * **MedicinalProductIndication**: The FHIR resource type defined in R4. \\\n * **MedicinalProductIngredient**: The FHIR resource type defined in R4. \\\n * **MedicinalProductInteraction**: The FHIR resource type defined in R4. \\\n * **MedicinalProductManufactured**: The FHIR resource type defined in R4. \\\n * **MedicinalProductPackaged**: The FHIR resource type defined in R4. \\\n * **MedicinalProductPharmaceutical**: The FHIR resource type defined in R4. \\\n * **MedicinalProductUndesirableEffect**: The FHIR resource type defined in R4. \\\n * **MessageDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **MessageHeader**: The FHIR resource type defined in STU3 and R4. \\\n * **MolecularSequence**: The FHIR resource type defined in R4. \\\n * **NamingSystem**: The FHIR resource type defined in STU3 and R4. \\\n * **NutritionOrder**: The FHIR resource type defined in STU3 and R4. \\\n * **Observation**: The FHIR resource type defined in STU3 and R4. \\\n * **ObservationDefinition**: The FHIR resource type defined in R4. \\\n * **OperationDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **OperationOutcome**: The FHIR resource type defined in STU3 and R4. \\\n * **Organization**: The FHIR resource type defined in STU3 and R4. \\\n * **OrganizationAffiliation**: The FHIR resource type defined in R4. \\\n * **Parameters**: The FHIR resource type defined in STU3 and R4. \\\n * **Patient**: The FHIR resource type defined in STU3 and R4. \\\n * **PaymentNotice**: The FHIR resource type defined in STU3 and R4. \\\n * **PaymentReconciliation**: The FHIR resource type defined in STU3 and R4. \\\n * **Person**: The FHIR resource type defined in STU3 and R4. \\\n * **PlanDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **Practitioner**: The FHIR resource type defined in STU3 and R4. \\\n * **PractitionerRole**: The FHIR resource type defined in STU3 and R4. \\\n * **Procedure**: The FHIR resource type defined in STU3 and R4. \\\n * **ProcedureRequest**: The FHIR resource type defined in STU3. \\\n * **ProcessRequest**: The FHIR resource type defined in STU3. \\\n * **ProcessResponse**: The FHIR resource type defined in STU3. \\\n * **Provenance**: The FHIR resource type defined in STU3 and R4. \\\n * **Questionnaire**: The FHIR resource type defined in STU3 and R4. \\\n * **QuestionnaireResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **ReferralRequest**: The FHIR resource type defined in STU3. \\\n * **RelatedPerson**: The FHIR resource type defined in STU3 and R4. \\\n * **RequestGroup**: The FHIR resource type defined in STU3 and R4. \\\n * **ResearchDefinition**: The FHIR resource type defined in R4. \\\n * **ResearchElementDefinition**: The FHIR resource type defined in R4. \\\n * **ResearchStudy**: The FHIR resource type defined in STU3 and R4. \\\n * **ResearchSubject**: The FHIR resource type defined in STU3 and R4. \\\n * **Resource**: The FHIR resource type defined in STU3 and R4. \\\n * **RiskAssessment**: The FHIR resource type defined in STU3 and R4. \\\n * **RiskEvidenceSynthesis**: The FHIR resource type defined in R4. \\\n * **Schedule**: The FHIR resource type defined in STU3 and R4. \\\n * **SearchParameter**: The FHIR resource type defined in STU3 and R4. \\\n * **Sequence**: The FHIR resource type defined in STU3. \\\n * **ServiceDefinition**: The FHIR resource type defined in STU3. \\\n * **ServiceRequest**: The FHIR resource type defined in R4. \\\n * **Slot**: The FHIR resource type defined in STU3 and R4. \\\n * **Specimen**: The FHIR resource type defined in STU3 and R4. \\\n * **SpecimenDefinition**: The FHIR resource type defined in R4. \\\n * **StructureDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **StructureMap**: The FHIR resource type defined in STU3 and R4. \\\n * **Subscription**: The FHIR resource type defined in STU3 and R4. \\\n * **Substance**: The FHIR resource type defined in STU3 and R4. \\\n * **SubstanceNucleicAcid**: The FHIR resource type defined in R4. \\\n * **SubstancePolymer**: The FHIR resource type defined in R4. \\\n * **SubstanceProtein**: The FHIR resource type defined in R4. \\\n * **SubstanceReferenceInformation**: The FHIR resource type defined in R4. \\\n * **SubstanceSourceMaterial**: The FHIR resource type defined in R4. \\\n * **SubstanceSpecification**: The FHIR resource type defined in R4. \\\n * **SupplyDelivery**: The FHIR resource type defined in STU3 and R4. \\\n * **SupplyRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **Task**: The FHIR resource type defined in STU3 and R4. \\\n * **TerminologyCapabilities**: The FHIR resource type defined in R4. \\\n * **TestReport**: The FHIR resource type defined in STU3 and R4. \\\n * **TestScript**: The FHIR resource type defined in STU3 and R4. \\\n * **ValueSet**: The FHIR resource type defined in STU3 and R4. \\\n * **VerificationResult**: The FHIR resource type defined in R4. \\\n * **VisionPrescription**: The FHIR resource type defined in STU3 and R4.\n */\nexport type HealthcareFhirResourceType = string;\n/** Defines values for MediaJobState. */\nexport type MediaJobState =\n | \"Canceled\"\n | \"Canceling\"\n | \"Error\"\n | \"Finished\"\n | \"Processing\"\n | \"Queued\"\n | \"Scheduled\";\n/** Defines values for MediaJobErrorCode. */\nexport type MediaJobErrorCode =\n | \"ServiceError\"\n | \"ServiceTransientError\"\n | \"DownloadNotAccessible\"\n | \"DownloadTransientError\"\n | \"UploadNotAccessible\"\n | \"UploadTransientError\"\n | \"ConfigurationUnsupported\"\n | \"ContentMalformed\"\n | \"ContentUnsupported\"\n | \"IdentityUnsupported\";\n/** Defines values for MediaJobErrorCategory. */\nexport type MediaJobErrorCategory =\n | \"Service\"\n | \"Download\"\n | \"Upload\"\n | \"Configuration\"\n | \"Content\"\n | \"Account\";\n/** Defines values for MediaJobRetry. */\nexport type MediaJobRetry = \"DoNotRetry\" | \"MayRetry\";\n\n/** Optional parameters. */\nexport interface GeneratedClientPublishEventGridEventsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface GeneratedClientPublishCloudEventEventsOptionalParams\n extends coreClient.OperationOptions {\n /** Required only when publishing to partner namespaces with partner topic routing mode ChannelNameHeader. */\n aegChannelName?: string;\n}\n\n/** Optional parameters. */\nexport interface GeneratedClientPublishCustomEventEventsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface GeneratedClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n"]}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/generated/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport type MediaJobOutputUnion = MediaJobOutput | MediaJobOutputAsset;\n\n/** Properties of an event published to an Event Grid topic using the EventGrid Schema. */\nexport interface EventGridEvent {\n /** An unique identifier for the event. */\n id: string;\n /** The resource path of the event source. */\n topic?: string;\n /** A resource path relative to the topic path. */\n subject: string;\n /** Event data specific to the event type. */\n data: any;\n /** The type of the event that occurred. */\n eventType: string;\n /** The time (in UTC) the event was generated. */\n eventTime: Date;\n /**\n * The schema version of the event metadata.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly metadataVersion?: string;\n /** The schema version of the data object. */\n dataVersion: string;\n}\n\n/** Properties of an event published to an Event Grid topic using the CloudEvent 1.0 Schema */\nexport interface CloudEvent {\n /** Describes unknown properties. The value of an unknown property can be of \"any\" type. */\n [property: string]: any;\n /** An identifier for the event. The combination of id and source must be unique for each distinct event. */\n id: string;\n /** Identifies the context in which an event happened. The combination of id and source must be unique for each distinct event. */\n source: string;\n /** Event data specific to the event type. */\n data?: any;\n /** Event data specific to the event type, encoded as a base64 string. */\n dataBase64?: Uint8Array;\n /** Type of event related to the originating occurrence. */\n type: string;\n /** The time (in UTC) the event was generated, in RFC3339 format. */\n time?: Date;\n /** The version of the CloudEvents specification which the event uses. */\n specversion: string;\n /** Identifies the schema that data adheres to. */\n dataschema?: string;\n /** Content type of data value. */\n datacontenttype?: string;\n /** This describes the subject of the event in the context of the event producer (identified by source). */\n subject?: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobCreated event. */\nexport interface StorageBlobCreatedEventData {\n /** The name of the API/operation that triggered this event. */\n api?: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId?: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId?: string;\n /** The etag of the blob at the time this event was triggered. */\n eTag?: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType?: string;\n /** The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob. */\n contentLength?: number;\n /** The offset of the blob in bytes. */\n contentOffset?: number;\n /** The type of blob. */\n blobType?: string;\n /** The current tier of the blob. */\n accessTier: StorageBlobAccessTier;\n /** The path to the blob. */\n url?: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer?: string;\n /** The identity of the requester that triggered this event. */\n identity?: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics?: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobDeleted event. */\nexport interface StorageBlobDeletedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType: string;\n /** The type of blob. */\n blobType: string;\n /** The path to the blob. */\n url: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryCreated event. */\nexport interface StorageDirectoryCreatedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The etag of the directory at the time this event was triggered. */\n eTag: string;\n /** The path to the directory. */\n url: string;\n /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryDeleted event. */\nexport interface StorageDirectoryDeletedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The path to the deleted directory. */\n url: string;\n /** Is this event for a recursive delete operation. */\n recursive: string;\n /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobRenamed event. */\nexport interface StorageBlobRenamedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The path to the blob that was renamed. */\n sourceUrl: string;\n /** The new path to the blob after the rename operation. */\n destinationUrl: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryRenamed event. */\nexport interface StorageDirectoryRenamedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The path to the directory that was renamed. */\n sourceUrl: string;\n /** The new path to the directory after the rename operation. */\n destinationUrl: string;\n /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.LifecyclePolicyCompleted event. */\nexport interface StorageLifecyclePolicyCompletedEventData {\n /** The time the policy task was scheduled. */\n scheduleTime: string;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n deleteSummary: StorageLifecyclePolicyActionSummaryDetail;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n tierToCoolSummary: StorageLifecyclePolicyActionSummaryDetail;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n tierToColdSummary: StorageLifecyclePolicyActionSummaryDetail;\n /** Execution statistics of a specific policy action in a Blob Management cycle. */\n tierToArchiveSummary: StorageLifecyclePolicyActionSummaryDetail;\n}\n\n/** Execution statistics of a specific policy action in a Blob Management cycle. */\nexport interface StorageLifecyclePolicyActionSummaryDetail {\n /** Total number of objects to be acted on by this action. */\n totalObjectsCount: number;\n /** Number of success operations of this action. */\n successCount: number;\n /** Error messages of this action if any. */\n errorList: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobTierChanged event. */\nexport interface StorageBlobTierChangedEventData {\n /** The name of the API/operation that triggered this event. */\n api?: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId?: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId?: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType?: string;\n /** The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob. */\n contentLength?: number;\n /** The type of blob. */\n blobType?: string;\n /** The current tier of the blob. */\n accessTier: StorageBlobAccessTier;\n /** The previous tier of the blob. */\n previousTier: StorageBlobAccessTier;\n /** The path to the blob. */\n url?: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer?: string;\n /** The identity of the requester that triggered this event. */\n identity?: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics?: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.AsyncOperationInitiated event. */\nexport interface StorageAsyncOperationInitiatedEventData {\n /** The name of the API/operation that triggered this event. */\n api: string;\n /** A request id provided by the client of the storage API operation that triggered this event. */\n clientRequestId: string;\n /** The request id generated by the Storage service for the storage API operation that triggered this event. */\n requestId: string;\n /** The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob. */\n contentType: string;\n /** The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob. */\n contentLength: number;\n /** The type of blob. */\n blobType: string;\n /** The path to the blob. */\n url: string;\n /** An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name. */\n sequencer: string;\n /** The identity of the requester that triggered this event. */\n identity: string;\n /** For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers. */\n storageDiagnostics: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.BlobInventoryPolicyCompleted event. */\nexport interface StorageBlobInventoryPolicyCompletedEventData {\n /** The time at which inventory policy was scheduled. */\n scheduleDateTime: string;\n /** The account name for which inventory policy is registered. */\n accountName: string;\n /** The rule name for inventory policy. */\n ruleName: string;\n /** The status of inventory run, it can be Succeeded/PartiallySucceeded/Failed. */\n policyRunStatus: string;\n /** The status message for inventory run. */\n policyRunStatusMessage: string;\n /** The policy run id for inventory run. */\n policyRunId: string;\n /** The blob URL for manifest file for inventory run. */\n manifestBlobUrl: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskQueued event. */\nexport interface StorageTaskQueuedEventData {\n /** The time at which a storage task was queued. */\n queuedDateTime: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskCompleted event. */\nexport interface StorageTaskCompletedEventData {\n /** The status for a storage task. */\n status: StorageTaskCompletedStatus;\n /** The time at which a storage task was completed. */\n completedDateTime: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n /** The task name for a storage task. */\n taskName: string;\n /** The summary report blob url for a storage task */\n summaryReportBlobUrl: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentQueued event. */\nexport interface StorageTaskAssignmentQueuedEventData {\n /** The time at which a storage task was queued. */\n queuedOn: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentCompleted event. */\nexport interface StorageTaskAssignmentCompletedEventData {\n /** The status for a storage task. */\n status: StorageTaskAssignmentCompletedStatus;\n /** The time at which a storage task was completed. */\n completedOn: string;\n /** The execution id for a storage task. */\n taskExecutionId: string;\n /** The task name for a storage task. */\n taskName: string;\n /** The summary report blob url for a storage task */\n summaryReportBlobUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.EventHub.CaptureFileCreated event. */\nexport interface EventHubCaptureFileCreatedEventData {\n /** The path to the capture file. */\n fileUrl: string;\n /** The file type of the capture file. */\n fileType: string;\n /** The shard ID. */\n partitionId: string;\n /** The file size. */\n sizeInBytes: number;\n /** The number of events in the file. */\n eventCount: number;\n /** The smallest sequence number from the queue. */\n firstSequenceNumber: number;\n /** The last sequence number from the queue. */\n lastSequenceNumber: number;\n /** The first time from the queue. */\n firstEnqueueTime: string;\n /** The last time from the queue. */\n lastEnqueueTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteSuccess event. This is raised when a resource create or update operation succeeds. */\nexport interface ResourceWriteSuccessEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** The details of the authorization for the resource. */\nexport interface ResourceAuthorization {\n /** The scope of the authorization. */\n scope: string;\n /** The action being requested. */\n action: string;\n /** The evidence for the authorization. */\n evidence: { [propertyName: string]: string };\n}\n\n/** The details of the HTTP request. */\nexport interface ResourceHttpRequest {\n /** The client request ID. */\n clientRequestId: string;\n /** The client IP address. */\n clientIpAddress: string;\n /** The request method. */\n method: string;\n /** The url used in the request. */\n url: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteFailure event. This is raised when a resource create or update operation fails. */\nexport interface ResourceWriteFailureEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteCancel event. This is raised when a resource create or update operation is canceled. */\nexport interface ResourceWriteCancelEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceDeleteSuccess event. This is raised when a resource delete operation succeeds. */\nexport interface ResourceDeleteSuccessEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceDeleteFailure event. This is raised when a resource delete operation fails. */\nexport interface ResourceDeleteFailureEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceDeleteCancel event. This is raised when a resource delete operation is canceled. */\nexport interface ResourceDeleteCancelEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionSuccess event. This is raised when a resource action operation succeeds. */\nexport interface ResourceActionSuccessEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionFailure event. This is raised when a resource action operation fails. */\nexport interface ResourceActionFailureEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionCancel event. This is raised when a resource action operation is canceled. */\nexport interface ResourceActionCancelEventData {\n /** The tenant ID of the resource. */\n tenantId: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The resource group of the resource. */\n resourceGroup: string;\n /** The resource provider performing the operation. */\n resourceProvider: string;\n /** The URI of the resource in the operation. */\n resourceUri: string;\n /** The operation that was performed. */\n operationName: string;\n /** The status of the operation. */\n status: string;\n /** The requested authorization for the operation. */\n authorization: ResourceAuthorization;\n /** The properties of the claims. */\n claims: { [propertyName: string]: string };\n /** An operation ID used for troubleshooting. */\n correlationId: string;\n /** The details of the operation. */\n httpRequest: ResourceHttpRequest;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.EventGrid.SubscriptionValidationEvent event. */\nexport interface SubscriptionValidationEventData {\n /**\n * The validation code sent by Azure Event Grid to validate an event subscription. To complete the validation handshake, the subscriber must either respond with this validation code as part of the validation response, or perform a GET request on the validationUrl (available starting version 2018-05-01-preview).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly validationCode: string;\n /**\n * The validation URL sent by Azure Event Grid (available starting version 2018-05-01-preview). To complete the validation handshake, the subscriber must either respond with the validationCode as part of the validation response, or perform a GET request on the validationUrl (available starting version 2018-05-01-preview).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly validationUrl: string;\n}\n\n/** To complete an event subscription validation handshake, a subscriber can use either the validationCode or the validationUrl received in a SubscriptionValidationEvent. When the validationCode is used, the SubscriptionValidationResponse can be used to build the response. */\nexport interface SubscriptionValidationResponse {\n /** The validation response sent by the subscriber to Azure Event Grid to complete the validation of an event subscription. */\n validationResponse: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.EventGrid.SubscriptionDeletedEvent event. */\nexport interface SubscriptionDeletedEventData {\n /**\n * The Azure resource ID of the deleted event subscription.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly eventSubscriptionId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for MQTT Client state changes. */\nexport interface EventGridMqttClientEventData {\n /** Unique identifier for the MQTT client that the client presents to the service for authentication. This case-sensitive string can be up to 128 characters long, and supports UTF-8 characters. */\n clientAuthenticationName: string;\n /** Name of the client resource in the Event Grid namespace. */\n clientName: string;\n /** Name of the Event Grid namespace where the MQTT client was created or updated. */\n namespaceName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.CopyStarted event. */\nexport interface DataBoxCopyStartedEventData {\n /** Serial Number of the device associated with the event. The list is comma separated if more than one serial number is associated. */\n serialNumber: string;\n /** Name of the current Stage */\n stageName: DataBoxStageName;\n /** The time at which the stage happened. */\n stageTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.CopyCompleted event. */\nexport interface DataBoxCopyCompletedEventData {\n /** Serial Number of the device associated with the event. The list is comma separated if more than one serial number is associated. */\n serialNumber: string;\n /** Name of the current Stage */\n stageName: DataBoxStageName;\n /** The time at which the stage happened. */\n stageTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.DataBox.OrderCompleted event. */\nexport interface DataBoxOrderCompletedEventData {\n /** Serial Number of the device associated with the event. The list is comma separated if more than one serial number is associated. */\n serialNumber: string;\n /** Name of the current Stage */\n stageName: DataBoxStageName;\n /** The time at which the stage happened. */\n stageTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a device life cycle event (DeviceCreated, DeviceDeleted). */\nexport interface DeviceLifeCycleEvent {\n /** The unique identifier of the device. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. */\n deviceId: string;\n /** Name of the IoT Hub where the device was created or deleted. */\n hubName: string;\n /** Information about the device twin, which is the cloud representation of application device metadata. */\n twin: DeviceTwinInfo;\n}\n\n/** Information about the device twin, which is the cloud representation of application device metadata. */\nexport interface DeviceTwinInfo {\n /** Authentication type used for this device: either SAS, SelfSigned, or CertificateAuthority. */\n authenticationType: string;\n /** Count of cloud to device messages sent to this device. */\n cloudToDeviceMessageCount: number;\n /** Whether the device is connected or disconnected. */\n connectionState: string;\n /** The unique identifier of the device twin. */\n deviceId: string;\n /** A piece of information that describes the content of the device twin. Each etag is guaranteed to be unique per device twin. */\n etag: string;\n /** The ISO8601 timestamp of the last activity. */\n lastActivityTime: string;\n /** Properties JSON element. */\n properties: DeviceTwinInfoProperties;\n /** Whether the device twin is enabled or disabled. */\n status: string;\n /** The ISO8601 timestamp of the last device twin status update. */\n statusUpdateTime: string;\n /** An integer that is incremented by one each time the device twin is updated. */\n version: number;\n /** The thumbprint is a unique value for the x509 certificate, commonly used to find a particular certificate in a certificate store. The thumbprint is dynamically generated using the SHA1 algorithm, and does not physically exist in the certificate. */\n x509Thumbprint: DeviceTwinInfoX509Thumbprint;\n}\n\n/** Properties JSON element. */\nexport interface DeviceTwinInfoProperties {\n /** A portion of the properties that can be written only by the application back-end, and read by the device. */\n desired?: DeviceTwin;\n /** A portion of the properties that can be written only by the device, and read by the application back-end. */\n reported?: DeviceTwin;\n}\n\n/** A portion of the properties that can be written only by the application back-end, and read by the device. */\nexport interface DeviceTwin {\n /** Metadata information for the properties JSON document. */\n metadata: DeviceTwinMetadata;\n /** Version of device twin properties. */\n version: number;\n}\n\n/** Metadata information for the properties JSON document. */\nexport interface DeviceTwinMetadata {\n /** The ISO8601 timestamp of the last time the properties were updated. */\n lastUpdated: string;\n}\n\n/** The thumbprint is a unique value for the x509 certificate, commonly used to find a particular certificate in a certificate store. The thumbprint is dynamically generated using the SHA1 algorithm, and does not physically exist in the certificate. */\nexport interface DeviceTwinInfoX509Thumbprint {\n /** Primary thumbprint for the x509 certificate. */\n primaryThumbprint?: string;\n /** Secondary thumbprint for the x509 certificate. */\n secondaryThumbprint?: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a device connection state event (DeviceConnected, DeviceDisconnected). */\nexport interface DeviceConnectionStateEvent {\n /** The unique identifier of the device. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. */\n deviceId: string;\n /** The unique identifier of the module. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. */\n moduleId: string;\n /** Name of the IoT Hub where the device was created or deleted. */\n hubName: string;\n /** Information about the device connection state event. */\n deviceConnectionStateEventInfo: DeviceConnectionStateEventInfo;\n}\n\n/** Information about the device connection state event. */\nexport interface DeviceConnectionStateEventInfo {\n /** Sequence number is string representation of a hexadecimal number. string compare can be used to identify the larger number because both in ASCII and HEX numbers come after alphabets. If you are converting the string to hex, then the number is a 256 bit number. */\n sequenceNumber: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a device telemetry event (DeviceTelemetry). */\nexport interface DeviceTelemetryEvent {\n /** The content of the message from the device. */\n body: any;\n /** Application properties are user-defined strings that can be added to the message. These fields are optional. */\n properties: { [propertyName: string]: string };\n /** System properties help identify contents and source of the messages. */\n systemProperties: { [propertyName: string]: string };\n}\n\n/** The content of the event request message. */\nexport interface ContainerRegistryEventData {\n /** The event ID. */\n id: string;\n /** The time at which the event occurred. */\n timestamp: string;\n /** The action that encompasses the provided event. */\n action: string;\n /** The location of the event. */\n location: string;\n /** The target of the event. */\n target: ContainerRegistryEventTarget;\n /** The request that generated the event. */\n request: ContainerRegistryEventRequest;\n /** The agent that initiated the event. For most situations, this could be from the authorization context of the request. */\n actor: ContainerRegistryEventActor;\n /** The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it. */\n source: ContainerRegistryEventSource;\n /** The connected registry information if the event is generated by a connected registry. */\n connectedRegistry: ContainerRegistryEventConnectedRegistry;\n}\n\n/** The target of the event. */\nexport interface ContainerRegistryEventTarget {\n /** The MIME type of the referenced object. */\n mediaType: string;\n /** The number of bytes of the content. Same as Length field. */\n size: number;\n /** The digest of the content, as defined by the Registry V2 HTTP API Specification. */\n digest: string;\n /** The number of bytes of the content. Same as Size field. */\n length: number;\n /** The repository name. */\n repository: string;\n /** The direct URL to the content. */\n url: string;\n /** The tag name. */\n tag: string;\n}\n\n/** The request that generated the event. */\nexport interface ContainerRegistryEventRequest {\n /** The ID of the request that initiated the event. */\n id: string;\n /** The IP or hostname and possibly port of the client connection that initiated the event. This is the RemoteAddr from the standard http request. */\n addr: string;\n /** The externally accessible hostname of the registry instance, as specified by the http host header on incoming requests. */\n host: string;\n /** The request method that generated the event. */\n method: string;\n /** The user agent header of the request. */\n useragent: string;\n}\n\n/** The agent that initiated the event. For most situations, this could be from the authorization context of the request. */\nexport interface ContainerRegistryEventActor {\n /** The subject or username associated with the request context that generated the event. */\n name: string;\n}\n\n/** The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it. */\nexport interface ContainerRegistryEventSource {\n /** The IP or hostname and the port of the registry node that generated the event. Generally, this will be resolved by os.Hostname() along with the running port. */\n addr: string;\n /** The running instance of an application. Changes after each restart. */\n instanceID: string;\n}\n\n/** The connected registry information if the event is generated by a connected registry. */\nexport interface ContainerRegistryEventConnectedRegistry {\n /** The name of the connected registry that generated this event. */\n name: string;\n}\n\n/** The content of the event request message. */\nexport interface ContainerRegistryArtifactEventData {\n /** The event ID. */\n id: string;\n /** The time at which the event occurred. */\n timestamp: string;\n /** The action that encompasses the provided event. */\n action: string;\n /** The location of the event. */\n location: string;\n /** The target of the event. */\n target: ContainerRegistryArtifactEventTarget;\n /** The connected registry information if the event is generated by a connected registry. */\n connectedRegistry: ContainerRegistryEventConnectedRegistry;\n}\n\n/** The target of the event. */\nexport interface ContainerRegistryArtifactEventTarget {\n /** The MIME type of the artifact. */\n mediaType: string;\n /** The size in bytes of the artifact. */\n size: number;\n /** The digest of the artifact. */\n digest: string;\n /** The repository name of the artifact. */\n repository: string;\n /** The tag of the artifact. */\n tag: string;\n /** The name of the artifact. */\n name: string;\n /** The version of the artifact. */\n version: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.ActiveMessagesAvailableWithNoListeners event. */\nexport interface ServiceBusActiveMessagesAvailableWithNoListenersEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.DeadletterMessagesAvailableWithNoListeners event. */\nexport interface ServiceBusDeadletterMessagesAvailableWithNoListenersEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.ActiveMessagesAvailablePeriodicNotifications event. */\nexport interface ServiceBusActiveMessagesAvailablePeriodicNotificationsEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.DeadletterMessagesAvailablePeriodicNotifications event. */\nexport interface ServiceBusDeadletterMessagesAvailablePeriodicNotificationsEventData {\n /** The namespace name of the Microsoft.ServiceBus resource. */\n namespaceName: string;\n /** The endpoint of the Microsoft.ServiceBus resource. */\n requestUri: string;\n /** The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'. */\n entityType: string;\n /** The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null. */\n queueName: string;\n /** The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null. */\n topicName: string;\n /** The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null. */\n subscriptionName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Media.JobStateChange event. */\nexport interface MediaJobStateChangeEventData {\n /**\n * The previous state of the Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly previousState: MediaJobState;\n /**\n * The new state of the Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly state: MediaJobState;\n /** Gets the Job correlation data. */\n correlationData: { [propertyName: string]: string };\n}\n\n/** Details of JobOutput errors. */\nexport interface MediaJobError {\n /**\n * Error code describing the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code: MediaJobErrorCode;\n /**\n * A human-readable language-dependent representation of the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message: string;\n /**\n * Helps with categorization of errors.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly category: MediaJobErrorCategory;\n /**\n * Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly retry: MediaJobRetry;\n /**\n * An array of details about specific errors that led to this reported error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details: MediaJobErrorDetail[];\n}\n\n/** Details of JobOutput errors. */\nexport interface MediaJobErrorDetail {\n /**\n * Code describing the error detail.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code: string;\n /**\n * A human-readable representation of the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message: string;\n}\n\n/** The event data for a Job output. */\nexport interface MediaJobOutput {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n odataType: \"#Microsoft.Media.JobOutputAsset\";\n /** Gets the Job output error. */\n error?: MediaJobError;\n /** Gets the Job output label. */\n label?: string;\n /** Gets the Job output progress. */\n progress: number;\n /** Gets the Job output state. */\n state: MediaJobState;\n}\n\n/** Job Output Progress Event Data. Schema of the Data property of an EventGridEvent for a Microsoft.Media.JobOutputProgress event. */\nexport interface MediaJobOutputProgressEventData {\n /** Gets the Job output label. */\n label: string;\n /** Gets the Job output progress. */\n progress: number;\n /** Gets the Job correlation data. */\n jobCorrelationData: { [propertyName: string]: string };\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Media.JobOutputStateChange event. */\nexport interface MediaJobOutputStateChangeEventData {\n /**\n * The previous state of the Job.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly previousState: MediaJobState;\n /** Gets the output. */\n output: MediaJobOutputUnion;\n /** Gets the Job correlation data. */\n jobCorrelationData: { [propertyName: string]: string };\n}\n\n/** Encoder connect event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventEncoderConnected event. */\nexport interface MediaLiveEventEncoderConnectedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the stream Id.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly streamId: string;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n}\n\n/** Encoder connection rejected event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventConnectionRejected event. */\nexport interface MediaLiveEventConnectionRejectedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the stream Id.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly streamId: string;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n /**\n * Gets the result code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resultCode: string;\n}\n\n/** Encoder disconnected event data. Schema of the Data property of an EventGridEvent for a Microsoft.Media.LiveEventEncoderDisconnected event. */\nexport interface MediaLiveEventEncoderDisconnectedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the stream Id.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly streamId: string;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n /**\n * Gets the result code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resultCode: string;\n}\n\n/** Encoder connect event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingStreamReceived event. */\nexport interface MediaLiveEventIncomingStreamReceivedEventData {\n /**\n * Gets the ingest URL provided by the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestUrl: string;\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the track name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n /**\n * Gets the bitrate of the track.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the remote IP.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderIp: string;\n /**\n * Gets the remote port.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly encoderPort: string;\n /**\n * Gets the first timestamp of the data chunk received.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timestamp: string;\n /**\n * Gets the duration of the first data chunk.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly duration: string;\n /**\n * Gets the timescale in which timestamp is represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n}\n\n/** Incoming streams out of sync event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingStreamsOutOfSync event. */\nexport interface MediaLiveEventIncomingStreamsOutOfSyncEventData {\n /**\n * Gets the minimum last timestamp received.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly minLastTimestamp: string;\n /**\n * Gets the type of stream with minimum last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly typeOfStreamWithMinLastTimestamp: string;\n /**\n * Gets the maximum timestamp among all the tracks (audio or video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly maxLastTimestamp: string;\n /**\n * Gets the type of stream with maximum last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly typeOfStreamWithMaxLastTimestamp: string;\n /**\n * Gets the timescale in which \"MinLastTimestamp\" is represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescaleOfMinLastTimestamp: string;\n /**\n * Gets the timescale in which \"MaxLastTimestamp\" is represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescaleOfMaxLastTimestamp: string;\n}\n\n/** Incoming video stream out of sync event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingVideoStreamsOutOfSync event. */\nexport interface MediaLiveEventIncomingVideoStreamsOutOfSyncEventData {\n /**\n * Gets the first timestamp received for one of the quality levels.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly firstTimestamp: string;\n /**\n * Gets the duration of the data chunk with first timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly firstDuration: string;\n /**\n * Gets the timestamp received for some other quality levels.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly secondTimestamp: string;\n /**\n * Gets the duration of the data chunk with second timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly secondDuration: string;\n /**\n * Gets the timescale in which both the timestamps and durations are represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n}\n\n/** Ingest fragment dropped event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingDataChunkDropped event. */\nexport interface MediaLiveEventIncomingDataChunkDroppedEventData {\n /**\n * Gets the timestamp of the data chunk dropped.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timestamp: string;\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the bitrate of the track.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the timescale of the Timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n /**\n * Gets the result code for fragment drop operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resultCode: string;\n /**\n * Gets the name of the track for which fragment is dropped.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n}\n\n/** Ingest heartbeat event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIngestHeartbeat event. */\nexport interface MediaLiveEventIngestHeartbeatEventData {\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the track name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n /**\n * Gets the Live Transcription language.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transcriptionLanguage: string;\n /**\n * Gets the Live Transcription state.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly transcriptionState: string;\n /**\n * Gets the bitrate of the track.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the incoming bitrate.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly incomingBitrate: number;\n /**\n * Gets the track ingest drift value.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly ingestDriftValue: string;\n /**\n * Gets the arrival UTC time of the last fragment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastFragmentArrivalTime: string;\n /**\n * Gets the last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly lastTimestamp: string;\n /**\n * Gets the timescale of the last timestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n /**\n * Gets the fragment Overlap count.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly overlapCount: number;\n /**\n * Gets the fragment Discontinuity count.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly discontinuityCount: number;\n /**\n * Gets Non increasing count.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nonincreasingCount: number;\n /**\n * Gets a value indicating whether unexpected bitrate is present or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly unexpectedBitrate: boolean;\n /**\n * Gets the state of the live event.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly state: string;\n /**\n * Gets a value indicating whether preview is healthy or not.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly healthy: boolean;\n}\n\n/** Ingest track discontinuity detected event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventTrackDiscontinuityDetected event. */\nexport interface MediaLiveEventTrackDiscontinuityDetectedEventData {\n /**\n * Gets the type of the track (Audio / Video).\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackType: string;\n /**\n * Gets the track name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly trackName: string;\n /**\n * Gets the bitrate.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly bitrate: number;\n /**\n * Gets the timestamp of the previous fragment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly previousTimestamp: string;\n /**\n * Gets the timestamp of the current fragment.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly newTimestamp: string;\n /**\n * Gets the timescale in which both timestamps and discontinuity gap are represented.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly timescale: string;\n /**\n * Gets the discontinuity gap between PreviousTimestamp and NewTimestamp.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly discontinuityGap: string;\n}\n\n/** Channel Archive heartbeat event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventChannelArchiveHeartbeat event. */\nexport interface MediaLiveEventChannelArchiveHeartbeatEventData {\n /**\n * Gets the channel latency in ms.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly channelLatencyMs: string;\n /**\n * Gets the latency result code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly latencyResultCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Geofence event (GeofenceEntered, GeofenceExited, GeofenceResult). */\nexport interface MapsGeofenceEvent {\n /** Lists of the geometry ID of the geofence which is expired relative to the user time in the request. */\n expiredGeofenceGeometryId: string[];\n /** Lists the fence geometries that either fully contain the coordinate position or have an overlap with the searchBuffer around the fence. */\n geometries: MapsGeofenceGeometry[];\n /** Lists of the geometry ID of the geofence which is in invalid period relative to the user time in the request. */\n invalidPeriodGeofenceGeometryId: string[];\n /** True if at least one event is published to the Azure Maps event subscriber, false if no event is published to the Azure Maps event subscriber. */\n isEventPublished: boolean;\n}\n\n/** The geofence geometry. */\nexport interface MapsGeofenceGeometry {\n /** ID of the device. */\n deviceId: string;\n /** Distance from the coordinate to the closest border of the geofence. Positive means the coordinate is outside of the geofence. If the coordinate is outside of the geofence, but more than the value of searchBuffer away from the closest geofence border, then the value is 999. Negative means the coordinate is inside of the geofence. If the coordinate is inside the polygon, but more than the value of searchBuffer away from the closest geofencing border,then the value is -999. A value of 999 means that there is great confidence the coordinate is well outside the geofence. A value of -999 means that there is great confidence the coordinate is well within the geofence. */\n distance: number;\n /** The unique ID for the geofence geometry. */\n geometryId: string;\n /** Latitude of the nearest point of the geometry. */\n nearestLat: number;\n /** Longitude of the nearest point of the geometry. */\n nearestLon: number;\n /** The unique id returned from user upload service when uploading a geofence. Will not be included in geofencing post API. */\n udId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueModified event. */\nexport interface AppConfigurationKeyValueModifiedEventData {\n /** The key used to identify the key-value that was modified. */\n key: string;\n /** The label, if any, used to identify the key-value that was modified. */\n label: string;\n /** The etag representing the new state of the key-value. */\n etag: string;\n /** The sync token representing the server state after the event. */\n syncToken: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueDeleted event. */\nexport interface AppConfigurationKeyValueDeletedEventData {\n /** The key used to identify the key-value that was deleted. */\n key: string;\n /** The label, if any, used to identify the key-value that was deleted. */\n label: string;\n /** The etag representing the key-value that was deleted. */\n etag: string;\n /** The sync token representing the server state after the event. */\n syncToken: string;\n}\n\n/** Schema of common properties of snapshot events */\nexport interface AppConfigurationSnapshotEventData {\n /** The name of the snapshot. */\n name: string;\n /** The etag representing the new state of the snapshot. */\n etag: string;\n /** The sync token representing the server state after the event. */\n syncToken: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.SignalRService.ClientConnectionConnected event. */\nexport interface SignalRServiceClientConnectionConnectedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The hub of connected client connection. */\n hubName: string;\n /** The connection Id of connected client connection. */\n connectionId: string;\n /** The user Id of connected client connection. */\n userId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.SignalRService.ClientConnectionDisconnected event. */\nexport interface SignalRServiceClientConnectionDisconnectedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The hub of connected client connection. */\n hubName: string;\n /** The connection Id of connected client connection. */\n connectionId: string;\n /** The user Id of connected client connection. */\n userId: string;\n /** The message of error that cause the client connection disconnected. */\n errorMessage: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.CertificateNewVersionCreated event. */\nexport interface KeyVaultCertificateNewVersionCreatedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.CertificateNearExpiry event. */\nexport interface KeyVaultCertificateNearExpiryEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.CertificateExpired event. */\nexport interface KeyVaultCertificateExpiredEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.KeyNewVersionCreated event. */\nexport interface KeyVaultKeyNewVersionCreatedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.KeyNearExpiry event. */\nexport interface KeyVaultKeyNearExpiryEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.KeyExpired event. */\nexport interface KeyVaultKeyExpiredEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.SecretNewVersionCreated event. */\nexport interface KeyVaultSecretNewVersionCreatedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.SecretNearExpiry event. */\nexport interface KeyVaultSecretNearExpiryEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.SecretExpired event. */\nexport interface KeyVaultSecretExpiredEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.KeyVault.VaultAccessPolicyChanged event. */\nexport interface KeyVaultAccessPolicyChangedEventData {\n /** The id of the object that triggered this event. */\n id: string;\n /** Key vault name of the object that triggered this event. */\n vaultName: string;\n /** The type of the object that triggered this event */\n objectType: string;\n /** The name of the object that triggered this event */\n objectName: string;\n /** The version of the object that triggered this event */\n version: string;\n /** Not before date of the object that triggered this event */\n nbf: number;\n /** The expiration date of the object that triggered this event */\n exp: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.ModelRegistered event. */\nexport interface MachineLearningServicesModelRegisteredEventData {\n /** The name of the model that was registered. */\n modelName: string;\n /** The version of the model that was registered. */\n modelVersion: string;\n /** The tags of the model that was registered. */\n modelTags: any;\n /** The properties of the model that was registered. */\n modelProperties: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.ModelDeployed event. */\nexport interface MachineLearningServicesModelDeployedEventData {\n /** The name of the deployed service. */\n serviceName: string;\n /** The compute type (e.g. ACI, AKS) of the deployed service. */\n serviceComputeType: string;\n /** A common separated list of model IDs. The IDs of the models deployed in the service. */\n modelIds: string;\n /** The tags of the deployed service. */\n serviceTags: any;\n /** The properties of the deployed service. */\n serviceProperties: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.RunCompleted event. */\nexport interface MachineLearningServicesRunCompletedEventData {\n /** The ID of the experiment that the run belongs to. */\n experimentId: string;\n /** The name of the experiment that the run belongs to. */\n experimentName: string;\n /** The ID of the Run that was completed. */\n runId: string;\n /** The Run Type of the completed Run. */\n runType: string;\n /** The tags of the completed Run. */\n runTags: any;\n /** The properties of the completed Run. */\n runProperties: any;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.DatasetDriftDetected event. */\nexport interface MachineLearningServicesDatasetDriftDetectedEventData {\n /** The ID of the data drift monitor that triggered the event. */\n dataDriftId: string;\n /** The name of the data drift monitor that triggered the event. */\n dataDriftName: string;\n /** The ID of the Run that detected data drift. */\n runId: string;\n /** The ID of the base Dataset used to detect drift. */\n baseDatasetId: string;\n /** The ID of the target Dataset used to detect drift. */\n targetDatasetId: string;\n /** The coefficient result that triggered the event. */\n driftCoefficient: number;\n /** The start time of the target dataset time series that resulted in drift detection. */\n startTime: string;\n /** The end time of the target dataset time series that resulted in drift detection. */\n endTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.MachineLearningServices.RunStatusChanged event. */\nexport interface MachineLearningServicesRunStatusChangedEventData {\n /** The ID of the experiment that the Machine Learning Run belongs to. */\n experimentId: string;\n /** The name of the experiment that the Machine Learning Run belongs to. */\n experimentName: string;\n /** The ID of the Machine Learning Run. */\n runId: string;\n /** The Run Type of the Machine Learning Run. */\n runType: string;\n /** The tags of the Machine Learning Run. */\n runTags: any;\n /** The properties of the Machine Learning Run. */\n runProperties: any;\n /** The status of the Machine Learning Run. */\n runStatus: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.PatchingCompleted event. */\nexport interface RedisPatchingCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.ScalingCompleted event. */\nexport interface RedisScalingCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.ExportRDBCompleted event. */\nexport interface RedisExportRDBCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Cache.ImportRDBCompleted event. */\nexport interface RedisImportRDBCompletedEventData {\n /** The time at which the event occurred. */\n timestamp: string;\n /** The name of this event. */\n name: string;\n /** The status of this event. Failed or succeeded */\n status: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.AppUpdated event. */\nexport interface WebAppUpdatedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Detail of action on the app. */\nexport interface AppEventTypeDetail {\n /** Type of action of the operation. */\n action: AppAction;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.BackupOperationStarted event. */\nexport interface WebBackupOperationStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.BackupOperationCompleted event. */\nexport interface WebBackupOperationCompletedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.BackupOperationFailed event. */\nexport interface WebBackupOperationFailedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.RestoreOperationStarted event. */\nexport interface WebRestoreOperationStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.RestoreOperationCompleted event. */\nexport interface WebRestoreOperationCompletedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.RestoreOperationFailed event. */\nexport interface WebRestoreOperationFailedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapStarted event. */\nexport interface WebSlotSwapStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapCompleted event. */\nexport interface WebSlotSwapCompletedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapFailed event. */\nexport interface WebSlotSwapFailedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapWithPreviewStarted event. */\nexport interface WebSlotSwapWithPreviewStartedEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.SlotSwapWithPreviewCancelled event. */\nexport interface WebSlotSwapWithPreviewCancelledEventData {\n /** Detail of action on the app. */\n appEventTypeDetail: AppEventTypeDetail;\n /** name of the web site that had this event. */\n name: string;\n /** The client request id generated by the app service for the site API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the site API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the site API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.AppServicePlanUpdated event. */\nexport interface WebAppServicePlanUpdatedEventData {\n /** Detail of action on the app service plan. */\n appServicePlanEventTypeDetail: AppServicePlanEventTypeDetail;\n /** sku of app service plan. */\n sku: WebAppServicePlanUpdatedEventDataSku;\n /** name of the app service plan that had this event. */\n name: string;\n /** The client request id generated by the app service for the app service plan API operation that triggered this event. */\n clientRequestId: string;\n /** The correlation request id generated by the app service for the app service plan API operation that triggered this event. */\n correlationRequestId: string;\n /** The request id generated by the app service for the app service plan API operation that triggered this event. */\n requestId: string;\n /** HTTP request URL of this operation. */\n address: string;\n /** HTTP verb of this operation. */\n verb: string;\n}\n\n/** Detail of action on the app service plan. */\nexport interface AppServicePlanEventTypeDetail {\n /** Kind of environment where app service plan is. */\n stampKind: StampKind;\n /** Type of action on the app service plan. */\n action: AppServicePlanAction;\n /** Asynchronous operation status of the operation on the app service plan. */\n status: AsyncStatus;\n}\n\n/** sku of app service plan. */\nexport interface WebAppServicePlanUpdatedEventDataSku {\n /** name of app service plan sku. */\n name?: string;\n /** tier of app service plan sku. */\n tier?: string;\n /** size of app service plan sku. */\n size?: string;\n /** family of app service plan sku. */\n family?: string;\n /** capacity of app service plan sku. */\n capacity?: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Communication.IncomingCall event */\nexport interface AcsIncomingCallEventData {\n /** The communication identifier of the target user. */\n toCommunicationIdentifier: CommunicationIdentifierModel;\n /** The communication identifier of the user who initiated the call. */\n fromCommunicationIdentifier: CommunicationIdentifierModel;\n /** The Id of the server call */\n serverCallId: string;\n /** Display name of caller. */\n callerDisplayName: string;\n /** Custom Context of Incoming Call */\n customContext: AcsIncomingCallCustomContext;\n /** Signed incoming call context. */\n incomingCallContext: string;\n /** The communication identifier of the user on behalf of whom the call is made. */\n onBehalfOfCallee: CommunicationIdentifierModel;\n /** CorrelationId (CallId). */\n correlationId: string;\n}\n\n/** Identifies a participant in Azure Communication services. A participant is, for example, a phone number or an Azure communication user. This model is polymorphic: Apart from kind and rawId, at most one further property may be set which must match the kind enum value. */\nexport interface CommunicationIdentifierModel {\n /** The identifier kind. Only required in responses. */\n kind?: CommunicationIdentifierModelKind;\n /** Raw Id of the identifier. Optional in requests, required in responses. */\n rawId: string;\n /** The communication user. */\n communicationUser?: CommunicationUserIdentifierModel;\n /** The phone number. */\n phoneNumber?: PhoneNumberIdentifierModel;\n /** The Microsoft Teams user. */\n microsoftTeamsUser?: MicrosoftTeamsUserIdentifierModel;\n /** The Microsoft Teams application. */\n microsoftTeamsApp?: MicrosoftTeamsAppIdentifierModel;\n}\n\n/** A user that got created with an Azure Communication Services resource. */\nexport interface CommunicationUserIdentifierModel {\n /** The Id of the communication user. */\n id: string;\n}\n\n/** A phone number. */\nexport interface PhoneNumberIdentifierModel {\n /** The phone number in E.164 format. */\n value: string;\n}\n\n/** A Microsoft Teams user. */\nexport interface MicrosoftTeamsUserIdentifierModel {\n /** The Id of the Microsoft Teams user. If not anonymous, this is the AAD object Id of the user. */\n userId: string;\n /** True if the Microsoft Teams user is anonymous. By default false if missing. */\n isAnonymous?: boolean;\n /** The cloud that the Microsoft Teams user belongs to. By default 'public' if missing. */\n cloud?: CommunicationCloudEnvironmentModel;\n}\n\n/** A Microsoft Teams application. */\nexport interface MicrosoftTeamsAppIdentifierModel {\n /** The Id of the Microsoft Teams application. */\n appId: string;\n /** The cloud that the Microsoft Teams application belongs to. By default 'public' if missing. */\n cloud?: CommunicationCloudEnvironmentModel;\n}\n\n/** Custom Context of Incoming Call */\nexport interface AcsIncomingCallCustomContext {\n /** Sip Headers for incoming call */\n sipHeaders: { [propertyName: string]: string };\n /** Voip Headers for incoming call */\n voipHeaders: { [propertyName: string]: string };\n}\n\n/** Schema of the Data property of an EventGridEvent for an Microsoft.Communication.UserDisconnected event. */\nexport interface AcsUserDisconnectedEventData {\n /** The communication identifier of the user who was disconnected */\n userCommunicationIdentifier: CommunicationIdentifierModel;\n}\n\n/** Schema of common properties of all Router events */\nexport interface AcsRouterEventData {\n /** Router Event Job ID */\n jobId: string;\n /** Router Event Channel Reference */\n channelReference: string;\n /** Router Event Channel ID */\n channelId: string;\n}\n\n/** Router Communication Error */\nexport interface AcsRouterCommunicationError {\n /** Router Communication Error Code */\n code: string;\n /** Router Communication Error Message */\n message: string;\n /** Router Communication Error Target */\n target: string;\n /** Router Communication Inner Error */\n innererror: AcsRouterCommunicationError;\n /** List of Router Communication Errors */\n details: AcsRouterCommunicationError[];\n}\n\n/** Router Queue Details */\nexport interface AcsRouterQueueDetails {\n /** Router Queue Id */\n id: string;\n /** Router Queue Name */\n name: string;\n /** Router Queue Labels */\n labels: { [propertyName: string]: string };\n}\n\n/** Router Job Worker Selector */\nexport interface AcsRouterWorkerSelector {\n /** Router Job Worker Selector Key */\n key: string;\n /** Router Job Worker Selector Label Operator */\n labelOperator: AcsRouterLabelOperator;\n /** Router Job Worker Selector Value */\n labelValue: any;\n /** Router Job Worker Selector Time to Live in Seconds */\n ttlSeconds: number;\n /** Router Job Worker Selector State */\n state: AcsRouterWorkerSelectorState;\n /** Router Job Worker Selector Expiration Time */\n expirationTime: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerDeregistered event */\nexport interface AcsRouterWorkerDeregisteredEventData {\n /** Router Worker Deregistered Worker Id */\n workerId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerRegistered event */\nexport interface AcsRouterWorkerRegisteredEventData {\n /** Router Worker Registered Worker Id */\n workerId: string;\n /** Router Worker Registered Queue Info */\n queueAssignments: AcsRouterQueueDetails[];\n /** Router Worker Registered Channel Configuration */\n channelConfigurations: AcsRouterChannelConfiguration[];\n /** Router Worker Register Total Capacity */\n totalCapacity: number;\n /** Router Worker Registered Labels */\n labels: { [propertyName: string]: string };\n /** Router Worker Registered Tags */\n tags: { [propertyName: string]: string };\n}\n\n/** Router Channel Configuration */\nexport interface AcsRouterChannelConfiguration {\n /** Channel ID for Router Job */\n channelId: string;\n /** Capacity Cost Per Job for Router Job */\n capacityCostPerJob: number;\n /** Max Number of Jobs for Router Job */\n maxNumberOfJobs: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerUpdated event */\nexport interface AcsRouterWorkerUpdatedEventData {\n /** Router Worker Updated Worker Id */\n workerId: string;\n /** Router Worker Updated Queue Info */\n queueAssignments: AcsRouterQueueDetails[];\n /** Router Worker Updated Channel Configuration */\n channelConfigurations: AcsRouterChannelConfiguration[];\n /** Router Worker Updated Total Capacity */\n totalCapacity: number;\n /** Router Worker Updated Labels */\n labels: { [propertyName: string]: string };\n /** Router Worker Updated Tags */\n tags: { [propertyName: string]: string };\n /** Router Worker Properties Updated */\n updatedWorkerProperties: AcsRouterUpdatedWorkerProperty[];\n}\n\n/** Schema of common properties of all chat events */\nexport interface AcsChatEventBase {\n /** The communication identifier of the target user */\n recipientCommunicationIdentifier: CommunicationIdentifierModel;\n /** The transaction id will be used as co-relation vector */\n transactionId: string;\n /** The chat thread id */\n threadId: string;\n}\n\n/** Schema of common properties of all thread-level chat events */\nexport interface AcsChatEventInThreadBase {\n /** The transaction id will be used as co-relation vector */\n transactionId: string;\n /** The chat thread id */\n threadId: string;\n}\n\n/** Schema of the chat thread participant */\nexport interface AcsChatThreadParticipant {\n /** The name of the user */\n displayName: string;\n /** The communication identifier of the user */\n participantCommunicationIdentifier: CommunicationIdentifierModel;\n /** The metadata of the user */\n metadata: { [propertyName: string]: string };\n}\n\n/** Schema for details of a delivery attempt */\nexport interface AcsSmsDeliveryAttempt {\n /** TimeStamp when delivery was attempted */\n timestamp: string;\n /** Number of segments that were successfully delivered */\n segmentsSucceeded: number;\n /** Number of segments whose delivery failed */\n segmentsFailed: number;\n}\n\n/** Schema of common properties of all SMS events */\nexport interface AcsSmsEventBase {\n /** The identity of the SMS message */\n messageId: string;\n /** The identity of SMS message sender */\n from: string;\n /** The identity of SMS message receiver */\n to: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RecordingFileStatusUpdated event. */\nexport interface AcsRecordingFileStatusUpdatedEventData {\n /** The details of recording storage information */\n recordingStorageInfo: AcsRecordingStorageInfo;\n /** The time at which the recording started */\n recordingStartTime: string;\n /** The recording duration in milliseconds */\n recordingDurationMs: number;\n /** The recording content type- AudioVideo, or Audio */\n recordingContentType: RecordingContentType;\n /** The recording channel type - Mixed, Unmixed */\n recordingChannelType: RecordingChannelType;\n /** The recording format type - Mp4, Mp3, Wav */\n recordingFormatType: RecordingFormatType;\n /** The reason for ending recording session */\n sessionEndReason: string;\n}\n\n/** Schema for all properties of Recording Storage Information. */\nexport interface AcsRecordingStorageInfo {\n /** List of details of recording chunks information */\n recordingChunks: AcsRecordingChunkInfo[];\n}\n\n/** Schema for all properties of Recording Chunk Information. */\nexport interface AcsRecordingChunkInfo {\n /** The documentId of the recording chunk */\n documentId: string;\n /** The index of the recording chunk */\n index: number;\n /** The reason for ending the recording chunk */\n endReason: string;\n /** The location of the metadata for this chunk */\n metadataLocation: string;\n /** The location of the content for this chunk */\n contentLocation: string;\n /** The location to delete all chunk storage */\n deleteLocation: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.EmailDeliveryReportReceived event. */\nexport interface AcsEmailDeliveryReportReceivedEventData {\n /** The Sender Email Address */\n sender: string;\n /** The recipient Email Address */\n recipient: string;\n /** The Id of the email been sent */\n messageId: string;\n /** The status of the email. Any value other than Delivered is considered failed. */\n status: AcsEmailDeliveryReportStatus;\n /** Detailed information about the status if any */\n deliveryStatusDetails: AcsEmailDeliveryReportStatusDetails;\n /** The time at which the email delivery report received timestamp */\n deliveryAttemptTimestamp: string;\n}\n\n/** Detailed information about the status if any */\nexport interface AcsEmailDeliveryReportStatusDetails {\n /** Detailed status message */\n statusMessage: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.EmailEngagementTrackingReportReceived event. */\nexport interface AcsEmailEngagementTrackingReportReceivedEventData {\n /** The Sender Email Address */\n sender: string;\n /** The Recipient Email Address */\n recipient: string;\n /** The Id of the email that has been sent */\n messageId: string;\n /** The time at which the user interacted with the email */\n userActionTimestamp: string;\n /** The context of the type of engagement user had with email */\n engagementContext: string;\n /** The user agent interacting with the email */\n userAgent: string;\n /** The type of engagement user have with email */\n engagement: AcsUserEngagement;\n}\n\n/** Message Media Content */\nexport interface AcsMessageMediaContent {\n /** The MIME type of the file this media represents */\n mimeType: string;\n /** The media identifier */\n mediaId: string;\n /** The filename of the underlying media file as specified when uploaded */\n fileName: string;\n /** The caption for the media object, if supported and provided */\n caption: string;\n}\n\n/** Message Context */\nexport interface AcsMessageContext {\n /** The WhatsApp ID for the customer who replied to an inbound message. */\n from: string;\n /** The message ID for the sent message for an inbound reply */\n messageId: string;\n}\n\n/** Message Button Content */\nexport interface AcsMessageButtonContent {\n /** The Text of the button */\n text: string;\n /** The Payload of the button which was clicked by the user, setup by the business */\n payload: string;\n}\n\n/** Message Interactive Content */\nexport interface AcsMessageInteractiveContent {\n /** The Message interactive reply type */\n replyKind: AcsInteractiveReplyKind;\n /** The Message Sent when a customer clicks a button */\n buttonReply: AcsMessageInteractiveButtonReplyContent;\n /** The Message Sent when a customer selects an item from a list */\n listReply: AcsMessageInteractiveListReplyContent;\n}\n\n/** Message Interactive button reply content for a user to business message */\nexport interface AcsMessageInteractiveButtonReplyContent {\n /** The ID of the button */\n buttonId: string;\n /** The title of the button */\n title: string;\n}\n\n/** Message Interactive list reply content for a user to business message */\nexport interface AcsMessageInteractiveListReplyContent {\n /** The ID of the selected list item */\n listItemId: string;\n /** The title of the selected list item */\n title: string;\n /** The description of the selected row */\n description: string;\n}\n\n/** Schema of common properties of all chat thread events */\nexport interface AcsMessageEventData {\n /** The message sender */\n from: string;\n /** The message recipient */\n to: string;\n /** The time message was received */\n receivedTimestamp: string;\n /** The channel event error */\n error: AcsMessageChannelEventError;\n}\n\n/** Message Channel Event Error */\nexport interface AcsMessageChannelEventError {\n /** The channel error code */\n channelCode: string;\n /** The channel error message */\n channelMessage: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.PolicyInsights.PolicyStateCreated event. */\nexport interface PolicyInsightsPolicyStateCreatedEventData {\n /** The time that the resource was scanned by Azure Policy in the Universal ISO 8601 DateTime format yyyy-MM-ddTHH:mm:ss.fffffffZ. */\n timestamp: string;\n /** The resource ID of the policy assignment. */\n policyAssignmentId: string;\n /** The resource ID of the policy definition. */\n policyDefinitionId: string;\n /** The reference ID for the policy definition inside the initiative definition, if the policy assignment is for an initiative. May be empty. */\n policyDefinitionReferenceId: string;\n /** The compliance state of the resource with respect to the policy assignment. */\n complianceState: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The compliance reason code. May be empty. */\n complianceReasonCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.PolicyInsights.PolicyStateChanged event. */\nexport interface PolicyInsightsPolicyStateChangedEventData {\n /** The time that the resource was scanned by Azure Policy in the Universal ISO 8601 DateTime format yyyy-MM-ddTHH:mm:ss.fffffffZ. */\n timestamp: string;\n /** The resource ID of the policy assignment. */\n policyAssignmentId: string;\n /** The resource ID of the policy definition. */\n policyDefinitionId: string;\n /** The reference ID for the policy definition inside the initiative definition, if the policy assignment is for an initiative. May be empty. */\n policyDefinitionReferenceId: string;\n /** The compliance state of the resource with respect to the policy assignment. */\n complianceState: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The compliance reason code. May be empty. */\n complianceReasonCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.PolicyInsights.PolicyStateDeleted event. */\nexport interface PolicyInsightsPolicyStateDeletedEventData {\n /** The time that the resource was scanned by Azure Policy in the Universal ISO 8601 DateTime format yyyy-MM-ddTHH:mm:ss.fffffffZ. */\n timestamp: string;\n /** The resource ID of the policy assignment. */\n policyAssignmentId: string;\n /** The resource ID of the policy definition. */\n policyDefinitionId: string;\n /** The reference ID for the policy definition inside the initiative definition, if the policy assignment is for an initiative. May be empty. */\n policyDefinitionReferenceId: string;\n /** The compliance state of the resource with respect to the policy assignment. */\n complianceState: string;\n /** The subscription ID of the resource. */\n subscriptionId: string;\n /** The compliance reason code. May be empty. */\n complianceReasonCode: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NewKubernetesVersionAvailable event */\nexport interface ContainerServiceNewKubernetesVersionAvailableEventData {\n /** The highest PATCH Kubernetes version for the highest MINOR version supported by ManagedCluster resource */\n latestSupportedKubernetesVersion: string;\n /** The highest PATCH Kubernetes version for the MINOR version considered stable for the ManagedCluster resource */\n latestStableKubernetesVersion: string;\n /** The highest PATCH Kubernetes version for the lowest applicable MINOR version available for the ManagedCluster resource */\n lowestMinorKubernetesVersion: string;\n /** The highest PATCH Kubernetes version considered preview for the ManagedCluster resource. There might not be any version in preview at the time of publishing the event */\n latestPreviewKubernetesVersion: string;\n}\n\n/** Schema of common properties of cluster support events */\nexport interface ContainerServiceClusterSupportEventData {\n /** The Kubernetes version of the ManagedCluster resource */\n kubernetesVersion: string;\n}\n\n/** Schema of common properties of node pool rolling events */\nexport interface ContainerServiceNodePoolRollingEventData {\n /** The name of the node pool in the ManagedCluster resource */\n nodePoolName: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.UserCreated event. */\nexport interface ApiManagementUserCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.UserUpdated event. */\nexport interface ApiManagementUserUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.UserDeleted event. */\nexport interface ApiManagementUserDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.SubscriptionCreated event. */\nexport interface ApiManagementSubscriptionCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.SubscriptionUpdated event. */\nexport interface ApiManagementSubscriptionUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.SubscriptionDeleted event. */\nexport interface ApiManagementSubscriptionDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductCreated event. */\nexport interface ApiManagementProductCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductUpdated event. */\nexport interface ApiManagementProductUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductDeleted event. */\nexport interface ApiManagementProductDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APICreated event. */\nexport interface ApiManagementApiCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIUpdated event. */\nexport interface ApiManagementApiUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIDeleted event. */\nexport interface ApiManagementApiDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIReleaseCreated event. */\nexport interface ApiManagementApiReleaseCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIReleaseUpdated event. */\nexport interface ApiManagementApiReleaseUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.APIReleaseDeleted event. */\nexport interface ApiManagementApiReleaseDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCreated event. */\nexport interface ApiManagementGatewayCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayUpdated event. */\nexport interface ApiManagementGatewayUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayDeleted event. */\nexport interface ApiManagementGatewayDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayHostnameConfigurationCreated event. */\nexport interface ApiManagementGatewayHostnameConfigurationCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/hostnameConfigurations/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayHostnameConfigurationUpdated event. */\nexport interface ApiManagementGatewayHostnameConfigurationUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/hostnameConfigurations/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayHostnameConfigurationDeleted event. */\nexport interface ApiManagementGatewayHostnameConfigurationDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/hostnameConfigurations/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCertificateAuthorityCreated event. */\nexport interface ApiManagementGatewayCertificateAuthorityCreatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/certificateAuthorities/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCertificateAuthorityUpdated event. */\nexport interface ApiManagementGatewayCertificateAuthorityUpdatedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/certificateAuthorities/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayCertificateAuthorityDeleted event. */\nexport interface ApiManagementGatewayCertificateAuthorityDeletedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/certificateAuthorities/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayAPIAdded event. */\nexport interface ApiManagementGatewayApiAddedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/apis/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayAPIRemoved event. */\nexport interface ApiManagementGatewayApiRemovedEventData {\n /** The fully qualified ID of the resource that the compliance state change is for, including the resource name and resource type. Uses the format, `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/gateways/<GatewayName>/apis/<ResourceName>` */\n resourceUri: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceCreated event. */\nexport interface HealthcareFhirResourceCreatedEventData {\n /** Type of HL7 FHIR resource. */\n resourceType: HealthcareFhirResourceType;\n /** Domain name of FHIR account for this resource. */\n resourceFhirAccount: string;\n /** Id of HL7 FHIR resource. */\n resourceFhirId: string;\n /** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */\n resourceVersionId: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceUpdated event. */\nexport interface HealthcareFhirResourceUpdatedEventData {\n /** Type of HL7 FHIR resource. */\n resourceType: HealthcareFhirResourceType;\n /** Domain name of FHIR account for this resource. */\n resourceFhirAccount: string;\n /** Id of HL7 FHIR resource. */\n resourceFhirId: string;\n /** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */\n resourceVersionId: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceDeleted event. */\nexport interface HealthcareFhirResourceDeletedEventData {\n /** Type of HL7 FHIR resource. */\n resourceType: HealthcareFhirResourceType;\n /** Domain name of FHIR account for this resource. */\n resourceFhirAccount: string;\n /** Id of HL7 FHIR resource. */\n resourceFhirId: string;\n /** VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion). */\n resourceVersionId: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageCreated event. */\nexport interface HealthcareDicomImageCreatedEventData {\n /** Data partition name */\n partitionName: string;\n /** Unique identifier for the Study */\n imageStudyInstanceUid: string;\n /** Unique identifier for the Series */\n imageSeriesInstanceUid: string;\n /** Unique identifier for the DICOM Image */\n imageSopInstanceUid: string;\n /** Domain name of the DICOM account for this image. */\n serviceHostName: string;\n /** Sequence number of the DICOM Service within Azure Health Data Services. It is unique for every image creation and deletion within the service. */\n sequenceNumber: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageUpdated event. */\nexport interface HealthcareDicomImageUpdatedEventData {\n /** Data partition name */\n partitionName: string;\n /** Unique identifier for the Study */\n imageStudyInstanceUid: string;\n /** Unique identifier for the Series */\n imageSeriesInstanceUid: string;\n /** Unique identifier for the DICOM Image */\n imageSopInstanceUid: string;\n /** Domain name of the DICOM account for this image. */\n serviceHostName: string;\n /** Sequence number of the DICOM Service within Azure Health Data Services. It is unique for every image creation, updation and deletion within the service. */\n sequenceNumber: number;\n}\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.DicomImageDeleted event. */\nexport interface HealthcareDicomImageDeletedEventData {\n /** Data partition name */\n partitionName: string;\n /** Unique identifier for the Study */\n imageStudyInstanceUid: string;\n /** Unique identifier for the Series */\n imageSeriesInstanceUid: string;\n /** Unique identifier for the DICOM Image */\n imageSopInstanceUid: string;\n /** Host name of the DICOM account for this image. */\n serviceHostName: string;\n /** Sequence number of the DICOM Service within Azure Health Data Services. It is unique for every image creation and deletion within the service. */\n sequenceNumber: number;\n}\n\n/** Describes the schema of the properties under resource info which are common across all ARN system topic events */\nexport interface ResourceNotificationsResourceUpdatedDetails {\n /** id of the resource for which the event is being emitted */\n id: string;\n /** name of the resource for which the event is being emitted */\n name: string;\n /** the type of the resource for which the event is being emitted */\n type: string;\n /** the location of the resource for which the event is being emitted */\n location: string;\n /** the tags on the resource for which the event is being emitted */\n tags: { [propertyName: string]: string };\n /** properties in the payload of the resource for which the event is being emitted */\n properties: { [propertyName: string]: any };\n}\n\n/** details of operational info */\nexport interface ResourceNotificationsOperationalDetails {\n /** Date and Time when resource was updated */\n resourceEventTime: string;\n}\n\n/** Describes the schema of the common properties across all ARN system topic events */\nexport interface ResourceNotificationsResourceUpdatedEventData {\n /** resourceInfo details for update event */\n resourceDetails: ResourceNotificationsResourceUpdatedDetails;\n /** details about operational info */\n operationalDetails: ResourceNotificationsOperationalDetails;\n /** api version of the resource properties bag */\n apiVersion: string;\n}\n\n/** Describes the schema of the properties under resource info which are common across all ARN system topic delete events */\nexport interface ResourceNotificationsResourceDeletedDetails {\n /** id of the resource for which the event is being emitted */\n id: string;\n /** name of the resource for which the event is being emitted */\n name: string;\n /** the type of the resource for which the event is being emitted */\n type: string;\n}\n\n/** Describes the schema of the common properties across all ARN system topic delete events */\nexport interface ResourceNotificationsResourceDeletedEventData {\n /** resourceInfo details for delete event */\n resourceDetails: ResourceNotificationsResourceDeletedDetails;\n /** details about operational info */\n operationalDetails: ResourceNotificationsOperationalDetails;\n}\n\n/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/privateClouds events. */\nexport interface AvsPrivateCloudEventData {\n /** Id of the operation that caused this event. */\n operationId: string;\n}\n\n/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/clusters events. */\nexport interface AvsClusterEventData {\n /** Id of the operation that caused this event. */\n operationId: string;\n /** Hosts added to the cluster in this event, if any. */\n addedHostNames: string[];\n /** Hosts removed to the cluster in this event, if any. */\n removedHostNames: string[];\n /** Hosts in Maintenance mode in the cluster, if any. */\n inMaintenanceHostNames: string[];\n}\n\n/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/scriptExecutions events. */\nexport interface AvsScriptExecutionEventData {\n /** Id of the operation that caused this event. */\n operationId: string;\n /** Cmdlet referenced in the execution that caused this event. */\n cmdletId: string;\n /** Stdout outputs from the execution, if any. */\n output: string[];\n}\n\n/** Schema of the data property of an EventGridEvent for a Microsoft.ApiCenter.ApiDefinitionAdded event. */\nexport interface ApiCenterApiDefinitionAddedEventData {\n /** API definition title. */\n title: string;\n /** API definition description. */\n description: string;\n /** API specification details. */\n specification: ApiCenterApiSpecification;\n}\n\n/** API specification details. */\nexport interface ApiCenterApiSpecification {\n /** Specification name. */\n name: string;\n /** Specification version. */\n version: string;\n}\n\n/** Schema of the data property of an EventGridEvent for a Microsoft.ApiCenter.ApiDefinitionUpdated event. */\nexport interface ApiCenterApiDefinitionUpdatedEventData {\n /** API definition title. */\n title: string;\n /** API definition description. */\n description: string;\n /** API specification details. */\n specification: ApiCenterApiSpecification;\n}\n\n/** Event data for Microsoft.EventGrid.MQTTClientCreatedOrUpdated event. */\nexport type EventGridMqttClientCreatedOrUpdatedEventData = EventGridMqttClientEventData & {\n /** Configured state of the client. The value could be Enabled or Disabled */\n state: EventGridMqttClientState;\n /** Time the client resource is created based on the provider's UTC time. */\n createdOn: string;\n /** Time the client resource is last updated based on the provider's UTC time. If the client resource was never updated, this value is identical to the value of the 'createdOn' property. */\n updatedOn: string;\n /** The key-value attributes that are assigned to the client resource. */\n attributes: { [propertyName: string]: string };\n};\n\n/** Event data for Microsoft.EventGrid.MQTTClientDeleted event. */\nexport type EventGridMqttClientDeletedEventData = EventGridMqttClientEventData & {};\n\n/** Event data for Microsoft.EventGrid.MQTTClientSessionConnected event. */\nexport type EventGridMqttClientSessionConnectedEventData = EventGridMqttClientEventData & {\n /** Unique identifier for the MQTT client's session. This case-sensitive string can be up to 128 characters long, and supports UTF-8 characters. */\n clientSessionName: string;\n /** A number that helps indicate order of MQTT client session connected or disconnected events. Latest event will have a sequence number that is higher than the previous event. */\n sequenceNumber: number;\n};\n\n/** Event data for Microsoft.EventGrid.MQTTClientSessionDisconnected event. */\nexport type EventGridMqttClientSessionDisconnectedEventData = EventGridMqttClientEventData & {\n /** Unique identifier for the MQTT client's session. This case-sensitive string can be up to 128 characters long, and supports UTF-8 characters. */\n clientSessionName: string;\n /** A number that helps indicate order of MQTT client session connected or disconnected events. Latest event will have a sequence number that is higher than the previous event. */\n sequenceNumber: number;\n /** Reason for the disconnection of the MQTT client's session. The value could be one of the values in the disconnection reasons table. */\n disconnectionReason: EventGridMqttClientDisconnectionReason;\n};\n\n/** Event data for Microsoft.Devices.DeviceCreated event. */\nexport type IotHubDeviceCreatedEventData = DeviceLifeCycleEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceDeleted event. */\nexport type IotHubDeviceDeletedEventData = DeviceLifeCycleEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceConnected event. */\nexport type IotHubDeviceConnectedEventData = DeviceConnectionStateEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceDisconnected event. */\nexport type IotHubDeviceDisconnectedEventData = DeviceConnectionStateEvent & {};\n\n/** Event data for Microsoft.Devices.DeviceTelemetry event. */\nexport type IotHubDeviceTelemetryEventData = DeviceTelemetryEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ImagePushed event. */\nexport type ContainerRegistryImagePushedEventData = ContainerRegistryEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ImageDeleted event. */\nexport type ContainerRegistryImageDeletedEventData = ContainerRegistryEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ChartPushed event. */\nexport type ContainerRegistryChartPushedEventData = ContainerRegistryArtifactEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerRegistry.ChartDeleted event. */\nexport type ContainerRegistryChartDeletedEventData = ContainerRegistryArtifactEventData & {};\n\n/** Job scheduled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobScheduled event. */\nexport type MediaJobScheduledEventData = MediaJobStateChangeEventData & {};\n\n/** Job processing event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobProcessing event. */\nexport type MediaJobProcessingEventData = MediaJobStateChangeEventData & {};\n\n/** Job canceling event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobCanceling event. */\nexport type MediaJobCancelingEventData = MediaJobStateChangeEventData & {};\n\n/** Job finished event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobFinished event. */\nexport type MediaJobFinishedEventData = MediaJobStateChangeEventData & {\n /** Gets the Job outputs. */\n outputs: MediaJobOutputUnion[];\n};\n\n/** Job canceled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobCanceled event. */\nexport type MediaJobCanceledEventData = MediaJobStateChangeEventData & {\n /** Gets the Job outputs. */\n outputs: MediaJobOutputUnion[];\n};\n\n/** Job error state event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobErrored event. */\nexport type MediaJobErroredEventData = MediaJobStateChangeEventData & {\n /** Gets the Job outputs. */\n outputs: MediaJobOutputUnion[];\n};\n\n/** The event data for a Job output asset. */\nexport type MediaJobOutputAsset = MediaJobOutput & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n odataType: \"#Microsoft.Media.JobOutputAsset\";\n /** Gets the Job output asset name. */\n assetName: string;\n};\n\n/** Job output canceled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputCanceled event. */\nexport type MediaJobOutputCanceledEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output canceling event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputCanceling event. */\nexport type MediaJobOutputCancelingEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output error event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputErrored event. */\nexport type MediaJobOutputErroredEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output finished event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputFinished event. */\nexport type MediaJobOutputFinishedEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output processing event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputProcessing event. */\nexport type MediaJobOutputProcessingEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Job output scheduled event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.JobOutputScheduled event. */\nexport type MediaJobOutputScheduledEventData = MediaJobOutputStateChangeEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceEntered event. */\nexport type MapsGeofenceEnteredEventData = MapsGeofenceEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceExited event. */\nexport type MapsGeofenceExitedEventData = MapsGeofenceEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceResult event. */\nexport type MapsGeofenceResultEventData = MapsGeofenceEvent & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.SnapshotCreated event. */\nexport type AppConfigurationSnapshotCreatedEventData = AppConfigurationSnapshotEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.SnapshotModified event. */\nexport type AppConfigurationSnapshotModifiedEventData = AppConfigurationSnapshotEventData & {};\n\n/** Schema of common properties of all Router Job events */\nexport type AcsRouterJobEventData = AcsRouterEventData & {\n /** Router Job events Queue Id */\n queueId: string;\n /** Router Job events Labels */\n labels: { [propertyName: string]: string };\n /** Router Jobs events Tags */\n tags: { [propertyName: string]: string };\n};\n\n/** Schema of common properties of all Router Worker events */\nexport type AcsRouterWorkerEventData = AcsRouterEventData & {\n /** Router Worker events Worker Id */\n workerId: string;\n};\n\n/** Schema of common properties of all chat message events */\nexport type AcsChatMessageEventBase = AcsChatEventBase & {\n /** The chat message id */\n messageId: string;\n /** The communication identifier of the sender */\n senderCommunicationIdentifier: CommunicationIdentifierModel;\n /** The display name of the sender */\n senderDisplayName: string;\n /** The original compose time of the message */\n composeTime: string;\n /** The type of the message */\n type: string;\n /** The version of the message */\n version: number;\n};\n\n/** Schema of common properties of all chat thread events */\nexport type AcsChatThreadEventBase = AcsChatEventBase & {\n /** The original creation time of the thread */\n createTime: string;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of common properties of all thread-level chat message events */\nexport type AcsChatMessageEventInThreadBase = AcsChatEventInThreadBase & {\n /** The chat message id */\n messageId: string;\n /** The communication identifier of the sender */\n senderCommunicationIdentifier: CommunicationIdentifierModel;\n /** The display name of the sender */\n senderDisplayName: string;\n /** The original compose time of the message */\n composeTime: string;\n /** The type of the message */\n type: string;\n /** The version of the message */\n version: number;\n};\n\n/** Schema of common properties of all chat thread events */\nexport type AcsChatThreadEventInThreadBase = AcsChatEventInThreadBase & {\n /** The original creation time of the thread */\n createTime: string;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadParticipantAdded event. */\nexport type AcsChatParticipantAddedToThreadEventData = AcsChatEventInThreadBase & {\n /** The time at which the user was added to the thread */\n time: string;\n /** The communication identifier of the user who added the user */\n addedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was added */\n participantAdded: AcsChatThreadParticipant;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadParticipantRemoved event. */\nexport type AcsChatParticipantRemovedFromThreadEventData = AcsChatEventInThreadBase & {\n /** The time at which the user was removed to the thread */\n time: string;\n /** The communication identifier of the user who removed the user */\n removedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was removed */\n participantRemoved: AcsChatThreadParticipant;\n /** The version of the thread */\n version: number;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.SMSDeliveryReportReceived event. */\nexport type AcsSmsDeliveryReportReceivedEventData = AcsSmsEventBase & {\n /** Status of Delivery */\n deliveryStatus: string;\n /** Details about Delivery Status */\n deliveryStatusDetails: string;\n /** List of details of delivery attempts made */\n deliveryAttempts: AcsSmsDeliveryAttempt[];\n /** The time at which the SMS delivery report was received */\n receivedTimestamp: string;\n /** Customer Content */\n tag: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.SMSReceived event. */\nexport type AcsSmsReceivedEventData = AcsSmsEventBase & {\n /** The SMS content */\n message: string;\n /** The time at which the SMS was received */\n receivedTimestamp: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.AdvancedMessageReceived event. */\nexport type AcsMessageReceivedEventData = AcsMessageEventData & {\n /** The received message content */\n content: string;\n /** The received message channel Kind */\n channelKind: AcsMessageChannelKind;\n /** The received message media content */\n mediaContent: AcsMessageMediaContent;\n /** The received message context */\n context: AcsMessageContext;\n /** The received message button content */\n button: AcsMessageButtonContent;\n /** The received message interactive content */\n interactiveContent: AcsMessageInteractiveContent;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.AdvancedMessageDeliveryStatusUpdated event. */\nexport type AcsMessageDeliveryStatusUpdatedEventData = AcsMessageEventData & {\n /** The message id */\n messageId: string;\n /** The updated message status */\n status: AcsMessageDeliveryStatus;\n /** The updated message channel type */\n channelKind: AcsMessageChannelKind;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.ClusterSupportEnded event */\nexport type ContainerServiceClusterSupportEndedEventData = ContainerServiceClusterSupportEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.ClusterSupportEnding event */\nexport type ContainerServiceClusterSupportEndingEventData = ContainerServiceClusterSupportEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NodePoolRollingStarted event */\nexport type ContainerServiceNodePoolRollingStartedEventData = ContainerServiceNodePoolRollingEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NodePoolRollingSucceeded event */\nexport type ContainerServiceNodePoolRollingSucceededEventData = ContainerServiceNodePoolRollingEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ContainerService.NodePoolRollingFailed event */\nexport type ContainerServiceNodePoolRollingFailedEventData = ContainerServiceNodePoolRollingEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.HealthResources.AvailabilityStatusChanged event. */\nexport type ResourceNotificationsHealthResourcesAvailabilityStatusChangedEventData = ResourceNotificationsResourceUpdatedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.HealthResources.ResourceAnnotated event. */\nexport type ResourceNotificationsHealthResourcesAnnotatedEventData = ResourceNotificationsResourceUpdatedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.Resources.CreatedOrUpdated event. */\nexport type ResourceNotificationsResourceManagementCreatedOrUpdatedEventData = ResourceNotificationsResourceUpdatedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.Resources.Deleted event. */\nexport type ResourceNotificationsResourceManagementDeletedEventData = ResourceNotificationsResourceDeletedEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudUpdating event. */\nexport type AvsPrivateCloudUpdatingEventData = AvsPrivateCloudEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudUpdated event. */\nexport type AvsPrivateCloudUpdatedEventData = AvsPrivateCloudEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.PrivateCloudFailed event. */\nexport type AvsPrivateCloudFailedEventData = AvsPrivateCloudEventData & {\n /** Failure reason of an event. */\n failureMessage: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterCreated event. */\nexport type AvsClusterCreatedEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterDeleted event. */\nexport type AvsClusterDeletedEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterUpdating event. */\nexport type AvsClusterUpdatingEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterUpdated event. */\nexport type AvsClusterUpdatedEventData = AvsClusterEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ClusterFailed event. */\nexport type AvsClusterFailedEventData = AvsClusterEventData & {\n /** Failure reason of an event. */\n failureMessage: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionStarted event. */\nexport type AvsScriptExecutionStartedEventData = AvsScriptExecutionEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionFinished event. */\nexport type AvsScriptExecutionFinishedEventData = AvsScriptExecutionEventData & {\n /** Named outputs of completed execution, if any. */\n namedOutputs: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionCancelled event. */\nexport type AvsScriptExecutionCancelledEventData = AvsScriptExecutionEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.AVS.ScriptExecutionFailed event. */\nexport type AvsScriptExecutionFailedEventData = AvsScriptExecutionEventData & {\n /** Failure reason of an event. */\n failureMessage: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobCancelled event */\nexport type AcsRouterJobCancelledEventData = AcsRouterJobEventData & {\n /** Router Job Note */\n note: string;\n /** Router Job Disposition Code */\n dispositionCode: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClassificationFailed event */\nexport type AcsRouterJobClassificationFailedEventData = AcsRouterJobEventData & {\n /** Router Job Classification Policy Id */\n classificationPolicyId: string;\n /** Router Job Classification Failed Errors */\n errors: AcsRouterCommunicationError[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClassified event */\nexport type AcsRouterJobClassifiedEventData = AcsRouterJobEventData & {\n /** Router Job Queue Info */\n queueDetails: AcsRouterQueueDetails;\n /** Router Job Classification Policy Id */\n classificationPolicyId: string;\n /** Router Job Priority */\n priority: number;\n /** Router Job Attached Worker Selector */\n attachedWorkerSelectors: AcsRouterWorkerSelector[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClosed event */\nexport type AcsRouterJobClosedEventData = AcsRouterJobEventData & {\n /** Router Job Closed Assignment Id */\n assignmentId: string;\n /** Router Job Closed Worker Id */\n workerId: string;\n /** Router Job Closed Disposition Code */\n dispositionCode: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobCompleted event */\nexport type AcsRouterJobCompletedEventData = AcsRouterJobEventData & {\n /** Router Job Completed Assignment Id */\n assignmentId: string;\n /** Router Job Completed Worker Id */\n workerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobDeleted event */\nexport type AcsRouterJobDeletedEventData = AcsRouterJobEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobExceptionTriggered event */\nexport type AcsRouterJobExceptionTriggeredEventData = AcsRouterJobEventData & {\n /** Router Job Exception Triggered Rule Key */\n ruleKey: string;\n /** Router Job Exception Triggered Rule Id */\n exceptionRuleId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobQueued event */\nexport type AcsRouterJobQueuedEventData = AcsRouterJobEventData & {\n /** Router Job Priority */\n priority: number;\n /** Router Job Queued Attached Worker Selector */\n attachedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Queued Requested Worker Selector */\n requestedWorkerSelectors: AcsRouterWorkerSelector[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobReceived event */\nexport type AcsRouterJobReceivedEventData = AcsRouterJobEventData & {\n /** Router Job Received Job Status */\n jobStatus?: AcsRouterJobStatus;\n /** Router Job Classification Policy Id */\n classificationPolicyId?: string;\n /** Router Job Priority */\n priority?: number;\n /** Router Job Received Requested Worker Selectors */\n requestedWorkerSelectors?: AcsRouterWorkerSelector[];\n /** Router Job Received Scheduled Time in UTC */\n scheduledOn?: string;\n /** Unavailable For Matching for Router Job Received */\n unavailableForMatching: boolean;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobSchedulingFailed event */\nexport type AcsRouterJobSchedulingFailedEventData = AcsRouterJobEventData & {\n /** Router Job Priority */\n priority: number;\n /** Router Job Scheduling Failed Attached Worker Selector Expired */\n expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Scheduling Failed Requested Worker Selector Expired */\n expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Scheduling Failed Scheduled Time in UTC */\n scheduledOn: string;\n /** Router Job Scheduling Failed Reason */\n failureReason: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobUnassigned event */\nexport type AcsRouterJobUnassignedEventData = AcsRouterJobEventData & {\n /** Router Job Unassigned Assignment Id */\n assignmentId: string;\n /** Router Job Unassigned Worker Id */\n workerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobWaitingForActivation event */\nexport type AcsRouterJobWaitingForActivationEventData = AcsRouterJobEventData & {\n /** Router Job Waiting For Activation Priority */\n priority?: number;\n /** Router Job Waiting For Activation Worker Selector Expired */\n expiredAttachedWorkerSelectors?: AcsRouterWorkerSelector[];\n /** Router Job Waiting For Activation Requested Worker Selector Expired */\n expiredRequestedWorkerSelectors?: AcsRouterWorkerSelector[];\n /** Router Job Waiting For Activation Scheduled Time in UTC */\n scheduledOn?: string;\n /** Router Job Waiting For Activation Unavailable For Matching */\n unavailableForMatching: boolean;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobWorkerSelectorsExpired event */\nexport type AcsRouterJobWorkerSelectorsExpiredEventData = AcsRouterJobEventData & {\n /** Router Job Worker Selectors Expired Requested Worker Selectors */\n expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];\n /** Router Job Worker Selectors Expired Attached Worker Selectors */\n expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerDeleted event */\nexport type AcsRouterWorkerDeletedEventData = AcsRouterWorkerEventData & {};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferAccepted event */\nexport type AcsRouterWorkerOfferAcceptedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Accepted Queue Id */\n queueId: string;\n /** Router Worker Offer Accepted Offer Id */\n offerId: string;\n /** Router Worker Offer Accepted Assignment Id */\n assignmentId: string;\n /** Router Worker Offer Accepted Job Priority */\n jobPriority: number;\n /** Router Worker Offer Accepted Worker Labels */\n workerLabels: { [propertyName: string]: string };\n /** Router Worker Offer Accepted Worker Tags */\n workerTags: { [propertyName: string]: string };\n /** Router Worker Offer Accepted Job Labels */\n jobLabels: { [propertyName: string]: string };\n /** Router Worker Offer Accepted Job Tags */\n jobTags: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferDeclined event */\nexport type AcsRouterWorkerOfferDeclinedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Declined Queue Id */\n queueId: string;\n /** Router Worker Offer Declined Offer Id */\n offerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferExpired event */\nexport type AcsRouterWorkerOfferExpiredEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Expired Queue Id */\n queueId: string;\n /** Router Worker Offer Expired Offer Id */\n offerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferIssued event */\nexport type AcsRouterWorkerOfferIssuedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Issued Queue Id */\n queueId: string;\n /** Router Worker Offer Issued Offer Id */\n offerId: string;\n /** Router Worker Offer Issued Job Priority */\n jobPriority: number;\n /** Router Worker Offer Issued Worker Labels */\n workerLabels: { [propertyName: string]: string };\n /** Router Worker Offer Issued Time in UTC */\n offeredOn: string;\n /** Router Worker Offer Issued Expiration Time in UTC */\n expiresOn: string;\n /** Router Worker Offer Issued Worker Tags */\n workerTags: { [propertyName: string]: string };\n /** Router Worker Offer Issued Job Labels */\n jobLabels: { [propertyName: string]: string };\n /** Router Worker Offer Issued Job Tags */\n jobTags: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferRevoked event */\nexport type AcsRouterWorkerOfferRevokedEventData = AcsRouterWorkerEventData & {\n /** Router Worker Offer Revoked Queue Id */\n queueId: string;\n /** Router Worker Offer Revoked Offer Id */\n offerId: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageReceived event. */\nexport type AcsChatMessageReceivedEventData = AcsChatMessageEventBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageEdited event. */\nexport type AcsChatMessageEditedEventData = AcsChatMessageEventBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n /** The time at which the message was edited */\n editTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageDeleted event. */\nexport type AcsChatMessageDeletedEventData = AcsChatMessageEventBase & {\n /** The time at which the message was deleted */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadCreatedWithUser event. */\nexport type AcsChatThreadCreatedWithUserEventData = AcsChatThreadEventBase & {\n /** The communication identifier of the user who created the thread */\n createdByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The thread properties */\n properties: { [propertyName: string]: any };\n /** The thread metadata */\n metadata: { [propertyName: string]: string };\n /** The list of properties of participants who are part of the thread */\n participants: AcsChatThreadParticipant[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadWithUserDeleted event. */\nexport type AcsChatThreadWithUserDeletedEventData = AcsChatThreadEventBase & {\n /** The communication identifier of the user who deleted the thread */\n deletedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The deletion time of the thread */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadPropertiesUpdatedPerUser event. */\nexport type AcsChatThreadPropertiesUpdatedPerUserEventData = AcsChatThreadEventBase & {\n /** The communication identifier of the user who updated the thread properties */\n editedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The time at which the properties of the thread were updated */\n editTime: string;\n /** The thread metadata */\n metadata: { [propertyName: string]: string };\n /** The updated thread properties */\n properties: { [propertyName: string]: any };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatParticipantAddedToThreadWithUser event. */\nexport type AcsChatParticipantAddedToThreadWithUserEventData = AcsChatThreadEventBase & {\n /** The time at which the user was added to the thread */\n time: string;\n /** The communication identifier of the user who added the user */\n addedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was added */\n participantAdded: AcsChatThreadParticipant;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatParticipantRemovedFromThreadWithUser event. */\nexport type AcsChatParticipantRemovedFromThreadWithUserEventData = AcsChatThreadEventBase & {\n /** The time at which the user was removed to the thread */\n time: string;\n /** The communication identifier of the user who removed the user */\n removedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The details of the user who was removed */\n participantRemoved: AcsChatThreadParticipant;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageReceivedInThread event. */\nexport type AcsChatMessageReceivedInThreadEventData = AcsChatMessageEventInThreadBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageEditedInThread event. */\nexport type AcsChatMessageEditedInThreadEventData = AcsChatMessageEventInThreadBase & {\n /** The body of the chat message */\n messageBody: string;\n /** The chat message metadata */\n metadata: { [propertyName: string]: string };\n /** The time at which the message was edited */\n editTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageDeletedInThread event. */\nexport type AcsChatMessageDeletedInThreadEventData = AcsChatMessageEventInThreadBase & {\n /** The time at which the message was deleted */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadCreated event. */\nexport type AcsChatThreadCreatedEventData = AcsChatThreadEventInThreadBase & {\n /** The communication identifier of the user who created the thread */\n createdByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The thread properties */\n properties: { [propertyName: string]: any };\n /** The chat thread created metadata */\n metadata: { [propertyName: string]: string };\n /** The list of properties of participants who are part of the thread */\n participants: AcsChatThreadParticipant[];\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadDeleted event. */\nexport type AcsChatThreadDeletedEventData = AcsChatThreadEventInThreadBase & {\n /** The communication identifier of the user who deleted the thread */\n deletedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The deletion time of the thread */\n deleteTime: string;\n};\n\n/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatThreadPropertiesUpdated event. */\nexport type AcsChatThreadPropertiesUpdatedEventData = AcsChatThreadEventInThreadBase & {\n /** The communication identifier of the user who updated the thread properties */\n editedByCommunicationIdentifier: CommunicationIdentifierModel;\n /** The time at which the properties of the thread were updated */\n editTime: string;\n /** The updated thread properties */\n properties: { [propertyName: string]: any };\n /** The thread metadata */\n metadata: { [propertyName: string]: string };\n};\n\n/** Known values of {@link StorageBlobAccessTier} that the service accepts. */\nexport const enum KnownStorageBlobAccessTier {\n /** The blob is in access tier Hot */\n Hot = \"Hot\",\n /** The blob is in access tier Cool */\n Cool = \"Cool\",\n /** The blob is in access tier Cold */\n Cold = \"Cold\",\n /** The blob is in access tier Archive */\n Archive = \"Archive\",\n /** The blob is in access tier Default(Inferred) */\n Default = \"Default\"\n}\n\n/**\n * Defines values for StorageBlobAccessTier. \\\n * {@link KnownStorageBlobAccessTier} can be used interchangeably with StorageBlobAccessTier,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Hot**: The blob is in access tier Hot \\\n * **Cool**: The blob is in access tier Cool \\\n * **Cold**: The blob is in access tier Cold \\\n * **Archive**: The blob is in access tier Archive \\\n * **Default**: The blob is in access tier Default(Inferred)\n */\nexport type StorageBlobAccessTier = string;\n\n/** Known values of {@link StorageTaskCompletedStatus} that the service accepts. */\nexport const enum KnownStorageTaskCompletedStatus {\n Succeeded = \"Succeeded\",\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for StorageTaskCompletedStatus. \\\n * {@link KnownStorageTaskCompletedStatus} can be used interchangeably with StorageTaskCompletedStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Succeeded** \\\n * **Failed**\n */\nexport type StorageTaskCompletedStatus = string;\n\n/** Known values of {@link StorageTaskAssignmentCompletedStatus} that the service accepts. */\nexport const enum KnownStorageTaskAssignmentCompletedStatus {\n Succeeded = \"Succeeded\",\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for StorageTaskAssignmentCompletedStatus. \\\n * {@link KnownStorageTaskAssignmentCompletedStatus} can be used interchangeably with StorageTaskAssignmentCompletedStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Succeeded** \\\n * **Failed**\n */\nexport type StorageTaskAssignmentCompletedStatus = string;\n\n/** Known values of {@link EventGridMqttClientState} that the service accepts. */\nexport const enum KnownEventGridMqttClientState {\n Enabled = \"Enabled\",\n Disabled = \"Disabled\"\n}\n\n/**\n * Defines values for EventGridMqttClientState. \\\n * {@link KnownEventGridMqttClientState} can be used interchangeably with EventGridMqttClientState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Enabled** \\\n * **Disabled**\n */\nexport type EventGridMqttClientState = string;\n\n/** Known values of {@link EventGridMqttClientDisconnectionReason} that the service accepts. */\nexport const enum KnownEventGridMqttClientDisconnectionReason {\n /** The client got disconnected for any authentication reasons (for example, certificate expired, client got disabled, or client configuration changed). */\n ClientAuthenticationError = \"ClientAuthenticationError\",\n /** The client got disconnected for any authorization reasons (for example, because of a change in the configuration of topic spaces, permission bindings, or client groups). */\n ClientAuthorizationError = \"ClientAuthorizationError\",\n /** The client sent a bad request or used one of the unsupported features that resulted in a connection termination by the service. */\n ClientError = \"ClientError\",\n /** The client initiates a graceful disconnect through a DISCONNECT packet for MQTT or a close frame for MQTT over WebSocket. */\n ClientInitiatedDisconnect = \"ClientInitiatedDisconnect\",\n /** The client-server connection is lost. (EXCHANGE ONLINE PROTECTION). */\n ConnectionLost = \"ConnectionLost\",\n /** The client's IP address is blocked by IP filter or Private links configuration. */\n IpForbidden = \"IpForbidden\",\n /** The client exceeded one or more of the throttling limits that resulted in a connection termination by the service. */\n QuotaExceeded = \"QuotaExceeded\",\n /** The connection got terminated due to an unexpected server error. */\n ServerError = \"ServerError\",\n /** The server initiates a graceful disconnect for any operational reason. */\n ServerInitiatedDisconnect = \"ServerInitiatedDisconnect\",\n /** The client's queue for unacknowledged QoS1 messages reached its limit, which resulted in a connection termination by the server. */\n SessionOverflow = \"SessionOverflow\",\n /** The client reconnected with the same authentication name, which resulted in the termination of the previous connection. */\n SessionTakenOver = \"SessionTakenOver\"\n}\n\n/**\n * Defines values for EventGridMqttClientDisconnectionReason. \\\n * {@link KnownEventGridMqttClientDisconnectionReason} can be used interchangeably with EventGridMqttClientDisconnectionReason,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **ClientAuthenticationError**: The client got disconnected for any authentication reasons (for example, certificate expired, client got disabled, or client configuration changed). \\\n * **ClientAuthorizationError**: The client got disconnected for any authorization reasons (for example, because of a change in the configuration of topic spaces, permission bindings, or client groups). \\\n * **ClientError**: The client sent a bad request or used one of the unsupported features that resulted in a connection termination by the service. \\\n * **ClientInitiatedDisconnect**: The client initiates a graceful disconnect through a DISCONNECT packet for MQTT or a close frame for MQTT over WebSocket. \\\n * **ConnectionLost**: The client-server connection is lost. (EXCHANGE ONLINE PROTECTION). \\\n * **IpForbidden**: The client's IP address is blocked by IP filter or Private links configuration. \\\n * **QuotaExceeded**: The client exceeded one or more of the throttling limits that resulted in a connection termination by the service. \\\n * **ServerError**: The connection got terminated due to an unexpected server error. \\\n * **ServerInitiatedDisconnect**: The server initiates a graceful disconnect for any operational reason. \\\n * **SessionOverflow**: The client's queue for unacknowledged QoS1 messages reached its limit, which resulted in a connection termination by the server. \\\n * **SessionTakenOver**: The client reconnected with the same authentication name, which resulted in the termination of the previous connection.\n */\nexport type EventGridMqttClientDisconnectionReason = string;\n\n/** Known values of {@link DataBoxStageName} that the service accepts. */\nexport const enum KnownDataBoxStageName {\n /** Copy has started */\n CopyStarted = \"CopyStarted\",\n /** Copy has completed */\n CopyCompleted = \"CopyCompleted\",\n /** Order has been completed */\n OrderCompleted = \"OrderCompleted\"\n}\n\n/**\n * Defines values for DataBoxStageName. \\\n * {@link KnownDataBoxStageName} can be used interchangeably with DataBoxStageName,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **CopyStarted**: Copy has started \\\n * **CopyCompleted**: Copy has completed \\\n * **OrderCompleted**: Order has been completed\n */\nexport type DataBoxStageName = string;\n\n/** Known values of {@link AppAction} that the service accepts. */\nexport const enum KnownAppAction {\n /** Web app was restarted. */\n Restarted = \"Restarted\",\n /** Web app was stopped. */\n Stopped = \"Stopped\",\n /** There was an operation to change app setting on the web app. */\n ChangedAppSettings = \"ChangedAppSettings\",\n /** The job has started. */\n Started = \"Started\",\n /** The job has completed. */\n Completed = \"Completed\",\n /** The job has failed to complete. */\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for AppAction. \\\n * {@link KnownAppAction} can be used interchangeably with AppAction,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Restarted**: Web app was restarted. \\\n * **Stopped**: Web app was stopped. \\\n * **ChangedAppSettings**: There was an operation to change app setting on the web app. \\\n * **Started**: The job has started. \\\n * **Completed**: The job has completed. \\\n * **Failed**: The job has failed to complete.\n */\nexport type AppAction = string;\n\n/** Known values of {@link StampKind} that the service accepts. */\nexport const enum KnownStampKind {\n /** App Service Plan is running on a public stamp. */\n Public = \"Public\",\n /** App Service Plan is running on an App Service Environment V1. */\n AseV1 = \"AseV1\",\n /** App Service Plan is running on an App Service Environment V2. */\n AseV2 = \"AseV2\"\n}\n\n/**\n * Defines values for StampKind. \\\n * {@link KnownStampKind} can be used interchangeably with StampKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Public**: App Service Plan is running on a public stamp. \\\n * **AseV1**: App Service Plan is running on an App Service Environment V1. \\\n * **AseV2**: App Service Plan is running on an App Service Environment V2.\n */\nexport type StampKind = string;\n\n/** Known values of {@link AppServicePlanAction} that the service accepts. */\nexport const enum KnownAppServicePlanAction {\n /** App Service plan is being updated. */\n Updated = \"Updated\"\n}\n\n/**\n * Defines values for AppServicePlanAction. \\\n * {@link KnownAppServicePlanAction} can be used interchangeably with AppServicePlanAction,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Updated**: App Service plan is being updated.\n */\nexport type AppServicePlanAction = string;\n\n/** Known values of {@link AsyncStatus} that the service accepts. */\nexport const enum KnownAsyncStatus {\n /** Async operation has started. */\n Started = \"Started\",\n /** Async operation has completed. */\n Completed = \"Completed\",\n /** Async operation failed to complete. */\n Failed = \"Failed\"\n}\n\n/**\n * Defines values for AsyncStatus. \\\n * {@link KnownAsyncStatus} can be used interchangeably with AsyncStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Started**: Async operation has started. \\\n * **Completed**: Async operation has completed. \\\n * **Failed**: Async operation failed to complete.\n */\nexport type AsyncStatus = string;\n\n/** Known values of {@link CommunicationIdentifierModelKind} that the service accepts. */\nexport const enum KnownCommunicationIdentifierModelKind {\n Unknown = \"unknown\",\n CommunicationUser = \"communicationUser\",\n PhoneNumber = \"phoneNumber\",\n MicrosoftTeamsUser = \"microsoftTeamsUser\",\n MicrosoftTeamsApp = \"microsoftTeamsApp\"\n}\n\n/**\n * Defines values for CommunicationIdentifierModelKind. \\\n * {@link KnownCommunicationIdentifierModelKind} can be used interchangeably with CommunicationIdentifierModelKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **unknown** \\\n * **communicationUser** \\\n * **phoneNumber** \\\n * **microsoftTeamsUser** \\\n * **microsoftTeamsApp**\n */\nexport type CommunicationIdentifierModelKind = string;\n\n/** Known values of {@link CommunicationCloudEnvironmentModel} that the service accepts. */\nexport const enum KnownCommunicationCloudEnvironmentModel {\n Public = \"public\",\n Dod = \"dod\",\n Gcch = \"gcch\"\n}\n\n/**\n * Defines values for CommunicationCloudEnvironmentModel. \\\n * {@link KnownCommunicationCloudEnvironmentModel} can be used interchangeably with CommunicationCloudEnvironmentModel,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **public** \\\n * **dod** \\\n * **gcch**\n */\nexport type CommunicationCloudEnvironmentModel = string;\n\n/** Known values of {@link AcsRouterLabelOperator} that the service accepts. */\nexport const enum KnownAcsRouterLabelOperator {\n /** = */\n Equal = \"Equal\",\n /** != */\n NotEqual = \"NotEqual\",\n /** > */\n Greater = \"Greater\",\n /** < */\n Less = \"Less\",\n /** >= */\n GreaterThanOrEqual = \"GreaterThanOrEqual\",\n /** <= */\n LessThanOrEqual = \"LessThanOrEqual\"\n}\n\n/**\n * Defines values for AcsRouterLabelOperator. \\\n * {@link KnownAcsRouterLabelOperator} can be used interchangeably with AcsRouterLabelOperator,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Equal**: = \\\n * **NotEqual**: != \\\n * **Greater**: > \\\n * **Less**: < \\\n * **GreaterThanOrEqual**: >= \\\n * **LessThanOrEqual**: <=\n */\nexport type AcsRouterLabelOperator = string;\n\n/** Known values of {@link AcsRouterWorkerSelectorState} that the service accepts. */\nexport const enum KnownAcsRouterWorkerSelectorState {\n /** Router Job Worker Selector is Active */\n Active = \"active\",\n /** Router Job Worker Selector has Expire */\n Expired = \"expired\"\n}\n\n/**\n * Defines values for AcsRouterWorkerSelectorState. \\\n * {@link KnownAcsRouterWorkerSelectorState} can be used interchangeably with AcsRouterWorkerSelectorState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **active**: Router Job Worker Selector is Active \\\n * **expired**: Router Job Worker Selector has Expire\n */\nexport type AcsRouterWorkerSelectorState = string;\n\n/** Known values of {@link AcsRouterJobStatus} that the service accepts. */\nexport const enum KnownAcsRouterJobStatus {\n PendingClassification = \"PendingClassification\",\n Queued = \"Queued\",\n Assigned = \"Assigned\",\n Completed = \"Completed\",\n Closed = \"Closed\",\n Cancelled = \"Cancelled\",\n ClassificationFailed = \"ClassificationFailed\",\n Created = \"Created\",\n PendingSchedule = \"PendingSchedule\",\n Scheduled = \"Scheduled\",\n ScheduleFailed = \"ScheduleFailed\",\n WaitingForActivation = \"WaitingForActivation\"\n}\n\n/**\n * Defines values for AcsRouterJobStatus. \\\n * {@link KnownAcsRouterJobStatus} can be used interchangeably with AcsRouterJobStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **PendingClassification** \\\n * **Queued** \\\n * **Assigned** \\\n * **Completed** \\\n * **Closed** \\\n * **Cancelled** \\\n * **ClassificationFailed** \\\n * **Created** \\\n * **PendingSchedule** \\\n * **Scheduled** \\\n * **ScheduleFailed** \\\n * **WaitingForActivation**\n */\nexport type AcsRouterJobStatus = string;\n\n/** Known values of {@link AcsRouterUpdatedWorkerProperty} that the service accepts. */\nexport const enum KnownAcsRouterUpdatedWorkerProperty {\n AvailableForOffers = \"AvailableForOffers\",\n TotalCapacity = \"TotalCapacity\",\n QueueAssignments = \"QueueAssignments\",\n Labels = \"Labels\",\n Tags = \"Tags\",\n ChannelConfigurations = \"ChannelConfigurations\"\n}\n\n/**\n * Defines values for AcsRouterUpdatedWorkerProperty. \\\n * {@link KnownAcsRouterUpdatedWorkerProperty} can be used interchangeably with AcsRouterUpdatedWorkerProperty,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **AvailableForOffers** \\\n * **TotalCapacity** \\\n * **QueueAssignments** \\\n * **Labels** \\\n * **Tags** \\\n * **ChannelConfigurations**\n */\nexport type AcsRouterUpdatedWorkerProperty = string;\n\n/** Known values of {@link RecordingContentType} that the service accepts. */\nexport const enum KnownRecordingContentType {\n AudioVideo = \"AudioVideo\",\n Audio = \"Audio\"\n}\n\n/**\n * Defines values for RecordingContentType. \\\n * {@link KnownRecordingContentType} can be used interchangeably with RecordingContentType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **AudioVideo** \\\n * **Audio**\n */\nexport type RecordingContentType = string;\n\n/** Known values of {@link RecordingChannelType} that the service accepts. */\nexport const enum KnownRecordingChannelType {\n Mixed = \"Mixed\",\n Unmixed = \"Unmixed\"\n}\n\n/**\n * Defines values for RecordingChannelType. \\\n * {@link KnownRecordingChannelType} can be used interchangeably with RecordingChannelType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Mixed** \\\n * **Unmixed**\n */\nexport type RecordingChannelType = string;\n\n/** Known values of {@link RecordingFormatType} that the service accepts. */\nexport const enum KnownRecordingFormatType {\n Wav = \"Wav\",\n Mp3 = \"Mp3\",\n Mp4 = \"Mp4\"\n}\n\n/**\n * Defines values for RecordingFormatType. \\\n * {@link KnownRecordingFormatType} can be used interchangeably with RecordingFormatType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Wav** \\\n * **Mp3** \\\n * **Mp4**\n */\nexport type RecordingFormatType = string;\n\n/** Known values of {@link AcsEmailDeliveryReportStatus} that the service accepts. */\nexport const enum KnownAcsEmailDeliveryReportStatus {\n /** Hard bounce detected while sending the email */\n Bounced = \"Bounced\",\n /** The email was delivered */\n Delivered = \"Delivered\",\n /** The email failed to be delivered */\n Failed = \"Failed\",\n /** The message was identified spam and was rejected or blocked (not quarantined). */\n FilteredSpam = \"FilteredSpam\",\n /** The message was quarantined (as spam, bulk mail, or phishing). For more information, see Quarantined email messages in EOP (EXCHANGE ONLINE PROTECTION). */\n Quarantined = \"Quarantined\",\n /** The email was suppressed */\n Suppressed = \"Suppressed\"\n}\n\n/**\n * Defines values for AcsEmailDeliveryReportStatus. \\\n * {@link KnownAcsEmailDeliveryReportStatus} can be used interchangeably with AcsEmailDeliveryReportStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Bounced**: Hard bounce detected while sending the email \\\n * **Delivered**: The email was delivered \\\n * **Failed**: The email failed to be delivered \\\n * **FilteredSpam**: The message was identified spam and was rejected or blocked (not quarantined). \\\n * **Quarantined**: The message was quarantined (as spam, bulk mail, or phishing). For more information, see Quarantined email messages in EOP (EXCHANGE ONLINE PROTECTION). \\\n * **Suppressed**: The email was suppressed\n */\nexport type AcsEmailDeliveryReportStatus = string;\n\n/** Known values of {@link AcsUserEngagement} that the service accepts. */\nexport const enum KnownAcsUserEngagement {\n View = \"view\",\n Click = \"click\"\n}\n\n/**\n * Defines values for AcsUserEngagement. \\\n * {@link KnownAcsUserEngagement} can be used interchangeably with AcsUserEngagement,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **view** \\\n * **click**\n */\nexport type AcsUserEngagement = string;\n\n/** Known values of {@link AcsMessageChannelKind} that the service accepts. */\nexport const enum KnownAcsMessageChannelKind {\n /** Updated message channel type is Whatsapp */\n Whatsapp = \"whatsapp\"\n}\n\n/**\n * Defines values for AcsMessageChannelKind. \\\n * {@link KnownAcsMessageChannelKind} can be used interchangeably with AcsMessageChannelKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **whatsapp**: Updated message channel type is Whatsapp\n */\nexport type AcsMessageChannelKind = string;\n\n/** Known values of {@link AcsInteractiveReplyKind} that the service accepts. */\nexport const enum KnownAcsInteractiveReplyKind {\n /** Messaged interactive reply type is ButtonReply */\n ButtonReply = \"buttonReply\",\n /** Messaged interactive reply type is ListReply */\n ListReply = \"listReply\",\n /** Messaged interactive reply type is Unknown */\n Unknown = \"unknown\"\n}\n\n/**\n * Defines values for AcsInteractiveReplyKind. \\\n * {@link KnownAcsInteractiveReplyKind} can be used interchangeably with AcsInteractiveReplyKind,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **buttonReply**: Messaged interactive reply type is ButtonReply \\\n * **listReply**: Messaged interactive reply type is ListReply \\\n * **unknown**: Messaged interactive reply type is Unknown\n */\nexport type AcsInteractiveReplyKind = string;\n\n/** Known values of {@link AcsMessageDeliveryStatus} that the service accepts. */\nexport const enum KnownAcsMessageDeliveryStatus {\n Read = \"read\",\n Delivered = \"delivered\",\n Failed = \"failed\",\n Sent = \"sent\",\n Warning = \"warning\",\n Unknown = \"unknown\"\n}\n\n/**\n * Defines values for AcsMessageDeliveryStatus. \\\n * {@link KnownAcsMessageDeliveryStatus} can be used interchangeably with AcsMessageDeliveryStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **read** \\\n * **delivered** \\\n * **failed** \\\n * **sent** \\\n * **warning** \\\n * **unknown**\n */\nexport type AcsMessageDeliveryStatus = string;\n\n/** Known values of {@link HealthcareFhirResourceType} that the service accepts. */\nexport const enum KnownHealthcareFhirResourceType {\n /** The FHIR resource type defined in STU3 and R4. */\n Account = \"Account\",\n /** The FHIR resource type defined in STU3 and R4. */\n ActivityDefinition = \"ActivityDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n AdverseEvent = \"AdverseEvent\",\n /** The FHIR resource type defined in STU3 and R4. */\n AllergyIntolerance = \"AllergyIntolerance\",\n /** The FHIR resource type defined in STU3 and R4. */\n Appointment = \"Appointment\",\n /** The FHIR resource type defined in STU3 and R4. */\n AppointmentResponse = \"AppointmentResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n AuditEvent = \"AuditEvent\",\n /** The FHIR resource type defined in STU3 and R4. */\n Basic = \"Basic\",\n /** The FHIR resource type defined in STU3 and R4. */\n Binary = \"Binary\",\n /** The FHIR resource type defined in R4. */\n BiologicallyDerivedProduct = \"BiologicallyDerivedProduct\",\n /** The FHIR resource type defined in STU3. */\n BodySite = \"BodySite\",\n /** The FHIR resource type defined in R4. */\n BodyStructure = \"BodyStructure\",\n /** The FHIR resource type defined in STU3 and R4. */\n Bundle = \"Bundle\",\n /** The FHIR resource type defined in STU3 and R4. */\n CapabilityStatement = \"CapabilityStatement\",\n /** The FHIR resource type defined in STU3 and R4. */\n CarePlan = \"CarePlan\",\n /** The FHIR resource type defined in STU3 and R4. */\n CareTeam = \"CareTeam\",\n /** The FHIR resource type defined in R4. */\n CatalogEntry = \"CatalogEntry\",\n /** The FHIR resource type defined in STU3 and R4. */\n ChargeItem = \"ChargeItem\",\n /** The FHIR resource type defined in R4. */\n ChargeItemDefinition = \"ChargeItemDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Claim = \"Claim\",\n /** The FHIR resource type defined in STU3 and R4. */\n ClaimResponse = \"ClaimResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n ClinicalImpression = \"ClinicalImpression\",\n /** The FHIR resource type defined in STU3 and R4. */\n CodeSystem = \"CodeSystem\",\n /** The FHIR resource type defined in STU3 and R4. */\n Communication = \"Communication\",\n /** The FHIR resource type defined in STU3 and R4. */\n CommunicationRequest = \"CommunicationRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n CompartmentDefinition = \"CompartmentDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Composition = \"Composition\",\n /** The FHIR resource type defined in STU3 and R4. */\n ConceptMap = \"ConceptMap\",\n /** The FHIR resource type defined in STU3 and R4. */\n Condition = \"Condition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Consent = \"Consent\",\n /** The FHIR resource type defined in STU3 and R4. */\n Contract = \"Contract\",\n /** The FHIR resource type defined in STU3 and R4. */\n Coverage = \"Coverage\",\n /** The FHIR resource type defined in R4. */\n CoverageEligibilityRequest = \"CoverageEligibilityRequest\",\n /** The FHIR resource type defined in R4. */\n CoverageEligibilityResponse = \"CoverageEligibilityResponse\",\n /** The FHIR resource type defined in STU3. */\n DataElement = \"DataElement\",\n /** The FHIR resource type defined in STU3 and R4. */\n DetectedIssue = \"DetectedIssue\",\n /** The FHIR resource type defined in STU3 and R4. */\n Device = \"Device\",\n /** The FHIR resource type defined in STU3. */\n DeviceComponent = \"DeviceComponent\",\n /** The FHIR resource type defined in R4. */\n DeviceDefinition = \"DeviceDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n DeviceMetric = \"DeviceMetric\",\n /** The FHIR resource type defined in STU3 and R4. */\n DeviceRequest = \"DeviceRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n DeviceUseStatement = \"DeviceUseStatement\",\n /** The FHIR resource type defined in STU3 and R4. */\n DiagnosticReport = \"DiagnosticReport\",\n /** The FHIR resource type defined in STU3 and R4. */\n DocumentManifest = \"DocumentManifest\",\n /** The FHIR resource type defined in STU3 and R4. */\n DocumentReference = \"DocumentReference\",\n /** The FHIR resource type defined in STU3 and R4. */\n DomainResource = \"DomainResource\",\n /** The FHIR resource type defined in R4. */\n EffectEvidenceSynthesis = \"EffectEvidenceSynthesis\",\n /** The FHIR resource type defined in STU3. */\n EligibilityRequest = \"EligibilityRequest\",\n /** The FHIR resource type defined in STU3. */\n EligibilityResponse = \"EligibilityResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n Encounter = \"Encounter\",\n /** The FHIR resource type defined in STU3 and R4. */\n Endpoint = \"Endpoint\",\n /** The FHIR resource type defined in STU3 and R4. */\n EnrollmentRequest = \"EnrollmentRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n EnrollmentResponse = \"EnrollmentResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n EpisodeOfCare = \"EpisodeOfCare\",\n /** The FHIR resource type defined in R4. */\n EventDefinition = \"EventDefinition\",\n /** The FHIR resource type defined in R4. */\n Evidence = \"Evidence\",\n /** The FHIR resource type defined in R4. */\n EvidenceVariable = \"EvidenceVariable\",\n /** The FHIR resource type defined in R4. */\n ExampleScenario = \"ExampleScenario\",\n /** The FHIR resource type defined in STU3. */\n ExpansionProfile = \"ExpansionProfile\",\n /** The FHIR resource type defined in STU3 and R4. */\n ExplanationOfBenefit = \"ExplanationOfBenefit\",\n /** The FHIR resource type defined in STU3 and R4. */\n FamilyMemberHistory = \"FamilyMemberHistory\",\n /** The FHIR resource type defined in STU3 and R4. */\n Flag = \"Flag\",\n /** The FHIR resource type defined in STU3 and R4. */\n Goal = \"Goal\",\n /** The FHIR resource type defined in STU3 and R4. */\n GraphDefinition = \"GraphDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Group = \"Group\",\n /** The FHIR resource type defined in STU3 and R4. */\n GuidanceResponse = \"GuidanceResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n HealthcareService = \"HealthcareService\",\n /** The FHIR resource type defined in STU3. */\n ImagingManifest = \"ImagingManifest\",\n /** The FHIR resource type defined in STU3 and R4. */\n ImagingStudy = \"ImagingStudy\",\n /** The FHIR resource type defined in STU3 and R4. */\n Immunization = \"Immunization\",\n /** The FHIR resource type defined in R4. */\n ImmunizationEvaluation = \"ImmunizationEvaluation\",\n /** The FHIR resource type defined in STU3 and R4. */\n ImmunizationRecommendation = \"ImmunizationRecommendation\",\n /** The FHIR resource type defined in STU3 and R4. */\n ImplementationGuide = \"ImplementationGuide\",\n /** The FHIR resource type defined in R4. */\n InsurancePlan = \"InsurancePlan\",\n /** The FHIR resource type defined in R4. */\n Invoice = \"Invoice\",\n /** The FHIR resource type defined in STU3 and R4. */\n Library = \"Library\",\n /** The FHIR resource type defined in STU3 and R4. */\n Linkage = \"Linkage\",\n /** The FHIR resource type defined in STU3 and R4. */\n List = \"List\",\n /** The FHIR resource type defined in STU3 and R4. */\n Location = \"Location\",\n /** The FHIR resource type defined in STU3 and R4. */\n Measure = \"Measure\",\n /** The FHIR resource type defined in STU3 and R4. */\n MeasureReport = \"MeasureReport\",\n /** The FHIR resource type defined in STU3 and R4. */\n Media = \"Media\",\n /** The FHIR resource type defined in STU3 and R4. */\n Medication = \"Medication\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationAdministration = \"MedicationAdministration\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationDispense = \"MedicationDispense\",\n /** The FHIR resource type defined in R4. */\n MedicationKnowledge = \"MedicationKnowledge\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationRequest = \"MedicationRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n MedicationStatement = \"MedicationStatement\",\n /** The FHIR resource type defined in R4. */\n MedicinalProduct = \"MedicinalProduct\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductAuthorization = \"MedicinalProductAuthorization\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductContraindication = \"MedicinalProductContraindication\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductIndication = \"MedicinalProductIndication\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductIngredient = \"MedicinalProductIngredient\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductInteraction = \"MedicinalProductInteraction\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductManufactured = \"MedicinalProductManufactured\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductPackaged = \"MedicinalProductPackaged\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductPharmaceutical = \"MedicinalProductPharmaceutical\",\n /** The FHIR resource type defined in R4. */\n MedicinalProductUndesirableEffect = \"MedicinalProductUndesirableEffect\",\n /** The FHIR resource type defined in STU3 and R4. */\n MessageDefinition = \"MessageDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n MessageHeader = \"MessageHeader\",\n /** The FHIR resource type defined in R4. */\n MolecularSequence = \"MolecularSequence\",\n /** The FHIR resource type defined in STU3 and R4. */\n NamingSystem = \"NamingSystem\",\n /** The FHIR resource type defined in STU3 and R4. */\n NutritionOrder = \"NutritionOrder\",\n /** The FHIR resource type defined in STU3 and R4. */\n Observation = \"Observation\",\n /** The FHIR resource type defined in R4. */\n ObservationDefinition = \"ObservationDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n OperationDefinition = \"OperationDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n OperationOutcome = \"OperationOutcome\",\n /** The FHIR resource type defined in STU3 and R4. */\n Organization = \"Organization\",\n /** The FHIR resource type defined in R4. */\n OrganizationAffiliation = \"OrganizationAffiliation\",\n /** The FHIR resource type defined in STU3 and R4. */\n Parameters = \"Parameters\",\n /** The FHIR resource type defined in STU3 and R4. */\n Patient = \"Patient\",\n /** The FHIR resource type defined in STU3 and R4. */\n PaymentNotice = \"PaymentNotice\",\n /** The FHIR resource type defined in STU3 and R4. */\n PaymentReconciliation = \"PaymentReconciliation\",\n /** The FHIR resource type defined in STU3 and R4. */\n Person = \"Person\",\n /** The FHIR resource type defined in STU3 and R4. */\n PlanDefinition = \"PlanDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n Practitioner = \"Practitioner\",\n /** The FHIR resource type defined in STU3 and R4. */\n PractitionerRole = \"PractitionerRole\",\n /** The FHIR resource type defined in STU3 and R4. */\n Procedure = \"Procedure\",\n /** The FHIR resource type defined in STU3. */\n ProcedureRequest = \"ProcedureRequest\",\n /** The FHIR resource type defined in STU3. */\n ProcessRequest = \"ProcessRequest\",\n /** The FHIR resource type defined in STU3. */\n ProcessResponse = \"ProcessResponse\",\n /** The FHIR resource type defined in STU3 and R4. */\n Provenance = \"Provenance\",\n /** The FHIR resource type defined in STU3 and R4. */\n Questionnaire = \"Questionnaire\",\n /** The FHIR resource type defined in STU3 and R4. */\n QuestionnaireResponse = \"QuestionnaireResponse\",\n /** The FHIR resource type defined in STU3. */\n ReferralRequest = \"ReferralRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n RelatedPerson = \"RelatedPerson\",\n /** The FHIR resource type defined in STU3 and R4. */\n RequestGroup = \"RequestGroup\",\n /** The FHIR resource type defined in R4. */\n ResearchDefinition = \"ResearchDefinition\",\n /** The FHIR resource type defined in R4. */\n ResearchElementDefinition = \"ResearchElementDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n ResearchStudy = \"ResearchStudy\",\n /** The FHIR resource type defined in STU3 and R4. */\n ResearchSubject = \"ResearchSubject\",\n /** The FHIR resource type defined in STU3 and R4. */\n Resource = \"Resource\",\n /** The FHIR resource type defined in STU3 and R4. */\n RiskAssessment = \"RiskAssessment\",\n /** The FHIR resource type defined in R4. */\n RiskEvidenceSynthesis = \"RiskEvidenceSynthesis\",\n /** The FHIR resource type defined in STU3 and R4. */\n Schedule = \"Schedule\",\n /** The FHIR resource type defined in STU3 and R4. */\n SearchParameter = \"SearchParameter\",\n /** The FHIR resource type defined in STU3. */\n Sequence = \"Sequence\",\n /** The FHIR resource type defined in STU3. */\n ServiceDefinition = \"ServiceDefinition\",\n /** The FHIR resource type defined in R4. */\n ServiceRequest = \"ServiceRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n Slot = \"Slot\",\n /** The FHIR resource type defined in STU3 and R4. */\n Specimen = \"Specimen\",\n /** The FHIR resource type defined in R4. */\n SpecimenDefinition = \"SpecimenDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n StructureDefinition = \"StructureDefinition\",\n /** The FHIR resource type defined in STU3 and R4. */\n StructureMap = \"StructureMap\",\n /** The FHIR resource type defined in STU3 and R4. */\n Subscription = \"Subscription\",\n /** The FHIR resource type defined in STU3 and R4. */\n Substance = \"Substance\",\n /** The FHIR resource type defined in R4. */\n SubstanceNucleicAcid = \"SubstanceNucleicAcid\",\n /** The FHIR resource type defined in R4. */\n SubstancePolymer = \"SubstancePolymer\",\n /** The FHIR resource type defined in R4. */\n SubstanceProtein = \"SubstanceProtein\",\n /** The FHIR resource type defined in R4. */\n SubstanceReferenceInformation = \"SubstanceReferenceInformation\",\n /** The FHIR resource type defined in R4. */\n SubstanceSourceMaterial = \"SubstanceSourceMaterial\",\n /** The FHIR resource type defined in R4. */\n SubstanceSpecification = \"SubstanceSpecification\",\n /** The FHIR resource type defined in STU3 and R4. */\n SupplyDelivery = \"SupplyDelivery\",\n /** The FHIR resource type defined in STU3 and R4. */\n SupplyRequest = \"SupplyRequest\",\n /** The FHIR resource type defined in STU3 and R4. */\n Task = \"Task\",\n /** The FHIR resource type defined in R4. */\n TerminologyCapabilities = \"TerminologyCapabilities\",\n /** The FHIR resource type defined in STU3 and R4. */\n TestReport = \"TestReport\",\n /** The FHIR resource type defined in STU3 and R4. */\n TestScript = \"TestScript\",\n /** The FHIR resource type defined in STU3 and R4. */\n ValueSet = \"ValueSet\",\n /** The FHIR resource type defined in R4. */\n VerificationResult = \"VerificationResult\",\n /** The FHIR resource type defined in STU3 and R4. */\n VisionPrescription = \"VisionPrescription\"\n}\n\n/**\n * Defines values for HealthcareFhirResourceType. \\\n * {@link KnownHealthcareFhirResourceType} can be used interchangeably with HealthcareFhirResourceType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Account**: The FHIR resource type defined in STU3 and R4. \\\n * **ActivityDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **AdverseEvent**: The FHIR resource type defined in STU3 and R4. \\\n * **AllergyIntolerance**: The FHIR resource type defined in STU3 and R4. \\\n * **Appointment**: The FHIR resource type defined in STU3 and R4. \\\n * **AppointmentResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **AuditEvent**: The FHIR resource type defined in STU3 and R4. \\\n * **Basic**: The FHIR resource type defined in STU3 and R4. \\\n * **Binary**: The FHIR resource type defined in STU3 and R4. \\\n * **BiologicallyDerivedProduct**: The FHIR resource type defined in R4. \\\n * **BodySite**: The FHIR resource type defined in STU3. \\\n * **BodyStructure**: The FHIR resource type defined in R4. \\\n * **Bundle**: The FHIR resource type defined in STU3 and R4. \\\n * **CapabilityStatement**: The FHIR resource type defined in STU3 and R4. \\\n * **CarePlan**: The FHIR resource type defined in STU3 and R4. \\\n * **CareTeam**: The FHIR resource type defined in STU3 and R4. \\\n * **CatalogEntry**: The FHIR resource type defined in R4. \\\n * **ChargeItem**: The FHIR resource type defined in STU3 and R4. \\\n * **ChargeItemDefinition**: The FHIR resource type defined in R4. \\\n * **Claim**: The FHIR resource type defined in STU3 and R4. \\\n * **ClaimResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **ClinicalImpression**: The FHIR resource type defined in STU3 and R4. \\\n * **CodeSystem**: The FHIR resource type defined in STU3 and R4. \\\n * **Communication**: The FHIR resource type defined in STU3 and R4. \\\n * **CommunicationRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **CompartmentDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **Composition**: The FHIR resource type defined in STU3 and R4. \\\n * **ConceptMap**: The FHIR resource type defined in STU3 and R4. \\\n * **Condition**: The FHIR resource type defined in STU3 and R4. \\\n * **Consent**: The FHIR resource type defined in STU3 and R4. \\\n * **Contract**: The FHIR resource type defined in STU3 and R4. \\\n * **Coverage**: The FHIR resource type defined in STU3 and R4. \\\n * **CoverageEligibilityRequest**: The FHIR resource type defined in R4. \\\n * **CoverageEligibilityResponse**: The FHIR resource type defined in R4. \\\n * **DataElement**: The FHIR resource type defined in STU3. \\\n * **DetectedIssue**: The FHIR resource type defined in STU3 and R4. \\\n * **Device**: The FHIR resource type defined in STU3 and R4. \\\n * **DeviceComponent**: The FHIR resource type defined in STU3. \\\n * **DeviceDefinition**: The FHIR resource type defined in R4. \\\n * **DeviceMetric**: The FHIR resource type defined in STU3 and R4. \\\n * **DeviceRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **DeviceUseStatement**: The FHIR resource type defined in STU3 and R4. \\\n * **DiagnosticReport**: The FHIR resource type defined in STU3 and R4. \\\n * **DocumentManifest**: The FHIR resource type defined in STU3 and R4. \\\n * **DocumentReference**: The FHIR resource type defined in STU3 and R4. \\\n * **DomainResource**: The FHIR resource type defined in STU3 and R4. \\\n * **EffectEvidenceSynthesis**: The FHIR resource type defined in R4. \\\n * **EligibilityRequest**: The FHIR resource type defined in STU3. \\\n * **EligibilityResponse**: The FHIR resource type defined in STU3. \\\n * **Encounter**: The FHIR resource type defined in STU3 and R4. \\\n * **Endpoint**: The FHIR resource type defined in STU3 and R4. \\\n * **EnrollmentRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **EnrollmentResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **EpisodeOfCare**: The FHIR resource type defined in STU3 and R4. \\\n * **EventDefinition**: The FHIR resource type defined in R4. \\\n * **Evidence**: The FHIR resource type defined in R4. \\\n * **EvidenceVariable**: The FHIR resource type defined in R4. \\\n * **ExampleScenario**: The FHIR resource type defined in R4. \\\n * **ExpansionProfile**: The FHIR resource type defined in STU3. \\\n * **ExplanationOfBenefit**: The FHIR resource type defined in STU3 and R4. \\\n * **FamilyMemberHistory**: The FHIR resource type defined in STU3 and R4. \\\n * **Flag**: The FHIR resource type defined in STU3 and R4. \\\n * **Goal**: The FHIR resource type defined in STU3 and R4. \\\n * **GraphDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **Group**: The FHIR resource type defined in STU3 and R4. \\\n * **GuidanceResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **HealthcareService**: The FHIR resource type defined in STU3 and R4. \\\n * **ImagingManifest**: The FHIR resource type defined in STU3. \\\n * **ImagingStudy**: The FHIR resource type defined in STU3 and R4. \\\n * **Immunization**: The FHIR resource type defined in STU3 and R4. \\\n * **ImmunizationEvaluation**: The FHIR resource type defined in R4. \\\n * **ImmunizationRecommendation**: The FHIR resource type defined in STU3 and R4. \\\n * **ImplementationGuide**: The FHIR resource type defined in STU3 and R4. \\\n * **InsurancePlan**: The FHIR resource type defined in R4. \\\n * **Invoice**: The FHIR resource type defined in R4. \\\n * **Library**: The FHIR resource type defined in STU3 and R4. \\\n * **Linkage**: The FHIR resource type defined in STU3 and R4. \\\n * **List**: The FHIR resource type defined in STU3 and R4. \\\n * **Location**: The FHIR resource type defined in STU3 and R4. \\\n * **Measure**: The FHIR resource type defined in STU3 and R4. \\\n * **MeasureReport**: The FHIR resource type defined in STU3 and R4. \\\n * **Media**: The FHIR resource type defined in STU3 and R4. \\\n * **Medication**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationAdministration**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationDispense**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationKnowledge**: The FHIR resource type defined in R4. \\\n * **MedicationRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicationStatement**: The FHIR resource type defined in STU3 and R4. \\\n * **MedicinalProduct**: The FHIR resource type defined in R4. \\\n * **MedicinalProductAuthorization**: The FHIR resource type defined in R4. \\\n * **MedicinalProductContraindication**: The FHIR resource type defined in R4. \\\n * **MedicinalProductIndication**: The FHIR resource type defined in R4. \\\n * **MedicinalProductIngredient**: The FHIR resource type defined in R4. \\\n * **MedicinalProductInteraction**: The FHIR resource type defined in R4. \\\n * **MedicinalProductManufactured**: The FHIR resource type defined in R4. \\\n * **MedicinalProductPackaged**: The FHIR resource type defined in R4. \\\n * **MedicinalProductPharmaceutical**: The FHIR resource type defined in R4. \\\n * **MedicinalProductUndesirableEffect**: The FHIR resource type defined in R4. \\\n * **MessageDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **MessageHeader**: The FHIR resource type defined in STU3 and R4. \\\n * **MolecularSequence**: The FHIR resource type defined in R4. \\\n * **NamingSystem**: The FHIR resource type defined in STU3 and R4. \\\n * **NutritionOrder**: The FHIR resource type defined in STU3 and R4. \\\n * **Observation**: The FHIR resource type defined in STU3 and R4. \\\n * **ObservationDefinition**: The FHIR resource type defined in R4. \\\n * **OperationDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **OperationOutcome**: The FHIR resource type defined in STU3 and R4. \\\n * **Organization**: The FHIR resource type defined in STU3 and R4. \\\n * **OrganizationAffiliation**: The FHIR resource type defined in R4. \\\n * **Parameters**: The FHIR resource type defined in STU3 and R4. \\\n * **Patient**: The FHIR resource type defined in STU3 and R4. \\\n * **PaymentNotice**: The FHIR resource type defined in STU3 and R4. \\\n * **PaymentReconciliation**: The FHIR resource type defined in STU3 and R4. \\\n * **Person**: The FHIR resource type defined in STU3 and R4. \\\n * **PlanDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **Practitioner**: The FHIR resource type defined in STU3 and R4. \\\n * **PractitionerRole**: The FHIR resource type defined in STU3 and R4. \\\n * **Procedure**: The FHIR resource type defined in STU3 and R4. \\\n * **ProcedureRequest**: The FHIR resource type defined in STU3. \\\n * **ProcessRequest**: The FHIR resource type defined in STU3. \\\n * **ProcessResponse**: The FHIR resource type defined in STU3. \\\n * **Provenance**: The FHIR resource type defined in STU3 and R4. \\\n * **Questionnaire**: The FHIR resource type defined in STU3 and R4. \\\n * **QuestionnaireResponse**: The FHIR resource type defined in STU3 and R4. \\\n * **ReferralRequest**: The FHIR resource type defined in STU3. \\\n * **RelatedPerson**: The FHIR resource type defined in STU3 and R4. \\\n * **RequestGroup**: The FHIR resource type defined in STU3 and R4. \\\n * **ResearchDefinition**: The FHIR resource type defined in R4. \\\n * **ResearchElementDefinition**: The FHIR resource type defined in R4. \\\n * **ResearchStudy**: The FHIR resource type defined in STU3 and R4. \\\n * **ResearchSubject**: The FHIR resource type defined in STU3 and R4. \\\n * **Resource**: The FHIR resource type defined in STU3 and R4. \\\n * **RiskAssessment**: The FHIR resource type defined in STU3 and R4. \\\n * **RiskEvidenceSynthesis**: The FHIR resource type defined in R4. \\\n * **Schedule**: The FHIR resource type defined in STU3 and R4. \\\n * **SearchParameter**: The FHIR resource type defined in STU3 and R4. \\\n * **Sequence**: The FHIR resource type defined in STU3. \\\n * **ServiceDefinition**: The FHIR resource type defined in STU3. \\\n * **ServiceRequest**: The FHIR resource type defined in R4. \\\n * **Slot**: The FHIR resource type defined in STU3 and R4. \\\n * **Specimen**: The FHIR resource type defined in STU3 and R4. \\\n * **SpecimenDefinition**: The FHIR resource type defined in R4. \\\n * **StructureDefinition**: The FHIR resource type defined in STU3 and R4. \\\n * **StructureMap**: The FHIR resource type defined in STU3 and R4. \\\n * **Subscription**: The FHIR resource type defined in STU3 and R4. \\\n * **Substance**: The FHIR resource type defined in STU3 and R4. \\\n * **SubstanceNucleicAcid**: The FHIR resource type defined in R4. \\\n * **SubstancePolymer**: The FHIR resource type defined in R4. \\\n * **SubstanceProtein**: The FHIR resource type defined in R4. \\\n * **SubstanceReferenceInformation**: The FHIR resource type defined in R4. \\\n * **SubstanceSourceMaterial**: The FHIR resource type defined in R4. \\\n * **SubstanceSpecification**: The FHIR resource type defined in R4. \\\n * **SupplyDelivery**: The FHIR resource type defined in STU3 and R4. \\\n * **SupplyRequest**: The FHIR resource type defined in STU3 and R4. \\\n * **Task**: The FHIR resource type defined in STU3 and R4. \\\n * **TerminologyCapabilities**: The FHIR resource type defined in R4. \\\n * **TestReport**: The FHIR resource type defined in STU3 and R4. \\\n * **TestScript**: The FHIR resource type defined in STU3 and R4. \\\n * **ValueSet**: The FHIR resource type defined in STU3 and R4. \\\n * **VerificationResult**: The FHIR resource type defined in R4. \\\n * **VisionPrescription**: The FHIR resource type defined in STU3 and R4.\n */\nexport type HealthcareFhirResourceType = string;\n/** Defines values for MediaJobState. */\nexport type MediaJobState =\n | \"Canceled\"\n | \"Canceling\"\n | \"Error\"\n | \"Finished\"\n | \"Processing\"\n | \"Queued\"\n | \"Scheduled\";\n/** Defines values for MediaJobErrorCode. */\nexport type MediaJobErrorCode =\n | \"ServiceError\"\n | \"ServiceTransientError\"\n | \"DownloadNotAccessible\"\n | \"DownloadTransientError\"\n | \"UploadNotAccessible\"\n | \"UploadTransientError\"\n | \"ConfigurationUnsupported\"\n | \"ContentMalformed\"\n | \"ContentUnsupported\"\n | \"IdentityUnsupported\";\n/** Defines values for MediaJobErrorCategory. */\nexport type MediaJobErrorCategory =\n | \"Service\"\n | \"Download\"\n | \"Upload\"\n | \"Configuration\"\n | \"Content\"\n | \"Account\";\n/** Defines values for MediaJobRetry. */\nexport type MediaJobRetry = \"DoNotRetry\" | \"MayRetry\";\n\n/** Optional parameters. */\nexport interface GeneratedClientPublishEventGridEventsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface GeneratedClientPublishCloudEventEventsOptionalParams\n extends coreClient.OperationOptions {\n /** Required only when publishing to partner namespaces with partner topic routing mode ChannelNameHeader. */\n aegChannelName?: string;\n}\n\n/** Optional parameters. */\nexport interface GeneratedClientPublishCustomEventEventsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface GeneratedClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n"]}
|