diff --git a/packages_generated/iam/src/v1alpha1/marshalling.gen.ts b/packages_generated/iam/src/v1alpha1/marshalling.gen.ts index 0a57feed3..1428ded0f 100644 --- a/packages_generated/iam/src/v1alpha1/marshalling.gen.ts +++ b/packages_generated/iam/src/v1alpha1/marshalling.gen.ts @@ -694,6 +694,7 @@ export const unmarshalOrganizationSecuritySettings = ( enforcePasswordRenewal: data.enforce_password_renewal, gracePeriodDuration: data.grace_period_duration, loginAttemptsBeforeLocked: data.login_attempts_before_locked, + maxLoginSessionDuration: data.max_login_session_duration, } as OrganizationSecuritySettings } @@ -975,6 +976,7 @@ export const marshalUpdateOrganizationSecuritySettingsRequest = ( enforce_password_renewal: request.enforcePasswordRenewal, grace_period_duration: request.gracePeriodDuration, login_attempts_before_locked: request.loginAttemptsBeforeLocked, + max_login_session_duration: request.maxLoginSessionDuration, }) export const marshalUpdatePolicyRequest = ( diff --git a/packages_generated/iam/src/v1alpha1/types.gen.ts b/packages_generated/iam/src/v1alpha1/types.gen.ts index 254d5f331..1b65e5f2c 100644 --- a/packages_generated/iam/src/v1alpha1/types.gen.ts +++ b/packages_generated/iam/src/v1alpha1/types.gen.ts @@ -1799,6 +1799,10 @@ export interface OrganizationSecuritySettings { * Number of login attempts before the account is locked. */ loginAttemptsBeforeLocked: number + /** + * Maximum duration a login session will stay active before needing to relogin. + */ + maxLoginSessionDuration?: string } export type RemoveGroupMemberRequest = { @@ -1966,6 +1970,10 @@ export type UpdateOrganizationSecuritySettingsRequest = { * Number of login attempts before the account is locked. */ loginAttemptsBeforeLocked?: number + /** + * Maximum duration a login session will stay active before needing to relogin. + */ + maxLoginSessionDuration?: string } export type UpdatePolicyRequest = {