Creating a keyspace in Azure Managed Cassandra

Rajib Deb 1 Reputation point
2021-11-18T02:58:23.997+00:00

How do I create a keyspace in Azure Managed Cassandra using API?

Azure Database Migration service
{count} votes

1 answer

Sort by: Most helpful
  1. Oury Ba-MSFT 20,911 Reputation points Microsoft Employee Moderator
    2021-11-23T16:59:42.92+00:00

    Hi @Rajib Deb In addition to @GeethaThatipatri-MSFT . You can refer to the following documentation for more details.
    https://learn.microsoft.com/en-us/azure/cosmos-db/scripts/powershell/cassandra/create

    Write-Host "Creating keyspace $keyspaceName"
    $keyspace = New-AzCosmosDBCassandraKeyspace -ParentObject $account `
    -Name $keyspaceName

    Regards,
    Oury


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.