@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.39 kB
TypeScript
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>;
}