@pulumi/azure 5.87.0-alpha.1723457899 → 5.87.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/output.d.ts CHANGED
@@ -24478,19 +24478,29 @@ export declare namespace compute {
24478
24478
  /**
24479
24479
  * The Username for which this Public SSH Key should be configured.
24480
24480
  *
24481
- * > **NOTE:** The Azure VM Agent only allows creating SSH Keys at the path `/home/{username}/.ssh/authorized_keys` - as such this public key will be added/appended to the authorized keys file.
24481
+ * > **Note:** The Azure VM Agent only allows creating SSH Keys at the path `/home/{username}/.ssh/authorized_keys` - as such this public key will be added/appended to the authorized keys file.
24482
24482
  */
24483
24483
  username: string;
24484
24484
  }
24485
24485
  interface LinuxVirtualMachineScaleSetAutomaticInstanceRepair {
24486
+ /**
24487
+ * The repair action that will be used for repairing unhealthy virtual machines in the scale set. Possible values include `Replace`, `Restart`, `Reimage`.
24488
+ *
24489
+ * > **Note:** Once the `action` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
24490
+ *
24491
+ * > **Note:** If you wish to update the repair `action` of an existing `automaticInstanceRepair` policy, you must first `disable` the `automaticInstanceRepair` policy before you can re-enable the `automaticInstanceRepair` policy with the new repair `action` defined.
24492
+ */
24493
+ action: string;
24486
24494
  /**
24487
24495
  * Should the automatic instance repair be enabled on this Virtual Machine Scale Set?
24488
24496
  */
24489
24497
  enabled: boolean;
24490
24498
  /**
24491
- * Amount of time (in minutes, between 30 and 90) for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. The time duration should be specified in ISO 8601 format. Defaults to `PT30M`.
24499
+ * Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `10` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT10M` to `PT90M`).
24500
+ *
24501
+ * > **Note:** Once the `gracePeriod` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
24492
24502
  */
24493
- gracePeriod?: string;
24503
+ gracePeriod: string;
24494
24504
  }
24495
24505
  interface LinuxVirtualMachineScaleSetAutomaticOsUpgradePolicy {
24496
24506
  /**
@@ -24506,7 +24516,7 @@ export declare namespace compute {
24506
24516
  /**
24507
24517
  * The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
24508
24518
  *
24509
- * > **NOTE:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics.
24519
+ * > **Note:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics.
24510
24520
  */
24511
24521
  storageAccountUri?: string;
24512
24522
  }
@@ -24522,9 +24532,9 @@ export declare namespace compute {
24522
24532
  /**
24523
24533
  * The ID of the Disk Encryption Set which should be used to encrypt this Data Disk. Changing this forces a new resource to be created.
24524
24534
  *
24525
- * > **NOTE:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
24535
+ * > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
24526
24536
  *
24527
- * > **NOTE:** Disk Encryption Sets are in Public Preview in a limited set of regions
24537
+ * > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
24528
24538
  */
24529
24539
  diskEncryptionSetId?: string;
24530
24540
  /**
@@ -24542,7 +24552,7 @@ export declare namespace compute {
24542
24552
  /**
24543
24553
  * The Type of Storage Account which should back this Data Disk. Possible values include `Standard_LRS`, `StandardSSD_LRS`, `StandardSSD_ZRS`, `Premium_LRS`, `PremiumV2_LRS`, `Premium_ZRS` and `UltraSSD_LRS`.
24544
24554
  *
24545
- * > **NOTE:** `UltraSSD_LRS` is only supported when `ultraSsdEnabled` within the `additionalCapabilities` block is enabled.
24555
+ * > **Note:** `UltraSSD_LRS` is only supported when `ultraSsdEnabled` within the `additionalCapabilities` block is enabled.
24546
24556
  */
24547
24557
  storageAccountType: string;
24548
24558
  /**
@@ -24556,7 +24566,7 @@ export declare namespace compute {
24556
24566
  /**
24557
24567
  * Should Write Accelerator be enabled for this Data Disk? Defaults to `false`.
24558
24568
  *
24559
- * > **NOTE:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
24569
+ * > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
24560
24570
  */
24561
24571
  writeAcceleratorEnabled?: boolean;
24562
24572
  }
@@ -24580,9 +24590,14 @@ export declare namespace compute {
24580
24590
  /**
24581
24591
  * A JSON String which specifies Sensitive Settings (such as Passwords) for the Extension.
24582
24592
  *
24583
- * > **NOTE:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
24593
+ * > **Note:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
24584
24594
  */
24585
24595
  protectedSettings?: string;
24596
+ /**
24597
+ * A `protectedSettingsFromKeyVault` block as defined below.
24598
+ *
24599
+ * > **Note:** `protectedSettingsFromKeyVault` cannot be used with `protectedSettings`
24600
+ */
24586
24601
  protectedSettingsFromKeyVault?: outputs.compute.LinuxVirtualMachineScaleSetExtensionProtectedSettingsFromKeyVault;
24587
24602
  /**
24588
24603
  * An ordered list of Extension names which this should be provisioned after.
@@ -24595,7 +24610,7 @@ export declare namespace compute {
24595
24610
  /**
24596
24611
  * A JSON String which specifies Settings for the Extension.
24597
24612
  *
24598
- * > **NOTE:** Keys within the `settings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
24613
+ * > **Note:** Keys within the `settings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
24599
24614
  */
24600
24615
  settings?: string;
24601
24616
  /**
@@ -24636,7 +24651,7 @@ export declare namespace compute {
24636
24651
  /**
24637
24652
  * Specifies a list of User Assigned Managed Identity IDs to be assigned to this Linux Virtual Machine Scale Set.
24638
24653
  *
24639
- * > **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
24654
+ * > **Note:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
24640
24655
  */
24641
24656
  identityIds?: string[];
24642
24657
  /**
@@ -24680,7 +24695,7 @@ export declare namespace compute {
24680
24695
  /**
24681
24696
  * Is this the Primary IP Configuration?
24682
24697
  *
24683
- * > **NOTE:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
24698
+ * > **Note:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
24684
24699
  */
24685
24700
  primary?: boolean;
24686
24701
  }
