@azure/arm-features 3.1.1-alpha.20250717.1 → 3.1.1-alpha.20250718.2

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.
Files changed (43) hide show
  1. package/dist/browser/featureClient.js +37 -45
  2. package/dist/browser/featureClient.js.map +1 -1
  3. package/dist/browser/models/mappers.js +5 -2
  4. package/dist/browser/models/mappers.js.map +1 -1
  5. package/dist/browser/operations/features.js +45 -79
  6. package/dist/browser/operations/features.js.map +1 -1
  7. package/dist/browser/operations/subscriptionFeatureRegistrations.js +45 -79
  8. package/dist/browser/operations/subscriptionFeatureRegistrations.js.map +1 -1
  9. package/dist/browser/pagingHelper.js +2 -4
  10. package/dist/browser/pagingHelper.js.map +1 -1
  11. package/dist/commonjs/featureClient.js +37 -44
  12. package/dist/commonjs/featureClient.js.map +1 -1
  13. package/dist/commonjs/models/mappers.js +5 -2
  14. package/dist/commonjs/models/mappers.js.map +1 -1
  15. package/dist/commonjs/operations/features.js +45 -78
  16. package/dist/commonjs/operations/features.js.map +1 -1
  17. package/dist/commonjs/operations/subscriptionFeatureRegistrations.js +45 -78
  18. package/dist/commonjs/operations/subscriptionFeatureRegistrations.js.map +1 -1
  19. package/dist/commonjs/pagingHelper.js +2 -4
  20. package/dist/commonjs/pagingHelper.js.map +1 -1
  21. package/dist/commonjs/tsdoc-metadata.json +11 -11
  22. package/dist/esm/featureClient.js +37 -45
  23. package/dist/esm/featureClient.js.map +1 -1
  24. package/dist/esm/models/mappers.js +5 -2
  25. package/dist/esm/models/mappers.js.map +1 -1
  26. package/dist/esm/operations/features.js +45 -79
  27. package/dist/esm/operations/features.js.map +1 -1
  28. package/dist/esm/operations/subscriptionFeatureRegistrations.js +45 -79
  29. package/dist/esm/operations/subscriptionFeatureRegistrations.js.map +1 -1
  30. package/dist/esm/pagingHelper.js +2 -4
  31. package/dist/esm/pagingHelper.js.map +1 -1
  32. package/dist/react-native/featureClient.js +37 -45
  33. package/dist/react-native/featureClient.js.map +1 -1
  34. package/dist/react-native/models/mappers.js +5 -2
  35. package/dist/react-native/models/mappers.js.map +1 -1
  36. package/dist/react-native/operations/features.js +45 -79
  37. package/dist/react-native/operations/features.js.map +1 -1
  38. package/dist/react-native/operations/subscriptionFeatureRegistrations.js +45 -79
  39. package/dist/react-native/operations/subscriptionFeatureRegistrations.js.map +1 -1
  40. package/dist/react-native/pagingHelper.js +2 -4
  41. package/dist/react-native/pagingHelper.js.map +1 -1
  42. package/package.json +2 -2
  43. package/review/arm-features-node.api.md +289 -289
