environment_variable_groups

package
v0.0.0-...-7977c27 Latest Latest
Warning

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

Go to latest
Published: Mar 18, 2021 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const GettingContentsOfRunningEnvironmentVariableGroupOKCode int = 200

GettingContentsOfRunningEnvironmentVariableGroupOKCode is the HTTP code returned for type GettingContentsOfRunningEnvironmentVariableGroupOK

View Source
const GettingContentsOfStagingEnvironmentVariableGroupOKCode int = 200

GettingContentsOfStagingEnvironmentVariableGroupOKCode is the HTTP code returned for type GettingContentsOfStagingEnvironmentVariableGroupOK

View Source
const UpdateContentsOfRunningEnvironmentVariableGroupOKCode int = 200

UpdateContentsOfRunningEnvironmentVariableGroupOKCode is the HTTP code returned for type UpdateContentsOfRunningEnvironmentVariableGroupOK

View Source
const UpdateContentsOfStagingEnvironmentVariableGroupOKCode int = 200

UpdateContentsOfStagingEnvironmentVariableGroupOKCode is the HTTP code returned for type UpdateContentsOfStagingEnvironmentVariableGroupOK

Variables

This section is empty.

Functions

This section is empty.

Types

type GettingContentsOfRunningEnvironmentVariableGroup

type GettingContentsOfRunningEnvironmentVariableGroup struct {
	Context *middleware.Context
	Handler GettingContentsOfRunningEnvironmentVariableGroupHandler
}

GettingContentsOfRunningEnvironmentVariableGroup swagger:route GET /config/environment_variable_groups/running environmentVariableGroups gettingContentsOfRunningEnvironmentVariableGroup

Getting the contents of the running environment variable group

curl --insecure -i %s/v2/config/environment_variable_groups/running -X GET -H 'Authorization: %s'

func NewGettingContentsOfRunningEnvironmentVariableGroup

NewGettingContentsOfRunningEnvironmentVariableGroup creates a new http.Handler for the getting contents of running environment variable group operation

func (*GettingContentsOfRunningEnvironmentVariableGroup) ServeHTTP

type GettingContentsOfRunningEnvironmentVariableGroupHandler

type GettingContentsOfRunningEnvironmentVariableGroupHandler interface {
	Handle(GettingContentsOfRunningEnvironmentVariableGroupParams) middleware.Responder
}

GettingContentsOfRunningEnvironmentVariableGroupHandler interface for that can handle valid getting contents of running environment variable group params

type GettingContentsOfRunningEnvironmentVariableGroupHandlerFunc

type GettingContentsOfRunningEnvironmentVariableGroupHandlerFunc func(GettingContentsOfRunningEnvironmentVariableGroupParams) middleware.Responder

GettingContentsOfRunningEnvironmentVariableGroupHandlerFunc turns a function with the right signature into a getting contents of running environment variable group handler

func (GettingContentsOfRunningEnvironmentVariableGroupHandlerFunc) Handle

Handle executing the request and returning a response

type GettingContentsOfRunningEnvironmentVariableGroupOK

type GettingContentsOfRunningEnvironmentVariableGroupOK struct {

	/*
	  In: Body
	*/
	Payload *models.GettingContentsOfRunningEnvironmentVariableGroupResponseResource `json:"body,omitempty"`
}

GettingContentsOfRunningEnvironmentVariableGroupOK successful response

swagger:response gettingContentsOfRunningEnvironmentVariableGroupOK

func NewGettingContentsOfRunningEnvironmentVariableGroupOK

func NewGettingContentsOfRunningEnvironmentVariableGroupOK() *GettingContentsOfRunningEnvironmentVariableGroupOK

NewGettingContentsOfRunningEnvironmentVariableGroupOK creates GettingContentsOfRunningEnvironmentVariableGroupOK with default headers values

func (*GettingContentsOfRunningEnvironmentVariableGroupOK) SetPayload

SetPayload sets the payload to the getting contents of running environment variable group o k response

