spAuthenticationPolicyContractMappings

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: 10 Imported by: 1

Documentation

Index

Constants

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

Variables

This section is empty.

Functions

This section is empty.

Types

type CreateApcToSpAdapterMappingInput

type CreateApcToSpAdapterMappingInput struct {
	Body models.ApcToSpAdapterMapping

	BypassExternalValidation *bool
}

type DeleteApcToSpAdapterMappingByIdInput

type DeleteApcToSpAdapterMappingByIdInput struct {
	Id string
}

type GetApcToSpAdapterMappingByIdInput

type GetApcToSpAdapterMappingByIdInput struct {
	Id string
}

type SpAuthenticationPolicyContractMappingsAPI

type SpAuthenticationPolicyContractMappingsAPI interface {
	GetApcToSpAdapterMappings() (output *models.ApcToSpAdapterMappings, resp *http.Response, err error)
	GetApcToSpAdapterMappingsWithContext(ctx context.Context) (output *models.ApcToSpAdapterMappings, resp *http.Response, err error)

	CreateApcToSpAdapterMapping(input *CreateApcToSpAdapterMappingInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)
	CreateApcToSpAdapterMappingWithContext(ctx context.Context, input *CreateApcToSpAdapterMappingInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)

	GetApcToSpAdapterMappingById(input *GetApcToSpAdapterMappingByIdInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)
	GetApcToSpAdapterMappingByIdWithContext(ctx context.Context, input *GetApcToSpAdapterMappingByIdInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)

	UpdateApcToSpAdapterMappingById(input *UpdateApcToSpAdapterMappingByIdInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)
	UpdateApcToSpAdapterMappingByIdWithContext(ctx context.Context, input *UpdateApcToSpAdapterMappingByIdInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)

	DeleteApcToSpAdapterMappingById(input *DeleteApcToSpAdapterMappingByIdInput) (output *models.ApiResult, resp *http.Response, err error)
	DeleteApcToSpAdapterMappingByIdWithContext(ctx context.Context, input *DeleteApcToSpAdapterMappingByIdInput) (output *models.ApiResult, resp *http.Response, err error)
}

type SpAuthenticationPolicyContractMappingsService

type SpAuthenticationPolicyContractMappingsService struct {
	*client.PfClient
}

func New

New creates a new instance of the SpAuthenticationPolicyContractMappingsService client.

func (*SpAuthenticationPolicyContractMappingsService) CreateApcToSpAdapterMapping

CreateApcToSpAdapterMapping - Create a new APC-to-SP Adapter Mapping. RequestType: POST Input: input *CreateApcToSpAdapterMappingInput

func (*SpAuthenticationPolicyContractMappingsService) CreateApcToSpAdapterMappingWithContext

func (s *SpAuthenticationPolicyContractMappingsService) CreateApcToSpAdapterMappingWithContext(ctx context.Context, input *CreateApcToSpAdapterMappingInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)

CreateApcToSpAdapterMappingWithContext - Create a new APC-to-SP Adapter Mapping. RequestType: POST Input: ctx context.Context, input *CreateApcToSpAdapterMappingInput

func (*SpAuthenticationPolicyContractMappingsService) DeleteApcToSpAdapterMappingById

func (s *SpAuthenticationPolicyContractMappingsService) DeleteApcToSpAdapterMappingById(input *DeleteApcToSpAdapterMappingByIdInput) (output *models.ApiResult, resp *http.Response, err error)

DeleteApcToSpAdapterMappingById - Delete an APC-to-SP Adapter Mapping. RequestType: DELETE Input: input *DeleteApcToSpAdapterMappingByIdInput

func (*SpAuthenticationPolicyContractMappingsService) DeleteApcToSpAdapterMappingByIdWithContext

func (s *SpAuthenticationPolicyContractMappingsService) DeleteApcToSpAdapterMappingByIdWithContext(ctx context.Context, input *DeleteApcToSpAdapterMappingByIdInput) (output *models.ApiResult, resp *http.Response, err error)

DeleteApcToSpAdapterMappingByIdWithContext - Delete an APC-to-SP Adapter Mapping. RequestType: DELETE Input: ctx context.Context, input *DeleteApcToSpAdapterMappingByIdInput

func (*SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappingById

GetApcToSpAdapterMappingById - Get an APC-to-SP Adapter Mapping. RequestType: GET Input: input *GetApcToSpAdapterMappingByIdInput

func (*SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappingByIdWithContext

func (s *SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappingByIdWithContext(ctx context.Context, input *GetApcToSpAdapterMappingByIdInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)

GetApcToSpAdapterMappingByIdWithContext - Get an APC-to-SP Adapter Mapping. RequestType: GET Input: ctx context.Context, input *GetApcToSpAdapterMappingByIdInput

func (*SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappings

func (s *SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappings() (output *models.ApcToSpAdapterMappings, resp *http.Response, err error)

GetApcToSpAdapterMappings - Get the list of APC-to-SP Adapter Mappings. RequestType: GET Input:

func (*SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappingsWithContext

func (s *SpAuthenticationPolicyContractMappingsService) GetApcToSpAdapterMappingsWithContext(ctx context.Context) (output *models.ApcToSpAdapterMappings, resp *http.Response, err error)

GetApcToSpAdapterMappingsWithContext - Get the list of APC-to-SP Adapter Mappings. RequestType: GET Input: ctx context.Context,

func (*SpAuthenticationPolicyContractMappingsService) UpdateApcToSpAdapterMappingById

UpdateApcToSpAdapterMappingById - Update an APC-to-SP Adapter Mapping. RequestType: PUT Input: input *UpdateApcToSpAdapterMappingByIdInput

func (*SpAuthenticationPolicyContractMappingsService) UpdateApcToSpAdapterMappingByIdWithContext

func (s *SpAuthenticationPolicyContractMappingsService) UpdateApcToSpAdapterMappingByIdWithContext(ctx context.Context, input *UpdateApcToSpAdapterMappingByIdInput) (output *models.ApcToSpAdapterMapping, resp *http.Response, err error)

UpdateApcToSpAdapterMappingByIdWithContext - Update an APC-to-SP Adapter Mapping. RequestType: PUT Input: ctx context.Context, input *UpdateApcToSpAdapterMappingByIdInput

type UpdateApcToSpAdapterMappingByIdInput

type UpdateApcToSpAdapterMappingByIdInput struct {
	Body models.ApcToSpAdapterMapping
	Id   string

	BypassExternalValidation *bool
}

Jump to

Keyboard shortcuts

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