@pulumi/azure 5.85.0-alpha.1721716414 → 5.85.0-alpha.1721738588
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/cdn/frontdoorRouteDisableLinkToDefaultDomain.d.ts +0 -12
- package/cdn/frontdoorRouteDisableLinkToDefaultDomain.js.map +1 -1
- package/communication/emailServiceDomain.d.ts +22 -0
- package/communication/emailServiceDomain.js +22 -0
- package/communication/emailServiceDomain.js.map +1 -1
- package/containerservice/getClusterNodePool.d.ts +2 -0
- package/containerservice/getClusterNodePool.js.map +1 -1
- package/databricks/workspaceCustomerManagedKey.d.ts +0 -6
- package/databricks/workspaceCustomerManagedKey.js.map +1 -1
- package/eventhub/eventHubNamespace.d.ts +9 -3
- package/eventhub/eventHubNamespace.js.map +1 -1
- package/eventhub/getEventhubNamespace.d.ts +2 -0
- package/eventhub/getEventhubNamespace.js.map +1 -1
- package/eventhub/getNamespace.d.ts +2 -0
- package/eventhub/getNamespace.js.map +1 -1
- package/eventhub/getNamespaceAuthorizationRule.d.ts +2 -2
- package/eventhub/getNamespaceAuthorizationRule.js +2 -2
- package/eventhub/getServiceBusNamespace.d.ts +2 -0
- package/eventhub/getServiceBusNamespace.js.map +1 -1
- package/eventhub/namespace.d.ts +7 -1
- package/eventhub/namespace.js.map +1 -1
- package/kusto/cluster.d.ts +3 -3
- package/lb/rule.d.ts +4 -4
- package/network/getSubnet.d.ts +6 -0
- package/network/getSubnet.js.map +1 -1
- package/package.json +2 -2
- package/servicebus/getNamespace.d.ts +2 -0
- package/servicebus/getNamespace.js.map +1 -1
- package/servicebus/namespace.d.ts +7 -1
- package/servicebus/namespace.js.map +1 -1
- package/storage/account.d.ts +54 -42
- package/storage/account.js.map +1 -1
- package/storage/getAccount.d.ts +4 -0
- package/storage/getAccount.js.map +1 -1
- package/types/input.d.ts +12 -12
- package/types/output.d.ts +24 -12
package/types/output.d.ts
CHANGED
|
@@ -3716,7 +3716,7 @@ export declare namespace appservice {
|
|
|
3716
3716
|
*/
|
|
3717
3717
|
remoteDebuggingEnabled?: boolean;
|
|
3718
3718
|
/**
|
|
3719
|
-
* Which version of Visual Studio should the Remote Debugger be compatible with? Possible values are `VS2017`
|
|
3719
|
+
* Which version of Visual Studio should the Remote Debugger be compatible with? Possible values are `VS2017`, `VS2019`, `VS2022`.
|
|
3720
3720
|
*/
|
|
3721
3721
|
remoteDebuggingVersion: string;
|
|
3722
3722
|
/**
|
|
@@ -14099,7 +14099,7 @@ export declare namespace appservice {
|
|
|
14099
14099
|
*/
|
|
14100
14100
|
remoteDebuggingEnabled?: boolean;
|
|
14101
14101
|
/**
|
|
14102
|
-
* Which version of Visual Studio should the Remote Debugger be compatible with? Possible values are `VS2017` and `
|
|
14102
|
+
* Which version of Visual Studio should the Remote Debugger be compatible with? Possible values are `VS2017`, `VS2019`, and `VS2022`.
|
|
14103
14103
|
*/
|
|
14104
14104
|
remoteDebuggingVersion: string;
|
|
14105
14105
|
/**
|
|
@@ -30015,16 +30015,21 @@ export declare namespace containerservice {
|
|
|
30015
30015
|
subnetName: string;
|
|
30016
30016
|
}
|
|
30017
30017
|
interface GetKubernetesClusterAgentPoolProfile {
|
|
30018
|
+
autoScalingEnabled: boolean;
|
|
30018
30019
|
/**
|
|
30019
30020
|
* The number of Agents (VMs) in the Pool.
|
|
30020
30021
|
*/
|
|
30021
30022
|
count: number;
|
|
30022
30023
|
/**
|
|
30023
30024
|
* If the auto-scaler is enabled.
|
|
30025
|
+
*
|
|
30026
|
+
* @deprecated This property is deprecated and will be removed in v4.0 of the AzureRM Provider in favour of the `autoScalingEnabled` property.
|
|
30024
30027
|
*/
|
|
30025
30028
|
enableAutoScaling: boolean;
|
|
30026
30029
|
/**
|
|
30027
30030
|
* If the Public IPs for the nodes in this Agent Pool are enabled.
|
|
30031
|
+
*
|
|
30032
|
+
* @deprecated This property is deprecated and will be removed in v4.0 of the AzureRM Provider in favour of the `nodePublicIpEnabled` property.
|
|
30028
30033
|
*/
|
|
30029
30034
|
enableNodePublicIp: boolean;
|
|
30030
30035
|
/**
|
|
@@ -30046,6 +30051,7 @@ export declare namespace containerservice {
|
|
|
30046
30051
|
nodeLabels: {
|
|
30047
30052
|
[key: string]: string;
|
|
30048
30053
|
};
|
|
30054
|
+
nodePublicIpEnabled: boolean;
|
|
30049
30055
|
/**
|
|
30050
30056
|
* Resource ID for the Public IP Addresses Prefix for the nodes in this Agent Pool.
|
|
30051
30057
|
*/
|
|
@@ -30115,14 +30121,20 @@ export declare namespace containerservice {
|
|
|
30115
30121
|
azureRbacEnabled: boolean;
|
|
30116
30122
|
/**
|
|
30117
30123
|
* The Client ID of an Azure Active Directory Application.
|
|
30124
|
+
*
|
|
30125
|
+
* @deprecated This property is deprecated and will be removed in v4.0 of the AzureRM Provider.
|
|
30118
30126
|
*/
|
|
30119
30127
|
clientAppId: string;
|
|
30120
30128
|
/**
|
|
30121
30129
|
* Is the Azure Active Directory integration Managed, meaning that Azure will create/manage the Service Principal used for integration?
|
|
30130
|
+
*
|
|
30131
|
+
* @deprecated This property is deprecated and will be removed in v4.0 of the AzureRM Provider.
|
|
30122
30132
|
*/
|
|
30123
30133
|
managed: boolean;
|
|
30124
30134
|
/**
|
|
30125
30135
|
* The Server ID of an Azure Active Directory Application.
|
|
30136
|
+
*
|
|
30137
|
+
* @deprecated This property is deprecated and will be removed in v4.0 of the AzureRM Provider.
|
|
30126
30138
|
*/
|
|
30127
30139
|
serverAppId: string;
|
|
30128
30140
|
/**
|
|
@@ -63097,13 +63109,13 @@ export declare namespace storage {
|
|
|
63097
63109
|
/**
|
|
63098
63110
|
* Is the blob service properties for change feed events enabled? Default to `false`.
|
|
63099
63111
|
*
|
|
63100
|
-
* > **
|
|
63112
|
+
* > **Note:** This field cannot be configured when `kind` is set to `Storage` (V1).
|
|
63101
63113
|
*/
|
|
63102
63114
|
changeFeedEnabled?: boolean;
|
|
63103
63115
|
/**
|
|
63104
63116
|
* The duration of change feed events retention in days. The possible values are between 1 and 146000 days (400 years). Setting this to null (or omit this in the configuration file) indicates an infinite retention of the change feed.
|
|
63105
63117
|
*
|
|
63106
|
-
* > **
|
|
63118
|
+
* > **Note:** This field cannot be configured when `kind` is set to `Storage` (V1).
|
|
63107
63119
|
*/
|
|
63108
63120
|
changeFeedRetentionInDays?: number;
|
|
63109
63121
|
/**
|
|
@@ -63125,21 +63137,21 @@ export declare namespace storage {
|
|
|
63125
63137
|
/**
|
|
63126
63138
|
* Is the last access time based tracking enabled? Default to `false`.
|
|
63127
63139
|
*
|
|
63128
|
-
* > **
|
|
63140
|
+
* > **Note:** This field cannot be configured when `kind` is set to `Storage` (V1).
|
|
63129
63141
|
*/
|
|
63130
63142
|
lastAccessTimeEnabled?: boolean;
|
|
63131
63143
|
/**
|
|
63132
63144
|
* A `restorePolicy` block as defined below. This must be used together with `deleteRetentionPolicy` set, `versioningEnabled` and `changeFeedEnabled` set to `true`.
|
|
63133
63145
|
*
|
|
63134
|
-
* > **
|
|
63146
|
+
* > **Note:** This field cannot be configured when `kind` is set to `Storage` (V1).
|
|
63135
63147
|
*
|
|
63136
|
-
* > **
|
|
63148
|
+
* > **Note:** `restorePolicy` can not be configured when `dnsEndpointType` is `AzureDnsZone`.
|
|
63137
63149
|
*/
|
|
63138
63150
|
restorePolicy?: outputs.storage.AccountBlobPropertiesRestorePolicy;
|
|
63139
63151
|
/**
|
|
63140
63152
|
* Is versioning enabled? Default to `false`.
|
|
63141
63153
|
*
|
|
63142
|
-
* > **
|
|
63154
|
+
* > **Note:** This field cannot be configured when `kind` is set to `Storage` (V1).
|
|
63143
63155
|
*/
|
|
63144
63156
|
versioningEnabled?: boolean;
|
|
63145
63157
|
}
|
|
@@ -63180,7 +63192,7 @@ export declare namespace storage {
|
|
|
63180
63192
|
/**
|
|
63181
63193
|
* Indicates whether permanent deletion of the soft deleted blob versions and snapshots is allowed. Defaults to `false`.
|
|
63182
63194
|
*
|
|
63183
|
-
* > **
|
|
63195
|
+
* > **Note:** `permanentDeleteEnabled` cannot be set to true if a `restorePolicy` block is defined.
|
|
63184
63196
|
*/
|
|
63185
63197
|
permanentDeleteEnabled?: boolean;
|
|
63186
63198
|
}
|
|
@@ -63212,7 +63224,7 @@ export declare namespace storage {
|
|
|
63212
63224
|
/**
|
|
63213
63225
|
* The ID of a user assigned identity.
|
|
63214
63226
|
*
|
|
63215
|
-
* > **
|
|
63227
|
+
* > **Note:** `customerManagedKey` can only be set when the `accountKind` is set to `StorageV2` or `accountTier` set to `Premium`, and the identity type is `UserAssigned`.
|
|
63216
63228
|
*/
|
|
63217
63229
|
userAssignedIdentityId: string;
|
|
63218
63230
|
}
|
|
@@ -63220,7 +63232,7 @@ export declare namespace storage {
|
|
|
63220
63232
|
/**
|
|
63221
63233
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Storage Account.
|
|
63222
63234
|
*
|
|
63223
|
-
* > **
|
|
63235
|
+
* > **Note:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
|
|
63224
63236
|
*
|
|
63225
63237
|
* > The assigned `principalId` and `tenantId` can be retrieved after the identity `type` has been set to `SystemAssigned` and Storage Account has been created. More details are available below.
|
|
63226
63238
|
*/
|
|
@@ -63270,7 +63282,7 @@ export declare namespace storage {
|
|
|
63270
63282
|
*
|
|
63271
63283
|
* > **Note:** If specifying `networkRules`, one of either `ipRules` or `virtualNetworkSubnetIds` must be specified and `defaultAction` must be set to `Deny`.
|
|
63272
63284
|
*
|
|
63273
|
-
* > **
|
|
63285
|
+
* > **Note:** Network Rules can be defined either directly on the `azure.storage.Account` resource, or using the `azure.storage.AccountNetworkRules` resource - but the two cannot be used together. If both are used against the same Storage Account, spurious changes will occur. When managing Network Rules using this resource, to change from a `defaultAction` of `Deny` to `Allow` requires defining, rather than removing, the block.
|
|
63274
63286
|
*
|
|
63275
63287
|
* > **Note:** The prefix of `ipRules` must be between 0 and 30 and only supports public IP addresses.
|
|
63276
63288
|
*
|