Skip to content

Commit b9c6db5

Browse files
Update API Client
#### What's Changed --- ##### `GET` /endpoints/agents/connectors/{connector_uuid}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ##### `PUT` /endpoints/agents/connectors/{connector_uuid}/ ###### Request: Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ##### `PATCH` /endpoints/agents/connectors/{connector_uuid}/ ###### Request: Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ##### `POST` /endpoints/agents/connectors/ ###### Request: Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ##### `GET` /endpoints/agents/connectors/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): * Added property `challenge_idle_timeout` (string) * Added property `challenge_trigger_check_in` (boolean) ##### `GET` /policies/geoip/{policy_uuid}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `countries` (array) ##### `PUT` /policies/geoip/{policy_uuid}/ ###### Request: Changed content type : `application/json` * Changed property `countries` (array) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `countries` (array) ##### `PATCH` /policies/geoip/{policy_uuid}/ ###### Request: Changed content type : `application/json` * Changed property `countries` (array) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `countries` (array) ##### `POST` /policies/geoip/ ###### Request: Changed content type : `application/json` * Changed property `countries` (array) ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` * Changed property `countries` (array) ##### `GET` /policies/geoip/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > GeoIP Policy Serializer * Changed property `countries` (array) ##### `GET` /flows/executor/{flow_slug}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` Updated `ak-stage-endpoint-agent` component: New required properties: - `challenge_idle_timeout` * Added property `challenge_idle_timeout` (integer) ##### `POST` /flows/executor/{flow_slug}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` Updated `ak-stage-endpoint-agent` component: New required properties: - `challenge_idle_timeout` * Added property `challenge_idle_timeout` (integer)
1 parent 739935d commit b9c6db5

11 files changed

+500
-13
lines changed

api/openapi.yaml

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49933,12 +49933,14 @@ components:
4993349933
component: component
4993449934
verbose_name: verbose_name
4993549935
auth_terminate_session_on_expiry: true
49936+
challenge_idle_timeout: challenge_idle_timeout
4993649937
authorization_flow: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
4993749938
meta_model_name: meta_model_name
4993849939
snapshot_expiry: snapshot_expiry
4993949940
auth_session_duration: auth_session_duration
4994049941
connector_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
4994149942
name: name
49943+
challenge_trigger_check_in: true
4994249944
jwt_federation_providers:
4994349945
- 1
4994449946
- 1
@@ -49991,6 +49993,10 @@ components:
4999149993
format: uuid
4999249994
nullable: true
4999349995
type: string
49996+
challenge_idle_timeout:
49997+
type: string
49998+
challenge_trigger_check_in:
49999+
type: boolean
4999450000
jwt_federation_providers:
4999550001
items:
4999650002
type: integer
@@ -50005,18 +50011,20 @@ components:
5000550011
AgentConnectorRequest:
5000650012
example:
5000750013
nss_uid_offset: 171976544
50008-
auth_terminate_session_on_expiry: true
5000950014
refresh_interval: refresh_interval
50015+
enabled: true
50016+
nss_gid_offset: 1294386358
50017+
auth_terminate_session_on_expiry: true
50018+
challenge_idle_timeout: challenge_idle_timeout
5001050019
authorization_flow: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
5001150020
snapshot_expiry: snapshot_expiry
5001250021
auth_session_duration: auth_session_duration
5001350022
connector_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
5001450023
name: name
50024+
challenge_trigger_check_in: true
5001550025
jwt_federation_providers:
5001650026
- 1
5001750027
- 1
50018-
enabled: true
50019-
nss_gid_offset: 1294386358
5002050028
challenge_key: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
5002150029
properties:
5002250030
connector_uuid:
@@ -50054,6 +50062,11 @@ components:
5005450062
format: uuid
5005550063
nullable: true
5005650064
type: string
50065+
challenge_idle_timeout:
50066+
minLength: 1
50067+
type: string
50068+
challenge_trigger_check_in:
50069+
type: boolean
5005750070
jwt_federation_providers:
5005850071
items:
5005950072
type: integer
@@ -55167,8 +55180,11 @@ components:
5516755180
type: object
5516855181
challenge:
5516955182
type: string
55183+
challenge_idle_timeout:
55184+
type: integer
5517055185
required:
5517155186
- challenge
55187+
- challenge_idle_timeout
5517255188
type: object
5517355189
EndpointAgentChallengeResponseRequest:
5517455190
description: Response to signed challenge
@@ -62889,12 +62905,14 @@ components:
6288962905
component: component
6289062906
verbose_name: verbose_name
6289162907
auth_terminate_session_on_expiry: true
62908+
challenge_idle_timeout: challenge_idle_timeout
6289262909
authorization_flow: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
6289362910
meta_model_name: meta_model_name
6289462911
snapshot_expiry: snapshot_expiry
6289562912
auth_session_duration: auth_session_duration
6289662913
connector_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
6289762914
name: name
62915+
challenge_trigger_check_in: true
6289862916
jwt_federation_providers:
6289962917
- 1
6290062918
- 1
@@ -62907,12 +62925,14 @@ components:
6290762925
component: component
6290862926
verbose_name: verbose_name
6290962927
auth_terminate_session_on_expiry: true
62928+
challenge_idle_timeout: challenge_idle_timeout
6291062929
authorization_flow: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
6291162930
meta_model_name: meta_model_name
6291262931
snapshot_expiry: snapshot_expiry
6291362932
auth_session_duration: auth_session_duration
6291462933
connector_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
6291562934
name: name
62935+
challenge_trigger_check_in: true
6291662936
jwt_federation_providers:
6291762937
- 1
6291862938
- 1
@@ -73639,18 +73659,20 @@ components:
7363973659
PatchedAgentConnectorRequest:
7364073660
example:
7364173661
nss_uid_offset: 171976544
73642-
auth_terminate_session_on_expiry: true
7364373662
refresh_interval: refresh_interval
73663+
enabled: true
73664+
nss_gid_offset: 1294386358
73665+
auth_terminate_session_on_expiry: true
73666+
challenge_idle_timeout: challenge_idle_timeout
7364473667
authorization_flow: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
7364573668
snapshot_expiry: snapshot_expiry
7364673669
auth_session_duration: auth_session_duration
7364773670
connector_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
7364873671
name: name
73672+
challenge_trigger_check_in: true
7364973673
jwt_federation_providers:
7365073674
- 1
7365173675
- 1
73652-
enabled: true
73653-
nss_gid_offset: 1294386358
7365473676
challenge_key: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
7365573677
properties:
7365673678
connector_uuid:
@@ -73688,6 +73710,11 @@ components:
7368873710
format: uuid
7368973711
nullable: true
7369073712
type: string
73713+
challenge_idle_timeout:
73714+
minLength: 1
73715+
type: string
73716+
challenge_trigger_check_in:
73717+
type: boolean
7369173718
jwt_federation_providers:
7369273719
items:
7369373720
type: integer

docs/AgentConnector.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Name | Type | Description | Notes
1919
**NssUidOffset** | Pointer to **int32** | | [optional]
2020
**NssGidOffset** | Pointer to **int32** | | [optional]
2121
**ChallengeKey** | Pointer to **NullableString** | | [optional]
22+
**ChallengeIdleTimeout** | Pointer to **string** | | [optional]
23+
**ChallengeTriggerCheckIn** | Pointer to **bool** | | [optional]
2224
**JwtFederationProviders** | Pointer to **[]int32** | | [optional]
2325

2426
## Methods
@@ -410,6 +412,56 @@ HasChallengeKey returns a boolean if a field has been set.
410412
`func (o *AgentConnector) UnsetChallengeKey()`
411413

412414
UnsetChallengeKey ensures that no value is present for ChallengeKey, not even an explicit nil
415+
### GetChallengeIdleTimeout
416+
417+
`func (o *AgentConnector) GetChallengeIdleTimeout() string`
418+
419+
GetChallengeIdleTimeout returns the ChallengeIdleTimeout field if non-nil, zero value otherwise.
420+
421+
### GetChallengeIdleTimeoutOk
422+
423+
`func (o *AgentConnector) GetChallengeIdleTimeoutOk() (*string, bool)`
424+
425+
GetChallengeIdleTimeoutOk returns a tuple with the ChallengeIdleTimeout field if it's non-nil, zero value otherwise
426+
and a boolean to check if the value has been set.
427+
428+
### SetChallengeIdleTimeout
429+
430+
`func (o *AgentConnector) SetChallengeIdleTimeout(v string)`
431+
432+
SetChallengeIdleTimeout sets ChallengeIdleTimeout field to given value.
433+
434+
### HasChallengeIdleTimeout
435+
436+
`func (o *AgentConnector) HasChallengeIdleTimeout() bool`
437+
438+
HasChallengeIdleTimeout returns a boolean if a field has been set.
439+
440+
### GetChallengeTriggerCheckIn
441+
442+
`func (o *AgentConnector) GetChallengeTriggerCheckIn() bool`
443+
444+
GetChallengeTriggerCheckIn returns the ChallengeTriggerCheckIn field if non-nil, zero value otherwise.
445+
446+
### GetChallengeTriggerCheckInOk
447+
448+
`func (o *AgentConnector) GetChallengeTriggerCheckInOk() (*bool, bool)`
449+
450+
GetChallengeTriggerCheckInOk returns a tuple with the ChallengeTriggerCheckIn field if it's non-nil, zero value otherwise
451+
and a boolean to check if the value has been set.
452+
453+
### SetChallengeTriggerCheckIn
454+
455+
`func (o *AgentConnector) SetChallengeTriggerCheckIn(v bool)`
456+
457+
SetChallengeTriggerCheckIn sets ChallengeTriggerCheckIn field to given value.
458+
459+
### HasChallengeTriggerCheckIn
460+
461+
`func (o *AgentConnector) HasChallengeTriggerCheckIn() bool`
462+
463+
HasChallengeTriggerCheckIn returns a boolean if a field has been set.
464+
413465
### GetJwtFederationProviders
414466

415467
`func (o *AgentConnector) GetJwtFederationProviders() []int32`

docs/AgentConnectorRequest.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Name | Type | Description | Notes
1515
**NssUidOffset** | Pointer to **int32** | | [optional]
1616
**NssGidOffset** | Pointer to **int32** | | [optional]
1717
**ChallengeKey** | Pointer to **NullableString** | | [optional]
18+
**ChallengeIdleTimeout** | Pointer to **string** | | [optional]
19+
**ChallengeTriggerCheckIn** | Pointer to **bool** | | [optional]
1820
**JwtFederationProviders** | Pointer to **[]int32** | | [optional]
1921

2022
## Methods
@@ -326,6 +328,56 @@ HasChallengeKey returns a boolean if a field has been set.
326328
`func (o *AgentConnectorRequest) UnsetChallengeKey()`
327329

328330
UnsetChallengeKey ensures that no value is present for ChallengeKey, not even an explicit nil
331+
### GetChallengeIdleTimeout
332+
333+
`func (o *AgentConnectorRequest) GetChallengeIdleTimeout() string`
334+
335+
GetChallengeIdleTimeout returns the ChallengeIdleTimeout field if non-nil, zero value otherwise.
336+
337+
### GetChallengeIdleTimeoutOk
338+
339+
`func (o *AgentConnectorRequest) GetChallengeIdleTimeoutOk() (*string, bool)`
340+
341+
GetChallengeIdleTimeoutOk returns a tuple with the ChallengeIdleTimeout field if it's non-nil, zero value otherwise
342+
and a boolean to check if the value has been set.
343+
344+
### SetChallengeIdleTimeout
345+
346+
`func (o *AgentConnectorRequest) SetChallengeIdleTimeout(v string)`
347+
348+
SetChallengeIdleTimeout sets ChallengeIdleTimeout field to given value.
349+
350+
### HasChallengeIdleTimeout
351+
352+
`func (o *AgentConnectorRequest) HasChallengeIdleTimeout() bool`
353+
354+
HasChallengeIdleTimeout returns a boolean if a field has been set.
355+
356+
### GetChallengeTriggerCheckIn
357+
358+
`func (o *AgentConnectorRequest) GetChallengeTriggerCheckIn() bool`
359+
360+
GetChallengeTriggerCheckIn returns the ChallengeTriggerCheckIn field if non-nil, zero value otherwise.
361+
362+
### GetChallengeTriggerCheckInOk
363+
364+
`func (o *AgentConnectorRequest) GetChallengeTriggerCheckInOk() (*bool, bool)`
365+
366+
GetChallengeTriggerCheckInOk returns a tuple with the ChallengeTriggerCheckIn field if it's non-nil, zero value otherwise
367+
and a boolean to check if the value has been set.
368+
369+
### SetChallengeTriggerCheckIn
370+
371+
`func (o *AgentConnectorRequest) SetChallengeTriggerCheckIn(v bool)`
372+
373+
SetChallengeTriggerCheckIn sets ChallengeTriggerCheckIn field to given value.
374+
375+
### HasChallengeTriggerCheckIn
376+
377+
`func (o *AgentConnectorRequest) HasChallengeTriggerCheckIn() bool`
378+
379+
HasChallengeTriggerCheckIn returns a boolean if a field has been set.
380+
329381
### GetJwtFederationProviders
330382

331383
`func (o *AgentConnectorRequest) GetJwtFederationProviders() []int32`

docs/ChallengeTypes.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Name | Type | Description | Notes
3737
**Token** | **string** | |
3838
**Name** | **string** | |
3939
**Challenge** | **string** | |
40+
**ChallengeIdleTimeout** | **int32** | |
4041
**RequestId** | **string** | |
4142
**Error** | Pointer to **string** | | [optional]
4243
**Traceback** | Pointer to **string** | | [optional]
@@ -78,7 +79,7 @@ Name | Type | Description | Notes
7879

7980
### NewChallengeTypes
8081

