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

98 lines (97 loc) 3.82 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a Service Fabric managed application type version resource created or in the process of being created in the Service Fabric managed application type name 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 getManagedClusterApplicationTypeVersion(args: GetManagedClusterApplicationTypeVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedClusterApplicationTypeVersionResult>; export interface GetManagedClusterApplicationTypeVersionArgs { /** * The name of the application type name resource. */ applicationTypeName: string; /** * The name of the cluster resource. */ clusterName: string; /** * The name of the resource group. */ resourceGroupName: string; /** * The application type version. */ version: string; } /** * An application type version resource for the specified application type name resource. */ export interface GetManagedClusterApplicationTypeVersionResult { /** * The URL to the application package */ readonly appPackageUrl: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Azure resource identifier. */ readonly id: string; /** * Resource location depends on the parent resource. */ readonly location?: string; /** * Azure resource name. */ readonly name: 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; } /** * Get a Service Fabric managed application type version resource created or in the process of being created in the Service Fabric managed application type name 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 getManagedClusterApplicationTypeVersionOutput(args: GetManagedClusterApplicationTypeVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedClusterApplicationTypeVersionResult>; export interface GetManagedClusterApplicationTypeVersionOutputArgs { /** * The name of the application type name resource. */ applicationTypeName: pulumi.Input<string>; /** * The name of the cluster resource. */ clusterName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * The application type version. */ version: pulumi.Input<string>; }