change_log

package
v0.0.0-...-b7c797c Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2020 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 change log API

func (*Client) GetOrganizationConfigurationChanges

GetOrganizationConfigurationChanges gets organization configuration changes

View the Change Log for your organization

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	GetOrganizationConfigurationChanges(params *GetOrganizationConfigurationChangesParams, authInfo runtime.ClientAuthInfoWriter) (*GetOrganizationConfigurationChangesOK, 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 change log API client.

type GetOrganizationConfigurationChangesOK

type GetOrganizationConfigurationChangesOK struct {
	Payload interface{}
}

GetOrganizationConfigurationChangesOK handles this case with default header values.

Successful operation

func NewGetOrganizationConfigurationChangesOK

func NewGetOrganizationConfigurationChangesOK() *GetOrganizationConfigurationChangesOK

NewGetOrganizationConfigurationChangesOK creates a GetOrganizationConfigurationChangesOK with default headers values

func (*GetOrganizationConfigurationChangesOK) Error

func (*GetOrganizationConfigurationChangesOK) GetPayload

func (o *GetOrganizationConfigurationChangesOK) GetPayload() interface{}

type GetOrganizationConfigurationChangesParams

type GetOrganizationConfigurationChangesParams struct {

	/*AdminID
	  Filters on the given Admin

	*/
	AdminID *string
	/*EndingBefore
	  A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

	*/
	EndingBefore *string
	/*NetworkID
	  Filters on the given network

	*/
	NetworkID *string
	/*OrganizationID*/
	OrganizationID string
	/*PerPage
	  The number of entries per page returned. Acceptable range is 3 - 5000. Default is 5000.

	*/
	PerPage *int32
	/*StartingAfter
	  A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

	*/
	StartingAfter *string
	/*T0
	  The beginning of the timespan for the data. The maximum lookback period is 365 days from today.

	*/
	T0 *string
	/*T1
	  The end of the timespan for the data. t1 can be a maximum of 365 days after t0.

	*/
	T1 *string
	/*Timespan
	  The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 365 days. The default is 365 days.

	*/
	Timespan *float64

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

GetOrganizationConfigurationChangesParams contains all the parameters to send to the API endpoint for the get organization configuration changes operation typically these are written to a http.Request

func NewGetOrganizationConfigurationChangesParams

func NewGetOrganizationConfigurationChangesParams() *GetOrganizationConfigurationChangesParams

NewGetOrganizationConfigurationChangesParams creates a new GetOrganizationConfigurationChangesParams object with the default values initialized.

func NewGetOrganizationConfigurationChangesParamsWithContext

func NewGetOrganizationConfigurationChangesParamsWithContext(ctx context.Context) *GetOrganizationConfigurationChangesParams

NewGetOrganizationConfigurationChangesParamsWithContext creates a new GetOrganizationConfigurationChangesParams object with the default values initialized, and the ability to set a context for a request

func NewGetOrganizationConfigurationChangesParamsWithHTTPClient

func NewGetOrganizationConfigurationChangesParamsWithHTTPClient(client *http.Client) *GetOrganizationConfigurationChangesParams

NewGetOrganizationConfigurationChangesParamsWithHTTPClient creates a new GetOrganizationConfigurationChangesParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetOrganizationConfigurationChangesParamsWithTimeout

func NewGetOrganizationConfigurationChangesParamsWithTimeout(timeout time.Duration) *GetOrganizationConfigurationChangesParams

NewGetOrganizationConfigurationChangesParamsWithTimeout creates a new GetOrganizationConfigurationChangesParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetOrganizationConfigurationChangesParams) SetAdminID

func (o *GetOrganizationConfigurationChangesParams) SetAdminID(adminID *string)

SetAdminID adds the adminId to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetContext

SetContext adds the context to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetEndingBefore

func (o *GetOrganizationConfigurationChangesParams) SetEndingBefore(endingBefore *string)

SetEndingBefore adds the endingBefore to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetNetworkID

func (o *GetOrganizationConfigurationChangesParams) SetNetworkID(networkID *string)

SetNetworkID adds the networkId to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetOrganizationID

func (o *GetOrganizationConfigurationChangesParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetPerPage

func (o *GetOrganizationConfigurationChangesParams) SetPerPage(perPage *int32)

SetPerPage adds the perPage to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetStartingAfter

func (o *GetOrganizationConfigurationChangesParams) SetStartingAfter(startingAfter *string)

SetStartingAfter adds the startingAfter to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetT0

SetT0 adds the t0 to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetT1

SetT1 adds the t1 to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetTimeout

SetTimeout adds the timeout to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) SetTimespan

func (o *GetOrganizationConfigurationChangesParams) SetTimespan(timespan *float64)

SetTimespan adds the timespan to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithAdminID

WithAdminID adds the adminID to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithContext

WithContext adds the context to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithEndingBefore

WithEndingBefore adds the endingBefore to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithNetworkID

WithNetworkID adds the networkID to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithOrganizationID

WithOrganizationID adds the organizationID to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithPerPage

WithPerPage adds the perPage to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithStartingAfter

WithStartingAfter adds the startingAfter to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithT0

WithT0 adds the t0 to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithT1

WithT1 adds the t1 to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithTimeout

WithTimeout adds the timeout to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WithTimespan

WithTimespan adds the timespan to the get organization configuration changes params

func (*GetOrganizationConfigurationChangesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetOrganizationConfigurationChangesReader

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

GetOrganizationConfigurationChangesReader is a Reader for the GetOrganizationConfigurationChanges structure.

func (*GetOrganizationConfigurationChangesReader) ReadResponse

func (o *GetOrganizationConfigurationChangesReader) 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