@@ -24696,15 +24711,15 @@ export declare namespace compute {
24696
24711
  /**
24697
24712
  * A list of Backend Address Pools ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
24698
24713
  *
24699
- * > **NOTE:** When the Virtual Machine Scale Set is configured to have public IPs per instance are created with a load balancer, the SKU of the Virtual Machine instance IPs is determined by the SKU of the Virtual Machine Scale Sets Load Balancer (e.g. `Basic` or `Standard`). Alternatively, you may use the `publicIpPrefixId` field to generate instance-level IPs in a virtual machine scale set as well. The zonal properties of the prefix will be passed to the Virtual Machine instance IPs, though they will not be shown in the output. To view the public IP addresses assigned to the Virtual Machine Scale Sets Virtual Machine instances use the **az vmss list-instance-public-ips --resource-group `ResourceGroupName` --name `VirtualMachineScaleSetName`** CLI command.
24714
+ * > **Note:** When the Virtual Machine Scale Set is configured to have public IPs per instance are created with a load balancer, the SKU of the Virtual Machine instance IPs is determined by the SKU of the Virtual Machine Scale Sets Load Balancer (e.g. `Basic` or `Standard`). Alternatively, you may use the `publicIpPrefixId` field to generate instance-level IPs in a virtual machine scale set as well. The zonal properties of the prefix will be passed to the Virtual Machine instance IPs, though they will not be shown in the output. To view the public IP addresses assigned to the Virtual Machine Scale Sets Virtual Machine instances use the **az vmss list-instance-public-ips --resource-group `ResourceGroupName` --name `VirtualMachineScaleSetName`** CLI command.
24700
24715
  *
24701
- * > **NOTE:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
24716
+ * > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
24702
24717
  */
24703
24718
  loadBalancerBackendAddressPoolIds?: string[];
24704
24719
  /**
24705
24720
  * A list of NAT Rule ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
24706
24721
  *
24707
- * > **NOTE:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
24722
+ * > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
24708
24723
  */
24709
24724
  loadBalancerInboundNatRulesIds?: string[];
24710
24725
  /**
@@ -24714,7 +24729,7 @@ export declare namespace compute {
24714
24729
  /**
24715
24730
  * Is this the Primary IP Configuration for this Network Interface? Defaults to `false`.
24716
24731
  *
24717
- * > **NOTE:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
24732
+ * > **Note:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
24718
24733
  */
24719
24734
  primary?: boolean;
24720
24735
  /**
@@ -24752,7 +24767,7 @@ export declare namespace compute {
24752
24767
  /**
24753
24768
  * The ID of the Public IP Address Prefix from where Public IP Addresses should be allocated. Changing this forces a new resource to be created.
24754
24769
  *
24755
- * > **NOTE:** This functionality is in Preview and must be opted into via `az feature register --namespace Microsoft.Network --name AllowBringYourOwnPublicIpAddress` and then `az provider register -n Microsoft.Network`.
24770
+ * > **Note:** This functionality is in Preview and must be opted into via `az feature register --namespace Microsoft.Network --name AllowBringYourOwnPublicIpAddress` and then `az provider register -n Microsoft.Network`.
24756
24771
  */
24757
24772
  publicIpPrefixId?: string;
24758
24773
  /**
@@ -24782,29 +24797,29 @@ export declare namespace compute {
24782
24797
  /**
24783
24798
  * The ID of the Disk Encryption Set which should be used to encrypt this OS Disk. Conflicts with `secureVmDiskEncryptionSetId`. Changing this forces a new resource to be created.
24784
24799
  *
24785
- * > **NOTE:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
24800
+ * > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
24786
24801
  *
24787
- * > **NOTE:** Disk Encryption Sets are in Public Preview in a limited set of regions
24802
+ * > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
24788
24803
  */
24789
24804
  diskEncryptionSetId?: string;
24790
24805
  /**
24791
24806
  * The Size of the Internal OS Disk in GB, if you wish to vary from the size used in the image this Virtual Machine Scale Set is sourced from.
24792
24807
  *
24793
- * > **NOTE:** If specified this must be equal to or larger than the size of the Image the VM Scale Set is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
24808
+ * > **Note:** If specified this must be equal to or larger than the size of the Image the VM Scale Set is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
24794
24809
  */
24795
24810
  diskSizeGb: number;
24796
24811
  /**
24797
24812
  * The ID of the Disk Encryption Set which should be used to Encrypt the OS Disk when the Virtual Machine Scale Set is Confidential VMSS. Conflicts with `diskEncryptionSetId`. Changing this forces a new resource to be created.
24798
24813
  *
24799
- * > **NOTE:** `secureVmDiskEncryptionSetId` can only be specified when `securityEncryptionType` is set to `DiskWithVMGuestState`.
24814
+ * > **Note:** `secureVmDiskEncryptionSetId` can only be specified when `securityEncryptionType` is set to `DiskWithVMGuestState`.
24800
24815
  */
24801
24816
  secureVmDiskEncryptionSetId?: string;
24802
24817
  /**
24803
24818
  * Encryption Type when the Virtual Machine Scale Set is Confidential VMSS. Possible values are `VMGuestStateOnly` and `DiskWithVMGuestState`. Changing this forces a new resource to be created.
24804
24819
  *
24805
- * > **NOTE:** `vtpmEnabled` must be set to `true` when `securityEncryptionType` is specified.
24820
+ * > **Note:** `vtpmEnabled` must be set to `true` when `securityEncryptionType` is specified.
24806
24821
  *
24807
- * > **NOTE:** `encryptionAtHostEnabled` cannot be set to `true` when `securityEncryptionType` is set to `DiskWithVMGuestState`.
24822
+ * > **Note:** `encryptionAtHostEnabled` cannot be set to `true` when `securityEncryptionType` is set to `DiskWithVMGuestState`.
24808
24823
  */
24809
24824
  securityEncryptionType?: string;
24810
24825
  /**
@@ -24814,7 +24829,7 @@ export declare namespace compute {
24814
24829
  /**
24815
24830
  * Should Write Accelerator be Enabled for this OS Disk? Defaults to `false`.
24816
24831
  *
24817
- * > **NOTE:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
24832
+ * > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
24818
24833
  */
24819
24834
  writeAcceleratorEnabled?: boolean;
24820
24835
  }
