Documentation ¶
Index ¶
- type Client
- func (a *Client) EnvironmentVariableList(params *EnvironmentVariableListParams, authInfo runtime.ClientAuthInfoWriter) (*EnvironmentVariableListOK, *EnvironmentVariableListUnauthorized, ...)deprecated
- func (a *Client) EnvironmentVariableListShort(params *EnvironmentVariableListParams, authInfo runtime.ClientAuthInfoWriter) (*EnvironmentVariableListOK, error)
- func (a *Client) SetTransport(transport runtime.ClientTransport)
- type ClientService
- type EnvironmentVariableListForbidden
- type EnvironmentVariableListOK
- type EnvironmentVariableListParams
- func NewEnvironmentVariableListParams() *EnvironmentVariableListParams
- func NewEnvironmentVariableListParamsWithContext(ctx context.Context) *EnvironmentVariableListParams
- func NewEnvironmentVariableListParamsWithHTTPClient(client *http.Client) *EnvironmentVariableListParams
- func NewEnvironmentVariableListParamsWithTimeout(timeout time.Duration) *EnvironmentVariableListParams
- func (o *EnvironmentVariableListParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)
- func (o *EnvironmentVariableListParams) SetContext(ctx context.Context)
- func (o *EnvironmentVariableListParams) SetFlightId(flightId string)
- func (o *EnvironmentVariableListParams) SetHTTPClient(client *http.Client)
- func (o *EnvironmentVariableListParams) SetHTTPClientTransport(roundTripper http.RoundTripper)
- func (o *EnvironmentVariableListParams) SetTimeout(timeout time.Duration)
- func (o *EnvironmentVariableListParams) WithContext(ctx context.Context) *EnvironmentVariableListParams
- func (o *EnvironmentVariableListParams) WithHTTPClient(client *http.Client) *EnvironmentVariableListParams
- func (o *EnvironmentVariableListParams) WithTimeout(timeout time.Duration) *EnvironmentVariableListParams
- func (o *EnvironmentVariableListParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type EnvironmentVariableListReader
- type EnvironmentVariableListUnauthorized
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 environment variables API
func (*Client) EnvironmentVariableList
deprecated
func (a *Client) EnvironmentVariableList(params *EnvironmentVariableListParams, authInfo runtime.ClientAuthInfoWriter) (*EnvironmentVariableListOK, *EnvironmentVariableListUnauthorized, *EnvironmentVariableListForbidden, error)
Deprecated: 2022-08-10 - Use EnvironmentVariableListShort instead.
EnvironmentVariableList list environment variables List environment variables.
func (*Client) EnvironmentVariableListShort ¶
func (a *Client) EnvironmentVariableListShort(params *EnvironmentVariableListParams, authInfo runtime.ClientAuthInfoWriter) (*EnvironmentVariableListOK, error)
EnvironmentVariableListShort list environment variables List environment variables.
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
type ClientService ¶
type ClientService interface { EnvironmentVariableList(params *EnvironmentVariableListParams, authInfo runtime.ClientAuthInfoWriter) (*EnvironmentVariableListOK, *EnvironmentVariableListUnauthorized, *EnvironmentVariableListForbidden, error) EnvironmentVariableListShort(params *EnvironmentVariableListParams, authInfo runtime.ClientAuthInfoWriter) (*EnvironmentVariableListOK, 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 environment variables API client.
type EnvironmentVariableListForbidden ¶
type EnvironmentVariableListForbidden struct {
Payload *match2clientmodels.ResponseError
}
EnvironmentVariableListForbidden handles this case with default header values.
Forbidden
func NewEnvironmentVariableListForbidden ¶
func NewEnvironmentVariableListForbidden() *EnvironmentVariableListForbidden
NewEnvironmentVariableListForbidden creates a EnvironmentVariableListForbidden with default headers values
func (*EnvironmentVariableListForbidden) Error ¶
func (o *EnvironmentVariableListForbidden) Error() string
func (*EnvironmentVariableListForbidden) GetPayload ¶
func (o *EnvironmentVariableListForbidden) GetPayload() *match2clientmodels.ResponseError
func (*EnvironmentVariableListForbidden) ToJSONString ¶
func (o *EnvironmentVariableListForbidden) ToJSONString() string
type EnvironmentVariableListOK ¶
type EnvironmentVariableListOK struct {
Payload *match2clientmodels.APIListEnvironmentVariablesResponse
}
EnvironmentVariableListOK handles this case with default header values.
Created
func NewEnvironmentVariableListOK ¶
func NewEnvironmentVariableListOK() *EnvironmentVariableListOK
NewEnvironmentVariableListOK creates a EnvironmentVariableListOK with default headers values
func (*EnvironmentVariableListOK) Error ¶
func (o *EnvironmentVariableListOK) Error() string
func (*EnvironmentVariableListOK) GetPayload ¶
func (o *EnvironmentVariableListOK) GetPayload() *match2clientmodels.APIListEnvironmentVariablesResponse
func (*EnvironmentVariableListOK) ToJSONString ¶
func (o *EnvironmentVariableListOK) ToJSONString() string
type EnvironmentVariableListParams ¶
type EnvironmentVariableListParams struct { /*RetryPolicy*/ RetryPolicy *utils.Retry AuthInfoWriter runtime.ClientAuthInfoWriter Context context.Context HTTPClient *http.Client // XFlightId is an optional parameter from this SDK XFlightId *string // contains filtered or unexported fields }
EnvironmentVariableListParams contains all the parameters to send to the API endpoint for the environment variable list operation typically these are written to a http.Request
func NewEnvironmentVariableListParams ¶
func NewEnvironmentVariableListParams() *EnvironmentVariableListParams
NewEnvironmentVariableListParams creates a new EnvironmentVariableListParams object with the default values initialized.
func NewEnvironmentVariableListParamsWithContext ¶
func NewEnvironmentVariableListParamsWithContext(ctx context.Context) *EnvironmentVariableListParams
NewEnvironmentVariableListParamsWithContext creates a new EnvironmentVariableListParams object with the default values initialized, and the ability to set a context for a request
func NewEnvironmentVariableListParamsWithHTTPClient ¶
func NewEnvironmentVariableListParamsWithHTTPClient(client *http.Client) *EnvironmentVariableListParams
NewEnvironmentVariableListParamsWithHTTPClient creates a new EnvironmentVariableListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewEnvironmentVariableListParamsWithTimeout ¶
func NewEnvironmentVariableListParamsWithTimeout(timeout time.Duration) *EnvironmentVariableListParams
NewEnvironmentVariableListParamsWithTimeout creates a new EnvironmentVariableListParams object with the default values initialized, and the ability to set a timeout on a request
func (*EnvironmentVariableListParams) SetAuthInfoWriter ¶
func (o *EnvironmentVariableListParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)
SetAuthInfoWriter adds the authInfoWriter to the environment variable list params
func (*EnvironmentVariableListParams) SetContext ¶
func (o *EnvironmentVariableListParams) SetContext(ctx context.Context)
SetContext adds the context to the environment variable list params
func (*EnvironmentVariableListParams) SetFlightId ¶ added in v0.63.0
func (o *EnvironmentVariableListParams) SetFlightId(flightId string)
SetFlightId adds the flightId as the header value for this specific endpoint
func (*EnvironmentVariableListParams) SetHTTPClient ¶
func (o *EnvironmentVariableListParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the environment variable list params
func (*EnvironmentVariableListParams) SetHTTPClientTransport ¶
func (o *EnvironmentVariableListParams) SetHTTPClientTransport(roundTripper http.RoundTripper)
SetHTTPClient adds the HTTPClient Transport to the environment variable list params
func (*EnvironmentVariableListParams) SetTimeout ¶
func (o *EnvironmentVariableListParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the environment variable list params
func (*EnvironmentVariableListParams) WithContext ¶
func (o *EnvironmentVariableListParams) WithContext(ctx context.Context) *EnvironmentVariableListParams
WithContext adds the context to the environment variable list params
func (*EnvironmentVariableListParams) WithHTTPClient ¶
func (o *EnvironmentVariableListParams) WithHTTPClient(client *http.Client) *EnvironmentVariableListParams
WithHTTPClient adds the HTTPClient to the environment variable list params
func (*EnvironmentVariableListParams) WithTimeout ¶
func (o *EnvironmentVariableListParams) WithTimeout(timeout time.Duration) *EnvironmentVariableListParams
WithTimeout adds the timeout to the environment variable list params
func (*EnvironmentVariableListParams) WriteToRequest ¶
func (o *EnvironmentVariableListParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type EnvironmentVariableListReader ¶
type EnvironmentVariableListReader struct {
// contains filtered or unexported fields
}
EnvironmentVariableListReader is a Reader for the EnvironmentVariableList structure.
func (*EnvironmentVariableListReader) ReadResponse ¶
func (o *EnvironmentVariableListReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type EnvironmentVariableListUnauthorized ¶
type EnvironmentVariableListUnauthorized struct {
}EnvironmentVariableListUnauthorized handles this case with default header values.
Unauthorized
func NewEnvironmentVariableListUnauthorized ¶
func NewEnvironmentVariableListUnauthorized() *EnvironmentVariableListUnauthorized
NewEnvironmentVariableListUnauthorized creates a EnvironmentVariableListUnauthorized with default headers values
func (*EnvironmentVariableListUnauthorized) Error ¶
func (o *EnvironmentVariableListUnauthorized) Error() string
func (*EnvironmentVariableListUnauthorized) GetPayload ¶
func (o *EnvironmentVariableListUnauthorized) GetPayload() *match2clientmodels.ResponseError
func (*EnvironmentVariableListUnauthorized) ToJSONString ¶
func (o *EnvironmentVariableListUnauthorized) ToJSONString() string