Uses of Class
com.azure.compute.batch.models.BatchNodeUserUpdateContent
Packages that use BatchNodeUserUpdateContent
Package
Description
Package containing the classes for Batch.
Package containing the data models for Batch.
-
Uses of BatchNodeUserUpdateContent in com.azure.compute.batch
Methods in com.azure.compute.batch with parameters of type BatchNodeUserUpdateContentModifier and TypeMethodDescriptionBatchAsyncClient.replaceNodeUser
(String poolId, String nodeId, String userName, BatchNodeUserUpdateContent content) Updates the password and expiration time of a user Account on the specified Compute Node.BatchAsyncClient.replaceNodeUser
(String poolId, String nodeId, String userName, BatchNodeUserUpdateContent content, ReplaceBatchNodeUserOptions options) Updates the password and expiration time of a user Account on the specified Compute Node.void
BatchClient.replaceNodeUser
(String poolId, String nodeId, String userName, BatchNodeUserUpdateContent content) Updates the password and expiration time of a user Account on the specified Compute Node.void
BatchClient.replaceNodeUser
(String poolId, String nodeId, String userName, BatchNodeUserUpdateContent content, ReplaceBatchNodeUserOptions options) Updates the password and expiration time of a user Account on the specified Compute Node. -
Uses of BatchNodeUserUpdateContent in com.azure.compute.batch.models
Methods in com.azure.compute.batch.models that return BatchNodeUserUpdateContentModifier and TypeMethodDescriptionstatic BatchNodeUserUpdateContent
BatchNodeUserUpdateContent.fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of BatchNodeUserUpdateContent from the JsonReader.BatchNodeUserUpdateContent.setExpiryTime
(OffsetDateTime expiryTime) Set the expiryTime property: The time at which the Account should expire.BatchNodeUserUpdateContent.setPassword
(String password) Set the password property: The password of the Account.BatchNodeUserUpdateContent.setSshPublicKey
(String sshPublicKey) Set the sshPublicKey property: The SSH public key that can be used for remote login to the Compute Node.