com.pulumi.akamai.outputs.GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd 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.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd {
/**
* @return Optimize based on the total size of the content library delivered.
*
*/
private @Nullable String catalogSize;
/**
* @return Optimize based on the type of content.
*
*/
private @Nullable String contentType;
/**
* @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.
*
*/
private @Nullable Boolean locked;
/**
* @return Optimize based on the size of the object retrieved from the origin.
*
*/
private @Nullable String objectSize;
/**
* @return Optimizes the delivery throughput and download times for large files.
*
*/
private @Nullable Boolean optimizeOption;
/**
* @return Optimize based on the content's expected popularity.
*
*/
private @Nullable String popularityDistribution;
/**
* @return This option is for internal usage only.
*
*/
private @Nullable String templateUuid;
/**
* @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.
*
*/
private @Nullable String uuid;
private GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd() {}
/**
* @return Optimize based on the total size of the content library delivered.
*
*/
public Optional catalogSize() {
return Optional.ofNullable(this.catalogSize);
}
/**
* @return Optimize based on the type of content.
*
*/
public Optional contentType() {
return Optional.ofNullable(this.contentType);
}
/**
* @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);
}
/**
* @return Optimize based on the size of the object retrieved from the origin.
*
*/
public Optional objectSize() {
return Optional.ofNullable(this.objectSize);
}
/**
* @return Optimizes the delivery throughput and download times for large files.
*
*/
public Optional optimizeOption() {
return Optional.ofNullable(this.optimizeOption);
}
/**
* @return Optimize based on the content's expected popularity.
*
*/
public Optional popularityDistribution() {
return Optional.ofNullable(this.popularityDistribution);
}
/**
* @return This option is for internal usage only.
*
*/
public Optional templateUuid() {
return Optional.ofNullable(this.templateUuid);
}
/**
* @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);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String catalogSize;
private @Nullable String contentType;
private @Nullable Boolean locked;
private @Nullable String objectSize;
private @Nullable Boolean optimizeOption;
private @Nullable String popularityDistribution;
private @Nullable String templateUuid;
private @Nullable String uuid;
public Builder() {}
public Builder(GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd defaults) {
Objects.requireNonNull(defaults);
this.catalogSize = defaults.catalogSize;
this.contentType = defaults.contentType;
this.locked = defaults.locked;
this.objectSize = defaults.objectSize;
this.optimizeOption = defaults.optimizeOption;
this.popularityDistribution = defaults.popularityDistribution;
this.templateUuid = defaults.templateUuid;
this.uuid = defaults.uuid;
}
@CustomType.Setter
public Builder catalogSize(@Nullable String catalogSize) {
this.catalogSize = catalogSize;
return this;
}
@CustomType.Setter
public Builder contentType(@Nullable String contentType) {
this.contentType = contentType;
return this;
}
@CustomType.Setter
public Builder locked(@Nullable Boolean locked) {
this.locked = locked;
return this;
}
@CustomType.Setter
public Builder objectSize(@Nullable String objectSize) {
this.objectSize = objectSize;
return this;
}
@CustomType.Setter
public Builder optimizeOption(@Nullable Boolean optimizeOption) {
this.optimizeOption = optimizeOption;
return this;
}
@CustomType.Setter
public Builder popularityDistribution(@Nullable String popularityDistribution) {
this.popularityDistribution = popularityDistribution;
return this;
}
@CustomType.Setter
public Builder templateUuid(@Nullable String templateUuid) {
this.templateUuid = templateUuid;
return this;
}
@CustomType.Setter
public Builder uuid(@Nullable String uuid) {
this.uuid = uuid;
return this;
}
public GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd build() {
final var _resultValue = new GetPropertyRulesBuilderRulesV20240109BehaviorContentCharacteristicsDd();
_resultValue.catalogSize = catalogSize;
_resultValue.contentType = contentType;
_resultValue.locked = locked;
_resultValue.objectSize = objectSize;
_resultValue.optimizeOption = optimizeOption;
_resultValue.popularityDistribution = popularityDistribution;
_resultValue.templateUuid = templateUuid;
_resultValue.uuid = uuid;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy