@pulumi/azure 5.71.0-alpha.1711778272 → 5.71.0-alpha.1712668274
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/apiDiagnostic.d.ts +3 -3
- package/apimanagement/diagnostic.d.ts +3 -3
- package/appconfiguration/configurationFeature.d.ts +2 -2
- package/appconfiguration/configurationFeature.js +2 -2
- package/appinsights/smartDetectionRule.d.ts +1 -1
- package/appinsights/smartDetectionRule.js +1 -1
- package/appservice/index.d.ts +3 -0
- package/appservice/index.js +6 -1
- package/appservice/index.js.map +1 -1
- package/appservice/staticWebAppFunctionAppRegistration.d.ts +131 -0
- package/appservice/staticWebAppFunctionAppRegistration.js +116 -0
- package/appservice/staticWebAppFunctionAppRegistration.js.map +1 -0
- package/bot/channelsRegistration.d.ts +2 -0
- package/bot/channelsRegistration.js +2 -0
- package/bot/channelsRegistration.js.map +1 -1
- package/bot/serviceAzureBot.d.ts +18 -0
- package/bot/serviceAzureBot.js +2 -0
- package/bot/serviceAzureBot.js.map +1 -1
- package/chaosstudio/target.d.ts +0 -33
- package/chaosstudio/target.js +0 -33
- package/chaosstudio/target.js.map +1 -1
- package/compute/getSharedImageVersion.d.ts +13 -1
- package/compute/getSharedImageVersion.js +1 -0
- package/compute/getSharedImageVersion.js.map +1 -1
- package/containerapp/environmentDaprComponent.d.ts +3 -3
- package/containerservice/clusterTrustedAccessRoleBinding.d.ts +0 -73
- package/containerservice/clusterTrustedAccessRoleBinding.js +0 -73
- package/containerservice/clusterTrustedAccessRoleBinding.js.map +1 -1
- package/containerservice/fleetMember.d.ts +0 -38
- package/containerservice/fleetMember.js +0 -38
- package/containerservice/fleetMember.js.map +1 -1
- package/databricks/workspace.d.ts +12 -6
- package/databricks/workspace.js +4 -0
- package/databricks/workspace.js.map +1 -1
- package/databricks/workspaceRootDbfsCustomerManagedKey.d.ts +5 -2
- package/databricks/workspaceRootDbfsCustomerManagedKey.js +4 -2
- package/databricks/workspaceRootDbfsCustomerManagedKey.js.map +1 -1
- package/devtest/schedule.d.ts +1 -0
- package/devtest/schedule.js +1 -0
- package/devtest/schedule.js.map +1 -1
- package/monitoring/scheduledQueryRulesAlertV2.d.ts +26 -0
- package/monitoring/scheduledQueryRulesAlertV2.js +16 -0
- package/monitoring/scheduledQueryRulesAlertV2.js.map +1 -1
- package/mssql/database.d.ts +22 -4
- package/mssql/database.js +2 -0
- package/mssql/database.js.map +1 -1
- package/mssql/elasticPool.d.ts +13 -7
- package/mssql/elasticPool.js.map +1 -1
- package/mssql/serverExtendedAuditingPolicy.d.ts +24 -0
- package/mssql/serverExtendedAuditingPolicy.js +4 -0
- package/mssql/serverExtendedAuditingPolicy.js.map +1 -1
- package/netapp/account.d.ts +2 -0
- package/netapp/account.js +2 -0
- package/netapp/account.js.map +1 -1
- package/netapp/volume.d.ts +33 -6
- package/netapp/volume.js +4 -0
- package/netapp/volume.js.map +1 -1
- package/network/publicIpPrefix.d.ts +3 -3
- package/nginx/deployment.d.ts +3 -3
- package/nginx/getDeployment.d.ts +1 -1
- package/package.json +1 -1
- package/redis/cacheAccessPolicy.d.ts +116 -0
- package/redis/cacheAccessPolicy.js +103 -0
- package/redis/cacheAccessPolicy.js.map +1 -0
- package/redis/cacheAccessPolicyAssignment.d.ts +143 -0
- package/redis/cacheAccessPolicyAssignment.js +116 -0
- package/redis/cacheAccessPolicyAssignment.js.map +1 -0
- package/redis/index.d.ts +6 -0
- package/redis/index.js +11 -1
- package/redis/index.js.map +1 -1
- package/stack/hciCluster.d.ts +5 -5
- package/stack/hciCluster.js +0 -3
- package/stack/hciCluster.js.map +1 -1
- package/storage/syncCloudEndpoint.d.ts +1 -1
- package/storage/syncCloudEndpoint.js +1 -1
- package/systemcenter/getVirtualMachineManagerInventoryItems.d.ts +79 -0
- package/systemcenter/getVirtualMachineManagerInventoryItems.js +54 -0
- package/systemcenter/getVirtualMachineManagerInventoryItems.js.map +1 -0
- package/systemcenter/index.d.ts +3 -0
- package/systemcenter/index.js +4 -1
- package/systemcenter/index.js.map +1 -1
- package/types/input.d.ts +126 -43
- package/types/output.d.ts +148 -43
- package/workloadssap/discoveryVirtualInstance.d.ts +204 -0
- package/workloadssap/discoveryVirtualInstance.js +119 -0
- package/workloadssap/discoveryVirtualInstance.js.map +1 -0
- package/workloadssap/index.d.ts +3 -0
- package/workloadssap/index.js +6 -1
- package/workloadssap/index.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface ProviderFeatures {
|
|
|
9
9
|
logAnalyticsWorkspace?: pulumi.Input<inputs.ProviderFeaturesLogAnalyticsWorkspace>;
|
|
10
10
|
managedDisk?: pulumi.Input<inputs.ProviderFeaturesManagedDisk>;
|
|
11
11
|
postgresqlFlexibleServer?: pulumi.Input<inputs.ProviderFeaturesPostgresqlFlexibleServer>;
|
|
12
|
+
recoveryService?: pulumi.Input<inputs.ProviderFeaturesRecoveryService>;
|
|
12
13
|
resourceGroup?: pulumi.Input<inputs.ProviderFeaturesResourceGroup>;
|
|
13
14
|
subscription?: pulumi.Input<inputs.ProviderFeaturesSubscription>;
|
|
14
15
|
templateDeployment?: pulumi.Input<inputs.ProviderFeaturesTemplateDeployment>;
|
|
@@ -76,6 +77,10 @@ export interface ProviderFeaturesManagedDisk {
|
|
|
76
77
|
export interface ProviderFeaturesPostgresqlFlexibleServer {
|
|
77
78
|
restartServerOnConfigurationValueChange?: pulumi.Input<boolean>;
|
|
78
79
|
}
|
|
80
|
+
export interface ProviderFeaturesRecoveryService {
|
|
81
|
+
purgeProtectedItemsFromVaultOnDestroy?: pulumi.Input<boolean>;
|
|
82
|
+
vmBackupStopProtectionAndRetainDataOnDestroy?: pulumi.Input<boolean>;
|
|
83
|
+
}
|
|
79
84
|
export interface ProviderFeaturesResourceGroup {
|
|
80
85
|
preventDeletionIfContainsResources?: pulumi.Input<boolean>;
|
|
81
86
|
}
|
|
@@ -17156,7 +17161,7 @@ export declare namespace compute {
|
|
|
17156
17161
|
}
|
|
17157
17162
|
interface CapacityReservationSku {
|
|
17158
17163
|
/**
|
|
17159
|
-
* Specifies the number of instances to be reserved. It must be
|
|
17164
|
+
* Specifies the number of instances to be reserved. It must be greater than or equal to `0` and not exceed the quota in the subscription.
|
|
17160
17165
|
*/
|
|
17161
17166
|
capacity: pulumi.Input<number>;
|
|
17162
17167
|
/**
|
|
@@ -20790,15 +20795,29 @@ export declare namespace containerapp {
|
|
|
20790
20795
|
}
|
|
20791
20796
|
interface AppSecret {
|
|
20792
20797
|
/**
|
|
20793
|
-
* The
|
|
20798
|
+
* The identity to use for accessing the Key Vault secret reference. This can either be the Resource ID of a User Assigned Identity, or `System` for the System Assigned Identity.
|
|
20799
|
+
*
|
|
20800
|
+
* !> **Note:** `identity` must be used together with `keyVaultSecretId`
|
|
20801
|
+
*/
|
|
20802
|
+
identity?: pulumi.Input<string>;
|
|
20803
|
+
/**
|
|
20804
|
+
* The ID of a Key Vault secret. This can be a versioned or version-less ID.
|
|
20805
|
+
*
|
|
20806
|
+
* !> **Note:** When using `keyVaultSecretId`, `ignoreChanges` should be used to ignore any changes to `value`.
|
|
20807
|
+
*/
|
|
20808
|
+
keyVaultSecretId?: pulumi.Input<string>;
|
|
20809
|
+
/**
|
|
20810
|
+
* The secret name.
|
|
20794
20811
|
*/
|
|
20795
20812
|
name: pulumi.Input<string>;
|
|
20796
20813
|
/**
|
|
20797
20814
|
* The value for this secret.
|
|
20798
20815
|
*
|
|
20816
|
+
* !> **Note:** `value` will be ignored if `keyVaultSecretId` and `identity` are provided.
|
|
20817
|
+
*
|
|
20799
20818
|
* !> **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.
|
|
20800
20819
|
*/
|
|
20801
|
-
value
|
|
20820
|
+
value?: pulumi.Input<string>;
|
|
20802
20821
|
}
|
|
20803
20822
|
interface AppTemplate {
|
|
20804
20823
|
/**
|
|
@@ -21277,6 +21296,14 @@ export declare namespace containerapp {
|
|
|
21277
21296
|
value?: pulumi.Input<string>;
|
|
21278
21297
|
}
|
|
21279
21298
|
interface EnvironmentDaprComponentSecret {
|
|
21299
|
+
/**
|
|
21300
|
+
* The identity to use for accessing key vault reference.
|
|
21301
|
+
*/
|
|
21302
|
+
identity?: pulumi.Input<string>;
|
|
21303
|
+
/**
|
|
21304
|
+
* The Key Vault Secret ID. Could be either one of `id` or `versionlessId`.
|
|
21305
|
+
*/
|
|
21306
|
+
keyVaultSecretId?: pulumi.Input<string>;
|
|
21280
21307
|
/**
|
|
21281
21308
|
* The Secret name.
|
|
21282
21309
|
*/
|
|
@@ -21284,7 +21311,7 @@ export declare namespace containerapp {
|
|
|
21284
21311
|
/**
|
|
21285
21312
|
* The value for this secret.
|
|
21286
21313
|
*/
|
|
21287
|
-
value
|
|
21314
|
+
value?: pulumi.Input<string>;
|
|
21288
21315
|
}
|
|
21289
21316
|
interface EnvironmentWorkloadProfile {
|
|
21290
21317
|
/**
|
|
@@ -23041,7 +23068,7 @@ export declare namespace containerservice {
|
|
|
23041
23068
|
*
|
|
23042
23069
|
* ->**Note:** To configure dual-stack networking `ipVersions` should be set to `["IPv4", "IPv6"]`.
|
|
23043
23070
|
*
|
|
23044
|
-
* ->**Note:** Dual-stack networking requires that the Preview Feature `Microsoft.ContainerService/AKS-EnableDualStack` is enabled and the Resource Provider is re-registered, see [the documentation](https://docs.microsoft.com/azure/aks/configure-kubenet-dual-stack?tabs=azure-cli
|
|
23071
|
+
* ->**Note:** Dual-stack networking requires that the Preview Feature `Microsoft.ContainerService/AKS-EnableDualStack` is enabled and the Resource Provider is re-registered, see [the documentation](https://docs.microsoft.com/azure/aks/configure-kubenet-dual-stack?tabs=azure-cli%2Ckubectl#register-the-aks-enabledualstack-preview-feature) for more information.
|
|
23045
23072
|
*/
|
|
23046
23073
|
ipVersions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
23047
23074
|
/**
|
|
@@ -23123,7 +23150,7 @@ export declare namespace containerservice {
|
|
|
23123
23150
|
/**
|
|
23124
23151
|
* The desired number of IPv6 outbound IPs created and managed by Azure for the cluster load balancer. Must be in the range of 1 to 100 (inclusive). The default value is 0 for single-stack and 1 for dual-stack.
|
|
23125
23152
|
*
|
|
23126
|
-
* > **Note:** `managedOutboundIpv6Count` requires dual-stack networking. To enable dual-stack networking the Preview Feature `Microsoft.ContainerService/AKS-EnableDualStack` needs to be enabled and the Resource Provider re-registered, see [the documentation](https://docs.microsoft.com/azure/aks/configure-kubenet-dual-stack?tabs=azure-cli
|
|
23153
|
+
* > **Note:** `managedOutboundIpv6Count` requires dual-stack networking. To enable dual-stack networking the Preview Feature `Microsoft.ContainerService/AKS-EnableDualStack` needs to be enabled and the Resource Provider re-registered, see [the documentation](https://docs.microsoft.com/azure/aks/configure-kubenet-dual-stack?tabs=azure-cli%2Ckubectl#register-the-aks-enabledualstack-preview-feature) for more information.
|
|
23127
23154
|
*/
|
|
23128
23155
|
managedOutboundIpv6Count?: pulumi.Input<number>;
|
|
23129
23156
|
/**
|
|
@@ -25227,7 +25254,7 @@ export declare namespace databricks {
|
|
|
25227
25254
|
/**
|
|
25228
25255
|
* Are public IP Addresses not allowed? Possible values are `true` or `false`. Defaults to `false`.
|
|
25229
25256
|
*
|
|
25230
|
-
* > **
|
|
25257
|
+
* > **Note:** Updating `noPublicIp` parameter is only allowed if the value is changing from `false` to `true` and and only for VNet-injected workspaces.
|
|
25231
25258
|
*/
|
|
25232
25259
|
noPublicIp?: pulumi.Input<boolean>;
|
|
25233
25260
|
/**
|
|
@@ -25265,7 +25292,7 @@ export declare namespace databricks {
|
|
|
25265
25292
|
/**
|
|
25266
25293
|
* Address prefix for Managed virtual network. Defaults to `10.139`. Changing this forces a new resource to be created.
|
|
25267
25294
|
*
|
|
25268
|
-
* > **
|
|
25295
|
+
* > **Note:** Databricks requires that a network security group is associated with the `public` and `private` subnets when a `virtualNetworkId` has been defined. Both `public` and `private` subnets must be delegated to `Microsoft.Databricks/workspaces`. For more information about subnet delegation see the [product documentation](https://docs.microsoft.com/azure/virtual-network/subnet-delegation-overview).
|
|
25269
25296
|
*/
|
|
25270
25297
|
vnetAddressPrefix?: pulumi.Input<string>;
|
|
25271
25298
|
}
|
|
@@ -27311,7 +27338,7 @@ export declare namespace desktopvirtualization {
|
|
|
27311
27338
|
*/
|
|
27312
27339
|
peakStartTime: pulumi.Input<string>;
|
|
27313
27340
|
/**
|
|
27314
|
-
* This is the value in percentage of used host pool capacity that will be considered to evaluate whether to turn on/off virtual machines during the ramp-down and off-peak hours. For example, if capacity threshold is specified as 60
|
|
27341
|
+
* This is the value in percentage of used host pool capacity that will be considered to evaluate whether to turn on/off virtual machines during the ramp-down and off-peak hours. For example, if capacity threshold is specified as 60% and your total host pool capacity is 100 sessions, autoscale will turn on additional session hosts once the host pool exceeds a load of 60 sessions.
|
|
27315
27342
|
*/
|
|
27316
27343
|
rampDownCapacityThresholdPercent: pulumi.Input<number>;
|
|
27317
27344
|
/**
|
|
@@ -27323,7 +27350,7 @@ export declare namespace desktopvirtualization {
|
|
|
27323
27350
|
*/
|
|
27324
27351
|
rampDownLoadBalancingAlgorithm: pulumi.Input<string>;
|
|
27325
27352
|
/**
|
|
27326
|
-
* The minimum percentage of session host virtual machines that you would like to get to for ramp-down and off-peak hours. For example, if Minimum percentage of hosts is specified as 10
|
|
27353
|
+
* The minimum percentage of session host virtual machines that you would like to get to for ramp-down and off-peak hours. For example, if Minimum percentage of hosts is specified as 10% and total number of session hosts in your host pool is 10, autoscale will ensure a minimum of 1 session host is available to take user connections.
|
|
27327
27354
|
*/
|
|
27328
27355
|
rampDownMinimumHostsPercent: pulumi.Input<number>;
|
|
27329
27356
|
/**
|
|
@@ -27343,7 +27370,7 @@ export declare namespace desktopvirtualization {
|
|
|
27343
27370
|
*/
|
|
27344
27371
|
rampDownWaitTimeMinutes: pulumi.Input<number>;
|
|
27345
27372
|
/**
|
|
27346
|
-
* This is the value of percentage of used host pool capacity that will be considered to evaluate whether to turn on/off virtual machines during the ramp-up and peak hours. For example, if capacity threshold is specified as `60
|
|
27373
|
+
* This is the value of percentage of used host pool capacity that will be considered to evaluate whether to turn on/off virtual machines during the ramp-up and peak hours. For example, if capacity threshold is specified as `60%` and your total host pool capacity is `100` sessions, autoscale will turn on additional session hosts once the host pool exceeds a load of `60` sessions.
|
|
27347
27374
|
*/
|
|
27348
27375
|
rampUpCapacityThresholdPercent?: pulumi.Input<number>;
|
|
27349
27376
|
/**
|
|
@@ -27351,7 +27378,7 @@ export declare namespace desktopvirtualization {
|
|
|
27351
27378
|
*/
|
|
27352
27379
|
rampUpLoadBalancingAlgorithm: pulumi.Input<string>;
|
|
27353
27380
|
/**
|
|
27354
|
-
* Specifies the minimum percentage of session host virtual machines to start during ramp-up for peak hours. For example, if Minimum percentage of hosts is specified as `10
|
|
27381
|
+
* Specifies the minimum percentage of session host virtual machines to start during ramp-up for peak hours. For example, if Minimum percentage of hosts is specified as `10%` and total number of session hosts in your host pool is `10`, autoscale will ensure a minimum of `1` session host is available to take user connections.
|
|
27355
27382
|
*/
|
|
27356
27383
|
rampUpMinimumHostsPercent?: pulumi.Input<number>;
|
|
27357
27384
|
/**
|
|
@@ -36661,7 +36688,7 @@ export declare namespace media {
|
|
|
36661
36688
|
*/
|
|
36662
36689
|
frameRate?: pulumi.Input<string>;
|
|
36663
36690
|
/**
|
|
36664
|
-
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36691
|
+
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in height as the input.
|
|
36665
36692
|
*/
|
|
36666
36693
|
height?: pulumi.Input<string>;
|
|
36667
36694
|
/**
|
|
@@ -36689,7 +36716,7 @@ export declare namespace media {
|
|
|
36689
36716
|
*/
|
|
36690
36717
|
slices?: pulumi.Input<number>;
|
|
36691
36718
|
/**
|
|
36692
|
-
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36719
|
+
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in width as the input.
|
|
36693
36720
|
*/
|
|
36694
36721
|
width?: pulumi.Input<string>;
|
|
36695
36722
|
}
|
|
@@ -36749,7 +36776,7 @@ export declare namespace media {
|
|
|
36749
36776
|
*/
|
|
36750
36777
|
frameRate?: pulumi.Input<string>;
|
|
36751
36778
|
/**
|
|
36752
|
-
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36779
|
+
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in height as the input.
|
|
36753
36780
|
*/
|
|
36754
36781
|
height?: pulumi.Input<string>;
|
|
36755
36782
|
/**
|
|
@@ -36777,7 +36804,7 @@ export declare namespace media {
|
|
|
36777
36804
|
*/
|
|
36778
36805
|
slices?: pulumi.Input<number>;
|
|
36779
36806
|
/**
|
|
36780
|
-
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36807
|
+
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in width as the input.
|
|
36781
36808
|
*/
|
|
36782
36809
|
width?: pulumi.Input<string>;
|
|
36783
36810
|
}
|
|
@@ -36795,7 +36822,7 @@ export declare namespace media {
|
|
|
36795
36822
|
*/
|
|
36796
36823
|
layers?: pulumi.Input<pulumi.Input<inputs.media.TransformOutputCustomPresetCodecJpgImageLayer>[]>;
|
|
36797
36824
|
/**
|
|
36798
|
-
* The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, `PT5M30S` to stop at 5 minutes and 30 seconds from start time), or a frame count (For example, `300` to stop at the 300th frame from the frame at start time. If this value is `1`, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, `50
|
|
36825
|
+
* The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, `PT5M30S` to stop at 5 minutes and 30 seconds from start time), or a frame count (For example, `300` to stop at the 300th frame from the frame at start time. If this value is `1`, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, `50%` to stop at half of stream duration from start time). The default value is `100%`, which means to stop at the end of the stream.
|
|
36799
36826
|
*/
|
|
36800
36827
|
range?: pulumi.Input<string>;
|
|
36801
36828
|
/**
|
|
@@ -36803,11 +36830,11 @@ export declare namespace media {
|
|
|
36803
36830
|
*/
|
|
36804
36831
|
spriteColumn?: pulumi.Input<number>;
|
|
36805
36832
|
/**
|
|
36806
|
-
* The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10
|
|
36833
|
+
* The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10%` to start at 10% of stream duration). Also supports a macro `{Best}`, which tells the encoder to select the best thumbnail from the first few seconds of the video and will only produce one thumbnail, no matter what other settings are for `step` and `range`.
|
|
36807
36834
|
*/
|
|
36808
36835
|
start: pulumi.Input<string>;
|
|
36809
36836
|
/**
|
|
36810
|
-
* The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, `PT05S` for one image every 5 seconds), or a frame count (For example, `30` for one image every 30 frames), or a relative value to stream duration (For example, `10
|
|
36837
|
+
* The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, `PT05S` for one image every 5 seconds), or a frame count (For example, `30` for one image every 30 frames), or a relative value to stream duration (For example, `10%` for one image every 10% of stream duration). Note: Step value will affect the first generated thumbnail, which may not be exactly the one specified at transform preset start time. This is due to the encoder, which tries to select the best thumbnail between start time and Step position from start time as the first output. As the default value is `10%`, it means if stream has long duration, the first generated thumbnail might be far away from the one specified at start time. Try to select reasonable value for Step if the first thumbnail is expected close to start time, or set Range value at `1` if only one thumbnail is needed at start time.
|
|
36811
36838
|
*/
|
|
36812
36839
|
step?: pulumi.Input<string>;
|
|
36813
36840
|
/**
|
|
@@ -36821,7 +36848,7 @@ export declare namespace media {
|
|
|
36821
36848
|
}
|
|
36822
36849
|
interface TransformOutputCustomPresetCodecJpgImageLayer {
|
|
36823
36850
|
/**
|
|
36824
|
-
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36851
|
+
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in height as the input.
|
|
36825
36852
|
*/
|
|
36826
36853
|
height?: pulumi.Input<string>;
|
|
36827
36854
|
/**
|
|
@@ -36833,7 +36860,7 @@ export declare namespace media {
|
|
|
36833
36860
|
*/
|
|
36834
36861
|
quality?: pulumi.Input<number>;
|
|
36835
36862
|
/**
|
|
36836
|
-
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36863
|
+
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in width as the input.
|
|
36837
36864
|
*/
|
|
36838
36865
|
width?: pulumi.Input<string>;
|
|
36839
36866
|
}
|
|
@@ -36851,15 +36878,15 @@ export declare namespace media {
|
|
|
36851
36878
|
*/
|
|
36852
36879
|
layers?: pulumi.Input<pulumi.Input<inputs.media.TransformOutputCustomPresetCodecPngImageLayer>[]>;
|
|
36853
36880
|
/**
|
|
36854
|
-
* The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, `PT5M30S` to stop at `5` minutes and `30` seconds from start time), or a frame count (For example, `300` to stop at the 300th frame from the frame at start time. If this value is `1`, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, `50
|
|
36881
|
+
* The position relative to transform preset start time in the input video at which to stop generating thumbnails. The value can be in ISO 8601 format (For example, `PT5M30S` to stop at `5` minutes and `30` seconds from start time), or a frame count (For example, `300` to stop at the 300th frame from the frame at start time. If this value is `1`, it means only producing one thumbnail at start time), or a relative value to the stream duration (For example, `50%` to stop at half of stream duration from start time). The default value is `100%`, which means to stop at the end of the stream.
|
|
36855
36882
|
*/
|
|
36856
36883
|
range?: pulumi.Input<string>;
|
|
36857
36884
|
/**
|
|
36858
|
-
* The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10
|
|
36885
|
+
* The position in the input video from where to start generating thumbnails. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10%` to start at 10% of stream duration). Also supports a macro `{Best}`, which tells the encoder to select the best thumbnail from the first few seconds of the video and will only produce one thumbnail, no matter what other settings are for `step` and `range`.
|
|
36859
36886
|
*/
|
|
36860
36887
|
start: pulumi.Input<string>;
|
|
36861
36888
|
/**
|
|
36862
|
-
* The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, `PT05S` for one image every 5 seconds), or a frame count (For example, `30` for one image every 30 frames), or a relative value to stream duration (For example, `10
|
|
36889
|
+
* The intervals at which thumbnails are generated. The value can be in ISO 8601 format (For example, `PT05S` for one image every 5 seconds), or a frame count (For example, `30` for one image every 30 frames), or a relative value to stream duration (For example, `10%` for one image every 10% of stream duration). Note: Step value will affect the first generated thumbnail, which may not be exactly the one specified at transform preset start time. This is due to the encoder, which tries to select the best thumbnail between start time and Step position from start time as the first output. As the default value is `10%`, it means if stream has long duration, the first generated thumbnail might be far away from the one specified at start time. Try to select reasonable value for Step if the first thumbnail is expected close to start time, or set Range value at `1` if only one thumbnail is needed at start time.
|
|
36863
36890
|
*/
|
|
36864
36891
|
step?: pulumi.Input<string>;
|
|
36865
36892
|
/**
|
|
@@ -36873,7 +36900,7 @@ export declare namespace media {
|
|
|
36873
36900
|
}
|
|
36874
36901
|
interface TransformOutputCustomPresetCodecPngImageLayer {
|
|
36875
36902
|
/**
|
|
36876
|
-
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36903
|
+
* The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in height as the input.
|
|
36877
36904
|
*/
|
|
36878
36905
|
height?: pulumi.Input<string>;
|
|
36879
36906
|
/**
|
|
@@ -36881,7 +36908,7 @@ export declare namespace media {
|
|
|
36881
36908
|
*/
|
|
36882
36909
|
label?: pulumi.Input<string>;
|
|
36883
36910
|
/**
|
|
36884
|
-
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50
|
|
36911
|
+
* The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example `50%` means the output video has half as many pixels in width as the input.
|
|
36885
36912
|
*/
|
|
36886
36913
|
width?: pulumi.Input<string>;
|
|
36887
36914
|
}
|
|
@@ -36913,19 +36940,19 @@ export declare namespace media {
|
|
|
36913
36940
|
}
|
|
36914
36941
|
interface TransformOutputCustomPresetFilterCropRectangle {
|
|
36915
36942
|
/**
|
|
36916
|
-
* The height of the rectangular region in pixels. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
36943
|
+
* The height of the rectangular region in pixels. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
36917
36944
|
*/
|
|
36918
36945
|
height?: pulumi.Input<string>;
|
|
36919
36946
|
/**
|
|
36920
|
-
* The number of pixels from the left-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
36947
|
+
* The number of pixels from the left-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
36921
36948
|
*/
|
|
36922
36949
|
left?: pulumi.Input<string>;
|
|
36923
36950
|
/**
|
|
36924
|
-
* The number of pixels from the top-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
36951
|
+
* The number of pixels from the top-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
36925
36952
|
*/
|
|
36926
36953
|
top?: pulumi.Input<string>;
|
|
36927
36954
|
/**
|
|
36928
|
-
* The width of the rectangular region in pixels. This can be absolute pixel value (e.g` 100`), or relative to the size of the video (For example, `50
|
|
36955
|
+
* The width of the rectangular region in pixels. This can be absolute pixel value (e.g` 100`), or relative to the size of the video (For example, `50%`).
|
|
36929
36956
|
*/
|
|
36930
36957
|
width?: pulumi.Input<string>;
|
|
36931
36958
|
}
|
|
@@ -36941,7 +36968,7 @@ export declare namespace media {
|
|
|
36941
36968
|
}
|
|
36942
36969
|
interface TransformOutputCustomPresetFilterFadeIn {
|
|
36943
36970
|
/**
|
|
36944
|
-
* The duration of the fade effect in the video. The value can be in ISO 8601 format (For example, PT05S to fade In/Out a color during 5 seconds), or a frame count (For example, 10 to fade 10 frames from the start time), or a relative value to stream duration (For example, 10
|
|
36971
|
+
* The duration of the fade effect in the video. The value can be in ISO 8601 format (For example, PT05S to fade In/Out a color during 5 seconds), or a frame count (For example, 10 to fade 10 frames from the start time), or a relative value to stream duration (For example, 10% to fade 10% of stream duration).
|
|
36945
36972
|
*/
|
|
36946
36973
|
duration: pulumi.Input<string>;
|
|
36947
36974
|
/**
|
|
@@ -36949,13 +36976,13 @@ export declare namespace media {
|
|
|
36949
36976
|
*/
|
|
36950
36977
|
fadeColor: pulumi.Input<string>;
|
|
36951
36978
|
/**
|
|
36952
|
-
* The position in the input video from where to start fade. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10
|
|
36979
|
+
* The position in the input video from where to start fade. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10%` to start at 10% of stream duration). Default to `0`.
|
|
36953
36980
|
*/
|
|
36954
36981
|
start?: pulumi.Input<string>;
|
|
36955
36982
|
}
|
|
36956
36983
|
interface TransformOutputCustomPresetFilterFadeOut {
|
|
36957
36984
|
/**
|
|
36958
|
-
* The duration of the fade effect in the video. The value can be in ISO 8601 format (For example, PT05S to fade In/Out a color during 5 seconds), or a frame count (For example, 10 to fade 10 frames from the start time), or a relative value to stream duration (For example, 10
|
|
36985
|
+
* The duration of the fade effect in the video. The value can be in ISO 8601 format (For example, PT05S to fade In/Out a color during 5 seconds), or a frame count (For example, 10 to fade 10 frames from the start time), or a relative value to stream duration (For example, 10% to fade 10% of stream duration).
|
|
36959
36986
|
*/
|
|
36960
36987
|
duration: pulumi.Input<string>;
|
|
36961
36988
|
/**
|
|
@@ -36963,7 +36990,7 @@ export declare namespace media {
|
|
|
36963
36990
|
*/
|
|
36964
36991
|
fadeColor: pulumi.Input<string>;
|
|
36965
36992
|
/**
|
|
36966
|
-
* The position in the input video from where to start fade. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10
|
|
36993
|
+
* The position in the input video from where to start fade. The value can be in ISO 8601 format (For example, `PT05S` to start at 5 seconds), or a frame count (For example, `10` to start at the 10th frame), or a relative value to stream duration (For example, `10%` to start at 10% of stream duration). Default to `0`.
|
|
36967
36994
|
*/
|
|
36968
36995
|
start?: pulumi.Input<string>;
|
|
36969
36996
|
}
|
|
@@ -37045,37 +37072,37 @@ export declare namespace media {
|
|
|
37045
37072
|
}
|
|
37046
37073
|
interface TransformOutputCustomPresetFilterOverlayVideoCropRectangle {
|
|
37047
37074
|
/**
|
|
37048
|
-
* The height of the rectangular region in pixels. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
37075
|
+
* The height of the rectangular region in pixels. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
37049
37076
|
*/
|
|
37050
37077
|
height?: pulumi.Input<string>;
|
|
37051
37078
|
/**
|
|
37052
|
-
* The number of pixels from the left-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
37079
|
+
* The number of pixels from the left-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
37053
37080
|
*/
|
|
37054
37081
|
left?: pulumi.Input<string>;
|
|
37055
37082
|
/**
|
|
37056
|
-
* The number of pixels from the top-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
37083
|
+
* The number of pixels from the top-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
37057
37084
|
*/
|
|
37058
37085
|
top?: pulumi.Input<string>;
|
|
37059
37086
|
/**
|
|
37060
|
-
* The width of the rectangular region in pixels. This can be absolute pixel value (e.g` 100`), or relative to the size of the video (For example, `50
|
|
37087
|
+
* The width of the rectangular region in pixels. This can be absolute pixel value (e.g` 100`), or relative to the size of the video (For example, `50%`).
|
|
37061
37088
|
*/
|
|
37062
37089
|
width?: pulumi.Input<string>;
|
|
37063
37090
|
}
|
|
37064
37091
|
interface TransformOutputCustomPresetFilterOverlayVideoPosition {
|
|
37065
37092
|
/**
|
|
37066
|
-
* The height of the rectangular region in pixels. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
37093
|
+
* The height of the rectangular region in pixels. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
37067
37094
|
*/
|
|
37068
37095
|
height?: pulumi.Input<string>;
|
|
37069
37096
|
/**
|
|
37070
|
-
* The number of pixels from the left-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
37097
|
+
* The number of pixels from the left-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
37071
37098
|
*/
|
|
37072
37099
|
left?: pulumi.Input<string>;
|
|
37073
37100
|
/**
|
|
37074
|
-
* The number of pixels from the top-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50
|
|
37101
|
+
* The number of pixels from the top-margin. This can be absolute pixel value (e.g `100`), or relative to the size of the video (For example, `50%`).
|
|
37075
37102
|
*/
|
|
37076
37103
|
top?: pulumi.Input<string>;
|
|
37077
37104
|
/**
|
|
37078
|
-
* The width of the rectangular region in pixels. This can be absolute pixel value (e.g` 100`), or relative to the size of the video (For example, `50
|
|
37105
|
+
* The width of the rectangular region in pixels. This can be absolute pixel value (e.g` 100`), or relative to the size of the video (For example, `50%`).
|
|
37079
37106
|
*/
|
|
37080
37107
|
width?: pulumi.Input<string>;
|
|
37081
37108
|
}
|
|
@@ -39852,6 +39879,26 @@ export declare namespace monitoring {
|
|
|
39852
39879
|
*/
|
|
39853
39880
|
numberOfEvaluationPeriods: pulumi.Input<number>;
|
|
39854
39881
|
}
|
|
39882
|
+
interface ScheduledQueryRulesAlertV2Identity {
|
|
39883
|
+
/**
|
|
39884
|
+
* A list of User Assigned Managed Identity IDs to be assigned to this Scheduled Query Rule.
|
|
39885
|
+
*
|
|
39886
|
+
* > **NOTE:** This is required when `type` is set to `UserAssigned`. The identity associated must have required roles, read the [Azure documentation](https://learn.microsoft.com/en-us/azure/azure-monitor/alerts/alerts-create-log-alert-rule#configure-the-alert-rule-details) for more information.
|
|
39887
|
+
*/
|
|
39888
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
39889
|
+
/**
|
|
39890
|
+
* The Principal ID for the Service Principal associated with the Managed Service Identity of this App Service slot.
|
|
39891
|
+
*/
|
|
39892
|
+
principalId?: pulumi.Input<string>;
|
|
39893
|
+
/**
|
|
39894
|
+
* The Tenant ID for the Service Principal associated with the Managed Service Identity of this App Service slot.
|
|
39895
|
+
*/
|
|
39896
|
+
tenantId?: pulumi.Input<string>;
|
|
39897
|
+
/**
|
|
39898
|
+
* Specifies the type of Managed Service Identity that should be configured on this Scheduled Query Rule. Possible values are `SystemAssigned`, `UserAssigned`.
|
|
39899
|
+
*/
|
|
39900
|
+
type: pulumi.Input<string>;
|
|
39901
|
+
}
|
|
39855
39902
|
interface ScheduledQueryRulesLogCriteria {
|
|
39856
39903
|
/**
|
|
39857
39904
|
* A `dimension` block as defined below.
|
|
@@ -40832,6 +40879,30 @@ export declare namespace netapp {
|
|
|
40832
40879
|
* A list of allowed clients IPv4 addresses.
|
|
40833
40880
|
*/
|
|
40834
40881
|
allowedClients: pulumi.Input<pulumi.Input<string>[]>;
|
|
40882
|
+
/**
|
|
40883
|
+
* Is Kerberos 5 read-only access permitted to this volume?
|
|
40884
|
+
*/
|
|
40885
|
+
kerberos5ReadOnlyEnabled?: pulumi.Input<boolean>;
|
|
40886
|
+
/**
|
|
40887
|
+
* Is Kerberos 5 read/write permitted to this volume?
|
|
40888
|
+
*/
|
|
40889
|
+
kerberos5ReadWriteEnabled?: pulumi.Input<boolean>;
|
|
40890
|
+
/**
|
|
40891
|
+
* Is Kerberos 5i read-only permitted to this volume?
|
|
40892
|
+
*/
|
|
40893
|
+
kerberos5iReadOnlyEnabled?: pulumi.Input<boolean>;
|
|
40894
|
+
/**
|
|
40895
|
+
* Is Kerberos 5i read/write permitted to this volume?
|
|
40896
|
+
*/
|
|
40897
|
+
kerberos5iReadWriteEnabled?: pulumi.Input<boolean>;
|
|
40898
|
+
/**
|
|
40899
|
+
* Is Kerberos 5p read-only permitted to this volume?
|
|
40900
|
+
*/
|
|
40901
|
+
kerberos5pReadOnlyEnabled?: pulumi.Input<boolean>;
|
|
40902
|
+
/**
|
|
40903
|
+
* Is Kerberos 5p read/write permitted to this volume?
|
|
40904
|
+
*/
|
|
40905
|
+
kerberos5pReadWriteEnabled?: pulumi.Input<boolean>;
|
|
40835
40906
|
/**
|
|
40836
40907
|
* A list of allowed protocols. Valid values include `CIFS`, `NFSv3`, or `NFSv4.1`. Only one value is supported at this time. This replaces the previous arguments: `cifsEnabled`, `nfsv3Enabled` and `nfsv4Enabled`.
|
|
40837
40908
|
*/
|
|
@@ -44466,7 +44537,7 @@ export declare namespace nginx {
|
|
|
44466
44537
|
}
|
|
44467
44538
|
interface DeploymentFrontendPublic {
|
|
44468
44539
|
/**
|
|
44469
|
-
* Specifies a list of Public IP
|
|
44540
|
+
* Specifies a list of Public IP Resource ID to this Nginx Deployment.
|
|
44470
44541
|
*/
|
|
44471
44542
|
ipAddresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
44472
44543
|
}
|
|
@@ -49652,6 +49723,8 @@ export declare namespace synapse {
|
|
|
49652
49723
|
enabled?: pulumi.Input<boolean>;
|
|
49653
49724
|
}
|
|
49654
49725
|
}
|
|
49726
|
+
export declare namespace systemcenter {
|
|
49727
|
+
}
|
|
49655
49728
|
export declare namespace trafficmanager {
|
|
49656
49729
|
interface ProfileDnsConfig {
|
|
49657
49730
|
/**
|
|
@@ -50094,6 +50167,16 @@ export declare namespace webpubsub {
|
|
|
50094
50167
|
}
|
|
50095
50168
|
}
|
|
50096
50169
|
export declare namespace workloadssap {
|
|
50170
|
+
interface DiscoveryVirtualInstanceIdentity {
|
|
50171
|
+
/**
|
|
50172
|
+
* A list of User Assigned Managed Identity IDs to be assigned to this SAP Discovery Virtual Instance.
|
|
50173
|
+
*/
|
|
50174
|
+
identityIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
50175
|
+
/**
|
|
50176
|
+
* The type of Managed Service Identity that should be configured on this SAP Discovery Virtual Instance. The only possible value is `UserAssigned`.
|
|
50177
|
+
*/
|
|
50178
|
+
type: pulumi.Input<string>;
|
|
50179
|
+
}
|
|
50097
50180
|
interface SingleNodeVirtualInstanceIdentity {
|
|
50098
50181
|
/**
|
|
50099
50182
|
* A list of User Assigned Managed Identity IDs to be assigned to this SAP Single Node Virtual Instance.
|