@azure/arm-visualstudio 4.0.0-alpha.20250619.1 → 4.0.0-alpha.20250718.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
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for VisualStudioResourceProviderClient.",
6
- "version": "4.0.0-alpha.20250619.1",
6
+ "version": "4.0.0-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,314 +1,314 @@
1
- ## API Report File for "@azure/arm-visualstudio"
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 { PollerLike } from '@azure/core-lro';
10
- import { PollOperationState } from '@azure/core-lro';
11
-
12
- // @public
13
- export interface AccountResource extends Resource {
14
- properties?: {
15
- [propertyName: string]: string;
16
- };
17
- }
18
-
19
- // @public
20
- export interface AccountResourceListResult {
21
- value?: AccountResource[];
22
- }
23
-
24
- // @public
25
- export interface AccountResourceRequest {
26
- accountName?: string;
27
- location?: string;
28
- operationType?: AccountResourceRequestOperationType;
29
- properties?: {
30
- [propertyName: string]: string;
31
- };
32
- tags?: {
33
- [propertyName: string]: string;
34
- };
35
- }
36
-
37
- // @public
38
- export type AccountResourceRequestOperationType = "unknown" | "create" | "update" | "link";
39
-
40
- // @public
41
- export interface Accounts {
42
- checkNameAvailability(body: CheckNameAvailabilityParameter, options?: AccountsCheckNameAvailabilityOptionalParams): Promise<AccountsCheckNameAvailabilityResponse>;
43
- createOrUpdate(resourceGroupName: string, resourceName: string, body: AccountResourceRequest, options?: AccountsCreateOrUpdateOptionalParams): Promise<AccountsCreateOrUpdateResponse>;
44
- delete(resourceGroupName: string, resourceName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
45
- get(resourceGroupName: string, resourceName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
46
- listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): Promise<AccountsListByResourceGroupResponse>;
47
- update(resourceGroupName: string, resourceName: string, body: AccountTagRequest, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
48
- }
49
-
50
- // @public
51
- export interface AccountsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
52
- }
53
-
54
- // @public
55
- export type AccountsCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
56
-
57
- // @public
58
- export interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
59
- }
60
-
61
- // @public
62
- export type AccountsCreateOrUpdateResponse = AccountResource;
63
-
64
- // @public
65
- export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
66
- }
67
-
68
- // @public
69
- export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
70
- }
71
-
72
- // @public
73
- export type AccountsGetResponse = AccountResource;
74
-
75
- // @public
76
- export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
77
- }
78
-
79
- // @public
80
- export type AccountsListByResourceGroupResponse = AccountResourceListResult;
81
-
82
- // @public
83
- export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
84
- }
85
-
86
- // @public
87
- export type AccountsUpdateResponse = AccountResource;
88
-
89
- // @public
90
- export interface AccountTagRequest {
91
- tags?: {
92
- [propertyName: string]: string;
93
- };
94
- }
95
-
96
- // @public
97
- export interface CheckNameAvailabilityParameter {
98
- resourceName?: string;
99
- resourceType?: string;
100
- }
101
-
102
- // @public
103
- export interface CheckNameAvailabilityResult {
104
- message?: string;
105
- nameAvailable?: boolean;
106
- }
107
-
108
- // @public
109
- export interface ExtensionResource extends Resource {
110
- plan?: ExtensionResourcePlan;
111
- properties?: {
112
- [propertyName: string]: string;
113
- };
114
- }
115
-
116
- // @public
117
- export interface ExtensionResourceListResult {
118
- value?: ExtensionResource[];
119
- }
120
-
121
- // @public
122
- export interface ExtensionResourcePlan {
123
- name?: string;
124
- product?: string;
125
- promotionCode?: string;
126
- publisher?: string;
127
- version?: string;
128
- }
129
-
130
- // @public
131
- export interface ExtensionResourceRequest {
132
- location?: string;
133
- plan?: ExtensionResourcePlan;
134
- properties?: {
135
- [propertyName: string]: string;
136
- };
137
- tags?: {
138
- [propertyName: string]: string;
139
- };
140
- }
141
-
142
- // @public
143
- export interface Extensions {
144
- create(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, body: ExtensionResourceRequest, options?: ExtensionsCreateOptionalParams): Promise<ExtensionsCreateResponse>;
145
- delete(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, options?: ExtensionsDeleteOptionalParams): Promise<void>;
146
- get(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, options?: ExtensionsGetOptionalParams): Promise<ExtensionsGetResponse>;
147
- listByAccount(resourceGroupName: string, accountResourceName: string, options?: ExtensionsListByAccountOptionalParams): Promise<ExtensionsListByAccountResponse>;
148
- update(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, body: ExtensionResourceRequest, options?: ExtensionsUpdateOptionalParams): Promise<ExtensionsUpdateResponse>;
149
- }
150
-
151
- // @public
152
- export interface ExtensionsCreateOptionalParams extends coreClient.OperationOptions {
153
- }
154
-
155
- // @public
156
- export type ExtensionsCreateResponse = ExtensionResource;
157
-
158
- // @public
159
- export interface ExtensionsDeleteOptionalParams extends coreClient.OperationOptions {
160
- }
161
-
162
- // @public
163
- export interface ExtensionsGetOptionalParams extends coreClient.OperationOptions {
164
- }
165
-
166
- // @public
167
- export type ExtensionsGetResponse = ExtensionResource;
168
-
169
- // @public
170
- export interface ExtensionsListByAccountOptionalParams extends coreClient.OperationOptions {
171
- }
172
-
173
- // @public
174
- export type ExtensionsListByAccountResponse = ExtensionResourceListResult;
175
-
176
- // @public
177
- export interface ExtensionsUpdateOptionalParams extends coreClient.OperationOptions {
178
- }
179
-
180
- // @public
181
- export type ExtensionsUpdateResponse = ExtensionResource;
182
-
183
- // @public
184
- export interface Operation {
185
- display?: OperationProperties;
186
- name?: string;
187
- }
188
-
189
- // @public
190
- export interface OperationListResult {
191
- value?: Operation[];
192
- }
193
-
194
- // @public
195
- export interface OperationProperties {
196
- description?: string;
197
- operation?: string;
198
- provider?: string;
199
- resource?: string;
200
- }
201
-
202
- // @public
203
- export interface Operations {
204
- list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
205
- }
206
-
207
- // @public
208
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
209
- }
210
-
211
- // @public
212
- export type OperationsListResponse = OperationListResult;
213
-
214
- // @public
215
- export interface ProjectResource extends Resource {
216
- properties?: {
217
- [propertyName: string]: string;
218
- };
219
- }
220
-
221
- // @public
222
- export interface ProjectResourceListResult {
223
- value?: ProjectResource[];
224
- }
225
-
226
- // @public
227
- export interface Projects {
228
- beginCreate(resourceGroupName: string, rootResourceName: string, resourceName: string, body: ProjectResource, options?: ProjectsCreateOptionalParams): Promise<PollerLike<PollOperationState<ProjectsCreateResponse>, ProjectsCreateResponse>>;
229
- beginCreateAndWait(resourceGroupName: string, rootResourceName: string, resourceName: string, body: ProjectResource, options?: ProjectsCreateOptionalParams): Promise<ProjectsCreateResponse>;
230
- get(resourceGroupName: string, rootResourceName: string, resourceName: string, options?: ProjectsGetOptionalParams): Promise<ProjectsGetResponse>;
231
- getJobStatus(resourceGroupName: string, rootResourceName: string, resourceName: string, subContainerName: string, operation: string, options?: ProjectsGetJobStatusOptionalParams): Promise<ProjectsGetJobStatusResponse>;
232
- listByResourceGroup(resourceGroupName: string, rootResourceName: string, options?: ProjectsListByResourceGroupOptionalParams): Promise<ProjectsListByResourceGroupResponse>;
233
- update(resourceGroupName: string, rootResourceName: string, resourceName: string, body: ProjectResource, options?: ProjectsUpdateOptionalParams): Promise<ProjectsUpdateResponse>;
234
- }
235
-
236
- // @public
237
- export interface ProjectsCreateOptionalParams extends coreClient.OperationOptions {
238
- resumeFrom?: string;
239
- updateIntervalInMs?: number;
240
- validating?: string;
241
- }
242
-
243
- // @public
244
- export type ProjectsCreateResponse = ProjectResource;
245
-
246
- // @public
247
- export interface ProjectsGetJobStatusOptionalParams extends coreClient.OperationOptions {
248
- jobId?: string;
249
- }
250
-
251
- // @public
252
- export type ProjectsGetJobStatusResponse = ProjectResource;
253
-
254
- // @public
255
- export interface ProjectsGetOptionalParams extends coreClient.OperationOptions {
256
- }
257
-
258
- // @public
259
- export type ProjectsGetResponse = ProjectResource;
260
-
261
- // @public
262
- export interface ProjectsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
263
- }
264
-
265
- // @public
266
- export type ProjectsListByResourceGroupResponse = ProjectResourceListResult;
267
-
268
- // @public
269
- export interface ProjectsUpdateOptionalParams extends coreClient.OperationOptions {
270
- }
271
-
272
- // @public
273
- export type ProjectsUpdateResponse = ProjectResource;
274
-
275
- // @public
276
- export interface Resource {
277
- readonly id?: string;
278
- location?: string;
279
- readonly name?: string;
280
- tags?: {
281
- [propertyName: string]: string;
282
- };
283
- readonly type?: string;
284
- }
285
-
286
- // @public (undocumented)
287
- export class VisualStudioResourceProviderClient extends coreClient.ServiceClient {
288
- // (undocumented)
289
- $host: string;
290
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: VisualStudioResourceProviderClientOptionalParams);
291
- // (undocumented)
292
- accounts: Accounts;
293
- // (undocumented)
294
- apiVersion: string;
295
- // (undocumented)
296
- extensions: Extensions;
297
- // (undocumented)
298
- operations: Operations;
299
- // (undocumented)
300
- projects: Projects;
301
- // (undocumented)
302
- subscriptionId: string;
303
- }
304
-
305
- // @public
306
- export interface VisualStudioResourceProviderClientOptionalParams extends coreClient.ServiceClientOptions {
307
- $host?: string;
308
- apiVersion?: string;
309
- endpoint?: string;
310
- }
311
-
312
- // (No @packageDocumentation comment for this package)
313
-
314
- ```
1
+ ## API Report File for "@azure/arm-visualstudio"
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 { PollerLike } from '@azure/core-lro';
10
+ import { PollOperationState } from '@azure/core-lro';
11
+
12
+ // @public
13
+ export interface AccountResource extends Resource {
14
+ properties?: {
15
+ [propertyName: string]: string;
16
+ };
17
+ }
18
+
19
+ // @public
20
+ export interface AccountResourceListResult {
21
+ value?: AccountResource[];
22
+ }
23
+
24
+ // @public
25
+ export interface AccountResourceRequest {
26
+ accountName?: string;
27
+ location?: string;
28
+ operationType?: AccountResourceRequestOperationType;
29
+ properties?: {
30
+ [propertyName: string]: string;
31
+ };
32
+ tags?: {
33
+ [propertyName: string]: string;
34
+ };
35
+ }
36
+
37
+ // @public
38
+ export type AccountResourceRequestOperationType = "unknown" | "create" | "update" | "link";
39
+
40
+ // @public
41
+ export interface Accounts {
42
+ checkNameAvailability(body: CheckNameAvailabilityParameter, options?: AccountsCheckNameAvailabilityOptionalParams): Promise<AccountsCheckNameAvailabilityResponse>;
43
+ createOrUpdate(resourceGroupName: string, resourceName: string, body: AccountResourceRequest, options?: AccountsCreateOrUpdateOptionalParams): Promise<AccountsCreateOrUpdateResponse>;
44
+ delete(resourceGroupName: string, resourceName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
45
+ get(resourceGroupName: string, resourceName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
46
+ listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): Promise<AccountsListByResourceGroupResponse>;
47
+ update(resourceGroupName: string, resourceName: string, body: AccountTagRequest, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
48
+ }
49
+
50
+ // @public
51
+ export interface AccountsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
52
+ }
53
+
54
+ // @public
55
+ export type AccountsCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
56
+
57
+ // @public
58
+ export interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
59
+ }
60
+
61
+ // @public
62
+ export type AccountsCreateOrUpdateResponse = AccountResource;
63
+
64
+ // @public
65
+ export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
66
+ }
67
+
68
+ // @public
69
+ export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
70
+ }
71
+
72
+ // @public
73
+ export type AccountsGetResponse = AccountResource;
74
+
75
+ // @public
76
+ export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
77
+ }
78
+
79
+ // @public
80
+ export type AccountsListByResourceGroupResponse = AccountResourceListResult;
81
+
82
+ // @public
83
+ export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
84
+ }
85
+
86
+ // @public
87
+ export type AccountsUpdateResponse = AccountResource;
88
+
89
+ // @public
90
+ export interface AccountTagRequest {
91
+ tags?: {
92
+ [propertyName: string]: string;
93
+ };
94
+ }
95
+
96
+ // @public
97
+ export interface CheckNameAvailabilityParameter {
98
+ resourceName?: string;
99
+ resourceType?: string;
100
+ }
101
+
102
+ // @public
103
+ export interface CheckNameAvailabilityResult {
104
+ message?: string;
105
+ nameAvailable?: boolean;
106
+ }
107
+
108
+ // @public
109
+ export interface ExtensionResource extends Resource {
110
+ plan?: ExtensionResourcePlan;
111
+ properties?: {
112
+ [propertyName: string]: string;
113
+ };
114
+ }
115
+
116
+ // @public
117
+ export interface ExtensionResourceListResult {
118
+ value?: ExtensionResource[];
119
+ }
120
+
121
+ // @public
122
+ export interface ExtensionResourcePlan {
123
+ name?: string;
124
+ product?: string;
125
+ promotionCode?: string;
126
+ publisher?: string;
127
+ version?: string;
128
+ }
129
+
130
+ // @public
131
+ export interface ExtensionResourceRequest {
132
+ location?: string;
133
+ plan?: ExtensionResourcePlan;
134
+ properties?: {
135
+ [propertyName: string]: string;
136
+ };
137
+ tags?: {
138
+ [propertyName: string]: string;
139
+ };
140
+ }
141
+
142
+ // @public
143
+ export interface Extensions {
144
+ create(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, body: ExtensionResourceRequest, options?: ExtensionsCreateOptionalParams): Promise<ExtensionsCreateResponse>;
145
+ delete(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, options?: ExtensionsDeleteOptionalParams): Promise<void>;
146
+ get(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, options?: ExtensionsGetOptionalParams): Promise<ExtensionsGetResponse>;
147
+ listByAccount(resourceGroupName: string, accountResourceName: string, options?: ExtensionsListByAccountOptionalParams): Promise<ExtensionsListByAccountResponse>;
148
+ update(resourceGroupName: string, accountResourceName: string, extensionResourceName: string, body: ExtensionResourceRequest, options?: ExtensionsUpdateOptionalParams): Promise<ExtensionsUpdateResponse>;
149
+ }
150
+
151
+ // @public
152
+ export interface ExtensionsCreateOptionalParams extends coreClient.OperationOptions {
153
+ }
154
+
155
+ // @public
156
+ export type ExtensionsCreateResponse = ExtensionResource;
157
+
158
+ // @public
159
+ export interface ExtensionsDeleteOptionalParams extends coreClient.OperationOptions {
160
+ }
161
+
162
+ // @public
163
+ export interface ExtensionsGetOptionalParams extends coreClient.OperationOptions {
164
+ }
165
+
166
+ // @public
167
+ export type ExtensionsGetResponse = ExtensionResource;
168
+
169
+ // @public
170
+ export interface ExtensionsListByAccountOptionalParams extends coreClient.OperationOptions {
171
+ }
172
+
173
+ // @public
174
+ export type ExtensionsListByAccountResponse = ExtensionResourceListResult;
175
+
176
+ // @public
177
+ export interface ExtensionsUpdateOptionalParams extends coreClient.OperationOptions {
178
+ }
179
+
180
+ // @public
181
+ export type ExtensionsUpdateResponse = ExtensionResource;
182
+
183
+ // @public
184
+ export interface Operation {
185
+ display?: OperationProperties;
186
+ name?: string;
187
+ }
188
+
189
+ // @public
190
+ export interface OperationListResult {
191
+ value?: Operation[];
192
+ }
193
+
194
+ // @public
195
+ export interface OperationProperties {
196
+ description?: string;
197
+ operation?: string;
198
+ provider?: string;
199
+ resource?: string;
200
+ }
201
+
202
+ // @public
203
+ export interface Operations {
204
+ list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
205
+ }
206
+
207
+ // @public
208
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
209
+ }
210
+
211
+ // @public
212
+ export type OperationsListResponse = OperationListResult;
213
+
214
+ // @public
215
+ export interface ProjectResource extends Resource {
216
+ properties?: {
217
+ [propertyName: string]: string;
218
+ };
219
+ }
220
+
221
+ // @public
222
+ export interface ProjectResourceListResult {
223
+ value?: ProjectResource[];
224
+ }
225
+
226
+ // @public
227
+ export interface Projects {
228
+ beginCreate(resourceGroupName: string, rootResourceName: string, resourceName: string, body: ProjectResource, options?: ProjectsCreateOptionalParams): Promise<PollerLike<PollOperationState<ProjectsCreateResponse>, ProjectsCreateResponse>>;
229
+ beginCreateAndWait(resourceGroupName: string, rootResourceName: string, resourceName: string, body: ProjectResource, options?: ProjectsCreateOptionalParams): Promise<ProjectsCreateResponse>;
230
+ get(resourceGroupName: string, rootResourceName: string, resourceName: string, options?: ProjectsGetOptionalParams): Promise<ProjectsGetResponse>;
231
+ getJobStatus(resourceGroupName: string, rootResourceName: string, resourceName: string, subContainerName: string, operation: string, options?: ProjectsGetJobStatusOptionalParams): Promise<ProjectsGetJobStatusResponse>;
232
+ listByResourceGroup(resourceGroupName: string, rootResourceName: string, options?: ProjectsListByResourceGroupOptionalParams): Promise<ProjectsListByResourceGroupResponse>;
233
+ update(resourceGroupName: string, rootResourceName: string, resourceName: string, body: ProjectResource, options?: ProjectsUpdateOptionalParams): Promise<ProjectsUpdateResponse>;
234
+ }
235
+
236
+ // @public
237
+ export interface ProjectsCreateOptionalParams extends coreClient.OperationOptions {
238
+ resumeFrom?: string;
239
+ updateIntervalInMs?: number;
240
+ validating?: string;
241
+ }
242
+
243
+ // @public
244
+ export type ProjectsCreateResponse = ProjectResource;
245
+
246
+ // @public
247
+ export interface ProjectsGetJobStatusOptionalParams extends coreClient.OperationOptions {
248
+ jobId?: string;
249
+ }
250
+
251
+ // @public
252
+ export type ProjectsGetJobStatusResponse = ProjectResource;
253
+
254
+ // @public
255
+ export interface ProjectsGetOptionalParams extends coreClient.OperationOptions {
256
+ }
257
+
258
+ // @public
259
+ export type ProjectsGetResponse = ProjectResource;
260
+
261
+ // @public
262
+ export interface ProjectsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
263
+ }
264
+
265
+ // @public
266
+ export type ProjectsListByResourceGroupResponse = ProjectResourceListResult;
267
+
268
+ // @public
269
+ export interface ProjectsUpdateOptionalParams extends coreClient.OperationOptions {
270
+ }
271
+
272
+ // @public
273
+ export type ProjectsUpdateResponse = ProjectResource;
274
+
275
+ // @public
276
+ export interface Resource {
277
+ readonly id?: string;
278
+ location?: string;
279
+ readonly name?: string;
280
+ tags?: {
281
+ [propertyName: string]: string;
282
+ };
283
+ readonly type?: string;
284
+ }
285
+
286
+ // @public (undocumented)
287
+ export class VisualStudioResourceProviderClient extends coreClient.ServiceClient {
288
+ // (undocumented)
289
+ $host: string;
290
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: VisualStudioResourceProviderClientOptionalParams);
291
+ // (undocumented)
292
+ accounts: Accounts;
293
+ // (undocumented)
294
+ apiVersion: string;
295
+ // (undocumented)
296
+ extensions: Extensions;
297
+ // (undocumented)
298
+ operations: Operations;
299
+ // (undocumented)
300
+ projects: Projects;
301
+ // (undocumented)
302
+ subscriptionId: string;
303
+ }
304
+
305
+ // @public
306
+ export interface VisualStudioResourceProviderClientOptionalParams extends coreClient.ServiceClientOptions {
307
+ $host?: string;
308
+ apiVersion?: string;
309
+ endpoint?: string;
310
+ }
311
+
312
+ // (No @packageDocumentation comment for this package)
313
+
314
+ ```