func (*GettingContentsOfRunningEnvironmentVariableGroupOK) WithPayload

WithPayload adds the payload to the getting contents of running environment variable group o k response

func (*GettingContentsOfRunningEnvironmentVariableGroupOK) WriteResponse

WriteResponse to the client

type GettingContentsOfRunningEnvironmentVariableGroupParams

type GettingContentsOfRunningEnvironmentVariableGroupParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`
}

GettingContentsOfRunningEnvironmentVariableGroupParams contains all the bound params for the getting contents of running environment variable group operation typically these are obtained from a http.Request

swagger:parameters gettingContentsOfRunningEnvironmentVariableGroup

func NewGettingContentsOfRunningEnvironmentVariableGroupParams

func NewGettingContentsOfRunningEnvironmentVariableGroupParams() GettingContentsOfRunningEnvironmentVariableGroupParams

NewGettingContentsOfRunningEnvironmentVariableGroupParams creates a new GettingContentsOfRunningEnvironmentVariableGroupParams object no default values defined in spec.

func (*GettingContentsOfRunningEnvironmentVariableGroupParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewGettingContentsOfRunningEnvironmentVariableGroupParams() beforehand.

type GettingContentsOfRunningEnvironmentVariableGroupURL

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

GettingContentsOfRunningEnvironmentVariableGroupURL generates an URL for the getting contents of running environment variable group operation

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) Build

Build a url path and query string

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) BuildFull

BuildFull builds a full url with scheme, host, path and query string

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) Must

Must is a helper function to panic when the url builder returns an error

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) SetBasePath

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) String

String returns the string representation of the path with query string

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) StringFull

StringFull returns the string representation of a complete url

func (*GettingContentsOfRunningEnvironmentVariableGroupURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type GettingContentsOfStagingEnvironmentVariableGroup

type GettingContentsOfStagingEnvironmentVariableGroup struct {
	Context *middleware.Context
	Handler GettingContentsOfStagingEnvironmentVariableGroupHandler
}

GettingContentsOfStagingEnvironmentVariableGroup swagger:route GET /config/environment_variable_groups/staging environmentVariableGroups gettingContentsOfStagingEnvironmentVariableGroup

Getting the contents of the staging environment variable group

curl --insecure -i %s/v2/config/environment_variable_groups/staging -X GET -H 'Authorization: %s'

func NewGettingContentsOfStagingEnvironmentVariableGroup

NewGettingContentsOfStagingEnvironmentVariableGroup creates a new http.Handler for the getting contents of staging environment variable group operation

func (*GettingContentsOfStagingEnvironmentVariableGroup) ServeHTTP

type GettingContentsOfStagingEnvironmentVariableGroupHandler

type GettingContentsOfStagingEnvironmentVariableGroupHandler interface {
	Handle(GettingContentsOfStagingEnvironmentVariableGroupParams) middleware.Responder
}

GettingContentsOfStagingEnvironmentVariableGroupHandler interface for that can handle valid getting contents of staging environment variable group params

type GettingContentsOfStagingEnvironmentVariableGroupHandlerFunc

type GettingContentsOfStagingEnvironmentVariableGroupHandlerFunc func(GettingContentsOfStagingEnvironmentVariableGroupParams) middleware.Responder

GettingContentsOfStagingEnvironmentVariableGroupHandlerFunc turns a function with the right signature into a getting contents of staging environment variable group handler

func (GettingContentsOfStagingEnvironmentVariableGroupHandlerFunc) Handle

Handle executing the request and returning a response

type GettingContentsOfStagingEnvironmentVariableGroupOK

type GettingContentsOfStagingEnvironmentVariableGroupOK struct {

	/*
	  In: Body
	*/
	Payload *models.GettingContentsOfStagingEnvironmentVariableGroupResponseResource `json:"body,omitempty"`
}

GettingContentsOfStagingEnvironmentVariableGroupOK successful response

swagger:response gettingContentsOfStagingEnvironmentVariableGroupOK

func NewGettingContentsOfStagingEnvironmentVariableGroupOK

func NewGettingContentsOfStagingEnvironmentVariableGroupOK() *GettingContentsOfStagingEnvironmentVariableGroupOK

NewGettingContentsOfStagingEnvironmentVariableGroupOK creates GettingContentsOfStagingEnvironmentVariableGroupOK with default headers values

func (*GettingContentsOfStagingEnvironmentVariableGroupOK) SetPayload

SetPayload sets the payload to the getting contents of staging environment variable group o k response

func (*GettingContentsOfStagingEnvironmentVariableGroupOK) WithPayload

WithPayload adds the payload to the getting contents of staging environment variable group o k response

func (*GettingContentsOfStagingEnvironmentVariableGroupOK) WriteResponse

WriteResponse to the client

type GettingContentsOfStagingEnvironmentVariableGroupParams

type GettingContentsOfStagingEnvironmentVariableGroupParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`
}

