Microsoft.ContainerService managedClusters/maintenanceConfigurations 2022-04-02-preview
- Latest
- 2024-09-02-preview
- 2024-09-01
- 2024-08-01
- 2024-07-02-preview
- 2024-07-01
- 2024-06-02-preview
- 2024-05-01
- 2024-04-02-preview
- 2024-03-02-preview
- 2024-02-01
- 2024-01-02-preview
- 2024-01-01
- 2023-11-02-preview
- 2023-11-01
- 2023-10-02-preview
- 2023-10-01
- 2023-09-02-preview
- 2023-09-01
- 2023-08-02-preview
- 2023-08-01
- 2023-07-02-preview
- 2023-07-01
- 2023-06-02-preview
- 2023-06-01
- 2023-05-02-preview
- 2023-05-01
- 2023-04-02-preview
- 2023-04-01
- 2023-03-02-preview
- 2023-03-01
- 2023-02-02-preview
- 2023-02-01
- 2023-01-02-preview
- 2023-01-01
- 2022-11-02-preview
- 2022-11-01
- 2022-10-02-preview
- 2022-09-01
- 2022-08-03-preview
- 2022-08-02-preview
- 2022-07-01
- 2022-06-01
- 2022-05-02-preview
- 2022-04-02-preview
- 2022-04-01
- 2022-03-02-preview
- 2022-03-01
- 2022-02-02-preview
- 2022-02-01
- 2022-01-02-preview
- 2022-01-01
- 2021-11-01-preview
- 2021-10-01
- 2021-09-01
- 2021-08-01
- 2021-07-01
- 2021-05-01
- 2021-03-01
- 2021-02-01
- 2020-12-01
Bicep resource definition
The managedClusters/maintenanceConfigurations resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
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:
- Resource groups - See resource group deployment commands
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 |