com.pulumi.azurenative.devopsinfrastructure.PoolArgs 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.devopsinfrastructure;
import com.pulumi.azurenative.devopsinfrastructure.enums.ProvisioningState;
import com.pulumi.azurenative.devopsinfrastructure.inputs.AzureDevOpsOrganizationProfileArgs;
import com.pulumi.azurenative.devopsinfrastructure.inputs.ManagedServiceIdentityArgs;
import com.pulumi.azurenative.devopsinfrastructure.inputs.StatefulArgs;
import com.pulumi.azurenative.devopsinfrastructure.inputs.StatelessAgentProfileArgs;
import com.pulumi.azurenative.devopsinfrastructure.inputs.VmssFabricProfileArgs;
import com.pulumi.core.Either;
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.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class PoolArgs extends com.pulumi.resources.ResourceArgs {
public static final PoolArgs Empty = new PoolArgs();
/**
* Defines how the machine will be handled once it executed a job.
*
*/
@Import(name="agentProfile", required=true)
private Output> agentProfile;
/**
* @return Defines how the machine will be handled once it executed a job.
*
*/
public Output> agentProfile() {
return this.agentProfile;
}
/**
* The resource id of the DevCenter Project the pool belongs to.
*
*/
@Import(name="devCenterProjectResourceId", required=true)
private Output devCenterProjectResourceId;
/**
* @return The resource id of the DevCenter Project the pool belongs to.
*
*/
public Output devCenterProjectResourceId() {
return this.devCenterProjectResourceId;
}
/**
* Defines the type of fabric the agent will run on.
*
*/
@Import(name="fabricProfile", required=true)
private Output fabricProfile;
/**
* @return Defines the type of fabric the agent will run on.
*
*/
public Output fabricProfile() {
return this.fabricProfile;
}
/**
* The managed service identities assigned to this resource.
*
*/
@Import(name="identity")
private @Nullable Output identity;
/**
* @return The managed service identities assigned to this resource.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy