@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
@@ -1,1433 +0,0 @@
1
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
2
- import * as msRest from "@azure/ms-rest-js";
3
- export { BaseResource, CloudError };
4
- /**
5
- * A resource identity that is managed by the user of the service.
6
- */
7
- export interface UserIdentity {
8
- /**
9
- * The principal ID of the user-assigned identity.
10
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
11
- */
12
- readonly principalId?: string;
13
- /**
14
- * The client ID of the user-assigned identity.
15
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
16
- */
17
- readonly clientId?: string;
18
- }
19
- /**
20
- * An identity that can be associated with a resource.
21
- */
22
- export interface ResourceIdentity {
23
- /**
24
- * The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an
25
- * implicitly created identity and a set of user-assigned identities. The type 'None' will remove
26
- * any identities. Possible values include: 'None', 'SystemAssigned', 'UserAssigned',
27
- * 'SystemAssigned, UserAssigned'
28
- */
29
- type?: IdentityType;
30
- /**
31
- * The list of user-assigned identities associated with the resource. The user-assigned identity
32
- * dictionary keys will be ARM resource ids in the form:
33
- * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
34
- */
35
- userAssignedIdentities?: {
36
- [propertyName: string]: UserIdentity;
37
- };
38
- /**
39
- * The principal id of the identity. This property will only be provided for a system-assigned
40
- * identity.
41
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
42
- */
43
- readonly principalId?: string;
44
- /**
45
- * The tenant id associated with the resource's identity. This property will only be provided for
46
- * a system-assigned identity.
47
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
48
- */
49
- readonly tenantId?: string;
50
- }
51
- /**
52
- * Settings concerning key vault encryption for a configuration store.
53
- */
54
- export interface KeyVaultProperties {
55
- /**
56
- * The URI of the key vault key used to encrypt data.
57
- */
58
- keyIdentifier?: string;
59
- /**
60
- * The client id of the identity which will be used to access key vault.
61
- */
62
- identityClientId?: string;
63
- }
64
- /**
65
- * The encryption settings for a configuration store.
66
- */
67
- export interface EncryptionProperties {
68
- /**
69
- * Key vault properties.
70
- */
71
- keyVaultProperties?: KeyVaultProperties;
72
- }
73
- /**
74
- * Private endpoint which a connection belongs to.
75
- */
76
- export interface PrivateEndpoint {
77
- /**
78
- * The resource Id for private endpoint
79
- */
80
- id?: string;
81
- }
82
- /**
83
- * The state of a private link service connection.
84
- */
85
- export interface PrivateLinkServiceConnectionState {
86
- /**
87
- * The private link service connection status. Possible values include: 'Pending', 'Approved',
88
- * 'Rejected', 'Disconnected'
89
- */
90
- status?: ConnectionStatus;
91
- /**
92
- * The private link service connection description.
93
- */
94
- description?: string;
95
- /**
96
- * Any action that is required beyond basic workflow (approve/ reject/ disconnect). Possible
97
- * values include: 'None', 'Recreate'
98
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
99
- */
100
- readonly actionsRequired?: ActionsRequired;
101
- }
102
- /**
103
- * A reference to a related private endpoint connection.
104
- */
105
- export interface PrivateEndpointConnectionReference {
106
- /**
107
- * The resource ID.
108
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
109
- */
110
- readonly id?: string;
111
- /**
112
- * The name of the resource.
113
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
114
- */
115
- readonly name?: string;
116
- /**
117
- * The type of the resource.
118
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
119
- */
120
- readonly type?: string;
121
- /**
122
- * The provisioning status of the private endpoint connection. Possible values include:
123
- * 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
124
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
125
- */
126
- readonly provisioningState?: ProvisioningState;
127
- /**
128
- * The resource of private endpoint.
129
- */
130
- privateEndpoint?: PrivateEndpoint;
131
- /**
132
- * A collection of information about the state of the connection between service consumer and
133
- * provider.
134
- */
135
- privateLinkServiceConnectionState: PrivateLinkServiceConnectionState;
136
- }
137
- /**
138
- * Describes a configuration store SKU.
139
- */
140
- export interface Sku {
141
- /**
142
- * The SKU name of the configuration store.
143
- */
144
- name: string;
145
- }
146
- /**
147
- * Metadata pertaining to creation and last modification of the resource.
148
- */
149
- export interface SystemData {
150
- /**
151
- * The identity that created the resource.
152
- */
153
- createdBy?: string;
154
- /**
155
- * The type of identity that created the resource. Possible values include: 'User',
156
- * 'Application', 'ManagedIdentity', 'Key'
157
- */
158
- createdByType?: CreatedByType;
159
- /**
160
- * The timestamp of resource creation (UTC).
161
- */
162
- createdAt?: Date;
163
- /**
164
- * The identity that last modified the resource.
165
- */
166
- lastModifiedBy?: string;
167
- /**
168
- * The type of identity that last modified the resource. Possible values include: 'User',
169
- * 'Application', 'ManagedIdentity', 'Key'
170
- */
171
- lastModifiedByType?: CreatedByType;
172
- /**
173
- * The timestamp of resource last modification (UTC)
174
- */
175
- lastModifiedAt?: Date;
176
- }
177
- /**
178
- * Common fields that are returned in the response for all Azure Resource Manager resources
179
- * @summary Resource
180
- */
181
- export interface Resource extends BaseResource {
182
- /**
183
- * Fully qualified resource ID for the resource. Ex -
184
- * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
185
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
186
- */
187
- readonly id?: string;
188
- /**
189
- * The name of the resource
190
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
191
- */
192
- readonly name?: string;
193
- /**
194
- * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
195
- * "Microsoft.Storage/storageAccounts"
196
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
197
- */
198
- readonly type?: string;
199
- }
200
- /**
201
- * The resource model definition for an Azure Resource Manager tracked top level resource which has
202
- * 'tags' and a 'location'
203
- * @summary Tracked Resource
204
- */
205
- export interface TrackedResource extends Resource {
206
- /**
207
- * Resource tags.
208
- */
209
- tags?: {
210
- [propertyName: string]: string;
211
- };
212
- /**
213
- * The geo-location where the resource lives
214
- */
215
- location: string;
216
- }
217
- /**
218
- * The configuration store along with all resource properties. The Configuration Store will have
219
- * all information to begin utilizing it.
220
- */
221
- export interface ConfigurationStore extends TrackedResource {
222
- /**
223
- * The managed identity information, if configured.
224
- */
225
- identity?: ResourceIdentity;
226
- /**
227
- * The provisioning state of the configuration store. Possible values include: 'Creating',
228
- * 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
229
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
230
- */
231
- readonly provisioningState?: ProvisioningState;
232
- /**
233
- * The creation date of configuration store.
234
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
235
- */
236
- readonly creationDate?: Date;
237
- /**
238
- * The DNS endpoint where the configuration store API will be available.
239
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
240
- */
241
- readonly endpoint?: string;
242
- /**
243
- * The encryption settings of the configuration store.
244
- */
245
- encryption?: EncryptionProperties;
246
- /**
247
- * The list of private endpoint connections that are set up for this resource.
248
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
249
- */
250
- readonly privateEndpointConnections?: PrivateEndpointConnectionReference[];
251
- /**
252
- * Control permission for data plane traffic coming from public networks while private endpoint
253
- * is enabled. Possible values include: 'Enabled', 'Disabled'
254
- */
255
- publicNetworkAccess?: PublicNetworkAccess;
256
- /**
257
- * Disables all authentication methods other than AAD authentication.
258
- */
259
- disableLocalAuth?: boolean;
260
- /**
261
- * The sku of the configuration store.
262
- */
263
- sku: Sku;
264
- /**
265
- * Resource system metadata.
266
- */
267
- systemData?: SystemData;
268
- }
269
- /**
270
- * The parameters for updating a configuration store.
271
- */
272
- export interface ConfigurationStoreUpdateParameters {
273
- /**
274
- * The encryption settings of the configuration store.
275
- */
276
- encryption?: EncryptionProperties;
277
- /**
278
- * Disables all authentication methods other than AAD authentication.
279
- */
280
- disableLocalAuth?: boolean;
281
- /**
282
- * Control permission for data plane traffic coming from public networks while private endpoint
283
- * is enabled. Possible values include: 'Enabled', 'Disabled'
284
- */
285
- publicNetworkAccess?: PublicNetworkAccess;
286
- /**
287
- * The managed identity information for the configuration store.
288
- */
289
- identity?: ResourceIdentity;
290
- /**
291
- * The SKU of the configuration store.
292
- */
293
- sku?: Sku;
294
- /**
295
- * The ARM resource tags.
296
- */
297
- tags?: {
298
- [propertyName: string]: string;
299
- };
300
- }
301
- /**
302
- * Parameters used for checking whether a resource name is available.
303
- */
304
- export interface CheckNameAvailabilityParameters {
305
- /**
306
- * The name to check for availability.
307
- */
308
- name: string;
309
- }
310
- /**
311
- * The result of a request to check the availability of a resource name.
312
- */
313
- export interface NameAvailabilityStatus {
314
- /**
315
- * The value indicating whether the resource name is available.
316
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
317
- */
318
- readonly nameAvailable?: boolean;
319
- /**
320
- * If any, the error message that provides more detail for the reason that the name is not
321
- * available.
322
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
323
- */
324
- readonly message?: string;
325
- /**
326
- * If any, the reason that the name is not available.
327
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
328
- */
329
- readonly reason?: string;
330
- }
331
- /**
332
- * An API key used for authenticating with a configuration store endpoint.
333
- */
334
- export interface ApiKey {
335
- /**
336
- * The key ID.
337
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
338
- */
339
- readonly id?: string;
340
- /**
341
- * A name for the key describing its usage.
342
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
343
- */
344
- readonly name?: string;
345
- /**
346
- * The value of the key that is used for authentication purposes.
347
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
348
- */
349
- readonly value?: string;
350
- /**
351
- * A connection string that can be used by supporting clients for authentication.
352
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
353
- */
354
- readonly connectionString?: string;
355
- /**
356
- * The last time any of the key's properties were modified.
357
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
358
- */
359
- readonly lastModified?: Date;
360
- /**
361
- * Whether this key can only be used for read operations.
362
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
363
- */
364
- readonly readOnly?: boolean;
365
- }
366
- /**
367
- * The parameters used to regenerate an API key.
368
- */
369
- export interface RegenerateKeyParameters {
370
- /**
371
- * The id of the key to regenerate.
372
- */
373
- id?: string;
374
- }
375
- /**
376
- * The key-value resource along with all resource properties.
377
- */
378
- export interface KeyValue extends BaseResource {
379
- /**
380
- * The resource ID.
381
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
382
- */
383
- readonly id?: string;
384
- /**
385
- * The name of the resource.
386
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
387
- */
388
- readonly name?: string;
389
- /**
390
- * The type of the resource.
391
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
392
- */
393
- readonly type?: string;
394
- /**
395
- * The primary identifier of a key-value.
396
- * The key is used in unison with the label to uniquely identify a key-value.
397
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
398
- */
399
- readonly key?: string;
400
- /**
401
- * A value used to group key-values.
402
- * The label is used in unison with the key to uniquely identify a key-value.
403
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
404
- */
405
- readonly label?: string;
406
- /**
407
- * The value of the key-value.
408
- */
409
- value?: string;
410
- /**
411
- * The content type of the key-value's value.
412
- * Providing a proper content-type can enable transformations of values when they are retrieved
413
- * by applications.
414
- */
415
- contentType?: string;
416
- /**
417
- * An ETag indicating the state of a key-value within a configuration store.
418
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
419
- */
420
- readonly eTag?: string;
421
- /**
422
- * The last time a modifying operation was performed on the given key-value.
423
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
424
- */
425
- readonly lastModified?: Date;
426
- /**
427
- * A value indicating whether the key-value is locked.
428
- * A locked key-value may not be modified until it is unlocked.
429
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
430
- */
431
- readonly locked?: boolean;
432
- /**
433
- * A dictionary of tags that can help identify what a key-value may be applicable for.
434
- */
435
- tags?: {
436
- [propertyName: string]: string;
437
- };
438
- }
439
- /**
440
- * The display information for a configuration store operation.
441
- */
442
- export interface OperationDefinitionDisplay {
443
- /**
444
- * The resource provider name: Microsoft App Configuration."
445
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
446
- */
447
- readonly provider?: string;
448
- /**
449
- * The resource on which the operation is performed.
450
- */
451
- resource?: string;
452
- /**
453
- * The operation that users can perform.
454
- */
455
- operation?: string;
456
- /**
457
- * The description for the operation.
458
- */
459
- description?: string;
460
- }
461
- /**
462
- * Specifications of the Log for Azure Monitoring
463
- */
464
- export interface LogSpecification {
465
- /**
466
- * Name of the log
467
- */
468
- name?: string;
469
- /**
470
- * Localized friendly display name of the log
471
- */
472
- displayName?: string;
473
- /**
474
- * Blob duration of the log
475
- */
476
- blobDuration?: string;
477
- }
478
- /**
479
- * Specifications of the Dimension of metrics
480
- */
481
- export interface MetricDimension {
482
- /**
483
- * Name of the dimension
484
- */
485
- name?: string;
486
- /**
487
- * Localized friendly display name of the dimension
488
- */
489
- displayName?: string;
490
- /**
491
- * Internal name of the dimension.
492
- */
493
- internalName?: string;
494
- }
495
- /**
496
- * Specifications of the Metrics for Azure Monitoring
497
- */
498
- export interface MetricSpecification {
499
- /**
500
- * Name of the metric
501
- */
502
- name?: string;
503
- /**
504
- * Localized friendly display name of the metric
505
- */
506
- displayName?: string;
507
- /**
508
- * Localized friendly description of the metric
509
- */
510
- displayDescription?: string;
511
- /**
512
- * Unit that makes sense for the metric
513
- */
514
- unit?: string;
515
- /**
516
- * Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count.
517
- */
518
- aggregationType?: string;
519
- /**
520
- * Internal metric name.
521
- */
522
- internalMetricName?: string;
523
- /**
524
- * Dimensions of the metric
525
- */
526
- dimensions?: MetricDimension[];
527
- /**
528
- * Optional. If set to true, then zero will be returned for time duration where no metric is
529
- * emitted/published.
530
- */
531
- fillGapWithZero?: boolean;
532
- }
533
- /**
534
- * Service specification payload
535
- */
536
- export interface ServiceSpecification {
537
- /**
538
- * Specifications of the Log for Azure Monitoring
539
- */
540
- logSpecifications?: LogSpecification[];
541
- /**
542
- * Specifications of the Metrics for Azure Monitoring
543
- */
544
- metricSpecifications?: MetricSpecification[];
545
- }
546
- /**
547
- * Extra Operation properties
548
- */
549
- export interface OperationProperties {
550
- /**
551
- * Service specifications of the operation
552
- */
553
- serviceSpecification?: ServiceSpecification;
554
- }
555
- /**
556
- * The definition of a configuration store operation.
557
- */
558
- export interface OperationDefinition {
559
- /**
560
- * Operation name: {provider}/{resource}/{operation}.
561
- */
562
- name?: string;
563
- /**
564
- * Indicates whether the operation is a data action
565
- */
566
- isDataAction?: boolean;
567
- /**
568
- * The display information for the configuration store operation.
569
- */
570
- display?: OperationDefinitionDisplay;
571
- /**
572
- * Origin of the operation
573
- */
574
- origin?: string;
575
- /**
576
- * Properties of the operation
577
- */
578
- properties?: OperationProperties;
579
- }
580
- /**
581
- * The resource management error additional info.
582
- */
583
- export interface ErrorAdditionalInfo {
584
- /**
585
- * The additional info type.
586
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
587
- */
588
- readonly type?: string;
589
- /**
590
- * The additional info.
591
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
592
- */
593
- readonly info?: any;
594
- }
595
- /**
596
- * The details of the error.
597
- */
598
- export interface ErrorDetails {
599
- /**
600
- * Error code.
601
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
602
- */
603
- readonly code?: string;
604
- /**
605
- * Error message indicating why the operation failed.
606
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
607
- */
608
- readonly message?: string;
609
- /**
610
- * The error additional info.
611
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
612
- */
613
- readonly additionalInfo?: ErrorAdditionalInfo[];
614
- }
615
- /**
616
- * Error response indicates that the service is not able to process the incoming request. The
617
- * reason is provided in the error message.
618
- */
619
- export interface ErrorResponse {
620
- /**
621
- * The details of the error.
622
- */
623
- error?: ErrorDetails;
624
- }
625
- /**
626
- * A private endpoint connection
627
- */
628
- export interface PrivateEndpointConnection extends BaseResource {
629
- /**
630
- * The resource ID.
631
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
632
- */
633
- readonly id?: string;
634
- /**
635
- * The name of the resource.
636
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
637
- */
638
- readonly name?: string;
639
- /**
640
- * The type of the resource.
641
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
642
- */
643
- readonly type?: string;
644
- /**
645
- * The provisioning status of the private endpoint connection. Possible values include:
646
- * 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
647
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
648
- */
649
- readonly provisioningState?: ProvisioningState;
650
- /**
651
- * The resource of private endpoint.
652
- */
653
- privateEndpoint?: PrivateEndpoint;
654
- /**
655
- * A collection of information about the state of the connection between service consumer and
656
- * provider.
657
- */
658
- privateLinkServiceConnectionState: PrivateLinkServiceConnectionState;
659
- }
660
- /**
661
- * A resource that supports private link capabilities.
662
- */
663
- export interface PrivateLinkResource {
664
- /**
665
- * The resource ID.
666
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
667
- */
668
- readonly id?: string;
669
- /**
670
- * The name of the resource.
671
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
672
- */
673
- readonly name?: string;
674
- /**
675
- * The type of the resource.
676
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
677
- */
678
- readonly type?: string;
679
- /**
680
- * The private link resource group id.
681
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
682
- */
683
- readonly groupId?: string;
684
- /**
685
- * The private link resource required member names.
686
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
687
- */
688
- readonly requiredMembers?: string[];
689
- /**
690
- * The list of required DNS zone names of the private link resource.
691
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
692
- */
693
- readonly requiredZoneNames?: string[];
694
- }
695
- /**
696
- * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags
697
- * and a location
698
- * @summary Proxy Resource
699
- */
700
- export interface ProxyResource extends Resource {
701
- }
702
- /**
703
- * The resource model definition for an Azure Resource Manager resource with an etag.
704
- * @summary Entity Resource
705
- */
706
- export interface AzureEntityResource extends Resource {
707
- /**
708
- * Resource Etag.
709
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
710
- */
711
- readonly etag?: string;
712
- }
713
- /**
714
- * Optional Parameters.
715
- */
716
- export interface ConfigurationStoresListOptionalParams extends msRest.RequestOptionsBase {
717
- /**
718
- * A skip token is used to continue retrieving items after an operation returns a partial result.
719
- * If a previous response contains a nextLink element, the value of the nextLink element will
720
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
721
- */
722
- skipToken?: string;
723
- }
724
- /**
725
- * Optional Parameters.
726
- */
727
- export interface ConfigurationStoresListByResourceGroupOptionalParams extends msRest.RequestOptionsBase {
728
- /**
729
- * A skip token is used to continue retrieving items after an operation returns a partial result.
730
- * If a previous response contains a nextLink element, the value of the nextLink element will
731
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
732
- */
733
- skipToken?: string;
734
- }
735
- /**
736
- * Optional Parameters.
737
- */
738
- export interface ConfigurationStoresListKeysOptionalParams extends msRest.RequestOptionsBase {
739
- /**
740
- * A skip token is used to continue retrieving items after an operation returns a partial result.
741
- * If a previous response contains a nextLink element, the value of the nextLink element will
742
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
743
- */
744
- skipToken?: string;
745
- }
746
- /**
747
- * Optional Parameters.
748
- */
749
- export interface ConfigurationStoresListNextOptionalParams extends msRest.RequestOptionsBase {
750
- /**
751
- * A skip token is used to continue retrieving items after an operation returns a partial result.
752
- * If a previous response contains a nextLink element, the value of the nextLink element will
753
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
754
- */
755
- skipToken?: string;
756
- }
757
- /**
758
- * Optional Parameters.
759
- */
760
- export interface ConfigurationStoresListByResourceGroupNextOptionalParams extends msRest.RequestOptionsBase {
761
- /**
762
- * A skip token is used to continue retrieving items after an operation returns a partial result.
763
- * If a previous response contains a nextLink element, the value of the nextLink element will
764
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
765
- */
766
- skipToken?: string;
767
- }
768
- /**
769
- * Optional Parameters.
770
- */
771
- export interface ConfigurationStoresListKeysNextOptionalParams extends msRest.RequestOptionsBase {
772
- /**
773
- * A skip token is used to continue retrieving items after an operation returns a partial result.
774
- * If a previous response contains a nextLink element, the value of the nextLink element will
775
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
776
- */
777
- skipToken?: string;
778
- }
779
- /**
780
- * Optional Parameters.
781
- */
782
- export interface OperationsListOptionalParams extends msRest.RequestOptionsBase {
783
- /**
784
- * A skip token is used to continue retrieving items after an operation returns a partial result.
785
- * If a previous response contains a nextLink element, the value of the nextLink element will
786
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
787
- */
788
- skipToken?: string;
789
- }
790
- /**
791
- * Optional Parameters.
792
- */
793
- export interface OperationsListNextOptionalParams extends msRest.RequestOptionsBase {
794
- /**
795
- * A skip token is used to continue retrieving items after an operation returns a partial result.
796
- * If a previous response contains a nextLink element, the value of the nextLink element will
797
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
798
- */
799
- skipToken?: string;
800
- }
801
- /**
802
- * Optional Parameters.
803
- */
804
- export interface KeyValuesListByConfigurationStoreOptionalParams extends msRest.RequestOptionsBase {
805
- /**
806
- * A skip token is used to continue retrieving items after an operation returns a partial result.
807
- * If a previous response contains a nextLink element, the value of the nextLink element will
808
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
809
- */
810
- skipToken?: string;
811
- }
812
- /**
813
- * Optional Parameters.
814
- */
815
- export interface KeyValuesCreateOrUpdateOptionalParams extends msRest.RequestOptionsBase {
816
- /**
817
- * The parameters for creating a key-value.
818
- */
819
- keyValueParameters?: KeyValue;
820
- }
821
- /**
822
- * Optional Parameters.
823
- */
824
- export interface KeyValuesListByConfigurationStoreNextOptionalParams extends msRest.RequestOptionsBase {
825
- /**
826
- * A skip token is used to continue retrieving items after an operation returns a partial result.
827
- * If a previous response contains a nextLink element, the value of the nextLink element will
828
- * include a skipToken parameter that specifies a starting point to use for subsequent calls.
829
- */
830
- skipToken?: string;
831
- }
832
- /**
833
- * An interface representing AppConfigurationManagementClientOptions.
834
- */
835
- export interface AppConfigurationManagementClientOptions extends AzureServiceClientOptions {
836
- baseUri?: string;
837
- }
838
- /**
839
- * @interface
840
- * The result of a request to list configuration stores.
841
- * @extends Array<ConfigurationStore>
842
- */
843
- export interface ConfigurationStoreListResult extends Array<ConfigurationStore> {
844
- /**
845
- * The URI that can be used to request the next set of paged results.
846
- */
847
- nextLink?: string;
848
- }
849
- /**
850
- * @interface
851
- * The result of a request to list API keys.
852
- * @extends Array<ApiKey>
853
- */
854
- export interface ApiKeyListResult extends Array<ApiKey> {
855
- /**
856
- * The URI that can be used to request the next set of paged results.
857
- */
858
- nextLink?: string;
859
- }
860
- /**
861
- * @interface
862
- * The result of a request to list configuration store operations.
863
- * @extends Array<OperationDefinition>
864
- */
865
- export interface OperationDefinitionListResult extends Array<OperationDefinition> {
866
- /**
867
- * The URI that can be used to request the next set of paged results.
868
- */
869
- nextLink?: string;
870
- }
871
- /**
872
- * @interface
873
- * A list of private endpoint connections
874
- * @extends Array<PrivateEndpointConnection>
875
- */
876
- export interface PrivateEndpointConnectionListResult extends Array<PrivateEndpointConnection> {
877
- /**
878
- * The URI that can be used to request the next set of paged results.
879
- */
880
- nextLink?: string;
881
- }
882
- /**
883
- * @interface
884
- * A list of private link resources.
885
- * @extends Array<PrivateLinkResource>
886
- */
887
- export interface PrivateLinkResourceListResult extends Array<PrivateLinkResource> {
888
- /**
889
- * The URI that can be used to request the next set of paged results.
890
- */
891
- nextLink?: string;
892
- }
893
- /**
894
- * @interface
895
- * The result of a request to list key-values.
896
- * @extends Array<KeyValue>
897
- */
898
- export interface KeyValueListResult extends Array<KeyValue> {
899
- /**
900
- * The URI that can be used to request the next set of paged results.
901
- */
902
- nextLink?: string;
903
- }
904
- /**
905
- * Defines values for IdentityType.
906
- * Possible values include: 'None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned,
907
- * UserAssigned'
908
- * @readonly
909
- * @enum {string}
910
- */
911
- export declare type IdentityType = 'None' | 'SystemAssigned' | 'UserAssigned' | 'SystemAssigned, UserAssigned';
912
- /**
913
- * Defines values for ProvisioningState.
914
- * Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
915
- * @readonly
916
- * @enum {string}
917
- */
918
- export declare type ProvisioningState = 'Creating' | 'Updating' | 'Deleting' | 'Succeeded' | 'Failed' | 'Canceled';
919
- /**
920
- * Defines values for ConnectionStatus.
921
- * Possible values include: 'Pending', 'Approved', 'Rejected', 'Disconnected'
922
- * @readonly
923
- * @enum {string}
924
- */
925
- export declare type ConnectionStatus = 'Pending' | 'Approved' | 'Rejected' | 'Disconnected';
926
- /**
927
- * Defines values for ActionsRequired.
928
- * Possible values include: 'None', 'Recreate'
929
- * @readonly
930
- * @enum {string}
931
- */
932
- export declare type ActionsRequired = 'None' | 'Recreate';
933
- /**
934
- * Defines values for PublicNetworkAccess.
935
- * Possible values include: 'Enabled', 'Disabled'
936
- * @readonly
937
- * @enum {string}
938
- */
939
- export declare type PublicNetworkAccess = 'Enabled' | 'Disabled';
940
- /**
941
- * Defines values for CreatedByType.
942
- * Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
943
- * @readonly
944
- * @enum {string}
945
- */
946
- export declare type CreatedByType = 'User' | 'Application' | 'ManagedIdentity' | 'Key';
947
- /**
948
- * Contains response data for the list operation.
949
- */
950
- export declare type ConfigurationStoresListResponse = ConfigurationStoreListResult & {
951
- /**
952
- * The underlying HTTP response.
953
- */
954
- _response: msRest.HttpResponse & {
955
- /**
956
- * The response body as text (string format)
957
- */
958
- bodyAsText: string;
959
- /**
960
- * The response body as parsed JSON or XML
961
- */
962
- parsedBody: ConfigurationStoreListResult;
963
- };
964
- };
965
- /**
966
- * Contains response data for the listByResourceGroup operation.
967
- */
968
- export declare type ConfigurationStoresListByResourceGroupResponse = ConfigurationStoreListResult & {
969
- /**
970
- * The underlying HTTP response.
971
- */
972
- _response: msRest.HttpResponse & {
973
- /**
974
- * The response body as text (string format)
975
- */
976
- bodyAsText: string;
977
- /**
978
- * The response body as parsed JSON or XML
979
- */
980
- parsedBody: ConfigurationStoreListResult;
981
- };
982
- };
983
- /**
984
- * Contains response data for the get operation.
985
- */
986
- export declare type ConfigurationStoresGetResponse = ConfigurationStore & {
987
- /**
988
- * The underlying HTTP response.
989
- */
990
- _response: msRest.HttpResponse & {
991
- /**
992
- * The response body as text (string format)
993
- */
994
- bodyAsText: string;
995
- /**
996
- * The response body as parsed JSON or XML
997
- */
998
- parsedBody: ConfigurationStore;
999
- };
1000
- };
1001
- /**
1002
- * Contains response data for the create operation.
1003
- */
1004
- export declare type ConfigurationStoresCreateResponse = ConfigurationStore & {
1005
- /**
1006
- * The underlying HTTP response.
1007
- */
1008
- _response: msRest.HttpResponse & {
1009
- /**
1010
- * The response body as text (string format)
1011
- */
1012
- bodyAsText: string;
1013
- /**
1014
- * The response body as parsed JSON or XML
1015
- */
1016
- parsedBody: ConfigurationStore;
1017
- };
1018
- };
1019
- /**
1020
- * Contains response data for the update operation.
1021
- */
1022
- export declare type ConfigurationStoresUpdateResponse = ConfigurationStore & {
1023
- /**
1024
- * The underlying HTTP response.
1025
- */
1026
- _response: msRest.HttpResponse & {
1027
- /**
1028
- * The response body as text (string format)
1029
- */
1030
- bodyAsText: string;
1031
- /**
1032
- * The response body as parsed JSON or XML
1033
- */
1034
- parsedBody: ConfigurationStore;
1035
- };
1036
- };
1037
- /**
1038
- * Contains response data for the listKeys operation.
1039
- */
1040
- export declare type ConfigurationStoresListKeysResponse = ApiKeyListResult & {
1041
- /**
1042
- * The underlying HTTP response.
1043
- */
1044
- _response: msRest.HttpResponse & {
1045
- /**
1046
- * The response body as text (string format)
1047
- */
1048
- bodyAsText: string;
1049
- /**
1050
- * The response body as parsed JSON or XML
1051
- */
1052
- parsedBody: ApiKeyListResult;
1053
- };
1054
- };
1055
- /**
1056
- * Contains response data for the regenerateKey operation.
1057
- */
1058
- export declare type ConfigurationStoresRegenerateKeyResponse = ApiKey & {
1059
- /**
1060
- * The underlying HTTP response.
1061
- */
1062
- _response: msRest.HttpResponse & {
1063
- /**
1064
- * The response body as text (string format)
1065
- */
1066
- bodyAsText: string;
1067
- /**
1068
- * The response body as parsed JSON or XML
1069
- */
1070
- parsedBody: ApiKey;
1071
- };
1072
- };
1073
- /**
1074
- * Contains response data for the beginCreate operation.
1075
- */
1076
- export declare type ConfigurationStoresBeginCreateResponse = ConfigurationStore & {
1077
- /**
1078
- * The underlying HTTP response.
1079
- */
1080
- _response: msRest.HttpResponse & {
1081
- /**
1082
- * The response body as text (string format)
1083
- */
1084
- bodyAsText: string;
1085
- /**
1086
- * The response body as parsed JSON or XML
1087
- */
1088
- parsedBody: ConfigurationStore;
1089
- };
1090
- };
1091
- /**
1092
- * Contains response data for the beginUpdate operation.
1093
- */
1094
- export declare type ConfigurationStoresBeginUpdateResponse = ConfigurationStore & {
1095
- /**
1096
- * The underlying HTTP response.
1097
- */
1098
- _response: msRest.HttpResponse & {
1099
- /**
1100
- * The response body as text (string format)
1101
- */
1102
- bodyAsText: string;
1103
- /**
1104
- * The response body as parsed JSON or XML
1105
- */
1106
- parsedBody: ConfigurationStore;
1107
- };
1108
- };
1109
- /**
1110
- * Contains response data for the listNext operation.
1111
- */
1112
- export declare type ConfigurationStoresListNextResponse = ConfigurationStoreListResult & {
1113
- /**
1114
- * The underlying HTTP response.
1115
- */
1116
- _response: msRest.HttpResponse & {
1117
- /**
1118
- * The response body as text (string format)
1119
- */
1120
- bodyAsText: string;
1121
- /**
1122
- * The response body as parsed JSON or XML
1123
- */
1124
- parsedBody: ConfigurationStoreListResult;
1125
- };
1126
- };
1127
- /**
1128
- * Contains response data for the listByResourceGroupNext operation.
1129
- */
1130
- export declare type ConfigurationStoresListByResourceGroupNextResponse = ConfigurationStoreListResult & {
1131
- /**
1132
- * The underlying HTTP response.
1133
- */
1134
- _response: msRest.HttpResponse & {
1135
- /**
1136
- * The response body as text (string format)
1137
- */
1138
- bodyAsText: string;
1139
- /**
1140
- * The response body as parsed JSON or XML
1141
- */
1142
- parsedBody: ConfigurationStoreListResult;
1143
- };
1144
- };
1145
- /**
1146
- * Contains response data for the listKeysNext operation.
1147
- */
1148
- export declare type ConfigurationStoresListKeysNextResponse = ApiKeyListResult & {
1149
- /**
1150
- * The underlying HTTP response.
1151
- */
1152
- _response: msRest.HttpResponse & {
1153
- /**
1154
- * The response body as text (string format)
1155
- */
1156
- bodyAsText: string;
1157
- /**
1158
- * The response body as parsed JSON or XML
1159
- */
1160
- parsedBody: ApiKeyListResult;
1161
- };
1162
- };
1163
- /**
1164
- * Contains response data for the checkNameAvailability operation.
1165
- */
1166
- export declare type OperationsCheckNameAvailabilityResponse = NameAvailabilityStatus & {
1167
- /**
1168
- * The underlying HTTP response.
1169
- */
1170
- _response: msRest.HttpResponse & {
1171
- /**
1172
- * The response body as text (string format)
1173
- */
1174
- bodyAsText: string;
1175
- /**
1176
- * The response body as parsed JSON or XML
1177
- */
1178
- parsedBody: NameAvailabilityStatus;
1179
- };
1180
- };
1181
- /**
1182
- * Contains response data for the list operation.
1183
- */
1184
- export declare type OperationsListResponse = OperationDefinitionListResult & {
1185
- /**
1186
- * The underlying HTTP response.
1187
- */
1188
- _response: msRest.HttpResponse & {
1189
- /**
1190
- * The response body as text (string format)
1191
- */
1192
- bodyAsText: string;
1193
- /**
1194
- * The response body as parsed JSON or XML
1195
- */
1196
- parsedBody: OperationDefinitionListResult;
1197
- };
1198
- };
1199
- /**
1200
- * Contains response data for the listNext operation.
1201
- */
1202
- export declare type OperationsListNextResponse = OperationDefinitionListResult & {
1203
- /**
1204
- * The underlying HTTP response.
1205
- */
1206
- _response: msRest.HttpResponse & {
1207
- /**
1208
- * The response body as text (string format)
1209
- */
1210
- bodyAsText: string;
1211
- /**
1212
- * The response body as parsed JSON or XML
1213
- */
1214
- parsedBody: OperationDefinitionListResult;
1215
- };
1216
- };
1217
- /**
1218
- * Contains response data for the listByConfigurationStore operation.
1219
- */
1220
- export declare type PrivateEndpointConnectionsListByConfigurationStoreResponse = PrivateEndpointConnectionListResult & {
1221
- /**
1222
- * The underlying HTTP response.
1223
- */
1224
- _response: msRest.HttpResponse & {
1225
- /**
1226
- * The response body as text (string format)
1227
- */
1228
- bodyAsText: string;
1229
- /**
1230
- * The response body as parsed JSON or XML
1231
- */
1232
- parsedBody: PrivateEndpointConnectionListResult;
1233
- };
1234
- };
1235
- /**
1236
- * Contains response data for the get operation.
1237
- */
1238
- export declare type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection & {
1239
- /**
1240
- * The underlying HTTP response.
1241
- */
1242
- _response: msRest.HttpResponse & {
1243
- /**
1244
- * The response body as text (string format)
1245
- */
1246
- bodyAsText: string;
1247
- /**
1248
- * The response body as parsed JSON or XML
1249
- */
1250
- parsedBody: PrivateEndpointConnection;
1251
- };
1252
- };
1253
- /**
1254
- * Contains response data for the createOrUpdate operation.
1255
- */
1256
- export declare type PrivateEndpointConnectionsCreateOrUpdateResponse = PrivateEndpointConnection & {
1257
- /**
1258
- * The underlying HTTP response.
1259
- */
1260
- _response: msRest.HttpResponse & {
1261
- /**
1262
- * The response body as text (string format)
1263
- */
1264
- bodyAsText: string;
1265
- /**
1266
- * The response body as parsed JSON or XML
1267
- */
1268
- parsedBody: PrivateEndpointConnection;
1269
- };
1270
- };
1271
- /**
1272
- * Contains response data for the beginCreateOrUpdate operation.
1273
- */
1274
- export declare type PrivateEndpointConnectionsBeginCreateOrUpdateResponse = PrivateEndpointConnection & {
1275
- /**
1276
- * The underlying HTTP response.
1277
- */
1278
- _response: msRest.HttpResponse & {
1279
- /**
1280
- * The response body as text (string format)
1281
- */
1282
- bodyAsText: string;
1283
- /**
1284
- * The response body as parsed JSON or XML
1285
- */
1286
- parsedBody: PrivateEndpointConnection;
1287
- };
1288
- };
1289
- /**
1290
- * Contains response data for the listByConfigurationStoreNext operation.
1291
- */
1292
- export declare type PrivateEndpointConnectionsListByConfigurationStoreNextResponse = PrivateEndpointConnectionListResult & {
1293
- /**
1294
- * The underlying HTTP response.
1295
- */
1296
- _response: msRest.HttpResponse & {
1297
- /**
1298
- * The response body as text (string format)
1299
- */
1300
- bodyAsText: string;
1301
- /**
1302
- * The response body as parsed JSON or XML
1303
- */
1304
- parsedBody: PrivateEndpointConnectionListResult;
1305
- };
1306
- };
1307
- /**
1308
- * Contains response data for the listByConfigurationStore operation.
1309
- */
1310
- export declare type PrivateLinkResourcesListByConfigurationStoreResponse = PrivateLinkResourceListResult & {
1311
- /**
1312
- * The underlying HTTP response.
1313
- */
1314
- _response: msRest.HttpResponse & {
1315
- /**
1316
- * The response body as text (string format)
1317
- */
1318
- bodyAsText: string;
1319
- /**
1320
- * The response body as parsed JSON or XML
1321
- */
1322
- parsedBody: PrivateLinkResourceListResult;
1323
- };
1324
- };
1325
- /**
1326
- * Contains response data for the get operation.
1327
- */
1328
- export declare type PrivateLinkResourcesGetResponse = PrivateLinkResource & {
1329
- /**
1330
- * The underlying HTTP response.
1331
- */
1332
- _response: msRest.HttpResponse & {
1333
- /**
1334
- * The response body as text (string format)
1335
- */
1336
- bodyAsText: string;
1337
- /**
1338
- * The response body as parsed JSON or XML
1339
- */
1340
- parsedBody: PrivateLinkResource;
1341
- };
1342
- };
1343
- /**
1344
- * Contains response data for the listByConfigurationStoreNext operation.
1345
- */
1346
- export declare type PrivateLinkResourcesListByConfigurationStoreNextResponse = PrivateLinkResourceListResult & {
1347
- /**
1348
- * The underlying HTTP response.
1349
- */
1350
- _response: msRest.HttpResponse & {
1351
- /**
1352
- * The response body as text (string format)
1353
- */
1354
- bodyAsText: string;
1355
- /**
1356
- * The response body as parsed JSON or XML
1357
- */
1358
- parsedBody: PrivateLinkResourceListResult;
1359
- };
1360
- };
1361
- /**
1362
- * Contains response data for the listByConfigurationStore operation.
1363
- */
1364
- export declare type KeyValuesListByConfigurationStoreResponse = KeyValueListResult & {
1365
- /**
1366
- * The underlying HTTP response.
1367
- */
1368
- _response: msRest.HttpResponse & {
1369
- /**
1370
- * The response body as text (string format)
1371
- */
1372
- bodyAsText: string;
1373
- /**
1374
- * The response body as parsed JSON or XML
1375
- */
1376
- parsedBody: KeyValueListResult;
1377
- };
1378
- };
1379
- /**
1380
- * Contains response data for the get operation.
1381
- */
1382
- export declare type KeyValuesGetResponse = KeyValue & {
1383
- /**
1384
- * The underlying HTTP response.
1385
- */
1386
- _response: msRest.HttpResponse & {
1387
- /**
1388
- * The response body as text (string format)
1389
- */
1390
- bodyAsText: string;
1391
- /**
1392
- * The response body as parsed JSON or XML
1393
- */
1394
- parsedBody: KeyValue;
1395
- };
1396
- };
1397
- /**
1398
- * Contains response data for the createOrUpdate operation.
1399
- */
1400
- export declare type KeyValuesCreateOrUpdateResponse = KeyValue & {
1401
- /**
1402
- * The underlying HTTP response.
1403
- */
1404
- _response: msRest.HttpResponse & {
1405
- /**
1406
- * The response body as text (string format)
1407
- */
1408
- bodyAsText: string;
1409
- /**
1410
- * The response body as parsed JSON or XML
1411
- */
1412
- parsedBody: KeyValue;
1413
- };
1414
- };
1415
- /**
1416
- * Contains response data for the listByConfigurationStoreNext operation.
1417
- */
1418
- export declare type KeyValuesListByConfigurationStoreNextResponse = KeyValueListResult & {
1419
- /**
1420
- * The underlying HTTP response.
1421
- */
1422
- _response: msRest.HttpResponse & {
1423
- /**
1424
- * The response body as text (string format)
1425
- */
1426
- bodyAsText: string;
1427
- /**
1428
- * The response body as parsed JSON or XML
1429
- */
1430
- parsedBody: KeyValueListResult;
1431
- };
1432
- };
1433
- //# sourceMappingURL=index.d.ts.map