@pulumi/databricks 1.42.0 → 1.43.0-alpha.1717021682
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.
|
@@ -90,7 +90,7 @@ export declare class MwsPermissionAssignment extends pulumi.CustomResource {
|
|
|
90
90
|
/**
|
|
91
91
|
* Databricks ID of the user, service principal, or group. The principal ID can be retrieved using the SCIM API, or using databricks_user, databricks.ServicePrincipal or databricks.Group data sources.
|
|
92
92
|
*/
|
|
93
|
-
readonly principalId: pulumi.Output<
|
|
93
|
+
readonly principalId: pulumi.Output<string>;
|
|
94
94
|
/**
|
|
95
95
|
* Databricks workspace ID.
|
|
96
96
|
*/
|
|
@@ -117,7 +117,7 @@ export interface MwsPermissionAssignmentState {
|
|
|
117
117
|
/**
|
|
118
118
|
* Databricks ID of the user, service principal, or group. The principal ID can be retrieved using the SCIM API, or using databricks_user, databricks.ServicePrincipal or databricks.Group data sources.
|
|
119
119
|
*/
|
|
120
|
-
principalId?: pulumi.Input<
|
|
120
|
+
principalId?: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
122
122
|
* Databricks workspace ID.
|
|
123
123
|
*/
|
|
@@ -136,7 +136,7 @@ export interface MwsPermissionAssignmentArgs {
|
|
|
136
136
|
/**
|
|
137
137
|
* Databricks ID of the user, service principal, or group. The principal ID can be retrieved using the SCIM API, or using databricks_user, databricks.ServicePrincipal or databricks.Group data sources.
|
|
138
138
|
*/
|
|
139
|
-
principalId: pulumi.Input<
|
|
139
|
+
principalId: pulumi.Input<string>;
|
|
140
140
|
/**
|
|
141
141
|
* Databricks workspace ID.
|
|
142
142
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.0-alpha.1717021682",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "databricks",
|
|
27
|
-
"version": "1.
|
|
27
|
+
"version": "1.43.0-alpha.1717021682"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -98,7 +98,7 @@ export declare class PermissionAssignment extends pulumi.CustomResource {
|
|
|
98
98
|
* * `"ADMIN"` - Can access the workspace and has workspace admin privileges to manage users and groups, workspace configurations, and more.
|
|
99
99
|
*/
|
|
100
100
|
readonly permissions: pulumi.Output<string[]>;
|
|
101
|
-
readonly principalId: pulumi.Output<
|
|
101
|
+
readonly principalId: pulumi.Output<string>;
|
|
102
102
|
/**
|
|
103
103
|
* Create a PermissionAssignment resource with the given unique name, arguments, and options.
|
|
104
104
|
*
|
|
@@ -118,7 +118,7 @@ export interface PermissionAssignmentState {
|
|
|
118
118
|
* * `"ADMIN"` - Can access the workspace and has workspace admin privileges to manage users and groups, workspace configurations, and more.
|
|
119
119
|
*/
|
|
120
120
|
permissions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
121
|
-
principalId?: pulumi.Input<
|
|
121
|
+
principalId?: pulumi.Input<string>;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* The set of arguments for constructing a PermissionAssignment resource.
|
|
@@ -130,5 +130,5 @@ export interface PermissionAssignmentArgs {
|
|
|
130
130
|
* * `"ADMIN"` - Can access the workspace and has workspace admin privileges to manage users and groups, workspace configurations, and more.
|
|
131
131
|
*/
|
|
132
132
|
permissions: pulumi.Input<pulumi.Input<string>[]>;
|
|
133
|
-
principalId: pulumi.Input<
|
|
133
|
+
principalId: pulumi.Input<string>;
|
|
134
134
|
}
|