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
constructor(authentication: Output<Either<ApiKeyAuthenticationArgs, RolloutIdentityAuthenticationArgs>>, method: Output<RestRequestMethod>, uri: Output<String>)

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.

Functions

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