com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akamai Show documentation
Show all versions of akamai Show documentation
A Pulumi package for creating and managing akamai cloud resources.
The newest version!
// *** 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.akamai.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations extends com.pulumi.resources.InvokeArgs {
public static final GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations Empty = new GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations();
/**
* Allows you to specify custom JWT server connection values.
*
*/
@Import(name="customValues")
private @Nullable Boolean customValues;
/**
* @return Allows you to specify custom JWT server connection values.
*
*/
public Optional customValues() {
return Optional.ofNullable(this.customValues);
}
/**
* Enables the default JWT server and sets the authentication endpoint to a default path.
*
*/
@Import(name="enabled")
private @Nullable Boolean enabled;
/**
* @return Enables the default JWT server and sets the authentication endpoint to a default path.
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
/**
* Specifies the JWT server's hostname.
*
*/
@Import(name="hostname")
private @Nullable String hostname;
/**
* @return Specifies the JWT server's hostname.
*
*/
public Optional hostname() {
return Optional.ofNullable(this.hostname);
}
/**
* Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
*
*/
@Import(name="locked")
private @Nullable Boolean locked;
/**
* @return Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
*
*/
public Optional locked() {
return Optional.ofNullable(this.locked);
}
/**
* Specifies the path to your JWT server's authentication endpoint. This lets you generate JWTs to sign your requests.
*
*/
@Import(name="path")
private @Nullable String path;
/**
* @return Specifies the path to your JWT server's authentication endpoint. This lets you generate JWTs to sign your requests.
*
*/
public Optional path() {
return Optional.ofNullable(this.path);
}
/**
* This option is for internal usage only.
*
*/
@Import(name="templateUuid")
private @Nullable String templateUuid;
/**
* @return This option is for internal usage only.
*
*/
public Optional templateUuid() {
return Optional.ofNullable(this.templateUuid);
}
/**
* A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
*
*/
@Import(name="uuid")
private @Nullable String uuid;
/**
* @return A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
*
*/
public Optional uuid() {
return Optional.ofNullable(this.uuid);
}
private GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations() {}
private GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations(GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations $) {
this.customValues = $.customValues;
this.enabled = $.enabled;
this.hostname = $.hostname;
this.locked = $.locked;
this.path = $.path;
this.templateUuid = $.templateUuid;
this.uuid = $.uuid;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations $;
public Builder() {
$ = new GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations();
}
public Builder(GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations defaults) {
$ = new GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations(Objects.requireNonNull(defaults));
}
/**
* @param customValues Allows you to specify custom JWT server connection values.
*
* @return builder
*
*/
public Builder customValues(@Nullable Boolean customValues) {
$.customValues = customValues;
return this;
}
/**
* @param enabled Enables the default JWT server and sets the authentication endpoint to a default path.
*
* @return builder
*
*/
public Builder enabled(@Nullable Boolean enabled) {
$.enabled = enabled;
return this;
}
/**
* @param hostname Specifies the JWT server's hostname.
*
* @return builder
*
*/
public Builder hostname(@Nullable String hostname) {
$.hostname = hostname;
return this;
}
/**
* @param locked Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
*
* @return builder
*
*/
public Builder locked(@Nullable Boolean locked) {
$.locked = locked;
return this;
}
/**
* @param path Specifies the path to your JWT server's authentication endpoint. This lets you generate JWTs to sign your requests.
*
* @return builder
*
*/
public Builder path(@Nullable String path) {
$.path = path;
return this;
}
/**
* @param templateUuid This option is for internal usage only.
*
* @return builder
*
*/
public Builder templateUuid(@Nullable String templateUuid) {
$.templateUuid = templateUuid;
return this;
}
/**
* @param uuid A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
*
* @return builder
*
*/
public Builder uuid(@Nullable String uuid) {
$.uuid = uuid;
return this;
}
public GetPropertyRulesBuilderRulesV20240109BehaviorDcpDevRelations build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy