Skip to content
Merged
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
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2025-06-01/SourceControls.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "Security Insights",
Expand Down Expand Up @@ -405,6 +405,11 @@
"description": "Service principal metadata.",
"$ref": "#/definitions/ServicePrincipal"
},
"workloadIdentityFederation": {
"description": "Workload Identity metadata.",
"$ref": "#/definitions/WorkloadIdentityFederation",
"readOnly": true
},
"repositoryAccess": {
"description": "Repository access credentials. This is write-only object and it never returns back to a user.",
"x-ms-mutability": [
Expand Down Expand Up @@ -551,6 +556,37 @@
}
}
},
"WorkloadIdentityFederation": {
"type": "object",
"description": "Workload Identity Federation metadata.",
"properties": {
"id": {
"description": "Id of Workload Identity Federation.",
"type": "string",
"readOnly": true
},
"tenantId": {
"description": "Tenant id of Workload Identity Federation.",
"type": "string",
"readOnly": true
},
"appId": {
"description": "App id of Workload Identity Federation.",
"type": "string",
"readOnly": true
},
"subject": {
"description": "Subject of Workload Identity Federation.",
"type": "string",
"readOnly": true
},
"issuer": {
"description": "Issuer of Workload Identity Federation.",
"type": "string",
"readOnly": true
}
}
},
"RepositoryResourceInfo": {
"type": "object",
"description": "Resources created in user's repository for the source-control.",
Expand Down
Loading