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

68 lines (67 loc) 2.09 kB
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>; }