@@ -1,289 +1,289 @@
1
- ## API Report File for "@azure/arm-features"
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 AuthorizationProfile {
13
- readonly approvedTime?: Date;
14
- readonly approver?: string;
15
- readonly requestedTime?: Date;
16
- readonly requester?: string;
17
- readonly requesterObjectId?: string;
18
- }
19
-
20
- // @public
21
- export interface ErrorDefinition {
22
- readonly code?: string;
23
- details?: ErrorDefinition[];
24
- readonly message?: string;
25
- }
26
-
27
- // @public
28
- export interface ErrorResponse {
29
- error?: ErrorDefinition;
30
- }
31
-
32
- // @public (undocumented)
33
- export class FeatureClient extends coreClient.ServiceClient {
34
- // (undocumented)
35
- $host: string;
36
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: FeatureClientOptionalParams);
37
- // (undocumented)
38
- apiVersion: string;
39
- // (undocumented)
40
- features: Features;
41
- listOperations(options?: ListOperationsOptionalParams): PagedAsyncIterableIterator<Operation>;
42
- // (undocumented)
43
- subscriptionFeatureRegistrations: SubscriptionFeatureRegistrations;
44
- // (undocumented)
45
- subscriptionId: string;
46
- }
47
-
48
- // @public
49
- export interface FeatureClientOptionalParams extends coreClient.ServiceClientOptions {
50
- $host?: string;
51
- apiVersion?: string;
52
- endpoint?: string;
53
- }
54
-
55
- // @public
56
- export interface FeatureOperationsListResult {
57
- nextLink?: string;
58
- value?: FeatureResult[];
59
- }
60
-
61
- // @public
62
- export interface FeatureProperties {
63
- state?: string;
64
- }
65
-
66
- // @public
67
- export interface FeatureResult {
68
- id?: string;
69
- name?: string;
70
- properties?: FeatureProperties;
71
- type?: string;
72
- }
73
-
74
- // @public
75
- export interface Features {
76
- get(resourceProviderNamespace: string, featureName: string, options?: FeaturesGetOptionalParams): Promise<FeaturesGetResponse>;
77
- list(resourceProviderNamespace: string, options?: FeaturesListOptionalParams): PagedAsyncIterableIterator<FeatureResult>;
78
- listAll(options?: FeaturesListAllOptionalParams): PagedAsyncIterableIterator<FeatureResult>;
79
- register(resourceProviderNamespace: string, featureName: string, options?: FeaturesRegisterOptionalParams): Promise<FeaturesRegisterResponse>;
80
- unregister(resourceProviderNamespace: string, featureName: string, options?: FeaturesUnregisterOptionalParams): Promise<FeaturesUnregisterResponse>;
81
- }
82
-
83
- // @public
84
- export interface FeaturesGetOptionalParams extends coreClient.OperationOptions {
85
- }
86
-
87
- // @public
88
- export type FeaturesGetResponse = FeatureResult;
89
-
90
- // @public
91
- export interface FeaturesListAllNextOptionalParams extends coreClient.OperationOptions {
92
- }
93
-
94
- // @public
95
- export type FeaturesListAllNextResponse = FeatureOperationsListResult;
96
-
97
- // @public
98
- export interface FeaturesListAllOptionalParams extends coreClient.OperationOptions {
99
- }
100
-
101
- // @public
102
- export type FeaturesListAllResponse = FeatureOperationsListResult;
103
-
104
- // @public
105
- export interface FeaturesListNextOptionalParams extends coreClient.OperationOptions {
106
- }
107
-
108
- // @public
109
- export type FeaturesListNextResponse = FeatureOperationsListResult;
110
-
111
- // @public
112
- export interface FeaturesListOptionalParams extends coreClient.OperationOptions {
113
- }
114
-
115
- // @public
116
- export type FeaturesListResponse = FeatureOperationsListResult;
117
-
118
- // @public
119
- export interface FeaturesRegisterOptionalParams extends coreClient.OperationOptions {
120
- }
121
-
122
- // @public
123
- export type FeaturesRegisterResponse = FeatureResult;
124
-
125
- // @public
126
- export interface FeaturesUnregisterOptionalParams extends coreClient.OperationOptions {
127
- }
128
-
129
- // @public
130
- export type FeaturesUnregisterResponse = FeatureResult;
131
-
132
- // @public
133
- export function getContinuationToken(page: unknown): string | undefined;
134
-
135
- // @public
136
- export enum KnownSubscriptionFeatureRegistrationApprovalType {
137
- ApprovalRequired = "ApprovalRequired",
138
- AutoApproval = "AutoApproval",
139
- NotSpecified = "NotSpecified"
140
- }
141
-
142
- // @public
143
- export enum KnownSubscriptionFeatureRegistrationState {
144
- NotRegistered = "NotRegistered",
145
- NotSpecified = "NotSpecified",
146
- Pending = "Pending",
147
- Registered = "Registered",
148
- Registering = "Registering",
149
- Unregistered = "Unregistered",
150
- Unregistering = "Unregistering"
151
- }
152
-
153
- // @public
154
- export interface ListOperationsNextOptionalParams extends coreClient.OperationOptions {
155
- }
156
-
157
- // @public
158
- export type ListOperationsNextResponse = OperationListResult;
159
-
160
- // @public
161
- export interface ListOperationsOptionalParams extends coreClient.OperationOptions {
162
- }
163
-
164
- // @public
165
- export type ListOperationsResponse = OperationListResult;
166
-
167
- // @public
168
- export interface Operation {
169
- display?: OperationDisplay;
170
- name?: string;
171
- }
172
-
173
- // @public
174
- export interface OperationDisplay {
175
- operation?: string;
176
- provider?: string;
177
- resource?: string;
178
- }
179
-
180
- // @public
181
- export interface OperationListResult {
182
- nextLink?: string;
183
- value?: Operation[];
184
- }
185
-
186
- // @public
187
- export interface ProxyResource {
188
- readonly id?: string;
189
- readonly name?: string;
190
- readonly type?: string;
191
- }
192
-
193
- // @public
194
- export interface SubscriptionFeatureRegistration extends ProxyResource {
195
- // (undocumented)
196
- properties?: SubscriptionFeatureRegistrationProperties;
197
- }
198
-
199
- // @public
200
- export type SubscriptionFeatureRegistrationApprovalType = string;
201
-
202
- // @public
203
- export interface SubscriptionFeatureRegistrationList {
204
- nextLink?: string;
205
- value?: SubscriptionFeatureRegistration[];
206
- }
207
-
208
- // @public (undocumented)
209
- export interface SubscriptionFeatureRegistrationProperties {
210
- readonly approvalType?: SubscriptionFeatureRegistrationApprovalType;
211
- authorizationProfile?: AuthorizationProfile;
212
- description?: string;
213
- readonly displayName?: string;
214
- readonly documentationLink?: string;
215
- readonly featureName?: string;
216
- metadata?: {
217
- [propertyName: string]: string;
218
- };
219
- readonly providerNamespace?: string;
220
- readonly registrationDate?: Date;
221
- readonly releaseDate?: Date;
222
- shouldFeatureDisplayInPortal?: boolean;
223
- state?: SubscriptionFeatureRegistrationState;
224
- readonly subscriptionId?: string;
225
- readonly tenantId?: string;
226
- }
227
-
228
- // @public
229
- export interface SubscriptionFeatureRegistrations {
230
- createOrUpdate(providerNamespace: string, featureName: string, options?: SubscriptionFeatureRegistrationsCreateOrUpdateOptionalParams): Promise<SubscriptionFeatureRegistrationsCreateOrUpdateResponse>;
231
- delete(providerNamespace: string, featureName: string, options?: SubscriptionFeatureRegistrationsDeleteOptionalParams): Promise<void>;
232
- get(providerNamespace: string, featureName: string, options?: SubscriptionFeatureRegistrationsGetOptionalParams): Promise<SubscriptionFeatureRegistrationsGetResponse>;
233
- listAllBySubscription(options?: SubscriptionFeatureRegistrationsListAllBySubscriptionOptionalParams): PagedAsyncIterableIterator<SubscriptionFeatureRegistration>;
234
- listBySubscription(providerNamespace: string, options?: SubscriptionFeatureRegistrationsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SubscriptionFeatureRegistration>;
235
- }
236
-
237
- // @public
238
- export interface SubscriptionFeatureRegistrationsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
239
- subscriptionFeatureRegistrationType?: SubscriptionFeatureRegistration;
240
- }
241
-
242
- // @public
243
- export type SubscriptionFeatureRegistrationsCreateOrUpdateResponse = SubscriptionFeatureRegistration;
244
-
245
- // @public
246
- export interface SubscriptionFeatureRegistrationsDeleteOptionalParams extends coreClient.OperationOptions {
247
- }
248
-
249
- // @public
250
- export interface SubscriptionFeatureRegistrationsGetOptionalParams extends coreClient.OperationOptions {
251
- }
252
-
253
- // @public
254
- export type SubscriptionFeatureRegistrationsGetResponse = SubscriptionFeatureRegistration;
255
-
256
- // @public
257
- export interface SubscriptionFeatureRegistrationsListAllBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
258
- }
259
-
260
- // @public
261
- export type SubscriptionFeatureRegistrationsListAllBySubscriptionNextResponse = SubscriptionFeatureRegistrationList;
262
-
263
- // @public
264
- export interface SubscriptionFeatureRegistrationsListAllBySubscriptionOptionalParams extends coreClient.OperationOptions {
265
- }
266
-
267
- // @public
268
- export type SubscriptionFeatureRegistrationsListAllBySubscriptionResponse = SubscriptionFeatureRegistrationList;
269
-
270
- // @public
271
- export interface SubscriptionFeatureRegistrationsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
272
- }
273
-
274
- // @public
275
- export type SubscriptionFeatureRegistrationsListBySubscriptionNextResponse = SubscriptionFeatureRegistrationList;
276
-
277
- // @public
278
- export interface SubscriptionFeatureRegistrationsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
279
- }
280
-
281
- // @public
282
- export type SubscriptionFeatureRegistrationsListBySubscriptionResponse = SubscriptionFeatureRegistrationList;
283
-
284
- // @public
285
- export type SubscriptionFeatureRegistrationState = string;
286
-
287
- // (No @packageDocumentation comment for this package)
288
-
289
- ```
1
+ ## API Report File for "@azure/arm-features"
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 AuthorizationProfile {
13
+ readonly approvedTime?: Date;
14
+ readonly approver?: string;
15
+ readonly requestedTime?: Date;
16
+ readonly requester?: string;
17
+ readonly requesterObjectId?: string;
18
+ }
19
+
20
+ // @public
21
+ export interface ErrorDefinition {
22
+ readonly code?: string;
23
+ details?: ErrorDefinition[];
24
+ readonly message?: string;
25
+ }
26
+
27
+ // @public
28
+ export interface ErrorResponse {
29
+ error?: ErrorDefinition;
30
+ }
31
+
32
+ // @public (undocumented)
33
+ export class FeatureClient extends coreClient.ServiceClient {
34
+ // (undocumented)
35
+ $host: string;
36
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: FeatureClientOptionalParams);
37
+ // (undocumented)
38
+ apiVersion: string;
39
+ // (undocumented)
40
+ features: Features;
41
+ listOperations(options?: ListOperationsOptionalParams): PagedAsyncIterableIterator<Operation>;
42
+ // (undocumented)
43
+ subscriptionFeatureRegistrations: SubscriptionFeatureRegistrations;
44
+ // (undocumented)
45
+ subscriptionId: string;
46
+ }
47
+
48
+ // @public
49
+ export interface FeatureClientOptionalParams extends coreClient.ServiceClientOptions {
50
+ $host?: string;
51
+ apiVersion?: string;
52
+ endpoint?: string;
53
+ }
54
+
55
+ // @public
56
+ export interface FeatureOperationsListResult {
57
+ nextLink?: string;
58
+ value?: FeatureResult[];
59
+ }
60
+
61
+ // @public
62
+ export interface FeatureProperties {
63
+ state?: string;
64
+ }
65
+
66
+ // @public
67
+ export interface FeatureResult {
68
+ id?: string;
69
+ name?: string;
70
+ properties?: FeatureProperties;
71
+ type?: string;
72
+ }
73
+
74
+ // @public
75
+ export interface Features {
76
+ get(resourceProviderNamespace: string, featureName: string, options?: FeaturesGetOptionalParams): Promise<FeaturesGetResponse>;
77
+ list(resourceProviderNamespace: string, options?: FeaturesListOptionalParams): PagedAsyncIterableIterator<FeatureResult>;
78
+ listAll(options?: FeaturesListAllOptionalParams): PagedAsyncIterableIterator<FeatureResult>;
79
+ register(resourceProviderNamespace: string, featureName: string, options?: FeaturesRegisterOptionalParams): Promise<FeaturesRegisterResponse>;
80
+ unregister(resourceProviderNamespace: string, featureName: string, options?: FeaturesUnregisterOptionalParams): Promise<FeaturesUnregisterResponse>;
81
+ }
82
+
83
+ // @public
84
+ export interface FeaturesGetOptionalParams extends coreClient.OperationOptions {
85
+ }
86
+
87
+ // @public
88
+ export type FeaturesGetResponse = FeatureResult;
89
+
90
+ // @public
91
+ export interface FeaturesListAllNextOptionalParams extends coreClient.OperationOptions {
92
+ }
93
+
94
+ // @public
95
+ export type FeaturesListAllNextResponse = FeatureOperationsListResult;
96
+
97
+ // @public
98
+ export interface FeaturesListAllOptionalParams extends coreClient.OperationOptions {
99
+ }
100
+
101
+ // @public
102
+ export type FeaturesListAllResponse = FeatureOperationsListResult;
103
+
104
+ // @public
105
+ export interface FeaturesListNextOptionalParams extends coreClient.OperationOptions {
106
+ }
107
+
108
+ // @public
109
+ export type FeaturesListNextResponse = FeatureOperationsListResult;
110
+
111
+ // @public
112
+ export interface FeaturesListOptionalParams extends coreClient.OperationOptions {
113
+ }
114
+
115
+ // @public
116
+ export type FeaturesListResponse = FeatureOperationsListResult;
117
+
118
+ // @public
119
+ export interface FeaturesRegisterOptionalParams extends coreClient.OperationOptions {
120
+ }
121
+
122
+ // @public
123
+ export type FeaturesRegisterResponse = FeatureResult;
124
+
125
+ // @public
126
+ export interface FeaturesUnregisterOptionalParams extends coreClient.OperationOptions {
127
+ }
128
+
129
+ // @public
130
+ export type FeaturesUnregisterResponse = FeatureResult;
131
+
132
+ // @public
133
+ export function getContinuationToken(page: unknown): string | undefined;
134
+
135
+ // @public
136
+ export enum KnownSubscriptionFeatureRegistrationApprovalType {
137
+ ApprovalRequired = "ApprovalRequired",
138
+ AutoApproval = "AutoApproval",
139
+ NotSpecified = "NotSpecified"
140
+ }
141
+
142
+ // @public
143
+ export enum KnownSubscriptionFeatureRegistrationState {
144
+ NotRegistered = "NotRegistered",
145
+ NotSpecified = "NotSpecified",
146
+ Pending = "Pending",
147
+ Registered = "Registered",
148
+ Registering = "Registering",
149
+ Unregistered = "Unregistered",
150
+ Unregistering = "Unregistering"
151
+ }
152
+
153
+ // @public
154
+ export interface ListOperationsNextOptionalParams extends coreClient.OperationOptions {
155
+ }
156
+
157
+ // @public
158
+ export type ListOperationsNextResponse = OperationListResult;
159
+
160
+ // @public
161
+ export interface ListOperationsOptionalParams extends coreClient.OperationOptions {
162
+ }
163
+
164
+ // @public
165
+ export type ListOperationsResponse = OperationListResult;
166
+
167
+ // @public
168
+ export interface Operation {
169
+ display?: OperationDisplay;
170
+ name?: string;
171
+ }
172
+
173
+ // @public
174
+ export interface OperationDisplay {
175
+ operation?: string;
176
+ provider?: string;
177
+ resource?: string;
178
+ }
179
+
180
+ // @public
181
+ export interface OperationListResult {
182
+ nextLink?: string;
183
+ value?: Operation[];
184
+ }
185
+
186
+ // @public
187
+ export interface ProxyResource {
188
+ readonly id?: string;
189
+ readonly name?: string;
190
+ readonly type?: string;
191
+ }
192
+
193
+ // @public
194
+ export interface SubscriptionFeatureRegistration extends ProxyResource {
195
+ // (undocumented)
196
+ properties?: SubscriptionFeatureRegistrationProperties;
197
+ }
198
+
199
+ // @public
200
+ export type SubscriptionFeatureRegistrationApprovalType = string;
201
+
202
+ // @public
203
+ export interface SubscriptionFeatureRegistrationList {
204
+ nextLink?: string;
205
+ value?: SubscriptionFeatureRegistration[];
206
+ }
207
+
208
+ // @public (undocumented)
209
+ export interface SubscriptionFeatureRegistrationProperties {
210
+ readonly approvalType?: SubscriptionFeatureRegistrationApprovalType;
211
+ authorizationProfile?: AuthorizationProfile;
212
+ description?: string;
213
+ readonly displayName?: string;
214
+ readonly documentationLink?: string;
215
+ readonly featureName?: string;
216
+ metadata?: {
217
+ [propertyName: string]: string;
218
+ };
219
+ readonly providerNamespace?: string;
220
+ readonly registrationDate?: Date;
221
+ readonly releaseDate?: Date;
222
+ shouldFeatureDisplayInPortal?: boolean;
223
+ state?: SubscriptionFeatureRegistrationState;
224
+ readonly subscriptionId?: string;
225
+ readonly tenantId?: string;
226
+ }
227
+
228
+ // @public
229
+ export interface SubscriptionFeatureRegistrations {
230
+ createOrUpdate(providerNamespace: string, featureName: string, options?: SubscriptionFeatureRegistrationsCreateOrUpdateOptionalParams): Promise<SubscriptionFeatureRegistrationsCreateOrUpdateResponse>;
231
+ delete(providerNamespace: string, featureName: string, options?: SubscriptionFeatureRegistrationsDeleteOptionalParams): Promise<void>;
232
+ get(providerNamespace: string, featureName: string, options?: SubscriptionFeatureRegistrationsGetOptionalParams): Promise<SubscriptionFeatureRegistrationsGetResponse>;
233
+ listAllBySubscription(options?: SubscriptionFeatureRegistrationsListAllBySubscriptionOptionalParams): PagedAsyncIterableIterator<SubscriptionFeatureRegistration>;
234
+ listBySubscription(providerNamespace: string, options?: SubscriptionFeatureRegistrationsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SubscriptionFeatureRegistration>;
235
+ }
236
+
237
+ // @public
238
+ export interface SubscriptionFeatureRegistrationsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
239
+ subscriptionFeatureRegistrationType?: SubscriptionFeatureRegistration;
240
+ }
241
+
242
+ // @public
243
+ export type SubscriptionFeatureRegistrationsCreateOrUpdateResponse = SubscriptionFeatureRegistration;
244
+
245
+ // @public
246
+ export interface SubscriptionFeatureRegistrationsDeleteOptionalParams extends coreClient.OperationOptions {
247
+ }
248
+
249
+ // @public
250
+ export interface SubscriptionFeatureRegistrationsGetOptionalParams extends coreClient.OperationOptions {
251
+ }
252
+
253
+ // @public
254
+ export type SubscriptionFeatureRegistrationsGetResponse = SubscriptionFeatureRegistration;
255
+
256
+ // @public
257
+ export interface SubscriptionFeatureRegistrationsListAllBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
258
+ }
259
+
260
+ // @public
261
+ export type SubscriptionFeatureRegistrationsListAllBySubscriptionNextResponse = SubscriptionFeatureRegistrationList;
262
+
263
+ // @public
264
+ export interface SubscriptionFeatureRegistrationsListAllBySubscriptionOptionalParams extends coreClient.OperationOptions {
265
+ }
266
+
267
+ // @public
268
+ export type SubscriptionFeatureRegistrationsListAllBySubscriptionResponse = SubscriptionFeatureRegistrationList;
269
+
270
+ // @public
271
+ export interface SubscriptionFeatureRegistrationsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
272
+ }
273
+
274
+ // @public
275
+ export type SubscriptionFeatureRegistrationsListBySubscriptionNextResponse = SubscriptionFeatureRegistrationList;
276
+
277
+ // @public
278
+ export interface SubscriptionFeatureRegistrationsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
279
+ }
280
+
281
+ // @public
282
+ export type SubscriptionFeatureRegistrationsListBySubscriptionResponse = SubscriptionFeatureRegistrationList;
283
+
284
+ // @public
285
+ export type SubscriptionFeatureRegistrationState = string;
286
+
287
+ // (No @packageDocumentation comment for this package)
288
+
289
+ ```