Skip to content

Commit

Permalink
Update API Client
Browse files Browse the repository at this point in the history
#### What's Changed
---

##### `GET` /providers/scim/{id}/

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Added property `verify_certificates` (boolean)

##### `PUT` /providers/scim/{id}/

###### Request:

Changed content type : `application/json`

* Added property `verify_certificates` (boolean)

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Added property `verify_certificates` (boolean)

##### `PATCH` /providers/scim/{id}/

###### Request:

Changed content type : `application/json`

* Added property `verify_certificates` (boolean)

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Added property `verify_certificates` (boolean)

##### `POST` /providers/scim/

###### Request:

Changed content type : `application/json`

* Added property `verify_certificates` (boolean)

###### Return Type:

Changed response : **201 Created**

* Changed content type : `application/json`

    * Added property `verify_certificates` (boolean)

##### `GET` /providers/scim/

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Changed property `results` (array)

        Changed items (object):
            > SCIMProvider Serializer

        * Added property `verify_certificates` (boolean)

##### `PUT` /core/transactional/applications/

###### Request:

Changed content type : `application/json`

* Changed property `provider` (object)

    Updated `authentik_providers_scim.scimprovider` provider_model:
    * Added property `verify_certificates` (boolean)
  • Loading branch information
authentik-automation[bot] committed Oct 14, 2024
1 parent b8018c0 commit ac5265b
Show file tree
Hide file tree
Showing 9 changed files with 232 additions and 3 deletions.
11 changes: 11 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54780,6 +54780,7 @@ components:
assigned_backchannel_application_name: assigned_backchannel_application_name
name: name
pk: 0
verify_certificates: true
property_mappings:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
Expand All @@ -54798,6 +54799,7 @@ components:
assigned_backchannel_application_name: assigned_backchannel_application_name
name: name
pk: 0
verify_certificates: true
property_mappings:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
Expand Down Expand Up @@ -60396,6 +60398,7 @@ components:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
filter_group: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
name: name
verify_certificates: true
property_mappings:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
Expand All @@ -60421,6 +60424,8 @@ components:
description: "Base URL to SCIM requests, usually ends in /v2"
minLength: 1
type: string
verify_certificates:
type: boolean
token:
description: Authentication token
minLength: 1
Expand Down Expand Up @@ -64656,6 +64661,7 @@ components:
assigned_backchannel_application_name: assigned_backchannel_application_name
name: name
pk: 0
verify_certificates: true
property_mappings:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
Expand Down Expand Up @@ -64704,6 +64710,8 @@ components:
url:
description: "Base URL to SCIM requests, usually ends in /v2"
type: string
verify_certificates:
type: boolean
token:
description: Authentication token
type: string
Expand Down Expand Up @@ -64784,6 +64792,7 @@ components:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
filter_group: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
name: name
verify_certificates: true
property_mappings:
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
- 046b6c7f-0b8a-43b9-b35d-6489e6daee91
Expand All @@ -64809,6 +64818,8 @@ components:
description: "Base URL to SCIM requests, usually ends in /v2"
minLength: 1
type: string
verify_certificates:
type: boolean
token:
description: Authentication token
minLength: 1
Expand Down
26 changes: 26 additions & 0 deletions docs/ModelRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Name | Type | Description | Notes
**SpBinding** | Pointer to [**SpBindingEnum**](SpBindingEnum.md) | This determines how authentik sends the response back to the Service Provider. | [optional]
**DefaultRelayState** | Pointer to **string** | Default relay_state value for IDP-initiated logins | [optional]
**Url** | **string** | Base URL to SCIM requests, usually ends in /v2 |
**VerifyCertificates** | Pointer to **bool** | | [optional]
**Token** | **string** | Authentication token |

## Methods
Expand Down Expand Up @@ -1807,6 +1808,31 @@ and a boolean to check if the value has been set.
SetUrl sets Url field to given value.


### GetVerifyCertificates

`func (o *ModelRequest) GetVerifyCertificates() bool`

GetVerifyCertificates returns the VerifyCertificates field if non-nil, zero value otherwise.

### GetVerifyCertificatesOk

`func (o *ModelRequest) GetVerifyCertificatesOk() (*bool, bool)`

GetVerifyCertificatesOk returns a tuple with the VerifyCertificates field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetVerifyCertificates

`func (o *ModelRequest) SetVerifyCertificates(v bool)`

SetVerifyCertificates sets VerifyCertificates field to given value.

### HasVerifyCertificates

`func (o *ModelRequest) HasVerifyCertificates() bool`

HasVerifyCertificates returns a boolean if a field has been set.

### GetToken

`func (o *ModelRequest) GetToken() string`
Expand Down
26 changes: 26 additions & 0 deletions docs/PatchedSCIMProviderRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**PropertyMappings** | Pointer to **[]string** | | [optional]
**PropertyMappingsGroup** | Pointer to **[]string** | Property mappings used for group creation/updating. | [optional]
**Url** | Pointer to **string** | Base URL to SCIM requests, usually ends in /v2 | [optional]
**VerifyCertificates** | Pointer to **bool** | | [optional]
**Token** | Pointer to **string** | Authentication token | [optional]
**ExcludeUsersServiceAccount** | Pointer to **bool** | | [optional]
**FilterGroup** | Pointer to **NullableString** | | [optional]
Expand Down Expand Up @@ -131,6 +132,31 @@ SetUrl sets Url field to given value.

HasUrl returns a boolean if a field has been set.

### GetVerifyCertificates

`func (o *PatchedSCIMProviderRequest) GetVerifyCertificates() bool`

GetVerifyCertificates returns the VerifyCertificates field if non-nil, zero value otherwise.

### GetVerifyCertificatesOk

`func (o *PatchedSCIMProviderRequest) GetVerifyCertificatesOk() (*bool, bool)`

GetVerifyCertificatesOk returns a tuple with the VerifyCertificates field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetVerifyCertificates

`func (o *PatchedSCIMProviderRequest) SetVerifyCertificates(v bool)`

SetVerifyCertificates sets VerifyCertificates field to given value.

### HasVerifyCertificates

`func (o *PatchedSCIMProviderRequest) HasVerifyCertificates() bool`

HasVerifyCertificates returns a boolean if a field has been set.

### GetToken

`func (o *PatchedSCIMProviderRequest) GetToken() string`
Expand Down
26 changes: 26 additions & 0 deletions docs/SCIMProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Name | Type | Description | Notes
**VerboseNamePlural** | **string** | Return object's plural verbose_name | [readonly]
**MetaModelName** | **string** | Return internal model name | [readonly]
**Url** | **string** | Base URL to SCIM requests, usually ends in /v2 |
**VerifyCertificates** | Pointer to **bool** | | [optional]
**Token** | **string** | Authentication token |
**ExcludeUsersServiceAccount** | Pointer to **bool** | | [optional]
**FilterGroup** | Pointer to **NullableString** | | [optional]
Expand Down Expand Up @@ -268,6 +269,31 @@ and a boolean to check if the value has been set.
SetUrl sets Url field to given value.


### GetVerifyCertificates

`func (o *SCIMProvider) GetVerifyCertificates() bool`

GetVerifyCertificates returns the VerifyCertificates field if non-nil, zero value otherwise.

### GetVerifyCertificatesOk

`func (o *SCIMProvider) GetVerifyCertificatesOk() (*bool, bool)`

GetVerifyCertificatesOk returns a tuple with the VerifyCertificates field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetVerifyCertificates

`func (o *SCIMProvider) SetVerifyCertificates(v bool)`

SetVerifyCertificates sets VerifyCertificates field to given value.

### HasVerifyCertificates

`func (o *SCIMProvider) HasVerifyCertificates() bool`

HasVerifyCertificates returns a boolean if a field has been set.

### GetToken

`func (o *SCIMProvider) GetToken() string`
Expand Down
26 changes: 26 additions & 0 deletions docs/SCIMProviderRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**PropertyMappings** | Pointer to **[]string** | | [optional]
**PropertyMappingsGroup** | Pointer to **[]string** | Property mappings used for group creation/updating. | [optional]
**Url** | **string** | Base URL to SCIM requests, usually ends in /v2 |
**VerifyCertificates** | Pointer to **bool** | | [optional]
**Token** | **string** | Authentication token |
**ExcludeUsersServiceAccount** | Pointer to **bool** | | [optional]
**FilterGroup** | Pointer to **NullableString** | | [optional]
Expand Down Expand Up @@ -121,6 +122,31 @@ and a boolean to check if the value has been set.
SetUrl sets Url field to given value.


### GetVerifyCertificates

`func (o *SCIMProviderRequest) GetVerifyCertificates() bool`

GetVerifyCertificates returns the VerifyCertificates field if non-nil, zero value otherwise.

### GetVerifyCertificatesOk

`func (o *SCIMProviderRequest) GetVerifyCertificatesOk() (*bool, bool)`

GetVerifyCertificatesOk returns a tuple with the VerifyCertificates field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetVerifyCertificates

`func (o *SCIMProviderRequest) SetVerifyCertificates(v bool)`

SetVerifyCertificates sets VerifyCertificates field to given value.

### HasVerifyCertificates

`func (o *SCIMProviderRequest) HasVerifyCertificates() bool`

HasVerifyCertificates returns a boolean if a field has been set.

### GetToken

`func (o *SCIMProviderRequest) GetToken() string`
Expand Down
38 changes: 37 additions & 1 deletion model_patched_scim_provider_request.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 37 additions & 1 deletion model_scim_provider.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ac5265b

Please sign in to comment.