import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Data Share Blob Storage Dataset. * * ## Import * * Data Share Blob Storage Datasets can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:datashare/datasetBlobStorage:DatasetBlobStorage example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataShare/accounts/account1/shares/share1/dataSets/dataSet1 * ``` */ export declare class DatasetBlobStorage extends pulumi.CustomResource { /** * Get an existing DatasetBlobStorage 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DatasetBlobStorageState, opts?: pulumi.CustomResourceOptions): DatasetBlobStorage; /** * Returns true if the given object is an instance of DatasetBlobStorage. 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 DatasetBlobStorage; /** * The name of the storage account container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ readonly containerName: pulumi.Output; /** * The ID of the Data Share in which this Data Share Blob Storage Dataset should be created. Changing this forces a new Data Share Blob Storage Dataset to be created. */ readonly dataShareId: pulumi.Output; /** * The name of the Data Share Dataset. */ readonly displayName: pulumi.Output; /** * The path of the file in the storage container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ readonly filePath: pulumi.Output; /** * The path of the folder in the storage container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ readonly folderPath: pulumi.Output; /** * The name which should be used for this Data Share Blob Storage Dataset. Changing this forces a new Data Share Blob Storage Dataset to be created. */ readonly name: pulumi.Output; /** * A `storageAccount` block as defined below. Changing this forces a new resource to be created. */ readonly storageAccount: pulumi.Output; /** * Create a DatasetBlobStorage 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: DatasetBlobStorageArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DatasetBlobStorage resources. */ export interface DatasetBlobStorageState { /** * The name of the storage account container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ containerName?: pulumi.Input; /** * The ID of the Data Share in which this Data Share Blob Storage Dataset should be created. Changing this forces a new Data Share Blob Storage Dataset to be created. */ dataShareId?: pulumi.Input; /** * The name of the Data Share Dataset. */ displayName?: pulumi.Input; /** * The path of the file in the storage container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ filePath?: pulumi.Input; /** * The path of the folder in the storage container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ folderPath?: pulumi.Input; /** * The name which should be used for this Data Share Blob Storage Dataset. Changing this forces a new Data Share Blob Storage Dataset to be created. */ name?: pulumi.Input; /** * A `storageAccount` block as defined below. Changing this forces a new resource to be created. */ storageAccount?: pulumi.Input; } /** * The set of arguments for constructing a DatasetBlobStorage resource. */ export interface DatasetBlobStorageArgs { /** * The name of the storage account container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ containerName: pulumi.Input; /** * The ID of the Data Share in which this Data Share Blob Storage Dataset should be created. Changing this forces a new Data Share Blob Storage Dataset to be created. */ dataShareId: pulumi.Input; /** * The path of the file in the storage container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ filePath?: pulumi.Input; /** * The path of the folder in the storage container to be shared with the receiver. Changing this forces a new Data Share Blob Storage Dataset to be created. */ folderPath?: pulumi.Input; /** * The name which should be used for this Data Share Blob Storage Dataset. Changing this forces a new Data Share Blob Storage Dataset to be created. */ name?: pulumi.Input; /** * A `storageAccount` block as defined below. Changing this forces a new resource to be created. */ storageAccount: pulumi.Input; }