Microsoft.ContainerService aiManagers/namespaces

Bicep resource definition

The aiManagers/namespaces resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.ContainerService/aiManagers/namespaces resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.ContainerService/aiManagers/namespaces@2026-09-02-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    annotations: {
      {customized property}: 'string'
    }
    labels: {
      {customized property}: 'string'
    }
  }
}

Property Values

Microsoft.ContainerService/aiManagers/namespaces

Name Description Value
name The resource name string

Constraints:
Min length = 1
Max length = 63
Pattern = ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: aiManagers
properties The resource-specific properties for this resource. AIManagerNamespaceProperties

AIManagerNamespaceProperties

Name Description Value
annotations Annotations applied to the Kubernetes namespace. AIManagerNamespacePropertiesAnnotations
labels Labels applied to the Kubernetes namespace. AIManagerNamespacePropertiesLabels

AIManagerNamespacePropertiesAnnotations

Name Description Value

AIManagerNamespacePropertiesLabels

Name Description Value

ARM template resource definition

The aiManagers/namespaces resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Microsoft.ContainerService/aiManagers/namespaces resource, add the following JSON to your template.

{
  "type": "Microsoft.ContainerService/aiManagers/namespaces",
  "apiVersion": "2026-09-02-preview",
  "name": "string",
  "properties": {
    "annotations": {
      "{customized property}": "string"
    },
    "labels": {
      "{customized property}": "string"
    }
  }
}

Property Values

Microsoft.ContainerService/aiManagers/namespaces

Name Description Value
apiVersion The api version '2026-09-02-preview'
name The resource name string

Constraints:
Min length = 1
Max length = 63
Pattern = ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ (required)
properties The resource-specific properties for this resource. AIManagerNamespaceProperties
type The resource type 'Microsoft.ContainerService/aiManagers/namespaces'

AIManagerNamespaceProperties

Name Description Value
annotations Annotations applied to the Kubernetes namespace. AIManagerNamespacePropertiesAnnotations
labels Labels applied to the Kubernetes namespace. AIManagerNamespacePropertiesLabels

AIManagerNamespacePropertiesAnnotations

Name Description Value

AIManagerNamespacePropertiesLabels

Name Description Value

Terraform (AzAPI provider) resource definition

The aiManagers/namespaces resource type can be deployed with operations that target:

  • Resource groups For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.ContainerService/aiManagers/namespaces resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.ContainerService/aiManagers/namespaces@2026-09-02-preview"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      annotations = {
        {customized property} = "string"
      }
      labels = {
        {customized property} = "string"
      }
    }
  }
}

Property Values

Microsoft.ContainerService/aiManagers/namespaces

Name Description Value
name The resource name string

Constraints:
Min length = 1
Max length = 63
Pattern = ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: aiManagers
properties The resource-specific properties for this resource. AIManagerNamespaceProperties
type The resource type "Microsoft.ContainerService/aiManagers/namespaces@2026-09-02-preview"

AIManagerNamespaceProperties

Name Description Value
annotations Annotations applied to the Kubernetes namespace. AIManagerNamespacePropertiesAnnotations
labels Labels applied to the Kubernetes namespace. AIManagerNamespacePropertiesLabels

AIManagerNamespacePropertiesAnnotations

Name Description Value

AIManagerNamespacePropertiesLabels

Name Description Value