@pulumi/azure-native 3.22.0 → 3.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/databricks/accessConnector.d.ts +6 -6
- package/databricks/accessConnector.js +2 -2
- package/databricks/getAccessConnector.d.ts +8 -8
- package/databricks/getAccessConnector.js +4 -4
- package/databricks/getPrivateEndpointConnection.d.ts +12 -8
- package/databricks/getPrivateEndpointConnection.d.ts.map +1 -1
- package/databricks/getPrivateEndpointConnection.js +5 -5
- package/databricks/getVNetPeering.d.ts +15 -11
- package/databricks/getVNetPeering.d.ts.map +1 -1
- package/databricks/getVNetPeering.js +5 -5
- package/databricks/getWorkspace.d.ts +27 -23
- package/databricks/getWorkspace.d.ts.map +1 -1
- package/databricks/getWorkspace.js +5 -5
- package/databricks/privateEndpointConnection.d.ts +9 -5
- package/databricks/privateEndpointConnection.d.ts.map +1 -1
- package/databricks/privateEndpointConnection.js +6 -4
- package/databricks/vnetPeering.d.ts +14 -10
- package/databricks/vnetPeering.d.ts.map +1 -1
- package/databricks/vnetPeering.js +5 -3
- package/databricks/workspace.d.ts +37 -29
- package/databricks/workspace.d.ts.map +1 -1
- package/databricks/workspace.js +5 -6
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/types/enums/databricks/index.d.ts +114 -3
- package/types/enums/databricks/index.d.ts.map +1 -1
- package/types/enums/databricks/index.js +105 -2
- package/types/input.d.ts +42 -26
- package/types/input.d.ts.map +1 -1
- package/types/input.js +1 -1
- package/types/output.d.ts +74 -70
- package/types/output.d.ts.map +1 -1
- package/types/output.js +1 -1
package/types/output.d.ts
CHANGED
|
@@ -82663,7 +82663,7 @@ export declare namespace databricks {
|
|
|
82663
82663
|
puid: string;
|
|
82664
82664
|
}
|
|
82665
82665
|
/**
|
|
82666
|
-
* These properties lets user specify default catalog properties during workspace creation.
|
|
82666
|
+
* These properties lets user specify default catalog properties during workspace creation. Not allowed in Serverless ComputeMode workspace.
|
|
82667
82667
|
*/
|
|
82668
82668
|
interface DefaultCatalogPropertiesResponse {
|
|
82669
82669
|
/**
|
|
@@ -82684,11 +82684,11 @@ export declare namespace databricks {
|
|
|
82684
82684
|
*/
|
|
82685
82685
|
interface EncryptionEntitiesDefinitionResponse {
|
|
82686
82686
|
/**
|
|
82687
|
-
* Encryption properties for the databricks managed disks.
|
|
82687
|
+
* Encryption properties for the databricks managed disks. Not allowed in Serverless ComputeMode workspace.
|
|
82688
82688
|
*/
|
|
82689
82689
|
managedDisk?: outputs.databricks.ManagedDiskEncryptionResponse;
|
|
82690
82690
|
/**
|
|
82691
|
-
* Encryption properties for the databricks managed services.
|
|
82691
|
+
* Encryption properties for the databricks managed services. Supported in both Serverless and Hybrid ComputeMode.
|
|
82692
82692
|
*/
|
|
82693
82693
|
managedServices?: outputs.databricks.EncryptionV2Response;
|
|
82694
82694
|
}
|
|
@@ -82717,23 +82717,10 @@ export declare namespace databricks {
|
|
|
82717
82717
|
* encryptionResponseProvideDefaults sets the appropriate defaults for EncryptionResponse
|
|
82718
82718
|
*/
|
|
82719
82719
|
function encryptionResponseProvideDefaults(val: EncryptionResponse): EncryptionResponse;
|
|
82720
|
-
/**
|
|
82721
|
-
* The object that contains details of encryption used on the workspace.
|
|
82722
|
-
*/
|
|
82723
|
-
interface EncryptionV2Response {
|
|
82724
|
-
/**
|
|
82725
|
-
* The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Keyvault
|
|
82726
|
-
*/
|
|
82727
|
-
keySource: string;
|
|
82728
|
-
/**
|
|
82729
|
-
* Key Vault input properties for encryption.
|
|
82730
|
-
*/
|
|
82731
|
-
keyVaultProperties?: outputs.databricks.EncryptionV2ResponseKeyVaultProperties;
|
|
82732
|
-
}
|
|
82733
82720
|
/**
|
|
82734
82721
|
* Key Vault input properties for encryption.
|
|
82735
82722
|
*/
|
|
82736
|
-
interface
|
|
82723
|
+
interface EncryptionV2KeyVaultPropertiesResponse {
|
|
82737
82724
|
/**
|
|
82738
82725
|
* The name of KeyVault key.
|
|
82739
82726
|
*/
|
|
@@ -82747,6 +82734,19 @@ export declare namespace databricks {
|
|
|
82747
82734
|
*/
|
|
82748
82735
|
keyVersion: string;
|
|
82749
82736
|
}
|
|
82737
|
+
/**
|
|
82738
|
+
* The object that contains details of encryption used on the workspace.
|
|
82739
|
+
*/
|
|
82740
|
+
interface EncryptionV2Response {
|
|
82741
|
+
/**
|
|
82742
|
+
* The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Keyvault
|
|
82743
|
+
*/
|
|
82744
|
+
keySource: string;
|
|
82745
|
+
/**
|
|
82746
|
+
* Key Vault input properties for encryption.
|
|
82747
|
+
*/
|
|
82748
|
+
keyVaultProperties?: outputs.databricks.EncryptionV2KeyVaultPropertiesResponse;
|
|
82749
|
+
}
|
|
82750
82750
|
/**
|
|
82751
82751
|
* Status of settings related to the Enhanced Security and Compliance Add-On.
|
|
82752
82752
|
*/
|
|
@@ -82771,38 +82771,38 @@ export declare namespace databricks {
|
|
|
82771
82771
|
value?: string;
|
|
82772
82772
|
}
|
|
82773
82773
|
/**
|
|
82774
|
-
*
|
|
82774
|
+
* Key Vault input properties for encryption.
|
|
82775
82775
|
*/
|
|
82776
|
-
interface
|
|
82776
|
+
interface ManagedDiskEncryptionKeyVaultPropertiesResponse {
|
|
82777
82777
|
/**
|
|
82778
|
-
* The
|
|
82778
|
+
* The name of KeyVault key.
|
|
82779
82779
|
*/
|
|
82780
|
-
|
|
82780
|
+
keyName: string;
|
|
82781
82781
|
/**
|
|
82782
|
-
*
|
|
82782
|
+
* The URI of KeyVault.
|
|
82783
82783
|
*/
|
|
82784
|
-
|
|
82784
|
+
keyVaultUri: string;
|
|
82785
82785
|
/**
|
|
82786
|
-
*
|
|
82786
|
+
* The version of KeyVault key.
|
|
82787
82787
|
*/
|
|
82788
|
-
|
|
82788
|
+
keyVersion: string;
|
|
82789
82789
|
}
|
|
82790
82790
|
/**
|
|
82791
|
-
*
|
|
82791
|
+
* The object that contains details of encryption used on the workspace.
|
|
82792
82792
|
*/
|
|
82793
|
-
interface
|
|
82793
|
+
interface ManagedDiskEncryptionResponse {
|
|
82794
82794
|
/**
|
|
82795
|
-
* The
|
|
82795
|
+
* The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Keyvault. Not allowed in Serverless ComputeMode workspace.
|
|
82796
82796
|
*/
|
|
82797
|
-
|
|
82797
|
+
keySource: string;
|
|
82798
82798
|
/**
|
|
82799
|
-
*
|
|
82799
|
+
* Key Vault input properties for encryption.
|
|
82800
82800
|
*/
|
|
82801
|
-
|
|
82801
|
+
keyVaultProperties: outputs.databricks.ManagedDiskEncryptionKeyVaultPropertiesResponse;
|
|
82802
82802
|
/**
|
|
82803
|
-
*
|
|
82803
|
+
* Indicate whether the latest key version should be automatically used for Managed Disk Encryption.
|
|
82804
82804
|
*/
|
|
82805
|
-
|
|
82805
|
+
rotationToLatestKeyVersionEnabled?: boolean;
|
|
82806
82806
|
}
|
|
82807
82807
|
/**
|
|
82808
82808
|
* The Managed Identity details for storage account.
|
|
@@ -82845,7 +82845,7 @@ export declare namespace databricks {
|
|
|
82845
82845
|
};
|
|
82846
82846
|
}
|
|
82847
82847
|
/**
|
|
82848
|
-
* The properties of a private endpoint connection
|
|
82848
|
+
* The properties of a private endpoint connection.
|
|
82849
82849
|
*/
|
|
82850
82850
|
interface PrivateEndpointConnectionPropertiesResponse {
|
|
82851
82851
|
/**
|
|
@@ -82866,15 +82866,15 @@ export declare namespace databricks {
|
|
|
82866
82866
|
provisioningState: string;
|
|
82867
82867
|
}
|
|
82868
82868
|
/**
|
|
82869
|
-
* The private endpoint connection of a workspace
|
|
82869
|
+
* The private endpoint connection of a workspace.
|
|
82870
82870
|
*/
|
|
82871
82871
|
interface PrivateEndpointConnectionResponse {
|
|
82872
82872
|
/**
|
|
82873
|
-
*
|
|
82873
|
+
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
82874
82874
|
*/
|
|
82875
82875
|
id: string;
|
|
82876
82876
|
/**
|
|
82877
|
-
* The resource
|
|
82877
|
+
* The name of the resource
|
|
82878
82878
|
*/
|
|
82879
82879
|
name: string;
|
|
82880
82880
|
/**
|
|
@@ -82882,12 +82882,16 @@ export declare namespace databricks {
|
|
|
82882
82882
|
*/
|
|
82883
82883
|
properties: outputs.databricks.PrivateEndpointConnectionPropertiesResponse;
|
|
82884
82884
|
/**
|
|
82885
|
-
*
|
|
82885
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
82886
|
+
*/
|
|
82887
|
+
systemData: outputs.databricks.SystemDataResponse;
|
|
82888
|
+
/**
|
|
82889
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
82886
82890
|
*/
|
|
82887
82891
|
type: string;
|
|
82888
82892
|
}
|
|
82889
82893
|
/**
|
|
82890
|
-
* The private endpoint property of a private endpoint connection
|
|
82894
|
+
* The private endpoint property of a private endpoint connection.
|
|
82891
82895
|
*/
|
|
82892
82896
|
interface PrivateEndpointResponse {
|
|
82893
82897
|
/**
|
|
@@ -82896,7 +82900,7 @@ export declare namespace databricks {
|
|
|
82896
82900
|
id: string;
|
|
82897
82901
|
}
|
|
82898
82902
|
/**
|
|
82899
|
-
* The current state of a private endpoint connection
|
|
82903
|
+
* The current state of a private endpoint connection.
|
|
82900
82904
|
*/
|
|
82901
82905
|
interface PrivateLinkServiceConnectionStateResponse {
|
|
82902
82906
|
/**
|
|
@@ -82968,18 +82972,18 @@ export declare namespace databricks {
|
|
|
82968
82972
|
principalId: string;
|
|
82969
82973
|
}
|
|
82970
82974
|
/**
|
|
82971
|
-
*
|
|
82975
|
+
* The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
|
|
82972
82976
|
*/
|
|
82973
|
-
interface
|
|
82977
|
+
interface VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkResponse {
|
|
82974
82978
|
/**
|
|
82975
82979
|
* The Id of the databricks virtual network.
|
|
82976
82980
|
*/
|
|
82977
82981
|
id?: string;
|
|
82978
82982
|
}
|
|
82979
82983
|
/**
|
|
82980
|
-
*
|
|
82984
|
+
* The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
|
|
82981
82985
|
*/
|
|
82982
|
-
interface
|
|
82986
|
+
interface VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkResponse {
|
|
82983
82987
|
/**
|
|
82984
82988
|
* The Id of the remote virtual network.
|
|
82985
82989
|
*/
|
|
@@ -82992,7 +82996,7 @@ export declare namespace databricks {
|
|
|
82992
82996
|
/**
|
|
82993
82997
|
* The type of variable that this is
|
|
82994
82998
|
*/
|
|
82995
|
-
type
|
|
82999
|
+
type?: string;
|
|
82996
83000
|
/**
|
|
82997
83001
|
* The value which should be used for this field.
|
|
82998
83002
|
*/
|
|
@@ -83005,78 +83009,78 @@ export declare namespace databricks {
|
|
|
83005
83009
|
/**
|
|
83006
83010
|
* The type of variable that this is
|
|
83007
83011
|
*/
|
|
83008
|
-
type
|
|
83012
|
+
type?: string;
|
|
83009
83013
|
/**
|
|
83010
83014
|
* The value which should be used for this field.
|
|
83011
83015
|
*/
|
|
83012
83016
|
value: any;
|
|
83013
83017
|
}
|
|
83014
83018
|
/**
|
|
83015
|
-
* Custom Parameters used for
|
|
83019
|
+
* Custom Parameters used for Workspace Creation. Not allowed in Serverless ComputeMode workspace.
|
|
83016
83020
|
*/
|
|
83017
83021
|
interface WorkspaceCustomParametersResponse {
|
|
83018
83022
|
/**
|
|
83019
|
-
* The ID of a Azure Machine Learning workspace to link with Databricks workspace
|
|
83023
|
+
* The ID of a Azure Machine Learning workspace to link with Databricks workspace. Not allowed in Serverless ComputeMode workspace.
|
|
83020
83024
|
*/
|
|
83021
83025
|
amlWorkspaceId?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83022
83026
|
/**
|
|
83023
|
-
* The name of the Private Subnet within the Virtual Network
|
|
83027
|
+
* The name of the Private Subnet within the Virtual Network. Not allowed in Serverless ComputeMode workspace.
|
|
83024
83028
|
*/
|
|
83025
83029
|
customPrivateSubnetName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83026
83030
|
/**
|
|
83027
|
-
* The name of a Public Subnet within the Virtual Network
|
|
83031
|
+
* The name of a Public Subnet within the Virtual Network. Not allowed in Serverless ComputeMode workspace.
|
|
83028
83032
|
*/
|
|
83029
83033
|
customPublicSubnetName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83030
83034
|
/**
|
|
83031
|
-
* The ID of a Virtual Network where this Databricks Cluster should be created
|
|
83035
|
+
* The ID of a Virtual Network where this Databricks Cluster should be created. Not allowed in Serverless ComputeMode workspace.
|
|
83032
83036
|
*/
|
|
83033
83037
|
customVirtualNetworkId?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83034
83038
|
/**
|
|
83035
|
-
* Boolean indicating whether the public IP should be disabled. Default value is true
|
|
83039
|
+
* Boolean indicating whether the public IP should be disabled. Default value is true. Not allowed in Serverless ComputeMode workspace.
|
|
83036
83040
|
*/
|
|
83037
83041
|
enableNoPublicIp?: outputs.databricks.WorkspaceNoPublicIPBooleanParameterResponse;
|
|
83038
83042
|
/**
|
|
83039
|
-
* Contains the encryption details for Customer-Managed Key (CMK) enabled workspace.
|
|
83043
|
+
* Contains the encryption details for Customer-Managed Key (CMK) enabled workspace.Not allowed in Serverless ComputeMode workspace.
|
|
83040
83044
|
*/
|
|
83041
83045
|
encryption?: outputs.databricks.WorkspaceEncryptionParameterResponse;
|
|
83042
83046
|
/**
|
|
83043
|
-
* Name of the outbound Load Balancer Backend Pool for Secure Cluster Connectivity (No Public IP).
|
|
83047
|
+
* Name of the outbound Load Balancer Backend Pool for Secure Cluster Connectivity (No Public IP). Not allowed in Serverless ComputeMode workspace.
|
|
83044
83048
|
*/
|
|
83045
83049
|
loadBalancerBackendPoolName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83046
83050
|
/**
|
|
83047
|
-
* Resource URI of Outbound Load balancer for Secure Cluster Connectivity (No Public IP) workspace.
|
|
83051
|
+
* Resource URI of Outbound Load balancer for Secure Cluster Connectivity (No Public IP) workspace. Not allowed in Serverless ComputeMode workspace.
|
|
83048
83052
|
*/
|
|
83049
83053
|
loadBalancerId?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83050
83054
|
/**
|
|
83051
|
-
* Name of the NAT gateway for Secure Cluster Connectivity (No Public IP) workspace subnets.
|
|
83055
|
+
* Name of the NAT gateway for Secure Cluster Connectivity (No Public IP) workspace subnets. Not allowed in Serverless ComputeMode workspace.
|
|
83052
83056
|
*/
|
|
83053
83057
|
natGatewayName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83054
83058
|
/**
|
|
83055
|
-
* Prepare the workspace for encryption. Enables the Managed Identity for managed storage account.
|
|
83059
|
+
* Prepare the workspace for encryption. Enables the Managed Identity for managed storage account. Not allowed in Serverless ComputeMode workspace.
|
|
83056
83060
|
*/
|
|
83057
83061
|
prepareEncryption?: outputs.databricks.WorkspaceCustomBooleanParameterResponse;
|
|
83058
83062
|
/**
|
|
83059
|
-
* Name of the Public IP for No Public IP workspace with managed vNet.
|
|
83063
|
+
* Name of the Public IP for No Public IP workspace with managed vNet. Not allowed in Serverless ComputeMode workspace.
|
|
83060
83064
|
*/
|
|
83061
83065
|
publicIpName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83062
83066
|
/**
|
|
83063
|
-
* A boolean indicating whether or not the DBFS root file system will be enabled with secondary layer of encryption with platform managed keys for data at rest.
|
|
83067
|
+
* A boolean indicating whether or not the DBFS root file system will be enabled with secondary layer of encryption with platform managed keys for data at rest. Not allowed in Serverless ComputeMode workspace.
|
|
83064
83068
|
*/
|
|
83065
83069
|
requireInfrastructureEncryption?: outputs.databricks.WorkspaceCustomBooleanParameterResponse;
|
|
83066
83070
|
/**
|
|
83067
|
-
* Tags applied to resources under Managed resource group. These can be updated by updating tags at workspace level.
|
|
83071
|
+
* Tags applied to resources under Managed resource group. These can be updated by updating tags at workspace level. Not allowed in Serverless ComputeMode workspace.
|
|
83068
83072
|
*/
|
|
83069
83073
|
resourceTags: outputs.databricks.WorkspaceCustomObjectParameterResponse;
|
|
83070
83074
|
/**
|
|
83071
|
-
* Default DBFS storage account name.
|
|
83075
|
+
* Default DBFS storage account name. Not allowed in Serverless ComputeMode workspace.
|
|
83072
83076
|
*/
|
|
83073
83077
|
storageAccountName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83074
83078
|
/**
|
|
83075
|
-
* Storage account SKU name, ex: Standard_GRS, Standard_LRS. Refer https://aka.ms/storageskus for valid inputs.
|
|
83079
|
+
* Storage account SKU name, ex: Standard_GRS, Standard_LRS. Refer https://aka.ms/storageskus for valid inputs. Not allowed in Serverless ComputeMode workspace.
|
|
83076
83080
|
*/
|
|
83077
83081
|
storageAccountSkuName?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83078
83082
|
/**
|
|
83079
|
-
* Address prefix for Managed virtual network. Default value for this input is 10.139.
|
|
83083
|
+
* Address prefix for Managed virtual network. Default value for this input is 10.139. Not allowed in Serverless ComputeMode workspace.
|
|
83080
83084
|
*/
|
|
83081
83085
|
vnetAddressPrefix?: outputs.databricks.WorkspaceCustomStringParameterResponse;
|
|
83082
83086
|
}
|
|
@@ -83091,7 +83095,7 @@ export declare namespace databricks {
|
|
|
83091
83095
|
/**
|
|
83092
83096
|
* The type of variable that this is
|
|
83093
83097
|
*/
|
|
83094
|
-
type
|
|
83098
|
+
type?: string;
|
|
83095
83099
|
/**
|
|
83096
83100
|
* The value which should be used for this field.
|
|
83097
83101
|
*/
|
|
@@ -83104,7 +83108,7 @@ export declare namespace databricks {
|
|
|
83104
83108
|
/**
|
|
83105
83109
|
* The type of variable that this is
|
|
83106
83110
|
*/
|
|
83107
|
-
type
|
|
83111
|
+
type?: string;
|
|
83108
83112
|
/**
|
|
83109
83113
|
* The value which should be used for this field.
|
|
83110
83114
|
*/
|
|
@@ -83121,16 +83125,16 @@ export declare namespace databricks {
|
|
|
83121
83125
|
/**
|
|
83122
83126
|
* The type of variable that this is
|
|
83123
83127
|
*/
|
|
83124
|
-
type
|
|
83128
|
+
type?: string;
|
|
83125
83129
|
/**
|
|
83126
83130
|
* The value which should be used for this field.
|
|
83127
83131
|
*/
|
|
83128
83132
|
value: boolean;
|
|
83129
83133
|
}
|
|
83130
83134
|
/**
|
|
83131
|
-
* Access Connector Resource that is going to be associated with Databricks Workspace
|
|
83135
|
+
* Access Connector Resource that is going to be associated with Databricks Workspace. Not allowed in Serverless ComputeMode workspace.
|
|
83132
83136
|
*/
|
|
83133
|
-
interface
|
|
83137
|
+
interface WorkspacePropertiesAccessConnectorResponse {
|
|
83134
83138
|
/**
|
|
83135
83139
|
* The resource ID of Azure Databricks Access Connector Resource.
|
|
83136
83140
|
*/
|
|
@@ -83145,9 +83149,9 @@ export declare namespace databricks {
|
|
|
83145
83149
|
userAssignedIdentityId?: string;
|
|
83146
83150
|
}
|
|
83147
83151
|
/**
|
|
83148
|
-
* Encryption properties for databricks workspace
|
|
83152
|
+
* Encryption properties for databricks workspace. Supported in both Serverless and Hybrid ComputeMode workspace.
|
|
83149
83153
|
*/
|
|
83150
|
-
interface
|
|
83154
|
+
interface WorkspacePropertiesEncryptionResponse {
|
|
83151
83155
|
/**
|
|
83152
83156
|
* Encryption entities definition for the workspace.
|
|
83153
83157
|
*/
|