@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.29 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets information about the specified Subscription Level ProfessionalService.
*
* Uses Azure REST API version 2023-07-01-preview.
*/
export declare function getProfessionalServiceSubscriptionLevel(args: GetProfessionalServiceSubscriptionLevelArgs, opts?: pulumi.InvokeOptions): Promise<GetProfessionalServiceSubscriptionLevelResult>;
export interface GetProfessionalServiceSubscriptionLevelArgs {
/**
* The name of the resource group.
*/
resourceGroupName: string;
/**
* The name of the resource.
*/
resourceName: string;
/**
* The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)
*/
subscriptionId?: string;
}
/**
* ProfessionalService REST API resource definition.
*/
export interface GetProfessionalServiceSubscriptionLevelResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The resource uri
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* professionalService properties
*/
readonly properties: outputs.professionalservice.ProfessionalServiceResourceResponseProperties;
/**
* the resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Resource type.
*/
readonly type: string;
}
/**
* Gets information about the specified Subscription Level ProfessionalService.
*
* Uses Azure REST API version 2023-07-01-preview.
*/
export declare function getProfessionalServiceSubscriptionLevelOutput(args: GetProfessionalServiceSubscriptionLevelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfessionalServiceSubscriptionLevelResult>;
export interface GetProfessionalServiceSubscriptionLevelOutputArgs {
/**
* The name of the resource group.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the resource.
*/
resourceName: pulumi.Input<string>;
/**
* The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)
*/
subscriptionId?: pulumi.Input<string>;
}