@pulumi/azure 6.9.0 → 6.10.0-alpha.1732011495
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/automation/jobSchedule.d.ts +1 -1
- package/automation/jobSchedule.js +1 -1
- package/automation/runBook.d.ts +3 -3
- package/cognitive/getAccount.d.ts +4 -0
- package/cognitive/getAccount.js.map +1 -1
- package/communication/emailService.d.ts +3 -3
- package/communication/service.d.ts +3 -3
- package/compute/bastionHost.d.ts +12 -0
- package/compute/bastionHost.js +2 -0
- package/compute/bastionHost.js.map +1 -1
- package/compute/getBastionHost.d.ts +4 -0
- package/compute/getBastionHost.js.map +1 -1
- package/fluidrelay/server.d.ts +9 -0
- package/fluidrelay/server.js.map +1 -1
- package/keyvault/getManagedHardwareSecurityModuleKey.d.ts +122 -0
- package/keyvault/getManagedHardwareSecurityModuleKey.js +70 -0
- package/keyvault/getManagedHardwareSecurityModuleKey.js.map +1 -0
- package/keyvault/index.d.ts +3 -0
- package/keyvault/index.js +4 -1
- package/keyvault/index.js.map +1 -1
- package/netapp/backupPolicy.d.ts +191 -0
- package/netapp/backupPolicy.js +106 -0
- package/netapp/backupPolicy.js.map +1 -0
- package/netapp/backupVault.d.ts +136 -0
- package/netapp/backupVault.js +97 -0
- package/netapp/backupVault.js.map +1 -0
- package/netapp/getAccountEncryption.d.ts +3 -27
- package/netapp/getAccountEncryption.js +0 -6
- package/netapp/getAccountEncryption.js.map +1 -1
- package/netapp/getBackupPolicy.d.ts +112 -0
- package/netapp/getBackupPolicy.js +60 -0
- package/netapp/getBackupPolicy.js.map +1 -0
- package/netapp/getBackupVault.d.ts +87 -0
- package/netapp/getBackupVault.js +60 -0
- package/netapp/getBackupVault.js.map +1 -0
- package/netapp/getVolume.d.ts +5 -1
- package/netapp/getVolume.js.map +1 -1
- package/netapp/index.d.ts +12 -0
- package/netapp/index.js +17 -1
- package/netapp/index.js.map +1 -1
- package/netapp/volume.d.ts +17 -1
- package/netapp/volume.js +6 -0
- package/netapp/volume.js.map +1 -1
- package/network/trafficManagerAzureEndpoint.d.ts +4 -4
- package/network/trafficManagerExternalEndpoint.d.ts +4 -4
- package/package.json +2 -2
- package/types/input.d.ts +46 -16
- package/types/output.d.ts +60 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0-alpha.1732011495",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"pulumi": {
|
|
31
31
|
"resource": true,
|
|
32
32
|
"name": "azure",
|
|
33
|
-
"version": "6.
|
|
33
|
+
"version": "6.10.0-alpha.1732011495"
|
|
34
34
|
}
|
|
35
35
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface ProviderFeatures {
|
|
|
9
9
|
logAnalyticsWorkspace?: pulumi.Input<inputs.ProviderFeaturesLogAnalyticsWorkspace>;
|
|
10
10
|
machineLearning?: pulumi.Input<inputs.ProviderFeaturesMachineLearning>;
|
|
11
11
|
managedDisk?: pulumi.Input<inputs.ProviderFeaturesManagedDisk>;
|
|
12
|
+
netapp?: pulumi.Input<inputs.ProviderFeaturesNetapp>;
|
|
12
13
|
postgresqlFlexibleServer?: pulumi.Input<inputs.ProviderFeaturesPostgresqlFlexibleServer>;
|
|
13
14
|
recoveryService?: pulumi.Input<inputs.ProviderFeaturesRecoveryService>;
|
|
14
15
|
recoveryServicesVaults?: pulumi.Input<inputs.ProviderFeaturesRecoveryServicesVaults>;
|
|
@@ -88,6 +89,16 @@ export interface ProviderFeaturesMachineLearning {
|
|
|
88
89
|
export interface ProviderFeaturesManagedDisk {
|
|
89
90
|
expandWithoutDowntime?: pulumi.Input<boolean>;
|
|
90
91
|
}
|
|
92
|
+
export interface ProviderFeaturesNetapp {
|
|
93
|
+
/**
|
|
94
|
+
* When enabled, backups will be deleted when the `azure.netapp.BackupVault` resource is destroyed
|
|
95
|
+
*/
|
|
96
|
+
deleteBackupsOnBackupVaultDestroy?: pulumi.Input<boolean>;
|
|
97
|
+
/**
|
|
98
|
+
* When enabled, the volume will not be destroyed, safeguarding from severe data loss
|
|
99
|
+
*/
|
|
100
|
+
preventVolumeDestruction?: pulumi.Input<boolean>;
|
|
101
|
+
}
|
|
91
102
|
export interface ProviderFeaturesPostgresqlFlexibleServer {
|
|
92
103
|
restartServerOnConfigurationValueChange?: pulumi.Input<boolean>;
|
|
93
104
|
}
|
|
@@ -5190,7 +5201,7 @@ export declare namespace appservice {
|
|
|
5190
5201
|
*/
|
|
5191
5202
|
dockers?: pulumi.Input<pulumi.Input<inputs.appservice.LinuxFunctionAppSiteConfigApplicationStackDocker>[]>;
|
|
5192
5203
|
/**
|
|
5193
|
-
* The version of .NET to use. Possible values include `3.1`, `6.0`, `7.0` and `
|
|
5204
|
+
* The version of .NET to use. Possible values include `3.1`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
5194
5205
|
*/
|
|
5195
5206
|
dotnetVersion?: pulumi.Input<string>;
|
|
5196
5207
|
/**
|
|
@@ -6166,7 +6177,7 @@ export declare namespace appservice {
|
|
|
6166
6177
|
*/
|
|
6167
6178
|
dockers?: pulumi.Input<pulumi.Input<inputs.appservice.LinuxFunctionAppSlotSiteConfigApplicationStackDocker>[]>;
|
|
6168
6179
|
/**
|
|
6169
|
-
* The version of .Net. Possible values are `3.1`, `6.0`, `7.0` and `
|
|
6180
|
+
* The version of .Net. Possible values are `3.1`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
6170
6181
|
*/
|
|
6171
6182
|
dotnetVersion?: pulumi.Input<string>;
|
|
6172
6183
|
/**
|
|
@@ -7242,7 +7253,7 @@ export declare namespace appservice {
|
|
|
7242
7253
|
*/
|
|
7243
7254
|
dockerRegistryUsername?: pulumi.Input<string>;
|
|
7244
7255
|
/**
|
|
7245
|
-
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0` and `
|
|
7256
|
+
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
7246
7257
|
*/
|
|
7247
7258
|
dotnetVersion?: pulumi.Input<string>;
|
|
7248
7259
|
/**
|
|
@@ -8358,7 +8369,7 @@ export declare namespace appservice {
|
|
|
8358
8369
|
*/
|
|
8359
8370
|
dockerRegistryUsername?: pulumi.Input<string>;
|
|
8360
8371
|
/**
|
|
8361
|
-
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0` and `
|
|
8372
|
+
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
8362
8373
|
*/
|
|
8363
8374
|
dotnetVersion?: pulumi.Input<string>;
|
|
8364
8375
|
/**
|
|
@@ -10144,7 +10155,7 @@ export declare namespace appservice {
|
|
|
10144
10155
|
}
|
|
10145
10156
|
interface WindowsFunctionAppSiteConfigApplicationStack {
|
|
10146
10157
|
/**
|
|
10147
|
-
* The version of .NET to use. Possible values include `v3.0`, `v4.0` `v6.0`, `v7.0` and `
|
|
10158
|
+
* The version of .NET to use. Possible values include `v3.0`, `v4.0` `v6.0`, `v7.0`, `v8.0` and `v9.0`. Defaults to `v4.0`.
|
|
10148
10159
|
*/
|
|
10149
10160
|
dotnetVersion?: pulumi.Input<string>;
|
|
10150
10161
|
/**
|
|
@@ -11080,7 +11091,7 @@ export declare namespace appservice {
|
|
|
11080
11091
|
}
|
|
11081
11092
|
interface WindowsFunctionAppSlotSiteConfigApplicationStack {
|
|
11082
11093
|
/**
|
|
11083
|
-
* The version of .Net. Possible values are `v3.0`, `v4.0`, `v6.0`, `v7.0` and `
|
|
11094
|
+
* The version of .Net. Possible values are `v3.0`, `v4.0`, `v6.0`, `v7.0`, `v8.0` and `v9.0`. Defaults to `v4.0`.
|
|
11084
11095
|
*/
|
|
11085
11096
|
dotnetVersion?: pulumi.Input<string>;
|
|
11086
11097
|
/**
|
|
@@ -12147,7 +12158,7 @@ export declare namespace appservice {
|
|
|
12147
12158
|
*/
|
|
12148
12159
|
dotnetCoreVersion?: pulumi.Input<string>;
|
|
12149
12160
|
/**
|
|
12150
|
-
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0` and `
|
|
12161
|
+
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0`, `v8.0` and `v9.0`.
|
|
12151
12162
|
*
|
|
12152
12163
|
* > **NOTE:** The Portal displayed values and the actual underlying API values differ for this setting, as follows:
|
|
12153
12164
|
* Portal Value | API value
|
|
@@ -12157,6 +12168,7 @@ export declare namespace appservice {
|
|
|
12157
12168
|
* .NET 6 (LTS) | v6.0
|
|
12158
12169
|
* .NET 7 (STS) | v7.0
|
|
12159
12170
|
* .NET 8 (LTS) | v8.0
|
|
12171
|
+
* .NET 9 (STS) | v9.0
|
|
12160
12172
|
*/
|
|
12161
12173
|
dotnetVersion?: pulumi.Input<string>;
|
|
12162
12174
|
/**
|
|
@@ -13348,7 +13360,7 @@ export declare namespace appservice {
|
|
|
13348
13360
|
*/
|
|
13349
13361
|
dotnetCoreVersion?: pulumi.Input<string>;
|
|
13350
13362
|
/**
|
|
13351
|
-
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0` and `
|
|
13363
|
+
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0`, `v8.0` and `v9.0`.
|
|
13352
13364
|
*/
|
|
13353
13365
|
dotnetVersion?: pulumi.Input<string>;
|
|
13354
13366
|
/**
|
|
@@ -38438,8 +38450,9 @@ export declare namespace mssql {
|
|
|
38438
38450
|
storageUri: pulumi.Input<string>;
|
|
38439
38451
|
}
|
|
38440
38452
|
interface DatabaseLongTermRetentionPolicy {
|
|
38453
|
+
immutableBackupsEnabled?: pulumi.Input<boolean>;
|
|
38441
38454
|
/**
|
|
38442
|
-
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`.
|
|
38455
|
+
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`. Defaults to `PT0S`.
|
|
38443
38456
|
*/
|
|
38444
38457
|
monthlyRetention?: pulumi.Input<string>;
|
|
38445
38458
|
/**
|
|
@@ -38447,11 +38460,11 @@ export declare namespace mssql {
|
|
|
38447
38460
|
*/
|
|
38448
38461
|
weekOfYear?: pulumi.Input<number>;
|
|
38449
38462
|
/**
|
|
38450
|
-
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`.
|
|
38463
|
+
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`. Defaults to `PT0S`.
|
|
38451
38464
|
*/
|
|
38452
38465
|
weeklyRetention?: pulumi.Input<string>;
|
|
38453
38466
|
/**
|
|
38454
|
-
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`.
|
|
38467
|
+
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`. Defaults to `PT0S`.
|
|
38455
38468
|
*/
|
|
38456
38469
|
yearlyRetention?: pulumi.Input<string>;
|
|
38457
38470
|
}
|
|
@@ -38554,8 +38567,9 @@ export declare namespace mssql {
|
|
|
38554
38567
|
mode: pulumi.Input<string>;
|
|
38555
38568
|
}
|
|
38556
38569
|
interface ManagedDatabaseLongTermRetentionPolicy {
|
|
38570
|
+
immutableBackupsEnabled?: pulumi.Input<boolean>;
|
|
38557
38571
|
/**
|
|
38558
|
-
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`.
|
|
38572
|
+
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`. Defaults to `PT0S`.
|
|
38559
38573
|
*/
|
|
38560
38574
|
monthlyRetention?: pulumi.Input<string>;
|
|
38561
38575
|
/**
|
|
@@ -38563,11 +38577,11 @@ export declare namespace mssql {
|
|
|
38563
38577
|
*/
|
|
38564
38578
|
weekOfYear?: pulumi.Input<number>;
|
|
38565
38579
|
/**
|
|
38566
|
-
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`.
|
|
38580
|
+
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`. Defaults to `PT0S`.
|
|
38567
38581
|
*/
|
|
38568
38582
|
weeklyRetention?: pulumi.Input<string>;
|
|
38569
38583
|
/**
|
|
38570
|
-
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`.
|
|
38584
|
+
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`. Defaults to `PT0S`.
|
|
38571
38585
|
*/
|
|
38572
38586
|
yearlyRetention?: pulumi.Input<string>;
|
|
38573
38587
|
}
|
|
@@ -39236,6 +39250,22 @@ export declare namespace netapp {
|
|
|
39236
39250
|
*/
|
|
39237
39251
|
snapshotsToKeep: pulumi.Input<number>;
|
|
39238
39252
|
}
|
|
39253
|
+
interface VolumeDataProtectionBackupPolicy {
|
|
39254
|
+
/**
|
|
39255
|
+
* Resource ID of the backup policy to apply to the volume.
|
|
39256
|
+
*/
|
|
39257
|
+
backupPolicyId: pulumi.Input<string>;
|
|
39258
|
+
/**
|
|
39259
|
+
* Resource ID of the backup backup vault to associate this volume to.
|
|
39260
|
+
*/
|
|
39261
|
+
backupVaultId: pulumi.Input<string>;
|
|
39262
|
+
/**
|
|
39263
|
+
* Enables the backup policy on the volume, defaults to `true`.
|
|
39264
|
+
*
|
|
39265
|
+
* For more information on Azure NetApp Files Backup feature please see [Understand Azure NetApp Files backup](https://learn.microsoft.com/en-us/azure/azure-netapp-files/backup-introduction)
|
|
39266
|
+
*/
|
|
39267
|
+
policyEnabled?: pulumi.Input<boolean>;
|
|
39268
|
+
}
|
|
39239
39269
|
interface VolumeDataProtectionReplication {
|
|
39240
39270
|
/**
|
|
39241
39271
|
* The endpoint type, default value is `dst` for destination.
|
|
@@ -39581,7 +39611,7 @@ export declare namespace network {
|
|
|
39581
39611
|
*/
|
|
39582
39612
|
id?: pulumi.Input<string>;
|
|
39583
39613
|
/**
|
|
39584
|
-
* Status code of the application gateway customer error. Possible values are `HttpStatus403`
|
|
39614
|
+
* Status code of the application gateway customer error. Possible values are `HttpStatus400`, `HttpStatus403`, `HttpStatus404`, `HttpStatus405`, `HttpStatus408`, `HttpStatus500`, `HttpStatus502`, `HttpStatus503` and `HttpStatus504`
|
|
39585
39615
|
*/
|
|
39586
39616
|
statusCode: pulumi.Input<string>;
|
|
39587
39617
|
}
|
|
@@ -39735,7 +39765,7 @@ export declare namespace network {
|
|
|
39735
39765
|
*/
|
|
39736
39766
|
id?: pulumi.Input<string>;
|
|
39737
39767
|
/**
|
|
39738
|
-
* Status code of the application gateway customer error. Possible values are `HttpStatus403`
|
|
39768
|
+
* Status code of the application gateway customer error. Possible values are `HttpStatus400`, `HttpStatus403`, `HttpStatus404`, `HttpStatus405`, `HttpStatus408`, `HttpStatus500`, `HttpStatus502`, `HttpStatus503` and `HttpStatus504`
|
|
39739
39769
|
*/
|
|
39740
39770
|
statusCode: pulumi.Input<string>;
|
|
39741
39771
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -10156,7 +10156,7 @@ export declare namespace appservice {
|
|
|
10156
10156
|
*/
|
|
10157
10157
|
dockers?: outputs.appservice.LinuxFunctionAppSiteConfigApplicationStackDocker[];
|
|
10158
10158
|
/**
|
|
10159
|
-
* The version of .NET to use. Possible values include `3.1`, `6.0`, `7.0` and `
|
|
10159
|
+
* The version of .NET to use. Possible values include `3.1`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
10160
10160
|
*/
|
|
10161
10161
|
dotnetVersion?: string;
|
|
10162
10162
|
/**
|
|
@@ -11132,7 +11132,7 @@ export declare namespace appservice {
|
|
|
11132
11132
|
*/
|
|
11133
11133
|
dockers?: outputs.appservice.LinuxFunctionAppSlotSiteConfigApplicationStackDocker[];
|
|
11134
11134
|
/**
|
|
11135
|
-
* The version of .Net. Possible values are `3.1`, `6.0`, `7.0` and `
|
|
11135
|
+
* The version of .Net. Possible values are `3.1`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
11136
11136
|
*/
|
|
11137
11137
|
dotnetVersion?: string;
|
|
11138
11138
|
/**
|
|
@@ -12208,7 +12208,7 @@ export declare namespace appservice {
|
|
|
12208
12208
|
*/
|
|
12209
12209
|
dockerRegistryUsername?: string;
|
|
12210
12210
|
/**
|
|
12211
|
-
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0` and `
|
|
12211
|
+
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
12212
12212
|
*/
|
|
12213
12213
|
dotnetVersion?: string;
|
|
12214
12214
|
/**
|
|
@@ -13324,7 +13324,7 @@ export declare namespace appservice {
|
|
|
13324
13324
|
*/
|
|
13325
13325
|
dockerRegistryUsername?: string;
|
|
13326
13326
|
/**
|
|
13327
|
-
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0` and `
|
|
13327
|
+
* The version of .NET to use. Possible values include `3.1`, `5.0`, `6.0`, `7.0`, `8.0` and `9.0`.
|
|
13328
13328
|
*/
|
|
13329
13329
|
dotnetVersion?: string;
|
|
13330
13330
|
/**
|
|
@@ -15110,7 +15110,7 @@ export declare namespace appservice {
|
|
|
15110
15110
|
}
|
|
15111
15111
|
interface WindowsFunctionAppSiteConfigApplicationStack {
|
|
15112
15112
|
/**
|
|
15113
|
-
* The version of .NET to use. Possible values include `v3.0`, `v4.0` `v6.0`, `v7.0` and `
|
|
15113
|
+
* The version of .NET to use. Possible values include `v3.0`, `v4.0` `v6.0`, `v7.0`, `v8.0` and `v9.0`. Defaults to `v4.0`.
|
|
15114
15114
|
*/
|
|
15115
15115
|
dotnetVersion?: string;
|
|
15116
15116
|
/**
|
|
@@ -16046,7 +16046,7 @@ export declare namespace appservice {
|
|
|
16046
16046
|
}
|
|
16047
16047
|
interface WindowsFunctionAppSlotSiteConfigApplicationStack {
|
|
16048
16048
|
/**
|
|
16049
|
-
* The version of .Net. Possible values are `v3.0`, `v4.0`, `v6.0`, `v7.0` and `
|
|
16049
|
+
* The version of .Net. Possible values are `v3.0`, `v4.0`, `v6.0`, `v7.0`, `v8.0` and `v9.0`. Defaults to `v4.0`.
|
|
16050
16050
|
*/
|
|
16051
16051
|
dotnetVersion?: string;
|
|
16052
16052
|
/**
|
|
@@ -17113,7 +17113,7 @@ export declare namespace appservice {
|
|
|
17113
17113
|
*/
|
|
17114
17114
|
dotnetCoreVersion?: string;
|
|
17115
17115
|
/**
|
|
17116
|
-
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0` and `
|
|
17116
|
+
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0`, `v8.0` and `v9.0`.
|
|
17117
17117
|
*
|
|
17118
17118
|
* > **NOTE:** The Portal displayed values and the actual underlying API values differ for this setting, as follows:
|
|
17119
17119
|
* Portal Value | API value
|
|
@@ -17123,6 +17123,7 @@ export declare namespace appservice {
|
|
|
17123
17123
|
* .NET 6 (LTS) | v6.0
|
|
17124
17124
|
* .NET 7 (STS) | v7.0
|
|
17125
17125
|
* .NET 8 (LTS) | v8.0
|
|
17126
|
+
* .NET 9 (STS) | v9.0
|
|
17126
17127
|
*/
|
|
17127
17128
|
dotnetVersion: string;
|
|
17128
17129
|
/**
|
|
@@ -18314,7 +18315,7 @@ export declare namespace appservice {
|
|
|
18314
18315
|
*/
|
|
18315
18316
|
dotnetCoreVersion?: string;
|
|
18316
18317
|
/**
|
|
18317
|
-
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0` and `
|
|
18318
|
+
* The version of .NET to use when `currentStack` is set to `dotnet`. Possible values include `v2.0`,`v3.0`, `v4.0`, `v5.0`, `v6.0`, `v7.0`, `v8.0` and `v9.0`.
|
|
18318
18319
|
*/
|
|
18319
18320
|
dotnetVersion: string;
|
|
18320
18321
|
/**
|
|
@@ -27262,6 +27263,7 @@ export declare namespace config {
|
|
|
27262
27263
|
logAnalyticsWorkspace?: outputs.config.FeaturesLogAnalyticsWorkspace;
|
|
27263
27264
|
machineLearning?: outputs.config.FeaturesMachineLearning;
|
|
27264
27265
|
managedDisk?: outputs.config.FeaturesManagedDisk;
|
|
27266
|
+
netapp?: outputs.config.FeaturesNetapp;
|
|
27265
27267
|
postgresqlFlexibleServer?: outputs.config.FeaturesPostgresqlFlexibleServer;
|
|
27266
27268
|
recoveryService?: outputs.config.FeaturesRecoveryService;
|
|
27267
27269
|
recoveryServicesVaults?: outputs.config.FeaturesRecoveryServicesVaults;
|
|
@@ -27341,6 +27343,16 @@ export declare namespace config {
|
|
|
27341
27343
|
interface FeaturesManagedDisk {
|
|
27342
27344
|
expandWithoutDowntime?: boolean;
|
|
27343
27345
|
}
|
|
27346
|
+
interface FeaturesNetapp {
|
|
27347
|
+
/**
|
|
27348
|
+
* When enabled, backups will be deleted when the `azure.netapp.BackupVault` resource is destroyed
|
|
27349
|
+
*/
|
|
27350
|
+
deleteBackupsOnBackupVaultDestroy?: boolean;
|
|
27351
|
+
/**
|
|
27352
|
+
* When enabled, the volume will not be destroyed, safeguarding from severe data loss
|
|
27353
|
+
*/
|
|
27354
|
+
preventVolumeDestruction?: boolean;
|
|
27355
|
+
}
|
|
27344
27356
|
interface FeaturesPostgresqlFlexibleServer {
|
|
27345
27357
|
restartServerOnConfigurationValueChange?: boolean;
|
|
27346
27358
|
}
|
|
@@ -48709,8 +48721,9 @@ export declare namespace mssql {
|
|
|
48709
48721
|
storageUri: string;
|
|
48710
48722
|
}
|
|
48711
48723
|
interface DatabaseLongTermRetentionPolicy {
|
|
48724
|
+
immutableBackupsEnabled?: boolean;
|
|
48712
48725
|
/**
|
|
48713
|
-
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`.
|
|
48726
|
+
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`. Defaults to `PT0S`.
|
|
48714
48727
|
*/
|
|
48715
48728
|
monthlyRetention: string;
|
|
48716
48729
|
/**
|
|
@@ -48718,11 +48731,11 @@ export declare namespace mssql {
|
|
|
48718
48731
|
*/
|
|
48719
48732
|
weekOfYear: number;
|
|
48720
48733
|
/**
|
|
48721
|
-
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`.
|
|
48734
|
+
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`. Defaults to `PT0S`.
|
|
48722
48735
|
*/
|
|
48723
48736
|
weeklyRetention: string;
|
|
48724
48737
|
/**
|
|
48725
|
-
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`.
|
|
48738
|
+
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`. Defaults to `PT0S`.
|
|
48726
48739
|
*/
|
|
48727
48740
|
yearlyRetention: string;
|
|
48728
48741
|
}
|
|
@@ -48889,8 +48902,9 @@ export declare namespace mssql {
|
|
|
48889
48902
|
type: string;
|
|
48890
48903
|
}
|
|
48891
48904
|
interface ManagedDatabaseLongTermRetentionPolicy {
|
|
48905
|
+
immutableBackupsEnabled?: boolean;
|
|
48892
48906
|
/**
|
|
48893
|
-
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`.
|
|
48907
|
+
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`. Defaults to `PT0S`.
|
|
48894
48908
|
*/
|
|
48895
48909
|
monthlyRetention: string;
|
|
48896
48910
|
/**
|
|
@@ -48898,11 +48912,11 @@ export declare namespace mssql {
|
|
|
48898
48912
|
*/
|
|
48899
48913
|
weekOfYear: number;
|
|
48900
48914
|
/**
|
|
48901
|
-
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`.
|
|
48915
|
+
* The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. `P1Y`, `P1M`, `P1W` or `P7D`. Defaults to `PT0S`.
|
|
48902
48916
|
*/
|
|
48903
48917
|
weeklyRetention: string;
|
|
48904
48918
|
/**
|
|
48905
|
-
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`.
|
|
48919
|
+
* The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. `P1Y`, `P12M`, `P52W` or `P365D`. Defaults to `PT0S`.
|
|
48906
48920
|
*/
|
|
48907
48921
|
yearlyRetention: string;
|
|
48908
48922
|
}
|
|
@@ -49604,6 +49618,20 @@ export declare namespace netapp {
|
|
|
49604
49618
|
*/
|
|
49605
49619
|
snapshotsToKeep: number;
|
|
49606
49620
|
}
|
|
49621
|
+
interface GetVolumeDataProtectionBackupPolicy {
|
|
49622
|
+
/**
|
|
49623
|
+
* The Resource ID of the backup policy.
|
|
49624
|
+
*/
|
|
49625
|
+
backupPolicyId: string;
|
|
49626
|
+
/**
|
|
49627
|
+
* The Resource ID of the backup backup vault.
|
|
49628
|
+
*/
|
|
49629
|
+
backupVaultId: string;
|
|
49630
|
+
/**
|
|
49631
|
+
* Backup policy is enabled or not.
|
|
49632
|
+
*/
|
|
49633
|
+
policyEnabled: boolean;
|
|
49634
|
+
}
|
|
49607
49635
|
interface GetVolumeDataProtectionReplication {
|
|
49608
49636
|
/**
|
|
49609
49637
|
* The endpoint type.
|
|
@@ -49812,6 +49840,22 @@ export declare namespace netapp {
|
|
|
49812
49840
|
*/
|
|
49813
49841
|
snapshotsToKeep: number;
|
|
49814
49842
|
}
|
|
49843
|
+
interface VolumeDataProtectionBackupPolicy {
|
|
49844
|
+
/**
|
|
49845
|
+
* Resource ID of the backup policy to apply to the volume.
|
|
49846
|
+
*/
|
|
49847
|
+
backupPolicyId: string;
|
|
49848
|
+
/**
|
|
49849
|
+
* Resource ID of the backup backup vault to associate this volume to.
|
|
49850
|
+
*/
|
|
49851
|
+
backupVaultId: string;
|
|
49852
|
+
/**
|
|
49853
|
+
* Enables the backup policy on the volume, defaults to `true`.
|
|
49854
|
+
*
|
|
49855
|
+
* For more information on Azure NetApp Files Backup feature please see [Understand Azure NetApp Files backup](https://learn.microsoft.com/en-us/azure/azure-netapp-files/backup-introduction)
|
|
49856
|
+
*/
|
|
49857
|
+
policyEnabled?: boolean;
|
|
49858
|
+
}
|
|
49815
49859
|
interface VolumeDataProtectionReplication {
|
|
49816
49860
|
/**
|
|
49817
49861
|
* The endpoint type, default value is `dst` for destination.
|
|
@@ -50157,7 +50201,7 @@ export declare namespace network {
|
|
|
50157
50201
|
*/
|
|
50158
50202
|
id: string;
|
|
50159
50203
|
/**
|
|
50160
|
-
* Status code of the application gateway customer error. Possible values are `HttpStatus403`
|
|
50204
|
+
* Status code of the application gateway customer error. Possible values are `HttpStatus400`, `HttpStatus403`, `HttpStatus404`, `HttpStatus405`, `HttpStatus408`, `HttpStatus500`, `HttpStatus502`, `HttpStatus503` and `HttpStatus504`
|
|
50161
50205
|
*/
|
|
50162
50206
|
statusCode: string;
|
|
50163
50207
|
}
|
|
@@ -50311,7 +50355,7 @@ export declare namespace network {
|
|
|
50311
50355
|
*/
|
|
50312
50356
|
id: string;
|
|
50313
50357
|
/**
|
|
50314
|
-
* Status code of the application gateway customer error. Possible values are `HttpStatus403`
|
|
50358
|
+
* Status code of the application gateway customer error. Possible values are `HttpStatus400`, `HttpStatus403`, `HttpStatus404`, `HttpStatus405`, `HttpStatus408`, `HttpStatus500`, `HttpStatus502`, `HttpStatus503` and `HttpStatus504`
|
|
50315
50359
|
*/
|
|
50316
50360
|
statusCode: string;
|
|
50317
50361
|
}
|