/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/NodeUpdateUserParameter.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 110 lines · 32 code · 12 blank · 66 comment · 0 complexity · 6286353886a49895177099b47025690a 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.batch.protocol.models;
  9. import org.joda.time.DateTime;
  10. import com.fasterxml.jackson.annotation.JsonProperty;
  11. /**
  12. * The set of changes to be made to a user Account on a Compute Node.
  13. */
  14. public class NodeUpdateUserParameter {
  15. /**
  16. * The password of the Account.
  17. * The password is required for Windows Compute Nodes (those created with
  18. * 'cloudServiceConfiguration', or created with
  19. * 'virtualMachineConfiguration' using a Windows Image reference). For
  20. * Linux Compute Nodes, the password can optionally be specified along with
  21. * the sshPublicKey property. If omitted, any existing password is removed.
  22. */
  23. @JsonProperty(value = "password")
  24. private String password;
  25. /**
  26. * The time at which the Account should expire.
  27. * If omitted, the default is 1 day from the current time. For Linux
  28. * Compute Nodes, the expiryTime has a precision up to a day.
  29. */
  30. @JsonProperty(value = "expiryTime")
  31. private DateTime expiryTime;
  32. /**
  33. * The SSH public key that can be used for remote login to the Compute
  34. * Node.
  35. * The public key should be compatible with OpenSSH encoding and should be
  36. * base 64 encoded. This property can be specified only for Linux Compute
  37. * Nodes. If this is specified for a Windows Compute Node, then the Batch
  38. * service rejects the request; if you are calling the REST API directly,
  39. * the HTTP status code is 400 (Bad Request). If omitted, any existing SSH
  40. * public key is removed.
  41. */
  42. @JsonProperty(value = "sshPublicKey")
  43. private String sshPublicKey;
  44. /**
  45. * Get the password is required for Windows Compute Nodes (those created with 'cloudServiceConfiguration', or created with 'virtualMachineConfiguration' using a Windows Image reference). For Linux Compute Nodes, the password can optionally be specified along with the sshPublicKey property. If omitted, any existing password is removed.
  46. *
  47. * @return the password value
  48. */
  49. public String password() {
  50. return this.password;
  51. }
  52. /**
  53. * Set the password is required for Windows Compute Nodes (those created with 'cloudServiceConfiguration', or created with 'virtualMachineConfiguration' using a Windows Image reference). For Linux Compute Nodes, the password can optionally be specified along with the sshPublicKey property. If omitted, any existing password is removed.
  54. *
  55. * @param password the password value to set
  56. * @return the NodeUpdateUserParameter object itself.
  57. */
  58. public NodeUpdateUserParameter withPassword(String password) {
  59. this.password = password;
  60. return this;
  61. }
  62. /**
  63. * Get if omitted, the default is 1 day from the current time. For Linux Compute Nodes, the expiryTime has a precision up to a day.
  64. *
  65. * @return the expiryTime value
  66. */
  67. public DateTime expiryTime() {
  68. return this.expiryTime;
  69. }
  70. /**
  71. * Set if omitted, the default is 1 day from the current time. For Linux Compute Nodes, the expiryTime has a precision up to a day.
  72. *
  73. * @param expiryTime the expiryTime value to set
  74. * @return the NodeUpdateUserParameter object itself.
  75. */
  76. public NodeUpdateUserParameter withExpiryTime(DateTime expiryTime) {
  77. this.expiryTime = expiryTime;
  78. return this;
  79. }
  80. /**
  81. * Get the public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux Compute Nodes. If this is specified for a Windows Compute Node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request). If omitted, any existing SSH public key is removed.
  82. *
  83. * @return the sshPublicKey value
  84. */
  85. public String sshPublicKey() {
  86. return this.sshPublicKey;
  87. }
  88. /**
  89. * Set the public key should be compatible with OpenSSH encoding and should be base 64 encoded. This property can be specified only for Linux Compute Nodes. If this is specified for a Windows Compute Node, then the Batch service rejects the request; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request). If omitted, any existing SSH public key is removed.
  90. *
  91. * @param sshPublicKey the sshPublicKey value to set
  92. * @return the NodeUpdateUserParameter object itself.
  93. */
  94. public NodeUpdateUserParameter withSshPublicKey(String sshPublicKey) {
  95. this.sshPublicKey = sshPublicKey;
  96. return this;
  97. }
  98. }