GettingContentsOfStagingEnvironmentVariableGroupParams contains all the bound params for the getting contents of staging environment variable group operation typically these are obtained from a http.Request

swagger:parameters gettingContentsOfStagingEnvironmentVariableGroup

func NewGettingContentsOfStagingEnvironmentVariableGroupParams

func NewGettingContentsOfStagingEnvironmentVariableGroupParams() GettingContentsOfStagingEnvironmentVariableGroupParams

NewGettingContentsOfStagingEnvironmentVariableGroupParams creates a new GettingContentsOfStagingEnvironmentVariableGroupParams object no default values defined in spec.

func (*GettingContentsOfStagingEnvironmentVariableGroupParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewGettingContentsOfStagingEnvironmentVariableGroupParams() beforehand.

type GettingContentsOfStagingEnvironmentVariableGroupURL

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

GettingContentsOfStagingEnvironmentVariableGroupURL generates an URL for the getting contents of staging environment variable group operation

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) Build

Build a url path and query string

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) BuildFull

BuildFull builds a full url with scheme, host, path and query string

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) Must

Must is a helper function to panic when the url builder returns an error

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) SetBasePath

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) String

String returns the string representation of the path with query string

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) StringFull

StringFull returns the string representation of a complete url

func (*GettingContentsOfStagingEnvironmentVariableGroupURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type UpdateContentsOfRunningEnvironmentVariableGroup

type UpdateContentsOfRunningEnvironmentVariableGroup struct {
	Context *middleware.Context
	Handler UpdateContentsOfRunningEnvironmentVariableGroupHandler
}

UpdateContentsOfRunningEnvironmentVariableGroup swagger:route PUT /config/environment_variable_groups/running environmentVariableGroups updateContentsOfRunningEnvironmentVariableGroup

Updating the contents of the running environment variable group

curl --insecure -i %s/v2/config/environment_variable_groups/running -X PUT -H 'Authorization: %s' -d '%s'

func NewUpdateContentsOfRunningEnvironmentVariableGroup

NewUpdateContentsOfRunningEnvironmentVariableGroup creates a new http.Handler for the update contents of running environment variable group operation

func (*UpdateContentsOfRunningEnvironmentVariableGroup) ServeHTTP

type UpdateContentsOfRunningEnvironmentVariableGroupHandler

type UpdateContentsOfRunningEnvironmentVariableGroupHandler interface {
	Handle(UpdateContentsOfRunningEnvironmentVariableGroupParams) middleware.Responder
}

UpdateContentsOfRunningEnvironmentVariableGroupHandler interface for that can handle valid update contents of running environment variable group params

type UpdateContentsOfRunningEnvironmentVariableGroupHandlerFunc

type UpdateContentsOfRunningEnvironmentVariableGroupHandlerFunc func(UpdateContentsOfRunningEnvironmentVariableGroupParams) middleware.Responder

UpdateContentsOfRunningEnvironmentVariableGroupHandlerFunc turns a function with the right signature into a update contents of running environment variable group handler

func (UpdateContentsOfRunningEnvironmentVariableGroupHandlerFunc) Handle

Handle executing the request and returning a response

type UpdateContentsOfRunningEnvironmentVariableGroupOK

type UpdateContentsOfRunningEnvironmentVariableGroupOK struct {

	/*
	  In: Body
	*/
	Payload *models.UpdateContentsOfRunningEnvironmentVariableGroupResponseResource `json:"body,omitempty"`
}

UpdateContentsOfRunningEnvironmentVariableGroupOK successful response

swagger:response updateContentsOfRunningEnvironmentVariableGroupOK

func NewUpdateContentsOfRunningEnvironmentVariableGroupOK

func NewUpdateContentsOfRunningEnvironmentVariableGroupOK() *UpdateContentsOfRunningEnvironmentVariableGroupOK

NewUpdateContentsOfRunningEnvironmentVariableGroupOK creates UpdateContentsOfRunningEnvironmentVariableGroupOK with default headers values

func (*UpdateContentsOfRunningEnvironmentVariableGroupOK) SetPayload

SetPayload sets the payload to the update contents of running environment variable group o k response

func (*UpdateContentsOfRunningEnvironmentVariableGroupOK) WithPayload

WithPayload adds the payload to the update contents of running environment variable group o k response

func (*UpdateContentsOfRunningEnvironmentVariableGroupOK) WriteResponse

WriteResponse to the client

type UpdateContentsOfRunningEnvironmentVariableGroupParams

type UpdateContentsOfRunningEnvironmentVariableGroupParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*An object instance that is serialized and sent as the request body.
	  Required: true
	  In: body
	*/
	Value *models.UpdateContentsOfRunningEnvironmentVariableGroupRequest
}

