-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added listServicePrincipalId (#17068)
* Added listServicePrincipalId * Fixed few errors * Fixed spelling * Fixed few errors * Fixed few errors * Added listServicePrincipalId * Fixed one error * Fixed few errors * Fixed error * Fixed error * Updated tag to trigger a build * Fixed spelling * Fixed comment * Changed from Post to get to work in ARM template * fixed failure * fixed failure * fixed warning * Refferred ProxyResource * Fixed ProxyResource and another comment * Added systemData for ServicePrincipal * Added Collection GET for Singleton * Fixed error and warnings * Fixed PrettierCheck error
- Loading branch information
Showing
4 changed files
with
207 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...manager/Microsoft.Automanage/preview/2021-04-30-preview/examples/getServicePrincipal.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "mySubscriptionId", | ||
"api-version": "2021-04-30-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "/subscriptions/subscriptionId/providers/Microsoft.Automanage/servicePrincipals/default", | ||
"name": "default", | ||
"type": "Microsoft.Automanage/ConfigurationProfileAssignments", | ||
"properties": { | ||
"servicePrincipalId": "<servicePrincipalId>", | ||
"authorizationSet": true | ||
}, | ||
"systemData": { | ||
"createdBy": "SYSTEM", | ||
"createdByType": "User", | ||
"createdAt": "0001-01-01T00:00:00.00Z", | ||
"lastModifiedBy": "SYSTEM", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "0001-01-01T00:00:00.00Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...ft.Automanage/preview/2021-04-30-preview/examples/listServicePrincipalBySubscription.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "mySubscriptionId", | ||
"api-version": "2021-04-30-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subscriptionId/providers/Microsoft.Automanage/servicePrincipals/default", | ||
"name": "default", | ||
"type": "Microsoft.Automanage/ConfigurationProfileAssignments", | ||
"properties": { | ||
"servicePrincipalId": "<servicePrincipalId>", | ||
"authorizationSet": true | ||
}, | ||
"systemData": { | ||
"createdBy": "SYSTEM", | ||
"createdByType": "User", | ||
"createdAt": "0001-01-01T00:00:00.00Z", | ||
"lastModifiedBy": "SYSTEM", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "0001-01-01T00:00:00.00Z" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |