Share via


BatchNodeUserUpdateContent Class

Definition

Parameters for updating a user account for RDP or SSH access on an Azure Batch Compute Node.

public class BatchNodeUserUpdateContent : System.ClientModel.Primitives.IJsonModel<Azure.Compute.Batch.BatchNodeUserUpdateContent>, System.ClientModel.Primitives.IPersistableModel<Azure.Compute.Batch.BatchNodeUserUpdateContent>
type BatchNodeUserUpdateContent = class
    interface IJsonModel<BatchNodeUserUpdateContent>
    interface IPersistableModel<BatchNodeUserUpdateContent>
Public Class BatchNodeUserUpdateContent
Implements IJsonModel(Of BatchNodeUserUpdateContent), IPersistableModel(Of BatchNodeUserUpdateContent)
Inheritance
BatchNodeUserUpdateContent
Implements

Constructors

BatchNodeUserUpdateContent()

Initializes a new instance of BatchNodeUserUpdateContent.

Properties

ExpiryTime

The time at which the Account should expire. If omitted, the default is 1 day from the current time. For Linux Compute Nodes, the expiryTime has a precision up to a day.

Password

The password of the Account. The password is required for Windows Compute Nodes (those 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.

SshPublicKey

The SSH public key that can be used for remote login to the Compute Node. 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.

Explicit Interface Implementations

IJsonModel<BatchNodeUserUpdateContent>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<BatchNodeUserUpdateContent>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<BatchNodeUserUpdateContent>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<BatchNodeUserUpdateContent>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<BatchNodeUserUpdateContent>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to