Skip to content

Commit 47a3464

Browse files
committed
[skip ci] repo-sync
1 parent 0a3f5ab commit 47a3464

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

gen/models/managementV1Authentication.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ export class ManagementV1Authentication {
4141
* Prevents from team creation for the new groups associated with the user at the time of logging in through sso, Default behaviour is false, this means that teams will be created for new groups.
4242
*/
4343
'disableTeamCreation'?: boolean;
44+
/**
45+
* DisableUserCreation prevents the SSO connectors from creating a new user on a users initial signin through sso. Default behaviour is false, this means that a new user object will be created once a user without a Kubernetes user object logs in.
46+
*/
47+
'disableUserCreation'?: boolean;
4448
'github'?: ManagementV1AuthenticationGithub;
4549
'gitlab'?: ManagementV1AuthenticationGitlab;
4650
'google'?: ManagementV1AuthenticationGoogle;
@@ -81,6 +85,12 @@ export class ManagementV1Authentication {
8185
"type": "boolean",
8286
"format": ""
8387
},
88+
{
89+
"name": "disableUserCreation",
90+
"baseName": "disableUserCreation",
91+
"type": "boolean",
92+
"format": ""
93+
},
8494
{
8595
"name": "github",
8696
"baseName": "github",

lib/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4750,6 +4750,10 @@ declare class ManagementV1Authentication {
47504750
* Prevents from team creation for the new groups associated with the user at the time of logging in through sso, Default behaviour is false, this means that teams will be created for new groups.
47514751
*/
47524752
"disableTeamCreation"?: boolean;
4753+
/**
4754+
* DisableUserCreation prevents the SSO connectors from creating a new user on a users initial signin through sso. Default behaviour is false, this means that a new user object will be created once a user without a Kubernetes user object logs in.
4755+
*/
4756+
"disableUserCreation"?: boolean;
47534757
"github"?: ManagementV1AuthenticationGithub;
47544758
"gitlab"?: ManagementV1AuthenticationGitlab;
47554759
"google"?: ManagementV1AuthenticationGoogle;

0 commit comments

Comments
 (0)