@pulumi/databricks 0.4.1 → 1.0.1
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/catalog.d.ts +3 -3
- package/cluster.d.ts +12 -12
- package/externalLocation.d.ts +3 -3
- package/getAwsCrossAccountPolicy.d.ts +1 -1
- package/getAwsCrossAccountPolicy.js +1 -1
- package/getCurrentUser.d.ts +1 -0
- package/getCurrentUser.js +1 -0
- package/getCurrentUser.js.map +1 -1
- package/getNodeType.d.ts +3 -0
- package/getNodeType.js +1 -0
- package/getNodeType.js.map +1 -1
- package/getServicePrincipal.d.ts +117 -0
- package/getServicePrincipal.js +43 -0
- package/getServicePrincipal.js.map +1 -0
- package/getServicePrincipals.d.ts +57 -0
- package/getServicePrincipals.js +38 -0
- package/getServicePrincipals.js.map +1 -0
- package/getUser.d.ts +1 -0
- package/getUser.js.map +1 -1
- package/gitCredential.d.ts +0 -9
- package/gitCredential.js.map +1 -1
- package/grants.d.ts +3 -0
- package/grants.js +2 -0
- package/grants.js.map +1 -1
- package/index.d.ts +2 -4
- package/index.js +2 -20
- package/index.js.map +1 -1
- package/instanceProfile.d.ts +2 -2
- package/instanceProfile.js +2 -2
- package/ipAccessList.d.ts +3 -3
- package/library.d.ts +3 -3
- package/library.js +3 -3
- package/metastore.d.ts +60 -3
- package/metastore.js +20 -0
- package/metastore.js.map +1 -1
- package/metastoreDataAccess.d.ts +3 -0
- package/metastoreDataAccess.js +2 -0
- package/metastoreDataAccess.js.map +1 -1
- package/mlflowWebhook.d.ts +3 -3
- package/mwsLogDelivery.d.ts +12 -1
- package/mwsLogDelivery.js +3 -1
- package/mwsLogDelivery.js.map +1 -1
- package/mwsNetworks.d.ts +3 -3
- package/oboToken.d.ts +3 -16
- package/oboToken.js +0 -13
- package/oboToken.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/permissions.d.ts +86 -2
- package/permissions.js +22 -2
- package/permissions.js.map +1 -1
- package/pipeline.d.ts +60 -16
- package/pipeline.js +8 -7
- package/pipeline.js.map +1 -1
- package/repo.d.ts +6 -6
- package/schema.d.ts +3 -3
- package/sqlDashboard.d.ts +5 -1
- package/sqlDashboard.js +5 -1
- package/sqlDashboard.js.map +1 -1
- package/sqlEndpoint.d.ts +3 -3
- package/sqlGlobalConfig.d.ts +1 -1
- package/sqlGlobalConfig.js +1 -1
- package/sqlQuery.d.ts +5 -1
- package/sqlQuery.js +5 -1
- package/sqlQuery.js.map +1 -1
- package/sqlVisualization.d.ts +5 -1
- package/sqlVisualization.js +5 -1
- package/sqlVisualization.js.map +1 -1
- package/sqlWidget.d.ts +5 -1
- package/sqlWidget.js +5 -1
- package/sqlWidget.js.map +1 -1
- package/storageCredential.d.ts +15 -3
- package/storageCredential.js +13 -3
- package/storageCredential.js.map +1 -1
- package/table.d.ts +3 -3
- package/token.d.ts +1 -1
- package/token.js +1 -1
- package/types/input.d.ts +55 -5
- package/types/output.d.ts +55 -5
- package/user.d.ts +1 -1
- package/user.js +1 -1
- package/userInstanceProfile.d.ts +1 -1
- package/userInstanceProfile.js +1 -1
- package/userRole.d.ts +1 -1
- package/userRole.js +1 -1
- package/workspaceConf.d.ts +3 -3
- package/awsS3Mount.d.ts +0 -50
- package/awsS3Mount.js +0 -63
- package/awsS3Mount.js.map +0 -1
- package/azureAdlsGen1Mount.d.ts +0 -65
- package/azureAdlsGen1Mount.js +0 -85
- package/azureAdlsGen1Mount.js.map +0 -1
- package/azureAdlsGen2Mount.d.ts +0 -68
- package/azureAdlsGen2Mount.js +0 -93
- package/azureAdlsGen2Mount.js.map +0 -1
- package/azureBlobMount.d.ts +0 -62
- package/azureBlobMount.js +0 -83
- package/azureBlobMount.js.map +0 -1
package/types/output.d.ts
CHANGED
|
@@ -122,7 +122,7 @@ export interface InstancePoolAwsAttributes {
|
|
|
122
122
|
*/
|
|
123
123
|
spotBidPricePercent?: number;
|
|
124
124
|
/**
|
|
125
|
-
* (String) Identifier for the availability zone/datacenter in which the instance pool resides. This string is of
|
|
125
|
+
* (String) Identifier for the availability zone/datacenter in which the instance pool resides. This string is of the form like `"us-west-2a"`. The provided availability zone must be in the same region as the Databricks deployment. For example, `"us-west-2a"` is not a valid zone ID if the Databricks deployment resides in the `"us-east-1"` region. This is an optional field. If not specified, a default zone is used. You can find the list of available zones as well as the default value by using the [List Zones API](https://docs.databricks.com/dev-tools/api/latest/clusters.html#clusterclusterservicelistavailablezones).
|
|
126
126
|
*/
|
|
127
127
|
zoneId: string;
|
|
128
128
|
}
|
|
@@ -132,7 +132,7 @@ export interface InstancePoolAzureAttributes {
|
|
|
132
132
|
*/
|
|
133
133
|
availability?: string;
|
|
134
134
|
/**
|
|
135
|
-
* The max price for Azure spot instances. Use `-1` to specify lowest price.
|
|
135
|
+
* The max price for Azure spot instances. Use `-1` to specify the lowest price.
|
|
136
136
|
*/
|
|
137
137
|
spotBidMaxPrice?: number;
|
|
138
138
|
}
|
|
@@ -539,6 +539,7 @@ export interface JobSparkSubmitTask {
|
|
|
539
539
|
parameters?: string[];
|
|
540
540
|
}
|
|
541
541
|
export interface JobTask {
|
|
542
|
+
dbtTask?: outputs.JobTaskDbtTask;
|
|
542
543
|
dependsOns?: outputs.JobTaskDependsOn[];
|
|
543
544
|
description?: string;
|
|
544
545
|
/**
|
|
@@ -579,12 +580,18 @@ export interface JobTask {
|
|
|
579
580
|
sparkJarTask?: outputs.JobTaskSparkJarTask;
|
|
580
581
|
sparkPythonTask?: outputs.JobTaskSparkPythonTask;
|
|
581
582
|
sparkSubmitTask?: outputs.JobTaskSparkSubmitTask;
|
|
583
|
+
sqlTask?: outputs.JobTaskSqlTask;
|
|
582
584
|
taskKey?: string;
|
|
583
585
|
/**
|
|
584
586
|
* (Integer) An optional timeout applied to each run of this job. The default behavior is to have no timeout.
|
|
585
587
|
*/
|
|
586
588
|
timeoutSeconds?: number;
|
|
587
589
|
}
|
|
590
|
+
export interface JobTaskDbtTask {
|
|
591
|
+
commands: string[];
|
|
592
|
+
projectDirectory?: string;
|
|
593
|
+
schema?: string;
|
|
594
|
+
}
|
|
588
595
|
export interface JobTaskDependsOn {
|
|
589
596
|
taskKey?: string;
|
|
590
597
|
}
|
|
@@ -804,6 +811,27 @@ export interface JobTaskSparkSubmitTask {
|
|
|
804
811
|
*/
|
|
805
812
|
parameters?: string[];
|
|
806
813
|
}
|
|
814
|
+
export interface JobTaskSqlTask {
|
|
815
|
+
alert?: outputs.JobTaskSqlTaskAlert;
|
|
816
|
+
dashboard?: outputs.JobTaskSqlTaskDashboard;
|
|
817
|
+
/**
|
|
818
|
+
* Parameters for the task
|
|
819
|
+
*/
|
|
820
|
+
parameters?: {
|
|
821
|
+
[key: string]: any;
|
|
822
|
+
};
|
|
823
|
+
query?: outputs.JobTaskSqlTaskQuery;
|
|
824
|
+
warehouseId?: string;
|
|
825
|
+
}
|
|
826
|
+
export interface JobTaskSqlTaskAlert {
|
|
827
|
+
alertId: string;
|
|
828
|
+
}
|
|
829
|
+
export interface JobTaskSqlTaskDashboard {
|
|
830
|
+
dashboardId: string;
|
|
831
|
+
}
|
|
832
|
+
export interface JobTaskSqlTaskQuery {
|
|
833
|
+
queryId: string;
|
|
834
|
+
}
|
|
807
835
|
export interface LibraryCran {
|
|
808
836
|
package: string;
|
|
809
837
|
repo?: string;
|
|
@@ -823,6 +851,12 @@ export interface MetastoreDataAccessAwsIamRole {
|
|
|
823
851
|
*/
|
|
824
852
|
roleArn: string;
|
|
825
853
|
}
|
|
854
|
+
export interface MetastoreDataAccessAzureManagedIdentity {
|
|
855
|
+
/**
|
|
856
|
+
* The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
|
|
857
|
+
*/
|
|
858
|
+
accessConnectorId: string;
|
|
859
|
+
}
|
|
826
860
|
export interface MetastoreDataAccessAzureServicePrincipal {
|
|
827
861
|
/**
|
|
828
862
|
* The application ID of the application registration within the referenced AAD tenant
|
|
@@ -940,7 +974,8 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
940
974
|
}
|
|
941
975
|
export interface MwsWorkspacesNetwork {
|
|
942
976
|
gcpCommonNetworkConfig: outputs.MwsWorkspacesNetworkGcpCommonNetworkConfig;
|
|
943
|
-
gcpManagedNetworkConfig
|
|
977
|
+
gcpManagedNetworkConfig?: outputs.MwsWorkspacesNetworkGcpManagedNetworkConfig;
|
|
978
|
+
networkId?: string;
|
|
944
979
|
}
|
|
945
980
|
export interface MwsWorkspacesNetworkGcpCommonNetworkConfig {
|
|
946
981
|
gkeClusterMasterIpRange: string;
|
|
@@ -959,16 +994,19 @@ export interface MwsWorkspacesToken {
|
|
|
959
994
|
}
|
|
960
995
|
export interface PermissionsAccessControl {
|
|
961
996
|
/**
|
|
962
|
-
* name of the group
|
|
997
|
+
* name of the group. We recommend setting permissions on groups.
|
|
963
998
|
*/
|
|
964
999
|
groupName?: string;
|
|
965
1000
|
/**
|
|
966
1001
|
* permission level according to specific resource. See examples above for the reference.
|
|
967
1002
|
*/
|
|
968
1003
|
permissionLevel: string;
|
|
1004
|
+
/**
|
|
1005
|
+
* Application ID of the service_principal.
|
|
1006
|
+
*/
|
|
969
1007
|
servicePrincipalName?: string;
|
|
970
1008
|
/**
|
|
971
|
-
* name of the user
|
|
1009
|
+
* name of the user.
|
|
972
1010
|
*/
|
|
973
1011
|
userName?: string;
|
|
974
1012
|
}
|
|
@@ -979,7 +1017,9 @@ export interface PipelineCluster {
|
|
|
979
1017
|
customTags?: {
|
|
980
1018
|
[key: string]: any;
|
|
981
1019
|
};
|
|
1020
|
+
driverInstancePoolId?: string;
|
|
982
1021
|
driverNodeTypeId: string;
|
|
1022
|
+
gcpAttributes?: outputs.PipelineClusterGcpAttributes;
|
|
983
1023
|
initScripts?: outputs.PipelineClusterInitScript[];
|
|
984
1024
|
instancePoolId?: string;
|
|
985
1025
|
label?: string;
|
|
@@ -998,6 +1038,7 @@ export interface PipelineClusterAutoscale {
|
|
|
998
1038
|
minWorkers?: number;
|
|
999
1039
|
}
|
|
1000
1040
|
export interface PipelineClusterAwsAttributes {
|
|
1041
|
+
firstOnDemand?: number;
|
|
1001
1042
|
instanceProfileArn?: string;
|
|
1002
1043
|
zoneId?: string;
|
|
1003
1044
|
}
|
|
@@ -1017,6 +1058,9 @@ export interface PipelineClusterClusterLogConfS3 {
|
|
|
1017
1058
|
kmsKey?: string;
|
|
1018
1059
|
region?: string;
|
|
1019
1060
|
}
|
|
1061
|
+
export interface PipelineClusterGcpAttributes {
|
|
1062
|
+
googleServiceAccount?: string;
|
|
1063
|
+
}
|
|
1020
1064
|
export interface PipelineClusterInitScript {
|
|
1021
1065
|
dbfs?: outputs.PipelineClusterInitScriptDbfs;
|
|
1022
1066
|
file?: outputs.PipelineClusterInitScriptFile;
|
|
@@ -1194,6 +1238,12 @@ export interface StorageCredentialAwsIamRole {
|
|
|
1194
1238
|
*/
|
|
1195
1239
|
roleArn: string;
|
|
1196
1240
|
}
|
|
1241
|
+
export interface StorageCredentialAzureManagedIdentity {
|
|
1242
|
+
/**
|
|
1243
|
+
* The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
|
|
1244
|
+
*/
|
|
1245
|
+
accessConnectorId: string;
|
|
1246
|
+
}
|
|
1197
1247
|
export interface StorageCredentialAzureServicePrincipal {
|
|
1198
1248
|
/**
|
|
1199
1249
|
* The application ID of the application registration within the referenced AAD tenant
|
package/user.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
14
14
|
* * databricks.GroupInstanceProfile to attach databricks.InstanceProfile (AWS) to databricks_group.
|
|
15
15
|
* * databricksGroupMember to attach users and groups as group members.
|
|
16
16
|
* * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
|
|
17
|
-
* * databricks.User data to
|
|
17
|
+
* * databricks.User data to retrieve information about databricks_user.
|
|
18
18
|
*
|
|
19
19
|
* ## Import
|
|
20
20
|
*
|
package/user.js
CHANGED
|
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
|
|
|
20
20
|
* * databricks.GroupInstanceProfile to attach databricks.InstanceProfile (AWS) to databricks_group.
|
|
21
21
|
* * databricksGroupMember to attach users and groups as group members.
|
|
22
22
|
* * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
|
|
23
|
-
* * databricks.User data to
|
|
23
|
+
* * databricks.User data to retrieve information about databricks_user.
|
|
24
24
|
*
|
|
25
25
|
* ## Import
|
|
26
26
|
*
|
package/userInstanceProfile.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
26
26
|
* * databricksGroupMember to attach users and groups as group members.
|
|
27
27
|
* * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
|
|
28
28
|
* * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
|
|
29
|
-
* * databricks.User data to
|
|
29
|
+
* * databricks.User data to retrieve information about databricks_user.
|
|
30
30
|
*
|
|
31
31
|
* ## Import
|
|
32
32
|
*
|
package/userInstanceProfile.js
CHANGED
|
@@ -32,7 +32,7 @@ const utilities = require("./utilities");
|
|
|
32
32
|
* * databricksGroupMember to attach users and groups as group members.
|
|
33
33
|
* * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
|
|
34
34
|
* * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
|
|
35
|
-
* * databricks.User data to
|
|
35
|
+
* * databricks.User data to retrieve information about databricks_user.
|
|
36
36
|
*
|
|
37
37
|
* ## Import
|
|
38
38
|
*
|
package/userRole.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
39
39
|
* * databricksGroupMember to attach users and groups as group members.
|
|
40
40
|
* * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
|
|
41
41
|
* * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
|
|
42
|
-
* * databricks.User data to
|
|
42
|
+
* * databricks.User data to retrieve information about databricks_user.
|
|
43
43
|
*
|
|
44
44
|
* ## Import
|
|
45
45
|
*
|
package/userRole.js
CHANGED
|
@@ -45,7 +45,7 @@ const utilities = require("./utilities");
|
|
|
45
45
|
* * databricksGroupMember to attach users and groups as group members.
|
|
46
46
|
* * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
|
|
47
47
|
* * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
|
|
48
|
-
* * databricks.User data to
|
|
48
|
+
* * databricks.User data to retrieve information about databricks_user.
|
|
49
49
|
*
|
|
50
50
|
* ## Import
|
|
51
51
|
*
|
package/workspaceConf.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export declare class WorkspaceConf extends pulumi.CustomResource {
|
|
|
38
38
|
*/
|
|
39
39
|
static isInstance(obj: any): obj is WorkspaceConf;
|
|
40
40
|
/**
|
|
41
|
-
* Key-value map of strings
|
|
41
|
+
* Key-value map of strings that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
|
|
42
42
|
*/
|
|
43
43
|
readonly customConfig: pulumi.Output<{
|
|
44
44
|
[key: string]: any;
|
|
@@ -57,7 +57,7 @@ export declare class WorkspaceConf extends pulumi.CustomResource {
|
|
|
57
57
|
*/
|
|
58
58
|
export interface WorkspaceConfState {
|
|
59
59
|
/**
|
|
60
|
-
* Key-value map of strings
|
|
60
|
+
* Key-value map of strings that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
|
|
61
61
|
*/
|
|
62
62
|
customConfig?: pulumi.Input<{
|
|
63
63
|
[key: string]: any;
|
|
@@ -68,7 +68,7 @@ export interface WorkspaceConfState {
|
|
|
68
68
|
*/
|
|
69
69
|
export interface WorkspaceConfArgs {
|
|
70
70
|
/**
|
|
71
|
-
* Key-value map of strings
|
|
71
|
+
* Key-value map of strings that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
|
|
72
72
|
*/
|
|
73
73
|
customConfig?: pulumi.Input<{
|
|
74
74
|
[key: string]: any;
|
package/awsS3Mount.d.ts
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
export declare class AwsS3Mount extends pulumi.CustomResource {
|
|
3
|
-
/**
|
|
4
|
-
* Get an existing AwsS3Mount resource's state with the given name, ID, and optional extra
|
|
5
|
-
* properties used to qualify the lookup.
|
|
6
|
-
*
|
|
7
|
-
* @param name The _unique_ name of the resulting resource.
|
|
8
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
9
|
-
* @param state Any extra arguments used during the lookup.
|
|
10
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
11
|
-
*/
|
|
12
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AwsS3MountState, opts?: pulumi.CustomResourceOptions): AwsS3Mount;
|
|
13
|
-
/**
|
|
14
|
-
* Returns true if the given object is an instance of AwsS3Mount. This is designed to work even
|
|
15
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
16
|
-
*/
|
|
17
|
-
static isInstance(obj: any): obj is AwsS3Mount;
|
|
18
|
-
readonly clusterId: pulumi.Output<string>;
|
|
19
|
-
readonly instanceProfile: pulumi.Output<string | undefined>;
|
|
20
|
-
readonly mountName: pulumi.Output<string>;
|
|
21
|
-
readonly s3BucketName: pulumi.Output<string>;
|
|
22
|
-
readonly source: pulumi.Output<string>;
|
|
23
|
-
/**
|
|
24
|
-
* Create a AwsS3Mount resource with the given unique name, arguments, and options.
|
|
25
|
-
*
|
|
26
|
-
* @param name The _unique_ name of the resource.
|
|
27
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
28
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
29
|
-
*/
|
|
30
|
-
constructor(name: string, args: AwsS3MountArgs, opts?: pulumi.CustomResourceOptions);
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Input properties used for looking up and filtering AwsS3Mount resources.
|
|
34
|
-
*/
|
|
35
|
-
export interface AwsS3MountState {
|
|
36
|
-
clusterId?: pulumi.Input<string>;
|
|
37
|
-
instanceProfile?: pulumi.Input<string>;
|
|
38
|
-
mountName?: pulumi.Input<string>;
|
|
39
|
-
s3BucketName?: pulumi.Input<string>;
|
|
40
|
-
source?: pulumi.Input<string>;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* The set of arguments for constructing a AwsS3Mount resource.
|
|
44
|
-
*/
|
|
45
|
-
export interface AwsS3MountArgs {
|
|
46
|
-
clusterId?: pulumi.Input<string>;
|
|
47
|
-
instanceProfile?: pulumi.Input<string>;
|
|
48
|
-
mountName: pulumi.Input<string>;
|
|
49
|
-
s3BucketName: pulumi.Input<string>;
|
|
50
|
-
}
|
package/awsS3Mount.js
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
-
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.AwsS3Mount = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
class AwsS3Mount extends pulumi.CustomResource {
|
|
9
|
-
constructor(name, argsOrState, opts) {
|
|
10
|
-
let resourceInputs = {};
|
|
11
|
-
opts = opts || {};
|
|
12
|
-
if (opts.id) {
|
|
13
|
-
const state = argsOrState;
|
|
14
|
-
resourceInputs["clusterId"] = state ? state.clusterId : undefined;
|
|
15
|
-
resourceInputs["instanceProfile"] = state ? state.instanceProfile : undefined;
|
|
16
|
-
resourceInputs["mountName"] = state ? state.mountName : undefined;
|
|
17
|
-
resourceInputs["s3BucketName"] = state ? state.s3BucketName : undefined;
|
|
18
|
-
resourceInputs["source"] = state ? state.source : undefined;
|
|
19
|
-
}
|
|
20
|
-
else {
|
|
21
|
-
const args = argsOrState;
|
|
22
|
-
if ((!args || args.mountName === undefined) && !opts.urn) {
|
|
23
|
-
throw new Error("Missing required property 'mountName'");
|
|
24
|
-
}
|
|
25
|
-
if ((!args || args.s3BucketName === undefined) && !opts.urn) {
|
|
26
|
-
throw new Error("Missing required property 's3BucketName'");
|
|
27
|
-
}
|
|
28
|
-
resourceInputs["clusterId"] = args ? args.clusterId : undefined;
|
|
29
|
-
resourceInputs["instanceProfile"] = args ? args.instanceProfile : undefined;
|
|
30
|
-
resourceInputs["mountName"] = args ? args.mountName : undefined;
|
|
31
|
-
resourceInputs["s3BucketName"] = args ? args.s3BucketName : undefined;
|
|
32
|
-
resourceInputs["source"] = undefined /*out*/;
|
|
33
|
-
}
|
|
34
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
35
|
-
super(AwsS3Mount.__pulumiType, name, resourceInputs, opts);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Get an existing AwsS3Mount resource's state with the given name, ID, and optional extra
|
|
39
|
-
* properties used to qualify the lookup.
|
|
40
|
-
*
|
|
41
|
-
* @param name The _unique_ name of the resulting resource.
|
|
42
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
43
|
-
* @param state Any extra arguments used during the lookup.
|
|
44
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
45
|
-
*/
|
|
46
|
-
static get(name, id, state, opts) {
|
|
47
|
-
return new AwsS3Mount(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Returns true if the given object is an instance of AwsS3Mount. This is designed to work even
|
|
51
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
52
|
-
*/
|
|
53
|
-
static isInstance(obj) {
|
|
54
|
-
if (obj === undefined || obj === null) {
|
|
55
|
-
return false;
|
|
56
|
-
}
|
|
57
|
-
return obj['__pulumiType'] === AwsS3Mount.__pulumiType;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
exports.AwsS3Mount = AwsS3Mount;
|
|
61
|
-
/** @internal */
|
|
62
|
-
AwsS3Mount.__pulumiType = 'databricks:index/awsS3Mount:AwsS3Mount';
|
|
63
|
-
//# sourceMappingURL=awsS3Mount.js.map
|
package/awsS3Mount.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"awsS3Mount.js","sourceRoot":"","sources":["../awsS3Mount.ts"],"names":[],"mappings":"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"}
|
package/azureAdlsGen1Mount.d.ts
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
export declare class AzureAdlsGen1Mount extends pulumi.CustomResource {
|
|
3
|
-
/**
|
|
4
|
-
* Get an existing AzureAdlsGen1Mount resource's state with the given name, ID, and optional extra
|
|
5
|
-
* properties used to qualify the lookup.
|
|
6
|
-
*
|
|
7
|
-
* @param name The _unique_ name of the resulting resource.
|
|
8
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
9
|
-
* @param state Any extra arguments used during the lookup.
|
|
10
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
11
|
-
*/
|
|
12
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AzureAdlsGen1MountState, opts?: pulumi.CustomResourceOptions): AzureAdlsGen1Mount;
|
|
13
|
-
/**
|
|
14
|
-
* Returns true if the given object is an instance of AzureAdlsGen1Mount. This is designed to work even
|
|
15
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
16
|
-
*/
|
|
17
|
-
static isInstance(obj: any): obj is AzureAdlsGen1Mount;
|
|
18
|
-
readonly clientId: pulumi.Output<string>;
|
|
19
|
-
readonly clientSecretKey: pulumi.Output<string>;
|
|
20
|
-
readonly clientSecretScope: pulumi.Output<string>;
|
|
21
|
-
readonly clusterId: pulumi.Output<string | undefined>;
|
|
22
|
-
readonly directory: pulumi.Output<string>;
|
|
23
|
-
readonly mountName: pulumi.Output<string>;
|
|
24
|
-
readonly source: pulumi.Output<string>;
|
|
25
|
-
readonly sparkConfPrefix: pulumi.Output<string | undefined>;
|
|
26
|
-
readonly storageResourceName: pulumi.Output<string>;
|
|
27
|
-
readonly tenantId: pulumi.Output<string>;
|
|
28
|
-
/**
|
|
29
|
-
* Create a AzureAdlsGen1Mount resource with the given unique name, arguments, and options.
|
|
30
|
-
*
|
|
31
|
-
* @param name The _unique_ name of the resource.
|
|
32
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
33
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
34
|
-
*/
|
|
35
|
-
constructor(name: string, args: AzureAdlsGen1MountArgs, opts?: pulumi.CustomResourceOptions);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Input properties used for looking up and filtering AzureAdlsGen1Mount resources.
|
|
39
|
-
*/
|
|
40
|
-
export interface AzureAdlsGen1MountState {
|
|
41
|
-
clientId?: pulumi.Input<string>;
|
|
42
|
-
clientSecretKey?: pulumi.Input<string>;
|
|
43
|
-
clientSecretScope?: pulumi.Input<string>;
|
|
44
|
-
clusterId?: pulumi.Input<string>;
|
|
45
|
-
directory?: pulumi.Input<string>;
|
|
46
|
-
mountName?: pulumi.Input<string>;
|
|
47
|
-
source?: pulumi.Input<string>;
|
|
48
|
-
sparkConfPrefix?: pulumi.Input<string>;
|
|
49
|
-
storageResourceName?: pulumi.Input<string>;
|
|
50
|
-
tenantId?: pulumi.Input<string>;
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* The set of arguments for constructing a AzureAdlsGen1Mount resource.
|
|
54
|
-
*/
|
|
55
|
-
export interface AzureAdlsGen1MountArgs {
|
|
56
|
-
clientId: pulumi.Input<string>;
|
|
57
|
-
clientSecretKey: pulumi.Input<string>;
|
|
58
|
-
clientSecretScope: pulumi.Input<string>;
|
|
59
|
-
clusterId?: pulumi.Input<string>;
|
|
60
|
-
directory?: pulumi.Input<string>;
|
|
61
|
-
mountName: pulumi.Input<string>;
|
|
62
|
-
sparkConfPrefix?: pulumi.Input<string>;
|
|
63
|
-
storageResourceName: pulumi.Input<string>;
|
|
64
|
-
tenantId: pulumi.Input<string>;
|
|
65
|
-
}
|
package/azureAdlsGen1Mount.js
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
-
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.AzureAdlsGen1Mount = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
class AzureAdlsGen1Mount extends pulumi.CustomResource {
|
|
9
|
-
constructor(name, argsOrState, opts) {
|
|
10
|
-
let resourceInputs = {};
|
|
11
|
-
opts = opts || {};
|
|
12
|
-
if (opts.id) {
|
|
13
|
-
const state = argsOrState;
|
|
14
|
-
resourceInputs["clientId"] = state ? state.clientId : undefined;
|
|
15
|
-
resourceInputs["clientSecretKey"] = state ? state.clientSecretKey : undefined;
|
|
16
|
-
resourceInputs["clientSecretScope"] = state ? state.clientSecretScope : undefined;
|
|
17
|
-
resourceInputs["clusterId"] = state ? state.clusterId : undefined;
|
|
18
|
-
resourceInputs["directory"] = state ? state.directory : undefined;
|
|
19
|
-
resourceInputs["mountName"] = state ? state.mountName : undefined;
|
|
20
|
-
resourceInputs["source"] = state ? state.source : undefined;
|
|
21
|
-
resourceInputs["sparkConfPrefix"] = state ? state.sparkConfPrefix : undefined;
|
|
22
|
-
resourceInputs["storageResourceName"] = state ? state.storageResourceName : undefined;
|
|
23
|
-
resourceInputs["tenantId"] = state ? state.tenantId : undefined;
|
|
24
|
-
}
|
|
25
|
-
else {
|
|
26
|
-
const args = argsOrState;
|
|
27
|
-
if ((!args || args.clientId === undefined) && !opts.urn) {
|
|
28
|
-
throw new Error("Missing required property 'clientId'");
|
|
29
|
-
}
|
|
30
|
-
if ((!args || args.clientSecretKey === undefined) && !opts.urn) {
|
|
31
|
-
throw new Error("Missing required property 'clientSecretKey'");
|
|
32
|
-
}
|
|
33
|
-
if ((!args || args.clientSecretScope === undefined) && !opts.urn) {
|
|
34
|
-
throw new Error("Missing required property 'clientSecretScope'");
|
|
35
|
-
}
|
|
36
|
-
if ((!args || args.mountName === undefined) && !opts.urn) {
|
|
37
|
-
throw new Error("Missing required property 'mountName'");
|
|
38
|
-
}
|
|
39
|
-
if ((!args || args.storageResourceName === undefined) && !opts.urn) {
|
|
40
|
-
throw new Error("Missing required property 'storageResourceName'");
|
|
41
|
-
}
|
|
42
|
-
if ((!args || args.tenantId === undefined) && !opts.urn) {
|
|
43
|
-
throw new Error("Missing required property 'tenantId'");
|
|
44
|
-
}
|
|
45
|
-
resourceInputs["clientId"] = args ? args.clientId : undefined;
|
|
46
|
-
resourceInputs["clientSecretKey"] = args ? args.clientSecretKey : undefined;
|
|
47
|
-
resourceInputs["clientSecretScope"] = args ? args.clientSecretScope : undefined;
|
|
48
|
-
resourceInputs["clusterId"] = args ? args.clusterId : undefined;
|
|
49
|
-
resourceInputs["directory"] = args ? args.directory : undefined;
|
|
50
|
-
resourceInputs["mountName"] = args ? args.mountName : undefined;
|
|
51
|
-
resourceInputs["sparkConfPrefix"] = args ? args.sparkConfPrefix : undefined;
|
|
52
|
-
resourceInputs["storageResourceName"] = args ? args.storageResourceName : undefined;
|
|
53
|
-
resourceInputs["tenantId"] = args ? args.tenantId : undefined;
|
|
54
|
-
resourceInputs["source"] = undefined /*out*/;
|
|
55
|
-
}
|
|
56
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
57
|
-
super(AzureAdlsGen1Mount.__pulumiType, name, resourceInputs, opts);
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* Get an existing AzureAdlsGen1Mount resource's state with the given name, ID, and optional extra
|
|
61
|
-
* properties used to qualify the lookup.
|
|
62
|
-
*
|
|
63
|
-
* @param name The _unique_ name of the resulting resource.
|
|
64
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
65
|
-
* @param state Any extra arguments used during the lookup.
|
|
66
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
67
|
-
*/
|
|
68
|
-
static get(name, id, state, opts) {
|
|
69
|
-
return new AzureAdlsGen1Mount(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
70
|
-
}
|
|
71
|
-
/**
|
|
72
|
-
* Returns true if the given object is an instance of AzureAdlsGen1Mount. This is designed to work even
|
|
73
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
74
|
-
*/
|
|
75
|
-
static isInstance(obj) {
|
|
76
|
-
if (obj === undefined || obj === null) {
|
|
77
|
-
return false;
|
|
78
|
-
}
|
|
79
|
-
return obj['__pulumiType'] === AzureAdlsGen1Mount.__pulumiType;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
exports.AzureAdlsGen1Mount = AzureAdlsGen1Mount;
|
|
83
|
-
/** @internal */
|
|
84
|
-
AzureAdlsGen1Mount.__pulumiType = 'databricks:index/azureAdlsGen1Mount:AzureAdlsGen1Mount';
|
|
85
|
-
//# sourceMappingURL=azureAdlsGen1Mount.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"azureAdlsGen1Mount.js","sourceRoot":"","sources":["../azureAdlsGen1Mount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IA+CzD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,eAAe,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5D,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,mBAAmB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAChE,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;aACtE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;IA9FD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;;AA1BL,gDAgGC;AAlFG,gBAAgB;AACO,+BAAY,GAAG,wDAAwD,CAAC"}
|
package/azureAdlsGen2Mount.d.ts
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
export declare class AzureAdlsGen2Mount extends pulumi.CustomResource {
|
|
3
|
-
/**
|
|
4
|
-
* Get an existing AzureAdlsGen2Mount resource's state with the given name, ID, and optional extra
|
|
5
|
-
* properties used to qualify the lookup.
|
|
6
|
-
*
|
|
7
|
-
* @param name The _unique_ name of the resulting resource.
|
|
8
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
9
|
-
* @param state Any extra arguments used during the lookup.
|
|
10
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
11
|
-
*/
|
|
12
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AzureAdlsGen2MountState, opts?: pulumi.CustomResourceOptions): AzureAdlsGen2Mount;
|
|
13
|
-
/**
|
|
14
|
-
* Returns true if the given object is an instance of AzureAdlsGen2Mount. This is designed to work even
|
|
15
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
16
|
-
*/
|
|
17
|
-
static isInstance(obj: any): obj is AzureAdlsGen2Mount;
|
|
18
|
-
readonly clientId: pulumi.Output<string>;
|
|
19
|
-
readonly clientSecretKey: pulumi.Output<string>;
|
|
20
|
-
readonly clientSecretScope: pulumi.Output<string>;
|
|
21
|
-
readonly clusterId: pulumi.Output<string | undefined>;
|
|
22
|
-
readonly containerName: pulumi.Output<string>;
|
|
23
|
-
readonly directory: pulumi.Output<string>;
|
|
24
|
-
readonly initializeFileSystem: pulumi.Output<boolean>;
|
|
25
|
-
readonly mountName: pulumi.Output<string>;
|
|
26
|
-
readonly source: pulumi.Output<string>;
|
|
27
|
-
readonly storageAccountName: pulumi.Output<string>;
|
|
28
|
-
readonly tenantId: pulumi.Output<string>;
|
|
29
|
-
/**
|
|
30
|
-
* Create a AzureAdlsGen2Mount resource with the given unique name, arguments, and options.
|
|
31
|
-
*
|
|
32
|
-
* @param name The _unique_ name of the resource.
|
|
33
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
34
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
35
|
-
*/
|
|
36
|
-
constructor(name: string, args: AzureAdlsGen2MountArgs, opts?: pulumi.CustomResourceOptions);
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Input properties used for looking up and filtering AzureAdlsGen2Mount resources.
|
|
40
|
-
*/
|
|
41
|
-
export interface AzureAdlsGen2MountState {
|
|
42
|
-
clientId?: pulumi.Input<string>;
|
|
43
|
-
clientSecretKey?: pulumi.Input<string>;
|
|
44
|
-
clientSecretScope?: pulumi.Input<string>;
|
|
45
|
-
clusterId?: pulumi.Input<string>;
|
|
46
|
-
containerName?: pulumi.Input<string>;
|
|
47
|
-
directory?: pulumi.Input<string>;
|
|
48
|
-
initializeFileSystem?: pulumi.Input<boolean>;
|
|
49
|
-
mountName?: pulumi.Input<string>;
|
|
50
|
-
source?: pulumi.Input<string>;
|
|
51
|
-
storageAccountName?: pulumi.Input<string>;
|
|
52
|
-
tenantId?: pulumi.Input<string>;
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* The set of arguments for constructing a AzureAdlsGen2Mount resource.
|
|
56
|
-
*/
|
|
57
|
-
export interface AzureAdlsGen2MountArgs {
|
|
58
|
-
clientId: pulumi.Input<string>;
|
|
59
|
-
clientSecretKey: pulumi.Input<string>;
|
|
60
|
-
clientSecretScope: pulumi.Input<string>;
|
|
61
|
-
clusterId?: pulumi.Input<string>;
|
|
62
|
-
containerName: pulumi.Input<string>;
|
|
63
|
-
directory?: pulumi.Input<string>;
|
|
64
|
-
initializeFileSystem: pulumi.Input<boolean>;
|
|
65
|
-
mountName: pulumi.Input<string>;
|
|
66
|
-
storageAccountName: pulumi.Input<string>;
|
|
67
|
-
tenantId: pulumi.Input<string>;
|
|
68
|
-
}
|