Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,15 @@ model AvsClusterEventData {
operationId: string;

/** Hosts added to the cluster in this event, if any. */
@visibility(Lifecycle.Read)
addedHostNames?: string[];

/** Hosts removed from the cluster in this event, if any. */
@visibility(Lifecycle.Read)
removedHostNames?: string[];

/** Hosts in Maintenance mode in the cluster, if any. */
@visibility(Lifecycle.Read)
inMaintenanceHostNames?: string[];
}

Expand All @@ -92,5 +95,6 @@ model AvsScriptExecutionEventData {
cmdletId: string;

/** Stdout outputs from the execution, if any. */
@visibility(Lifecycle.Read)
output?: string[];
}
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ model AcsSmsDeliveryReportReceivedEventData extends AcsSmsEventBaseProperties {
deliveryStatusDetails?: string;

/** List of details of delivery attempts made */
@visibility(Lifecycle.Read)
deliveryAttempts: AcsSmsDeliveryAttemptProperties[];

/** The time at which the SMS delivery report was received */
Expand Down Expand Up @@ -324,6 +325,7 @@ model AcsRouterJobClassificationFailedEventData extends AcsRouterJobEventData {
classificationPolicyId?: string;

/** Router Job Classification Failed Errors */
@visibility(Lifecycle.Read)
errors: AcsRouterCommunicationError[];
}

Expand All @@ -340,6 +342,7 @@ model AcsRouterJobClassifiedEventData extends AcsRouterJobEventData {
priority?: int32;

/** Router Job Attached Worker Selector */
@visibility(Lifecycle.Read)
attachedWorkerSelectors: AcsRouterWorkerSelector[];
}

Expand Down Expand Up @@ -387,9 +390,11 @@ model AcsRouterJobQueuedEventData extends AcsRouterJobEventData {
priority?: int32;

/** Router Job Queued Attached Worker Selector */
@visibility(Lifecycle.Read)
attachedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Queued Requested Worker Selector */
@visibility(Lifecycle.Read)
requestedWorkerSelectors: AcsRouterWorkerSelector[];
}

Expand All @@ -407,6 +412,7 @@ model AcsRouterJobReceivedEventData extends AcsRouterJobEventData {
priority?: int32;

/** Router Job Received Requested Worker Selectors */
@visibility(Lifecycle.Read)
requestedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Received Scheduled Time in UTC */
Expand Down Expand Up @@ -465,9 +471,11 @@ model AcsRouterJobSchedulingFailedEventData extends AcsRouterJobEventData {
priority?: int32;

/** Router Job Scheduling Failed Attached Worker Selector Expired */
@visibility(Lifecycle.Read)
expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Scheduling Failed Requested Worker Selector Expired */
@visibility(Lifecycle.Read)
expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Scheduling Failed Scheduled Time in UTC */
Expand Down Expand Up @@ -496,9 +504,11 @@ model AcsRouterJobWaitingForActivationEventData extends AcsRouterJobEventData {
priority?: int32;

/** Router Job Waiting For Activation Worker Selector Expired */
@visibility(Lifecycle.Read)
expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Waiting For Activation Requested Worker Selector Expired */
@visibility(Lifecycle.Read)
expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Waiting For Activation Scheduled Time in UTC */
Expand All @@ -515,9 +525,11 @@ model AcsRouterJobWaitingForActivationEventData extends AcsRouterJobEventData {
model AcsRouterJobWorkerSelectorsExpiredEventData
extends AcsRouterJobEventData {
/** Router Job Worker Selectors Expired Requested Worker Selectors */
@visibility(Lifecycle.Read)
expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];

/** Router Job Worker Selectors Expired Attached Worker Selectors */
@visibility(Lifecycle.Read)
expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];
}

Expand Down Expand Up @@ -630,9 +642,11 @@ model AcsRouterWorkerRegisteredEventData {
workerId?: string;

/** Router Worker Registered Queue Info */
@visibility(Lifecycle.Read)
queueAssignments: AcsRouterQueueDetails[];

/** Router Worker Registered Channel Configuration */
@visibility(Lifecycle.Read)
channelConfigurations: AcsRouterChannelConfiguration[];

/** Router Worker Register Total Capacity */
Expand Down Expand Up @@ -717,7 +731,8 @@ model AcsRouterCommunicationError {
innererror: AcsRouterCommunicationError;

/** List of Router Communication Errors */
details: AcsRouterCommunicationError[];
@visibility(Lifecycle.Read)
errors: AcsRouterCommunicationError[];
}

/** Router Job Worker Selector */
Expand Down Expand Up @@ -765,6 +780,7 @@ alias AcsChatThreadBaseEventData = {
metadata: Record<string>;

/** The list of properties of participants who are part of the thread */
@visibility(Lifecycle.Read)
participants: AcsChatThreadParticipantProperties[];
};

Expand Down Expand Up @@ -1034,6 +1050,7 @@ model AcsSmsDeliveryAttemptProperties {
/** Schema for all properties of Recording Storage Information. */
model AcsRecordingStorageInfoProperties {
/** List of details of recording chunks information */
@visibility(Lifecycle.Read)
recordingChunks: AcsRecordingChunkInfoProperties[];
}

Expand Down Expand Up @@ -1158,9 +1175,11 @@ model AcsRouterWorkerUpdatedEventData {
workerId?: string;

/** Router Worker Updated Queue Info */
@visibility(Lifecycle.Read)
queueAssignments: AcsRouterQueueDetails[];

/** Router Worker Updated Channel Configuration */
@visibility(Lifecycle.Read)
channelConfigurations: AcsRouterChannelConfiguration[];

/** Router Worker Updated Total Capacity */
Expand All @@ -1173,6 +1192,7 @@ model AcsRouterWorkerUpdatedEventData {
tags: Record<string>;

/** Router Worker Properties Updated */
@visibility(Lifecycle.Read)
updatedWorkerProperties: AcsRouterUpdatedWorkerProperty[];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@ model MapsGeofenceResultEventData extends MapsGeofenceEventProperties {}
/** Schema of the Data property of an EventGridEvent for a Geofence event (GeofenceEntered, GeofenceExited, GeofenceResult). */
model MapsGeofenceEventProperties {
/** Lists of the geometry ID of the geofence which is expired relative to the user time in the request. */
@visibility(Lifecycle.Read)
expiredGeofenceGeometryId: string[];

/** Lists the fence geometries that either fully contain the coordinate position or have an overlap with the searchBuffer around the fence. */
@visibility(Lifecycle.Read)
geometries: MapsGeofenceGeometry[];

/** Lists of the geometry ID of the geofence which is in invalid period relative to the user time in the request. */
@visibility(Lifecycle.Read)
invalidPeriodGeofenceGeometryId: string[];

/** 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. */
Expand Down
Loading