@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets a tier resource.
*
* Uses Azure REST API version 2025-02-01-preview.
*/
export declare function getFleetTier(args: GetFleetTierArgs, opts?: pulumi.InvokeOptions): Promise<GetFleetTierResult>;
export interface GetFleetTierArgs {
/**
* Name of the database fleet.
*/
fleetName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Name of the tier.
*/
tierName: string;
}
/**
* A SQL Database Fleet tier.
*/
export interface GetFleetTierResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* A Fleet tier properties.
*/
readonly properties: outputs.databasefleetmanager.FleetTierPropertiesResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.databasefleetmanager.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets a tier resource.
*
* Uses Azure REST API version 2025-02-01-preview.
*/
export declare function getFleetTierOutput(args: GetFleetTierOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFleetTierResult>;
export interface GetFleetTierOutputArgs {
/**
* Name of the database fleet.
*/
fleetName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of the tier.
*/
tierName: pulumi.Input<string>;
}