@@ -24862,7 +24877,7 @@ export declare namespace compute {
24862
24877
  /**
24863
24878
  * Create new virtual machines to upgrade the scale set, rather than updating the existing virtual machines. Existing virtual machines will be deleted once the new virtual machines are created for each batch. Possible values are `true` or `false`.
24864
24879
  *
24865
- * > **NOTE:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
24880
+ * > **Note:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
24866
24881
  */
24867
24882
  maximumSurgeInstancesEnabled?: boolean;
24868
24883
  /**
@@ -24898,9 +24913,9 @@ export declare namespace compute {
24898
24913
  /**
24899
24914
  * The Secret URL of a Key Vault Certificate.
24900
24915
  *
24901
- * > **NOTE:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
24916
+ * > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
24902
24917
  *
24903
- * > **NOTE:** The certificate must have been uploaded/created in PFX format, PEM certificates are not currently supported by Azure.
24918
+ * > **Note:** The certificate must have been uploaded/created in PFX format, PEM certificates are not currently supported by Azure.
24904
24919
  */
24905
24920
  url: string;
24906
24921
  }
@@ -24940,7 +24955,7 @@ export declare namespace compute {
24940
24955
  /**
24941
24956
  * Length of time (in minutes, between 5 and 15) a notification to be sent to the VM on the instance metadata server till the VM gets deleted. The time duration should be specified in ISO 8601 format. Defaults to `PT5M`.
24942
24957
  *
24943
- * > **NOTE:** For more information about the terminate notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
24958
+ * > **Note:** For more information about the terminate notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
24944
24959
  */
24945
24960
  timeout?: string;
24946
24961
  }
@@ -24952,7 +24967,7 @@ export declare namespace compute {
24952
24967
  /**
24953
24968
  * Length of time (in minutes, between 5 and 15) a notification to be sent to the VM on the instance metadata server till the VM gets deleted. The time duration should be specified in ISO 8601 format. Defaults to `PT5M`.
24954
24969
  *
24955
- * > **NOTE:** For more information about the termination notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
24970
+ * > **Note:** For more information about the termination notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
24956
24971
  */
24957
24972
  timeout?: string;
24958
24973
  }
@@ -25045,14 +25060,24 @@ export declare namespace compute {
25045
25060
  ultraSsdEnabled?: boolean;
25046
25061
  }
25047
25062
  interface OrchestratedVirtualMachineScaleSetAutomaticInstanceRepair {
25063
+ /**
25064
+ * The repair action that will be used for repairing unhealthy virtual machines in the scale set. Possible values include `Replace`, `Restart`, `Reimage`.
25065
+ *
25066
+ * > **Note:** Once the `action` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
25067
+ *
25068
+ * > **Note:** If you wish to update the repair `action` of an existing `automaticInstanceRepair` policy, you must first `disable` the `automaticInstanceRepair` policy before you can re-enable the `automaticInstanceRepair` policy with the new repair `action` defined.
25069
+ */
25070
+ action: string;
25048
25071
  /**
25049
25072
  * Should the automatic instance repair be enabled on this Virtual Machine Scale Set? Possible values are `true` and `false`.
25050
25073
  */
25051
25074
  enabled: boolean;
25052
25075
  /**
25053
- * Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `30` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT30M` to `PT90M`). Defaults to `PT30M`.
25076
+ * Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `10` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT10M` to `PT90M`).
25077
+ *
25078
+ * > **Note:** Once the `gracePeriod` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
25054
25079
  */
25055
- gracePeriod?: string;
25080
+ gracePeriod: string;
25056
25081
  }
