Skip to content

Commit

Permalink
Microsoft.AVS grid events review (Azure#30735)
Browse files Browse the repository at this point in the history
* AVS grid events

* generated files
  • Loading branch information
et1975 authored Sep 26, 2024
1 parent c8f9de7 commit 8511234
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 10 deletions.
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

0 comments on commit 8511234

Please sign in to comment.