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

111 lines (110 loc) 3.98 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get properties of the provided the Kubernetes cluster feature. * * Uses Azure REST API version 2025-02-01. * * Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getKubernetesClusterFeature(args: GetKubernetesClusterFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetKubernetesClusterFeatureResult>; export interface GetKubernetesClusterFeatureArgs { /** * The name of the feature. */ featureName: string; /** * The name of the Kubernetes cluster. */ kubernetesClusterName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } export interface GetKubernetesClusterFeatureResult { /** * The lifecycle indicator of the feature. */ readonly availabilityLifecycle: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The detailed status of the feature. */ readonly detailedStatus: string; /** * The descriptive message for the detailed status of the feature. */ readonly detailedStatusMessage: string; /** * Resource ETag. */ readonly etag: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * The configured options for the feature. */ readonly options?: outputs.networkcloud.StringKeyValuePairResponse[]; /** * The provisioning state of the Kubernetes cluster feature. */ readonly provisioningState: string; /** * The indicator of if the feature is required or optional. Optional features may be deleted by the user, while required features are managed with the kubernetes cluster lifecycle. */ readonly required: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.networkcloud.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; /** * The version of the feature. */ readonly version: string; } /** * Get properties of the provided the Kubernetes cluster feature. * * Uses Azure REST API version 2025-02-01. * * Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getKubernetesClusterFeatureOutput(args: GetKubernetesClusterFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKubernetesClusterFeatureResult>; export interface GetKubernetesClusterFeatureOutputArgs { /** * The name of the feature. */ featureName: pulumi.Input<string>; /** * The name of the Kubernetes cluster. */ kubernetesClusterName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }