File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -8529,7 +8529,6 @@ export interface SystemConfiguration {
85298529 lastUpdateInstant ?: number ;
85308530 loginRecordConfiguration ?: LoginRecordConfiguration ;
85318531 reportTimezone ?: string ;
8532- ssoConfiguration ?: SystemSSOConfiguration ;
85338532 uiConfiguration ?: UIConfiguration ;
85348533}
85358534
@@ -8558,13 +8557,6 @@ export interface SystemLogsExportRequest extends BaseExportRequest {
85588557 lastNBytes ?: number ;
85598558}
85608559
8561- /**
8562- * @author Brett Pontarelli
8563- */
8564- export interface SystemSSOConfiguration {
8565- deviceTrustTimeToLiveInSeconds ?: number ;
8566- }
8567-
85688560export interface Templates {
85698561 accountEdit ?: string ;
85708562 accountIndex ?: string ;
@@ -8638,6 +8630,7 @@ export interface Tenant {
86388630 passwordValidationRules ?: PasswordValidationRules ;
86398631 rateLimitConfiguration ?: TenantRateLimitConfiguration ;
86408632 registrationConfiguration ?: TenantRegistrationConfiguration ;
8633+ ssoConfiguration ?: TenantSSOConfiguration ;
86418634 state ?: ObjectState ;
86428635 themeId ?: UUID ;
86438636 userDeletePolicy ?: TenantUserDeletePolicy ;
@@ -8738,6 +8731,13 @@ export interface TenantResponse {
87388731 tenants ?: Array < Tenant > ;
87398732}
87408733
8734+ /**
8735+ * @author Brett Pontarelli
8736+ */
8737+ export interface TenantSSOConfiguration {
8738+ deviceTrustTimeToLiveInSeconds ?: number ;
8739+ }
8740+
87418741/**
87428742 * @author Daniel DeGroff
87438743 */
You can’t perform that action at this time.
0 commit comments