forked from Azure/azure-resource-manager-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 12243 in Azure/azure-rest-api-specs
Merge 5aaa4b3e04507d31e01c163295e20daa5024e8a7 into dab488ef4572b30dee885044331326f8d1c8d329
- Loading branch information
SDKAuto
committed
Dec 29, 2020
1 parent
9cd73d3
commit 6aa677b
Showing
6 changed files
with
1,182 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2015-07-01/Microsoft.Authorization.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Microsoft.Authorization", | ||
"description": "Microsoft Authorization Resource Types", | ||
"resourceDefinitions": {}, | ||
"unknown_resourceDefinitions": { | ||
"roleAssignments": { | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2015-07-01" | ||
] | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the role assignment to create. It can be any valid GUID." | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/RoleAssignmentProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Role assignment properties." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Microsoft.Authorization/roleAssignments" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"name", | ||
"properties", | ||
"type" | ||
], | ||
"description": "Microsoft.Authorization/roleAssignments" | ||
}, | ||
"roleDefinitions": { | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2015-07-01" | ||
] | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The ID of the role definition." | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/RoleDefinitionProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Role definition properties." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Microsoft.Authorization/roleDefinitions" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"name", | ||
"properties", | ||
"type" | ||
], | ||
"description": "Microsoft.Authorization/roleDefinitions" | ||
} | ||
}, | ||
"definitions": { | ||
"Permission": { | ||
"type": "object", | ||
"properties": { | ||
"actions": { | ||
"oneOf": [ | ||
{ | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Allowed actions." | ||
}, | ||
"notActions": { | ||
"oneOf": [ | ||
{ | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Denied actions." | ||
} | ||
}, | ||
"description": "Role definition permissions." | ||
}, | ||
"RoleAssignmentProperties": { | ||
"type": "object", | ||
"properties": { | ||
"principalId": { | ||
"type": "string", | ||
"description": "The principal ID assigned to the role. This maps to the ID inside the Active Directory. It can point to a user, service principal, or security group." | ||
}, | ||
"roleDefinitionId": { | ||
"type": "string", | ||
"description": "The role definition ID used in the role assignment." | ||
} | ||
}, | ||
"required": [ | ||
"principalId", | ||
"roleDefinitionId" | ||
], | ||
"description": "Role assignment properties." | ||
}, | ||
"RoleDefinitionProperties": { | ||
"type": "object", | ||
"properties": { | ||
"assignableScopes": { | ||
"oneOf": [ | ||
{ | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Role definition assignable scopes." | ||
}, | ||
"description": { | ||
"type": "string", | ||
"description": "The role definition description." | ||
}, | ||
"permissions": { | ||
"oneOf": [ | ||
{ | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/Permission" | ||
} | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Role definition permissions." | ||
}, | ||
"roleName": { | ||
"type": "string", | ||
"description": "The role name." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"description": "The role type." | ||
} | ||
}, | ||
"description": "Role definition properties." | ||
} | ||
} | ||
} |
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,75 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2017-10-01-preview/Microsoft.Authorization.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Microsoft.Authorization", | ||
"description": "Microsoft Authorization Resource Types", | ||
"resourceDefinitions": {}, | ||
"unknown_resourceDefinitions": { | ||
"roleAssignments": { | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2017-10-01-preview" | ||
] | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the role assignment to create. It can be any valid GUID." | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/RoleAssignmentProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Role assignment properties." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Microsoft.Authorization/roleAssignments" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"name", | ||
"properties", | ||
"type" | ||
], | ||
"description": "Microsoft.Authorization/roleAssignments" | ||
} | ||
}, | ||
"definitions": { | ||
"RoleAssignmentProperties": { | ||
"type": "object", | ||
"properties": { | ||
"canDelegate": { | ||
"oneOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "The delegation flag used for creating a role assignment" | ||
}, | ||
"principalId": { | ||
"type": "string", | ||
"description": "The principal ID assigned to the role. This maps to the ID inside the Active Directory. It can point to a user, service principal, or security group." | ||
}, | ||
"roleDefinitionId": { | ||
"type": "string", | ||
"description": "The role definition ID used in the role assignment." | ||
} | ||
}, | ||
"description": "Role assignment properties." | ||
} | ||
} | ||
} |
Oops, something went wrong.