# get\_vsphere\_live\_mount

Retrieve summary information about Live Mount activity for a VM

```python
def get_vsphere_live_mount(vm_name, timeout=15)
```

## Arguments

| Name     | Type | Description                         | Choices |
| -------- | ---- | ----------------------------------- | ------- |
| vm\_name | str  | The name of the mounted vSphere VM. |         |

## Keyword Arguments

| Name    | Type | Description                                                                                                  | Choices | Default |
| ------- | ---- | ------------------------------------------------------------------------------------------------------------ | ------- | ------- |
| timeout | int  | The number of seconds to wait to establish a connection the Rubrik cluster before returning a timeout error. |         | 15      |

## Returns

| Type | Return Value                                                      |
| ---- | ----------------------------------------------------------------- |
| dict | The full response of `GET /v1/vmware/vm/snapshot/mount?vm_id={}`. |

## Example

```python
import rubrik_cdm

rubrik = rubrik_cdm.Connect()

vm_name = "python-sdk-demo"

live_mount = rubrik.get_vsphere_live_mount(vm_name)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rubrik.gitbook.io/rubrik-sdk-for-python/data-management-functions/get_vsphere_live_mount.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
