oauthAuthServerSettings

package
v0.0.0-...-367d749 Latest Latest
Warning

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

Go to latest
Published: Feb 28, 2021 License: MIT Imports: 9 Imported by: 1

Documentation

Index

Constants

View Source
const (
	// ServiceName - The name of service.
	ServiceName = "OauthAuthServerSettings"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AddCommonScopeGroupInput

type AddCommonScopeGroupInput struct {
	Body models.ScopeGroupEntry
}

type AddCommonScopeInput

type AddCommonScopeInput struct {
	Body models.ScopeEntry
}

type AddExclusiveScopeGroupInput

type AddExclusiveScopeGroupInput struct {
	Body models.ScopeGroupEntry
}

type AddExclusiveScopeInput

type AddExclusiveScopeInput struct {
	Body models.ScopeEntry
}

type GetCommonScopeGroupInput

type GetCommonScopeGroupInput struct {
	Name string
}

type GetCommonScopeInput

type GetCommonScopeInput struct {
	Name string
}

type GetExclusiveScopeGroupInput

type GetExclusiveScopeGroupInput struct {
	Name string
}

type GetExclusiveScopeInput

type GetExclusiveScopeInput struct {
	Name string
}

type OauthAuthServerSettingsAPI

type OauthAuthServerSettingsAPI interface {
	GetAuthorizationServerSettings() (output *models.AuthorizationServerSettings, resp *http.Response, err error)
	GetAuthorizationServerSettingsWithContext(ctx context.Context) (output *models.AuthorizationServerSettings, resp *http.Response, err error)

	UpdateAuthorizationServerSettings(input *UpdateAuthorizationServerSettingsInput) (output *models.AuthorizationServerSettings, resp *http.Response, err error)
	UpdateAuthorizationServerSettingsWithContext(ctx context.Context, input *UpdateAuthorizationServerSettingsInput) (output *models.AuthorizationServerSettings, resp *http.Response, err error)

	AddCommonScope(input *AddCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)
	AddCommonScopeWithContext(ctx context.Context, input *AddCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

	GetCommonScope(input *GetCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)
	GetCommonScopeWithContext(ctx context.Context, input *GetCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

	UpdateCommonScope(input *UpdateCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)
	UpdateCommonScopeWithContext(ctx context.Context, input *UpdateCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

	RemoveCommonScope(input *RemoveCommonScopeInput) (output *models.ApiResult, resp *http.Response, err error)
	RemoveCommonScopeWithContext(ctx context.Context, input *RemoveCommonScopeInput) (output *models.ApiResult, resp *http.Response, err error)

	AddCommonScopeGroup(input *AddCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)
	AddCommonScopeGroupWithContext(ctx context.Context, input *AddCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

	GetCommonScopeGroup(input *GetCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)
	GetCommonScopeGroupWithContext(ctx context.Context, input *GetCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

	UpdateCommonScopeGroup(input *UpdateCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)
	UpdateCommonScopeGroupWithContext(ctx context.Context, input *UpdateCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

	RemoveCommonScopeGroup(input *RemoveCommonScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)
	RemoveCommonScopeGroupWithContext(ctx context.Context, input *RemoveCommonScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)

	AddExclusiveScope(input *AddExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)
	AddExclusiveScopeWithContext(ctx context.Context, input *AddExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

	GetExclusiveScope(input *GetExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)
	GetExclusiveScopeWithContext(ctx context.Context, input *GetExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

	UpdateExclusiveScope(input *UpdateExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)
	UpdateExclusiveScopeWithContext(ctx context.Context, input *UpdateExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

	RemoveExclusiveScope(input *RemoveExclusiveScopeInput) (output *models.ApiResult, resp *http.Response, err error)
	RemoveExclusiveScopeWithContext(ctx context.Context, input *RemoveExclusiveScopeInput) (output *models.ApiResult, resp *http.Response, err error)

	AddExclusiveScopeGroup(input *AddExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)
	AddExclusiveScopeGroupWithContext(ctx context.Context, input *AddExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

	GetExclusiveScopeGroup(input *GetExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)
	GetExclusiveScopeGroupWithContext(ctx context.Context, input *GetExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

	UpdateExclusiveScopeGroups(input *UpdateExclusiveScopeGroupsInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)
	UpdateExclusiveScopeGroupsWithContext(ctx context.Context, input *UpdateExclusiveScopeGroupsInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

	RemoveExclusiveScopeGroup(input *RemoveExclusiveScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)
	RemoveExclusiveScopeGroupWithContext(ctx context.Context, input *RemoveExclusiveScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)
}

type OauthAuthServerSettingsService

type OauthAuthServerSettingsService struct {
	*client.PfClient
}

func New

New creates a new instance of the OauthAuthServerSettingsService client.

func (*OauthAuthServerSettingsService) AddCommonScope

func (s *OauthAuthServerSettingsService) AddCommonScope(input *AddCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

AddCommonScope - Add a new common scope. RequestType: POST Input: input *AddCommonScopeInput

func (*OauthAuthServerSettingsService) AddCommonScopeGroup

func (s *OauthAuthServerSettingsService) AddCommonScopeGroup(input *AddCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

AddCommonScopeGroup - Create a new common scope group. RequestType: POST Input: input *AddCommonScopeGroupInput

func (*OauthAuthServerSettingsService) AddCommonScopeGroupWithContext

func (s *OauthAuthServerSettingsService) AddCommonScopeGroupWithContext(ctx context.Context, input *AddCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

AddCommonScopeGroupWithContext - Create a new common scope group. RequestType: POST Input: ctx context.Context, input *AddCommonScopeGroupInput

func (*OauthAuthServerSettingsService) AddCommonScopeWithContext

func (s *OauthAuthServerSettingsService) AddCommonScopeWithContext(ctx context.Context, input *AddCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

AddCommonScopeWithContext - Add a new common scope. RequestType: POST Input: ctx context.Context, input *AddCommonScopeInput

func (*OauthAuthServerSettingsService) AddExclusiveScope

func (s *OauthAuthServerSettingsService) AddExclusiveScope(input *AddExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

AddExclusiveScope - Add a new exclusive scope. RequestType: POST Input: input *AddExclusiveScopeInput

func (*OauthAuthServerSettingsService) AddExclusiveScopeGroup

func (s *OauthAuthServerSettingsService) AddExclusiveScopeGroup(input *AddExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

AddExclusiveScopeGroup - Create a new exclusive scope group. RequestType: POST Input: input *AddExclusiveScopeGroupInput

func (*OauthAuthServerSettingsService) AddExclusiveScopeGroupWithContext

func (s *OauthAuthServerSettingsService) AddExclusiveScopeGroupWithContext(ctx context.Context, input *AddExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

AddExclusiveScopeGroupWithContext - Create a new exclusive scope group. RequestType: POST Input: ctx context.Context, input *AddExclusiveScopeGroupInput

func (*OauthAuthServerSettingsService) AddExclusiveScopeWithContext

func (s *OauthAuthServerSettingsService) AddExclusiveScopeWithContext(ctx context.Context, input *AddExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

AddExclusiveScopeWithContext - Add a new exclusive scope. RequestType: POST Input: ctx context.Context, input *AddExclusiveScopeInput

func (*OauthAuthServerSettingsService) GetAuthorizationServerSettings

func (s *OauthAuthServerSettingsService) GetAuthorizationServerSettings() (output *models.AuthorizationServerSettings, resp *http.Response, err error)

GetAuthorizationServerSettings - Get the Authorization Server Settings. RequestType: GET Input:

func (*OauthAuthServerSettingsService) GetAuthorizationServerSettingsWithContext

func (s *OauthAuthServerSettingsService) GetAuthorizationServerSettingsWithContext(ctx context.Context) (output *models.AuthorizationServerSettings, resp *http.Response, err error)

GetAuthorizationServerSettingsWithContext - Get the Authorization Server Settings. RequestType: GET Input: ctx context.Context,

func (*OauthAuthServerSettingsService) GetCommonScope

func (s *OauthAuthServerSettingsService) GetCommonScope(input *GetCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

GetCommonScope - Get an existing common scope. RequestType: GET Input: input *GetCommonScopeInput

func (*OauthAuthServerSettingsService) GetCommonScopeGroup

func (s *OauthAuthServerSettingsService) GetCommonScopeGroup(input *GetCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

GetCommonScopeGroup - Get an existing common scope group. RequestType: GET Input: input *GetCommonScopeGroupInput

func (*OauthAuthServerSettingsService) GetCommonScopeGroupWithContext

func (s *OauthAuthServerSettingsService) GetCommonScopeGroupWithContext(ctx context.Context, input *GetCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

GetCommonScopeGroupWithContext - Get an existing common scope group. RequestType: GET Input: ctx context.Context, input *GetCommonScopeGroupInput

func (*OauthAuthServerSettingsService) GetCommonScopeWithContext

func (s *OauthAuthServerSettingsService) GetCommonScopeWithContext(ctx context.Context, input *GetCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

GetCommonScopeWithContext - Get an existing common scope. RequestType: GET Input: ctx context.Context, input *GetCommonScopeInput

func (*OauthAuthServerSettingsService) GetExclusiveScope

func (s *OauthAuthServerSettingsService) GetExclusiveScope(input *GetExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

GetExclusiveScope - Get an existing exclusive scope. RequestType: GET Input: input *GetExclusiveScopeInput

func (*OauthAuthServerSettingsService) GetExclusiveScopeGroup

func (s *OauthAuthServerSettingsService) GetExclusiveScopeGroup(input *GetExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

GetExclusiveScopeGroup - Get an existing exclusive scope group. RequestType: GET Input: input *GetExclusiveScopeGroupInput

func (*OauthAuthServerSettingsService) GetExclusiveScopeGroupWithContext

func (s *OauthAuthServerSettingsService) GetExclusiveScopeGroupWithContext(ctx context.Context, input *GetExclusiveScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

GetExclusiveScopeGroupWithContext - Get an existing exclusive scope group. RequestType: GET Input: ctx context.Context, input *GetExclusiveScopeGroupInput

func (*OauthAuthServerSettingsService) GetExclusiveScopeWithContext

func (s *OauthAuthServerSettingsService) GetExclusiveScopeWithContext(ctx context.Context, input *GetExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

GetExclusiveScopeWithContext - Get an existing exclusive scope. RequestType: GET Input: ctx context.Context, input *GetExclusiveScopeInput

func (*OauthAuthServerSettingsService) RemoveCommonScope

func (s *OauthAuthServerSettingsService) RemoveCommonScope(input *RemoveCommonScopeInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveCommonScope - Remove an existing common scope. RequestType: DELETE Input: input *RemoveCommonScopeInput

func (*OauthAuthServerSettingsService) RemoveCommonScopeGroup

func (s *OauthAuthServerSettingsService) RemoveCommonScopeGroup(input *RemoveCommonScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveCommonScopeGroup - Remove an existing common scope group. RequestType: DELETE Input: input *RemoveCommonScopeGroupInput

func (*OauthAuthServerSettingsService) RemoveCommonScopeGroupWithContext

func (s *OauthAuthServerSettingsService) RemoveCommonScopeGroupWithContext(ctx context.Context, input *RemoveCommonScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveCommonScopeGroupWithContext - Remove an existing common scope group. RequestType: DELETE Input: ctx context.Context, input *RemoveCommonScopeGroupInput

func (*OauthAuthServerSettingsService) RemoveCommonScopeWithContext

func (s *OauthAuthServerSettingsService) RemoveCommonScopeWithContext(ctx context.Context, input *RemoveCommonScopeInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveCommonScopeWithContext - Remove an existing common scope. RequestType: DELETE Input: ctx context.Context, input *RemoveCommonScopeInput

func (*OauthAuthServerSettingsService) RemoveExclusiveScope

func (s *OauthAuthServerSettingsService) RemoveExclusiveScope(input *RemoveExclusiveScopeInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveExclusiveScope - Remove an existing exclusive scope. RequestType: DELETE Input: input *RemoveExclusiveScopeInput

func (*OauthAuthServerSettingsService) RemoveExclusiveScopeGroup

func (s *OauthAuthServerSettingsService) RemoveExclusiveScopeGroup(input *RemoveExclusiveScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveExclusiveScopeGroup - Remove an existing exclusive scope group. RequestType: DELETE Input: input *RemoveExclusiveScopeGroupInput

func (*OauthAuthServerSettingsService) RemoveExclusiveScopeGroupWithContext

func (s *OauthAuthServerSettingsService) RemoveExclusiveScopeGroupWithContext(ctx context.Context, input *RemoveExclusiveScopeGroupInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveExclusiveScopeGroupWithContext - Remove an existing exclusive scope group. RequestType: DELETE Input: ctx context.Context, input *RemoveExclusiveScopeGroupInput

func (*OauthAuthServerSettingsService) RemoveExclusiveScopeWithContext

func (s *OauthAuthServerSettingsService) RemoveExclusiveScopeWithContext(ctx context.Context, input *RemoveExclusiveScopeInput) (output *models.ApiResult, resp *http.Response, err error)

RemoveExclusiveScopeWithContext - Remove an existing exclusive scope. RequestType: DELETE Input: ctx context.Context, input *RemoveExclusiveScopeInput

func (*OauthAuthServerSettingsService) UpdateAuthorizationServerSettings

func (s *OauthAuthServerSettingsService) UpdateAuthorizationServerSettings(input *UpdateAuthorizationServerSettingsInput) (output *models.AuthorizationServerSettings, resp *http.Response, err error)

UpdateAuthorizationServerSettings - Update the Authorization Server Settings. RequestType: PUT Input: input *UpdateAuthorizationServerSettingsInput

func (*OauthAuthServerSettingsService) UpdateAuthorizationServerSettingsWithContext

func (s *OauthAuthServerSettingsService) UpdateAuthorizationServerSettingsWithContext(ctx context.Context, input *UpdateAuthorizationServerSettingsInput) (output *models.AuthorizationServerSettings, resp *http.Response, err error)

UpdateAuthorizationServerSettingsWithContext - Update the Authorization Server Settings. RequestType: PUT Input: ctx context.Context, input *UpdateAuthorizationServerSettingsInput

func (*OauthAuthServerSettingsService) UpdateCommonScope

func (s *OauthAuthServerSettingsService) UpdateCommonScope(input *UpdateCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

UpdateCommonScope - Update an existing common scope. RequestType: PUT Input: input *UpdateCommonScopeInput

func (*OauthAuthServerSettingsService) UpdateCommonScopeGroup

func (s *OauthAuthServerSettingsService) UpdateCommonScopeGroup(input *UpdateCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

UpdateCommonScopeGroup - Update an existing common scope group. RequestType: PUT Input: input *UpdateCommonScopeGroupInput

func (*OauthAuthServerSettingsService) UpdateCommonScopeGroupWithContext

func (s *OauthAuthServerSettingsService) UpdateCommonScopeGroupWithContext(ctx context.Context, input *UpdateCommonScopeGroupInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

UpdateCommonScopeGroupWithContext - Update an existing common scope group. RequestType: PUT Input: ctx context.Context, input *UpdateCommonScopeGroupInput

func (*OauthAuthServerSettingsService) UpdateCommonScopeWithContext

func (s *OauthAuthServerSettingsService) UpdateCommonScopeWithContext(ctx context.Context, input *UpdateCommonScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

UpdateCommonScopeWithContext - Update an existing common scope. RequestType: PUT Input: ctx context.Context, input *UpdateCommonScopeInput

func (*OauthAuthServerSettingsService) UpdateExclusiveScope

func (s *OauthAuthServerSettingsService) UpdateExclusiveScope(input *UpdateExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

UpdateExclusiveScope - Update an existing exclusive scope. RequestType: PUT Input: input *UpdateExclusiveScopeInput

func (*OauthAuthServerSettingsService) UpdateExclusiveScopeGroups

func (s *OauthAuthServerSettingsService) UpdateExclusiveScopeGroups(input *UpdateExclusiveScopeGroupsInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

UpdateExclusiveScopeGroups - Update an existing exclusive scope group. RequestType: PUT Input: input *UpdateExclusiveScopeGroupsInput

func (*OauthAuthServerSettingsService) UpdateExclusiveScopeGroupsWithContext

func (s *OauthAuthServerSettingsService) UpdateExclusiveScopeGroupsWithContext(ctx context.Context, input *UpdateExclusiveScopeGroupsInput) (output *models.ScopeGroupEntry, resp *http.Response, err error)

UpdateExclusiveScopeGroupsWithContext - Update an existing exclusive scope group. RequestType: PUT Input: ctx context.Context, input *UpdateExclusiveScopeGroupsInput

func (*OauthAuthServerSettingsService) UpdateExclusiveScopeWithContext

func (s *OauthAuthServerSettingsService) UpdateExclusiveScopeWithContext(ctx context.Context, input *UpdateExclusiveScopeInput) (output *models.ScopeEntry, resp *http.Response, err error)

UpdateExclusiveScopeWithContext - Update an existing exclusive scope. RequestType: PUT Input: ctx context.Context, input *UpdateExclusiveScopeInput

type RemoveCommonScopeGroupInput

type RemoveCommonScopeGroupInput struct {
	Name string
}

type RemoveCommonScopeInput

type RemoveCommonScopeInput struct {
	Name string
}

type RemoveExclusiveScopeGroupInput

type RemoveExclusiveScopeGroupInput struct {
	Name string
}

type RemoveExclusiveScopeInput

type RemoveExclusiveScopeInput struct {
	Name string
}

type UpdateAuthorizationServerSettingsInput

type UpdateAuthorizationServerSettingsInput struct {
	Body models.AuthorizationServerSettings
}

type UpdateCommonScopeGroupInput

type UpdateCommonScopeGroupInput struct {
	Body models.ScopeGroupEntry
	Name string
}

type UpdateCommonScopeInput

type UpdateCommonScopeInput struct {
	Body models.ScopeEntry
	Name string
}

type UpdateExclusiveScopeGroupsInput

type UpdateExclusiveScopeGroupsInput struct {
	Body models.ScopeGroupEntry
	Name string
}

type UpdateExclusiveScopeInput

type UpdateExclusiveScopeInput struct {
	Body models.ScopeEntry
	Name string
}

Jump to

Keyboard shortcuts

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