Class CreateApiKeyRequest
- java.lang.Object
-
- org.elasticsearch.client.security.CreateApiKeyRequest
-
- All Implemented Interfaces:
Validatable,ToXContent,ToXContentObject
public final class CreateApiKeyRequest extends Object implements Validatable, ToXContentObject
Request to create API key
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Fields inherited from interface org.elasticsearch.client.Validatable
EMPTY
-
-
Constructor Summary
Constructors Constructor Description CreateApiKeyRequest(String name, List<Role> roles, TimeValue expiration, RefreshPolicy refreshPolicy)Create API Key request constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)TimeValuegetExpiration()StringgetName()RefreshPolicygetRefreshPolicy()List<Role>getRoles()inthashCode()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Methods inherited from interface org.elasticsearch.client.Validatable
validate
-
-
-
-
Constructor Detail
-
CreateApiKeyRequest
public CreateApiKeyRequest(@Nullable String name, List<Role> roles, @Nullable TimeValue expiration, @Nullable RefreshPolicy refreshPolicy)
Create API Key request constructor- Parameters:
name- name for the API keyroles- list ofRolesexpiration- to specify expiration for the API key
-
-
Method Detail
-
getName
public String getName()
-
getExpiration
public TimeValue getExpiration()
-
getRefreshPolicy
public RefreshPolicy getRefreshPolicy()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
-