Class DeleteRole.Request
- java.lang.Object
-
- io.helidon.integrations.common.rest.ApiJsonBuilder<T>
-
- io.helidon.integrations.common.rest.ApiJsonRequest<T>
-
- io.helidon.integrations.vault.VaultRequest<DeleteRole.Request>
-
- io.helidon.integrations.vault.auths.k8s.DeleteRole.Request
-
- All Implemented Interfaces:
ApiRequest<DeleteRole.Request>
- Enclosing class:
- DeleteRole
public static class DeleteRole.Request extends VaultRequest<DeleteRole.Request>
Request object. Can be configured with additional headers, query parameters etc.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeleteRole.Request
builder()
Fluent API builder for configuring a request.static DeleteRole.Request
create(String roleName)
Create a new request with role name.DeleteRole.Request
roleName(String roleName)
Role name to delete.-
Methods inherited from class io.helidon.integrations.vault.VaultRequest
add, addCommaDelimitedArray, addToCommaDelimitedArray, durationToTtl, preBuild
-
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonRequest
addHeader, addQueryParam, headers, queryParams, requestId, requestId, requestMediaType, requestMediaType, responseMediaType, responseMediaType
-
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonBuilder
add, add, add, add, add, add, addBase64, addToArray, addToArray, addToArray, addToArray, addToArray, addToArray, addToObject, addToObject, addToObject, addToObject, addToObject, emptyArray, me, postBuild, toJson
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.helidon.integrations.common.rest.ApiRequest
toJson
-
-
-
-
Method Detail
-
builder
public static DeleteRole.Request builder()
Fluent API builder for configuring a request. The request builder is passed as is, without a build method. The equivalent of a build method isApiJsonBuilder.toJson(javax.json.JsonBuilderFactory)
used by theRestApi
.- Returns:
- new request builder
-
create
public static DeleteRole.Request create(String roleName)
Create a new request with role name.- Parameters:
roleName
- role name- Returns:
- a new request
- See Also:
roleName(String)
-
roleName
public DeleteRole.Request roleName(String roleName)
Role name to delete.- Parameters:
roleName
- name of the role- Returns:
- updated request
-
-