@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";
/**
* Get installed Solution details by Solution id.
*
* Uses Azure REST API version 2023-06-01-preview.
*/
export declare function getSolution(args: GetSolutionArgs, opts?: pulumi.InvokeOptions): Promise<GetSolutionResult>;
export interface GetSolutionArgs {
/**
* DataManagerForAgriculture resource name.
*/
dataManagerForAgricultureResourceName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* SolutionId for Data Manager For Agriculture Resource.
*/
solutionId: string;
}
/**
* Solution resource.
*/
export interface GetSolutionResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The ETag value to implement optimistic concurrency.
*/
readonly eTag: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Solution resource properties.
*/
readonly properties: outputs.agfoodplatform.SolutionPropertiesResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.agfoodplatform.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get installed Solution details by Solution id.
*
* Uses Azure REST API version 2023-06-01-preview.
*/
export declare function getSolutionOutput(args: GetSolutionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSolutionResult>;
export interface GetSolutionOutputArgs {
/**
* DataManagerForAgriculture resource name.
*/
dataManagerForAgricultureResourceName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* SolutionId for Data Manager For Agriculture Resource.
*/
solutionId: pulumi.Input<string>;
}