1. Packages
  2. Azure Native
  3. API Docs
  4. documentdb
  5. NotebookWorkspace
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.documentdb.NotebookWorkspace

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    A notebook workspace resource Azure REST API version: 2023-04-15. Prior API version in Azure Native 1.x: 2021-03-15.

    Other available API versions: 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview.

    Example Usage

    CosmosDBNotebookWorkspaceCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var notebookWorkspace = new AzureNative.DocumentDB.NotebookWorkspace("notebookWorkspace", new()
        {
            AccountName = "ddb1",
            NotebookWorkspaceName = "default",
            ResourceGroupName = "rg1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/documentdb/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := documentdb.NewNotebookWorkspace(ctx, "notebookWorkspace", &documentdb.NotebookWorkspaceArgs{
    			AccountName:           pulumi.String("ddb1"),
    			NotebookWorkspaceName: pulumi.String("default"),
    			ResourceGroupName:     pulumi.String("rg1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.documentdb.NotebookWorkspace;
    import com.pulumi.azurenative.documentdb.NotebookWorkspaceArgs;
    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) {
            var notebookWorkspace = new NotebookWorkspace("notebookWorkspace", NotebookWorkspaceArgs.builder()        
                .accountName("ddb1")
                .notebookWorkspaceName("default")
                .resourceGroupName("rg1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    notebook_workspace = azure_native.documentdb.NotebookWorkspace("notebookWorkspace",
        account_name="ddb1",
        notebook_workspace_name="default",
        resource_group_name="rg1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const notebookWorkspace = new azure_native.documentdb.NotebookWorkspace("notebookWorkspace", {
        accountName: "ddb1",
        notebookWorkspaceName: "default",
        resourceGroupName: "rg1",
    });
    
    resources:
      notebookWorkspace:
        type: azure-native:documentdb:NotebookWorkspace
        properties:
          accountName: ddb1
          notebookWorkspaceName: default
          resourceGroupName: rg1
    

    Create NotebookWorkspace Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NotebookWorkspace(name: string, args: NotebookWorkspaceArgs, opts?: CustomResourceOptions);
    @overload
    def NotebookWorkspace(resource_name: str,
                          args: NotebookWorkspaceArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def NotebookWorkspace(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_name: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          notebook_workspace_name: Optional[str] = None)
    func NewNotebookWorkspace(ctx *Context, name string, args NotebookWorkspaceArgs, opts ...ResourceOption) (*NotebookWorkspace, error)
    public NotebookWorkspace(string name, NotebookWorkspaceArgs args, CustomResourceOptions? opts = null)
    public NotebookWorkspace(String name, NotebookWorkspaceArgs args)
    public NotebookWorkspace(String name, NotebookWorkspaceArgs args, CustomResourceOptions options)
    
    type: azure-native:documentdb:NotebookWorkspace
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NotebookWorkspaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NotebookWorkspaceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NotebookWorkspaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NotebookWorkspaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NotebookWorkspaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var notebookWorkspaceResource = new AzureNative.DocumentDB.NotebookWorkspace("notebookWorkspaceResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        NotebookWorkspaceName = "string",
    });
    
    example, err := documentdb.NewNotebookWorkspace(ctx, "notebookWorkspaceResource", &documentdb.NotebookWorkspaceArgs{
    AccountName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    NotebookWorkspaceName: pulumi.String("string"),
    })
    
    var notebookWorkspaceResource = new NotebookWorkspace("notebookWorkspaceResource", NotebookWorkspaceArgs.builder()        
        .accountName("string")
        .resourceGroupName("string")
        .notebookWorkspaceName("string")
        .build());
    
    notebook_workspace_resource = azure_native.documentdb.NotebookWorkspace("notebookWorkspaceResource",
        account_name="string",
        resource_group_name="string",
        notebook_workspace_name="string")
    
    const notebookWorkspaceResource = new azure_native.documentdb.NotebookWorkspace("notebookWorkspaceResource", {
        accountName: "string",
        resourceGroupName: "string",
        notebookWorkspaceName: "string",
    });
    
    type: azure-native:documentdb:NotebookWorkspace
    properties:
        accountName: string
        notebookWorkspaceName: string
        resourceGroupName: string
    

    NotebookWorkspace Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The NotebookWorkspace resource accepts the following input properties:

    AccountName string
    Cosmos DB database account name.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    NotebookWorkspaceName string
    The name of the notebook workspace resource.
    AccountName string
    Cosmos DB database account name.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    NotebookWorkspaceName string
    The name of the notebook workspace resource.
    accountName String
    Cosmos DB database account name.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    notebookWorkspaceName String
    The name of the notebook workspace resource.
    accountName string
    Cosmos DB database account name.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    notebookWorkspaceName string
    The name of the notebook workspace resource.
    account_name str
    Cosmos DB database account name.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    notebook_workspace_name str
    The name of the notebook workspace resource.
    accountName String
    Cosmos DB database account name.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    notebookWorkspaceName String
    The name of the notebook workspace resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NotebookWorkspace resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the database account.
    NotebookServerEndpoint string
    Specifies the endpoint of Notebook server.
    Status string
    Status of the notebook workspace. Possible values are: Creating, Online, Deleting, Failed, Updating.
    Type string
    The type of Azure resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the database account.
    NotebookServerEndpoint string
    Specifies the endpoint of Notebook server.
    Status string
    Status of the notebook workspace. Possible values are: Creating, Online, Deleting, Failed, Updating.
    Type string
    The type of Azure resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the database account.
    notebookServerEndpoint String
    Specifies the endpoint of Notebook server.
    status String
    Status of the notebook workspace. Possible values are: Creating, Online, Deleting, Failed, Updating.
    type String
    The type of Azure resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the database account.
    notebookServerEndpoint string
    Specifies the endpoint of Notebook server.
    status string
    Status of the notebook workspace. Possible values are: Creating, Online, Deleting, Failed, Updating.
    type string
    The type of Azure resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the database account.
    notebook_server_endpoint str
    Specifies the endpoint of Notebook server.
    status str
    Status of the notebook workspace. Possible values are: Creating, Online, Deleting, Failed, Updating.
    type str
    The type of Azure resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the database account.
    notebookServerEndpoint String
    Specifies the endpoint of Notebook server.
    status String
    Status of the notebook workspace. Possible values are: Creating, Online, Deleting, Failed, Updating.
    type String
    The type of Azure resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:documentdb:NotebookWorkspace default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/notebookWorkspaces/{notebookWorkspaceName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi