Vm_Guest_Filesystem_Transfers_PosixFileAttributesCreateSpec
The Transfers.PosixFileAttributesCreateSpec structure describes creation information about file attributes specific to Posix guest operating systems.
{
"owner_id": 0,
"group_id": 0,
"permissions": "string"
}
The owner ID. If this property is not specified when passing a Transfers.PosixFileAttributesCreateSpec object to Transfers.create, the default value will be the owner Id of the user who invoked the file transfer operation. Defaults to uid of user invoking the operation.
The group ID. If this property is not specified when passing a Transfers.PosixFileAttributesCreateSpec object to Transfers.create, the default value will be the group Id of the user who invoked the file transfer operation. Defaults to gid of user invoking the operation.
The file permissions in chmod(2) format. If this property is not specified when passing a Transfers.PosixFileAttributesCreateSpec object to Transfers.create, the file will be created with 0644 permissions. This field is interpreted as octal. Defaults to 0644.