25057
25082
  interface OrchestratedVirtualMachineScaleSetBootDiagnostics {
25058
25083
  /**
@@ -25110,7 +25135,7 @@ export declare namespace compute {
25110
25135
  /**
25111
25136
  * Should failures from the extension be suppressed? Possible values are `true` or `false`.
25112
25137
  *
25113
- * > **NOTE:** Operational failures such as not connecting to the VM will not be suppressed regardless of the `failureSuppressionEnabled` value.
25138
+ * > **Note:** Operational failures such as not connecting to the VM will not be suppressed regardless of the `failureSuppressionEnabled` value.
25114
25139
  */
25115
25140
  failureSuppressionEnabled?: boolean;
25116
25141
  /**
@@ -25124,7 +25149,7 @@ export declare namespace compute {
25124
25149
  /**
25125
25150
  * A JSON String which specifies Sensitive Settings (such as Passwords) for the Extension.
25126
25151
  *
25127
- * > **NOTE:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. `TitleCase` vs `snakeCase`) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
25152
+ * > **Note:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. `TitleCase` vs `snakeCase`) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
25128
25153
  */
25129
25154
  protectedSettings?: string;
25130
25155
  /**
@@ -25198,7 +25223,7 @@ export declare namespace compute {
25198
25223
  /**
25199
25224
  * Is this the Primary IP Configuration? Possible values are `true` and `false`. Defaults to `false`.
25200
25225
  *
25201
- * > **NOTE:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
25226
+ * > **Note:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
25202
25227
  */
25203
25228
  primary?: boolean;
25204
25229
  }
@@ -25214,7 +25239,7 @@ export declare namespace compute {
25214
25239
  /**
25215
25240
  * A list of Backend Address Pools IDs from a Load Balancer which this Virtual Machine Scale Set should be connected to.
25216
25241
  *
25217
- * > **NOTE:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a dependsOn between this resource and the Load Balancer Rule.
25242
+ * > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a dependsOn between this resource and the Load Balancer Rule.
25218
25243
  */
25219
25244
  loadBalancerBackendAddressPoolIds?: string[];
25220
25245
  /**
@@ -25224,7 +25249,7 @@ export declare namespace compute {
25224
25249
  /**
25225
25250
  * Is this the Primary IP Configuration for this Network Interface? Possible values are `true` and `false`. Defaults to `false`.
25226
25251
  *
25227
- * > **NOTE:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
25252
+ * > **Note:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
25228
25253
  */
25229
25254
  primary?: boolean;
25230
25255
  /**
@@ -25234,7 +25259,7 @@ export declare namespace compute {
25234
25259
  /**
25235
25260
  * The ID of the Subnet which this IP Configuration should be connected to.
25236
25261
  *
25237
- * > **NOTE:** `subnetId` is required if version is set to `IPv4`.
25262
+ * > **Note:** `subnetId` is required if version is set to `IPv4`.
25238
25263
  */
25239
25264
  subnetId?: string;
25240
25265
  /**
@@ -25294,7 +25319,7 @@ export declare namespace compute {
25294
25319
  /**
25295
25320
  * The ID of the Disk Encryption Set which should be used to encrypt this OS Disk. Changing this forces a new resource to be created.
25296
25321
  *
25297
- * > **NOTE:** Disk Encryption Sets are in Public Preview in a limited set of regions
25322
+ * > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
25298
25323
  */
25299
25324
  diskEncryptionSetId?: string;
25300
25325
  /**
@@ -25324,7 +25349,7 @@ export declare namespace compute {
25324
25349
  /**
25325
25350
  * The Base64-Encoded Custom Data which should be used for this Virtual Machine Scale Set.
25326
25351
  *
25327
- * > **NOTE:** When Custom Data has been configured, it's not possible to remove it without tainting the Virtual Machine Scale Set, due to a limitation of the Azure API.
25352
+ * > **Note:** When Custom Data has been configured, it's not possible to remove it without tainting the Virtual Machine Scale Set, due to a limitation of the Azure API.
25328
25353
  */
25329
25354
  customData?: string;
25330
25355
  /**
@@ -25356,19 +25381,19 @@ export declare namespace compute {
25356
25381
  /**
25357
25382
  * When an `adminPassword` is specified `disablePasswordAuthentication` must be set to `false`. Defaults to `true`.
25358
25383
  *
25359
- * > **NOTE:** Either `adminPassword` or `adminSshKey` must be specified.
25384
+ * > **Note:** Either `adminPassword` or `adminSshKey` must be specified.
25360
25385
  */
25361
25386
  disablePasswordAuthentication?: boolean;
25362
25387
  /**
25363
25388
  * Specifies the mode of VM Guest Patching for the virtual machines that are associated to the Virtual Machine Scale Set. Possible values are `AutomaticByPlatform` or `ImageDefault`. Defaults to `ImageDefault`.
25364
25389
  *
25365
- * > **NOTE:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
25390
+ * > **Note:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
25366
25391
  */
25367
25392
  patchAssessmentMode?: string;
25368
25393
  /**
25369
25394
  * Specifies the mode of in-guest patching of this Windows Virtual Machine. Possible values are `ImageDefault` or `AutomaticByPlatform`. Defaults to `ImageDefault`. For more information on patch modes please see the [product documentation](https://docs.microsoft.com/azure/virtual-machines/automatic-vm-guest-patching#patch-orchestration-modes).
25370
25395
  *
25371
- * > **NOTE:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension. An example of how to correctly configure a Virtual Machine Scale Set to provision a Linux Virtual Machine with Automatic VM Guest Patching enabled can be found in the `./examples/orchestrated-vm-scale-set/automatic-vm-guest-patching` directory within the GitHub Repository.
25396
+ * > **Note:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension. An example of how to correctly configure a Virtual Machine Scale Set to provision a Linux Virtual Machine with Automatic VM Guest Patching enabled can be found in the `./examples/orchestrated-vm-scale-set/automatic-vm-guest-patching` directory within the GitHub Repository.
25372
25397
  */
25373
25398
  patchMode?: string;
25374
25399
  /**
@@ -25388,7 +25413,7 @@ export declare namespace compute {
25388
25413
  /**
25389
25414
  * The Username for which this Public SSH Key should be configured.
25390
25415
  *
25391
- * > **NOTE:** The Azure VM Agent only allows creating SSH Keys at the path `/home/{username}/.ssh/authorized_keys` - as such this public key will be written to the authorized keys file.
25416
+ * > **Note:** The Azure VM Agent only allows creating SSH Keys at the path `/home/{username}/.ssh/authorized_keys` - as such this public key will be written to the authorized keys file.
25392
25417
  */
25393
25418
  username: string;
25394
25419
  }
@@ -25406,7 +25431,7 @@ export declare namespace compute {
25406
25431
  /**
25407
25432
  * The Secret URL of a Key Vault Certificate.
25408
25433
  *
25409
- * > **NOTE:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
25434
+ * > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
25410
25435
  */
25411
25436
  url: string;
25412
25437
  }
@@ -25434,19 +25459,19 @@ export declare namespace compute {
25434
25459
  /**
25435
25460
  * Should the VM be patched without requiring a reboot? Possible values are `true` or `false`. Defaults to `false`. For more information about hot patching please see the [product documentation](https://docs.microsoft.com/azure/automanage/automanage-hotpatch).
25436
25461
  *
25437
- * > **NOTE:** Hotpatching can only be enabled if the `patchMode` is set to `AutomaticByPlatform`, the `provisionVmAgent` is set to `true`, your `sourceImageReference` references a hotpatching enabled image, the VM's `skuName` is set to a Azure generation 2 directory within the GitHub Repository.
25462
+ * > **Note:** Hotpatching can only be enabled if the `patchMode` is set to `AutomaticByPlatform`, the `provisionVmAgent` is set to `true`, your `sourceImageReference` references a hotpatching enabled image, the VM's `skuName` is set to a Azure generation 2 directory within the GitHub Repository.
25438
25463
  */
25439
25464
  hotpatchingEnabled?: boolean;
25440
25465
  /**
25441
25466
  * Specifies the mode of VM Guest Patching for the virtual machines that are associated to the Virtual Machine Scale Set. Possible values are `AutomaticByPlatform` or `ImageDefault`. Defaults to `ImageDefault`.
25442
25467
  *
25443
- * > **NOTE:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
25468
+ * > **Note:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
25444
25469
  */
25445
25470
  patchAssessmentMode?: string;
25446
25471
  /**
25447
25472
  * Specifies the mode of in-guest patching of this Windows Virtual Machine. Possible values are `Manual`, `AutomaticByOS` and `AutomaticByPlatform`. Defaults to `AutomaticByOS`. For more information on patch modes please see the [product documentation](https://docs.microsoft.com/azure/virtual-machines/automatic-vm-guest-patching#patch-orchestration-modes).
25448
25473
  *
25449
- * > **NOTE:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension.
25474
+ * > **Note:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension.
25450
25475
  */
25451
25476
  patchMode?: string;
25452
25477
  /**
@@ -25494,7 +25519,7 @@ export declare namespace compute {
25494
25519
  /**
25495
25520
  * The Secret URL of a Key Vault Certificate.
25496
25521
  *
25497
- * > **NOTE:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
25522
+ * > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
25498
25523
  */
25499
25524
  url: string;
25500
25525
  }
@@ -25502,7 +25527,7 @@ export declare namespace compute {
25502
25527
  /**
25503
25528
  * The Secret URL of a Key Vault Certificate, which must be specified when protocol is set to `Https`. Changing this forces a new resource to be created.
25504
25529
  *
25505
- * > **NOTE:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
25530
+ * > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
25506
25531
  */
25507
25532
  certificateUrl?: string;
25508
25533
  /**
@@ -26727,14 +26752,24 @@ export declare namespace compute {
26727
26752
  setting: string;
26728
26753
  }
26729
26754
  interface WindowsVirtualMachineScaleSetAutomaticInstanceRepair {
26755
+ /**
26756
+ * The repair action that will be used for repairing unhealthy virtual machines in the scale set. Possible values include `Replace`, `Restart`, `Reimage`.
26757
+ *
26758
+ * > **Note:** Once the `action` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
26759
+ *
26760
+ * > **Note:** If you wish to update the repair `action` of an existing `automaticInstanceRepair` policy, you must first `disable` the `automaticInstanceRepair` policy before you can re-enable the `automaticInstanceRepair` policy with the new repair `action` defined.
26761
+ */
26762
+ action: string;
26730
26763
  /**
26731
26764
  * Should the automatic instance repair be enabled on this Virtual Machine Scale Set?
26732
26765
  */
26733
26766
  enabled: boolean;
26734
26767
  /**
26735
- * Amount of time (in minutes, between 30 and 90) for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. The time duration should be specified in ISO 8601 format. Defaults to `PT30M`.
26768
+ * Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `10` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT10M` to `PT90M`).
26769
+ *
26770
+ * > **Note:** Once the `gracePeriod` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
26736
26771
  */
26737
- gracePeriod?: string;
26772
+ gracePeriod: string;
26738
26773
  }
