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 @@ -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