
com.pulumi.azurenative.apimanagement.inputs.BackendPoolItemArgs 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.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Backend pool service information
*
*/
public final class BackendPoolItemArgs extends com.pulumi.resources.ResourceArgs {
public static final BackendPoolItemArgs Empty = new BackendPoolItemArgs();
/**
* The unique ARM id of the backend entity. The ARM id should refer to an already existing backend entity.
*
*/
@Import(name="id", required=true)
private Output id;
/**
* @return The unique ARM id of the backend entity. The ARM id should refer to an already existing backend entity.
*
*/
public Output id() {
return this.id;
}
/**
* The priority of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified.
*
*/
@Import(name="priority")
private @Nullable Output priority;
/**
* @return The priority of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy