More type definitions, with fixed links (hopefully)

This commit is contained in:
Josh Mock
2024-11-20 13:47:14 -06:00
parent 7a997b3405
commit 70a3ef44bb
296 changed files with 23864 additions and 474 deletions

View File

@ -54,8 +54,8 @@ interface SecurityPutRoleMappingRequest extends <<RequestBase>> {
enabled?: boolean
metadata?: <<Metadata>>
roles?: string[]
role_templates?: SecurityRoleTemplate[]
rules?: SecurityRoleMappingRule
role_templates?: <<SecurityRoleTemplate>>[]
rules?: <<SecurityRoleMappingRule>>
run_as?: string[]
}
@ -72,7 +72,7 @@ interface SecurityPutRoleMappingRequest extends <<RequestBase>> {
++++
interface SecurityPutRoleMappingResponse {
created?: boolean
role_mapping: SecurityCreatedStatus
role_mapping: <<SecurityCreatedStatus>>
}
[pass]