@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.58 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Description for Get site extension information by its ID for a web site, or a deployment slot.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2016-08-01, 2018-02-01, 2018-11-01, 2019-08-01, 2020-06-01, 2020-09-01, 2020-10-01, 2020-12-01, 2021-01-01, 2021-01-15, 2021-02-01, 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-11-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getWebAppSiteExtensionSlot(args: GetWebAppSiteExtensionSlotArgs, opts?: pulumi.InvokeOptions): Promise<GetWebAppSiteExtensionSlotResult>;
export interface GetWebAppSiteExtensionSlotArgs {
/**
* Site name.
*/
name: string;
/**
* Name of the resource group to which the resource belongs.
*/
resourceGroupName: string;
/**
* Site extension name.
*/
siteExtensionId: string;
/**
* Name of the deployment slot. If a slot is not specified, the API uses the production slot.
*/
slot: string;
}
/**
* Site Extension Information.
*/
export interface GetWebAppSiteExtensionSlotResult {
/**
* List of authors.
*/
readonly authors?: string[];
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Site Extension comment.
*/
readonly comment?: string;
/**
* Detailed description.
*/
readonly description?: string;
/**
* Count of downloads.
*/
readonly downloadCount?: number;
/**
* Site extension ID.
*/
readonly extensionId?: string;
/**
* Site extension type.
*/
readonly extensionType?: string;
/**
* Extension URL.
*/
readonly extensionUrl?: string;
/**
* Feed URL.
*/
readonly feedUrl?: string;
/**
* Icon URL.
*/
readonly iconUrl?: string;
/**
* Resource Id.
*/
readonly id: string;
/**
* Installed timestamp.
*/
readonly installedDateTime?: string;
/**
* Installer command line parameters.
*/
readonly installerCommandLineParams?: string;
/**
* Kind of resource.
*/
readonly kind?: string;
/**
* License URL.
*/
readonly licenseUrl?: string;
/**
* <code>true</code> if the local version is the latest version; <code>false</code> otherwise.
*/
readonly localIsLatestVersion?: boolean;
/**
* Local path.
*/
readonly localPath?: string;
/**
* Resource Name.
*/
readonly name: string;
/**
* Project URL.
*/
readonly projectUrl?: string;
/**
* Provisioning state.
*/
readonly provisioningState?: string;
/**
* Published timestamp.
*/
readonly publishedDateTime?: string;
/**
* Summary description.
*/
readonly summary?: string;
readonly title?: string;
/**
* Resource type.
*/
readonly type: string;
/**
* Version information.
*/
readonly version?: string;
}
/**
* Description for Get site extension information by its ID for a web site, or a deployment slot.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2016-08-01, 2018-02-01, 2018-11-01, 2019-08-01, 2020-06-01, 2020-09-01, 2020-10-01, 2020-12-01, 2021-01-01, 2021-01-15, 2021-02-01, 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-11-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getWebAppSiteExtensionSlotOutput(args: GetWebAppSiteExtensionSlotOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWebAppSiteExtensionSlotResult>;
export interface GetWebAppSiteExtensionSlotOutputArgs {
/**
* Site name.
*/
name: pulumi.Input<string>;
/**
* Name of the resource group to which the resource belongs.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Site extension name.
*/
siteExtensionId: pulumi.Input<string>;
/**
* Name of the deployment slot. If a slot is not specified, the API uses the production slot.
*/
slot: pulumi.Input<string>;
}