26739
26774
  interface WindowsVirtualMachineScaleSetAutomaticOsUpgradePolicy {
26740
26775
  /**
@@ -26750,7 +26785,7 @@ export declare namespace compute {
26750
26785
  /**
26751
26786
  * The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
26752
26787
  *
26753
- * > **NOTE:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics
26788
+ * > **Note:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics
26754
26789
  */
26755
26790
  storageAccountUri?: string;
26756
26791
  }
@@ -26766,9 +26801,9 @@ export declare namespace compute {
26766
26801
  /**
26767
26802
  * The ID of the Disk Encryption Set which should be used to encrypt this Data Disk. Changing this forces a new resource to be created.
26768
26803
  *
26769
- * > **NOTE:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
26804
+ * > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
26770
26805
  *
26771
- * > **NOTE:** Disk Encryption Sets are in Public Preview in a limited set of regions
26806
+ * > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
26772
26807
  */
26773
26808
  diskEncryptionSetId?: string;
26774
26809
  /**
@@ -26786,7 +26821,7 @@ export declare namespace compute {
26786
26821
  /**
26787
26822
  * The Type of Storage Account which should back this Data Disk. Possible values include `Standard_LRS`, `StandardSSD_LRS`, `StandardSSD_ZRS`, `Premium_LRS`, `PremiumV2_LRS`, `Premium_ZRS` and `UltraSSD_LRS`.
26788
26823
  *
26789
- * > **NOTE:** `UltraSSD_LRS` is only supported when `ultraSsdEnabled` within the `additionalCapabilities` block is enabled.
26824
+ * > **Note:** `UltraSSD_LRS` is only supported when `ultraSsdEnabled` within the `additionalCapabilities` block is enabled.
26790
26825
  */
26791
26826
  storageAccountType: string;
26792
26827
  /**
@@ -26800,7 +26835,7 @@ export declare namespace compute {
26800
26835
  /**
26801
26836
  * Should Write Accelerator be enabled for this Data Disk? Defaults to `false`.
26802
26837
  *
26803
- * > **NOTE:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
26838
+ * > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
26804
26839
  */
26805
26840
  writeAcceleratorEnabled?: boolean;
26806
26841
  }
@@ -26824,9 +26859,14 @@ export declare namespace compute {
26824
26859
  /**
26825
26860
  * A JSON String which specifies Sensitive Settings (such as Passwords) for the Extension.
26826
26861
  *
26827
- * > **NOTE:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
26862
+ * > **Note:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
26828
26863
  */
26829
26864
  protectedSettings?: string;
26865
+ /**
26866
+ * A `protectedSettingsFromKeyVault` block as defined below.
26867
+ *
26868
+ * > **Note:** `protectedSettingsFromKeyVault` cannot be used with `protectedSettings`
26869
+ */
26830
26870
  protectedSettingsFromKeyVault?: outputs.compute.WindowsVirtualMachineScaleSetExtensionProtectedSettingsFromKeyVault;
26831
26871
  /**
26832
26872
  * An ordered list of Extension names which this should be provisioned after.
@@ -26839,7 +26879,7 @@ export declare namespace compute {
26839
26879
  /**
26840
26880
  * A JSON String which specifies Settings for the Extension.
26841
26881
  *
26842
- * > **NOTE:** Keys within the `settings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
26882
+ * > **Note:** Keys within the `settings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
26843
26883
  */
26844
26884
  settings?: string;
26845
26885
  /**
@@ -26880,7 +26920,7 @@ export declare namespace compute {
26880
26920
  /**
26881
26921
  * Specifies a list of User Assigned Managed Identity IDs to be assigned to this Windows Virtual Machine Scale Set.
26882
26922
  *
26883
- * > **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
26923
+ * > **Note:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
26884
26924
  */
26885
26925
  identityIds?: string[];
26886
26926
  /**
@@ -26924,7 +26964,7 @@ export declare namespace compute {
26924
26964
  /**
26925
26965
  * Is this the Primary IP Configuration?
26926
26966
  *
26927
- * > **NOTE:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
26967
+ * > **Note:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
26928
26968
  */
26929
26969
  primary?: boolean;
26930
26970
  }
