@azure/arm-appconfiguration 2.0.0 → 3.0.0-beta.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.
Files changed (176) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +70 -80
  5. package/dist/index.js +3105 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.min.js +1 -0
  8. package/dist/index.min.js.map +1 -0
  9. package/dist-esm/src/appConfigurationManagementClient.d.ts +22 -0
  10. package/dist-esm/src/appConfigurationManagementClient.d.ts.map +1 -0
  11. package/dist-esm/src/appConfigurationManagementClient.js +55 -0
  12. package/dist-esm/src/appConfigurationManagementClient.js.map +1 -0
  13. package/dist-esm/src/index.d.ts +5 -0
  14. package/dist-esm/src/index.d.ts.map +1 -0
  15. package/dist-esm/src/index.js +12 -0
  16. package/dist-esm/src/index.js.map +1 -0
  17. package/dist-esm/src/lroImpl.d.ts +16 -0
  18. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  19. package/dist-esm/src/lroImpl.js +29 -0
  20. package/dist-esm/src/lroImpl.js.map +1 -0
  21. package/dist-esm/src/models/index.d.ts +826 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +59 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +38 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/{esm → dist-esm/src}/models/mappers.js +464 -547
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +20 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/dist-esm/src/models/parameters.js +162 -0
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/configurationStores.d.ts +139 -0
  34. package/dist-esm/src/operations/configurationStores.d.ts.map +1 -0
  35. package/dist-esm/src/operations/configurationStores.js +655 -0
  36. package/dist-esm/src/operations/configurationStores.js.map +1 -0
  37. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  38. package/dist-esm/src/operations/index.d.ts.map +1 -0
  39. package/{esm → dist-esm/src}/operations/index.js +1 -2
  40. package/dist-esm/src/operations/index.js.map +1 -0
  41. package/dist-esm/src/operations/keyValues.d.ts +76 -0
  42. package/dist-esm/src/operations/keyValues.d.ts.map +1 -0
  43. package/dist-esm/src/operations/keyValues.js +284 -0
  44. package/dist-esm/src/operations/keyValues.js.map +1 -0
  45. package/dist-esm/src/operations/operations.d.ts +39 -0
  46. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  47. package/dist-esm/src/operations/operations.js +147 -0
  48. package/dist-esm/src/operations/operations.js.map +1 -0
  49. package/dist-esm/src/operations/privateEndpointConnections.d.ts +84 -0
  50. package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -0
  51. package/dist-esm/src/operations/privateEndpointConnections.js +350 -0
  52. package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -0
  53. package/dist-esm/src/operations/privateLinkResources.d.ts +47 -0
  54. package/dist-esm/src/operations/privateLinkResources.d.ts.map +1 -0
  55. package/dist-esm/src/operations/privateLinkResources.js +170 -0
  56. package/dist-esm/src/operations/privateLinkResources.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/configurationStores.d.ts +86 -0
  58. package/dist-esm/src/operationsInterfaces/configurationStores.d.ts.map +1 -0
  59. package/{src/models/privateLinkResourcesMappers.ts → dist-esm/src/operationsInterfaces/configurationStores.js} +2 -8
  60. package/dist-esm/src/operationsInterfaces/configurationStores.js.map +1 -0
  61. package/dist-esm/src/operationsInterfaces/index.d.ts +6 -0
  62. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  63. package/dist-esm/src/operationsInterfaces/index.js +13 -0
  64. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  65. package/dist-esm/src/operationsInterfaces/keyValues.d.ts +50 -0
  66. package/dist-esm/src/operationsInterfaces/keyValues.d.ts.map +1 -0
  67. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/keyValues.js} +2 -1
  68. package/dist-esm/src/operationsInterfaces/keyValues.js.map +1 -0
  69. package/dist-esm/src/operationsInterfaces/operations.d.ts +18 -0
  70. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  71. package/{esm/models/privateLinkResourcesMappers.js → dist-esm/src/operationsInterfaces/operations.js} +2 -2
  72. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  73. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts +58 -0
  74. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts.map +1 -0
  75. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js +9 -0
  76. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js.map +1 -0
  77. package/dist-esm/src/operationsInterfaces/privateLinkResources.d.ts +21 -0
  78. package/dist-esm/src/operationsInterfaces/privateLinkResources.d.ts.map +1 -0
  79. package/dist-esm/src/operationsInterfaces/privateLinkResources.js +9 -0
  80. package/dist-esm/src/operationsInterfaces/privateLinkResources.js.map +1 -0
  81. package/dist-esm/test/sampleTest.d.ts +2 -0
  82. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  83. package/dist-esm/test/sampleTest.js +40 -0
  84. package/dist-esm/test/sampleTest.js.map +1 -0
  85. package/package.json +65 -32
  86. package/review/arm-appconfiguration.api.md +665 -0
  87. package/rollup.config.js +181 -30
  88. package/src/appConfigurationManagementClient.ts +80 -40
  89. package/src/index.ts +12 -0
  90. package/src/lroImpl.ts +34 -0
  91. package/src/models/index.ts +644 -1242
  92. package/src/models/mappers.ts +467 -557
  93. package/src/models/parameters.ts +119 -46
  94. package/src/operations/configurationStores.ts +638 -419
  95. package/src/operations/index.ts +1 -2
  96. package/src/operations/keyValues.ts +266 -209
  97. package/src/operations/operations.ts +108 -121
  98. package/src/operations/privateEndpointConnections.ts +343 -181
  99. package/src/operations/privateLinkResources.ts +157 -123
  100. package/src/operationsInterfaces/configurationStores.ts +168 -0
  101. package/src/operationsInterfaces/index.ts +13 -0
  102. package/src/operationsInterfaces/keyValues.ts +91 -0
  103. package/src/operationsInterfaces/operations.ts +38 -0
  104. package/src/operationsInterfaces/privateEndpointConnections.ts +111 -0
  105. package/src/operationsInterfaces/privateLinkResources.ts +44 -0
  106. package/tsconfig.json +3 -3
  107. package/types/arm-appconfiguration.d.ts +1171 -0
  108. package/types/tsdoc-metadata.json +11 -0
  109. package/dist/arm-appconfiguration.js +0 -2849
  110. package/dist/arm-appconfiguration.js.map +0 -1
  111. package/dist/arm-appconfiguration.min.js +0 -1
  112. package/dist/arm-appconfiguration.min.js.map +0 -1
  113. package/esm/appConfigurationManagementClient.d.ts +0 -28
  114. package/esm/appConfigurationManagementClient.d.ts.map +0 -1
  115. package/esm/appConfigurationManagementClient.js +0 -41
  116. package/esm/appConfigurationManagementClient.js.map +0 -1
  117. package/esm/appConfigurationManagementClientContext.d.ts +0 -22
  118. package/esm/appConfigurationManagementClientContext.d.ts.map +0 -1
  119. package/esm/appConfigurationManagementClientContext.js +0 -60
  120. package/esm/appConfigurationManagementClientContext.js.map +0 -1
  121. package/esm/models/configurationStoresMappers.d.ts +0 -2
  122. package/esm/models/configurationStoresMappers.d.ts.map +0 -1
  123. package/esm/models/configurationStoresMappers.js +0 -9
  124. package/esm/models/configurationStoresMappers.js.map +0 -1
  125. package/esm/models/index.d.ts +0 -1433
  126. package/esm/models/index.d.ts.map +0 -1
  127. package/esm/models/index.js.map +0 -1
  128. package/esm/models/keyValuesMappers.d.ts +0 -2
  129. package/esm/models/keyValuesMappers.d.ts.map +0 -1
  130. package/esm/models/keyValuesMappers.js +0 -9
  131. package/esm/models/keyValuesMappers.js.map +0 -1
  132. package/esm/models/mappers.d.ts +0 -42
  133. package/esm/models/mappers.d.ts.map +0 -1
  134. package/esm/models/mappers.js.map +0 -1
  135. package/esm/models/operationsMappers.d.ts +0 -2
  136. package/esm/models/operationsMappers.d.ts.map +0 -1
  137. package/esm/models/operationsMappers.js +0 -9
  138. package/esm/models/operationsMappers.js.map +0 -1
  139. package/esm/models/parameters.d.ts +0 -12
  140. package/esm/models/parameters.d.ts.map +0 -1
  141. package/esm/models/parameters.js +0 -117
  142. package/esm/models/parameters.js.map +0 -1
  143. package/esm/models/privateEndpointConnectionsMappers.d.ts +0 -2
  144. package/esm/models/privateEndpointConnectionsMappers.d.ts.map +0 -1
  145. package/esm/models/privateEndpointConnectionsMappers.js +0 -9
  146. package/esm/models/privateEndpointConnectionsMappers.js.map +0 -1
  147. package/esm/models/privateLinkResourcesMappers.d.ts +0 -2
  148. package/esm/models/privateLinkResourcesMappers.d.ts.map +0 -1
  149. package/esm/models/privateLinkResourcesMappers.js.map +0 -1
  150. package/esm/operations/configurationStores.d.ts +0 -219
  151. package/esm/operations/configurationStores.d.ts.map +0 -1
  152. package/esm/operations/configurationStores.js +0 -441
  153. package/esm/operations/configurationStores.js.map +0 -1
  154. package/esm/operations/index.d.ts.map +0 -1
  155. package/esm/operations/index.js.map +0 -1
  156. package/esm/operations/keyValues.d.ts +0 -127
  157. package/esm/operations/keyValues.d.ts.map +0 -1
  158. package/esm/operations/keyValues.js +0 -216
  159. package/esm/operations/keyValues.js.map +0 -1
  160. package/esm/operations/operations.d.ts +0 -67
  161. package/esm/operations/operations.d.ts.map +0 -1
  162. package/esm/operations/operations.js +0 -114
  163. package/esm/operations/operations.js.map +0 -1
  164. package/esm/operations/privateEndpointConnections.d.ts +0 -117
  165. package/esm/operations/privateEndpointConnections.d.ts.map +0 -1
  166. package/esm/operations/privateEndpointConnections.js +0 -238
  167. package/esm/operations/privateEndpointConnections.js.map +0 -1
  168. package/esm/operations/privateLinkResources.d.ts +0 -76
  169. package/esm/operations/privateLinkResources.d.ts.map +0 -1
  170. package/esm/operations/privateLinkResources.js +0 -119
  171. package/esm/operations/privateLinkResources.js.map +0 -1
  172. package/src/appConfigurationManagementClientContext.ts +0 -67
  173. package/src/models/configurationStoresMappers.ts +0 -35
  174. package/src/models/keyValuesMappers.ts +0 -31
  175. package/src/models/operationsMappers.ts +0 -23
  176. package/src/models/privateEndpointConnectionsMappers.ts +0 -31
