Microsoft.ContainerService managedClusters/maintenanceConfigurations 2022-04-02-preview

Bicep resource definition

The managedClusters/maintenanceConfigurations 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/managedClusters/maintenanceConfigurations resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.ContainerService/managedClusters/maintenanceConfigurations@2022-04-02-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    notAllowedTime: [
      {
        end: 'string'
        start: 'string'
      }
    ]
    timeInWeek: [
      {
        day: 'string'
        hourSlots: [
          int
        ]
      }
    ]
  }
}

Property values

MaintenanceConfigurationProperties

Name Description Value
notAllowedTime Time slots on which upgrade is not allowed. TimeSpan[]
timeInWeek If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. TimeInWeek[]

Microsoft.ContainerService/managedClusters/maintenanceConfigurations

Name Description Value
name The resource name string (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: managedClusters
properties Properties of a default maintenance configuration. MaintenanceConfigurationProperties

TimeInWeek

Name Description Value
day The day of the week. 'Friday'
'Monday'
'Saturday'
'Sunday'
'Thursday'
'Tuesday'
'Wednesday'
hourSlots Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. int

Constraints:
Min value = 0
Max value = 23[]

TimeSpan

Name Description Value
end The end of a time span string
start The start of a time span string

ARM template resource definition

The managedClusters/maintenanceConfigurations 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/managedClusters/maintenanceConfigurations resource, add the following JSON to your template.

{
  "type": "Microsoft.ContainerService/managedClusters/maintenanceConfigurations",
  "apiVersion": "2022-04-02-preview",
  "name": "string",
  "properties": {
    "notAllowedTime": [
      {
        "end": "string",
        "start": "string"
      }
    ],
    "timeInWeek": [
      {
        "day": "string",
        "hourSlots": [ "int" ]
      }
    ]
  }
}

Property values

MaintenanceConfigurationProperties

Name Description Value
notAllowedTime Time slots on which upgrade is not allowed. TimeSpan[]
timeInWeek If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. TimeInWeek[]

Microsoft.ContainerService/managedClusters/maintenanceConfigurations

Name Description Value
apiVersion The api version '2022-04-02-preview'
name The resource name string (required)
properties Properties of a default maintenance configuration. MaintenanceConfigurationProperties
type The resource type 'Microsoft.ContainerService/managedClusters/maintenanceConfigurations'

TimeInWeek

Name Description Value
day The day of the week. 'Friday'
'Monday'
'Saturday'
'Sunday'
'Thursday'
'Tuesday'
'Wednesday'
hourSlots Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. int

Constraints:
Min value = 0
Max value = 23[]

TimeSpan

Name Description Value
end The end of a time span string
start The start of a time span string

Terraform (AzAPI provider) resource definition

The managedClusters/maintenanceConfigurations 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/managedClusters/maintenanceConfigurations resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.ContainerService/managedClusters/maintenanceConfigurations@2022-04-02-preview"
  name = "string"
  body = jsonencode({
    properties = {
      notAllowedTime = [
        {
          end = "string"
          start = "string"
        }
      ]
      timeInWeek = [
        {
          day = "string"
          hourSlots = [
            int
          ]
        }
      ]
    }
  })
}

Property values

MaintenanceConfigurationProperties

Name Description Value
notAllowedTime Time slots on which upgrade is not allowed. TimeSpan[]
timeInWeek If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. TimeInWeek[]

Microsoft.ContainerService/managedClusters/maintenanceConfigurations

Name Description Value
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: managedClusters
properties Properties of a default maintenance configuration. MaintenanceConfigurationProperties
type The resource type "Microsoft.ContainerService/managedClusters/maintenanceConfigurations@2022-04-02-preview"

TimeInWeek

Name Description Value
day The day of the week. 'Friday'
'Monday'
'Saturday'
'Sunday'
'Thursday'
'Tuesday'
'Wednesday'
hourSlots Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. int

Constraints:
Min value = 0
Max value = 23[]

TimeSpan

Name Description Value
end The end of a time span string
start The start of a time span string