Skip to content

Commit 7c4c42c

Browse files
Ok
1 parent 221884f commit 7c4c42c

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

specification/security/_types/ApiKey.ts

+12
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,22 @@ export class ApiKey {
5050
* Realm name of the principal for which this API key was created.
5151
*/
5252
realm?: string
53+
/**
54+
* Realm type of the principal for which this API key was created
55+
* @availability stack since=8.14.0
56+
* @availability serverless
57+
*/
58+
realm_type?: string
5359
/**
5460
* Principal for which this API key was created
5561
*/
5662
username?: Username
63+
/**
64+
* The profile uid for the API key owner principal, if requested and if it exists
65+
* @availability stack since=8.14.0
66+
* @availability serverless
67+
*/
68+
profile_uid?: string
5769
/**
5870
* Metadata of the API key
5971
* @availability stack since=7.13.0

specification/security/get_api_key/SecurityGetApiKeyRequest.ts

+7
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,12 @@ export interface Request extends RequestBase {
7575
* @availability serverless
7676
*/
7777
active_only?: boolean
78+
/**
79+
* Determines whether to also retrieve the profile uid, for the API key owner principal, if it exists.
80+
* @server_default false
81+
* @availability stack since=8.14.0
82+
* @availability serverless
83+
*/
84+
with_profile_uid?: boolean
7885
}
7986
}

specification/security/query_api_keys/QueryApiKeysRequest.ts

+14-1
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,22 @@ export interface Request extends RequestBase {
3838
* An API key's actual permission is the intersection of its assigned role descriptors and the owner user's role descriptors.
3939
* @availability stack since=8.5.0
4040
* @availability serverless
41-
4241
*/
4342
with_limited_by?: boolean
43+
/**
44+
* Determines whether to also retrieve the profile uid, for the API key owner principal, if it exists.
45+
* @server_default false
46+
* @availability stack since=8.14.0
47+
* @availability serverless
48+
*/
49+
with_profile_uid?: boolean
50+
/**
51+
* Determines whether aggregation names are prefixed by their respective types in the response.
52+
* @server_default false
53+
* @availability stack since=8.14.0
54+
* @availability serverless
55+
*/
56+
typed_keys?: boolean
4457
}
4558
body: {
4659
/**

0 commit comments

Comments
 (0)