@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.4 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a Service Fabric application type name resource created or in the process of being created in the Service Fabric managed 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 getManagedClusterApplicationType(args: GetManagedClusterApplicationTypeArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedClusterApplicationTypeResult>;
export interface GetManagedClusterApplicationTypeArgs {
/**
* 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 name resource
*/
export interface GetManagedClusterApplicationTypeResult {
/**
* 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 application type name resource created or in the process of being created in the Service Fabric managed 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 getManagedClusterApplicationTypeOutput(args: GetManagedClusterApplicationTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedClusterApplicationTypeResult>;
export interface GetManagedClusterApplicationTypeOutputArgs {
/**
* 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>;
}