Skip to content

Commit

Permalink
add or modify files (Azure#21687)
Browse files Browse the repository at this point in the history
  • Loading branch information
xfz11 authored and kayousef committed Dec 21, 2022
1 parent 1e4dd11 commit c8ffa9c
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,42 @@
"body": {
"value": [
{
"targetService": "MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES",
"clientType": "none",
"authType": "systemAssignedIdentity",
"names": [
{
"value": "AZURE_APPCONFIGURATION_ENDPOINT",
"description": "App configuration endpoint"
},
{
"value": "AZURE_APPCONFIGURATION_SCOPE",
"description": "The scopes required for the token."
}
]
"properties": {
"targetService": "MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES",
"clientType": "none",
"authType": "systemAssignedIdentity",
"names": [
{
"value": "AZURE_APPCONFIGURATION_ENDPOINT",
"description": "App configuration endpoint"
},
{
"value": "AZURE_APPCONFIGURATION_SCOPE",
"description": "The scopes required for the token."
}
]
}
},
{
"targetService": "MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES",
"clientType": "none",
"authType": "userAssignedIdentity",
"names": [
{
"value": "AZURE_APPCONFIGURATION_ENDPOINT",
"description": "App configuration endpoint"
},
{
"value": "AZURE_APPCONFIGURATION_CLIENTID",
"description": "The client(application) ID of the user identity."
},
{
"value": "AZURE_APPCONFIGURATION_SCOPE",
"description": "The scopes required for getting token."
}
]
"properties": {
"targetService": "MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES",
"clientType": "none",
"authType": "userAssignedIdentity",
"names": [
{
"value": "AZURE_APPCONFIGURATION_ENDPOINT",
"description": "App configuration endpoint"
},
{
"value": "AZURE_APPCONFIGURATION_CLIENTID",
"description": "The client(application) ID of the user identity."
},
{
"value": "AZURE_APPCONFIGURATION_SCOPE",
"description": "The scopes required for getting token."
}
]
}
}
],
"nextLink": null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2003,6 +2003,17 @@
}
}
},
"ConfigurationNameItem": {
"type": "object",
"properties": {
"properties": {
"x-nullable": true,
"description": "The result detail.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/ConfigurationNames"
}
}
},
"ConfigurationNames": {
"type": "object",
"description": "The configuration names which will be set based on specific target resource, client type, auth type.",
Expand Down Expand Up @@ -2049,7 +2060,7 @@
"description": "Expected configuration names for each target service.",
"type": "array",
"items": {
"$ref": "#/definitions/ConfigurationNames"
"$ref": "#/definitions/ConfigurationNameItem"
},
"x-ms-identifiers": []
},
Expand Down

0 comments on commit c8ffa9c

Please sign in to comment.