@pulumi/pulumiservice
Version:
[](https://slack.pulumi.com) [](https://www.npmjs.com/package/@pulumi/pulumiservice) [: AgentPool;
/**
* Returns true if the given object is an instance of AgentPool. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is AgentPool;
/**
* The agent pool identifier.
*/
readonly agentPoolId: pulumi.Output<string>;
/**
* Description of the agent pool.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Optional. Flag indicating whether to delete the agent pool even if stacks are configured to use it.
*/
readonly forceDestroy: pulumi.Output<boolean | undefined>;
/**
* Name of the agent pool.
*/
readonly name: pulumi.Output<string>;
/**
* The organization's name.
*/
readonly organizationName: pulumi.Output<string>;
/**
* The agent pool's token's value.
*/
readonly tokenValue: pulumi.Output<string>;
/**
* Create a AgentPool resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: AgentPoolArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a AgentPool resource.
*/
export interface AgentPoolArgs {
/**
* Description of the agent pool.
*/
description?: pulumi.Input<string | undefined>;
/**
* Optional. Flag indicating whether to delete the agent pool even if stacks are configured to use it.
*/
forceDestroy?: pulumi.Input<boolean | undefined>;
/**
* Name of the agent pool.
*/
name: pulumi.Input<string>;
/**
* The organization's name.
*/
organizationName: pulumi.Input<string>;
}
//# sourceMappingURL=agentPool.d.ts.map