active_directory_groups

package
v1.2.4 Latest Latest
Warning

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

Go to latest
Published: Jul 12, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for active directory groups API

func (*Client) CreateADGroupUsingPUT

CreateADGroupUsingPUT creates group

Create group

func (*Client) DeleteADGroupUsingDELETE

func (a *Client) DeleteADGroupUsingDELETE(params *DeleteADGroupUsingDELETEParams, opts ...ClientOption) (*DeleteADGroupUsingDELETEOK, error)

DeleteADGroupUsingDELETE deletes group

Delete group

func (*Client) GetADGroupUsingGET

func (a *Client) GetADGroupUsingGET(params *GetADGroupUsingGETParams, opts ...ClientOption) (*GetADGroupUsingGETOK, error)

GetADGroupUsingGET gets group info

Get group info

func (*Client) ListADGroupUsingGET

func (a *Client) ListADGroupUsingGET(params *ListADGroupUsingGETParams, opts ...ClientOption) (*ListADGroupUsingGETOK, error)

ListADGroupUsingGET lists groups

List groups

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

func (*Client) UpdateADGroupUsingPUT

func (a *Client) UpdateADGroupUsingPUT(params *UpdateADGroupUsingPUTParams, opts ...ClientOption) (*UpdateADGroupUsingPUTOK, error)

UpdateADGroupUsingPUT updates group

Update group

type ClientOption added in v1.2.4

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateADGroupUsingPUT(params *CreateADGroupUsingPUTParams, opts ...ClientOption) (*CreateADGroupUsingPUTOK, *CreateADGroupUsingPUTCreated, error)

	DeleteADGroupUsingDELETE(params *DeleteADGroupUsingDELETEParams, opts ...ClientOption) (*DeleteADGroupUsingDELETEOK, error)

	GetADGroupUsingGET(params *GetADGroupUsingGETParams, opts ...ClientOption) (*GetADGroupUsingGETOK, error)

	ListADGroupUsingGET(params *ListADGroupUsingGETParams, opts ...ClientOption) (*ListADGroupUsingGETOK, error)

	UpdateADGroupUsingPUT(params *UpdateADGroupUsingPUTParams, opts ...ClientOption) (*UpdateADGroupUsingPUTOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new active directory groups API client.

type CreateADGroupUsingPUTBadRequest

type CreateADGroupUsingPUTBadRequest struct {
}
CreateADGroupUsingPUTBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewCreateADGroupUsingPUTBadRequest

func NewCreateADGroupUsingPUTBadRequest() *CreateADGroupUsingPUTBadRequest

NewCreateADGroupUsingPUTBadRequest creates a CreateADGroupUsingPUTBadRequest with default headers values

func (*CreateADGroupUsingPUTBadRequest) Error

type CreateADGroupUsingPUTCreated

type CreateADGroupUsingPUTCreated struct {
	Payload *models.CreateGroupInstanceResponse
}
CreateADGroupUsingPUTCreated describes a response with status code 201, with default header values.

Entity has been created

func NewCreateADGroupUsingPUTCreated

func NewCreateADGroupUsingPUTCreated() *CreateADGroupUsingPUTCreated

NewCreateADGroupUsingPUTCreated creates a CreateADGroupUsingPUTCreated with default headers values

func (*CreateADGroupUsingPUTCreated) Error

func (*CreateADGroupUsingPUTCreated) GetPayload

type CreateADGroupUsingPUTNotFound

type CreateADGroupUsingPUTNotFound struct {
}
CreateADGroupUsingPUTNotFound describes a response with status code 404, with default header values.

Entity not found.

func NewCreateADGroupUsingPUTNotFound

func NewCreateADGroupUsingPUTNotFound() *CreateADGroupUsingPUTNotFound

NewCreateADGroupUsingPUTNotFound creates a CreateADGroupUsingPUTNotFound with default headers values

func (*CreateADGroupUsingPUTNotFound) Error

type CreateADGroupUsingPUTOK

type CreateADGroupUsingPUTOK struct {
	Payload *models.CreateGroupInstanceResponse
}
CreateADGroupUsingPUTOK describes a response with status code 200, with default header values.

OK

func NewCreateADGroupUsingPUTOK

func NewCreateADGroupUsingPUTOK() *CreateADGroupUsingPUTOK

NewCreateADGroupUsingPUTOK creates a CreateADGroupUsingPUTOK with default headers values

func (*CreateADGroupUsingPUTOK) Error

func (o *CreateADGroupUsingPUTOK) Error() string

func (*CreateADGroupUsingPUTOK) GetPayload

type CreateADGroupUsingPUTParams

type CreateADGroupUsingPUTParams struct {

	/* GroupInstance.

	   groupInstance
	*/
	GroupInstance *models.ADGroupInstance

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

CreateADGroupUsingPUTParams contains all the parameters to send to the API endpoint

for the create a d group using p u t operation.

Typically these are written to a http.Request.

func NewCreateADGroupUsingPUTParams

func NewCreateADGroupUsingPUTParams() *CreateADGroupUsingPUTParams

NewCreateADGroupUsingPUTParams creates a new CreateADGroupUsingPUTParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateADGroupUsingPUTParamsWithContext

func NewCreateADGroupUsingPUTParamsWithContext(ctx context.Context) *CreateADGroupUsingPUTParams

NewCreateADGroupUsingPUTParamsWithContext creates a new CreateADGroupUsingPUTParams object with the ability to set a context for a request.

func NewCreateADGroupUsingPUTParamsWithHTTPClient

func NewCreateADGroupUsingPUTParamsWithHTTPClient(client *http.Client) *CreateADGroupUsingPUTParams

NewCreateADGroupUsingPUTParamsWithHTTPClient creates a new CreateADGroupUsingPUTParams object with the ability to set a custom HTTPClient for a request.

func NewCreateADGroupUsingPUTParamsWithTimeout

func NewCreateADGroupUsingPUTParamsWithTimeout(timeout time.Duration) *CreateADGroupUsingPUTParams

NewCreateADGroupUsingPUTParamsWithTimeout creates a new CreateADGroupUsingPUTParams object with the ability to set a timeout on a request.

func (*CreateADGroupUsingPUTParams) SetContext

func (o *CreateADGroupUsingPUTParams) SetContext(ctx context.Context)

SetContext adds the context to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) SetDefaults added in v1.2.4

func (o *CreateADGroupUsingPUTParams) SetDefaults()

SetDefaults hydrates default values in the create a d group using p u t params (not the query body).

All values with no default are reset to their zero value.

func (*CreateADGroupUsingPUTParams) SetGroupInstance

func (o *CreateADGroupUsingPUTParams) SetGroupInstance(groupInstance *models.ADGroupInstance)

SetGroupInstance adds the groupInstance to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) SetHTTPClient

func (o *CreateADGroupUsingPUTParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) SetTimeout

func (o *CreateADGroupUsingPUTParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) WithContext

WithContext adds the context to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the create a d group using p u t params (not the query body).

All values with no default are reset to their zero value.

func (*CreateADGroupUsingPUTParams) WithGroupInstance

func (o *CreateADGroupUsingPUTParams) WithGroupInstance(groupInstance *models.ADGroupInstance) *CreateADGroupUsingPUTParams

WithGroupInstance adds the groupInstance to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) WithTimeout

WithTimeout adds the timeout to the create a d group using p u t params

func (*CreateADGroupUsingPUTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateADGroupUsingPUTReader

type CreateADGroupUsingPUTReader struct {
	// contains filtered or unexported fields
}

CreateADGroupUsingPUTReader is a Reader for the CreateADGroupUsingPUT structure.

func (*CreateADGroupUsingPUTReader) ReadResponse

func (o *CreateADGroupUsingPUTReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DeleteADGroupUsingDELETEBadRequest

type DeleteADGroupUsingDELETEBadRequest struct {
}
DeleteADGroupUsingDELETEBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewDeleteADGroupUsingDELETEBadRequest

func NewDeleteADGroupUsingDELETEBadRequest() *DeleteADGroupUsingDELETEBadRequest

NewDeleteADGroupUsingDELETEBadRequest creates a DeleteADGroupUsingDELETEBadRequest with default headers values

func (*DeleteADGroupUsingDELETEBadRequest) Error

type DeleteADGroupUsingDELETENotFound

type DeleteADGroupUsingDELETENotFound struct {
}
DeleteADGroupUsingDELETENotFound describes a response with status code 404, with default header values.

Entity not found.

func NewDeleteADGroupUsingDELETENotFound

func NewDeleteADGroupUsingDELETENotFound() *DeleteADGroupUsingDELETENotFound

NewDeleteADGroupUsingDELETENotFound creates a DeleteADGroupUsingDELETENotFound with default headers values

func (*DeleteADGroupUsingDELETENotFound) Error

type DeleteADGroupUsingDELETEOK

type DeleteADGroupUsingDELETEOK struct {
	Payload *models.DeleteGroupInstanceResponse
}
DeleteADGroupUsingDELETEOK describes a response with status code 200, with default header values.

OK

func NewDeleteADGroupUsingDELETEOK

func NewDeleteADGroupUsingDELETEOK() *DeleteADGroupUsingDELETEOK

NewDeleteADGroupUsingDELETEOK creates a DeleteADGroupUsingDELETEOK with default headers values

func (*DeleteADGroupUsingDELETEOK) Error

func (*DeleteADGroupUsingDELETEOK) GetPayload

type DeleteADGroupUsingDELETEParams

type DeleteADGroupUsingDELETEParams struct {

	/* SamAccountName.

	   samAccountName
	*/
	SamAccountName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteADGroupUsingDELETEParams contains all the parameters to send to the API endpoint

for the delete a d group using d e l e t e operation.

Typically these are written to a http.Request.

func NewDeleteADGroupUsingDELETEParams

func NewDeleteADGroupUsingDELETEParams() *DeleteADGroupUsingDELETEParams

NewDeleteADGroupUsingDELETEParams creates a new DeleteADGroupUsingDELETEParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteADGroupUsingDELETEParamsWithContext

func NewDeleteADGroupUsingDELETEParamsWithContext(ctx context.Context) *DeleteADGroupUsingDELETEParams

NewDeleteADGroupUsingDELETEParamsWithContext creates a new DeleteADGroupUsingDELETEParams object with the ability to set a context for a request.

func NewDeleteADGroupUsingDELETEParamsWithHTTPClient

func NewDeleteADGroupUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteADGroupUsingDELETEParams

NewDeleteADGroupUsingDELETEParamsWithHTTPClient creates a new DeleteADGroupUsingDELETEParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteADGroupUsingDELETEParamsWithTimeout

func NewDeleteADGroupUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteADGroupUsingDELETEParams

NewDeleteADGroupUsingDELETEParamsWithTimeout creates a new DeleteADGroupUsingDELETEParams object with the ability to set a timeout on a request.

func (*DeleteADGroupUsingDELETEParams) SetContext

func (o *DeleteADGroupUsingDELETEParams) SetContext(ctx context.Context)

SetContext adds the context to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) SetDefaults added in v1.2.4

func (o *DeleteADGroupUsingDELETEParams) SetDefaults()

SetDefaults hydrates default values in the delete a d group using d e l e t e params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteADGroupUsingDELETEParams) SetHTTPClient

func (o *DeleteADGroupUsingDELETEParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) SetSamAccountName

func (o *DeleteADGroupUsingDELETEParams) SetSamAccountName(samAccountName string)

SetSamAccountName adds the samAccountName to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) SetTimeout

func (o *DeleteADGroupUsingDELETEParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) WithContext

WithContext adds the context to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the delete a d group using d e l e t e params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteADGroupUsingDELETEParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) WithSamAccountName

func (o *DeleteADGroupUsingDELETEParams) WithSamAccountName(samAccountName string) *DeleteADGroupUsingDELETEParams

WithSamAccountName adds the samAccountName to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) WithTimeout

WithTimeout adds the timeout to the delete a d group using d e l e t e params

func (*DeleteADGroupUsingDELETEParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteADGroupUsingDELETEReader

type DeleteADGroupUsingDELETEReader struct {
	// contains filtered or unexported fields
}

DeleteADGroupUsingDELETEReader is a Reader for the DeleteADGroupUsingDELETE structure.

func (*DeleteADGroupUsingDELETEReader) ReadResponse

func (o *DeleteADGroupUsingDELETEReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetADGroupUsingGETBadRequest

type GetADGroupUsingGETBadRequest struct {
}
GetADGroupUsingGETBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewGetADGroupUsingGETBadRequest

func NewGetADGroupUsingGETBadRequest() *GetADGroupUsingGETBadRequest

NewGetADGroupUsingGETBadRequest creates a GetADGroupUsingGETBadRequest with default headers values

func (*GetADGroupUsingGETBadRequest) Error

type GetADGroupUsingGETNotFound

type GetADGroupUsingGETNotFound struct {
}
GetADGroupUsingGETNotFound describes a response with status code 404, with default header values.

Entity not found.

func NewGetADGroupUsingGETNotFound

func NewGetADGroupUsingGETNotFound() *GetADGroupUsingGETNotFound

NewGetADGroupUsingGETNotFound creates a GetADGroupUsingGETNotFound with default headers values

func (*GetADGroupUsingGETNotFound) Error

type GetADGroupUsingGETOK

type GetADGroupUsingGETOK struct {
	Payload *models.GroupInstanceGetResponse
}
GetADGroupUsingGETOK describes a response with status code 200, with default header values.

OK

func NewGetADGroupUsingGETOK

func NewGetADGroupUsingGETOK() *GetADGroupUsingGETOK

NewGetADGroupUsingGETOK creates a GetADGroupUsingGETOK with default headers values

func (*GetADGroupUsingGETOK) Error

func (o *GetADGroupUsingGETOK) Error() string

func (*GetADGroupUsingGETOK) GetPayload

type GetADGroupUsingGETParams

type GetADGroupUsingGETParams struct {

	/* SamAccountName.

	   samAccountName
	*/
	SamAccountName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetADGroupUsingGETParams contains all the parameters to send to the API endpoint

for the get a d group using g e t operation.

Typically these are written to a http.Request.

func NewGetADGroupUsingGETParams

func NewGetADGroupUsingGETParams() *GetADGroupUsingGETParams

NewGetADGroupUsingGETParams creates a new GetADGroupUsingGETParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetADGroupUsingGETParamsWithContext

func NewGetADGroupUsingGETParamsWithContext(ctx context.Context) *GetADGroupUsingGETParams

NewGetADGroupUsingGETParamsWithContext creates a new GetADGroupUsingGETParams object with the ability to set a context for a request.

func NewGetADGroupUsingGETParamsWithHTTPClient

func NewGetADGroupUsingGETParamsWithHTTPClient(client *http.Client) *GetADGroupUsingGETParams

NewGetADGroupUsingGETParamsWithHTTPClient creates a new GetADGroupUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetADGroupUsingGETParamsWithTimeout

func NewGetADGroupUsingGETParamsWithTimeout(timeout time.Duration) *GetADGroupUsingGETParams

NewGetADGroupUsingGETParamsWithTimeout creates a new GetADGroupUsingGETParams object with the ability to set a timeout on a request.

func (*GetADGroupUsingGETParams) SetContext

func (o *GetADGroupUsingGETParams) SetContext(ctx context.Context)

SetContext adds the context to the get a d group using g e t params

func (*GetADGroupUsingGETParams) SetDefaults added in v1.2.4

func (o *GetADGroupUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get a d group using g e t params (not the query body).

All values with no default are reset to their zero value.

func (*GetADGroupUsingGETParams) SetHTTPClient

func (o *GetADGroupUsingGETParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get a d group using g e t params

func (*GetADGroupUsingGETParams) SetSamAccountName

func (o *GetADGroupUsingGETParams) SetSamAccountName(samAccountName string)

SetSamAccountName adds the samAccountName to the get a d group using g e t params

func (*GetADGroupUsingGETParams) SetTimeout

func (o *GetADGroupUsingGETParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get a d group using g e t params

func (*GetADGroupUsingGETParams) WithContext

WithContext adds the context to the get a d group using g e t params

func (*GetADGroupUsingGETParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the get a d group using g e t params (not the query body).

All values with no default are reset to their zero value.

func (*GetADGroupUsingGETParams) WithHTTPClient

func (o *GetADGroupUsingGETParams) WithHTTPClient(client *http.Client) *GetADGroupUsingGETParams

WithHTTPClient adds the HTTPClient to the get a d group using g e t params

func (*GetADGroupUsingGETParams) WithSamAccountName

func (o *GetADGroupUsingGETParams) WithSamAccountName(samAccountName string) *GetADGroupUsingGETParams

WithSamAccountName adds the samAccountName to the get a d group using g e t params

func (*GetADGroupUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get a d group using g e t params

func (*GetADGroupUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetADGroupUsingGETReader

type GetADGroupUsingGETReader struct {
	// contains filtered or unexported fields
}

GetADGroupUsingGETReader is a Reader for the GetADGroupUsingGET structure.

func (*GetADGroupUsingGETReader) ReadResponse

func (o *GetADGroupUsingGETReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ListADGroupUsingGETBadRequest

type ListADGroupUsingGETBadRequest struct {
}
ListADGroupUsingGETBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewListADGroupUsingGETBadRequest

func NewListADGroupUsingGETBadRequest() *ListADGroupUsingGETBadRequest

NewListADGroupUsingGETBadRequest creates a ListADGroupUsingGETBadRequest with default headers values

func (*ListADGroupUsingGETBadRequest) Error

type ListADGroupUsingGETOK

type ListADGroupUsingGETOK struct {
	Payload *models.GroupInstanceListResponse
}
ListADGroupUsingGETOK describes a response with status code 200, with default header values.

OK

func NewListADGroupUsingGETOK

func NewListADGroupUsingGETOK() *ListADGroupUsingGETOK

NewListADGroupUsingGETOK creates a ListADGroupUsingGETOK with default headers values

func (*ListADGroupUsingGETOK) Error

func (o *ListADGroupUsingGETOK) Error() string

func (*ListADGroupUsingGETOK) GetPayload

type ListADGroupUsingGETParams

type ListADGroupUsingGETParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ListADGroupUsingGETParams contains all the parameters to send to the API endpoint

for the list a d group using g e t operation.

Typically these are written to a http.Request.

func NewListADGroupUsingGETParams

func NewListADGroupUsingGETParams() *ListADGroupUsingGETParams

NewListADGroupUsingGETParams creates a new ListADGroupUsingGETParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListADGroupUsingGETParamsWithContext

func NewListADGroupUsingGETParamsWithContext(ctx context.Context) *ListADGroupUsingGETParams

NewListADGroupUsingGETParamsWithContext creates a new ListADGroupUsingGETParams object with the ability to set a context for a request.

func NewListADGroupUsingGETParamsWithHTTPClient

func NewListADGroupUsingGETParamsWithHTTPClient(client *http.Client) *ListADGroupUsingGETParams

NewListADGroupUsingGETParamsWithHTTPClient creates a new ListADGroupUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewListADGroupUsingGETParamsWithTimeout

func NewListADGroupUsingGETParamsWithTimeout(timeout time.Duration) *ListADGroupUsingGETParams

NewListADGroupUsingGETParamsWithTimeout creates a new ListADGroupUsingGETParams object with the ability to set a timeout on a request.

func (*ListADGroupUsingGETParams) SetContext

func (o *ListADGroupUsingGETParams) SetContext(ctx context.Context)

SetContext adds the context to the list a d group using g e t params

func (*ListADGroupUsingGETParams) SetDefaults added in v1.2.4

func (o *ListADGroupUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the list a d group using g e t params (not the query body).

All values with no default are reset to their zero value.

func (*ListADGroupUsingGETParams) SetHTTPClient

func (o *ListADGroupUsingGETParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the list a d group using g e t params

func (*ListADGroupUsingGETParams) SetTimeout

func (o *ListADGroupUsingGETParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the list a d group using g e t params

func (*ListADGroupUsingGETParams) WithContext

WithContext adds the context to the list a d group using g e t params

func (*ListADGroupUsingGETParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the list a d group using g e t params (not the query body).

All values with no default are reset to their zero value.

func (*ListADGroupUsingGETParams) WithHTTPClient

func (o *ListADGroupUsingGETParams) WithHTTPClient(client *http.Client) *ListADGroupUsingGETParams

WithHTTPClient adds the HTTPClient to the list a d group using g e t params

func (*ListADGroupUsingGETParams) WithTimeout

WithTimeout adds the timeout to the list a d group using g e t params

func (*ListADGroupUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListADGroupUsingGETReader

type ListADGroupUsingGETReader struct {
	// contains filtered or unexported fields
}

ListADGroupUsingGETReader is a Reader for the ListADGroupUsingGET structure.

func (*ListADGroupUsingGETReader) ReadResponse

func (o *ListADGroupUsingGETReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type UpdateADGroupUsingPUTBadRequest

type UpdateADGroupUsingPUTBadRequest struct {
}
UpdateADGroupUsingPUTBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewUpdateADGroupUsingPUTBadRequest

func NewUpdateADGroupUsingPUTBadRequest() *UpdateADGroupUsingPUTBadRequest

NewUpdateADGroupUsingPUTBadRequest creates a UpdateADGroupUsingPUTBadRequest with default headers values

func (*UpdateADGroupUsingPUTBadRequest) Error

type UpdateADGroupUsingPUTNotFound

type UpdateADGroupUsingPUTNotFound struct {
}
UpdateADGroupUsingPUTNotFound describes a response with status code 404, with default header values.

Entity not found.

func NewUpdateADGroupUsingPUTNotFound

func NewUpdateADGroupUsingPUTNotFound() *UpdateADGroupUsingPUTNotFound

NewUpdateADGroupUsingPUTNotFound creates a UpdateADGroupUsingPUTNotFound with default headers values

func (*UpdateADGroupUsingPUTNotFound) Error

type UpdateADGroupUsingPUTOK

type UpdateADGroupUsingPUTOK struct {
	Payload *models.UpdateGroupInstanceResponse
}
UpdateADGroupUsingPUTOK describes a response with status code 200, with default header values.

OK

func NewUpdateADGroupUsingPUTOK

func NewUpdateADGroupUsingPUTOK() *UpdateADGroupUsingPUTOK

NewUpdateADGroupUsingPUTOK creates a UpdateADGroupUsingPUTOK with default headers values

func (*UpdateADGroupUsingPUTOK) Error

func (o *UpdateADGroupUsingPUTOK) Error() string

func (*UpdateADGroupUsingPUTOK) GetPayload

type UpdateADGroupUsingPUTParams

type UpdateADGroupUsingPUTParams struct {

	/* GroupInstance.

	   groupInstance
	*/
	GroupInstance *models.ADGroupInstance

	/* SamAccountName.

	   samAccountName
	*/
	SamAccountName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

UpdateADGroupUsingPUTParams contains all the parameters to send to the API endpoint

for the update a d group using p u t operation.

Typically these are written to a http.Request.

func NewUpdateADGroupUsingPUTParams

func NewUpdateADGroupUsingPUTParams() *UpdateADGroupUsingPUTParams

NewUpdateADGroupUsingPUTParams creates a new UpdateADGroupUsingPUTParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateADGroupUsingPUTParamsWithContext

func NewUpdateADGroupUsingPUTParamsWithContext(ctx context.Context) *UpdateADGroupUsingPUTParams

NewUpdateADGroupUsingPUTParamsWithContext creates a new UpdateADGroupUsingPUTParams object with the ability to set a context for a request.

func NewUpdateADGroupUsingPUTParamsWithHTTPClient

func NewUpdateADGroupUsingPUTParamsWithHTTPClient(client *http.Client) *UpdateADGroupUsingPUTParams

NewUpdateADGroupUsingPUTParamsWithHTTPClient creates a new UpdateADGroupUsingPUTParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateADGroupUsingPUTParamsWithTimeout

func NewUpdateADGroupUsingPUTParamsWithTimeout(timeout time.Duration) *UpdateADGroupUsingPUTParams

NewUpdateADGroupUsingPUTParamsWithTimeout creates a new UpdateADGroupUsingPUTParams object with the ability to set a timeout on a request.

func (*UpdateADGroupUsingPUTParams) SetContext

func (o *UpdateADGroupUsingPUTParams) SetContext(ctx context.Context)

SetContext adds the context to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) SetDefaults added in v1.2.4

func (o *UpdateADGroupUsingPUTParams) SetDefaults()

SetDefaults hydrates default values in the update a d group using p u t params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateADGroupUsingPUTParams) SetGroupInstance

func (o *UpdateADGroupUsingPUTParams) SetGroupInstance(groupInstance *models.ADGroupInstance)

SetGroupInstance adds the groupInstance to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) SetHTTPClient

func (o *UpdateADGroupUsingPUTParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) SetSamAccountName

func (o *UpdateADGroupUsingPUTParams) SetSamAccountName(samAccountName string)

SetSamAccountName adds the samAccountName to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) SetTimeout

func (o *UpdateADGroupUsingPUTParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) WithContext

WithContext adds the context to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the update a d group using p u t params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateADGroupUsingPUTParams) WithGroupInstance

func (o *UpdateADGroupUsingPUTParams) WithGroupInstance(groupInstance *models.ADGroupInstance) *UpdateADGroupUsingPUTParams

WithGroupInstance adds the groupInstance to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) WithSamAccountName

func (o *UpdateADGroupUsingPUTParams) WithSamAccountName(samAccountName string) *UpdateADGroupUsingPUTParams

WithSamAccountName adds the samAccountName to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) WithTimeout

WithTimeout adds the timeout to the update a d group using p u t params

func (*UpdateADGroupUsingPUTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateADGroupUsingPUTReader

type UpdateADGroupUsingPUTReader struct {
	// contains filtered or unexported fields
}

UpdateADGroupUsingPUTReader is a Reader for the UpdateADGroupUsingPUT structure.

func (*UpdateADGroupUsingPUTReader) ReadResponse

func (o *UpdateADGroupUsingPUTReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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