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

62 lines (61 loc) 2.87 kB
import * as pulumi from "@pulumi/pulumi"; /** * Enables the static website feature of a storage account. */ export declare class StorageAccountStaticWebsite extends pulumi.CustomResource { /** * Get an existing StorageAccountStaticWebsite resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): StorageAccountStaticWebsite; /** * Returns true if the given object is an instance of StorageAccountStaticWebsite. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is StorageAccountStaticWebsite; /** * The name of the container to upload blobs to. */ readonly containerName: pulumi.Output<string>; /** * The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file. */ readonly error404Document: pulumi.Output<string | undefined>; /** * The webpage that Azure Storage serves for requests to the root of a website or any sub-folder. For example, 'index.html'. The value is case-sensitive. */ readonly indexDocument: pulumi.Output<string | undefined>; /** * Create a StorageAccountStaticWebsite resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: StorageAccountStaticWebsiteArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a StorageAccountStaticWebsite resource. */ export interface StorageAccountStaticWebsiteArgs { /** * The name of the storage account within the specified resource group. */ accountName: pulumi.Input<string>; /** * The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file. */ error404Document?: pulumi.Input<string>; /** * The webpage that Azure Storage serves for requests to the root of a website or any sub-folder. For example, 'index.html'. The value is case-sensitive. */ indexDocument?: pulumi.Input<string>; /** * The name of the resource group within the user's subscription. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }