Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft.AVS grid events review #30735

Merged
merged 2 commits into from
Sep 26, 2024
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 @@ -65,13 +65,13 @@ model AvsScriptExecutionFailedEventData extends AvsScriptExecutionEventData {
/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/privateClouds events. */
model AvsPrivateCloudEventData {
/** Id of the operation that caused this event. */
operationId?: string;
operationId: string;
}

/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/clusters events. */
model AvsClusterEventData {
/** Id of the operation that caused this event. */
operationId?: string;
operationId: string;

/** Hosts added to the cluster in this event, if any. */
addedHostNames?: string[];
Expand All @@ -86,10 +86,10 @@ model AvsClusterEventData {
/** Schema of the Data property of an EventGridEvent for Microsoft.AVS/scriptExecutions events. */
model AvsScriptExecutionEventData {
/** Id of the operation that caused this event. */
operationId?: string;
operationId: string;

/** Cmdlet referenced in the execution that caused this event. */
cmdletId?: string;
cmdletId: string;

/** Stdout outputs from the execution, if any. */
output?: string[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3037,7 +3037,10 @@
"type": "string"
}
}
}
},
"required": [
"operationId"
]
},
"AvsClusterFailedEventData": {
"type": "object",
Expand Down Expand Up @@ -3080,7 +3083,10 @@
"type": "string",
"description": "Id of the operation that caused this event."
}
}
},
"required": [
"operationId"
]
},
"AvsPrivateCloudFailedEventData": {
"type": "object",
Expand Down Expand Up @@ -3143,7 +3149,11 @@
"type": "string"
}
}
}
},
"required": [
"operationId",
"cmdletId"
]
},
"AvsScriptExecutionFailedEventData": {
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3101,7 +3101,10 @@
"type": "string"
}
}
}
},
"required": [
"operationId"
]
},
"AvsClusterFailedEventData": {
"type": "object",
Expand Down Expand Up @@ -3144,7 +3147,10 @@
"type": "string",
"description": "Id of the operation that caused this event."
}
}
},
"required": [
"operationId"
]
},
"AvsPrivateCloudFailedEventData": {
"type": "object",
Expand Down Expand Up @@ -3207,7 +3213,11 @@
"type": "string"
}
}
}
},
"required": [
"operationId",
"cmdletId"
]
},
"AvsScriptExecutionFailedEventData": {
"type": "object",
Expand Down