oidcconfig

package
v0.0.0-...-0719098 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 17, 2025 License: Apache-2.0 Imports: 1 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var RequestOpts = golangsdk.RequestOpts{
	MoreHeaders: map[string]string{"Content-Type": "application/json", "X-Language": "en-us"},
}

Functions

This section is empty.

Types

type CreateOpts

type CreateOpts struct {
	AccessMode            string `json:"access_mode" required:"true"`
	IdpURL                string `json:"idp_url" required:"true"`
	ClientID              string `json:"client_id" required:"true"`
	SigningKey            string `json:"signing_key" required:"true"`
	AuthorizationEndpoint string `json:"authorization_endpoint,omitempty"`
	Scope                 string `json:"scope,omitempty"`
	ResponseType          string `json:"response_type,omitempty"`
	ResponseMode          string `json:"response_mode,omitempty"`
}

type OpenIDConnectConfig

type OpenIDConnectConfig struct {
	AccessMode            string `json:"access_mode"`
	IdpURL                string `json:"idp_url"`
	ClientID              string `json:"client_id"`
	AuthorizationEndpoint string `json:"authorization_endpoint"`
	Scope                 string `json:"scope"`
	ResponseType          string `json:"response_type"`
	ResponseMode          string `json:"response_mode"`
	SigningKey            string `json:"signing_key"`
}

func Create

type UpdateOpenIDConnectConfigOpts

type UpdateOpenIDConnectConfigOpts struct {
	AccessMode            string `json:"access_mode" required:"true"`
	IdpURL                string `json:"idp_url" required:"true"`
	ClientID              string `json:"client_id" required:"true"`
	SigningKey            string `json:"signing_key" required:"true"`
	AuthorizationEndpoint string `json:"authorization_endpoint,omitempty"`
	Scope                 string `json:"scope,omitempty"`
	ResponseType          string `json:"response_type,omitempty"`
	ResponseMode          string `json:"response_mode,omitempty"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL