@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.87 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets details about the specified auto scale v-core.
*
* Uses Azure REST API version 2021-01-01.
*/
export declare function getAutoScaleVCore(args: GetAutoScaleVCoreArgs, opts?: pulumi.InvokeOptions): Promise<GetAutoScaleVCoreResult>;
export interface GetAutoScaleVCoreArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.
*/
vcoreName: string;
}
/**
* Represents an instance of an auto scale v-core resource.
*/
export interface GetAutoScaleVCoreResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The maximum capacity of an auto scale v-core resource.
*/
readonly capacityLimit?: number;
/**
* The object ID of the capacity resource associated with the auto scale v-core resource.
*/
readonly capacityObjectId?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The current deployment state of an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.
*/
readonly provisioningState: string;
/**
* The SKU of the auto scale v-core resource.
*/
readonly sku: outputs.powerbidedicated.AutoScaleVCoreSkuResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.powerbidedicated.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets details about the specified auto scale v-core.
*
* Uses Azure REST API version 2021-01-01.
*/
export declare function getAutoScaleVCoreOutput(args: GetAutoScaleVCoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAutoScaleVCoreResult>;
export interface GetAutoScaleVCoreOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.
*/
vcoreName: pulumi.Input<string>;
}