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

82 lines (81 loc) 2.39 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the custom resource provider manifest. * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getCustomResourceProvider(args: GetCustomResourceProviderArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomResourceProviderResult>; export interface GetCustomResourceProviderArgs { /** * The name of the resource group. */ resourceGroupName: string; /** * The name of the resource provider. */ resourceProviderName: string; } /** * A manifest file that defines the custom resource provider resources. */ export interface GetCustomResourceProviderResult { /** * A list of actions that the custom resource provider implements. */ readonly actions?: outputs.customproviders.CustomRPActionRouteDefinitionResponse[]; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Resource Id */ readonly id: string; /** * Resource location */ readonly location: string; /** * Resource name */ readonly name: string; /** * The provisioning state of the resource provider. */ readonly provisioningState: string; /** * A list of resource types that the custom resource provider implements. */ readonly resourceTypes?: outputs.customproviders.CustomRPResourceTypeRouteDefinitionResponse[]; /** * Resource tags */ readonly tags?: { [key: string]: string; }; /** * Resource type */ readonly type: string; /** * A list of validations to run on the custom resource provider's requests. */ readonly validations?: outputs.customproviders.CustomRPValidationsResponse[]; } /** * Gets the custom resource provider manifest. * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getCustomResourceProviderOutput(args: GetCustomResourceProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomResourceProviderResult>; export interface GetCustomResourceProviderOutputArgs { /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * The name of the resource provider. */ resourceProviderName: pulumi.Input<string>; }