get Dataset Blob Storage
suspend fun getDatasetBlobStorage(argument: GetDatasetBlobStoragePlainArgs): GetDatasetBlobStorageResult
Use this data source to access information about an existing Data Share Blob Storage Dataset.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.datashare.DatashareFunctions;
import com.pulumi.azure.datashare.inputs.GetDatasetBlobStorageArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = DatashareFunctions.getDatasetBlobStorage(GetDatasetBlobStorageArgs.builder()
.name("example-dsbsds")
.dataShareId("example-share-id")
.build());
ctx.export("id", example.applyValue(getDatasetBlobStorageResult -> getDatasetBlobStorageResult.id()));
}
}
Content copied to clipboard
Return
A collection of values returned by getDatasetBlobStorage.
Parameters
argument
A collection of arguments for invoking getDatasetBlobStorage.
Return
A collection of values returned by getDatasetBlobStorage.
See also
Parameters
data Share Id
The ID of the Data Share in which this Data Share Blob Storage Dataset should be created.
name
The name of this Data Share Blob Storage Dataset.
suspend fun getDatasetBlobStorage(argument: suspend GetDatasetBlobStoragePlainArgsBuilder.() -> Unit): GetDatasetBlobStorageResult
Return
A collection of values returned by getDatasetBlobStorage.
See also
Parameters
argument
Builder for com.pulumi.azure.datashare.kotlin.inputs.GetDatasetBlobStoragePlainArgs.