UpdateContentsOfRunningEnvironmentVariableGroupParams contains all the bound params for the update contents of running environment variable group operation typically these are obtained from a http.Request

swagger:parameters updateContentsOfRunningEnvironmentVariableGroup

func NewUpdateContentsOfRunningEnvironmentVariableGroupParams

func NewUpdateContentsOfRunningEnvironmentVariableGroupParams() UpdateContentsOfRunningEnvironmentVariableGroupParams

NewUpdateContentsOfRunningEnvironmentVariableGroupParams creates a new UpdateContentsOfRunningEnvironmentVariableGroupParams object no default values defined in spec.

func (*UpdateContentsOfRunningEnvironmentVariableGroupParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewUpdateContentsOfRunningEnvironmentVariableGroupParams() beforehand.

type UpdateContentsOfRunningEnvironmentVariableGroupURL

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

UpdateContentsOfRunningEnvironmentVariableGroupURL generates an URL for the update contents of running environment variable group operation

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) Build

Build a url path and query string

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) BuildFull

BuildFull builds a full url with scheme, host, path and query string

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) Must

Must is a helper function to panic when the url builder returns an error

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) SetBasePath

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) String

String returns the string representation of the path with query string

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) StringFull

StringFull returns the string representation of a complete url

func (*UpdateContentsOfRunningEnvironmentVariableGroupURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type UpdateContentsOfStagingEnvironmentVariableGroup

type UpdateContentsOfStagingEnvironmentVariableGroup struct {
	Context *middleware.Context
	Handler UpdateContentsOfStagingEnvironmentVariableGroupHandler
}

UpdateContentsOfStagingEnvironmentVariableGroup swagger:route PUT /config/environment_variable_groups/staging environmentVariableGroups updateContentsOfStagingEnvironmentVariableGroup

Updating the contents of the staging environment variable group

curl --insecure -i %s/v2/config/environment_variable_groups/staging -X PUT -H 'Authorization: %s' -d '%s'

func NewUpdateContentsOfStagingEnvironmentVariableGroup

NewUpdateContentsOfStagingEnvironmentVariableGroup creates a new http.Handler for the update contents of staging environment variable group operation

func (*UpdateContentsOfStagingEnvironmentVariableGroup) ServeHTTP

type UpdateContentsOfStagingEnvironmentVariableGroupHandler

type UpdateContentsOfStagingEnvironmentVariableGroupHandler interface {
	Handle(UpdateContentsOfStagingEnvironmentVariableGroupParams) middleware.Responder
}

UpdateContentsOfStagingEnvironmentVariableGroupHandler interface for that can handle valid update contents of staging environment variable group params

type UpdateContentsOfStagingEnvironmentVariableGroupHandlerFunc

type UpdateContentsOfStagingEnvironmentVariableGroupHandlerFunc func(UpdateContentsOfStagingEnvironmentVariableGroupParams) middleware.Responder

UpdateContentsOfStagingEnvironmentVariableGroupHandlerFunc turns a function with the right signature into a update contents of staging environment variable group handler

func (UpdateContentsOfStagingEnvironmentVariableGroupHandlerFunc) Handle

Handle executing the request and returning a response

type UpdateContentsOfStagingEnvironmentVariableGroupOK

type UpdateContentsOfStagingEnvironmentVariableGroupOK struct {

	/*
	  In: Body
	*/
	Payload *models.UpdateContentsOfStagingEnvironmentVariableGroupResponseResource `json:"body,omitempty"`
}

UpdateContentsOfStagingEnvironmentVariableGroupOK successful response

swagger:response updateContentsOfStagingEnvironmentVariableGroupOK

func NewUpdateContentsOfStagingEnvironmentVariableGroupOK

func NewUpdateContentsOfStagingEnvironmentVariableGroupOK() *UpdateContentsOfStagingEnvironmentVariableGroupOK

NewUpdateContentsOfStagingEnvironmentVariableGroupOK creates UpdateContentsOfStagingEnvironmentVariableGroupOK with default headers values

func (*UpdateContentsOfStagingEnvironmentVariableGroupOK) SetPayload

SetPayload sets the payload to the update contents of staging environment variable group o k response

func (*UpdateContentsOfStagingEnvironmentVariableGroupOK) WithPayload

WithPayload adds the payload to the update contents of staging environment variable group o k response

func (*UpdateContentsOfStagingEnvironmentVariableGroupOK) WriteResponse

WriteResponse to the client

type UpdateContentsOfStagingEnvironmentVariableGroupParams

type UpdateContentsOfStagingEnvironmentVariableGroupParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*An object instance that is serialized and sent as the request body.
	  Required: true
	  In: body
	*/
	Value *models.UpdateContentsOfStagingEnvironmentVariableGroupRequest
}

UpdateContentsOfStagingEnvironmentVariableGroupParams contains all the bound params for the update contents of staging environment variable group operation typically these are obtained from a http.Request

swagger:parameters updateContentsOfStagingEnvironmentVariableGroup

func NewUpdateContentsOfStagingEnvironmentVariableGroupParams

func NewUpdateContentsOfStagingEnvironmentVariableGroupParams() UpdateContentsOfStagingEnvironmentVariableGroupParams

NewUpdateContentsOfStagingEnvironmentVariableGroupParams creates a new UpdateContentsOfStagingEnvironmentVariableGroupParams object no default values defined in spec.

func (*UpdateContentsOfStagingEnvironmentVariableGroupParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewUpdateContentsOfStagingEnvironmentVariableGroupParams() beforehand.

type UpdateContentsOfStagingEnvironmentVariableGroupURL

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

UpdateContentsOfStagingEnvironmentVariableGroupURL generates an URL for the update contents of staging environment variable group operation

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) Build

Build a url path and query string

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) BuildFull

BuildFull builds a full url with scheme, host, path and query string

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) Must

Must is a helper function to panic when the url builder returns an error

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) SetBasePath

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) String

String returns the string representation of the path with query string

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) StringFull

StringFull returns the string representation of a complete url

func (*UpdateContentsOfStagingEnvironmentVariableGroupURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

Jump to

Keyboard shortcuts

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