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

109 lines (108 loc) 4.26 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a Service Fabric managed application resource created or in the process of being created in the Service Fabric cluster resource. * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 2023-03-01-preview, 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01-preview, 2024-02-01-preview, 2024-06-01-preview, 2024-09-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicefabric [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getManagedClusterApplication(args: GetManagedClusterApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedClusterApplicationResult>; export interface GetManagedClusterApplicationArgs { /** * The name of the application resource. */ applicationName: string; /** * The name of the cluster resource. */ clusterName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * The application resource. */ export interface GetManagedClusterApplicationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Azure resource identifier. */ readonly id: string; /** * Describes the managed identities for an Azure resource. */ readonly identity?: outputs.servicefabric.ManagedIdentityResponse; /** * Resource location depends on the parent resource. */ readonly location?: string; /** * List of user assigned identities for the application, each mapped to a friendly name. */ readonly managedIdentities?: outputs.servicefabric.ApplicationUserAssignedIdentityResponse[]; /** * Azure resource name. */ readonly name: string; /** * List of application parameters with overridden values from their default values specified in the application manifest. */ readonly parameters?: { [key: string]: string; }; /** * The current deployment or provisioning state, which only appears in the response */ readonly provisioningState: string; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.servicefabric.SystemDataResponse; /** * Azure resource tags. */ readonly tags?: { [key: string]: string; }; /** * Azure resource type. */ readonly type: string; /** * Describes the policy for a monitored application upgrade. */ readonly upgradePolicy?: outputs.servicefabric.ApplicationUpgradePolicyResponse; /** * The version of the application type as defined in the application manifest. * This name must be the full Arm Resource ID for the referenced application type version. */ readonly version?: string; } /** * Get a Service Fabric managed application resource created or in the process of being created in the Service Fabric cluster resource. * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 2023-03-01-preview, 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01-preview, 2024-02-01-preview, 2024-06-01-preview, 2024-09-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicefabric [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getManagedClusterApplicationOutput(args: GetManagedClusterApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedClusterApplicationResult>; export interface GetManagedClusterApplicationOutputArgs { /** * The name of the application resource. */ applicationName: pulumi.Input<string>; /** * The name of the cluster resource. */ clusterName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }