@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.09 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the registration definition details.
*
* Uses Azure REST API version 2022-10-01.
*/
export declare function getRegistrationDefinition(args: GetRegistrationDefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetRegistrationDefinitionResult>;
export interface GetRegistrationDefinitionArgs {
/**
* The GUID of the registration definition.
*/
registrationDefinitionId: string;
/**
* The scope of the resource.
*/
scope: string;
}
/**
* The registration definition.
*/
export interface GetRegistrationDefinitionResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The fully qualified path of the registration definition.
*/
readonly id: string;
/**
* The name of the registration definition.
*/
readonly name: string;
/**
* The details for the Managed Services offer’s plan in Azure Marketplace.
*/
readonly plan?: outputs.managedservices.PlanResponse;
/**
* The properties of a registration definition.
*/
readonly properties: outputs.managedservices.RegistrationDefinitionPropertiesResponse;
/**
* The metadata for the registration assignment resource.
*/
readonly systemData: outputs.managedservices.SystemDataResponse;
/**
* The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
*/
readonly type: string;
}
/**
* Gets the registration definition details.
*
* Uses Azure REST API version 2022-10-01.
*/
export declare function getRegistrationDefinitionOutput(args: GetRegistrationDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRegistrationDefinitionResult>;
export interface GetRegistrationDefinitionOutputArgs {
/**
* The GUID of the registration definition.
*/
registrationDefinitionId: pulumi.Input<string>;
/**
* The scope of the resource.
*/
scope: pulumi.Input<string>;
}