/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
- /**
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- */
- package com.microsoft.azure.management.datamigration.v2018_07_15_preview;
- import java.util.List;
- import com.fasterxml.jackson.annotation.JsonProperty;
- /**
- * Describes a MongoDB shard key.
- */
- public class MongoDbShardKeySetting {
- /**
- * The fields within the shard key.
- */
- @JsonProperty(value = "fields", required = true)
- private List<MongoDbShardKeyField> fields;
- /**
- * Whether the shard key is unique.
- */
- @JsonProperty(value = "isUnique", required = true)
- private boolean isUnique;
- /**
- * Get the fields within the shard key.
- *
- * @return the fields value
- */
- public List<MongoDbShardKeyField> fields() {
- return this.fields;
- }
- /**
- * Set the fields within the shard key.
- *
- * @param fields the fields value to set
- * @return the MongoDbShardKeySetting object itself.
- */
- public MongoDbShardKeySetting withFields(List<MongoDbShardKeyField> fields) {
- this.fields = fields;
- return this;
- }
- /**
- * Get whether the shard key is unique.
- *
- * @return the isUnique value
- */
- public boolean isUnique() {
- return this.isUnique;
- }
- /**
- * Set whether the shard key is unique.
- *
- * @param isUnique the isUnique value to set
- * @return the MongoDbShardKeySetting object itself.
- */
- public MongoDbShardKeySetting withIsUnique(boolean isUnique) {
- this.isUnique = isUnique;
- return this;
- }
- }