81-
`func NewChallengeTypes(pendingUser string, pendingUserAvatar string, clientId string, scope string, redirectUri string, state string, activationBarcode string, activationCode string, stageUuid string, codes []string, configUrl string, deviceChallenges []DeviceChallenge, configurationStages []SelectableStage, registration map[string]interface{}, url string, attrs map[string]string, siteKey string, jsUrl string, interactive bool, permissions []ConsentPermission, additionalPermissions []ConsentPermission, token string, name string, challenge string, requestId string, loadingText string, userFields []string, passwordFields bool, flowDesignation FlowDesignationEnum, primaryAction string, showSourceLabels bool, slug string, fields []StagePrompt, to string, brandName string, body string, botUsername string, requestMessageAccess bool, ) *ChallengeTypes`
82+
`func NewChallengeTypes(pendingUser string, pendingUserAvatar string, clientId string, scope string, redirectUri string, state string, activationBarcode string, activationCode string, stageUuid string, codes []string, configUrl string, deviceChallenges []DeviceChallenge, configurationStages []SelectableStage, registration map[string]interface{}, url string, attrs map[string]string, siteKey string, jsUrl string, interactive bool, permissions []ConsentPermission, additionalPermissions []ConsentPermission, token string, name string, challenge string, challengeIdleTimeout int32, requestId string, loadingText string, userFields []string, passwordFields bool, flowDesignation FlowDesignationEnum, primaryAction string, showSourceLabels bool, slug string, fields []StagePrompt, to string, brandName string, body string, botUsername string, requestMessageAccess bool, ) *ChallengeTypes`
8283

8384
NewChallengeTypes instantiates a new ChallengeTypes object
8485
This constructor will assign default values to properties that have it defined,
@@ -808,6 +809,26 @@ and a boolean to check if the value has been set.
808809
SetChallenge sets Challenge field to given value.
809810

810811

812+
### GetChallengeIdleTimeout
813+
814+
`func (o *ChallengeTypes) GetChallengeIdleTimeout() int32`
815+
816+
GetChallengeIdleTimeout returns the ChallengeIdleTimeout field if non-nil, zero value otherwise.
817+
818+
### GetChallengeIdleTimeoutOk
819+
820+
`func (o *ChallengeTypes) GetChallengeIdleTimeoutOk() (*int32, bool)`
821+
822+
GetChallengeIdleTimeoutOk returns a tuple with the ChallengeIdleTimeout field if it's non-nil, zero value otherwise
823+
and a boolean to check if the value has been set.
824+
825+
### SetChallengeIdleTimeout
826+
827+
`func (o *ChallengeTypes) SetChallengeIdleTimeout(v int32)`
828+
829+
SetChallengeIdleTimeout sets ChallengeIdleTimeout field to given value.
830+
831+
811832
### GetRequestId
812833

813834
`func (o *ChallengeTypes) GetRequestId() string`

docs/EndpointAgentChallenge.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ Name | Type | Description | Notes
88
**Component** | Pointer to **string** | | [optional] [default to "ak-stage-endpoint-agent"]
99
**ResponseErrors** | Pointer to [**map[string][]ErrorDetail**](array.md) | | [optional]
1010
**Challenge** | **string** | |
11+
**ChallengeIdleTimeout** | **int32** | |
1112

1213
## Methods
1314

1415
### NewEndpointAgentChallenge
1516

16-
`func NewEndpointAgentChallenge(challenge string, ) *EndpointAgentChallenge`
17+
`func NewEndpointAgentChallenge(challenge string, challengeIdleTimeout int32, ) *EndpointAgentChallenge`
1718

1819
NewEndpointAgentChallenge instantiates a new EndpointAgentChallenge object
1920
This constructor will assign default values to properties that have it defined,
@@ -123,6 +124,26 @@ and a boolean to check if the value has been set.
123124
SetChallenge sets Challenge field to given value.
124125

125126

127+
### GetChallengeIdleTimeout
128+
129+
`func (o *EndpointAgentChallenge) GetChallengeIdleTimeout() int32`
130+
131+
GetChallengeIdleTimeout returns the ChallengeIdleTimeout field if non-nil, zero value otherwise.
132+
133+
### GetChallengeIdleTimeoutOk
134+
135+
`func (o *EndpointAgentChallenge) GetChallengeIdleTimeoutOk() (*int32, bool)`
136+
137+
GetChallengeIdleTimeoutOk returns a tuple with the ChallengeIdleTimeout field if it's non-nil, zero value otherwise
138+
and a boolean to check if the value has been set.
139+
140+
### SetChallengeIdleTimeout
141+
142+
`func (o *EndpointAgentChallenge) SetChallengeIdleTimeout(v int32)`
143+
144+
SetChallengeIdleTimeout sets ChallengeIdleTimeout field to given value.
145+
146+
126147

127148
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
128149

0 commit comments

Comments
 (0)