@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.74 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets information about the specified Subscription Level SaaS.
*
* Uses Azure REST API version 2018-03-01-beta.
*/
export declare function getSaasSubscriptionLevel(args: GetSaasSubscriptionLevelArgs, opts?: pulumi.InvokeOptions): Promise<GetSaasSubscriptionLevelResult>;
export interface GetSaasSubscriptionLevelArgs {
/**
* The name of the resource group.
*/
resourceGroupName: string;
/**
* The name of the resource.
*/
resourceName: string;
}
/**
* SaaS REST API resource definition.
*/
export interface GetSaasSubscriptionLevelResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The resource uri
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* saas properties
*/
readonly properties: outputs.saas.SaasResourceResponseProperties;
/**
* the resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Resource type.
*/
readonly type: string;
}
/**
* Gets information about the specified Subscription Level SaaS.
*
* Uses Azure REST API version 2018-03-01-beta.
*/
export declare function getSaasSubscriptionLevelOutput(args: GetSaasSubscriptionLevelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSaasSubscriptionLevelResult>;
export interface GetSaasSubscriptionLevelOutputArgs {
/**
* The name of the resource group.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the resource.
*/
resourceName: pulumi.Input<string>;
}