
com.pulumi.azurenative.iotoperationsmq.inputs.TemporaryResourceLimitsConfigArgs 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.iotoperationsmq.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Internal knobs of Resource Limits for FE and BE
*
*/
public final class TemporaryResourceLimitsConfigArgs extends com.pulumi.resources.ResourceArgs {
public static final TemporaryResourceLimitsConfigArgs Empty = new TemporaryResourceLimitsConfigArgs();
/**
* Maximum number of messages a client can have inflight.
*
*/
@Import(name="maxInflightMessages", required=true)
private Output maxInflightMessages;
/**
* @return Maximum number of messages a client can have inflight.
*
*/
public Output maxInflightMessages() {
return this.maxInflightMessages;
}
/**
* Maximum number of patch inflight per node.
*
*/
@Import(name="maxInflightPatches", required=true)
private Output maxInflightPatches;
/**
* @return Maximum number of patch inflight per node.
*
*/
public Output maxInflightPatches() {
return this.maxInflightPatches;
}
/**
* Maximum number of patch a client can have in flight.
*
*/
@Import(name="maxInflightPatchesPerClient", required=true)
private Output maxInflightPatchesPerClient;
/**
* @return Maximum number of patch a client can have in flight.
*
*/
public Output maxInflightPatchesPerClient() {
return this.maxInflightPatchesPerClient;
}
/**
* Maximum message expiry interval, in seconds.
*
*/
@Import(name="maxMessageExpirySecs")
private @Nullable Output maxMessageExpirySecs;
/**
* @return Maximum message expiry interval, in seconds.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy