UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

66 lines (65 loc) 1.74 kB
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>; }