@@ -26940,15 +26980,15 @@ export declare namespace compute {
26940
26980
  /**
26941
26981
  * A list of Backend Address Pools ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
26942
26982
  *
26943
- * > **NOTE:** When the Virtual Machine Scale Set is configured to have public IPs per instance are created with a load balancer, the SKU of the Virtual Machine instance IPs is determined by the SKU of the Virtual Machine Scale Sets Load Balancer (e.g. `Basic` or `Standard`). Alternatively, you may use the `publicIpPrefixId` field to generate instance-level IPs in a virtual machine scale set as well. The zonal properties of the prefix will be passed to the Virtual Machine instance IPs, though they will not be shown in the output. To view the public IP addresses assigned to the Virtual Machine Scale Sets Virtual Machine instances use the **az vmss list-instance-public-ips --resource-group `ResourceGroupName` --name `VirtualMachineScaleSetName`** CLI command.
26983
+ * > **Note:** When the Virtual Machine Scale Set is configured to have public IPs per instance are created with a load balancer, the SKU of the Virtual Machine instance IPs is determined by the SKU of the Virtual Machine Scale Sets Load Balancer (e.g. `Basic` or `Standard`). Alternatively, you may use the `publicIpPrefixId` field to generate instance-level IPs in a virtual machine scale set as well. The zonal properties of the prefix will be passed to the Virtual Machine instance IPs, though they will not be shown in the output. To view the public IP addresses assigned to the Virtual Machine Scale Sets Virtual Machine instances use the **az vmss list-instance-public-ips --resource-group `ResourceGroupName` --name `VirtualMachineScaleSetName`** CLI command.
26944
26984
  *
26945
- * > **NOTE:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
26985
+ * > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
26946
26986
  */
26947
26987
  loadBalancerBackendAddressPoolIds?: string[];
26948
26988
  /**
26949
26989
  * A list of NAT Rule ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
26950
26990
  *
26951
- * > **NOTE:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
26991
+ * > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
26952
26992
  */
26953
26993
  loadBalancerInboundNatRulesIds?: string[];
26954
26994
  /**
@@ -26958,7 +26998,7 @@ export declare namespace compute {
26958
26998
  /**
26959
26999
  * Is this the Primary IP Configuration for this Network Interface? Defaults to `false`.
26960
27000
  *
26961
- * > **NOTE:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
27001
+ * > **Note:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
26962
27002
  */
26963
27003
  primary?: boolean;
26964
27004
  /**
@@ -26996,7 +27036,7 @@ export declare namespace compute {
26996
27036
  /**
26997
27037
  * The ID of the Public IP Address Prefix from where Public IP Addresses should be allocated. Changing this forces a new resource to be created.
26998
27038
  *
26999
- * > **NOTE:** This functionality is in Preview and must be opted into via `az feature register --namespace Microsoft.Network --name AllowBringYourOwnPublicIpAddress` and then `az provider register -n Microsoft.Network`.
27039
+ * > **Note:** This functionality is in Preview and must be opted into via `az feature register --namespace Microsoft.Network --name AllowBringYourOwnPublicIpAddress` and then `az provider register -n Microsoft.Network`.
27000
27040
  */
27001
27041
  publicIpPrefixId?: string;
27002
27042
  /**
@@ -27026,29 +27066,29 @@ export declare namespace compute {
27026
27066
  /**
27027
27067
  * The ID of the Disk Encryption Set which should be used to encrypt this OS Disk. Conflicts with `secureVmDiskEncryptionSetId`. Changing this forces a new resource to be created.
27028
27068
  *
27029
- * > **NOTE:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
27069
+ * > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
27030
27070
  *
27031
- * > **NOTE:** Disk Encryption Sets are in Public Preview in a limited set of regions
27071
+ * > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
27032
27072
  */
27033
27073
  diskEncryptionSetId?: string;
27034
27074
  /**
27035
27075
  * The Size of the Internal OS Disk in GB, if you wish to vary from the size used in the image this Virtual Machine Scale Set is sourced from.
27036
27076
  *
27037
- * > **NOTE:** If specified this must be equal to or larger than the size of the Image the VM Scale Set is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
27077
+ * > **Note:** If specified this must be equal to or larger than the size of the Image the VM Scale Set is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
27038
27078
  */
27039
27079
  diskSizeGb: number;
27040
27080
  /**
27041
27081
  * The ID of the Disk Encryption Set which should be used to Encrypt the OS Disk when the Virtual Machine Scale Set is Confidential VMSS. Conflicts with `diskEncryptionSetId`. Changing this forces a new resource to be created.
27042
27082
  *
27043
- * > **NOTE:** `secureVmDiskEncryptionSetId` can only be specified when `securityEncryptionType` is set to `DiskWithVMGuestState`.
27083
+ * > **Note:** `secureVmDiskEncryptionSetId` can only be specified when `securityEncryptionType` is set to `DiskWithVMGuestState`.
27044
27084
  */
27045
27085
  secureVmDiskEncryptionSetId?: string;
27046
27086
  /**
27047
27087
  * Encryption Type when the Virtual Machine Scale Set is Confidential VMSS. Possible values are `VMGuestStateOnly` and `DiskWithVMGuestState`. Changing this forces a new resource to be created.
27048
27088
  *
27049
- * > **NOTE:** `vtpmEnabled` must be set to `true` when `securityEncryptionType` is specified.
27089
+ * > **Note:** `vtpmEnabled` must be set to `true` when `securityEncryptionType` is specified.
27050
27090
  *
27051
- * > **NOTE:** `encryptionAtHostEnabled` cannot be set to `true` when `securityEncryptionType` is set to `DiskWithVMGuestState`.
27091
+ * > **Note:** `encryptionAtHostEnabled` cannot be set to `true` when `securityEncryptionType` is set to `DiskWithVMGuestState`.
27052
27092
  */
27053
27093
  securityEncryptionType?: string;
27054
27094
  /**
@@ -27058,7 +27098,7 @@ export declare namespace compute {
27058
27098
  /**
27059
27099
  * Should Write Accelerator be Enabled for this OS Disk? Defaults to `false`.
27060
27100
  *
27061
- * > **NOTE:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
27101
+ * > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
27062
27102
  */
27063
27103
  writeAcceleratorEnabled?: boolean;
27064
27104
  }
