@azure/arm-graphservices 1.0.1-alpha.20250619.1 → 1.0.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
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for GraphServices.",
6
- "version": "1.0.1-alpha.20250619.1",
6
+ "version": "1.0.1-alpha.20250717.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,256 +1,256 @@
1
- ## API Report File for "@azure/arm-graphservices"
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 { OperationState } from '@azure/core-lro';
10
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
11
- import { SimplePollerLike } from '@azure/core-lro';
12
-
13
- // @public
14
- export interface AccountPatchResource extends TagUpdate {
15
- }
16
-
17
- // @public
18
- export interface AccountResource extends Resource {
19
- properties: AccountResourceProperties;
20
- readonly systemData?: AccountResourceSystemData;
21
- }
22
-
23
- // @public
24
- export interface AccountResourceList {
25
- nextLink?: string;
26
- value?: AccountResource[];
27
- }
28
-
29
- // @public
30
- export interface AccountResourceProperties {
31
- appId: string;
32
- readonly billingPlanId?: string;
33
- readonly provisioningState?: ProvisioningState;
34
- }
35
-
36
- // @public
37
- export interface AccountResourceSystemData {
38
- createdAt?: Date;
39
- createdByType?: CreatedByType;
40
- lastModifiedAt?: Date;
41
- lastModifiedByType?: CreatedByType;
42
- }
43
-
44
- // @public
45
- export interface Accounts {
46
- beginCreateAndUpdate(resourceGroupName: string, resourceName: string, accountResource: AccountResource, options?: AccountsCreateAndUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsCreateAndUpdateResponse>, AccountsCreateAndUpdateResponse>>;
47
- beginCreateAndUpdateAndWait(resourceGroupName: string, resourceName: string, accountResource: AccountResource, options?: AccountsCreateAndUpdateOptionalParams): Promise<AccountsCreateAndUpdateResponse>;
48
- delete(resourceGroupName: string, resourceName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
49
- get(resourceGroupName: string, resourceName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
50
- listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<AccountResource>;
51
- listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<AccountResource>;
52
- update(resourceGroupName: string, resourceName: string, accountResource: AccountPatchResource, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
53
- }
54
-
55
- // @public
56
- export interface AccountsCreateAndUpdateOptionalParams extends coreClient.OperationOptions {
57
- resumeFrom?: string;
58
- updateIntervalInMs?: number;
59
- }
60
-
61
- // @public
62
- export type AccountsCreateAndUpdateResponse = 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 AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
77
- }
78
-
79
- // @public
80
- export type AccountsListByResourceGroupNextResponse = AccountResourceList;
81
-
82
- // @public
83
- export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
84
- }
85
-
86
- // @public
87
- export type AccountsListByResourceGroupResponse = AccountResourceList;
88
-
89
- // @public
90
- export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
91
- }
92
-
93
- // @public
94
- export type AccountsListBySubscriptionNextResponse = AccountResourceList;
95
-
96
- // @public
97
- export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
98
- }
99
-
100
- // @public
101
- export type AccountsListBySubscriptionResponse = AccountResourceList;
102
-
103
- // @public
104
- export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
105
- }
106
-
107
- // @public
108
- export type AccountsUpdateResponse = AccountResource;
109
-
110
- // @public
111
- export type ActionType = string;
112
-
113
- // @public
114
- export type CreatedByType = string;
115
-
116
- // @public
117
- export interface ErrorAdditionalInfo {
118
- readonly info?: Record<string, unknown>;
119
- readonly type?: string;
120
- }
121
-
122
- // @public
123
- export interface ErrorDetail {
124
- readonly additionalInfo?: ErrorAdditionalInfo[];
125
- readonly code?: string;
126
- readonly details?: ErrorDetail[];
127
- readonly message?: string;
128
- readonly target?: string;
129
- }
130
-
131
- // @public
132
- export interface ErrorResponse {
133
- error?: ErrorDetail;
134
- }
135
-
136
- // @public
137
- export function getContinuationToken(page: unknown): string | undefined;
138
-
139
- // @public (undocumented)
140
- export class GraphServices extends coreClient.ServiceClient {
141
- // (undocumented)
142
- $host: string;
143
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: GraphServicesOptionalParams);
144
- // (undocumented)
145
- accounts: Accounts;
146
- // (undocumented)
147
- apiVersion: string;
148
- // (undocumented)
149
- operations: Operations;
150
- // (undocumented)
151
- subscriptionId: string;
152
- }
153
-
154
- // @public
155
- export interface GraphServicesOptionalParams extends coreClient.ServiceClientOptions {
156
- $host?: string;
157
- apiVersion?: string;
158
- endpoint?: string;
159
- }
160
-
161
- // @public
162
- export enum KnownActionType {
163
- Internal = "Internal"
164
- }
165
-
166
- // @public
167
- export enum KnownCreatedByType {
168
- Application = "Application",
169
- Key = "Key",
170
- ManagedIdentity = "ManagedIdentity",
171
- User = "User"
172
- }
173
-
174
- // @public
175
- export enum KnownOrigin {
176
- System = "system",
177
- User = "user",
178
- UserSystem = "user,system"
179
- }
180
-
181
- // @public
182
- export enum KnownProvisioningState {
183
- Canceled = "Canceled",
184
- Failed = "Failed",
185
- Succeeded = "Succeeded"
186
- }
187
-
188
- // @public
189
- export interface Operation {
190
- readonly actionType?: ActionType;
191
- display?: OperationDisplay;
192
- readonly isDataAction?: boolean;
193
- readonly name?: string;
194
- readonly origin?: Origin;
195
- }
196
-
197
- // @public
198
- export interface OperationDisplay {
199
- readonly description?: string;
200
- readonly operation?: string;
201
- readonly provider?: string;
202
- readonly resource?: string;
203
- }
204
-
205
- // @public
206
- export interface OperationListResult {
207
- readonly nextLink?: string;
208
- readonly value?: Operation[];
209
- }
210
-
211
- // @public
212
- export interface Operations {
213
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
214
- }
215
-
216
- // @public
217
- export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
218
- }
219
-
220
- // @public
221
- export type OperationsListNextResponse = OperationListResult;
222
-
223
- // @public
224
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
225
- }
226
-
227
- // @public
228
- export type OperationsListResponse = OperationListResult;
229
-
230
- // @public
231
- export type Origin = string;
232
-
233
- // @public
234
- export type ProvisioningState = string;
235
-
236
- // @public
237
- export interface Resource {
238
- readonly id?: string;
239
- location?: string;
240
- readonly name?: string;
241
- tags?: {
242
- [propertyName: string]: string;
243
- };
244
- readonly type?: string;
245
- }
246
-
247
- // @public
248
- export interface TagUpdate {
249
- tags?: {
250
- [propertyName: string]: string;
251
- };
252
- }
253
-
254
- // (No @packageDocumentation comment for this package)
255
-
256
- ```
1
+ ## API Report File for "@azure/arm-graphservices"
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 { OperationState } from '@azure/core-lro';
10
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
11
+ import { SimplePollerLike } from '@azure/core-lro';
12
+
13
+ // @public
14
+ export interface AccountPatchResource extends TagUpdate {
15
+ }
16
+
17
+ // @public
18
+ export interface AccountResource extends Resource {
19
+ properties: AccountResourceProperties;
20
+ readonly systemData?: AccountResourceSystemData;
21
+ }
22
+
23
+ // @public
24
+ export interface AccountResourceList {
25
+ nextLink?: string;
26
+ value?: AccountResource[];
27
+ }
28
+
29
+ // @public
30
+ export interface AccountResourceProperties {
31
+ appId: string;
32
+ readonly billingPlanId?: string;
33
+ readonly provisioningState?: ProvisioningState;
34
+ }
35
+
36
+ // @public
37
+ export interface AccountResourceSystemData {
38
+ createdAt?: Date;
39
+ createdByType?: CreatedByType;
40
+ lastModifiedAt?: Date;
41
+ lastModifiedByType?: CreatedByType;
42
+ }
43
+
44
+ // @public
45
+ export interface Accounts {
46
+ beginCreateAndUpdate(resourceGroupName: string, resourceName: string, accountResource: AccountResource, options?: AccountsCreateAndUpdateOptionalParams): Promise<SimplePollerLike<OperationState<AccountsCreateAndUpdateResponse>, AccountsCreateAndUpdateResponse>>;
47
+ beginCreateAndUpdateAndWait(resourceGroupName: string, resourceName: string, accountResource: AccountResource, options?: AccountsCreateAndUpdateOptionalParams): Promise<AccountsCreateAndUpdateResponse>;
48
+ delete(resourceGroupName: string, resourceName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
49
+ get(resourceGroupName: string, resourceName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
50
+ listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<AccountResource>;
51
+ listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<AccountResource>;
52
+ update(resourceGroupName: string, resourceName: string, accountResource: AccountPatchResource, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
53
+ }
54
+
55
+ // @public
56
+ export interface AccountsCreateAndUpdateOptionalParams extends coreClient.OperationOptions {
57
+ resumeFrom?: string;
58
+ updateIntervalInMs?: number;
59
+ }
60
+
61
+ // @public
62
+ export type AccountsCreateAndUpdateResponse = 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 AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
77
+ }
78
+
79
+ // @public
80
+ export type AccountsListByResourceGroupNextResponse = AccountResourceList;
81
+
82
+ // @public
83
+ export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
84
+ }
85
+
86
+ // @public
87
+ export type AccountsListByResourceGroupResponse = AccountResourceList;
88
+
89
+ // @public
90
+ export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
91
+ }
92
+
93
+ // @public
94
+ export type AccountsListBySubscriptionNextResponse = AccountResourceList;
95
+
96
+ // @public
97
+ export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
98
+ }
99
+
100
+ // @public
101
+ export type AccountsListBySubscriptionResponse = AccountResourceList;
102
+
103
+ // @public
104
+ export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
105
+ }
106
+
107
+ // @public
108
+ export type AccountsUpdateResponse = AccountResource;
109
+
110
+ // @public
111
+ export type ActionType = string;
112
+
113
+ // @public
114
+ export type CreatedByType = string;
115
+
116
+ // @public
117
+ export interface ErrorAdditionalInfo {
118
+ readonly info?: Record<string, unknown>;
119
+ readonly type?: string;
120
+ }
121
+
122
+ // @public
123
+ export interface ErrorDetail {
124
+ readonly additionalInfo?: ErrorAdditionalInfo[];
125
+ readonly code?: string;
126
+ readonly details?: ErrorDetail[];
127
+ readonly message?: string;
128
+ readonly target?: string;
129
+ }
130
+
131
+ // @public
132
+ export interface ErrorResponse {
133
+ error?: ErrorDetail;
134
+ }
135
+
136
+ // @public
137
+ export function getContinuationToken(page: unknown): string | undefined;
138
+
139
+ // @public (undocumented)
140
+ export class GraphServices extends coreClient.ServiceClient {
141
+ // (undocumented)
142
+ $host: string;
143
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: GraphServicesOptionalParams);
144
+ // (undocumented)
145
+ accounts: Accounts;
146
+ // (undocumented)
147
+ apiVersion: string;
148
+ // (undocumented)
149
+ operations: Operations;
150
+ // (undocumented)
151
+ subscriptionId: string;
152
+ }
153
+
154
+ // @public
155
+ export interface GraphServicesOptionalParams extends coreClient.ServiceClientOptions {
156
+ $host?: string;
157
+ apiVersion?: string;
158
+ endpoint?: string;
159
+ }
160
+
161
+ // @public
162
+ export enum KnownActionType {
163
+ Internal = "Internal"
164
+ }
165
+
166
+ // @public
167
+ export enum KnownCreatedByType {
168
+ Application = "Application",
169
+ Key = "Key",
170
+ ManagedIdentity = "ManagedIdentity",
171
+ User = "User"
172
+ }
173
+
174
+ // @public
175
+ export enum KnownOrigin {
176
+ System = "system",
177
+ User = "user",
178
+ UserSystem = "user,system"
179
+ }
180
+
181
+ // @public
182
+ export enum KnownProvisioningState {
183
+ Canceled = "Canceled",
184
+ Failed = "Failed",
185
+ Succeeded = "Succeeded"
186
+ }
187
+
188
+ // @public
189
+ export interface Operation {
190
+ readonly actionType?: ActionType;
191
+ display?: OperationDisplay;
192
+ readonly isDataAction?: boolean;
193
+ readonly name?: string;
194
+ readonly origin?: Origin;
195
+ }
196
+
197
+ // @public
198
+ export interface OperationDisplay {
199
+ readonly description?: string;
200
+ readonly operation?: string;
201
+ readonly provider?: string;
202
+ readonly resource?: string;
203
+ }
204
+
205
+ // @public
206
+ export interface OperationListResult {
207
+ readonly nextLink?: string;
208
+ readonly value?: Operation[];
209
+ }
210
+
211
+ // @public
212
+ export interface Operations {
213
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
214
+ }
215
+
216
+ // @public
217
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
218
+ }
219
+
220
+ // @public
221
+ export type OperationsListNextResponse = OperationListResult;
222
+
223
+ // @public
224
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
225
+ }
226
+
227
+ // @public
228
+ export type OperationsListResponse = OperationListResult;
229
+
230
+ // @public
231
+ export type Origin = string;
232
+
233
+ // @public
234
+ export type ProvisioningState = string;
235
+
236
+ // @public
237
+ export interface Resource {
238
+ readonly id?: string;
239
+ location?: string;
240
+ readonly name?: string;
241
+ tags?: {
242
+ [propertyName: string]: string;
243
+ };
244
+ readonly type?: string;
245
+ }
246
+
247
+ // @public
248
+ export interface TagUpdate {
249
+ tags?: {
250
+ [propertyName: string]: string;
251
+ };
252
+ }
253
+
254
+ // (No @packageDocumentation comment for this package)
255
+
256
+ ```