SshPublicKey Class

Contains information about SSH certificate public key and the path on the Linux VM where the public key is placed.

Inheritance
azure.mgmt.compute._serialization.Model
SshPublicKey

Constructor

SshPublicKey(*, path: str | None = None, key_data: str | None = None, **kwargs: Any)

Keyword-Only Parameters

Name Description
path
str

Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys.

key_data
str

SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. <br>``<br> For creating ssh keys, see Create SSH keys on Linux and Mac for Linux VMs in Azure. # pylint: disable=line-too-long

Variables

Name Description
path
str

Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys.

key_data
str

SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. <br>``<br> For creating ssh keys, see Create SSH keys on Linux and Mac for Linux VMs in Azure. # pylint: disable=line-too-long