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

86 lines (85 loc) 2.57 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a SolutionConfiguration * * Uses Azure REST API version 2024-12-01. */ export declare function getSolutionConfiguration(args: GetSolutionConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetSolutionConfigurationResult>; export interface GetSolutionConfigurationArgs { /** * The fully qualified Azure Resource manager identifier of the resource. */ resourceUri: string; /** * Represent Solution Configuration Resource. */ solutionConfiguration: string; } /** * Solution Configuration */ export interface GetSolutionConfigurationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The last time resources were inventoried */ readonly lastSyncTime: string; /** * The name of the resource */ readonly name: string; /** * The resource provisioning state. */ readonly provisioningState: string; /** * Solution settings */ readonly solutionSettings?: { [key: string]: string; }; /** * The type of the solution */ readonly solutionType: string; /** * The status of solution configurations */ readonly status: string; /** * The detailed message of status details */ readonly statusDetails: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.hybridconnectivity.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Get a SolutionConfiguration * * Uses Azure REST API version 2024-12-01. */ export declare function getSolutionConfigurationOutput(args: GetSolutionConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSolutionConfigurationResult>; export interface GetSolutionConfigurationOutputArgs { /** * The fully qualified Azure Resource manager identifier of the resource. */ resourceUri: pulumi.Input<string>; /** * Represent Solution Configuration Resource. */ solutionConfiguration: pulumi.Input<string>; }