Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add RBAC to 2020-10-01-preview autogen #15836

Merged
merged 2 commits into from
Sep 1, 2021
Merged
Show file tree
Hide file tree
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
Expand Up @@ -86,6 +86,7 @@
"description": "The role of the administrator."
}
},
"type": "object",
"description": "Classic Administrator properties."
},
"ClassicAdministrator": {
Expand All @@ -108,6 +109,7 @@
"description": "Properties for the classic administrator."
}
},
"type": "object",
"description": "Classic Administrators"
},
"ClassicAdministratorListResult": {
Expand All @@ -124,6 +126,7 @@
"description": "The URL to use for getting the next set of results."
}
},
"type": "object",
"description": "ClassicAdministrator list result information."
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
"description": "The resource type operations."
}
},
"type": "object",
"description": "Resource Type"
},
"ProviderOperation": {
Expand Down Expand Up @@ -172,6 +173,7 @@
"description": "The dataAction flag to specify the operation type."
}
},
"type": "object",
"description": "Operation"
},
"ProviderOperationsMetadata": {
Expand Down Expand Up @@ -207,6 +209,7 @@
"description": "The provider operations."
}
},
"type": "object",
"description": "Provider Operations metadata"
},
"ProviderOperationsMetadataListResult": {
Expand All @@ -223,6 +226,7 @@
"description": "The URL to use for getting the next set of results."
}
},
"type": "object",
"description": "Provider operations metadata list"
}
},
Expand All @@ -233,6 +237,7 @@
"required": true,
"type": "string",
"description": "The namespace of the resource provider.",
"x-ms-skip-url-encoding": true,
"x-ms-parameter-location": "method"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,7 @@
"required": true,
"type": "string",
"description": "The namespace of the resource provider.",
"x-ms-skip-url-encoding": true,
"x-ms-parameter-location": "method"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ResourceProviderNamespaceParameter"
"$ref": "../2020-10-01-preview/common-types.json#/parameters/ResourceProviderNamespaceParameter"
},
{
"name": "parentResourcePath",
Expand Down Expand Up @@ -404,6 +404,7 @@
"description": "Returns role definition with the specific type."
}
},
"type": "object",
"description": "Role Definitions filter"
},
"RoleDefinitionProperties": {
Expand Down Expand Up @@ -436,6 +437,7 @@
"description": "Role definition assignable scopes."
}
},
"type": "object",
"description": "Role definition properties."
},
"RoleDefinition": {
Expand All @@ -461,6 +463,7 @@
"description": "Role definition properties."
}
},
"type": "object",
"description": "Role definition."
},
"RoleDefinitionListResult": {
Expand All @@ -477,6 +480,7 @@
"description": "The URL to use for getting the next set of results."
}
},
"type": "object",
"description": "Role definition list operation result."
},
"PermissionGetResult": {
Expand All @@ -493,6 +497,7 @@
"description": "The URL to use for getting the next set of results."
}
},
"type": "object",
"description": "Permissions information."
},
"Permission": {
Expand Down Expand Up @@ -526,18 +531,11 @@
"description": "Denied Data actions."
}
},
"type": "object",
"description": "Role definition permissions."
}
},
"parameters": {
"ResourceProviderNamespaceParameter": {
"name": "resourceProviderNamespace",
"in": "path",
"required": true,
"type": "string",
"description": "The namespace of the resource provider.",
"x-ms-parameter-location": "method"
},
"FilterParameter": {
"name": "$filter",
"in": "query",
Expand Down
Loading