/sdk/datamigration/mgmt-v2018_07_15_preview/src/main/java/com/microsoft/azure/management/datamigration/v2018_07_15_preview/MongoDbShardKeySetting.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 70 lines · 23 code · 9 blank · 38 comment · 0 complexity · 567125795c2cc6622c2ec669549ba2ed MD5 · raw file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.management.datamigration.v2018_07_15_preview;
  9. import java.util.List;
  10. import com.fasterxml.jackson.annotation.JsonProperty;
  11. /**
  12. * Describes a MongoDB shard key.
  13. */
  14. public class MongoDbShardKeySetting {
  15. /**
  16. * The fields within the shard key.
  17. */
  18. @JsonProperty(value = "fields", required = true)
  19. private List<MongoDbShardKeyField> fields;
  20. /**
  21. * Whether the shard key is unique.
  22. */
  23. @JsonProperty(value = "isUnique", required = true)
  24. private boolean isUnique;
  25. /**
  26. * Get the fields within the shard key.
  27. *
  28. * @return the fields value
  29. */
  30. public List<MongoDbShardKeyField> fields() {
  31. return this.fields;
  32. }
  33. /**
  34. * Set the fields within the shard key.
  35. *
  36. * @param fields the fields value to set
  37. * @return the MongoDbShardKeySetting object itself.
  38. */
  39. public MongoDbShardKeySetting withFields(List<MongoDbShardKeyField> fields) {
  40. this.fields = fields;
  41. return this;
  42. }
  43. /**
  44. * Get whether the shard key is unique.
  45. *
  46. * @return the isUnique value
  47. */
  48. public boolean isUnique() {
  49. return this.isUnique;
  50. }
  51. /**
  52. * Set whether the shard key is unique.
  53. *
  54. * @param isUnique the isUnique value to set
  55. * @return the MongoDbShardKeySetting object itself.
  56. */
  57. public MongoDbShardKeySetting withIsUnique(boolean isUnique) {
  58. this.isUnique = isUnique;
  59. return this;
  60. }
  61. }