You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add private link resource commands: `az horizondb private-link-resource list/show`.
10
+
6
11
1.0.0b5
7
12
+++++++
8
13
* Add support for configuring public access on HorizonDB clusters through `az horizondb create --public-access` and `az horizondb update --public-access`. Supplying an IP address or range automatically creates a firewall rule.
short-summary: Show details of a HorizonDB private endpoint connection.
153
+
examples:
154
+
- name: Show a private endpoint connection by cluster and connection name.
155
+
text: az horizondb private-endpoint-connection show --resource-group exampleresourcegroup --cluster-name examplecluster --name exampleconnection
156
+
- name: Show a private endpoint connection by resource ID.
157
+
text: az horizondb private-endpoint-connection show --id /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.HorizonDb/clusters/{clusterName}/privateEndpointConnections/{connectionName}
help='The administrator login name for the cluster.',
@@ -73,6 +72,29 @@ def _horizondb_params():
73
72
parameter_group_arg_type=CLIArgumentType(
74
73
options_list=['--parameter-group'],
75
74
help='The resource ID of the parameter group.')
75
+
cluster_name_resource_arg_type=CLIArgumentType(
76
+
metavar='NAME',
77
+
options_list=['--cluster-name', '-c'],
78
+
id_part=None,
79
+
help="Name of the cluster. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.",
0 commit comments