/sdk/management/samples/src/main/java/com/azure/management/cosmosdb/samples/CreateCosmosDBWithKindMongoDB.java
http://github.com/WindowsAzure/azure-sdk-for-java · Java · 122 lines · 78 code · 19 blank · 25 comment · 0 complexity · c9cc7e72f317200da48d4c703bab48ef MD5 · raw file
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // Licensed under the MIT License.
- package com.azure.management.cosmosdb.samples;
- import com.azure.core.credential.TokenCredential;
- import com.azure.core.http.policy.HttpLogDetailLevel;
- import com.azure.core.management.AzureEnvironment;
- import com.azure.core.management.CloudException;
- import com.azure.identity.DefaultAzureCredentialBuilder;
- import com.azure.management.Azure;
- import com.azure.management.cosmosdb.CosmosDBAccount;
- import com.azure.management.cosmosdb.DatabaseAccountKind;
- import com.azure.management.cosmosdb.DatabaseAccountListConnectionStringsResult;
- import com.azure.management.resources.fluentcore.arm.Region;
- import com.azure.management.resources.fluentcore.profile.AzureProfile;
- import com.azure.management.samples.Utils;
- /**
- * Azure CosmosDB sample for high availability.
- * - Create a CosmosDB configured with MongoDB kind.
- * - Get the mongodb connection string
- * - Delete the CosmosDB.
- */
- public final class CreateCosmosDBWithKindMongoDB {
- static final String DATABASE_ID = "TestDB";
- static final String COLLECTION_ID = "TestCollection";
- /**
- * Main function which runs the actual sample.
- * @param azure instance of the azure client
- * @return true if sample runs successfully
- */
- public static boolean runSample(Azure azure) {
- final String docDBName = azure.sdkContext().randomResourceName("docDb", 10);
- final String rgName = azure.sdkContext().randomResourceName("rgNEMV", 24);
- try {
- //============================================================
- // Create a CosmosDB
- System.out.println("Creating a CosmosDB...");
- CosmosDBAccount cosmosDBAccount = azure.cosmosDBAccounts().define(docDBName)
- .withRegion(Region.US_EAST)
- .withNewResourceGroup(rgName)
- .withKind(DatabaseAccountKind.MONGO_DB)
- .withEventualConsistency()
- .withWriteReplication(Region.US_WEST)
- .withReadReplication(Region.US_CENTRAL)
- .create();
- System.out.println("Created CosmosDB");
- Utils.print(cosmosDBAccount);
- System.out.println("Get the MongoDB connection string");
- DatabaseAccountListConnectionStringsResult databaseAccountListConnectionStringsResult = cosmosDBAccount.listConnectionStrings();
- System.out.println("MongoDB connection string: "
- + databaseAccountListConnectionStringsResult.connectionStrings().get(0).connectionString());
- //============================================================
- // Delete CosmosDB
- System.out.println("Deleting the CosmosDB");
- // work around CosmosDB service issue returning 404 CloudException on delete operation
- try {
- azure.cosmosDBAccounts().deleteById(cosmosDBAccount.id());
- } catch (CloudException e) {
- }
- System.out.println("Deleted the CosmosDB");
- return true;
- } catch (Exception e) {
- System.err.println(e.getMessage());
- } finally {
- try {
- System.out.println("Deleting resource group: " + rgName);
- azure.resourceGroups().beginDeleteByName(rgName);
- System.out.println("Deleted resource group: " + rgName);
- } catch (NullPointerException npe) {
- System.out.println("Did not create any resources in Azure. No clean up is necessary");
- } catch (Exception g) {
- g.printStackTrace();
- }
- }
- return false;
- }
- /**
- * Main entry point.
- * @param args the parameters
- */
- public static void main(String[] args) {
- try {
- //=============================================================
- // Authenticate
- final AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE, true);
- final TokenCredential credential = new DefaultAzureCredentialBuilder()
- .authorityHost(profile.environment().getActiveDirectoryEndpoint())
- .build();
- Azure azure = Azure
- .configure()
- .withLogLevel(HttpLogDetailLevel.BASIC)
- .authenticate(credential, profile)
- .withDefaultSubscription();
- // Print selected subscription
- System.out.println("Selected subscription: " + azure.subscriptionId());
- runSample(azure);
- } catch (Exception e) {
- System.out.println(e.getMessage());
- e.printStackTrace();
- }
- }
- private CreateCosmosDBWithKindMongoDB() {
- }
- }