@@ -0,0 +1,665 @@
1
+ ## API Report File for "@azure/arm-appconfiguration"
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
+ import { PollerLike } from '@azure/core-lro';
11
+ import { PollOperationState } from '@azure/core-lro';
12
+
13
+ // @public
14
+ export type ActionsRequired = string;
15
+
16
+ // @public
17
+ export interface ApiKey {
18
+ readonly connectionString?: string;
19
+ readonly id?: string;
20
+ readonly lastModified?: Date;
21
+ readonly name?: string;
22
+ readonly readOnly?: boolean;
23
+ readonly value?: string;
24
+ }
25
+
26
+ // @public
27
+ export interface ApiKeyListResult {
28
+ nextLink?: string;
29
+ value?: ApiKey[];
30
+ }
31
+
32
+ // @public (undocumented)
33
+ export class AppConfigurationManagementClient extends coreClient.ServiceClient {
34
+ // (undocumented)
35
+ $host: string;
36
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AppConfigurationManagementClientOptionalParams);
37
+ // (undocumented)
38
+ apiVersion: string;
39
+ // (undocumented)
40
+ configurationStores: ConfigurationStores;
41
+ // (undocumented)
42
+ keyValues: KeyValues;
43
+ // (undocumented)
44
+ operations: Operations;
45
+ // (undocumented)
46
+ privateEndpointConnections: PrivateEndpointConnections;
47
+ // (undocumented)
48
+ privateLinkResources: PrivateLinkResources;
49
+ // (undocumented)
50
+ subscriptionId: string;
51
+ }
52
+
53
+ // @public
54
+ export interface AppConfigurationManagementClientOptionalParams extends coreClient.ServiceClientOptions {
55
+ $host?: string;
56
+ apiVersion?: string;
57
+ endpoint?: string;
58
+ }
59
+
60
+ // @public
61
+ export interface CheckNameAvailabilityParameters {
62
+ name: string;
63
+ type: ConfigurationResourceType;
64
+ }
65
+
66
+ // @public
67
+ export type ConfigurationResourceType = string;
68
+
69
+ // @public
70
+ export type ConfigurationStore = TrackedResource & {
71
+ identity?: ResourceIdentity;
72
+ sku: Sku;
73
+ readonly systemData?: SystemData;
74
+ readonly provisioningState?: ProvisioningState;
75
+ readonly creationDate?: Date;
76
+ readonly endpoint?: string;
77
+ encryption?: EncryptionProperties;
78
+ readonly privateEndpointConnections?: PrivateEndpointConnectionReference[];
79
+ publicNetworkAccess?: PublicNetworkAccess;
80
+ disableLocalAuth?: boolean;
81
+ };
82
+
83
+ // @public
84
+ export interface ConfigurationStoreListResult {
85
+ nextLink?: string;
86
+ value?: ConfigurationStore[];
87
+ }
88
+
89
+ // @public
90
+ export interface ConfigurationStores {
91
+ beginCreate(resourceGroupName: string, configStoreName: string, configStoreCreationParameters: ConfigurationStore, options?: ConfigurationStoresCreateOptionalParams): Promise<PollerLike<PollOperationState<ConfigurationStoresCreateResponse>, ConfigurationStoresCreateResponse>>;
92
+ beginCreateAndWait(resourceGroupName: string, configStoreName: string, configStoreCreationParameters: ConfigurationStore, options?: ConfigurationStoresCreateOptionalParams): Promise<ConfigurationStoresCreateResponse>;
93
+ beginDelete(resourceGroupName: string, configStoreName: string, options?: ConfigurationStoresDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
94
+ beginDeleteAndWait(resourceGroupName: string, configStoreName: string, options?: ConfigurationStoresDeleteOptionalParams): Promise<void>;
95
+ beginUpdate(resourceGroupName: string, configStoreName: string, configStoreUpdateParameters: ConfigurationStoreUpdateParameters, options?: ConfigurationStoresUpdateOptionalParams): Promise<PollerLike<PollOperationState<ConfigurationStoresUpdateResponse>, ConfigurationStoresUpdateResponse>>;
96
+ beginUpdateAndWait(resourceGroupName: string, configStoreName: string, configStoreUpdateParameters: ConfigurationStoreUpdateParameters, options?: ConfigurationStoresUpdateOptionalParams): Promise<ConfigurationStoresUpdateResponse>;
97
+ get(resourceGroupName: string, configStoreName: string, options?: ConfigurationStoresGetOptionalParams): Promise<ConfigurationStoresGetResponse>;
98
+ list(options?: ConfigurationStoresListOptionalParams): PagedAsyncIterableIterator<ConfigurationStore>;
99
+ listByResourceGroup(resourceGroupName: string, options?: ConfigurationStoresListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ConfigurationStore>;
100
+ listKeys(resourceGroupName: string, configStoreName: string, options?: ConfigurationStoresListKeysOptionalParams): PagedAsyncIterableIterator<ApiKey>;
101
+ regenerateKey(resourceGroupName: string, configStoreName: string, regenerateKeyParameters: RegenerateKeyParameters, options?: ConfigurationStoresRegenerateKeyOptionalParams): Promise<ConfigurationStoresRegenerateKeyResponse>;
102
+ }
103
+
104
+ // @public
105
+ export interface ConfigurationStoresCreateOptionalParams extends coreClient.OperationOptions {
106
+ resumeFrom?: string;
107
+ updateIntervalInMs?: number;
108
+ }
109
+
110
+ // @public
111
+ export type ConfigurationStoresCreateResponse = ConfigurationStore;
112
+
113
+ // @public
114
+ export interface ConfigurationStoresDeleteOptionalParams extends coreClient.OperationOptions {
115
+ resumeFrom?: string;
116
+ updateIntervalInMs?: number;
117
+ }
118
+
119
+ // @public
120
+ export interface ConfigurationStoresGetOptionalParams extends coreClient.OperationOptions {
121
+ }
122
+
123
+ // @public
124
+ export type ConfigurationStoresGetResponse = ConfigurationStore;
125
+
126
+ // @public
127
+ export interface ConfigurationStoresListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
128
+ skipToken?: string;
129
+ }
130
+
131
+ // @public
132
+ export type ConfigurationStoresListByResourceGroupNextResponse = ConfigurationStoreListResult;
133
+
134
+ // @public
135
+ export interface ConfigurationStoresListByResourceGroupOptionalParams extends coreClient.OperationOptions {
136
+ skipToken?: string;
137
+ }
138
+
139
+ // @public
140
+ export type ConfigurationStoresListByResourceGroupResponse = ConfigurationStoreListResult;
141
+
142
+ // @public
143
+ export interface ConfigurationStoresListKeysNextOptionalParams extends coreClient.OperationOptions {
144
+ skipToken?: string;
145
+ }
146
+
147
+ // @public
148
+ export type ConfigurationStoresListKeysNextResponse = ApiKeyListResult;
149
+
150
+ // @public
151
+ export interface ConfigurationStoresListKeysOptionalParams extends coreClient.OperationOptions {
152
+ skipToken?: string;
153
+ }
154
+
155
+ // @public
156
+ export type ConfigurationStoresListKeysResponse = ApiKeyListResult;
157
+
158
+ // @public
159
+ export interface ConfigurationStoresListNextOptionalParams extends coreClient.OperationOptions {
160
+ skipToken?: string;
161
+ }
162
+
163
+ // @public
164
+ export type ConfigurationStoresListNextResponse = ConfigurationStoreListResult;
165
+
166
+ // @public
167
+ export interface ConfigurationStoresListOptionalParams extends coreClient.OperationOptions {
168
+ skipToken?: string;
169
+ }
170
+
171
+ // @public
172
+ export type ConfigurationStoresListResponse = ConfigurationStoreListResult;
173
+
174
+ // @public
175
+ export interface ConfigurationStoresRegenerateKeyOptionalParams extends coreClient.OperationOptions {
176
+ }
177
+
178
+ // @public
179
+ export type ConfigurationStoresRegenerateKeyResponse = ApiKey;
180
+
181
+ // @public
182
+ export interface ConfigurationStoresUpdateOptionalParams extends coreClient.OperationOptions {
183
+ resumeFrom?: string;
184
+ updateIntervalInMs?: number;
185
+ }
186
+
187
+ // @public
188
+ export type ConfigurationStoresUpdateResponse = ConfigurationStore;
189
+
190
+ // @public
191
+ export interface ConfigurationStoreUpdateParameters {
192
+ disableLocalAuth?: boolean;
193
+ encryption?: EncryptionProperties;
194
+ identity?: ResourceIdentity;
195
+ publicNetworkAccess?: PublicNetworkAccess;
196
+ sku?: Sku;
197
+ tags?: {
198
+ [propertyName: string]: string;
199
+ };
200
+ }
201
+
202
+ // @public
203
+ export type ConnectionStatus = string;
204
+
205
+ // @public
206
+ export type CreatedByType = string;
207
+
208
+ // @public
209
+ export interface EncryptionProperties {
210
+ keyVaultProperties?: KeyVaultProperties;
211
+ }
212
+
213
+ // @public
214
+ export interface ErrorAdditionalInfo {
215
+ readonly info?: Record<string, unknown>;
216
+ readonly type?: string;
217
+ }
218
+
219
+ // @public
220
+ export interface ErrorDetails {
221
+ readonly additionalInfo?: ErrorAdditionalInfo[];
222
+ readonly code?: string;
223
+ readonly message?: string;
224
+ }
225
+
226
+ // @public
227
+ export interface ErrorResponse {
228
+ error?: ErrorDetails;
229
+ }
230
+
231
+ // @public
232
+ export type IdentityType = string;
233
+
234
+ // @public
235
+ export interface KeyValue {
236
+ contentType?: string;
237
+ readonly eTag?: string;
238
+ readonly id?: string;
239
+ readonly key?: string;
240
+ readonly label?: string;
241
+ readonly lastModified?: Date;
242
+ readonly locked?: boolean;
243
+ readonly name?: string;
244
+ tags?: {
245
+ [propertyName: string]: string;
246
+ };
247
+ readonly type?: string;
248
+ value?: string;
249
+ }
250
+
251
+ // @public
252
+ export interface KeyValueListResult {
253
+ nextLink?: string;
254
+ value?: KeyValue[];
255
+ }
256
+
257
+ // @public
258
+ export interface KeyValues {
259
+ beginDelete(resourceGroupName: string, configStoreName: string, keyValueName: string, options?: KeyValuesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
260
+ beginDeleteAndWait(resourceGroupName: string, configStoreName: string, keyValueName: string, options?: KeyValuesDeleteOptionalParams): Promise<void>;
261
+ createOrUpdate(resourceGroupName: string, configStoreName: string, keyValueName: string, options?: KeyValuesCreateOrUpdateOptionalParams): Promise<KeyValuesCreateOrUpdateResponse>;
262
+ get(resourceGroupName: string, configStoreName: string, keyValueName: string, options?: KeyValuesGetOptionalParams): Promise<KeyValuesGetResponse>;
263
+ listByConfigurationStore(resourceGroupName: string, configStoreName: string, options?: KeyValuesListByConfigurationStoreOptionalParams): PagedAsyncIterableIterator<KeyValue>;
264
+ }
265
+
266
+ // @public
267
+ export interface KeyValuesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
268
+ keyValueParameters?: KeyValue;
269
+ }
270
+
271
+ // @public
272
+ export type KeyValuesCreateOrUpdateResponse = KeyValue;
273
+
274
+ // @public
275
+ export interface KeyValuesDeleteOptionalParams extends coreClient.OperationOptions {
276
+ resumeFrom?: string;
277
+ updateIntervalInMs?: number;
278
+ }
279
+
280
+ // @public
281
+ export interface KeyValuesGetOptionalParams extends coreClient.OperationOptions {
282
+ }
283
+
284
+ // @public
285
+ export type KeyValuesGetResponse = KeyValue;
286
+
287
+ // @public
288
+ export interface KeyValuesListByConfigurationStoreNextOptionalParams extends coreClient.OperationOptions {
289
+ skipToken?: string;
290
+ }
291
+
292
+ // @public
293
+ export type KeyValuesListByConfigurationStoreNextResponse = KeyValueListResult;
294
+
295
+ // @public
296
+ export interface KeyValuesListByConfigurationStoreOptionalParams extends coreClient.OperationOptions {
297
+ skipToken?: string;
298
+ }
299
+
300
+ // @public
301
+ export type KeyValuesListByConfigurationStoreResponse = KeyValueListResult;
302
+
303
+ // @public
304
+ export interface KeyVaultProperties {
305
+ identityClientId?: string;
306
+ keyIdentifier?: string;
307
+ }
308
+
309
+ // @public
310
+ export enum KnownActionsRequired {
311
+ // (undocumented)
312
+ None = "None",
313
+ // (undocumented)
314
+ Recreate = "Recreate"
315
+ }
316
+
317
+ // @public
318
+ export enum KnownConfigurationResourceType {
319
+ // (undocumented)
320
+ MicrosoftAppConfigurationConfigurationStores = "Microsoft.AppConfiguration/configurationStores"
321
+ }
322
+
323
+ // @public
324
+ export enum KnownConnectionStatus {
325
+ // (undocumented)
326
+ Approved = "Approved",
327
+ // (undocumented)
328
+ Disconnected = "Disconnected",
329
+ // (undocumented)
330
+ Pending = "Pending",
331
+ // (undocumented)
332
+ Rejected = "Rejected"
333
+ }
334
+
335
+ // @public
336
+ export enum KnownCreatedByType {
337
+ // (undocumented)
338
+ Application = "Application",
339
+ // (undocumented)
340
+ Key = "Key",
341
+ // (undocumented)
342
+ ManagedIdentity = "ManagedIdentity",
343
+ // (undocumented)
344
+ User = "User"
345
+ }
346
+
347
+ // @public
348
+ export enum KnownIdentityType {
349
+ // (undocumented)
350
+ None = "None",
351
+ // (undocumented)
352
+ SystemAssigned = "SystemAssigned",
353
+ // (undocumented)
354
+ SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
355
+ // (undocumented)
356
+ UserAssigned = "UserAssigned"
357
+ }
358
+
359
+ // @public
360
+ export enum KnownProvisioningState {
361
+ // (undocumented)
362
+ Canceled = "Canceled",
363
+ // (undocumented)
364
+ Creating = "Creating",
365
+ // (undocumented)
366
+ Deleting = "Deleting",
367
+ // (undocumented)
368
+ Failed = "Failed",
369
+ // (undocumented)
370
+ Succeeded = "Succeeded",
371
+ // (undocumented)
372
+ Updating = "Updating"
373
+ }
374
+
375
+ // @public
376
+ export enum KnownPublicNetworkAccess {
377
+ // (undocumented)
378
+ Disabled = "Disabled",
379
+ // (undocumented)
380
+ Enabled = "Enabled"
381
+ }
382
+
383
+ // @public
384
+ export interface LogSpecification {
385
+ blobDuration?: string;
386
+ displayName?: string;
387
+ name?: string;
388
+ }
389
+
390
+ // @public
391
+ export interface MetricDimension {
392
+ displayName?: string;
393
+ internalName?: string;
394
+ name?: string;
395
+ }
396
+
397
+ // @public
398
+ export interface MetricSpecification {
399
+ aggregationType?: string;
400
+ dimensions?: MetricDimension[];
401
+ displayDescription?: string;
402
+ displayName?: string;
403
+ fillGapWithZero?: boolean;
404
+ internalMetricName?: string;
405
+ name?: string;
406
+ unit?: string;
407
+ }
408
+
409
+ // @public
410
+ export interface NameAvailabilityStatus {
411
+ readonly message?: string;
412
+ readonly nameAvailable?: boolean;
413
+ readonly reason?: string;
414
+ }
415
+
416
+ // @public
417
+ export interface OperationDefinition {
418
+ display?: OperationDefinitionDisplay;
419
+ isDataAction?: boolean;
420
+ name?: string;
421
+ origin?: string;
422
+ properties?: OperationProperties;
423
+ }
424
+
425
+ // @public
426
+ export interface OperationDefinitionDisplay {
427
+ description?: string;
428
+ operation?: string;
429
+ readonly provider?: string;
430
+ resource?: string;
431
+ }
432
+
433
+ // @public
434
+ export interface OperationDefinitionListResult {
435
+ nextLink?: string;
436
+ value?: OperationDefinition[];
437
+ }
438
+
439
+ // @public
440
+ export interface OperationProperties {
441
+ serviceSpecification?: ServiceSpecification;
442
+ }
443
+
444
+ // @public
445
+ export interface Operations {
446
+ checkNameAvailability(checkNameAvailabilityParameters: CheckNameAvailabilityParameters, options?: OperationsCheckNameAvailabilityOptionalParams): Promise<OperationsCheckNameAvailabilityResponse>;
447
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationDefinition>;
448
+ }
449
+
450
+ // @public
451
+ export interface OperationsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
452
+ }
453
+
454
+ // @public
455
+ export type OperationsCheckNameAvailabilityResponse = NameAvailabilityStatus;
456
+
457
+ // @public
458
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
459
+ skipToken?: string;
460
+ }
461
+
462
+ // @public
463
+ export type OperationsListNextResponse = OperationDefinitionListResult;
464
+
465
+ // @public
466
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
467
+ skipToken?: string;
468
+ }
469
+
470
+ // @public
471
+ export type OperationsListResponse = OperationDefinitionListResult;
472
+
473
+ // @public
474
+ export interface PrivateEndpoint {
475
+ id?: string;
476
+ }
477
+
478
+ // @public
479
+ export interface PrivateEndpointConnection {
480
+ readonly id?: string;
481
+ readonly name?: string;
482
+ privateEndpoint?: PrivateEndpoint;
483
+ privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
484
+ readonly provisioningState?: ProvisioningState;
485
+ readonly type?: string;
486
+ }
487
+
488
+ // @public
489
+ export interface PrivateEndpointConnectionListResult {
490
+ nextLink?: string;
491
+ value?: PrivateEndpointConnection[];
492
+ }
493
+
494
+ // @public
495
+ export interface PrivateEndpointConnectionReference {
496
+ readonly id?: string;
497
+ readonly name?: string;
498
+ privateEndpoint?: PrivateEndpoint;
499
+ privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
500
+ readonly provisioningState?: ProvisioningState;
501
+ readonly type?: string;
502
+ }
503
+
504
+ // @public
505
+ export interface PrivateEndpointConnections {
506
+ beginCreateOrUpdate(resourceGroupName: string, configStoreName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<PrivateEndpointConnectionsCreateOrUpdateResponse>, PrivateEndpointConnectionsCreateOrUpdateResponse>>;
507
+ beginCreateOrUpdateAndWait(resourceGroupName: string, configStoreName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionsCreateOrUpdateResponse>;
508
+ beginDelete(resourceGroupName: string, configStoreName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
509
+ beginDeleteAndWait(resourceGroupName: string, configStoreName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
510
+ get(resourceGroupName: string, configStoreName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
511
+ listByConfigurationStore(resourceGroupName: string, configStoreName: string, options?: PrivateEndpointConnectionsListByConfigurationStoreOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
512
+ }
513
+
514
+ // @public
515
+ export interface PrivateEndpointConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
516
+ resumeFrom?: string;
517
+ updateIntervalInMs?: number;
518
+ }
519
+
520
+ // @public
521
+ export type PrivateEndpointConnectionsCreateOrUpdateResponse = PrivateEndpointConnection;
522
+
523
+ // @public
524
+ export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
525
+ resumeFrom?: string;
526
+ updateIntervalInMs?: number;
527
+ }
528
+
529
+ // @public
530
+ export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
531
+ }
532
+
533
+ // @public
534
+ export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
535
+
536
+ // @public
537
+ export interface PrivateEndpointConnectionsListByConfigurationStoreNextOptionalParams extends coreClient.OperationOptions {
538
+ }
539
+
540
+ // @public
541
+ export type PrivateEndpointConnectionsListByConfigurationStoreNextResponse = PrivateEndpointConnectionListResult;
542
+
543
+ // @public
544
+ export interface PrivateEndpointConnectionsListByConfigurationStoreOptionalParams extends coreClient.OperationOptions {
545
+ }
546
+
547
+ // @public
548
+ export type PrivateEndpointConnectionsListByConfigurationStoreResponse = PrivateEndpointConnectionListResult;
549
+
550
+ // @public
551
+ export interface PrivateLinkResource {
552
+ readonly groupId?: string;
553
+ readonly id?: string;
554
+ readonly name?: string;
555
+ readonly requiredMembers?: string[];
556
+ readonly requiredZoneNames?: string[];
557
+ readonly type?: string;
558
+ }
559
+
560
+ // @public
561
+ export interface PrivateLinkResourceListResult {
562
+ nextLink?: string;
563
+ value?: PrivateLinkResource[];
564
+ }
565
+
566
+ // @public
567
+ export interface PrivateLinkResources {
568
+ get(resourceGroupName: string, configStoreName: string, groupName: string, options?: PrivateLinkResourcesGetOptionalParams): Promise<PrivateLinkResourcesGetResponse>;
569
+ listByConfigurationStore(resourceGroupName: string, configStoreName: string, options?: PrivateLinkResourcesListByConfigurationStoreOptionalParams): PagedAsyncIterableIterator<PrivateLinkResource>;
570
+ }
571
+
572
+ // @public
573
+ export interface PrivateLinkResourcesGetOptionalParams extends coreClient.OperationOptions {
574
+ }
575
+
576
+ // @public
577
+ export type PrivateLinkResourcesGetResponse = PrivateLinkResource;
578
+
579
+ // @public
580
+ export interface PrivateLinkResourcesListByConfigurationStoreNextOptionalParams extends coreClient.OperationOptions {
581
+ }
582
+
583
+ // @public
584
+ export type PrivateLinkResourcesListByConfigurationStoreNextResponse = PrivateLinkResourceListResult;
585
+
586
+ // @public
587
+ export interface PrivateLinkResourcesListByConfigurationStoreOptionalParams extends coreClient.OperationOptions {
588
+ }
589
+
590
+ // @public
591
+ export type PrivateLinkResourcesListByConfigurationStoreResponse = PrivateLinkResourceListResult;
592
+
593
+ // @public
594
+ export interface PrivateLinkServiceConnectionState {
595
+ readonly actionsRequired?: ActionsRequired;
596
+ description?: string;
597
+ status?: ConnectionStatus;
598
+ }
599
+
600
+ // @public
601
+ export type ProvisioningState = string;
602
+
603
+ // @public
604
+ export type PublicNetworkAccess = string;
605
+
606
+ // @public
607
+ export interface RegenerateKeyParameters {
608
+ id?: string;
609
+ }
610
+
611
+ // @public
612
+ export interface Resource {
613
+ readonly id?: string;
614
+ readonly name?: string;
615
+ readonly type?: string;
616
+ }
617
+
618
+ // @public
619
+ export interface ResourceIdentity {
620
+ readonly principalId?: string;
621
+ readonly tenantId?: string;
622
+ type?: IdentityType;
623
+ userAssignedIdentities?: {
624
+ [propertyName: string]: UserIdentity;
625
+ };
626
+ }
627
+
628
+ // @public
629
+ export interface ServiceSpecification {
630
+ logSpecifications?: LogSpecification[];
631
+ metricSpecifications?: MetricSpecification[];
632
+ }
633
+
634
+ // @public
635
+ export interface Sku {
636
+ name: string;
637
+ }
638
+
639
+ // @public
640
+ export interface SystemData {
641
+ createdAt?: Date;
642
+ createdBy?: string;
643
+ createdByType?: CreatedByType;
644
+ lastModifiedAt?: Date;
645
+ lastModifiedBy?: string;
646
+ lastModifiedByType?: CreatedByType;
647
+ }
648
+
649
+ // @public
650
+ export type TrackedResource = Resource & {
651
+ tags?: {
652
+ [propertyName: string]: string;
653
+ };
654
+ location: string;
655
+ };
656
+
657
+ // @public
658
+ export interface UserIdentity {
659
+ readonly clientId?: string;
660
+ readonly principalId?: string;
661
+ }
662
+
663
+ // (No @packageDocumentation comment for this package)
664
+
665
+ ```