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