@@ -27106,7 +27146,7 @@ export declare namespace compute {
27106
27146
  /**
27107
27147
  * Create new virtual machines to upgrade the scale set, rather than updating the existing virtual machines. Existing virtual machines will be deleted once the new virtual machines are created for each batch. Possible values are `true` or `false`.
27108
27148
  *
27109
- * > **NOTE:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
27149
+ * > **Note:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
27110
27150
  */
27111
27151
  maximumSurgeInstancesEnabled?: boolean;
27112
27152
  /**
@@ -27146,7 +27186,7 @@ export declare namespace compute {
27146
27186
  /**
27147
27187
  * The Secret URL of a Key Vault Certificate.
27148
27188
  *
27149
- * > **NOTE:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
27189
+ * > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
27150
27190
  */
27151
27191
  url: string;
27152
27192
  }
@@ -27198,7 +27238,7 @@ export declare namespace compute {
27198
27238
  /**
27199
27239
  * Length of time (in minutes, between 5 and 15) a notification to be sent to the VM on the instance metadata server till the VM gets deleted. The time duration should be specified in ISO 8601 format. Defaults to `PT5M`.
27200
27240
  *
27201
- * > **NOTE:** For more information about the termination notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
27241
+ * > **Note:** For more information about the termination notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
27202
27242
  */
27203
27243
  timeout?: string;
27204
27244
  }
@@ -27206,7 +27246,7 @@ export declare namespace compute {
27206
27246
  /**
27207
27247
  * The Secret URL of a Key Vault Certificate, which must be specified when `protocol` is set to `Https`. Changing this forces a new resource to be created.
27208
27248
  *
27209
- * > **NOTE:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
27249
+ * > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
27210
27250
  */
27211
27251
  certificateUrl?: string;
27212
27252
  /**
@@ -50209,7 +50249,7 @@ export declare namespace monitoring {
50209
50249
  */
50210
50250
  name: string;
50211
50251
  /**
50212
- * The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `300` inclusive. `samplingFrequencyInSeconds` must be equal to `60` seconds for counters collected with `Microsoft-InsightsMetrics` stream.
50252
+ * The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `1800` inclusive. `samplingFrequencyInSeconds` must be equal to `60` seconds for counters collected with `Microsoft-InsightsMetrics` stream.
50213
50253
  */
50214
50254
  samplingFrequencyInSeconds: number;
50215
50255
  /**
@@ -50949,7 +50989,7 @@ export declare namespace monitoring {
50949
50989
  */
50950
50990
  name: string;
50951
50991
  /**
50952
- * The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `300` inclusive.
50992
+ * The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `1800` inclusive.
50953
50993
  */
50954
50994
  samplingFrequencyInSeconds: number;
50955
50995
  /**
@@ -59583,6 +59623,8 @@ export declare namespace postgresql {
59583
59623
  startHour?: number;
59584
59624
  /**
59585
59625
  * The start minute for maintenance window. Defaults to `0`.
59626
+ *
59627
+ * > **NOTE** The specified `maintenanceWindow` is always defined in UTC time. When unspecified, the maintenance window falls back to the default [system-managed](https://learn.microsoft.com/en-us/azure/postgresql/flexible-server/how-to-maintenance-portal#specify-maintenance-schedule-options).
59586
59628
  */
59587
59629
  startMinute?: number;
59588
59630
  }
@@ -63130,6 +63172,10 @@ export declare namespace storage {
63130
63172
  * A `activeDirectory` block as defined below. Required when `directoryType` is `AD`.
63131
63173
  */
63132
63174
  activeDirectory: outputs.storage.AccountAzureFilesAuthenticationActiveDirectory;
63175
+ /**
63176
+ * Specifies the default share level permissions applied to all users. Possible values are `StorageFileDataSmbShareReader`, `StorageFileDataSmbShareContributor`, `StorageFileDataSmbShareElevatedContributor`, or `None`.
63177
+ */
63178
+ defaultShareLevelPermission?: string;
63133
63179
  /**
63134
63180
  * Specifies the directory service used. Possible values are `AADDS`, `AD` and `AADKERB`.
63135
63181
  */
@@ -65067,11 +65113,11 @@ export declare namespace waf {
65067
65113
  */
65068
65114
  ruleGroups?: outputs.waf.PolicyManagedRulesExclusionExcludedRuleSetRuleGroup[];
65069
65115
  /**
65070
- * The rule set type. The only possible value include `Microsoft_DefaultRuleSet` and `OWASP`. Defaults to `OWASP`.
65116
+ * The rule set type. Possible values are `Microsoft_DefaultRuleSet`, `Microsoft_BotManagerRuleSet` and `OWASP`. Defaults to `OWASP`.
65071
65117
  */
65072
65118
  type?: string;
65073
65119
  /**
65074
- * The rule set version. The only possible value include `2.1` (for rule set type `Microsoft_DefaultRuleSet`) and `3.2` (for rule set type `OWASP`). Defaults to `3.2`.
65120
+ * The rule set version. Possible values are `1.0` (for rule set type `Microsoft_BotManagerRuleSet`), `2.1` (for rule set type `Microsoft_DefaultRuleSet`) and `3.2` (for rule set type `OWASP`). Defaults to `3.2`.
65075
65121
  */
65076
65122
  version?: string;
65077
65123
  }