@pulumi/azure 5.65.0-alpha.1706746797 → 5.65.0-alpha.1706814605
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/apimanagement/certificate.d.ts +2 -2
- package/apimanagement/certificate.js +2 -2
- package/apimanagement/gatewayCertificateAuthority.d.ts +1 -1
- package/apimanagement/gatewayCertificateAuthority.js +1 -1
- package/apimanagement/gatewayHostNameConfiguration.d.ts +1 -1
- package/apimanagement/gatewayHostNameConfiguration.js +1 -1
- package/appservice/certificate.d.ts +1 -1
- package/appservice/certificate.js +1 -1
- package/appservice/publicCertificate.d.ts +1 -1
- package/appservice/publicCertificate.js +1 -1
- package/arckubernetes/cluster.d.ts +1 -1
- package/arckubernetes/cluster.js +1 -1
- package/arckubernetes/clusterExtension.d.ts +1 -1
- package/arckubernetes/clusterExtension.js +1 -1
- package/arckubernetes/fluxConfiguration.d.ts +1 -1
- package/arckubernetes/fluxConfiguration.js +1 -1
- package/automation/certificate.d.ts +1 -1
- package/automation/certificate.js +1 -1
- package/automation/connectionCertificate.d.ts +1 -1
- package/automation/connectionCertificate.js +1 -1
- package/batch/certificate.d.ts +1 -1
- package/batch/certificate.js +1 -1
- package/batch/pool.d.ts +1 -1
- package/batch/pool.js +1 -1
- package/cdn/frontdoorSecret.d.ts +1 -1
- package/cdn/frontdoorSecret.js +1 -1
- package/config/vars.d.ts +0 -3
- package/config/vars.js.map +1 -1
- package/iot/certificate.d.ts +1 -1
- package/iot/certificate.js +1 -1
- package/iot/iotHubCertificate.d.ts +1 -1
- package/iot/iotHubCertificate.js +1 -1
- package/keyvault/certifiate.d.ts +1 -1
- package/keyvault/certifiate.js +1 -1
- package/keyvault/certificate.d.ts +1 -1
- package/keyvault/certificate.js +1 -1
- package/lab/user.d.ts +1 -1
- package/lab/user.js +1 -1
- package/logicapps/integrationAccountAssembly.d.ts +1 -1
- package/logicapps/integrationAccountAssembly.js +1 -1
- package/mssql/managedInstanceActiveDirectoryAdministrator.d.ts +1 -1
- package/mssql/managedInstanceActiveDirectoryAdministrator.js +1 -1
- package/nginx/certificate.d.ts +1 -1
- package/nginx/certificate.js +1 -1
- package/package.json +1 -1
- package/signalr/serviceCustomCertificate.d.ts +1 -1
- package/signalr/serviceCustomCertificate.js +1 -1
- package/signalr/serviceCustomDomain.d.ts +1 -1
- package/signalr/serviceCustomDomain.js +1 -1
- package/types/input.d.ts +108 -0
- package/types/output.d.ts +249 -0
package/types/input.d.ts
CHANGED
|
@@ -29,14 +29,41 @@ export interface ProviderFeaturesCognitiveAccount {
|
|
|
29
29
|
purgeSoftDeleteOnDestroy?: pulumi.Input<boolean>;
|
|
30
30
|
}
|
|
31
31
|
export interface ProviderFeaturesKeyVault {
|
|
32
|
+
/**
|
|
33
|
+
* When enabled soft-deleted `azure.keyvault.KeyVault` resources will be permanently deleted (e.g purged), when destroyed
|
|
34
|
+
*/
|
|
32
35
|
purgeSoftDeleteOnDestroy?: pulumi.Input<boolean>;
|
|
36
|
+
/**
|
|
37
|
+
* When enabled soft-deleted `azure.keyvault.Certificate` resources will be permanently deleted (e.g purged), when destroyed
|
|
38
|
+
*/
|
|
33
39
|
purgeSoftDeletedCertificatesOnDestroy?: pulumi.Input<boolean>;
|
|
40
|
+
/**
|
|
41
|
+
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModule` resources will be permanently deleted (e.g purged), when destroyed
|
|
42
|
+
*/
|
|
34
43
|
purgeSoftDeletedHardwareSecurityModulesOnDestroy?: pulumi.Input<boolean>;
|
|
44
|
+
/**
|
|
45
|
+
* When enabled soft-deleted `azure.keyvault.Key` resources will be permanently deleted (e.g purged), when destroyed
|
|
46
|
+
*/
|
|
35
47
|
purgeSoftDeletedKeysOnDestroy?: pulumi.Input<boolean>;
|
|
48
|
+
/**
|
|
49
|
+
* When enabled soft-deleted `azure.keyvault.Secret` resources will be permanently deleted (e.g purged), when destroyed
|
|
50
|
+
*/
|
|
36
51
|
purgeSoftDeletedSecretsOnDestroy?: pulumi.Input<boolean>;
|
|
52
|
+
/**
|
|
53
|
+
* When enabled soft-deleted `azure.keyvault.Certificate` resources will be restored, instead of creating new ones
|
|
54
|
+
*/
|
|
37
55
|
recoverSoftDeletedCertificates?: pulumi.Input<boolean>;
|
|
56
|
+
/**
|
|
57
|
+
* When enabled soft-deleted `azure.keyvault.KeyVault` resources will be restored, instead of creating new ones
|
|
58
|
+
*/
|
|
38
59
|
recoverSoftDeletedKeyVaults?: pulumi.Input<boolean>;
|
|
60
|
+
/**
|
|
61
|
+
* When enabled soft-deleted `azure.keyvault.Key` resources will be restored, instead of creating new ones
|
|
62
|
+
*/
|
|
39
63
|
recoverSoftDeletedKeys?: pulumi.Input<boolean>;
|
|
64
|
+
/**
|
|
65
|
+
* When enabled soft-deleted `azure.keyvault.Secret` resources will be restored, instead of creating new ones
|
|
66
|
+
*/
|
|
40
67
|
recoverSoftDeletedSecrets?: pulumi.Input<boolean>;
|
|
41
68
|
}
|
|
42
69
|
export interface ProviderFeaturesLogAnalyticsWorkspace {
|
|
@@ -4619,6 +4646,9 @@ export declare namespace appservice {
|
|
|
4619
4646
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
4620
4647
|
*/
|
|
4621
4648
|
clientId: pulumi.Input<string>;
|
|
4649
|
+
/**
|
|
4650
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
4651
|
+
*/
|
|
4622
4652
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
4623
4653
|
/**
|
|
4624
4654
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -4880,6 +4910,9 @@ export declare namespace appservice {
|
|
|
4880
4910
|
* Should the service keep at least one backup, regardless of age of backup. Defaults to `false`.
|
|
4881
4911
|
*/
|
|
4882
4912
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
4913
|
+
/**
|
|
4914
|
+
* The time the backup was last attempted.
|
|
4915
|
+
*/
|
|
4883
4916
|
lastExecutionTime?: pulumi.Input<string>;
|
|
4884
4917
|
/**
|
|
4885
4918
|
* After how many days backups should be deleted. Defaults to `30`.
|
|
@@ -4981,6 +5014,9 @@ export declare namespace appservice {
|
|
|
4981
5014
|
* Specifies a list of Default Documents for the Linux Web App.
|
|
4982
5015
|
*/
|
|
4983
5016
|
defaultDocuments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5017
|
+
/**
|
|
5018
|
+
* Is detailed error logging enabled
|
|
5019
|
+
*/
|
|
4984
5020
|
detailedErrorLoggingEnabled?: pulumi.Input<boolean>;
|
|
4985
5021
|
/**
|
|
4986
5022
|
* The number of minimum instances for this Linux Function App. Only affects apps on Elastic Premium plans.
|
|
@@ -5006,6 +5042,9 @@ export declare namespace appservice {
|
|
|
5006
5042
|
* One or more `ipRestriction` blocks as defined above.
|
|
5007
5043
|
*/
|
|
5008
5044
|
ipRestrictions?: pulumi.Input<pulumi.Input<inputs.appservice.LinuxFunctionAppSiteConfigIpRestriction>[]>;
|
|
5045
|
+
/**
|
|
5046
|
+
* The Linux FX Version
|
|
5047
|
+
*/
|
|
5009
5048
|
linuxFxVersion?: pulumi.Input<string>;
|
|
5010
5049
|
/**
|
|
5011
5050
|
* The Site load balancing mode. Possible values include: `WeightedRoundRobin`, `LeastRequests`, `LeastResponseTime`, `WeightedTotalTraffic`, `RequestHash`, `PerSiteRoundRobin`. Defaults to `LeastRequests` if omitted.
|
|
@@ -5045,6 +5084,9 @@ export declare namespace appservice {
|
|
|
5045
5084
|
* Configures the minimum version of TLS required for SSL requests to the SCM site Possible values include: `1.0`, `1.1`, and `1.2`. Defaults to `1.2`.
|
|
5046
5085
|
*/
|
|
5047
5086
|
scmMinimumTlsVersion?: pulumi.Input<string>;
|
|
5087
|
+
/**
|
|
5088
|
+
* The SCM Type in use by the Linux Function App.
|
|
5089
|
+
*/
|
|
5048
5090
|
scmType?: pulumi.Input<string>;
|
|
5049
5091
|
/**
|
|
5050
5092
|
* Should the Linux Function App `ipRestriction` configuration be used for the SCM also.
|
|
@@ -5552,6 +5594,9 @@ export declare namespace appservice {
|
|
|
5552
5594
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
5553
5595
|
*/
|
|
5554
5596
|
clientId: pulumi.Input<string>;
|
|
5597
|
+
/**
|
|
5598
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
5599
|
+
*/
|
|
5555
5600
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
5556
5601
|
/**
|
|
5557
5602
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -6559,6 +6604,9 @@ export declare namespace appservice {
|
|
|
6559
6604
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
6560
6605
|
*/
|
|
6561
6606
|
clientId: pulumi.Input<string>;
|
|
6607
|
+
/**
|
|
6608
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
6609
|
+
*/
|
|
6562
6610
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
6563
6611
|
/**
|
|
6564
6612
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -6632,6 +6680,9 @@ export declare namespace appservice {
|
|
|
6632
6680
|
* The endpoint that issued the Token as supplied by `openidConfigurationEndpoint` response.
|
|
6633
6681
|
*/
|
|
6634
6682
|
issuerEndpoint?: pulumi.Input<string>;
|
|
6683
|
+
/**
|
|
6684
|
+
* The name of the Custom OIDC Authentication Provider.
|
|
6685
|
+
*/
|
|
6635
6686
|
name: pulumi.Input<string>;
|
|
6636
6687
|
/**
|
|
6637
6688
|
* The name of the claim that contains the users name.
|
|
@@ -6817,6 +6868,9 @@ export declare namespace appservice {
|
|
|
6817
6868
|
* Should the service keep at least one backup, regardless of the age of backup? Defaults to `false`.
|
|
6818
6869
|
*/
|
|
6819
6870
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
6871
|
+
/**
|
|
6872
|
+
* The time the backup was last attempted.
|
|
6873
|
+
*/
|
|
6820
6874
|
lastExecutionTime?: pulumi.Input<string>;
|
|
6821
6875
|
/**
|
|
6822
6876
|
* After how many days backups should be deleted. Defaults to `30`.
|
|
@@ -7324,6 +7378,9 @@ export declare namespace appservice {
|
|
|
7324
7378
|
xForwardedHosts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7325
7379
|
}
|
|
7326
7380
|
interface LinuxWebAppSiteCredential {
|
|
7381
|
+
/**
|
|
7382
|
+
* The Site Credentials Username used for publishing.
|
|
7383
|
+
*/
|
|
7327
7384
|
name?: pulumi.Input<string>;
|
|
7328
7385
|
/**
|
|
7329
7386
|
* The Site Credentials Password used for publishing.
|
|
@@ -7623,6 +7680,9 @@ export declare namespace appservice {
|
|
|
7623
7680
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
7624
7681
|
*/
|
|
7625
7682
|
clientId: pulumi.Input<string>;
|
|
7683
|
+
/**
|
|
7684
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
7685
|
+
*/
|
|
7626
7686
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
7627
7687
|
/**
|
|
7628
7688
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -7696,6 +7756,9 @@ export declare namespace appservice {
|
|
|
7696
7756
|
* The endpoint that issued the Token as supplied by `openidConfigurationEndpoint` response.
|
|
7697
7757
|
*/
|
|
7698
7758
|
issuerEndpoint?: pulumi.Input<string>;
|
|
7759
|
+
/**
|
|
7760
|
+
* The name of the Custom OIDC Authentication Provider.
|
|
7761
|
+
*/
|
|
7699
7762
|
name: pulumi.Input<string>;
|
|
7700
7763
|
/**
|
|
7701
7764
|
* The name of the claim that contains the users name.
|
|
@@ -7881,6 +7944,9 @@ export declare namespace appservice {
|
|
|
7881
7944
|
* Should the service keep at least one backup, regardless of the age of backup? Defaults to `false`.
|
|
7882
7945
|
*/
|
|
7883
7946
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
7947
|
+
/**
|
|
7948
|
+
* The time the backup was last attempted.
|
|
7949
|
+
*/
|
|
7884
7950
|
lastExecutionTime?: pulumi.Input<string>;
|
|
7885
7951
|
/**
|
|
7886
7952
|
* After how many days backups should be deleted. Defaults to `30`.
|
|
@@ -8392,6 +8458,9 @@ export declare namespace appservice {
|
|
|
8392
8458
|
xForwardedHosts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8393
8459
|
}
|
|
8394
8460
|
interface LinuxWebAppSlotSiteCredential {
|
|
8461
|
+
/**
|
|
8462
|
+
* The Site Credentials Username used for publishing.
|
|
8463
|
+
*/
|
|
8395
8464
|
name?: pulumi.Input<string>;
|
|
8396
8465
|
/**
|
|
8397
8466
|
* The Site Credentials Password used for publishing.
|
|
@@ -9008,6 +9077,9 @@ export declare namespace appservice {
|
|
|
9008
9077
|
* Whether to generate the GitHub work flow file. Defaults to `true`. Changing this forces a new resource to be created.
|
|
9009
9078
|
*/
|
|
9010
9079
|
generateWorkflowFile?: pulumi.Input<boolean>;
|
|
9080
|
+
/**
|
|
9081
|
+
* Denotes this action uses a Linux base image.
|
|
9082
|
+
*/
|
|
9011
9083
|
linuxAction?: pulumi.Input<boolean>;
|
|
9012
9084
|
}
|
|
9013
9085
|
interface SourceControlGithubActionConfigurationCodeConfiguration {
|
|
@@ -9392,6 +9464,9 @@ export declare namespace appservice {
|
|
|
9392
9464
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
9393
9465
|
*/
|
|
9394
9466
|
clientId: pulumi.Input<string>;
|
|
9467
|
+
/**
|
|
9468
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
9469
|
+
*/
|
|
9395
9470
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
9396
9471
|
/**
|
|
9397
9472
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -9653,6 +9728,9 @@ export declare namespace appservice {
|
|
|
9653
9728
|
* Should the service keep at least one backup, regardless of age of backup. Defaults to `false`.
|
|
9654
9729
|
*/
|
|
9655
9730
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
9731
|
+
/**
|
|
9732
|
+
* The time the backup was last attempted.
|
|
9733
|
+
*/
|
|
9656
9734
|
lastExecutionTime?: pulumi.Input<string>;
|
|
9657
9735
|
/**
|
|
9658
9736
|
* After how many days backups should be deleted. Defaults to `30`.
|
|
@@ -9746,6 +9824,9 @@ export declare namespace appservice {
|
|
|
9746
9824
|
* Specifies a list of Default Documents for the Windows Function App.
|
|
9747
9825
|
*/
|
|
9748
9826
|
defaultDocuments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9827
|
+
/**
|
|
9828
|
+
* Is detailed error logging enabled
|
|
9829
|
+
*/
|
|
9749
9830
|
detailedErrorLoggingEnabled?: pulumi.Input<boolean>;
|
|
9750
9831
|
/**
|
|
9751
9832
|
* The number of minimum instances for this Windows Function App. Only affects apps on Elastic Premium plans.
|
|
@@ -9809,6 +9890,9 @@ export declare namespace appservice {
|
|
|
9809
9890
|
* Configures the minimum version of TLS required for SSL requests to the SCM site. Possible values include: `1.0`, `1.1`, and `1.2`. Defaults to `1.2`.
|
|
9810
9891
|
*/
|
|
9811
9892
|
scmMinimumTlsVersion?: pulumi.Input<string>;
|
|
9893
|
+
/**
|
|
9894
|
+
* The SCM Type in use by the Windows Function App.
|
|
9895
|
+
*/
|
|
9812
9896
|
scmType?: pulumi.Input<string>;
|
|
9813
9897
|
/**
|
|
9814
9898
|
* Should the Windows Function App `ipRestriction` configuration be used for the SCM also.
|
|
@@ -9826,6 +9910,9 @@ export declare namespace appservice {
|
|
|
9826
9910
|
* Should Web Sockets be enabled. Defaults to `false`.
|
|
9827
9911
|
*/
|
|
9828
9912
|
websocketsEnabled?: pulumi.Input<boolean>;
|
|
9913
|
+
/**
|
|
9914
|
+
* The Windows FX Version string.
|
|
9915
|
+
*/
|
|
9829
9916
|
windowsFxVersion?: pulumi.Input<string>;
|
|
9830
9917
|
/**
|
|
9831
9918
|
* The number of Workers for this Windows Function App.
|
|
@@ -10285,6 +10372,9 @@ export declare namespace appservice {
|
|
|
10285
10372
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
10286
10373
|
*/
|
|
10287
10374
|
clientId: pulumi.Input<string>;
|
|
10375
|
+
/**
|
|
10376
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
10377
|
+
*/
|
|
10288
10378
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
10289
10379
|
/**
|
|
10290
10380
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -11250,6 +11340,9 @@ export declare namespace appservice {
|
|
|
11250
11340
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
11251
11341
|
*/
|
|
11252
11342
|
clientId: pulumi.Input<string>;
|
|
11343
|
+
/**
|
|
11344
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
11345
|
+
*/
|
|
11253
11346
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
11254
11347
|
/**
|
|
11255
11348
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -11511,6 +11604,9 @@ export declare namespace appservice {
|
|
|
11511
11604
|
* Should the service keep at least one backup, regardless of age of backup. Defaults to `false`.
|
|
11512
11605
|
*/
|
|
11513
11606
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
11607
|
+
/**
|
|
11608
|
+
* The time the backup was last attempted.
|
|
11609
|
+
*/
|
|
11514
11610
|
lastExecutionTime?: pulumi.Input<string>;
|
|
11515
11611
|
/**
|
|
11516
11612
|
* After how many days backups should be deleted. Defaults to `30`.
|
|
@@ -12400,6 +12496,9 @@ export declare namespace appservice {
|
|
|
12400
12496
|
* The ID of the Client to use to authenticate with Azure Active Directory.
|
|
12401
12497
|
*/
|
|
12402
12498
|
clientId: pulumi.Input<string>;
|
|
12499
|
+
/**
|
|
12500
|
+
* The thumbprint of the certificate used for signing purposes.
|
|
12501
|
+
*/
|
|
12403
12502
|
clientSecretCertificateThumbprint?: pulumi.Input<string>;
|
|
12404
12503
|
/**
|
|
12405
12504
|
* The App Setting name that contains the client secret of the Client. Cannot be used with `clientSecret`.
|
|
@@ -12473,6 +12572,9 @@ export declare namespace appservice {
|
|
|
12473
12572
|
* The endpoint that issued the Token as supplied by `openidConfigurationEndpoint` response.
|
|
12474
12573
|
*/
|
|
12475
12574
|
issuerEndpoint?: pulumi.Input<string>;
|
|
12575
|
+
/**
|
|
12576
|
+
* The name of the Custom OIDC Authentication Provider.
|
|
12577
|
+
*/
|
|
12476
12578
|
name: pulumi.Input<string>;
|
|
12477
12579
|
/**
|
|
12478
12580
|
* The name of the claim that contains the users name.
|
|
@@ -12658,6 +12760,9 @@ export declare namespace appservice {
|
|
|
12658
12760
|
* Should the service keep at least one backup, regardless of age of backup. Defaults to `false`.
|
|
12659
12761
|
*/
|
|
12660
12762
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
12763
|
+
/**
|
|
12764
|
+
* The time the backup was last attempted.
|
|
12765
|
+
*/
|
|
12661
12766
|
lastExecutionTime?: pulumi.Input<string>;
|
|
12662
12767
|
/**
|
|
12663
12768
|
* After how many days backups should be deleted. Defaults to `30`.
|
|
@@ -13237,6 +13342,9 @@ export declare namespace appservice {
|
|
|
13237
13342
|
virtualPath?: pulumi.Input<string>;
|
|
13238
13343
|
}
|
|
13239
13344
|
interface WindowsWebAppSlotSiteCredential {
|
|
13345
|
+
/**
|
|
13346
|
+
* The Site Credentials Username used for publishing.
|
|
13347
|
+
*/
|
|
13240
13348
|
name?: pulumi.Input<string>;
|
|
13241
13349
|
/**
|
|
13242
13350
|
* The Site Credentials Password used for publishing.
|