Documentation ¶
Overview ¶
Adds and updates roles in the native realm.
Index ¶
- Variables
- type NewPutRole
- type PutRole
- func (r *PutRole) Applications(applications ...types.ApplicationPrivileges) *PutRole
- func (r *PutRole) Cluster(clusters ...clusterprivilege.ClusterPrivilege) *PutRole
- func (r PutRole) Do(providedCtx context.Context) (*Response, error)
- func (r *PutRole) Global(global map[string]json.RawMessage) *PutRole
- func (r *PutRole) Header(key, value string) *PutRole
- func (r *PutRole) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *PutRole) Indices(indices ...types.IndicesPrivileges) *PutRole
- func (r *PutRole) Metadata(metadata types.Metadata) *PutRole
- func (r PutRole) Perform(providedCtx context.Context) (*http.Response, error)
- func (r *PutRole) Raw(raw io.Reader) *PutRole
- func (r *PutRole) Refresh(refresh refresh.Refresh) *PutRole
- func (r *PutRole) Request(req *Request) *PutRole
- func (r *PutRole) RunAs(runas ...string) *PutRole
- func (r *PutRole) TransientMetadata(transientmetadata map[string]json.RawMessage) *PutRole
- type Request
- type Response
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 NewPutRole ¶
NewPutRole type alias for index.
func NewPutRoleFunc ¶
func NewPutRoleFunc(tp elastictransport.Interface) NewPutRole
NewPutRoleFunc returns a new instance of PutRole with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type PutRole ¶
type PutRole struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *PutRole
Adds and updates roles in the native realm.
https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-put-role.html
func (*PutRole) Applications ¶
func (r *PutRole) Applications(applications ...types.ApplicationPrivileges) *PutRole
Applications A list of application privilege entries. API name: applications
func (*PutRole) Cluster ¶
func (r *PutRole) Cluster(clusters ...clusterprivilege.ClusterPrivilege) *PutRole
Cluster A list of cluster privileges. These privileges define the cluster-level actions for users with this role. API name: cluster
func (PutRole) Do ¶
Do runs the request through the transport, handle the response and returns a putrole.Response
func (*PutRole) Global ¶
func (r *PutRole) Global(global map[string]json.RawMessage) *PutRole
Global An object defining global privileges. A global privilege is a form of cluster privilege that is request-aware. Support for global privileges is currently limited to the management of application privileges. API name: global
func (*PutRole) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*PutRole) Indices ¶
func (r *PutRole) Indices(indices ...types.IndicesPrivileges) *PutRole
Indices A list of indices permissions entries. API name: indices
func (*PutRole) Metadata ¶
Metadata Optional metadata. Within the metadata object, keys that begin with an underscore (`_`) are reserved for system use. API name: metadata
func (PutRole) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*PutRole) Raw ¶
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
func (*PutRole) Refresh ¶
Refresh If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. API name: refresh
func (*PutRole) RunAs ¶
RunAs A list of users that the owners of this role can impersonate. API name: run_as
func (*PutRole) TransientMetadata ¶
func (r *PutRole) TransientMetadata(transientmetadata map[string]json.RawMessage) *PutRole
TransientMetadata Indicates roles that might be incompatible with the current cluster license, specifically roles with document and field level security. When the cluster license doesn’t allow certain features for a given role, this parameter is updated dynamically to list the incompatible features. If `enabled` is `false`, the role is ignored, but is still listed in the response from the authenticate API. API name: transient_metadata
type Request ¶
type Request struct { // Applications A list of application privilege entries. Applications []types.ApplicationPrivileges `json:"applications,omitempty"` // Cluster A list of cluster privileges. These privileges define the cluster-level // actions for users with this role. Cluster []clusterprivilege.ClusterPrivilege `json:"cluster,omitempty"` // Global An object defining global privileges. A global privilege is a form of cluster // privilege that is request-aware. Support for global privileges is currently // limited to the management of application privileges. Global map[string]json.RawMessage `json:"global,omitempty"` // Indices A list of indices permissions entries. Indices []types.IndicesPrivileges `json:"indices,omitempty"` // Metadata Optional metadata. Within the metadata object, keys that begin with an // underscore (`_`) are reserved for system use. Metadata types.Metadata `json:"metadata,omitempty"` // RunAs A list of users that the owners of this role can impersonate. RunAs []string `json:"run_as,omitempty"` // TransientMetadata Indicates roles that might be incompatible with the current cluster license, // specifically roles with document and field level security. When the cluster // license doesn’t allow certain features for a given role, this parameter is // updated dynamically to list the incompatible features. If `enabled` is // `false`, the role is ignored, but is still listed in the response from the // authenticate API. TransientMetadata map[string]json.RawMessage `json:"transient_metadata,omitempty"` }
Request holds the request body struct for the package putrole
func (*Request) UnmarshalJSON ¶
type Response ¶
type Response struct {
Role types.CreatedStatus `json:"role"`
}
Response holds the response body struct for the package putrole