com.pulumi.azurenative.apimanagement.inputs.TokenBodyParameterContractArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.apimanagement.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* OAuth acquire token request body parameter (www-url-form-encoded).
*
*/
public final class TokenBodyParameterContractArgs extends com.pulumi.resources.ResourceArgs {
public static final TokenBodyParameterContractArgs Empty = new TokenBodyParameterContractArgs();
/**
* body parameter name.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return body parameter name.
*
*/
public Output name() {
return this.name;
}
/**
* body parameter value.
*
*/
@Import(name="value", required=true)
private Output value;
/**
* @return body parameter value.
*
*/
public Output value() {
return this.value;
}
private TokenBodyParameterContractArgs() {}
private TokenBodyParameterContractArgs(TokenBodyParameterContractArgs $) {
this.name = $.name;
this.value = $.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TokenBodyParameterContractArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private TokenBodyParameterContractArgs $;
public Builder() {
$ = new TokenBodyParameterContractArgs();
}
public Builder(TokenBodyParameterContractArgs defaults) {
$ = new TokenBodyParameterContractArgs(Objects.requireNonNull(defaults));
}
/**
* @param name body parameter name.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name body parameter name.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param value body parameter value.
*
* @return builder
*
*/
public Builder value(Output value) {
$.value = value;
return this;
}
/**
* @param value body parameter value.
*
* @return builder
*
*/
public Builder value(String value) {
return value(Output.of(value));
}
public TokenBodyParameterContractArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("TokenBodyParameterContractArgs", "name");
}
if ($.value == null) {
throw new MissingRequiredPropertyException("TokenBodyParameterContractArgs", "value");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy