Skip to content

Commit 707dfe8

Browse files
1 parent 9d55203 commit 707dfe8

File tree

28 files changed

+736
-41
lines changed

28 files changed

+736
-41
lines changed

docs-ref-autogen/Latest-version/latest/TOC.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,6 +1005,32 @@
10051005
- az connectedvmware
10061006
no-loc:
10071007
- Arc-enabled VMware vSphere
1008+
- name: Arize AI
1009+
items:
1010+
- name: Commands
1011+
uid: sp-Arize_AI
1012+
displayName: Arize AI
1013+
- name: arize-ai
1014+
items:
1015+
- name: Commands
1016+
uid: az_arize-ai
1017+
displayName: az arize-ai
1018+
- name: observability-eval
1019+
items:
1020+
- name: Commands
1021+
uid: az_arize-ai_observability-eval
1022+
displayName: az arize-ai observability-eval
1023+
- name: organization
1024+
uid: az_arize-ai_observability-eval_organization
1025+
displayName: az arize-ai observability-eval organization
1026+
no-loc:
1027+
- az arize-ai observability-eval organization
1028+
no-loc:
1029+
- az arize-ai observability-eval
1030+
no-loc:
1031+
- az arize-ai
1032+
no-loc:
1033+
- Arize AI
10081034
- name: Astronomer
10091035
items:
10101036
- name: Commands

docs-ref-autogen/Latest-version/latest/acat/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ directCommands:
5252
Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
5353
groupName: Properties Arguments
5454
- name: --trigger-time
55-
defaultValue: 2025-07-18 12:00:00
55+
defaultValue: 2025-07-21 12:00:00
5656
summary: |-
5757
Report collection trigger time.
5858
groupName: Properties Arguments

docs-ref-autogen/Latest-version/latest/aks.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,6 +1301,7 @@ directCommands:
13011301
[--enable-imds-restriction]
13021302
[--enable-keda]
13031303
[--enable-managed-identity]
1304+
[--enable-managed-system-pool]
13041305
[--enable-msi-auth-for-monitoring {false, true}]
13051306
[--enable-node-public-ip]
13061307
[--enable-oidc-issuer]
@@ -1535,6 +1536,9 @@ directCommands:
15351536
- summary: |-
15361537
Create a kubernetes cluster with a VirtualMachines nodepool
15371538
syntax: az aks create -g MyResourceGroup -n MyManagedCluster --vm-set-type VirtualMachines --vm-sizes "VMSize1,VMSize2" --node-count 3
1539+
- summary: |-
1540+
Create a kubernetes cluster with a fully managed system node pool
1541+
syntax: az aks create -g MyResourceGroup -n MyManagedCluster --enable-managed-system-pool
15381542
requiredParameters:
15391543
- isRequired: true
15401544
name: --name -n
@@ -1849,6 +1853,13 @@ directCommands:
18491853
- name: --enable-managed-identity
18501854
summary: |-
18511855
Using managed identity to manage cluster resource group. You can explicitly specify "--service-principal" and "--client-secret" to disable managed identity, otherwise it will be enabled.
1856+
- name: --enable-managed-system-pool
1857+
defaultValue: "False"
1858+
summary: |-
1859+
Create a default ManagedSystem mode that is fully managed by AKS.
1860+
description: |-
1861+
When set, the default system node pool is created with ManagedSystem mode, where all properties except name and mode are managed by AKS. Learn more at https://aka.ms/aks/nodepool/mode.
1862+
isPreview: true
18521863
- name: --enable-msi-auth-for-monitoring
18531864
defaultValue: "True"
18541865
acceptedValues: false, true

docs-ref-autogen/Latest-version/latest/aks/nodepool.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,15 @@ directCommands:
371371
[--kubernetes-version]
372372
[--labels]
373373
[--linux-os-config]
374+
[--localdns-config]
374375
[--max-blocked-nodes]
375376
[--max-count]
376377
[--max-pods]
377378
[--max-surge]
378379
[--max-unavailable]
379380
[--message-of-the-day]
380381
[--min-count]
381-
[--mode {Gateway, System, User}]
382+
[--mode {Gateway, ManagedSystem, System, User}]
382383
[--no-wait]
383384
[--node-count]
384385
[--node-osdisk-size]
@@ -433,6 +434,9 @@ directCommands:
433434
- summary: |-
434435
Create a nodepool of type VirtualMachines
435436
syntax: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --vm-set-type VirtualMachines --vm-sizes "Standard_D4s_v3,Standard_D8s_v3" --node-count 3
437+
- summary: |-
438+
Create a nodepool with ManagedSystem mode
439+
syntax: az aks nodepool add -g MyResourceGroup -n managedsystem1 --cluster-name MyManagedCluster --mode ManagedSystem
436440
requiredParameters:
437441
- isRequired: true
438442
name: --cluster-name
@@ -552,6 +556,9 @@ directCommands:
552556
- name: --linux-os-config
553557
summary: |-
554558
OS configurations for Linux agent nodes.
559+
- name: --localdns-config
560+
summary: |-
561+
Set the localDNS Profile for a nodepool with a JSON config file.
555562
- name: --max-blocked-nodes
556563
summary: |-
557564
The maximum number or percentage of extra nodes that are allowed to be blocked in the agent pool during an upgrade when undrainable node behavior is Cordon. When specified, it represents the number or percent used, eg. 1 or 5%.
@@ -578,9 +585,9 @@ directCommands:
578585
Minimun nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. Please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.
579586
- name: --mode
580587
defaultValue: User
581-
acceptedValues: Gateway, System, User
588+
acceptedValues: Gateway, ManagedSystem, System, User
582589
summary: |-
583-
The mode for a node pool which defines a node pool's primary function. If set as "System", AKS prefers system pods scheduling to node pools with mode `System`. Learn more at https://aka.ms/aks/nodepool/mode.
590+
The mode for a node pool which defines a node pool's primary function. If set as "System", AKS prefers system pods scheduling to node pools with mode `System`. If set as "ManagedSystem", all other properties except name and mode will be reset and managed by AKS. Learn more at https://aka.ms/aks/nodepool/mode.
584591
- name: --no-wait
585592
defaultValue: "False"
586593
summary: |-
@@ -2018,12 +2025,13 @@ directCommands:
20182025
[--if-match]
20192026
[--if-none-match]
20202027
[--labels]
2028+
[--localdns-config]
20212029
[--max-blocked-nodes]
20222030
[--max-count]
20232031
[--max-surge]
20242032
[--max-unavailable]
20252033
[--min-count]
2026-
[--mode {Gateway, System, User}]
2034+
[--mode {Gateway, ManagedSystem, System, User}]
20272035
[--no-wait]
20282036
[--node-soak-duration]
20292037
[--node-taints]
@@ -2136,6 +2144,9 @@ directCommands:
21362144
- name: --labels
21372145
summary: |-
21382146
The node labels for the node pool. See https://aka.ms/node-labels for syntax of labels.
2147+
- name: --localdns-config
2148+
summary: |-
2149+
Set the localDNS Profile for a nodepool with a JSON config file.
21392150
- name: --max-blocked-nodes
21402151
summary: |-
21412152
The maximum number or percentage of extra nodes that are allowed to be blocked in the agent pool during an upgrade when undrainable node behavior is Cordon. When specified, it represents the number or percent used, eg. 1 or 5%.
@@ -2152,9 +2163,9 @@ directCommands:
21522163
summary: |-
21532164
Minimun nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. Please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.
21542165
- name: --mode
2155-
acceptedValues: Gateway, System, User
2166+
acceptedValues: Gateway, ManagedSystem, System, User
21562167
summary: |-
2157-
The mode for a node pool which defines a node pool's primary function. If set as "System", AKS prefers system pods scheduling to node pools with mode `System`. Learn more at https://aka.ms/aks/nodepool/mode.
2168+
The mode for a node pool which defines a node pool's primary function. If set as "System", AKS prefers system pods scheduling to node pools with mode `System`. If set as "ManagedSystem", all other properties except name and mode will be rejected and managed by AKS. Learn more at https://aka.ms/aks/nodepool/mode.
21582169
- name: --no-wait
21592170
defaultValue: "False"
21602171
summary: |-

docs-ref-autogen/Latest-version/latest/ams/asset.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ directCommands:
215215
The name of the Azure Media Services account.
216216
groupName: Resource Id Arguments
217217
- name: --expiry
218-
defaultValue: 2025-07-19 10:11:07.725755
218+
defaultValue: 2025-07-22 10:09:57.683105
219219
summary: |-
220220
Specifies the UTC datetime (Y-m-d'T'H:M:S'Z') at which the SAS becomes invalid. This must be less than 24 hours from the current time.
221221
- name: --ids
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### YamlMime:AzureCLIGroup
2+
uid: az_arize-ai
3+
name: az arize-ai
4+
extensionInformation: |-
5+
> [!NOTE]
6+
> This reference is part of the **arize-ai** extension for the Azure CLI (version 2.75.0 or higher). The extension will automatically install the first time you run an **az arize-ai** command. [Learn more](https://learn.microsoft.com/cli/azure/azure-cli-extensions-overview) about extensions.
7+
summary: |-
8+
Manage Arize Ai.
9+
status: GA
10+
sourceType: Extension
11+
commands:
12+
- az_arize-ai_observability-eval
13+
- az_arize-ai_observability-eval_organization
14+
- az_arize-ai_observability-eval_organization_create
15+
- az_arize-ai_observability-eval_organization_delete
16+
- az_arize-ai_observability-eval_organization_list
17+
- az_arize-ai_observability-eval_organization_show
18+
- az_arize-ai_observability-eval_organization_update
19+
- az_arize-ai_observability-eval_organization_wait
20+
metadata:
21+
description: Manage Arize Ai.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
### YamlMime:AzureCLIGroup
2+
uid: az_arize-ai_observability-eval
3+
name: az arize-ai observability-eval
4+
extensionInformation: |-
5+
> [!NOTE]
6+
> This reference is part of the **arize-ai** extension for the Azure CLI (version 2.75.0 or higher). The extension will automatically install the first time you run an **az arize-ai observability-eval** command. [Learn more](https://learn.microsoft.com/cli/azure/azure-cli-extensions-overview) about extensions.
7+
summary: |-
8+
Manage Observability Eval.
9+
status: GA
10+
sourceType: Extension
11+
commands:
12+
- az_arize-ai_observability-eval_organization
13+
- az_arize-ai_observability-eval_organization_create
14+
- az_arize-ai_observability-eval_organization_delete
15+
- az_arize-ai_observability-eval_organization_list
16+
- az_arize-ai_observability-eval_organization_show
17+
- az_arize-ai_observability-eval_organization_update
18+
- az_arize-ai_observability-eval_organization_wait
19+
metadata:
20+
description: Manage Observability Eval.

0 commit comments

Comments
 (0)