@azure/arm-workspaces 1.1.1-alpha.20250619.1 → 1.1.1-alpha.20250717.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/package.json
CHANGED
|
@@ -1,209 +1,209 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-workspaces"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
|
8
|
-
import * as coreClient from '@azure/core-client';
|
|
9
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
-
|
|
11
|
-
// @public
|
|
12
|
-
export interface ErrorResponse {
|
|
13
|
-
code: string;
|
|
14
|
-
message: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
// @public
|
|
18
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
19
|
-
|
|
20
|
-
// @public (undocumented)
|
|
21
|
-
export class MachineLearningWorkspacesManagementClient extends coreClient.ServiceClient {
|
|
22
|
-
// (undocumented)
|
|
23
|
-
$host: string;
|
|
24
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: MachineLearningWorkspacesManagementClientOptionalParams);
|
|
25
|
-
// (undocumented)
|
|
26
|
-
apiVersion: string;
|
|
27
|
-
// (undocumented)
|
|
28
|
-
operations: Operations;
|
|
29
|
-
// (undocumented)
|
|
30
|
-
subscriptionId: string;
|
|
31
|
-
// (undocumented)
|
|
32
|
-
workspaces: Workspaces;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// @public
|
|
36
|
-
export interface MachineLearningWorkspacesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
37
|
-
$host?: string;
|
|
38
|
-
apiVersion?: string;
|
|
39
|
-
endpoint?: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// @public
|
|
43
|
-
export interface Operation {
|
|
44
|
-
display?: OperationDisplay;
|
|
45
|
-
name?: string;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
// @public
|
|
49
|
-
export interface OperationDisplay {
|
|
50
|
-
description?: string;
|
|
51
|
-
operation?: string;
|
|
52
|
-
provider?: string;
|
|
53
|
-
resource?: string;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// @public
|
|
57
|
-
export interface OperationListResult {
|
|
58
|
-
value?: Operation[];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// @public
|
|
62
|
-
export interface Operations {
|
|
63
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// @public
|
|
67
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// @public
|
|
71
|
-
export type OperationsListResponse = OperationListResult;
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface Resource {
|
|
75
|
-
readonly id?: string;
|
|
76
|
-
location: string;
|
|
77
|
-
readonly name?: string;
|
|
78
|
-
sku?: Sku;
|
|
79
|
-
tags?: {
|
|
80
|
-
[propertyName: string]: string;
|
|
81
|
-
};
|
|
82
|
-
readonly type?: string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// @public
|
|
86
|
-
export interface Sku {
|
|
87
|
-
name?: string;
|
|
88
|
-
tier?: string;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
// @public
|
|
92
|
-
export interface Workspace extends Resource {
|
|
93
|
-
readonly creationTime?: string;
|
|
94
|
-
keyVaultIdentifierId?: string;
|
|
95
|
-
ownerEmail?: string;
|
|
96
|
-
readonly studioEndpoint?: string;
|
|
97
|
-
userStorageAccountId?: string;
|
|
98
|
-
readonly workspaceId?: string;
|
|
99
|
-
readonly workspaceState?: WorkspaceState;
|
|
100
|
-
readonly workspaceType?: WorkspaceType;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
// @public
|
|
104
|
-
export interface WorkspaceKeysResponse {
|
|
105
|
-
primaryToken?: string;
|
|
106
|
-
secondaryToken?: string;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface WorkspaceListResult {
|
|
111
|
-
nextLink?: string;
|
|
112
|
-
value?: Workspace[];
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export interface Workspaces {
|
|
117
|
-
createOrUpdate(resourceGroupName: string, workspaceName: string, parameters: Workspace, options?: WorkspacesCreateOrUpdateOptionalParams): Promise<WorkspacesCreateOrUpdateResponse>;
|
|
118
|
-
delete(resourceGroupName: string, workspaceName: string, options?: WorkspacesDeleteOptionalParams): Promise<void>;
|
|
119
|
-
get(resourceGroupName: string, workspaceName: string, options?: WorkspacesGetOptionalParams): Promise<WorkspacesGetResponse>;
|
|
120
|
-
list(options?: WorkspacesListOptionalParams): PagedAsyncIterableIterator<Workspace>;
|
|
121
|
-
listByResourceGroup(resourceGroupName: string, options?: WorkspacesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Workspace>;
|
|
122
|
-
listWorkspaceKeys(workspaceName: string, resourceGroupName: string, options?: WorkspacesListWorkspaceKeysOptionalParams): Promise<WorkspacesListWorkspaceKeysResponse>;
|
|
123
|
-
resyncStorageKeys(workspaceName: string, resourceGroupName: string, options?: WorkspacesResyncStorageKeysOptionalParams): Promise<void>;
|
|
124
|
-
update(resourceGroupName: string, workspaceName: string, parameters: WorkspaceUpdateParameters, options?: WorkspacesUpdateOptionalParams): Promise<WorkspacesUpdateResponse>;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
// @public
|
|
128
|
-
export interface WorkspacesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
// @public
|
|
132
|
-
export type WorkspacesCreateOrUpdateResponse = Workspace;
|
|
133
|
-
|
|
134
|
-
// @public
|
|
135
|
-
export interface WorkspacesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
// @public
|
|
139
|
-
export interface WorkspacesGetOptionalParams extends coreClient.OperationOptions {
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
// @public
|
|
143
|
-
export type WorkspacesGetResponse = Workspace;
|
|
144
|
-
|
|
145
|
-
// @public
|
|
146
|
-
export interface WorkspacesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
// @public
|
|
150
|
-
export type WorkspacesListByResourceGroupNextResponse = WorkspaceListResult;
|
|
151
|
-
|
|
152
|
-
// @public
|
|
153
|
-
export interface WorkspacesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
// @public
|
|
157
|
-
export type WorkspacesListByResourceGroupResponse = WorkspaceListResult;
|
|
158
|
-
|
|
159
|
-
// @public
|
|
160
|
-
export interface WorkspacesListNextOptionalParams extends coreClient.OperationOptions {
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
// @public
|
|
164
|
-
export type WorkspacesListNextResponse = WorkspaceListResult;
|
|
165
|
-
|
|
166
|
-
// @public
|
|
167
|
-
export interface WorkspacesListOptionalParams extends coreClient.OperationOptions {
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
// @public
|
|
171
|
-
export type WorkspacesListResponse = WorkspaceListResult;
|
|
172
|
-
|
|
173
|
-
// @public
|
|
174
|
-
export interface WorkspacesListWorkspaceKeysOptionalParams extends coreClient.OperationOptions {
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
// @public
|
|
178
|
-
export type WorkspacesListWorkspaceKeysResponse = WorkspaceKeysResponse;
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export interface WorkspacesResyncStorageKeysOptionalParams extends coreClient.OperationOptions {
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
// @public
|
|
185
|
-
export type WorkspaceState = "Deleted" | "Enabled" | "Disabled" | "Migrated" | "Updated" | "Registered" | "Unregistered";
|
|
186
|
-
|
|
187
|
-
// @public
|
|
188
|
-
export interface WorkspacesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
// @public
|
|
192
|
-
export type WorkspacesUpdateResponse = Workspace;
|
|
193
|
-
|
|
194
|
-
// @public
|
|
195
|
-
export type WorkspaceType = "Production" | "Free" | "Anonymous" | "PaidStandard" | "PaidPremium";
|
|
196
|
-
|
|
197
|
-
// @public
|
|
198
|
-
export interface WorkspaceUpdateParameters {
|
|
199
|
-
keyVaultIdentifierId?: string;
|
|
200
|
-
sku?: Sku;
|
|
201
|
-
tags?: {
|
|
202
|
-
[propertyName: string]: string;
|
|
203
|
-
};
|
|
204
|
-
workspaceState?: WorkspaceState;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
// (No @packageDocumentation comment for this package)
|
|
208
|
-
|
|
209
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-workspaces"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
|
8
|
+
import * as coreClient from '@azure/core-client';
|
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
|
|
11
|
+
// @public
|
|
12
|
+
export interface ErrorResponse {
|
|
13
|
+
code: string;
|
|
14
|
+
message: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// @public
|
|
18
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
19
|
+
|
|
20
|
+
// @public (undocumented)
|
|
21
|
+
export class MachineLearningWorkspacesManagementClient extends coreClient.ServiceClient {
|
|
22
|
+
// (undocumented)
|
|
23
|
+
$host: string;
|
|
24
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: MachineLearningWorkspacesManagementClientOptionalParams);
|
|
25
|
+
// (undocumented)
|
|
26
|
+
apiVersion: string;
|
|
27
|
+
// (undocumented)
|
|
28
|
+
operations: Operations;
|
|
29
|
+
// (undocumented)
|
|
30
|
+
subscriptionId: string;
|
|
31
|
+
// (undocumented)
|
|
32
|
+
workspaces: Workspaces;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// @public
|
|
36
|
+
export interface MachineLearningWorkspacesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
37
|
+
$host?: string;
|
|
38
|
+
apiVersion?: string;
|
|
39
|
+
endpoint?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// @public
|
|
43
|
+
export interface Operation {
|
|
44
|
+
display?: OperationDisplay;
|
|
45
|
+
name?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
// @public
|
|
49
|
+
export interface OperationDisplay {
|
|
50
|
+
description?: string;
|
|
51
|
+
operation?: string;
|
|
52
|
+
provider?: string;
|
|
53
|
+
resource?: string;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// @public
|
|
57
|
+
export interface OperationListResult {
|
|
58
|
+
value?: Operation[];
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// @public
|
|
62
|
+
export interface Operations {
|
|
63
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @public
|
|
71
|
+
export type OperationsListResponse = OperationListResult;
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface Resource {
|
|
75
|
+
readonly id?: string;
|
|
76
|
+
location: string;
|
|
77
|
+
readonly name?: string;
|
|
78
|
+
sku?: Sku;
|
|
79
|
+
tags?: {
|
|
80
|
+
[propertyName: string]: string;
|
|
81
|
+
};
|
|
82
|
+
readonly type?: string;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// @public
|
|
86
|
+
export interface Sku {
|
|
87
|
+
name?: string;
|
|
88
|
+
tier?: string;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// @public
|
|
92
|
+
export interface Workspace extends Resource {
|
|
93
|
+
readonly creationTime?: string;
|
|
94
|
+
keyVaultIdentifierId?: string;
|
|
95
|
+
ownerEmail?: string;
|
|
96
|
+
readonly studioEndpoint?: string;
|
|
97
|
+
userStorageAccountId?: string;
|
|
98
|
+
readonly workspaceId?: string;
|
|
99
|
+
readonly workspaceState?: WorkspaceState;
|
|
100
|
+
readonly workspaceType?: WorkspaceType;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// @public
|
|
104
|
+
export interface WorkspaceKeysResponse {
|
|
105
|
+
primaryToken?: string;
|
|
106
|
+
secondaryToken?: string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface WorkspaceListResult {
|
|
111
|
+
nextLink?: string;
|
|
112
|
+
value?: Workspace[];
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export interface Workspaces {
|
|
117
|
+
createOrUpdate(resourceGroupName: string, workspaceName: string, parameters: Workspace, options?: WorkspacesCreateOrUpdateOptionalParams): Promise<WorkspacesCreateOrUpdateResponse>;
|
|
118
|
+
delete(resourceGroupName: string, workspaceName: string, options?: WorkspacesDeleteOptionalParams): Promise<void>;
|
|
119
|
+
get(resourceGroupName: string, workspaceName: string, options?: WorkspacesGetOptionalParams): Promise<WorkspacesGetResponse>;
|
|
120
|
+
list(options?: WorkspacesListOptionalParams): PagedAsyncIterableIterator<Workspace>;
|
|
121
|
+
listByResourceGroup(resourceGroupName: string, options?: WorkspacesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Workspace>;
|
|
122
|
+
listWorkspaceKeys(workspaceName: string, resourceGroupName: string, options?: WorkspacesListWorkspaceKeysOptionalParams): Promise<WorkspacesListWorkspaceKeysResponse>;
|
|
123
|
+
resyncStorageKeys(workspaceName: string, resourceGroupName: string, options?: WorkspacesResyncStorageKeysOptionalParams): Promise<void>;
|
|
124
|
+
update(resourceGroupName: string, workspaceName: string, parameters: WorkspaceUpdateParameters, options?: WorkspacesUpdateOptionalParams): Promise<WorkspacesUpdateResponse>;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// @public
|
|
128
|
+
export interface WorkspacesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// @public
|
|
132
|
+
export type WorkspacesCreateOrUpdateResponse = Workspace;
|
|
133
|
+
|
|
134
|
+
// @public
|
|
135
|
+
export interface WorkspacesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// @public
|
|
139
|
+
export interface WorkspacesGetOptionalParams extends coreClient.OperationOptions {
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// @public
|
|
143
|
+
export type WorkspacesGetResponse = Workspace;
|
|
144
|
+
|
|
145
|
+
// @public
|
|
146
|
+
export interface WorkspacesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// @public
|
|
150
|
+
export type WorkspacesListByResourceGroupNextResponse = WorkspaceListResult;
|
|
151
|
+
|
|
152
|
+
// @public
|
|
153
|
+
export interface WorkspacesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// @public
|
|
157
|
+
export type WorkspacesListByResourceGroupResponse = WorkspaceListResult;
|
|
158
|
+
|
|
159
|
+
// @public
|
|
160
|
+
export interface WorkspacesListNextOptionalParams extends coreClient.OperationOptions {
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// @public
|
|
164
|
+
export type WorkspacesListNextResponse = WorkspaceListResult;
|
|
165
|
+
|
|
166
|
+
// @public
|
|
167
|
+
export interface WorkspacesListOptionalParams extends coreClient.OperationOptions {
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
// @public
|
|
171
|
+
export type WorkspacesListResponse = WorkspaceListResult;
|
|
172
|
+
|
|
173
|
+
// @public
|
|
174
|
+
export interface WorkspacesListWorkspaceKeysOptionalParams extends coreClient.OperationOptions {
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// @public
|
|
178
|
+
export type WorkspacesListWorkspaceKeysResponse = WorkspaceKeysResponse;
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export interface WorkspacesResyncStorageKeysOptionalParams extends coreClient.OperationOptions {
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
// @public
|
|
185
|
+
export type WorkspaceState = "Deleted" | "Enabled" | "Disabled" | "Migrated" | "Updated" | "Registered" | "Unregistered";
|
|
186
|
+
|
|
187
|
+
// @public
|
|
188
|
+
export interface WorkspacesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// @public
|
|
192
|
+
export type WorkspacesUpdateResponse = Workspace;
|
|
193
|
+
|
|
194
|
+
// @public
|
|
195
|
+
export type WorkspaceType = "Production" | "Free" | "Anonymous" | "PaidStandard" | "PaidPremium";
|
|
196
|
+
|
|
197
|
+
// @public
|
|
198
|
+
export interface WorkspaceUpdateParameters {
|
|
199
|
+
keyVaultIdentifierId?: string;
|
|
200
|
+
sku?: Sku;
|
|
201
|
+
tags?: {
|
|
202
|
+
[propertyName: string]: string;
|
|
203
|
+
};
|
|
204
|
+
workspaceState?: WorkspaceState;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// (No @packageDocumentation comment for this package)
|
|
208
|
+
|
|
209
|
+
```
|