/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

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. package com.azure.management.cosmosdb.samples;
  4. import com.azure.core.credential.TokenCredential;
  5. import com.azure.core.http.policy.HttpLogDetailLevel;
  6. import com.azure.core.management.AzureEnvironment;
  7. import com.azure.core.management.CloudException;
  8. import com.azure.identity.DefaultAzureCredentialBuilder;
  9. import com.azure.management.Azure;
  10. import com.azure.management.cosmosdb.CosmosDBAccount;
  11. import com.azure.management.cosmosdb.DatabaseAccountKind;
  12. import com.azure.management.cosmosdb.DatabaseAccountListConnectionStringsResult;
  13. import com.azure.management.resources.fluentcore.arm.Region;
  14. import com.azure.management.resources.fluentcore.profile.AzureProfile;
  15. import com.azure.management.samples.Utils;
  16. /**
  17. * Azure CosmosDB sample for high availability.
  18. * - Create a CosmosDB configured with MongoDB kind.
  19. * - Get the mongodb connection string
  20. * - Delete the CosmosDB.
  21. */
  22. public final class CreateCosmosDBWithKindMongoDB {
  23. static final String DATABASE_ID = "TestDB";
  24. static final String COLLECTION_ID = "TestCollection";
  25. /**
  26. * Main function which runs the actual sample.
  27. * @param azure instance of the azure client
  28. * @return true if sample runs successfully
  29. */
  30. public static boolean runSample(Azure azure) {
  31. final String docDBName = azure.sdkContext().randomResourceName("docDb", 10);
  32. final String rgName = azure.sdkContext().randomResourceName("rgNEMV", 24);
  33. try {
  34. //============================================================
  35. // Create a CosmosDB
  36. System.out.println("Creating a CosmosDB...");
  37. CosmosDBAccount cosmosDBAccount = azure.cosmosDBAccounts().define(docDBName)
  38. .withRegion(Region.US_EAST)
  39. .withNewResourceGroup(rgName)
  40. .withKind(DatabaseAccountKind.MONGO_DB)
  41. .withEventualConsistency()
  42. .withWriteReplication(Region.US_WEST)
  43. .withReadReplication(Region.US_CENTRAL)
  44. .create();
  45. System.out.println("Created CosmosDB");
  46. Utils.print(cosmosDBAccount);
  47. System.out.println("Get the MongoDB connection string");
  48. DatabaseAccountListConnectionStringsResult databaseAccountListConnectionStringsResult = cosmosDBAccount.listConnectionStrings();
  49. System.out.println("MongoDB connection string: "
  50. + databaseAccountListConnectionStringsResult.connectionStrings().get(0).connectionString());
  51. //============================================================
  52. // Delete CosmosDB
  53. System.out.println("Deleting the CosmosDB");
  54. // work around CosmosDB service issue returning 404 CloudException on delete operation
  55. try {
  56. azure.cosmosDBAccounts().deleteById(cosmosDBAccount.id());
  57. } catch (CloudException e) {
  58. }
  59. System.out.println("Deleted the CosmosDB");
  60. return true;
  61. } catch (Exception e) {
  62. System.err.println(e.getMessage());
  63. } finally {
  64. try {
  65. System.out.println("Deleting resource group: " + rgName);
  66. azure.resourceGroups().beginDeleteByName(rgName);
  67. System.out.println("Deleted resource group: " + rgName);
  68. } catch (NullPointerException npe) {
  69. System.out.println("Did not create any resources in Azure. No clean up is necessary");
  70. } catch (Exception g) {
  71. g.printStackTrace();
  72. }
  73. }
  74. return false;
  75. }
  76. /**
  77. * Main entry point.
  78. * @param args the parameters
  79. */
  80. public static void main(String[] args) {
  81. try {
  82. //=============================================================
  83. // Authenticate
  84. final AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE, true);
  85. final TokenCredential credential = new DefaultAzureCredentialBuilder()
  86. .authorityHost(profile.environment().getActiveDirectoryEndpoint())
  87. .build();
  88. Azure azure = Azure
  89. .configure()
  90. .withLogLevel(HttpLogDetailLevel.BASIC)
  91. .authenticate(credential, profile)
  92. .withDefaultSubscription();
  93. // Print selected subscription
  94. System.out.println("Selected subscription: " + azure.subscriptionId());
  95. runSample(azure);
  96. } catch (Exception e) {
  97. System.out.println(e.getMessage());
  98. e.printStackTrace();
  99. }
  100. }
  101. private CreateCosmosDBWithKindMongoDB() {
  102. }
  103. }