Skip to content

Commit

Permalink
Authlete CI - 91f839284031c950f69a71691aba4bdb10555785
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Jun 22, 2022
1 parent 61d0ed2 commit b9d55da
Show file tree
Hide file tree
Showing 25 changed files with 645 additions and 1,282 deletions.
1,030 changes: 110 additions & 920 deletions api/openapi.yaml

Large diffs are not rendered by default.

44 changes: 28 additions & 16 deletions api_client_management.go

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

26 changes: 26 additions & 0 deletions docs/AuthorizationDetailsElement.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**DataTypes** | Pointer to **[]string** | From _\"OAuth 2.0 Rich Authorization Requests\"_: _\"An array of strings representing the kinds of data being requested from the resource.\"_ This property may be `null`. | [optional]
**Identifier** | Pointer to **string** | The identifier of a specific resource. From _\"OAuth 2.0 Rich Authorization Requests\"_: _\"A string identifier indicating a specific resource available at the API.\"_ This property may be `null`. | [optional]
**Privileges** | Pointer to **[]string** | The types or levels of privilege. From \"OAuth 2.0 Rich Authorization Requests\": _\"An array of strings representing the types or levels of privilege being requested at the resource.\"_ This property may be `null`. | [optional]
**OtherFields** | Pointer to **string** | The RAR request in the JSON format excluding the pre-defined attributes such as `type` and `locations`. The content and semantics are specific to the deployment and the use case implemented. | [optional]

## Methods

Expand Down Expand Up @@ -175,6 +176,31 @@ SetPrivileges sets Privileges field to given value.

HasPrivileges returns a boolean if a field has been set.

### GetOtherFields

`func (o *AuthorizationDetailsElement) GetOtherFields() string`

GetOtherFields returns the OtherFields field if non-nil, zero value otherwise.

### GetOtherFieldsOk

`func (o *AuthorizationDetailsElement) GetOtherFieldsOk() (*string, bool)`

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

### SetOtherFields

`func (o *AuthorizationDetailsElement) SetOtherFields(v string)`

SetOtherFields sets OtherFields field to given value.

### HasOtherFields

`func (o *AuthorizationDetailsElement) HasOtherFields() bool`

HasOtherFields returns a boolean if a field has been set.


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

Expand Down
26 changes: 13 additions & 13 deletions docs/AuthorizationIssueRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**Properties** | Pointer to [**[]Property**](Property.md) | Extra properties to associate with an access token and/or an authorization code. | [optional]
**Scopes** | Pointer to **[]string** | Scopes to associate with an access token and/or an authorization code. If a non-empty string array is given, it replaces the scopes specified by the original authorization request. | [optional]
**Sub** | Pointer to **string** | The value of the `sub` claim to embed in an ID token. If this request parameter is `null` or empty, the value of the `subject` request parameter is used as the value of the `sub` claim. | [optional]
**IdHeaderParams** | Pointer to **string** | JSON that represents additional JWS header parameters for ID tokens that may be issued based on the authorization request. | [optional]
**IdtHeaderParams** | Pointer to **string** | JSON that represents additional JWS header parameters for ID tokens that may be issued based on the authorization request. | [optional]

## Methods

Expand Down Expand Up @@ -223,30 +223,30 @@ SetSub sets Sub field to given value.

HasSub returns a boolean if a field has been set.

### GetIdHeaderParams
### GetIdtHeaderParams

`func (o *AuthorizationIssueRequest) GetIdHeaderParams() string`
`func (o *AuthorizationIssueRequest) GetIdtHeaderParams() string`

GetIdHeaderParams returns the IdHeaderParams field if non-nil, zero value otherwise.
GetIdtHeaderParams returns the IdtHeaderParams field if non-nil, zero value otherwise.

### GetIdHeaderParamsOk
### GetIdtHeaderParamsOk

`func (o *AuthorizationIssueRequest) GetIdHeaderParamsOk() (*string, bool)`
`func (o *AuthorizationIssueRequest) GetIdtHeaderParamsOk() (*string, bool)`

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

### SetIdHeaderParams
### SetIdtHeaderParams

`func (o *AuthorizationIssueRequest) SetIdHeaderParams(v string)`
`func (o *AuthorizationIssueRequest) SetIdtHeaderParams(v string)`

SetIdHeaderParams sets IdHeaderParams field to given value.
SetIdtHeaderParams sets IdtHeaderParams field to given value.

### HasIdHeaderParams
### HasIdtHeaderParams

`func (o *AuthorizationIssueRequest) HasIdHeaderParams() bool`
`func (o *AuthorizationIssueRequest) HasIdtHeaderParams() bool`

HasIdHeaderParams returns a boolean if a field has been set.
HasIdtHeaderParams returns a boolean if a field has been set.


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
26 changes: 13 additions & 13 deletions docs/BackchannelAuthenticationCompleteRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Type | Description | Notes
**Claims** | Pointer to **string** | Additional claims which will be embedded in the ID token. | [optional]
**Properties** | Pointer to [**[]Property**](Property.md) | The extra properties associated with the access token. | [optional]
**Scopes** | Pointer to **[]string** | Scopes to replace the scopes specified in the original backchannel authentication request with. When nothing is specified for this parameter, replacement is not performed. | [optional]
**IdHeaderParams** | Pointer to **string** | JSON that represents additional JWS header parameters for ID tokens. | [optional]
**IdtHeaderParams** | Pointer to **string** | JSON that represents additional JWS header parameters for ID tokens. | [optional]
**ErrorDescription** | Pointer to **string** | The description of the error. If this optional request parameter is given, its value is used as the value of the `error_description` property, but it is used only when the result is not `AUTHORIZED`. To comply with the specification strictly, the description must not include characters outside the set `%x20-21 / %x23-5B / %x5D-7E`. | [optional]
**ErrorUri** | Pointer to **string** | The URI of a document which describes the error in detail. This corresponds to the `error_uri` property in the response to the client. | [optional]

Expand Down Expand Up @@ -246,30 +246,30 @@ SetScopes sets Scopes field to given value.

HasScopes returns a boolean if a field has been set.

### GetIdHeaderParams
### GetIdtHeaderParams

`func (o *BackchannelAuthenticationCompleteRequest) GetIdHeaderParams() string`
`func (o *BackchannelAuthenticationCompleteRequest) GetIdtHeaderParams() string`

GetIdHeaderParams returns the IdHeaderParams field if non-nil, zero value otherwise.
GetIdtHeaderParams returns the IdtHeaderParams field if non-nil, zero value otherwise.

### GetIdHeaderParamsOk
### GetIdtHeaderParamsOk

`func (o *BackchannelAuthenticationCompleteRequest) GetIdHeaderParamsOk() (*string, bool)`
`func (o *BackchannelAuthenticationCompleteRequest) GetIdtHeaderParamsOk() (*string, bool)`

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

### SetIdHeaderParams
### SetIdtHeaderParams

`func (o *BackchannelAuthenticationCompleteRequest) SetIdHeaderParams(v string)`
`func (o *BackchannelAuthenticationCompleteRequest) SetIdtHeaderParams(v string)`

SetIdHeaderParams sets IdHeaderParams field to given value.
SetIdtHeaderParams sets IdtHeaderParams field to given value.

### HasIdHeaderParams
### HasIdtHeaderParams

`func (o *BackchannelAuthenticationCompleteRequest) HasIdHeaderParams() bool`
`func (o *BackchannelAuthenticationCompleteRequest) HasIdtHeaderParams() bool`

HasIdHeaderParams returns a boolean if a field has been set.
HasIdtHeaderParams returns a boolean if a field has been set.

### GetErrorDescription

Expand Down
26 changes: 26 additions & 0 deletions docs/BackchannelAuthenticationResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**ClientAttributes** | Pointer to [**[]Pair**](Pair.md) | The attributes of the client. | [optional]
**DynamicScopes** | Pointer to [**[]DynamicScope**](DynamicScope.md) | The dynamic scopes which the client application requested by the scope request parameter. | [optional]
**DeliveryMode** | Pointer to [**DeliveryMode**](DeliveryMode.md) | | [optional]
**ClientAuthMethod** | Pointer to **string** | The client authentication method that was performed. | [optional]

## Methods

Expand Down Expand Up @@ -752,6 +753,31 @@ SetDeliveryMode sets DeliveryMode field to given value.

HasDeliveryMode returns a boolean if a field has been set.

### GetClientAuthMethod

`func (o *BackchannelAuthenticationResponse) GetClientAuthMethod() string`

GetClientAuthMethod returns the ClientAuthMethod field if non-nil, zero value otherwise.

### GetClientAuthMethodOk

`func (o *BackchannelAuthenticationResponse) GetClientAuthMethodOk() (*string, bool)`

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

### SetClientAuthMethod

`func (o *BackchannelAuthenticationResponse) SetClientAuthMethod(v string)`

SetClientAuthMethod sets ClientAuthMethod field to given value.

### HasClientAuthMethod

`func (o *BackchannelAuthenticationResponse) HasClientAuthMethod() bool`

HasClientAuthMethod returns a boolean if a field has been set.


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

Expand Down
Loading

0 comments on commit b9d55da

Please sign in to comment.