com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits 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.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits extends com.pulumi.resources.InvokeArgs {
public static final GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits Empty = new GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits();
/**
* This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
*/
@Import(name="currentCapacity")
private @Nullable Integer currentCapacity;
/**
* @return This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
*/
public Optional currentCapacity() {
return Optional.ofNullable(this.currentCapacity);
}
/**
* This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
*/
@Import(name="limit")
private @Nullable Integer limit;
/**
* @return This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
*/
public Optional limit() {
return Optional.ofNullable(this.limit);
}
/**
* This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
*/
@Import(name="limitType")
private @Nullable String limitType;
/**
* @return This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
*/
public Optional limitType() {
return Optional.ofNullable(this.limitType);
}
private GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits() {}
private GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits(GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits $) {
this.currentCapacity = $.currentCapacity;
this.limit = $.limit;
this.limitType = $.limitType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits $;
public Builder() {
$ = new GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits();
}
public Builder(GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits defaults) {
$ = new GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits(Objects.requireNonNull(defaults));
}
/**
* @param currentCapacity This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
* @return builder
*
*/
public Builder currentCapacity(@Nullable Integer currentCapacity) {
$.currentCapacity = currentCapacity;
return this;
}
/**
* @param limit This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
* @return builder
*
*/
public Builder limit(@Nullable Integer limit) {
$.limit = limit;
return this;
}
/**
* @param limitType This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
*
* @return builder
*
*/
public Builder limitType(@Nullable String limitType) {
$.limitType = limitType;
return this;
}
public GetPropertyRulesBuilderRulesV20240212BehaviorImageAndVideoManagerCpCodeOriginalCpCodeLimits build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy