@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.27 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Returns a sandbox custom image
*
* Uses Azure REST API version 2024-04-13.
*
* Other available API versions: 2023-08-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native kusto [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getSandboxCustomImage(args: GetSandboxCustomImageArgs, opts?: pulumi.InvokeOptions): Promise<GetSandboxCustomImageResult>;
export interface GetSandboxCustomImageArgs {
/**
* The name of the Kusto cluster.
*/
clusterName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the sandbox custom image.
*/
sandboxCustomImageName: string;
}
/**
* Class representing a Kusto sandbox custom image.
*/
export interface GetSandboxCustomImageResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The base image name on which the custom image is built on top of. It can be one of the LanguageExtensionImageName (e.g.: 'Python3_10_8', 'Python3_10_8_DL') or the name of an existing custom image. Either this property or languageVersion should be specified.
*/
readonly baseImageName?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The language name, for example Python.
*/
readonly language: string;
/**
* The version of the language. Either this property or baseImageName should be specified.
*/
readonly languageVersion?: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioned state of the resource.
*/
readonly provisioningState: string;
/**
* The requirements file content.
*/
readonly requirementsFileContent?: string;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Returns a sandbox custom image
*
* Uses Azure REST API version 2024-04-13.
*
* Other available API versions: 2023-08-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native kusto [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getSandboxCustomImageOutput(args: GetSandboxCustomImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSandboxCustomImageResult>;
export interface GetSandboxCustomImageOutputArgs {
/**
* The name of the Kusto cluster.
*/
clusterName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the sandbox custom image.
*/
sandboxCustomImageName: pulumi.Input<string>;
}