Skip to content

Commit

Permalink
Merge branch 'main' into gubalasu-dev-cdn-2024-09-01
Browse files Browse the repository at this point in the history
  • Loading branch information
gubalasu authored Sep 26, 2024
2 parents 6053aa2 + 8511234 commit 35269a7
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 11 deletions.
2 changes: 1 addition & 1 deletion eng/pipelines/codeowners-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ stages:
vmImage: ubuntu-22.04

variables:
CodeownersLinterVersion: '1.0.0-dev.20240917.2'
CodeownersLinterVersion: '1.0.0-dev.20240926.2'
DotNetDevOpsFeed: "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json"
RepoLabelUri: "https://azuresdkartifacts.blob.core.windows.net/azure-sdk-write-teams/repository-labels-blob"
TeamUserUri: "https://azuresdkartifacts.blob.core.windows.net/azure-sdk-write-teams/azure-sdk-write-teams-blob"
Expand Down
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 35269a7

Please sign in to comment.