VirtualClustersOperations Class
VirtualClustersOperations operations.
You should not instantiate this class directly. Instead, you should create a Client instance that instantiates it for you and attaches it as an attribute.
- Inheritance
-
builtins.objectVirtualClustersOperations
Constructor
VirtualClustersOperations(client, config, serializer, deserializer)
Parameters
Name | Description |
---|---|
client
Required
|
Client for service requests. |
config
Required
|
Configuration of service client. |
serializer
Required
|
An object model serializer. |
deserializer
Required
|
An object model deserializer. |
Variables
Name | Description |
---|---|
models
|
Alias to model classes used in this operation group. |
Methods
begin_delete |
Deletes a virtual cluster. |
begin_update |
Updates a virtual cluster. |
get |
Gets a virtual cluster. |
list |
Gets a list of all virtualClusters in the subscription. |
list_by_resource_group |
Gets a list of virtual clusters in a resource group. |
update_dns_servers |
Synchronizes the DNS server settings used by the managed instances inside the given virtual cluster. |
begin_delete
Deletes a virtual cluster.
begin_delete(resource_group_name: str, virtual_cluster_name: str, **kwargs: Any) -> LROPoller[None]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
virtual_cluster_name
Required
|
The name of the virtual cluster. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
continuation_token
|
A continuation token to restart a poller from a saved state. |
polling
|
By default, your polling method will be ARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. |
polling_interval
|
Default waiting time between two polls for LRO operations if no Retry-After header is present. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
begin_update
Updates a virtual cluster.
begin_update(resource_group_name: str, virtual_cluster_name: str, parameters: '_models.VirtualClusterUpdate', **kwargs: Any) -> LROPoller['_models.VirtualCluster']
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
virtual_cluster_name
Required
|
The name of the virtual cluster. |
parameters
Required
|
The requested virtual cluster resource state. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
continuation_token
|
A continuation token to restart a poller from a saved state. |
polling
|
By default, your polling method will be ARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. |
polling_interval
|
Default waiting time between two polls for LRO operations if no Retry-After header is present. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either VirtualCluster or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get
Gets a virtual cluster.
get(resource_group_name: str, virtual_cluster_name: str, **kwargs: Any) -> _models.VirtualCluster
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
virtual_cluster_name
Required
|
The name of the virtual cluster. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
VirtualCluster, or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list
Gets a list of all virtualClusters in the subscription.
list(**kwargs: Any) -> Iterable['_models.VirtualClusterListResult']
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
An iterator like instance of either VirtualClusterListResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_by_resource_group
Gets a list of virtual clusters in a resource group.
list_by_resource_group(resource_group_name: str, **kwargs: Any) -> Iterable['_models.VirtualClusterListResult']
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
An iterator like instance of either VirtualClusterListResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
update_dns_servers
Synchronizes the DNS server settings used by the managed instances inside the given virtual cluster.
update_dns_servers(resource_group_name: str, virtual_cluster_name: str, **kwargs: Any) -> _models.UpdateManagedInstanceDnsServersOperation
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
virtual_cluster_name
Required
|
The name of the virtual cluster. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
UpdateManagedInstanceDnsServersOperation, or the result of cls(response) |
Exceptions
Type | Description |
---|---|
Attributes
models
models = <module 'azure.mgmt.sql.models' from 'C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\azure\\mgmt\\sql\\models\\__init__.py'>
Azure SDK for Python