@pulumi/azure 5.19.0-alpha.1663282974 → 5.19.0-alpha.1663347214
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/api.d.ts +22 -4
- package/apimanagement/api.js +2 -0
- package/apimanagement/api.js.map +1 -1
- package/apimanagement/apiTagDescription.d.ts +95 -0
- package/apimanagement/apiTagDescription.js +69 -0
- package/apimanagement/apiTagDescription.js.map +1 -0
- package/apimanagement/globalSchema.d.ts +149 -0
- package/apimanagement/globalSchema.js +109 -0
- package/apimanagement/globalSchema.js.map +1 -0
- package/apimanagement/index.d.ts +2 -0
- package/apimanagement/index.js +10 -0
- package/apimanagement/index.js.map +1 -1
- package/appservice/linuxWebApp.d.ts +5 -5
- package/appservice/linuxWebAppSlot.d.ts +13 -13
- package/automation/index.d.ts +2 -0
- package/automation/index.js +10 -0
- package/automation/index.js.map +1 -1
- package/automation/sourceControl.d.ts +168 -0
- package/automation/sourceControl.js +93 -0
- package/automation/sourceControl.js.map +1 -0
- package/automation/watcher.d.ts +209 -0
- package/automation/watcher.js +114 -0
- package/automation/watcher.js.map +1 -0
- package/backup/policyVMWorkload.d.ts +45 -0
- package/backup/policyVMWorkload.js +45 -0
- package/backup/policyVMWorkload.js.map +1 -1
- package/containerservice/index.d.ts +1 -0
- package/containerservice/index.js +5 -0
- package/containerservice/index.js.map +1 -1
- package/containerservice/kubernetesCluster.d.ts +12 -0
- package/containerservice/kubernetesCluster.js +2 -0
- package/containerservice/kubernetesCluster.js.map +1 -1
- package/containerservice/tokenPassword.d.ts +84 -0
- package/containerservice/tokenPassword.js +70 -0
- package/containerservice/tokenPassword.js.map +1 -0
- package/cosmosdb/cassandraTable.d.ts +3 -3
- package/desktopvirtualization/hostPool.d.ts +20 -0
- package/desktopvirtualization/hostPool.js +9 -0
- package/desktopvirtualization/hostPool.js.map +1 -1
- package/eventhub/namespaceAuthorizationRule.d.ts +1 -1
- package/eventhub/namespaceAuthorizationRule.js +1 -1
- package/hdinsight/hadoopCluster.d.ts +12 -0
- package/hdinsight/hadoopCluster.js +2 -0
- package/hdinsight/hadoopCluster.js.map +1 -1
- package/hdinsight/hbaseCluster.d.ts +12 -0
- package/hdinsight/hbaseCluster.js +2 -0
- package/hdinsight/hbaseCluster.js.map +1 -1
- package/hdinsight/interactiveQueryCluster.d.ts +12 -0
- package/hdinsight/interactiveQueryCluster.js +2 -0
- package/hdinsight/interactiveQueryCluster.js.map +1 -1
- package/hdinsight/kafkaCluster.d.ts +12 -0
- package/hdinsight/kafkaCluster.js +2 -0
- package/hdinsight/kafkaCluster.js.map +1 -1
- package/hdinsight/sparkCluster.d.ts +12 -0
- package/hdinsight/sparkCluster.js +2 -0
- package/hdinsight/sparkCluster.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/monitoring/actionGroup.d.ts +4 -2
- package/monitoring/actionGroup.js +4 -2
- package/monitoring/actionGroup.js.map +1 -1
- package/monitoring/autoscaleSetting.d.ts +42 -30
- package/monitoring/autoscaleSetting.js +42 -30
- package/monitoring/autoscaleSetting.js.map +1 -1
- package/monitoring/dataCollectionRuleAssociation.d.ts +107 -0
- package/monitoring/dataCollectionRuleAssociation.js +71 -0
- package/monitoring/dataCollectionRuleAssociation.js.map +1 -0
- package/monitoring/getActionGroup.d.ts +2 -10
- package/monitoring/getActionGroup.js +0 -1
- package/monitoring/getActionGroup.js.map +1 -1
- package/monitoring/index.d.ts +1 -0
- package/monitoring/index.js +5 -0
- package/monitoring/index.js.map +1 -1
- package/mssql/database.d.ts +13 -1
- package/mssql/database.js +2 -0
- package/mssql/database.js.map +1 -1
- package/orbital/index.d.ts +1 -0
- package/orbital/index.js +37 -0
- package/orbital/index.js.map +1 -0
- package/orbital/spacecraft.d.ts +170 -0
- package/orbital/spacecraft.js +118 -0
- package/orbital/spacecraft.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/sentinel/alertRuleScheduled.d.ts +3 -3
- package/servicebus/namespaceAuthorizationRule.d.ts +1 -1
- package/servicebus/namespaceAuthorizationRule.js +1 -1
- package/types/input.d.ts +203 -69
- package/types/output.d.ts +216 -32
package/types/input.d.ts
CHANGED
|
@@ -3805,7 +3805,7 @@ export declare namespace appservice {
|
|
|
3805
3805
|
*/
|
|
3806
3806
|
javaVersion?: pulumi.Input<string>;
|
|
3807
3807
|
/**
|
|
3808
|
-
* The version of Node to run. Possible values include `12`, `14`, and `
|
|
3808
|
+
* The version of Node to run. Possible values include `12`, `14`, `16` and `18`.
|
|
3809
3809
|
*/
|
|
3810
3810
|
nodeVersion?: pulumi.Input<string>;
|
|
3811
3811
|
/**
|
|
@@ -4585,7 +4585,7 @@ export declare namespace appservice {
|
|
|
4585
4585
|
*/
|
|
4586
4586
|
google?: pulumi.Input<inputs.appservice.LinuxWebAppAuthSettingsGoogle>;
|
|
4587
4587
|
/**
|
|
4588
|
-
* The OpenID Connect Issuer URI that represents the entity
|
|
4588
|
+
* The OpenID Connect Issuer URI that represents the entity that issues access tokens for this Linux Web App.
|
|
4589
4589
|
*/
|
|
4590
4590
|
issuer?: pulumi.Input<string>;
|
|
4591
4591
|
/**
|
|
@@ -4745,7 +4745,7 @@ export declare namespace appservice {
|
|
|
4745
4745
|
*/
|
|
4746
4746
|
frequencyUnit: pulumi.Input<string>;
|
|
4747
4747
|
/**
|
|
4748
|
-
* Should the service keep at least one backup, regardless of age of backup
|
|
4748
|
+
* Should the service keep at least one backup, regardless of the age of backup? Defaults to `false`.
|
|
4749
4749
|
*/
|
|
4750
4750
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
4751
4751
|
lastExecutionTime?: pulumi.Input<string>;
|
|
@@ -4786,7 +4786,7 @@ export declare namespace appservice {
|
|
|
4786
4786
|
*/
|
|
4787
4787
|
tenantId?: pulumi.Input<string>;
|
|
4788
4788
|
/**
|
|
4789
|
-
* Specifies the type of Managed Service Identity that should be configured on this Linux Web App. Possible values are `SystemAssigned`, `UserAssigned`, `SystemAssigned, UserAssigned` (to enable both).
|
|
4789
|
+
* Specifies the type of Managed Service Identity that should be configured on this Linux Web App. Possible values are `SystemAssigned`, `UserAssigned`, and `SystemAssigned, UserAssigned` (to enable both).
|
|
4790
4790
|
*/
|
|
4791
4791
|
type: pulumi.Input<string>;
|
|
4792
4792
|
}
|
|
@@ -4796,11 +4796,11 @@ export declare namespace appservice {
|
|
|
4796
4796
|
*/
|
|
4797
4797
|
applicationLogs?: pulumi.Input<inputs.appservice.LinuxWebAppLogsApplicationLogs>;
|
|
4798
4798
|
/**
|
|
4799
|
-
* Should detailed error messages be enabled
|
|
4799
|
+
* Should detailed error messages be enabled?
|
|
4800
4800
|
*/
|
|
4801
4801
|
detailedErrorMessages?: pulumi.Input<boolean>;
|
|
4802
4802
|
/**
|
|
4803
|
-
* Should failed request tracing be enabled
|
|
4803
|
+
* Should the failed request tracing be enabled?
|
|
4804
4804
|
*/
|
|
4805
4805
|
failedRequestTracing?: pulumi.Input<boolean>;
|
|
4806
4806
|
/**
|
|
@@ -4854,7 +4854,7 @@ export declare namespace appservice {
|
|
|
4854
4854
|
}
|
|
4855
4855
|
interface LinuxWebAppLogsHttpLogsFileSystem {
|
|
4856
4856
|
/**
|
|
4857
|
-
* The retention period in days. A
|
|
4857
|
+
* The retention period in days. A value of `0` means no retention.
|
|
4858
4858
|
*/
|
|
4859
4859
|
retentionInDays: pulumi.Input<number>;
|
|
4860
4860
|
/**
|
|
@@ -4867,7 +4867,13 @@ export declare namespace appservice {
|
|
|
4867
4867
|
* If this Linux Web App is Always On enabled. Defaults to `true`.
|
|
4868
4868
|
*/
|
|
4869
4869
|
alwaysOn?: pulumi.Input<boolean>;
|
|
4870
|
+
/**
|
|
4871
|
+
* The URL to the API Definition for this Linux Web App.
|
|
4872
|
+
*/
|
|
4870
4873
|
apiDefinitionUrl?: pulumi.Input<string>;
|
|
4874
|
+
/**
|
|
4875
|
+
* The API Management API ID this Linux Web App is associated with.
|
|
4876
|
+
*/
|
|
4871
4877
|
apiManagementApiId?: pulumi.Input<string>;
|
|
4872
4878
|
/**
|
|
4873
4879
|
* The App command line to launch.
|
|
@@ -4878,7 +4884,7 @@ export declare namespace appservice {
|
|
|
4878
4884
|
*/
|
|
4879
4885
|
applicationStack?: pulumi.Input<inputs.appservice.LinuxWebAppSiteConfigApplicationStack>;
|
|
4880
4886
|
/**
|
|
4881
|
-
* Should Auto heal rules be enabled
|
|
4887
|
+
* Should Auto heal rules be enabled? Required with `autoHealSetting`.
|
|
4882
4888
|
*/
|
|
4883
4889
|
autoHealEnabled?: pulumi.Input<boolean>;
|
|
4884
4890
|
/**
|
|
@@ -4903,7 +4909,7 @@ export declare namespace appservice {
|
|
|
4903
4909
|
defaultDocuments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4904
4910
|
detailedErrorLoggingEnabled?: pulumi.Input<boolean>;
|
|
4905
4911
|
/**
|
|
4906
|
-
* The State of FTP / FTPS service. Possible values include
|
|
4912
|
+
* The State of FTP / FTPS service. Possible values include `AllAllowed`, `FtpsOnly`, and `Disabled`.
|
|
4907
4913
|
*/
|
|
4908
4914
|
ftpsState?: pulumi.Input<string>;
|
|
4909
4915
|
/**
|
|
@@ -4932,7 +4938,7 @@ export declare namespace appservice {
|
|
|
4932
4938
|
*/
|
|
4933
4939
|
localMysqlEnabled?: pulumi.Input<boolean>;
|
|
4934
4940
|
/**
|
|
4935
|
-
* Managed pipeline mode. Possible values include
|
|
4941
|
+
* Managed pipeline mode. Possible values include `Integrated`, and `Classic`.
|
|
4936
4942
|
*/
|
|
4937
4943
|
managedPipelineMode?: pulumi.Input<string>;
|
|
4938
4944
|
/**
|
|
@@ -4958,15 +4964,15 @@ export declare namespace appservice {
|
|
|
4958
4964
|
*/
|
|
4959
4965
|
scmUseMainIpRestriction?: pulumi.Input<boolean>;
|
|
4960
4966
|
/**
|
|
4961
|
-
* Should the Linux Web App use a 32-bit worker
|
|
4967
|
+
* Should the Linux Web App use a 32-bit worker? Defaults to `true`.
|
|
4962
4968
|
*/
|
|
4963
4969
|
use32BitWorker?: pulumi.Input<boolean>;
|
|
4964
4970
|
/**
|
|
4965
|
-
* Should all outbound traffic
|
|
4971
|
+
* Should all outbound traffic have NAT Gateways, Network Security Groups and User Defined Routes applied? Defaults to `false`.
|
|
4966
4972
|
*/
|
|
4967
4973
|
vnetRouteAllEnabled?: pulumi.Input<boolean>;
|
|
4968
4974
|
/**
|
|
4969
|
-
* Should Web Sockets be enabled
|
|
4975
|
+
* Should Web Sockets be enabled? Defaults to `false`.
|
|
4970
4976
|
*/
|
|
4971
4977
|
websocketsEnabled?: pulumi.Input<boolean>;
|
|
4972
4978
|
/**
|
|
@@ -5256,7 +5262,7 @@ export declare namespace appservice {
|
|
|
5256
5262
|
*/
|
|
5257
5263
|
google?: pulumi.Input<inputs.appservice.LinuxWebAppSlotAuthSettingsGoogle>;
|
|
5258
5264
|
/**
|
|
5259
|
-
* The OpenID Connect Issuer URI that represents the entity
|
|
5265
|
+
* The OpenID Connect Issuer URI that represents the entity that issues access tokens for this Linux Web App.
|
|
5260
5266
|
*/
|
|
5261
5267
|
issuer?: pulumi.Input<string>;
|
|
5262
5268
|
/**
|
|
@@ -5398,7 +5404,7 @@ export declare namespace appservice {
|
|
|
5398
5404
|
*/
|
|
5399
5405
|
name: pulumi.Input<string>;
|
|
5400
5406
|
/**
|
|
5401
|
-
*
|
|
5407
|
+
* An `schedule` block as defined below.
|
|
5402
5408
|
*/
|
|
5403
5409
|
schedule: pulumi.Input<inputs.appservice.LinuxWebAppSlotBackupSchedule>;
|
|
5404
5410
|
/**
|
|
@@ -5416,7 +5422,7 @@ export declare namespace appservice {
|
|
|
5416
5422
|
*/
|
|
5417
5423
|
frequencyUnit: pulumi.Input<string>;
|
|
5418
5424
|
/**
|
|
5419
|
-
* Should the service keep at least one backup, regardless of age of backup
|
|
5425
|
+
* Should the service keep at least one backup, regardless of the age of backup? Defaults to `false`.
|
|
5420
5426
|
*/
|
|
5421
5427
|
keepAtLeastOneBackup?: pulumi.Input<boolean>;
|
|
5422
5428
|
lastExecutionTime?: pulumi.Input<string>;
|
|
@@ -5431,11 +5437,11 @@ export declare namespace appservice {
|
|
|
5431
5437
|
}
|
|
5432
5438
|
interface LinuxWebAppSlotConnectionString {
|
|
5433
5439
|
/**
|
|
5434
|
-
* The name which should be used for this Linux Web App. Changing this forces a new Linux Web App to be created.
|
|
5440
|
+
* The name which should be used for this Linux Web App Slot. Changing this forces a new Linux Web App Slot to be created.
|
|
5435
5441
|
*/
|
|
5436
5442
|
name: pulumi.Input<string>;
|
|
5437
5443
|
/**
|
|
5438
|
-
* Type of database. Possible values include
|
|
5444
|
+
* Type of database. Possible values include `APIHub`, `Custom`, `DocDb`, `EventHub`, `MySQL`, `NotificationHub`, `PostgreSQL`, `RedisCache`, `ServiceBus`, `SQLAzure`, and `SQLServer`.
|
|
5439
5445
|
*/
|
|
5440
5446
|
type: pulumi.Input<string>;
|
|
5441
5447
|
/**
|
|
@@ -5457,7 +5463,7 @@ export declare namespace appservice {
|
|
|
5457
5463
|
*/
|
|
5458
5464
|
tenantId?: pulumi.Input<string>;
|
|
5459
5465
|
/**
|
|
5460
|
-
* Specifies the type of Managed Service Identity that should be configured on this Linux Web App Slot. Possible values are `SystemAssigned`, `UserAssigned
|
|
5466
|
+
* Specifies the type of Managed Service Identity that should be configured on this Linux Web App Slot. Possible values are `SystemAssigned`, `UserAssigned` and `SystemAssigned, UserAssigned` (to enable both).
|
|
5461
5467
|
*/
|
|
5462
5468
|
type: pulumi.Input<string>;
|
|
5463
5469
|
}
|
|
@@ -5467,11 +5473,11 @@ export declare namespace appservice {
|
|
|
5467
5473
|
*/
|
|
5468
5474
|
applicationLogs?: pulumi.Input<inputs.appservice.LinuxWebAppSlotLogsApplicationLogs>;
|
|
5469
5475
|
/**
|
|
5470
|
-
* Should detailed error messages be enabled
|
|
5476
|
+
* Should detailed error messages be enabled?
|
|
5471
5477
|
*/
|
|
5472
5478
|
detailedErrorMessages?: pulumi.Input<boolean>;
|
|
5473
5479
|
/**
|
|
5474
|
-
* Should failed request tracing be enabled
|
|
5480
|
+
* Should the failed request tracing be enabled?
|
|
5475
5481
|
*/
|
|
5476
5482
|
failedRequestTracing?: pulumi.Input<boolean>;
|
|
5477
5483
|
/**
|
|
@@ -5485,7 +5491,7 @@ export declare namespace appservice {
|
|
|
5485
5491
|
*/
|
|
5486
5492
|
azureBlobStorage?: pulumi.Input<inputs.appservice.LinuxWebAppSlotLogsApplicationLogsAzureBlobStorage>;
|
|
5487
5493
|
/**
|
|
5488
|
-
* Log level. Possible values include
|
|
5494
|
+
* Log level. Possible values include `Verbose`, `Information`, `Warning`, and `Error`.
|
|
5489
5495
|
*/
|
|
5490
5496
|
fileSystemLevel: pulumi.Input<string>;
|
|
5491
5497
|
}
|
|
@@ -5499,7 +5505,7 @@ export declare namespace appservice {
|
|
|
5499
5505
|
*/
|
|
5500
5506
|
retentionInDays: pulumi.Input<number>;
|
|
5501
5507
|
/**
|
|
5502
|
-
* SAS
|
|
5508
|
+
* SAS URL to an Azure blob container with read/write/list/delete permissions.
|
|
5503
5509
|
*/
|
|
5504
5510
|
sasUrl: pulumi.Input<string>;
|
|
5505
5511
|
}
|
|
@@ -5519,7 +5525,7 @@ export declare namespace appservice {
|
|
|
5519
5525
|
*/
|
|
5520
5526
|
retentionInDays?: pulumi.Input<number>;
|
|
5521
5527
|
/**
|
|
5522
|
-
* SAS
|
|
5528
|
+
* SAS URL to an Azure blob container with read/write/list/delete permissions.
|
|
5523
5529
|
*/
|
|
5524
5530
|
sasUrl: pulumi.Input<string>;
|
|
5525
5531
|
}
|
|
@@ -5543,7 +5549,7 @@ export declare namespace appservice {
|
|
|
5543
5549
|
*/
|
|
5544
5550
|
apiDefinitionUrl?: pulumi.Input<string>;
|
|
5545
5551
|
/**
|
|
5546
|
-
* The API Management API ID this Linux Web App Slot
|
|
5552
|
+
* The API Management API ID this Linux Web App Slot is associated with.
|
|
5547
5553
|
*/
|
|
5548
5554
|
apiManagementApiId?: pulumi.Input<string>;
|
|
5549
5555
|
/**
|
|
@@ -5555,7 +5561,7 @@ export declare namespace appservice {
|
|
|
5555
5561
|
*/
|
|
5556
5562
|
applicationStack?: pulumi.Input<inputs.appservice.LinuxWebAppSlotSiteConfigApplicationStack>;
|
|
5557
5563
|
/**
|
|
5558
|
-
* Should Auto heal rules be enabled
|
|
5564
|
+
* Should Auto heal rules be enabled? Required with `autoHealSetting`.
|
|
5559
5565
|
*/
|
|
5560
5566
|
autoHealEnabled?: pulumi.Input<boolean>;
|
|
5561
5567
|
/**
|
|
@@ -5584,7 +5590,7 @@ export declare namespace appservice {
|
|
|
5584
5590
|
defaultDocuments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5585
5591
|
detailedErrorLoggingEnabled?: pulumi.Input<boolean>;
|
|
5586
5592
|
/**
|
|
5587
|
-
* The State of FTP / FTPS service. Possible values include
|
|
5593
|
+
* The State of FTP / FTPS service. Possible values include `AllAllowed`, `FtpsOnly`, and `Disabled`.
|
|
5588
5594
|
*/
|
|
5589
5595
|
ftpsState?: pulumi.Input<string>;
|
|
5590
5596
|
/**
|
|
@@ -5639,11 +5645,11 @@ export declare namespace appservice {
|
|
|
5639
5645
|
*/
|
|
5640
5646
|
scmUseMainIpRestriction?: pulumi.Input<boolean>;
|
|
5641
5647
|
/**
|
|
5642
|
-
* Should the Linux Web App use a 32-bit worker
|
|
5648
|
+
* Should the Linux Web App use a 32-bit worker? Defaults to `true`.
|
|
5643
5649
|
*/
|
|
5644
5650
|
use32BitWorker?: pulumi.Input<boolean>;
|
|
5645
5651
|
/**
|
|
5646
|
-
* Should all outbound traffic
|
|
5652
|
+
* Should all outbound traffic have NAT Gateways, Network Security Groups and User Defined Routes applied? Defaults to `false`.
|
|
5647
5653
|
*/
|
|
5648
5654
|
vnetRouteAllEnabled?: pulumi.Input<boolean>;
|
|
5649
5655
|
websocketsEnabled?: pulumi.Input<boolean>;
|
|
@@ -5890,7 +5896,7 @@ export declare namespace appservice {
|
|
|
5890
5896
|
}
|
|
5891
5897
|
interface LinuxWebAppSlotSiteCredential {
|
|
5892
5898
|
/**
|
|
5893
|
-
* The name which should be used for this Linux Web App. Changing this forces a new Linux Web App to be created.
|
|
5899
|
+
* The name which should be used for this Linux Web App Slot. Changing this forces a new Linux Web App Slot to be created.
|
|
5894
5900
|
*/
|
|
5895
5901
|
name?: pulumi.Input<string>;
|
|
5896
5902
|
/**
|
|
@@ -6957,7 +6963,7 @@ export declare namespace appservice {
|
|
|
6957
6963
|
*/
|
|
6958
6964
|
javaVersion?: pulumi.Input<string>;
|
|
6959
6965
|
/**
|
|
6960
|
-
* The version of Node to run. Possible values include `~12`, `~14`, and `~
|
|
6966
|
+
* The version of Node to run. Possible values include `~12`, `~14`, `~16` and `~18`.
|
|
6961
6967
|
*/
|
|
6962
6968
|
nodeVersion?: pulumi.Input<string>;
|
|
6963
6969
|
/**
|
|
@@ -9283,6 +9289,20 @@ export declare namespace automation {
|
|
|
9283
9289
|
*/
|
|
9284
9290
|
occurrence: pulumi.Input<number>;
|
|
9285
9291
|
}
|
|
9292
|
+
interface SourceControlSecurity {
|
|
9293
|
+
/**
|
|
9294
|
+
* The refresh token of specified rpeo.
|
|
9295
|
+
*/
|
|
9296
|
+
refreshToken?: pulumi.Input<string>;
|
|
9297
|
+
/**
|
|
9298
|
+
* The access token of specified repo.
|
|
9299
|
+
*/
|
|
9300
|
+
token: pulumi.Input<string>;
|
|
9301
|
+
/**
|
|
9302
|
+
* Specify the token type, possible values are `PersonalAccessToken` and `Oauth`.
|
|
9303
|
+
*/
|
|
9304
|
+
tokenType: pulumi.Input<string>;
|
|
9305
|
+
}
|
|
9286
9306
|
}
|
|
9287
9307
|
export declare namespace avs {
|
|
9288
9308
|
interface PrivateCloudCircuit {
|
|
@@ -15396,11 +15416,25 @@ export declare namespace containerservice {
|
|
|
15396
15416
|
* The Admin Username for Windows VMs.
|
|
15397
15417
|
*/
|
|
15398
15418
|
adminUsername: pulumi.Input<string>;
|
|
15419
|
+
/**
|
|
15420
|
+
* A `gmsa` block as defined below.
|
|
15421
|
+
*/
|
|
15422
|
+
gmsa?: pulumi.Input<inputs.containerservice.KubernetesClusterWindowsProfileGmsa>;
|
|
15399
15423
|
/**
|
|
15400
15424
|
* Specifies the type of on-premise license which should be used for Node Pool Windows Virtual Machine. At this time the only possible value is `Windows_Server`.
|
|
15401
15425
|
*/
|
|
15402
15426
|
license?: pulumi.Input<string>;
|
|
15403
15427
|
}
|
|
15428
|
+
interface KubernetesClusterWindowsProfileGmsa {
|
|
15429
|
+
/**
|
|
15430
|
+
* Specifies the DNS server for Windows gMSA. Set this to an empty string if you have configured the DNS server in the VNet which was used to create the managed cluster.
|
|
15431
|
+
*/
|
|
15432
|
+
dnsServer: pulumi.Input<string>;
|
|
15433
|
+
/**
|
|
15434
|
+
* Specifies the root domain name for Windows gMSA. Set this to an empty string if you have configured the DNS server in the VNet which was used to create the managed cluster.
|
|
15435
|
+
*/
|
|
15436
|
+
rootDomain: pulumi.Input<string>;
|
|
15437
|
+
}
|
|
15404
15438
|
interface RegistryEncryption {
|
|
15405
15439
|
/**
|
|
15406
15440
|
* Boolean value that indicates whether encryption is enabled.
|
|
@@ -15765,6 +15799,26 @@ export declare namespace containerservice {
|
|
|
15765
15799
|
*/
|
|
15766
15800
|
enabled?: pulumi.Input<boolean>;
|
|
15767
15801
|
}
|
|
15802
|
+
interface TokenPasswordPassword1 {
|
|
15803
|
+
/**
|
|
15804
|
+
* The expiration date of the password in RFC3339 format.
|
|
15805
|
+
*/
|
|
15806
|
+
expiry?: pulumi.Input<string>;
|
|
15807
|
+
/**
|
|
15808
|
+
* The value of the password (Sensitive).
|
|
15809
|
+
*/
|
|
15810
|
+
value?: pulumi.Input<string>;
|
|
15811
|
+
}
|
|
15812
|
+
interface TokenPasswordPassword2 {
|
|
15813
|
+
/**
|
|
15814
|
+
* The expiration date of the password in RFC3339 format.
|
|
15815
|
+
*/
|
|
15816
|
+
expiry?: pulumi.Input<string>;
|
|
15817
|
+
/**
|
|
15818
|
+
* The value of the password (Sensitive).
|
|
15819
|
+
*/
|
|
15820
|
+
value?: pulumi.Input<string>;
|
|
15821
|
+
}
|
|
15768
15822
|
}
|
|
15769
15823
|
export declare namespace core {
|
|
15770
15824
|
interface CustomProviderAction {
|
|
@@ -16278,7 +16332,7 @@ export declare namespace cosmosdb {
|
|
|
16278
16332
|
*/
|
|
16279
16333
|
includedPaths?: pulumi.Input<pulumi.Input<inputs.cosmosdb.SqlContainerIndexingPolicyIncludedPath>[]>;
|
|
16280
16334
|
/**
|
|
16281
|
-
* Indicates the indexing mode. Possible values include: `
|
|
16335
|
+
* Indicates the indexing mode. Possible values include: `consistent` and `none`. Defaults to `consistent`.
|
|
16282
16336
|
*/
|
|
16283
16337
|
indexingMode?: pulumi.Input<string>;
|
|
16284
16338
|
/**
|
|
@@ -18198,6 +18252,34 @@ export declare namespace datashare {
|
|
|
18198
18252
|
}
|
|
18199
18253
|
}
|
|
18200
18254
|
export declare namespace desktopvirtualization {
|
|
18255
|
+
interface HostPoolScheduledAgentUpdates {
|
|
18256
|
+
/**
|
|
18257
|
+
* Enables or disables scheduled updates of the AVD agent components (RDAgent, Geneva Monitoring agent, and side-by-side stack) on session hosts. If this is enabled then up to two `schedule` blocks must be defined. Default is `false`.
|
|
18258
|
+
*/
|
|
18259
|
+
enabled?: pulumi.Input<boolean>;
|
|
18260
|
+
/**
|
|
18261
|
+
* A `schedule` block as defined below. A maximum of two blocks can be added.
|
|
18262
|
+
*/
|
|
18263
|
+
schedules?: pulumi.Input<pulumi.Input<inputs.desktopvirtualization.HostPoolScheduledAgentUpdatesSchedule>[]>;
|
|
18264
|
+
/**
|
|
18265
|
+
* Specifies the time zone in which the agent update schedule will apply, [the possible values are defined here](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/). If `useSessionHostTimezone` is enabled then it will override this setting. Default is `UTC`
|
|
18266
|
+
*/
|
|
18267
|
+
timezone?: pulumi.Input<string>;
|
|
18268
|
+
/**
|
|
18269
|
+
* Specifies whether scheduled agent updates should be applied based on the timezone of the affected session host. If configured then this setting overrides `timezone`. Default is `false`.
|
|
18270
|
+
*/
|
|
18271
|
+
useSessionHostTimezone?: pulumi.Input<boolean>;
|
|
18272
|
+
}
|
|
18273
|
+
interface HostPoolScheduledAgentUpdatesSchedule {
|
|
18274
|
+
/**
|
|
18275
|
+
* The day of the week on which agent updates should be performed. Possible values are `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, and `Sunday`
|
|
18276
|
+
*/
|
|
18277
|
+
dayOfWeek: pulumi.Input<string>;
|
|
18278
|
+
/**
|
|
18279
|
+
* The hour of day the update window should start. The update is a 2 hour period following the hour provided. The value should be provided as a number between 0 and 23, with 0 being midnight and 23 being 11pm. A leading zero should not be used.
|
|
18280
|
+
*/
|
|
18281
|
+
hourOfDay: pulumi.Input<number>;
|
|
18282
|
+
}
|
|
18201
18283
|
interface ScalingPlanHostPool {
|
|
18202
18284
|
/**
|
|
18203
18285
|
* The ID of the HostPool to assign the Scaling Plan to.
|
|
@@ -20919,6 +21001,16 @@ export declare namespace hdinsight {
|
|
|
20919
21001
|
*/
|
|
20920
21002
|
keyVaultManagedIdentityId?: pulumi.Input<string>;
|
|
20921
21003
|
}
|
|
21004
|
+
interface HBaseClusterExtension {
|
|
21005
|
+
/**
|
|
21006
|
+
* The workspace ID of the log analytics extension.
|
|
21007
|
+
*/
|
|
21008
|
+
logAnalyticsWorkspaceId: pulumi.Input<string>;
|
|
21009
|
+
/**
|
|
21010
|
+
* The workspace key of the log analytics extension.
|
|
21011
|
+
*/
|
|
21012
|
+
primaryKey: pulumi.Input<string>;
|
|
21013
|
+
}
|
|
20922
21014
|
interface HBaseClusterGateway {
|
|
20923
21015
|
/**
|
|
20924
21016
|
* The password used for the Ambari Portal.
|
|
@@ -21237,6 +21329,16 @@ export declare namespace hdinsight {
|
|
|
21237
21329
|
*/
|
|
21238
21330
|
keyVaultManagedIdentityId?: pulumi.Input<string>;
|
|
21239
21331
|
}
|
|
21332
|
+
interface HadoopClusterExtension {
|
|
21333
|
+
/**
|
|
21334
|
+
* The workspace ID of the log analytics extension.
|
|
21335
|
+
*/
|
|
21336
|
+
logAnalyticsWorkspaceId: pulumi.Input<string>;
|
|
21337
|
+
/**
|
|
21338
|
+
* The workspace key of the log analytics extension.
|
|
21339
|
+
*/
|
|
21340
|
+
primaryKey: pulumi.Input<string>;
|
|
21341
|
+
}
|
|
21240
21342
|
interface HadoopClusterGateway {
|
|
21241
21343
|
/**
|
|
21242
21344
|
* The password used for the Ambari Portal.
|
|
@@ -21636,6 +21738,16 @@ export declare namespace hdinsight {
|
|
|
21636
21738
|
*/
|
|
21637
21739
|
keyVaultManagedIdentityId?: pulumi.Input<string>;
|
|
21638
21740
|
}
|
|
21741
|
+
interface InteractiveQueryClusterExtension {
|
|
21742
|
+
/**
|
|
21743
|
+
* The workspace ID of the log analytics extension.
|
|
21744
|
+
*/
|
|
21745
|
+
logAnalyticsWorkspaceId: pulumi.Input<string>;
|
|
21746
|
+
/**
|
|
21747
|
+
* The workspace key of the log analytics extension.
|
|
21748
|
+
*/
|
|
21749
|
+
primaryKey: pulumi.Input<string>;
|
|
21750
|
+
}
|
|
21639
21751
|
interface InteractiveQueryClusterGateway {
|
|
21640
21752
|
/**
|
|
21641
21753
|
* The password used for the Ambari Portal.
|
|
@@ -21968,6 +22080,16 @@ export declare namespace hdinsight {
|
|
|
21968
22080
|
*/
|
|
21969
22081
|
keyVaultManagedIdentityId?: pulumi.Input<string>;
|
|
21970
22082
|
}
|
|
22083
|
+
interface KafkaClusterExtension {
|
|
22084
|
+
/**
|
|
22085
|
+
* The workspace ID of the log analytics extension.
|
|
22086
|
+
*/
|
|
22087
|
+
logAnalyticsWorkspaceId: pulumi.Input<string>;
|
|
22088
|
+
/**
|
|
22089
|
+
* The workspace key of the log analytics extension.
|
|
22090
|
+
*/
|
|
22091
|
+
primaryKey: pulumi.Input<string>;
|
|
22092
|
+
}
|
|
21971
22093
|
interface KafkaClusterGateway {
|
|
21972
22094
|
/**
|
|
21973
22095
|
* The password used for the Ambari Portal.
|
|
@@ -22296,6 +22418,16 @@ export declare namespace hdinsight {
|
|
|
22296
22418
|
*/
|
|
22297
22419
|
keyVaultManagedIdentityId?: pulumi.Input<string>;
|
|
22298
22420
|
}
|
|
22421
|
+
interface SparkClusterExtension {
|
|
22422
|
+
/**
|
|
22423
|
+
* The workspace ID of the log analytics extension.
|
|
22424
|
+
*/
|
|
22425
|
+
logAnalyticsWorkspaceId: pulumi.Input<string>;
|
|
22426
|
+
/**
|
|
22427
|
+
* The workspace key of the log analytics extension.
|
|
22428
|
+
*/
|
|
22429
|
+
primaryKey: pulumi.Input<string>;
|
|
22430
|
+
}
|
|
22299
22431
|
interface SparkClusterGateway {
|
|
22300
22432
|
/**
|
|
22301
22433
|
* The password used for the Ambari Portal.
|
|
@@ -25553,12 +25685,26 @@ export declare namespace monitoring {
|
|
|
25553
25685
|
interface ActionGroupEventHubReceiver {
|
|
25554
25686
|
/**
|
|
25555
25687
|
* The resource ID of the respective Event Hub.
|
|
25688
|
+
*
|
|
25689
|
+
* @deprecated This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.
|
|
25690
|
+
*/
|
|
25691
|
+
eventHubId?: pulumi.Input<string>;
|
|
25692
|
+
/**
|
|
25693
|
+
* The name of the specific Event Hub queue.
|
|
25694
|
+
*/
|
|
25695
|
+
eventHubName?: pulumi.Input<string>;
|
|
25696
|
+
/**
|
|
25697
|
+
* The namespace name of the Event Hub.
|
|
25556
25698
|
*/
|
|
25557
|
-
|
|
25699
|
+
eventHubNamespace?: pulumi.Input<string>;
|
|
25558
25700
|
/**
|
|
25559
25701
|
* The name of the EventHub Receiver, must be unique within action group.
|
|
25560
25702
|
*/
|
|
25561
25703
|
name: pulumi.Input<string>;
|
|
25704
|
+
/**
|
|
25705
|
+
* The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.
|
|
25706
|
+
*/
|
|
25707
|
+
subscriptionId?: pulumi.Input<string>;
|
|
25562
25708
|
/**
|
|
25563
25709
|
* The Tenant ID for the subscription containing this Event Hub.
|
|
25564
25710
|
*/
|
|
@@ -26384,42 +26530,6 @@ export declare namespace monitoring {
|
|
|
26384
26530
|
*/
|
|
26385
26531
|
enabled: pulumi.Input<boolean>;
|
|
26386
26532
|
}
|
|
26387
|
-
interface GetActionGroupEventHubReceiverArgs {
|
|
26388
|
-
/**
|
|
26389
|
-
* The resource ID of the respective Event Hub.
|
|
26390
|
-
*/
|
|
26391
|
-
eventHubId: pulumi.Input<string>;
|
|
26392
|
-
/**
|
|
26393
|
-
* Specifies the name of the Action Group.
|
|
26394
|
-
*/
|
|
26395
|
-
name: pulumi.Input<string>;
|
|
26396
|
-
/**
|
|
26397
|
-
* The Tenant ID for the subscription containing this Event Hub.
|
|
26398
|
-
*/
|
|
26399
|
-
tenantId?: pulumi.Input<string>;
|
|
26400
|
-
/**
|
|
26401
|
-
* Indicates whether to use common alert schema.
|
|
26402
|
-
*/
|
|
26403
|
-
useCommonAlertSchema?: pulumi.Input<boolean>;
|
|
26404
|
-
}
|
|
26405
|
-
interface GetActionGroupEventHubReceiver {
|
|
26406
|
-
/**
|
|
26407
|
-
* The resource ID of the respective Event Hub.
|
|
26408
|
-
*/
|
|
26409
|
-
eventHubId: string;
|
|
26410
|
-
/**
|
|
26411
|
-
* Specifies the name of the Action Group.
|
|
26412
|
-
*/
|
|
26413
|
-
name: string;
|
|
26414
|
-
/**
|
|
26415
|
-
* The Tenant ID for the subscription containing this Event Hub.
|
|
26416
|
-
*/
|
|
26417
|
-
tenantId?: string;
|
|
26418
|
-
/**
|
|
26419
|
-
* Indicates whether to use common alert schema.
|
|
26420
|
-
*/
|
|
26421
|
-
useCommonAlertSchema?: boolean;
|
|
26422
|
-
}
|
|
26423
26533
|
interface LogProfileRetentionPolicy {
|
|
26424
26534
|
/**
|
|
26425
26535
|
* The number of days for the retention policy. Defaults to 0.
|
|
@@ -30304,6 +30414,30 @@ export declare namespace operationalinsights {
|
|
|
30304
30414
|
publisher: pulumi.Input<string>;
|
|
30305
30415
|
}
|
|
30306
30416
|
}
|
|
30417
|
+
export declare namespace orbital {
|
|
30418
|
+
interface SpacecraftLink {
|
|
30419
|
+
/**
|
|
30420
|
+
* Bandwidth in Mhz.
|
|
30421
|
+
*/
|
|
30422
|
+
bandwidthMhz: pulumi.Input<number>;
|
|
30423
|
+
/**
|
|
30424
|
+
* Center frequency in Mhz.
|
|
30425
|
+
*/
|
|
30426
|
+
centerFrequencyMhz: pulumi.Input<number>;
|
|
30427
|
+
/**
|
|
30428
|
+
* Direction if the communication. Possible values are `Uplink` and `Downlink`.
|
|
30429
|
+
*/
|
|
30430
|
+
direction: pulumi.Input<string>;
|
|
30431
|
+
/**
|
|
30432
|
+
* Name of the link.
|
|
30433
|
+
*/
|
|
30434
|
+
name: pulumi.Input<string>;
|
|
30435
|
+
/**
|
|
30436
|
+
* Polarization. Possible values are `RHCP`, `LHCP`, `linearVertical` and `linearHorizontal`.
|
|
30437
|
+
*/
|
|
30438
|
+
polarization: pulumi.Input<string>;
|
|
30439
|
+
}
|
|
30440
|
+
}
|
|
30307
30441
|
export declare namespace policy {
|
|
30308
30442
|
interface PolicySetDefinitionPolicyDefinitionGroup {
|
|
30309
30443
|
/**
|