RestRequestArgs

data class RestRequestArgs(val authentication: Output<Either<ApiKeyAuthenticationArgs, RolloutIdentityAuthenticationArgs>>, val method: Output<RestRequestMethod>, val uri: Output<String>) : ConvertibleToJava<RestRequestArgs>

The properties that make up a REST request

Constructors

Link copied to clipboard
fun RestRequestArgs(authentication: Output<Either<ApiKeyAuthenticationArgs, RolloutIdentityAuthenticationArgs>>, method: Output<RestRequestMethod>, uri: Output<String>)

Functions

Link copied to clipboard
open override fun toJava(): RestRequestArgs

Properties

Link copied to clipboard

The authentication information required in the request to the health provider.

Link copied to clipboard

The HTTP method to use for the request.

Link copied to clipboard
val uri: Output<String>

The HTTP URI to use for the request.