@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.6 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a Service Fabric service resource created or in the process of being created in the Service Fabric managed application 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 getManagedClusterService(args: GetManagedClusterServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedClusterServiceResult>;
export interface GetManagedClusterServiceArgs {
/**
* 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 name of the service resource in the format of {applicationName}~{serviceName}.
*/
serviceName: string;
}
/**
* The service resource.
*/
export interface GetManagedClusterServiceResult {
/**
* 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 service resource properties.
*/
readonly properties: outputs.servicefabric.StatefulServicePropertiesResponse | outputs.servicefabric.StatelessServicePropertiesResponse;
/**
* 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 service resource created or in the process of being created in the Service Fabric managed application 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 getManagedClusterServiceOutput(args: GetManagedClusterServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedClusterServiceResult>;
export interface GetManagedClusterServiceOutputArgs {
/**
* 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>;
/**
* The name of the service resource in the format of {applicationName}~{serviceName}.
*/
serviceName: pulumi.Input<string>;
}