Documentation ¶
Overview ¶
Updates attributes of an existing API key.
Index ¶
- Variables
- type NewUpdateApiKey
- type Request
- type Response
- type UpdateApiKey
- func (r UpdateApiKey) Do(ctx context.Context) (*Response, error)
- func (r *UpdateApiKey) Header(key, value string) *UpdateApiKey
- func (r *UpdateApiKey) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *UpdateApiKey) Id(v string) *UpdateApiKey
- func (r UpdateApiKey) Perform(ctx context.Context) (*http.Response, error)
- func (r *UpdateApiKey) Raw(raw io.Reader) *UpdateApiKey
- func (r *UpdateApiKey) Request(req *Request) *UpdateApiKey
Constants ¶
This section is empty.
Variables ¶
var ErrBuildPath = errors.New("cannot build path, check for missing path parameters")
ErrBuildPath is returned in case of missing parameters within the build of the request.
Functions ¶
This section is empty.
Types ¶
type NewUpdateApiKey ¶
type NewUpdateApiKey func(id string) *UpdateApiKey
NewUpdateApiKey type alias for index.
func NewUpdateApiKeyFunc ¶
func NewUpdateApiKeyFunc(tp elastictransport.Interface) NewUpdateApiKey
NewUpdateApiKeyFunc returns a new instance of UpdateApiKey with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type Request ¶
type Request struct { // Metadata Arbitrary metadata that you want to associate with the API key. It supports // nested data structure. Within the metadata object, keys beginning with _ are // reserved for system usage. Metadata map[string]json.RawMessage `json:"metadata,omitempty"` // RoleDescriptors An array of role descriptors for this API key. This parameter is optional. // When it is not specified or is an empty array, then the API key will have a // point in time snapshot of permissions of the authenticated user. If you // supply role descriptors then the resultant permissions would be an // intersection of API keys permissions and authenticated user’s permissions // thereby limiting the access scope for API keys. The structure of role // descriptor is the same as the request for create role API. For more details, // see create or update roles API. RoleDescriptors map[string]types.RoleDescriptor `json:"role_descriptors,omitempty"` }
Request holds the request body struct for the package updateapikey
type UpdateApiKey ¶
type UpdateApiKey struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *UpdateApiKey
Updates attributes of an existing API key.
https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-update-api-key.html
func (UpdateApiKey) Do ¶
func (r UpdateApiKey) Do(ctx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a updateapikey.Response
func (*UpdateApiKey) Header ¶
func (r *UpdateApiKey) Header(key, value string) *UpdateApiKey
Header set a key, value pair in the UpdateApiKey headers map.
func (*UpdateApiKey) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*UpdateApiKey) Id ¶
func (r *UpdateApiKey) Id(v string) *UpdateApiKey
Id The ID of the API key to update. API Name: id
func (UpdateApiKey) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*UpdateApiKey) Raw ¶
func (r *UpdateApiKey) Raw(raw io.Reader) *UpdateApiKey
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
func (*UpdateApiKey) Request ¶
func (r *UpdateApiKey) Request(req *Request) *UpdateApiKey
Request allows to set the request property with the appropriate payload.