@pulumi/azure 5.76.0-alpha.1715338557 → 5.77.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/compute/automanageConfigurationAssignment.d.ts +134 -0
- package/compute/automanageConfigurationAssignment.js +131 -0
- package/compute/automanageConfigurationAssignment.js.map +1 -0
- package/compute/bastionHost.d.ts +18 -0
- package/compute/bastionHost.js +2 -0
- package/compute/bastionHost.js.map +1 -1
- package/compute/galleryApplicationAssignment.d.ts +174 -0
- package/compute/galleryApplicationAssignment.js +141 -0
- package/compute/galleryApplicationAssignment.js.map +1 -0
- package/compute/index.d.ts +6 -0
- package/compute/index.js +12 -2
- package/compute/index.js.map +1 -1
- package/compute/linuxVirtualMachine.d.ts +9 -3
- package/compute/linuxVirtualMachine.js.map +1 -1
- package/compute/windowsVirtualMachine.d.ts +6 -0
- package/compute/windowsVirtualMachine.js.map +1 -1
- package/containerapp/environment.d.ts +8 -0
- package/containerapp/environment.js +2 -0
- package/containerapp/environment.js.map +1 -1
- package/containerapp/environmentCustomDomain.d.ts +129 -0
- package/containerapp/environmentCustomDomain.js +114 -0
- package/containerapp/environmentCustomDomain.js.map +1 -0
- package/containerapp/getEnvironment.d.ts +4 -0
- package/containerapp/getEnvironment.js.map +1 -1
- package/containerapp/index.d.ts +6 -0
- package/containerapp/index.js +11 -1
- package/containerapp/index.js.map +1 -1
- package/containerapp/job.d.ts +323 -0
- package/containerapp/job.js +172 -0
- package/containerapp/job.js.map +1 -0
- package/datafactory/credentialServicePrincipal.d.ts +200 -0
- package/datafactory/credentialServicePrincipal.js +148 -0
- package/datafactory/credentialServicePrincipal.js.map +1 -0
- package/datafactory/index.d.ts +3 -0
- package/datafactory/index.js +7 -2
- package/datafactory/index.js.map +1 -1
- package/kusto/cluster.d.ts +1 -1
- package/maintenance/assignmentDynamicScope.d.ts +93 -0
- package/maintenance/assignmentDynamicScope.js +72 -0
- package/maintenance/assignmentDynamicScope.js.map +1 -0
- package/maintenance/index.d.ts +3 -0
- package/maintenance/index.js +6 -1
- package/maintenance/index.js.map +1 -1
- package/mssql/database.d.ts +6 -0
- package/mssql/database.js.map +1 -1
- package/network/getNetworkManagerConnectivityConfiguration.d.ts +97 -0
- package/network/getNetworkManagerConnectivityConfiguration.js +52 -0
- package/network/getNetworkManagerConnectivityConfiguration.js.map +1 -0
- package/network/getSubnet.d.ts +4 -0
- package/network/getSubnet.js.map +1 -1
- package/network/index.d.ts +3 -0
- package/network/index.js +7 -3
- package/network/index.js.map +1 -1
- package/network/profile.d.ts +3 -3
- package/network/subnet.d.ts +24 -12
- package/network/subnet.js +2 -0
- package/network/subnet.js.map +1 -1
- package/package.json +1 -1
- package/postgresql/flexibleServer.d.ts +9 -3
- package/postgresql/flexibleServer.js.map +1 -1
- package/types/input.d.ts +670 -16
- package/types/output.d.ts +753 -23
package/types/output.d.ts
CHANGED
|
@@ -5615,7 +5615,7 @@ export declare namespace appservice {
|
|
|
5615
5615
|
[key: string]: string;
|
|
5616
5616
|
};
|
|
5617
5617
|
/**
|
|
5618
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
5618
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
5619
5619
|
*/
|
|
5620
5620
|
tenantAuthEndpoint: string;
|
|
5621
5621
|
/**
|
|
@@ -6533,7 +6533,7 @@ export declare namespace appservice {
|
|
|
6533
6533
|
[key: string]: string;
|
|
6534
6534
|
};
|
|
6535
6535
|
/**
|
|
6536
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
6536
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
6537
6537
|
*/
|
|
6538
6538
|
tenantAuthEndpoint: string;
|
|
6539
6539
|
/**
|
|
@@ -7095,10 +7095,14 @@ export declare namespace appservice {
|
|
|
7095
7095
|
* A `requests` block as defined above.
|
|
7096
7096
|
*/
|
|
7097
7097
|
requests: outputs.appservice.GetLinuxWebAppSiteConfigAutoHealSettingTriggerRequest[];
|
|
7098
|
+
/**
|
|
7099
|
+
* (Optional) One or more `slowRequestWithPath` blocks as defined above.
|
|
7100
|
+
*/
|
|
7101
|
+
slowRequestWithPaths: outputs.appservice.GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath[];
|
|
7098
7102
|
/**
|
|
7099
7103
|
* A `slowRequest` block as defined above.
|
|
7100
7104
|
*/
|
|
7101
|
-
slowRequests
|
|
7105
|
+
slowRequests: outputs.appservice.GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest[];
|
|
7102
7106
|
/**
|
|
7103
7107
|
* A `statusCode` block as defined above.
|
|
7104
7108
|
*/
|
|
@@ -7115,6 +7119,26 @@ export declare namespace appservice {
|
|
|
7115
7119
|
interval: string;
|
|
7116
7120
|
}
|
|
7117
7121
|
interface GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest {
|
|
7122
|
+
/**
|
|
7123
|
+
* The number of occurrences of the defined `statusCode` in the specified `interval` on which to trigger this rule.
|
|
7124
|
+
*/
|
|
7125
|
+
count: number;
|
|
7126
|
+
/**
|
|
7127
|
+
* The time interval in the form `hh:mm:ss`.
|
|
7128
|
+
*/
|
|
7129
|
+
interval: string;
|
|
7130
|
+
/**
|
|
7131
|
+
* The path to which this rule status code applies.
|
|
7132
|
+
*
|
|
7133
|
+
* @deprecated `path` will be removed in `slowRequest` and please use `slowRequestWithPath` to set the path in version 4.0 of the AzureRM Provider.
|
|
7134
|
+
*/
|
|
7135
|
+
path: string;
|
|
7136
|
+
/**
|
|
7137
|
+
* (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
7138
|
+
*/
|
|
7139
|
+
timeTaken: string;
|
|
7140
|
+
}
|
|
7141
|
+
interface GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
|
|
7118
7142
|
/**
|
|
7119
7143
|
* The number of occurrences of the defined `statusCode` in the specified `interval` on which to trigger this rule.
|
|
7120
7144
|
*/
|
|
@@ -7128,7 +7152,7 @@ export declare namespace appservice {
|
|
|
7128
7152
|
*/
|
|
7129
7153
|
path: string;
|
|
7130
7154
|
/**
|
|
7131
|
-
* The
|
|
7155
|
+
* (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
7132
7156
|
*/
|
|
7133
7157
|
timeTaken: string;
|
|
7134
7158
|
}
|
|
@@ -7632,7 +7656,7 @@ export declare namespace appservice {
|
|
|
7632
7656
|
[key: string]: string;
|
|
7633
7657
|
};
|
|
7634
7658
|
/**
|
|
7635
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
7659
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
7636
7660
|
*/
|
|
7637
7661
|
tenantAuthEndpoint: string;
|
|
7638
7662
|
/**
|
|
@@ -8515,7 +8539,7 @@ export declare namespace appservice {
|
|
|
8515
8539
|
[key: string]: string;
|
|
8516
8540
|
};
|
|
8517
8541
|
/**
|
|
8518
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
8542
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
8519
8543
|
*/
|
|
8520
8544
|
tenantAuthEndpoint: string;
|
|
8521
8545
|
/**
|
|
@@ -9104,6 +9128,10 @@ export declare namespace appservice {
|
|
|
9104
9128
|
* A `requests` block as defined above.
|
|
9105
9129
|
*/
|
|
9106
9130
|
requests: outputs.appservice.GetWindowsWebAppSiteConfigAutoHealSettingTriggerRequest[];
|
|
9131
|
+
/**
|
|
9132
|
+
* (Optional) One or more `slowRequestWithPath` blocks as defined above.
|
|
9133
|
+
*/
|
|
9134
|
+
slowRequestWithPaths: outputs.appservice.GetWindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath[];
|
|
9107
9135
|
/**
|
|
9108
9136
|
* A `slowRequest` block as defined above.
|
|
9109
9137
|
*/
|
|
@@ -9134,10 +9162,30 @@ export declare namespace appservice {
|
|
|
9134
9162
|
interval: string;
|
|
9135
9163
|
/**
|
|
9136
9164
|
* The path to which this rule status code applies.
|
|
9165
|
+
*
|
|
9166
|
+
* @deprecated `path` will be removed in `slowRequest` and please use `slowRequestWithPath` to set the path in version 4.0 of the AzureRM Provider.
|
|
9137
9167
|
*/
|
|
9138
9168
|
path: string;
|
|
9139
9169
|
/**
|
|
9140
|
-
* The
|
|
9170
|
+
* (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
9171
|
+
*/
|
|
9172
|
+
timeTaken: string;
|
|
9173
|
+
}
|
|
9174
|
+
interface GetWindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
|
|
9175
|
+
/**
|
|
9176
|
+
* The number of occurrences of the defined `statusCode` in the specified `interval` on which to trigger this rule.
|
|
9177
|
+
*/
|
|
9178
|
+
count: number;
|
|
9179
|
+
/**
|
|
9180
|
+
* The time interval in the form `hh:mm:ss`.
|
|
9181
|
+
*/
|
|
9182
|
+
interval: string;
|
|
9183
|
+
/**
|
|
9184
|
+
* The path to which this rule status code applies.
|
|
9185
|
+
*/
|
|
9186
|
+
path: string;
|
|
9187
|
+
/**
|
|
9188
|
+
* (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
9141
9189
|
*/
|
|
9142
9190
|
timeTaken: string;
|
|
9143
9191
|
}
|
|
@@ -9681,7 +9729,9 @@ export declare namespace appservice {
|
|
|
9681
9729
|
[key: string]: string;
|
|
9682
9730
|
};
|
|
9683
9731
|
/**
|
|
9684
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
9732
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
9733
|
+
*
|
|
9734
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
9685
9735
|
*/
|
|
9686
9736
|
tenantAuthEndpoint: string;
|
|
9687
9737
|
/**
|
|
@@ -10655,7 +10705,9 @@ export declare namespace appservice {
|
|
|
10655
10705
|
[key: string]: string;
|
|
10656
10706
|
};
|
|
10657
10707
|
/**
|
|
10658
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
10708
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
10709
|
+
*
|
|
10710
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
10659
10711
|
*/
|
|
10660
10712
|
tenantAuthEndpoint: string;
|
|
10661
10713
|
/**
|
|
@@ -11691,7 +11743,9 @@ export declare namespace appservice {
|
|
|
11691
11743
|
[key: string]: string;
|
|
11692
11744
|
};
|
|
11693
11745
|
/**
|
|
11694
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
11746
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
11747
|
+
*
|
|
11748
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
11695
11749
|
*/
|
|
11696
11750
|
tenantAuthEndpoint: string;
|
|
11697
11751
|
/**
|
|
@@ -12287,7 +12341,11 @@ export declare namespace appservice {
|
|
|
12287
12341
|
*/
|
|
12288
12342
|
requests?: outputs.appservice.LinuxWebAppSiteConfigAutoHealSettingTriggerRequests;
|
|
12289
12343
|
/**
|
|
12290
|
-
* One or more `
|
|
12344
|
+
* One or more `slowRequestWithPath` blocks as defined above.
|
|
12345
|
+
*/
|
|
12346
|
+
slowRequestWithPaths?: outputs.appservice.LinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath[];
|
|
12347
|
+
/**
|
|
12348
|
+
* A `slowRequest` blocks as defined above.
|
|
12291
12349
|
*/
|
|
12292
12350
|
slowRequests?: outputs.appservice.LinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest[];
|
|
12293
12351
|
/**
|
|
@@ -12306,6 +12364,28 @@ export declare namespace appservice {
|
|
|
12306
12364
|
interval: string;
|
|
12307
12365
|
}
|
|
12308
12366
|
interface LinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest {
|
|
12367
|
+
/**
|
|
12368
|
+
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
12369
|
+
*/
|
|
12370
|
+
count: number;
|
|
12371
|
+
/**
|
|
12372
|
+
* The time interval in the form `hh:mm:ss`.
|
|
12373
|
+
*/
|
|
12374
|
+
interval: string;
|
|
12375
|
+
/**
|
|
12376
|
+
* The path for which this slow request rule applies.
|
|
12377
|
+
*
|
|
12378
|
+
* > **NOTE:** `path` in `slowRequest` block will be deprecated in 4.0 provider. Please use `slowRequestWithPath` to set a slow request trigger with path specified.
|
|
12379
|
+
*
|
|
12380
|
+
* @deprecated `path` will be removed in `slowRequest` and please use `slowRequestWithPath` to set the path in version 4.0 of the AzureRM Provider.
|
|
12381
|
+
*/
|
|
12382
|
+
path?: string;
|
|
12383
|
+
/**
|
|
12384
|
+
* The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
12385
|
+
*/
|
|
12386
|
+
timeTaken: string;
|
|
12387
|
+
}
|
|
12388
|
+
interface LinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
|
|
12309
12389
|
/**
|
|
12310
12390
|
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
12311
12391
|
*/
|
|
@@ -12795,7 +12875,9 @@ export declare namespace appservice {
|
|
|
12795
12875
|
[key: string]: string;
|
|
12796
12876
|
};
|
|
12797
12877
|
/**
|
|
12798
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
12878
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
12879
|
+
*
|
|
12880
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
12799
12881
|
*/
|
|
12800
12882
|
tenantAuthEndpoint: string;
|
|
12801
12883
|
/**
|
|
@@ -13393,7 +13475,11 @@ export declare namespace appservice {
|
|
|
13393
13475
|
*/
|
|
13394
13476
|
requests?: outputs.appservice.LinuxWebAppSlotSiteConfigAutoHealSettingTriggerRequests;
|
|
13395
13477
|
/**
|
|
13396
|
-
* One or more `
|
|
13478
|
+
* One or more `slowRequestWithPath` blocks as defined above.
|
|
13479
|
+
*/
|
|
13480
|
+
slowRequestWithPaths?: outputs.appservice.LinuxWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequestWithPath[];
|
|
13481
|
+
/**
|
|
13482
|
+
* A `slowRequest` block as defined above.
|
|
13397
13483
|
*/
|
|
13398
13484
|
slowRequests?: outputs.appservice.LinuxWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequest[];
|
|
13399
13485
|
/**
|
|
@@ -13412,6 +13498,28 @@ export declare namespace appservice {
|
|
|
13412
13498
|
interval: string;
|
|
13413
13499
|
}
|
|
13414
13500
|
interface LinuxWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequest {
|
|
13501
|
+
/**
|
|
13502
|
+
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
13503
|
+
*/
|
|
13504
|
+
count: number;
|
|
13505
|
+
/**
|
|
13506
|
+
* The time interval in the form `hh:mm:ss`.
|
|
13507
|
+
*/
|
|
13508
|
+
interval: string;
|
|
13509
|
+
/**
|
|
13510
|
+
* The path for which this slow request rule applies.
|
|
13511
|
+
*
|
|
13512
|
+
* > **NOTE:** `path` in `slowRequest` block will be deprecated in 4.0 provider. Please use `slowRequestWithPath` to set a slow request trigger with path specified.
|
|
13513
|
+
*
|
|
13514
|
+
* @deprecated `path` will be removed in `slowRequest` and please use `slowRequestWithPath` to set the path in version 4.0 of the AzureRM Provider.
|
|
13515
|
+
*/
|
|
13516
|
+
path?: string;
|
|
13517
|
+
/**
|
|
13518
|
+
* The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
13519
|
+
*/
|
|
13520
|
+
timeTaken: string;
|
|
13521
|
+
}
|
|
13522
|
+
interface LinuxWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
|
|
13415
13523
|
/**
|
|
13416
13524
|
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
13417
13525
|
*/
|
|
@@ -14627,7 +14735,9 @@ export declare namespace appservice {
|
|
|
14627
14735
|
[key: string]: string;
|
|
14628
14736
|
};
|
|
14629
14737
|
/**
|
|
14630
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
14738
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
14739
|
+
*
|
|
14740
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
14631
14741
|
*/
|
|
14632
14742
|
tenantAuthEndpoint: string;
|
|
14633
14743
|
/**
|
|
@@ -15561,7 +15671,9 @@ export declare namespace appservice {
|
|
|
15561
15671
|
[key: string]: string;
|
|
15562
15672
|
};
|
|
15563
15673
|
/**
|
|
15564
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
15674
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
15675
|
+
*
|
|
15676
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
15565
15677
|
*/
|
|
15566
15678
|
tenantAuthEndpoint: string;
|
|
15567
15679
|
/**
|
|
@@ -16555,7 +16667,9 @@ export declare namespace appservice {
|
|
|
16555
16667
|
[key: string]: string;
|
|
16556
16668
|
};
|
|
16557
16669
|
/**
|
|
16558
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
16670
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
16671
|
+
*
|
|
16672
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
16559
16673
|
*/
|
|
16560
16674
|
tenantAuthEndpoint: string;
|
|
16561
16675
|
/**
|
|
@@ -17205,7 +17319,11 @@ export declare namespace appservice {
|
|
|
17205
17319
|
*/
|
|
17206
17320
|
requests?: outputs.appservice.WindowsWebAppSiteConfigAutoHealSettingTriggerRequests;
|
|
17207
17321
|
/**
|
|
17208
|
-
* One or more `
|
|
17322
|
+
* One or more `slowRequestWithPath` blocks as defined above.
|
|
17323
|
+
*/
|
|
17324
|
+
slowRequestWithPaths?: outputs.appservice.WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath[];
|
|
17325
|
+
/**
|
|
17326
|
+
* A `slowRequest` block as defined above.
|
|
17209
17327
|
*/
|
|
17210
17328
|
slowRequests?: outputs.appservice.WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest[];
|
|
17211
17329
|
/**
|
|
@@ -17224,6 +17342,26 @@ export declare namespace appservice {
|
|
|
17224
17342
|
interval: string;
|
|
17225
17343
|
}
|
|
17226
17344
|
interface WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest {
|
|
17345
|
+
/**
|
|
17346
|
+
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
17347
|
+
*/
|
|
17348
|
+
count: number;
|
|
17349
|
+
/**
|
|
17350
|
+
* The time interval in the form `hh:mm:ss`.
|
|
17351
|
+
*/
|
|
17352
|
+
interval: string;
|
|
17353
|
+
/**
|
|
17354
|
+
* The path for which this slow request rule applies.
|
|
17355
|
+
*
|
|
17356
|
+
* @deprecated `path` will be removed in `slowRequest` and please use `slowRequestWithPath` to set the path in version 4.0 of the AzureRM Provider.
|
|
17357
|
+
*/
|
|
17358
|
+
path?: string;
|
|
17359
|
+
/**
|
|
17360
|
+
* The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
17361
|
+
*/
|
|
17362
|
+
timeTaken: string;
|
|
17363
|
+
}
|
|
17364
|
+
interface WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
|
|
17227
17365
|
/**
|
|
17228
17366
|
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
17229
17367
|
*/
|
|
@@ -17755,7 +17893,9 @@ export declare namespace appservice {
|
|
|
17755
17893
|
[key: string]: string;
|
|
17756
17894
|
};
|
|
17757
17895
|
/**
|
|
17758
|
-
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/
|
|
17896
|
+
* The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
|
|
17897
|
+
*
|
|
17898
|
+
* > **NOTE:** [Here](https://learn.microsoft.com/en-us/entra/identity-platform/authentication-national-cloud#microsoft-entra-authentication-endpoints) is a list of possible authentication endpoints based on the cloud environment. [Here](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-provider-aad?tabs=workforce-tenant) is more information to better understand how to configure authentication for Azure App Service or Azure Functions.
|
|
17759
17899
|
*/
|
|
17760
17900
|
tenantAuthEndpoint: string;
|
|
17761
17901
|
/**
|
|
@@ -18397,7 +18537,11 @@ export declare namespace appservice {
|
|
|
18397
18537
|
*/
|
|
18398
18538
|
requests?: outputs.appservice.WindowsWebAppSlotSiteConfigAutoHealSettingTriggerRequests;
|
|
18399
18539
|
/**
|
|
18400
|
-
* One or more `
|
|
18540
|
+
* One or more `slowRequestWithPath` blocks as defined above.
|
|
18541
|
+
*/
|
|
18542
|
+
slowRequestWithPaths?: outputs.appservice.WindowsWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequestWithPath[];
|
|
18543
|
+
/**
|
|
18544
|
+
* A `slowRequest` block as defined above.
|
|
18401
18545
|
*/
|
|
18402
18546
|
slowRequests?: outputs.appservice.WindowsWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequest[];
|
|
18403
18547
|
/**
|
|
@@ -18416,6 +18560,26 @@ export declare namespace appservice {
|
|
|
18416
18560
|
interval: string;
|
|
18417
18561
|
}
|
|
18418
18562
|
interface WindowsWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequest {
|
|
18563
|
+
/**
|
|
18564
|
+
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
18565
|
+
*/
|
|
18566
|
+
count: number;
|
|
18567
|
+
/**
|
|
18568
|
+
* The time interval in the form `hh:mm:ss`.
|
|
18569
|
+
*/
|
|
18570
|
+
interval: string;
|
|
18571
|
+
/**
|
|
18572
|
+
* The path for which this slow request rule applies.
|
|
18573
|
+
*
|
|
18574
|
+
* @deprecated `path` will be removed in `slowRequest` and please use `slowRequestWithPath` to set the path in version 4.0 of the AzureRM Provider.
|
|
18575
|
+
*/
|
|
18576
|
+
path?: string;
|
|
18577
|
+
/**
|
|
18578
|
+
* The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
|
|
18579
|
+
*/
|
|
18580
|
+
timeTaken: string;
|
|
18581
|
+
}
|
|
18582
|
+
interface WindowsWebAppSlotSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
|
|
18419
18583
|
/**
|
|
18420
18584
|
* The number of Slow Requests in the time `interval` to trigger this rule.
|
|
18421
18585
|
*/
|
|
@@ -23962,6 +24126,10 @@ export declare namespace compute {
|
|
|
23962
24126
|
sizeGb: number;
|
|
23963
24127
|
}
|
|
23964
24128
|
interface LinuxVirtualMachineAdditionalCapabilities {
|
|
24129
|
+
/**
|
|
24130
|
+
* Whether to enable the hibernation capability or not. Changing this forces a new Linux Virtual Machine to be created.
|
|
24131
|
+
*/
|
|
24132
|
+
hibernationEnabled?: boolean;
|
|
23965
24133
|
/**
|
|
23966
24134
|
* Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine? Defaults to `false`.
|
|
23967
24135
|
*/
|
|
@@ -23997,7 +24165,7 @@ export declare namespace compute {
|
|
|
23997
24165
|
*/
|
|
23998
24166
|
configurationBlobUri?: string;
|
|
23999
24167
|
/**
|
|
24000
|
-
* Specifies the order in which the packages have to be installed. Possible values are between `0` and `
|
|
24168
|
+
* Specifies the order in which the packages have to be installed. Possible values are between `0` and `2147483647`. Defaults to `0`.
|
|
24001
24169
|
*/
|
|
24002
24170
|
order?: number;
|
|
24003
24171
|
/**
|
|
@@ -24507,6 +24675,12 @@ export declare namespace compute {
|
|
|
24507
24675
|
* The maximum percentage of upgraded virtual machine instances that can be found to be in an unhealthy state. This check will happen after each batch is upgraded. If this percentage is ever exceeded, the rolling update aborts.
|
|
24508
24676
|
*/
|
|
24509
24677
|
maxUnhealthyUpgradedInstancePercent: number;
|
|
24678
|
+
/**
|
|
24679
|
+
* 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`.
|
|
24680
|
+
*
|
|
24681
|
+
* > **NOTE:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
|
|
24682
|
+
*/
|
|
24683
|
+
maximumSurgeInstancesEnabled?: boolean;
|
|
24510
24684
|
/**
|
|
24511
24685
|
* The wait time between completing the update for all virtual machines in one batch and starting the next batch. The time duration should be specified in ISO 8601 format.
|
|
24512
24686
|
*/
|
|
@@ -26192,6 +26366,10 @@ export declare namespace compute {
|
|
|
26192
26366
|
writeAcceleratorEnabled?: boolean;
|
|
26193
26367
|
}
|
|
26194
26368
|
interface WindowsVirtualMachineAdditionalCapabilities {
|
|
26369
|
+
/**
|
|
26370
|
+
* Whether to enable the hibernation capability or not. Changing this forces a new Windows Virtual Machine to be created.
|
|
26371
|
+
*/
|
|
26372
|
+
hibernationEnabled?: boolean;
|
|
26195
26373
|
/**
|
|
26196
26374
|
* Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine? Defaults to `false`.
|
|
26197
26375
|
*/
|
|
@@ -26225,7 +26403,7 @@ export declare namespace compute {
|
|
|
26225
26403
|
*/
|
|
26226
26404
|
configurationBlobUri?: string;
|
|
26227
26405
|
/**
|
|
26228
|
-
* Specifies the order in which the packages have to be installed. Possible values are between `0` and `
|
|
26406
|
+
* Specifies the order in which the packages have to be installed. Possible values are between `0` and `2147483647`. Defaults to `0`.
|
|
26229
26407
|
*/
|
|
26230
26408
|
order?: number;
|
|
26231
26409
|
/**
|
|
@@ -26735,6 +26913,12 @@ export declare namespace compute {
|
|
|
26735
26913
|
* The maximum percentage of upgraded virtual machine instances that can be found to be in an unhealthy state. This check will happen after each batch is upgraded. If this percentage is ever exceeded, the rolling update aborts.
|
|
26736
26914
|
*/
|
|
26737
26915
|
maxUnhealthyUpgradedInstancePercent: number;
|
|
26916
|
+
/**
|
|
26917
|
+
* 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`.
|
|
26918
|
+
*
|
|
26919
|
+
* > **NOTE:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
|
|
26920
|
+
*/
|
|
26921
|
+
maximumSurgeInstancesEnabled?: boolean;
|
|
26738
26922
|
/**
|
|
26739
26923
|
* The wait time between completing the update for all virtual machines in one batch and starting the next batch. The time duration should be specified in ISO 8601 format.
|
|
26740
26924
|
*/
|
|
@@ -26941,6 +27125,7 @@ export declare namespace config {
|
|
|
26941
27125
|
managedDisk?: outputs.config.FeaturesManagedDisk;
|
|
26942
27126
|
postgresqlFlexibleServer?: outputs.config.FeaturesPostgresqlFlexibleServer;
|
|
26943
27127
|
recoveryService?: outputs.config.FeaturesRecoveryService;
|
|
27128
|
+
recoveryServicesVaults?: outputs.config.FeaturesRecoveryServicesVaults;
|
|
26944
27129
|
resourceGroup?: outputs.config.FeaturesResourceGroup;
|
|
26945
27130
|
subscription?: outputs.config.FeaturesSubscription;
|
|
26946
27131
|
templateDeployment?: outputs.config.FeaturesTemplateDeployment;
|
|
@@ -27015,6 +27200,9 @@ export declare namespace config {
|
|
|
27015
27200
|
purgeProtectedItemsFromVaultOnDestroy?: boolean;
|
|
27016
27201
|
vmBackupStopProtectionAndRetainDataOnDestroy?: boolean;
|
|
27017
27202
|
}
|
|
27203
|
+
interface FeaturesRecoveryServicesVaults {
|
|
27204
|
+
recoverSoftDeletedBackupProtectedVm?: boolean;
|
|
27205
|
+
}
|
|
27018
27206
|
interface FeaturesResourceGroup {
|
|
27019
27207
|
preventDeletionIfContainsResources?: boolean;
|
|
27020
27208
|
}
|
|
@@ -27802,8 +27990,6 @@ export declare namespace containerapp {
|
|
|
27802
27990
|
* The value for this secret.
|
|
27803
27991
|
*
|
|
27804
27992
|
* !> **Note:** `value` will be ignored if `keyVaultSecretId` and `identity` are provided.
|
|
27805
|
-
*
|
|
27806
|
-
* !> **Note:** Secrets cannot be removed from the service once added, attempting to do so will result in an error. Their values may be zeroed, i.e. set to `""`, but the named secret must persist. This is due to a technical limitation on the service which causes the service to become unmanageable. See [this issue](https://github.com/microsoft/azure-container-apps/issues/395) for more details.
|
|
27807
27993
|
*/
|
|
27808
27994
|
value?: string;
|
|
27809
27995
|
}
|
|
@@ -28865,6 +29051,464 @@ export declare namespace containerapp {
|
|
|
28865
29051
|
*/
|
|
28866
29052
|
storageType: string;
|
|
28867
29053
|
}
|
|
29054
|
+
interface JobEventTriggerConfig {
|
|
29055
|
+
/**
|
|
29056
|
+
* Number of parallel replicas of a job that can run at a given time.
|
|
29057
|
+
*/
|
|
29058
|
+
parallelism?: number;
|
|
29059
|
+
/**
|
|
29060
|
+
* Minimum number of successful replica completions before overall job completion.
|
|
29061
|
+
*/
|
|
29062
|
+
replicaCompletionCount?: number;
|
|
29063
|
+
/**
|
|
29064
|
+
* A `scale` block as defined below.
|
|
29065
|
+
*/
|
|
29066
|
+
scales?: outputs.containerapp.JobEventTriggerConfigScale[];
|
|
29067
|
+
}
|
|
29068
|
+
interface JobEventTriggerConfigScale {
|
|
29069
|
+
/**
|
|
29070
|
+
* Maximum number of job executions that are created for a trigger.
|
|
29071
|
+
*/
|
|
29072
|
+
maxExecutions?: number;
|
|
29073
|
+
/**
|
|
29074
|
+
* Minimum number of job executions that are created for a trigger.
|
|
29075
|
+
*/
|
|
29076
|
+
minExecutions?: number;
|
|
29077
|
+
/**
|
|
29078
|
+
* Interval to check each event source in seconds.
|
|
29079
|
+
*/
|
|
29080
|
+
pollingIntervalInSeconds?: number;
|
|
29081
|
+
/**
|
|
29082
|
+
* A `rules` block as defined below.
|
|
29083
|
+
*/
|
|
29084
|
+
rules?: outputs.containerapp.JobEventTriggerConfigScaleRule[];
|
|
29085
|
+
}
|
|
29086
|
+
interface JobEventTriggerConfigScaleRule {
|
|
29087
|
+
/**
|
|
29088
|
+
* A `authentication` block as defined below.
|
|
29089
|
+
*/
|
|
29090
|
+
authentications?: outputs.containerapp.JobEventTriggerConfigScaleRuleAuthentication[];
|
|
29091
|
+
/**
|
|
29092
|
+
* Type of the scale rule.
|
|
29093
|
+
*/
|
|
29094
|
+
customRuleType: string;
|
|
29095
|
+
/**
|
|
29096
|
+
* Metadata properties to describe the scale rule.
|
|
29097
|
+
*/
|
|
29098
|
+
metadata: {
|
|
29099
|
+
[key: string]: string;
|
|
29100
|
+
};
|
|
29101
|
+
/**
|
|
29102
|
+
* Name of the scale rule.
|
|
29103
|
+
*/
|
|
29104
|
+
name: string;
|
|
29105
|
+
}
|
|
29106
|
+
interface JobEventTriggerConfigScaleRuleAuthentication {
|
|
29107
|
+
/**
|
|
29108
|
+
* Name of the secret from which to pull the auth params.
|
|
29109
|
+
*/
|
|
29110
|
+
secretName: string;
|
|
29111
|
+
/**
|
|
29112
|
+
* Trigger Parameter that uses the secret.
|
|
29113
|
+
*/
|
|
29114
|
+
triggerParameter: string;
|
|
29115
|
+
}
|
|
29116
|
+
interface JobIdentity {
|
|
29117
|
+
/**
|
|
29118
|
+
* A list of Managed Identity IDs to assign to the Container App Job.
|
|
29119
|
+
*/
|
|
29120
|
+
identityIds?: string[];
|
|
29121
|
+
principalId: string;
|
|
29122
|
+
tenantId: string;
|
|
29123
|
+
/**
|
|
29124
|
+
* The type of identity used for the Container App Job. Possible values are `SystemAssigned` and `None`. Defaults to `None`.
|
|
29125
|
+
*/
|
|
29126
|
+
type: string;
|
|
29127
|
+
}
|
|
29128
|
+
interface JobManualTriggerConfig {
|
|
29129
|
+
/**
|
|
29130
|
+
* Number of parallel replicas of a job that can run at a given time.
|
|
29131
|
+
*/
|
|
29132
|
+
parallelism?: number;
|
|
29133
|
+
/**
|
|
29134
|
+
* Minimum number of successful replica completions before overall job completion.
|
|
29135
|
+
*/
|
|
29136
|
+
replicaCompletionCount?: number;
|
|
29137
|
+
}
|
|
29138
|
+
interface JobRegistry {
|
|
29139
|
+
/**
|
|
29140
|
+
* A Managed Identity to use to authenticate with Azure Container Registry.
|
|
29141
|
+
*/
|
|
29142
|
+
identity?: string;
|
|
29143
|
+
/**
|
|
29144
|
+
* The name of the Secret that contains the registry login password.
|
|
29145
|
+
*/
|
|
29146
|
+
passwordSecretName?: string;
|
|
29147
|
+
/**
|
|
29148
|
+
* The URL of the Azure Container Registry server.
|
|
29149
|
+
*/
|
|
29150
|
+
server: string;
|
|
29151
|
+
/**
|
|
29152
|
+
* The username to use to authenticate with Azure Container Registry.
|
|
29153
|
+
*/
|
|
29154
|
+
username?: string;
|
|
29155
|
+
}
|
|
29156
|
+
interface JobScheduleTriggerConfig {
|
|
29157
|
+
/**
|
|
29158
|
+
* Cron formatted repeating schedule of a Cron Job.
|
|
29159
|
+
*/
|
|
29160
|
+
cronExpression: string;
|
|
29161
|
+
/**
|
|
29162
|
+
* Number of parallel replicas of a job that can run at a given time.
|
|
29163
|
+
*/
|
|
29164
|
+
parallelism?: number;
|
|
29165
|
+
/**
|
|
29166
|
+
* Minimum number of successful replica completions before overall job completion.
|
|
29167
|
+
*/
|
|
29168
|
+
replicaCompletionCount?: number;
|
|
29169
|
+
}
|
|
29170
|
+
interface JobSecret {
|
|
29171
|
+
/**
|
|
29172
|
+
* A `identity` block as defined below.
|
|
29173
|
+
*/
|
|
29174
|
+
identity?: string;
|
|
29175
|
+
/**
|
|
29176
|
+
* The Key Vault Secret ID. Could be either one of `id` or `versionlessId`.
|
|
29177
|
+
*/
|
|
29178
|
+
keyVaultSecretId?: string;
|
|
29179
|
+
/**
|
|
29180
|
+
* Name of the secret.
|
|
29181
|
+
*/
|
|
29182
|
+
name: string;
|
|
29183
|
+
/**
|
|
29184
|
+
* Value of the secret.
|
|
29185
|
+
*/
|
|
29186
|
+
value?: string;
|
|
29187
|
+
}
|
|
29188
|
+
interface JobTemplate {
|
|
29189
|
+
/**
|
|
29190
|
+
* A `container` block as defined below.
|
|
29191
|
+
*/
|
|
29192
|
+
containers: outputs.containerapp.JobTemplateContainer[];
|
|
29193
|
+
/**
|
|
29194
|
+
* A `initContainer` block as defined below.
|
|
29195
|
+
*/
|
|
29196
|
+
initContainers?: outputs.containerapp.JobTemplateInitContainer[];
|
|
29197
|
+
/**
|
|
29198
|
+
* A `volume` block as defined below.
|
|
29199
|
+
*/
|
|
29200
|
+
volumes?: outputs.containerapp.JobTemplateVolume[];
|
|
29201
|
+
}
|
|
29202
|
+
interface JobTemplateContainer {
|
|
29203
|
+
/**
|
|
29204
|
+
* A list of extra arguments to pass to the container.
|
|
29205
|
+
*/
|
|
29206
|
+
args?: string[];
|
|
29207
|
+
/**
|
|
29208
|
+
* A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
29209
|
+
*/
|
|
29210
|
+
commands?: string[];
|
|
29211
|
+
/**
|
|
29212
|
+
* The amount of vCPU to allocate to the container. Possible values include `0.25`, `0.5`, `0.75`, `1.0`, `1.25`, `1.5`, `1.75`, and `2.0`.
|
|
29213
|
+
*
|
|
29214
|
+
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.0` / `2.0` or `0.5` / `1.0`
|
|
29215
|
+
*/
|
|
29216
|
+
cpu: number;
|
|
29217
|
+
/**
|
|
29218
|
+
* One or more `env` blocks as detailed below.
|
|
29219
|
+
*/
|
|
29220
|
+
envs?: outputs.containerapp.JobTemplateContainerEnv[];
|
|
29221
|
+
/**
|
|
29222
|
+
* The amount of ephemeral storage available to the Container App.
|
|
29223
|
+
*
|
|
29224
|
+
* > **NOTE:** `ephemeralStorage` is currently in preview and not configurable at this time.
|
|
29225
|
+
*/
|
|
29226
|
+
ephemeralStorage: string;
|
|
29227
|
+
/**
|
|
29228
|
+
* The image to use to create the container.
|
|
29229
|
+
*/
|
|
29230
|
+
image: string;
|
|
29231
|
+
/**
|
|
29232
|
+
* A `livenessProbe` block as detailed below.
|
|
29233
|
+
*/
|
|
29234
|
+
livenessProbes?: outputs.containerapp.JobTemplateContainerLivenessProbe[];
|
|
29235
|
+
/**
|
|
29236
|
+
* The amount of memory to allocate to the container. Possible values are `0.5Gi`, `1Gi`, `1.5Gi`, `2Gi`, `2.5Gi`, `3Gi`, `3.5Gi` and `4Gi`.
|
|
29237
|
+
*
|
|
29238
|
+
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.25` / `2.5Gi` or `0.75` / `1.5Gi`
|
|
29239
|
+
*/
|
|
29240
|
+
memory: string;
|
|
29241
|
+
/**
|
|
29242
|
+
* The name of the container.
|
|
29243
|
+
*/
|
|
29244
|
+
name: string;
|
|
29245
|
+
/**
|
|
29246
|
+
* A `readinessProbe` block as detailed below.
|
|
29247
|
+
*/
|
|
29248
|
+
readinessProbes?: outputs.containerapp.JobTemplateContainerReadinessProbe[];
|
|
29249
|
+
/**
|
|
29250
|
+
* A `startupProbe` block as detailed below.
|
|
29251
|
+
*/
|
|
29252
|
+
startupProbes?: outputs.containerapp.JobTemplateContainerStartupProbe[];
|
|
29253
|
+
/**
|
|
29254
|
+
* A `volumeMounts` block as detailed below.
|
|
29255
|
+
*/
|
|
29256
|
+
volumeMounts?: outputs.containerapp.JobTemplateContainerVolumeMount[];
|
|
29257
|
+
}
|
|
29258
|
+
interface JobTemplateContainerEnv {
|
|
29259
|
+
/**
|
|
29260
|
+
* The name of the environment variable.
|
|
29261
|
+
*/
|
|
29262
|
+
name: string;
|
|
29263
|
+
/**
|
|
29264
|
+
* Name of the Container App secret from which to pull the environment variable value.
|
|
29265
|
+
*/
|
|
29266
|
+
secretName?: string;
|
|
29267
|
+
/**
|
|
29268
|
+
* The value of the environment variable.
|
|
29269
|
+
*/
|
|
29270
|
+
value?: string;
|
|
29271
|
+
}
|
|
29272
|
+
interface JobTemplateContainerLivenessProbe {
|
|
29273
|
+
/**
|
|
29274
|
+
* The number of consecutive failures required to consider this probe as failed. Possible values are between `1` and `10`. Defaults to `3`.
|
|
29275
|
+
*/
|
|
29276
|
+
failureCountThreshold?: number;
|
|
29277
|
+
/**
|
|
29278
|
+
* A `header` block as detailed below.
|
|
29279
|
+
*/
|
|
29280
|
+
headers?: outputs.containerapp.JobTemplateContainerLivenessProbeHeader[];
|
|
29281
|
+
/**
|
|
29282
|
+
* The probe hostname. Defaults to the pod IP address. Setting a value for `Host` in `headers` can be used to override this for `HTTP` and `HTTPS` type probes.
|
|
29283
|
+
*/
|
|
29284
|
+
host?: string;
|
|
29285
|
+
/**
|
|
29286
|
+
* The time in seconds to wait after the container has started before the probe is started.
|
|
29287
|
+
*/
|
|
29288
|
+
initialDelay?: number;
|
|
29289
|
+
/**
|
|
29290
|
+
* How often, in seconds, the probe should run. Possible values are in the range `1` - `240`. Defaults to `10`.
|
|
29291
|
+
*/
|
|
29292
|
+
intervalSeconds?: number;
|
|
29293
|
+
/**
|
|
29294
|
+
* The URI to use with the `host` for http type probes. Not valid for `TCP` type probes. Defaults to `/`.
|
|
29295
|
+
*/
|
|
29296
|
+
path: string;
|
|
29297
|
+
/**
|
|
29298
|
+
* The port number on which to connect. Possible values are between `1` and `65535`.
|
|
29299
|
+
*/
|
|
29300
|
+
port: number;
|
|
29301
|
+
/**
|
|
29302
|
+
* The time in seconds after the container is sent the termination signal before the process if forcibly killed.
|
|
29303
|
+
*/
|
|
29304
|
+
terminationGracePeriodSeconds: number;
|
|
29305
|
+
/**
|
|
29306
|
+
* Time in seconds after which the probe times out. Possible values are in the range `1` - `240`. Defaults to `1`.
|
|
29307
|
+
*/
|
|
29308
|
+
timeout?: number;
|
|
29309
|
+
/**
|
|
29310
|
+
* Type of probe. Possible values are `TCP`, `HTTP`, and `HTTPS`.
|
|
29311
|
+
*/
|
|
29312
|
+
transport: string;
|
|
29313
|
+
}
|
|
29314
|
+
interface JobTemplateContainerLivenessProbeHeader {
|
|
29315
|
+
/**
|
|
29316
|
+
* The HTTP Header Name.
|
|
29317
|
+
*/
|
|
29318
|
+
name: string;
|
|
29319
|
+
/**
|
|
29320
|
+
* The HTTP Header value.
|
|
29321
|
+
*/
|
|
29322
|
+
value: string;
|
|
29323
|
+
}
|
|
29324
|
+
interface JobTemplateContainerReadinessProbe {
|
|
29325
|
+
/**
|
|
29326
|
+
* The number of consecutive failures required to consider this probe as failed. Possible values are between `1` and `10`. Defaults to `3`.
|
|
29327
|
+
*/
|
|
29328
|
+
failureCountThreshold?: number;
|
|
29329
|
+
/**
|
|
29330
|
+
* A `header` block as detailed below.
|
|
29331
|
+
*/
|
|
29332
|
+
headers?: outputs.containerapp.JobTemplateContainerReadinessProbeHeader[];
|
|
29333
|
+
/**
|
|
29334
|
+
* The probe hostname. Defaults to the pod IP address. Setting a value for `Host` in `headers` can be used to override this for `HTTP` and `HTTPS` type probes.
|
|
29335
|
+
*/
|
|
29336
|
+
host?: string;
|
|
29337
|
+
/**
|
|
29338
|
+
* How often, in seconds, the probe should run. Possible values are between `1` and `240`. Defaults to `10`
|
|
29339
|
+
*/
|
|
29340
|
+
intervalSeconds?: number;
|
|
29341
|
+
/**
|
|
29342
|
+
* The URI to use for http type probes. Not valid for `TCP` type probes. Defaults to `/`.
|
|
29343
|
+
*/
|
|
29344
|
+
path: string;
|
|
29345
|
+
/**
|
|
29346
|
+
* The port number on which to connect. Possible values are between `1` and `65535`.
|
|
29347
|
+
*/
|
|
29348
|
+
port: number;
|
|
29349
|
+
/**
|
|
29350
|
+
* The number of consecutive successful responses required to consider this probe as successful. Possible values are between `1` and `10`. Defaults to `3`.
|
|
29351
|
+
*/
|
|
29352
|
+
successCountThreshold?: number;
|
|
29353
|
+
/**
|
|
29354
|
+
* Time in seconds after which the probe times out. Possible values are in the range `1` - `240`. Defaults to `1`.
|
|
29355
|
+
*/
|
|
29356
|
+
timeout?: number;
|
|
29357
|
+
/**
|
|
29358
|
+
* Type of probe. Possible values are `TCP`, `HTTP`, and `HTTPS`.
|
|
29359
|
+
*/
|
|
29360
|
+
transport: string;
|
|
29361
|
+
}
|
|
29362
|
+
interface JobTemplateContainerReadinessProbeHeader {
|
|
29363
|
+
/**
|
|
29364
|
+
* The HTTP Header Name.
|
|
29365
|
+
*/
|
|
29366
|
+
name: string;
|
|
29367
|
+
/**
|
|
29368
|
+
* The HTTP Header value.
|
|
29369
|
+
*/
|
|
29370
|
+
value: string;
|
|
29371
|
+
}
|
|
29372
|
+
interface JobTemplateContainerStartupProbe {
|
|
29373
|
+
/**
|
|
29374
|
+
* The number of consecutive failures required to consider this probe as failed. Possible values are between `1` and `10`. Defaults to `3`.
|
|
29375
|
+
*/
|
|
29376
|
+
failureCountThreshold?: number;
|
|
29377
|
+
/**
|
|
29378
|
+
* A `header` block as detailed below.
|
|
29379
|
+
*/
|
|
29380
|
+
headers?: outputs.containerapp.JobTemplateContainerStartupProbeHeader[];
|
|
29381
|
+
/**
|
|
29382
|
+
* The value for the host header which should be sent with this probe. If unspecified, the IP Address of the Pod is used as the host header. Setting a value for `Host` in `headers` can be used to override this for `HTTP` and `HTTPS` type probes.
|
|
29383
|
+
*/
|
|
29384
|
+
host?: string;
|
|
29385
|
+
/**
|
|
29386
|
+
* How often, in seconds, the probe should run. Possible values are between `1` and `240`. Defaults to `10`
|
|
29387
|
+
*/
|
|
29388
|
+
intervalSeconds?: number;
|
|
29389
|
+
/**
|
|
29390
|
+
* The URI to use with the `host` for http type probes. Not valid for `TCP` type probes. Defaults to `/`.
|
|
29391
|
+
*/
|
|
29392
|
+
path: string;
|
|
29393
|
+
/**
|
|
29394
|
+
* The port number on which to connect. Possible values are between `1` and `65535`.
|
|
29395
|
+
*/
|
|
29396
|
+
port: number;
|
|
29397
|
+
/**
|
|
29398
|
+
* The time in seconds after the container is sent the termination signal before the process if forcibly killed.
|
|
29399
|
+
*/
|
|
29400
|
+
terminationGracePeriodSeconds: number;
|
|
29401
|
+
/**
|
|
29402
|
+
* Time in seconds after which the probe times out. Possible values are in the range `1` - `240`. Defaults to `1`.
|
|
29403
|
+
*/
|
|
29404
|
+
timeout?: number;
|
|
29405
|
+
/**
|
|
29406
|
+
* Type of probe. Possible values are `TCP`, `HTTP`, and `HTTPS`.
|
|
29407
|
+
*/
|
|
29408
|
+
transport: string;
|
|
29409
|
+
}
|
|
29410
|
+
interface JobTemplateContainerStartupProbeHeader {
|
|
29411
|
+
/**
|
|
29412
|
+
* The HTTP Header Name.
|
|
29413
|
+
*/
|
|
29414
|
+
name: string;
|
|
29415
|
+
/**
|
|
29416
|
+
* The HTTP Header value.
|
|
29417
|
+
*/
|
|
29418
|
+
value: string;
|
|
29419
|
+
}
|
|
29420
|
+
interface JobTemplateContainerVolumeMount {
|
|
29421
|
+
/**
|
|
29422
|
+
* The name of the volume to mount. This must match the name of a volume defined in the `volume` block.
|
|
29423
|
+
*/
|
|
29424
|
+
name: string;
|
|
29425
|
+
/**
|
|
29426
|
+
* The path within the container at which the volume should be mounted. Must not contain `:`.
|
|
29427
|
+
*/
|
|
29428
|
+
path: string;
|
|
29429
|
+
}
|
|
29430
|
+
interface JobTemplateInitContainer {
|
|
29431
|
+
/**
|
|
29432
|
+
* A list of extra arguments to pass to the container.
|
|
29433
|
+
*/
|
|
29434
|
+
args?: string[];
|
|
29435
|
+
/**
|
|
29436
|
+
* A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
29437
|
+
*/
|
|
29438
|
+
commands?: string[];
|
|
29439
|
+
/**
|
|
29440
|
+
* The amount of vCPU to allocate to the container. Possible values include `0.25`, `0.5`, `0.75`, `1.0`, `1.25`, `1.5`, `1.75`, and `2.0`.
|
|
29441
|
+
*
|
|
29442
|
+
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.0` / `2.0` or `0.5` / `1.0`
|
|
29443
|
+
*/
|
|
29444
|
+
cpu?: number;
|
|
29445
|
+
/**
|
|
29446
|
+
* One or more `env` blocks as detailed below.
|
|
29447
|
+
*/
|
|
29448
|
+
envs?: outputs.containerapp.JobTemplateInitContainerEnv[];
|
|
29449
|
+
/**
|
|
29450
|
+
* The amount of ephemeral storage available to the Container App.
|
|
29451
|
+
*
|
|
29452
|
+
* > **NOTE:** `ephemeralStorage` is currently in preview and not configurable at this time.
|
|
29453
|
+
*/
|
|
29454
|
+
ephemeralStorage: string;
|
|
29455
|
+
/**
|
|
29456
|
+
* The image to use to create the container.
|
|
29457
|
+
*/
|
|
29458
|
+
image: string;
|
|
29459
|
+
/**
|
|
29460
|
+
* The amount of memory to allocate to the container. Possible values are `0.5Gi`, `1Gi`, `1.5Gi`, `2Gi`, `2.5Gi`, `3Gi`, `3.5Gi` and `4Gi`.
|
|
29461
|
+
*
|
|
29462
|
+
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.25` / `2.5Gi` or `0.75` / `1.5Gi`
|
|
29463
|
+
*/
|
|
29464
|
+
memory?: string;
|
|
29465
|
+
/**
|
|
29466
|
+
* The name of the container.
|
|
29467
|
+
*/
|
|
29468
|
+
name: string;
|
|
29469
|
+
/**
|
|
29470
|
+
* A `volumeMounts` block as detailed below.
|
|
29471
|
+
*/
|
|
29472
|
+
volumeMounts?: outputs.containerapp.JobTemplateInitContainerVolumeMount[];
|
|
29473
|
+
}
|
|
29474
|
+
interface JobTemplateInitContainerEnv {
|
|
29475
|
+
/**
|
|
29476
|
+
* The name of the environment variable.
|
|
29477
|
+
*/
|
|
29478
|
+
name: string;
|
|
29479
|
+
/**
|
|
29480
|
+
* Name of the Container App secret from which to pull the environment variable value.
|
|
29481
|
+
*/
|
|
29482
|
+
secretName?: string;
|
|
29483
|
+
/**
|
|
29484
|
+
* The value of the environment variable.
|
|
29485
|
+
*/
|
|
29486
|
+
value?: string;
|
|
29487
|
+
}
|
|
29488
|
+
interface JobTemplateInitContainerVolumeMount {
|
|
29489
|
+
/**
|
|
29490
|
+
* The name of the volume to mount. This must match the name of a volume defined in the `volume` block.
|
|
29491
|
+
*/
|
|
29492
|
+
name: string;
|
|
29493
|
+
/**
|
|
29494
|
+
* The path within the container at which the volume should be mounted. Must not contain `:`.
|
|
29495
|
+
*/
|
|
29496
|
+
path: string;
|
|
29497
|
+
}
|
|
29498
|
+
interface JobTemplateVolume {
|
|
29499
|
+
/**
|
|
29500
|
+
* The name of the volume.
|
|
29501
|
+
*/
|
|
29502
|
+
name: string;
|
|
29503
|
+
/**
|
|
29504
|
+
* The name of the storage to use for the volume.
|
|
29505
|
+
*/
|
|
29506
|
+
storageName?: string;
|
|
29507
|
+
/**
|
|
29508
|
+
* The type of storage to use for the volume. Possible values are `AzureFile`, `EmptyDir` and `Secret`.
|
|
29509
|
+
*/
|
|
29510
|
+
storageType?: string;
|
|
29511
|
+
}
|
|
28868
29512
|
}
|
|
28869
29513
|
export declare namespace containerservice {
|
|
28870
29514
|
interface ConnectedRegistryNotification {
|
|
@@ -33576,6 +34220,20 @@ export declare namespace datadog {
|
|
|
33576
34220
|
}
|
|
33577
34221
|
}
|
|
33578
34222
|
export declare namespace datafactory {
|
|
34223
|
+
interface CredentialServicePrincipalServicePrincipalKey {
|
|
34224
|
+
/**
|
|
34225
|
+
* The name of the Linked Service to use for the Service Principal Key.
|
|
34226
|
+
*/
|
|
34227
|
+
linkedServiceName: string;
|
|
34228
|
+
/**
|
|
34229
|
+
* The name of the Secret in the Key Vault.
|
|
34230
|
+
*/
|
|
34231
|
+
secretName: string;
|
|
34232
|
+
/**
|
|
34233
|
+
* The version of the Secret in the Key Vault.
|
|
34234
|
+
*/
|
|
34235
|
+
secretVersion?: string;
|
|
34236
|
+
}
|
|
33579
34237
|
interface CustomDatasetLinkedService {
|
|
33580
34238
|
/**
|
|
33581
34239
|
* The name of the Data Factory Linked Service.
|
|
@@ -44177,6 +44835,42 @@ export declare namespace machinelearning {
|
|
|
44177
44835
|
}
|
|
44178
44836
|
}
|
|
44179
44837
|
export declare namespace maintenance {
|
|
44838
|
+
interface AssignmentDynamicScopeFilter {
|
|
44839
|
+
/**
|
|
44840
|
+
* Specifies a list of locations to scope the query to.
|
|
44841
|
+
*/
|
|
44842
|
+
locations?: string[];
|
|
44843
|
+
/**
|
|
44844
|
+
* Specifies a list of allowed operating systems.
|
|
44845
|
+
*/
|
|
44846
|
+
osTypes?: string[];
|
|
44847
|
+
/**
|
|
44848
|
+
* Specifies a list of allowed resource groups.
|
|
44849
|
+
*/
|
|
44850
|
+
resourceGroups?: string[];
|
|
44851
|
+
/**
|
|
44852
|
+
* Specifies a list of allowed resources.
|
|
44853
|
+
*/
|
|
44854
|
+
resourceTypes?: string[];
|
|
44855
|
+
/**
|
|
44856
|
+
* Filter VMs by `Any` or `All` specified tags. Defaults to `Any`.
|
|
44857
|
+
*/
|
|
44858
|
+
tagFilter?: string;
|
|
44859
|
+
/**
|
|
44860
|
+
* A mapping of tags for the VM
|
|
44861
|
+
*/
|
|
44862
|
+
tags?: outputs.maintenance.AssignmentDynamicScopeFilterTag[];
|
|
44863
|
+
}
|
|
44864
|
+
interface AssignmentDynamicScopeFilterTag {
|
|
44865
|
+
/**
|
|
44866
|
+
* Specifies the tag to filter by.
|
|
44867
|
+
*/
|
|
44868
|
+
tag: string;
|
|
44869
|
+
/**
|
|
44870
|
+
* Specifies a list of values the defined tag can have.
|
|
44871
|
+
*/
|
|
44872
|
+
values: string[];
|
|
44873
|
+
}
|
|
44180
44874
|
interface ConfigurationInstallPatches {
|
|
44181
44875
|
/**
|
|
44182
44876
|
* A `linux` block as defined above. This property only applies when `scope` is set to `InGuestPatch`
|
|
@@ -54011,6 +54705,34 @@ export declare namespace network {
|
|
|
54011
54705
|
*/
|
|
54012
54706
|
subnetId: string;
|
|
54013
54707
|
}
|
|
54708
|
+
interface GetNetworkManagerConnectivityConfigurationAppliesToGroup {
|
|
54709
|
+
/**
|
|
54710
|
+
* Whether global mesh is supported.
|
|
54711
|
+
*/
|
|
54712
|
+
globalMeshEnabled: boolean;
|
|
54713
|
+
/**
|
|
54714
|
+
* The group connectivity type.
|
|
54715
|
+
*/
|
|
54716
|
+
groupConnectivity: string;
|
|
54717
|
+
/**
|
|
54718
|
+
* The ID of the Network Manager Network Group.
|
|
54719
|
+
*/
|
|
54720
|
+
networkGroupId: string;
|
|
54721
|
+
/**
|
|
54722
|
+
* Whether hub gateway is used.
|
|
54723
|
+
*/
|
|
54724
|
+
useHubGateway: boolean;
|
|
54725
|
+
}
|
|
54726
|
+
interface GetNetworkManagerConnectivityConfigurationHub {
|
|
54727
|
+
/**
|
|
54728
|
+
* The resource ID used as hub in Hub and Spoke topology.
|
|
54729
|
+
*/
|
|
54730
|
+
resourceId: string;
|
|
54731
|
+
/**
|
|
54732
|
+
* The resource type used as hub in Hub and Spoke topology.
|
|
54733
|
+
*/
|
|
54734
|
+
resourceType: string;
|
|
54735
|
+
}
|
|
54014
54736
|
interface GetNetworkManagerCrossTenantScope {
|
|
54015
54737
|
/**
|
|
54016
54738
|
* A list of management groups used as cross tenant scope for the Network Manager.
|
|
@@ -55356,6 +56078,8 @@ export declare namespace network {
|
|
|
55356
56078
|
interface VirtualNetworkEncryption {
|
|
55357
56079
|
/**
|
|
55358
56080
|
* Specifies if the encrypted Virtual Network allows VM that does not support encryption. Possible values are `DropUnencrypted` and `AllowUnencrypted`.
|
|
56081
|
+
*
|
|
56082
|
+
* > **NOTE:** Currently `AllowUnencrypted` is the only supported value for the `enforcement` property as `DropUnencrypted` is not yet in public preview or general availability. Please see the [official documentation](https://learn.microsoft.com/en-us/azure/virtual-network/virtual-network-encryption-overview#limitations) for more information.
|
|
55359
56083
|
*/
|
|
55360
56084
|
enforcement: string;
|
|
55361
56085
|
}
|
|
@@ -60511,6 +61235,12 @@ export declare namespace storage {
|
|
|
60511
61235
|
* Specifies the number of days that the blob should be retained, between `1` and `365` days. Defaults to `7`.
|
|
60512
61236
|
*/
|
|
60513
61237
|
days?: number;
|
|
61238
|
+
/**
|
|
61239
|
+
* Indicates whether permanent deletion of the soft deleted blob versions and snapshots is allowed. Defaults to `false`.
|
|
61240
|
+
*
|
|
61241
|
+
* > **NOTE:** `permanentDeleteEnabled` cannot be set to true if a `restorePolicy` block is defined.
|
|
61242
|
+
*/
|
|
61243
|
+
permanentDeleteEnabled?: boolean;
|
|
60514
61244
|
}
|
|
60515
61245
|
interface AccountBlobPropertiesRestorePolicy {
|
|
60516
61246
|
/**
|