@azure/arm-appconfiguration 2.0.0 → 3.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +70 -80
  5. package/dist/index.js +3105 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.min.js +1 -0
  8. package/dist/index.min.js.map +1 -0
  9. package/dist-esm/src/appConfigurationManagementClient.d.ts +22 -0
  10. package/dist-esm/src/appConfigurationManagementClient.d.ts.map +1 -0
  11. package/dist-esm/src/appConfigurationManagementClient.js +55 -0
  12. package/dist-esm/src/appConfigurationManagementClient.js.map +1 -0
  13. package/dist-esm/src/index.d.ts +5 -0
  14. package/dist-esm/src/index.d.ts.map +1 -0
  15. package/dist-esm/src/index.js +12 -0
  16. package/dist-esm/src/index.js.map +1 -0
  17. package/dist-esm/src/lroImpl.d.ts +16 -0
  18. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  19. package/dist-esm/src/lroImpl.js +29 -0
  20. package/dist-esm/src/lroImpl.js.map +1 -0
  21. package/dist-esm/src/models/index.d.ts +826 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +59 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +38 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/{esm → dist-esm/src}/models/mappers.js +464 -547
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +20 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/dist-esm/src/models/parameters.js +162 -0
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/configurationStores.d.ts +139 -0
  34. package/dist-esm/src/operations/configurationStores.d.ts.map +1 -0
  35. package/dist-esm/src/operations/configurationStores.js +655 -0
  36. package/dist-esm/src/operations/configurationStores.js.map +1 -0
  37. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  38. package/dist-esm/src/operations/index.d.ts.map +1 -0
  39. package/{esm → dist-esm/src}/operations/index.js +1 -2
  40. package/dist-esm/src/operations/index.js.map +1 -0
  41. package/dist-esm/src/operations/keyValues.d.ts +76 -0
  42. package/dist-esm/src/operations/keyValues.d.ts.map +1 -0
  43. package/dist-esm/src/operations/keyValues.js +284 -0
  44. package/dist-esm/src/operations/keyValues.js.map +1 -0
  45. package/dist-esm/src/operations/operations.d.ts +39 -0
  46. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  47. package/dist-esm/src/operations/operations.js +147 -0
  48. package/dist-esm/src/operations/operations.js.map +1 -0
  49. package/dist-esm/src/operations/privateEndpointConnections.d.ts +84 -0
  50. package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -0
  51. package/dist-esm/src/operations/privateEndpointConnections.js +350 -0
  52. package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -0
  53. package/dist-esm/src/operations/privateLinkResources.d.ts +47 -0
  54. package/dist-esm/src/operations/privateLinkResources.d.ts.map +1 -0
  55. package/dist-esm/src/operations/privateLinkResources.js +170 -0
  56. package/dist-esm/src/operations/privateLinkResources.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/configurationStores.d.ts +86 -0
  58. package/dist-esm/src/operationsInterfaces/configurationStores.d.ts.map +1 -0
  59. package/{src/models/privateLinkResourcesMappers.ts → dist-esm/src/operationsInterfaces/configurationStores.js} +2 -8
  60. package/dist-esm/src/operationsInterfaces/configurationStores.js.map +1 -0
  61. package/dist-esm/src/operationsInterfaces/index.d.ts +6 -0
  62. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  63. package/dist-esm/src/operationsInterfaces/index.js +13 -0
  64. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  65. package/dist-esm/src/operationsInterfaces/keyValues.d.ts +50 -0
  66. package/dist-esm/src/operationsInterfaces/keyValues.d.ts.map +1 -0
  67. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/keyValues.js} +2 -1
  68. package/dist-esm/src/operationsInterfaces/keyValues.js.map +1 -0
  69. package/dist-esm/src/operationsInterfaces/operations.d.ts +18 -0
  70. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  71. package/{esm/models/privateLinkResourcesMappers.js → dist-esm/src/operationsInterfaces/operations.js} +2 -2
  72. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  73. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts +58 -0
  74. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts.map +1 -0
  75. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js +9 -0
  76. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js.map +1 -0
  77. package/dist-esm/src/operationsInterfaces/privateLinkResources.d.ts +21 -0
  78. package/dist-esm/src/operationsInterfaces/privateLinkResources.d.ts.map +1 -0
  79. package/dist-esm/src/operationsInterfaces/privateLinkResources.js +9 -0
  80. package/dist-esm/src/operationsInterfaces/privateLinkResources.js.map +1 -0
  81. package/dist-esm/test/sampleTest.d.ts +2 -0
  82. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  83. package/dist-esm/test/sampleTest.js +40 -0
  84. package/dist-esm/test/sampleTest.js.map +1 -0
  85. package/package.json +65 -32
  86. package/review/arm-appconfiguration.api.md +665 -0
  87. package/rollup.config.js +181 -30
  88. package/src/appConfigurationManagementClient.ts +80 -40
  89. package/src/index.ts +12 -0
  90. package/src/lroImpl.ts +34 -0
  91. package/src/models/index.ts +644 -1242
  92. package/src/models/mappers.ts +467 -557
  93. package/src/models/parameters.ts +119 -46
  94. package/src/operations/configurationStores.ts +638 -419
  95. package/src/operations/index.ts +1 -2
  96. package/src/operations/keyValues.ts +266 -209
  97. package/src/operations/operations.ts +108 -121
  98. package/src/operations/privateEndpointConnections.ts +343 -181
  99. package/src/operations/privateLinkResources.ts +157 -123
  100. package/src/operationsInterfaces/configurationStores.ts +168 -0
  101. package/src/operationsInterfaces/index.ts +13 -0
  102. package/src/operationsInterfaces/keyValues.ts +91 -0
  103. package/src/operationsInterfaces/operations.ts +38 -0
  104. package/src/operationsInterfaces/privateEndpointConnections.ts +111 -0
  105. package/src/operationsInterfaces/privateLinkResources.ts +44 -0
  106. package/tsconfig.json +3 -3
  107. package/types/arm-appconfiguration.d.ts +1171 -0
  108. package/types/tsdoc-metadata.json +11 -0
  109. package/dist/arm-appconfiguration.js +0 -2849
  110. package/dist/arm-appconfiguration.js.map +0 -1
  111. package/dist/arm-appconfiguration.min.js +0 -1
  112. package/dist/arm-appconfiguration.min.js.map +0 -1
  113. package/esm/appConfigurationManagementClient.d.ts +0 -28
  114. package/esm/appConfigurationManagementClient.d.ts.map +0 -1
  115. package/esm/appConfigurationManagementClient.js +0 -41
  116. package/esm/appConfigurationManagementClient.js.map +0 -1
  117. package/esm/appConfigurationManagementClientContext.d.ts +0 -22
  118. package/esm/appConfigurationManagementClientContext.d.ts.map +0 -1
  119. package/esm/appConfigurationManagementClientContext.js +0 -60
  120. package/esm/appConfigurationManagementClientContext.js.map +0 -1
  121. package/esm/models/configurationStoresMappers.d.ts +0 -2
  122. package/esm/models/configurationStoresMappers.d.ts.map +0 -1
  123. package/esm/models/configurationStoresMappers.js +0 -9
  124. package/esm/models/configurationStoresMappers.js.map +0 -1
  125. package/esm/models/index.d.ts +0 -1433
  126. package/esm/models/index.d.ts.map +0 -1
  127. package/esm/models/index.js.map +0 -1
  128. package/esm/models/keyValuesMappers.d.ts +0 -2
  129. package/esm/models/keyValuesMappers.d.ts.map +0 -1
  130. package/esm/models/keyValuesMappers.js +0 -9
  131. package/esm/models/keyValuesMappers.js.map +0 -1
  132. package/esm/models/mappers.d.ts +0 -42
  133. package/esm/models/mappers.d.ts.map +0 -1
  134. package/esm/models/mappers.js.map +0 -1
  135. package/esm/models/operationsMappers.d.ts +0 -2
  136. package/esm/models/operationsMappers.d.ts.map +0 -1
  137. package/esm/models/operationsMappers.js +0 -9
  138. package/esm/models/operationsMappers.js.map +0 -1
  139. package/esm/models/parameters.d.ts +0 -12
  140. package/esm/models/parameters.d.ts.map +0 -1
  141. package/esm/models/parameters.js +0 -117
  142. package/esm/models/parameters.js.map +0 -1
  143. package/esm/models/privateEndpointConnectionsMappers.d.ts +0 -2
  144. package/esm/models/privateEndpointConnectionsMappers.d.ts.map +0 -1
  145. package/esm/models/privateEndpointConnectionsMappers.js +0 -9
  146. package/esm/models/privateEndpointConnectionsMappers.js.map +0 -1
  147. package/esm/models/privateLinkResourcesMappers.d.ts +0 -2
  148. package/esm/models/privateLinkResourcesMappers.d.ts.map +0 -1
  149. package/esm/models/privateLinkResourcesMappers.js.map +0 -1
  150. package/esm/operations/configurationStores.d.ts +0 -219
  151. package/esm/operations/configurationStores.d.ts.map +0 -1
  152. package/esm/operations/configurationStores.js +0 -441
  153. package/esm/operations/configurationStores.js.map +0 -1
  154. package/esm/operations/index.d.ts.map +0 -1
  155. package/esm/operations/index.js.map +0 -1
  156. package/esm/operations/keyValues.d.ts +0 -127
  157. package/esm/operations/keyValues.d.ts.map +0 -1
  158. package/esm/operations/keyValues.js +0 -216
  159. package/esm/operations/keyValues.js.map +0 -1
  160. package/esm/operations/operations.d.ts +0 -67
  161. package/esm/operations/operations.d.ts.map +0 -1
  162. package/esm/operations/operations.js +0 -114
  163. package/esm/operations/operations.js.map +0 -1
  164. package/esm/operations/privateEndpointConnections.d.ts +0 -117
  165. package/esm/operations/privateEndpointConnections.d.ts.map +0 -1
  166. package/esm/operations/privateEndpointConnections.js +0 -238
  167. package/esm/operations/privateEndpointConnections.js.map +0 -1
  168. package/esm/operations/privateLinkResources.d.ts +0 -76
  169. package/esm/operations/privateLinkResources.d.ts.map +0 -1
  170. package/esm/operations/privateLinkResources.js +0 -119
  171. package/esm/operations/privateLinkResources.js.map +0 -1
  172. package/src/appConfigurationManagementClientContext.ts +0 -67
  173. package/src/models/configurationStoresMappers.ts +0 -35
  174. package/src/models/keyValuesMappers.ts +0 -31
  175. package/src/models/operationsMappers.ts +0 -23
  176. package/src/models/privateEndpointConnectionsMappers.ts +0 -31
@@ -1,238 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is
7
- * regenerated.
8
- */
9
- import { __assign } from "tslib";
10
- import * as msRest from "@azure/ms-rest-js";
11
- import * as Mappers from "../models/privateEndpointConnectionsMappers";
12
- import * as Parameters from "../models/parameters";
13
- /** Class representing a PrivateEndpointConnections. */
14
- var PrivateEndpointConnections = /** @class */ (function () {
15
- /**
16
- * Create a PrivateEndpointConnections.
17
- * @param {AppConfigurationManagementClientContext} client Reference to the service client.
18
- */
19
- function PrivateEndpointConnections(client) {
20
- this.client = client;
21
- }
22
- PrivateEndpointConnections.prototype.listByConfigurationStore = function (resourceGroupName, configStoreName, options, callback) {
23
- return this.client.sendOperationRequest({
24
- resourceGroupName: resourceGroupName,
25
- configStoreName: configStoreName,
26
- options: options
27
- }, listByConfigurationStoreOperationSpec, callback);
28
- };
29
- PrivateEndpointConnections.prototype.get = function (resourceGroupName, configStoreName, privateEndpointConnectionName, options, callback) {
30
- return this.client.sendOperationRequest({
31
- resourceGroupName: resourceGroupName,
32
- configStoreName: configStoreName,
33
- privateEndpointConnectionName: privateEndpointConnectionName,
34
- options: options
35
- }, getOperationSpec, callback);
36
- };
37
- /**
38
- * Update the state of the specified private endpoint connection associated with the configuration
39
- * store.
40
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
41
- * @param configStoreName The name of the configuration store.
42
- * @param privateEndpointConnectionName Private endpoint connection name
43
- * @param privateEndpointConnection The private endpoint connection properties.
44
- * @param [options] The optional parameters
45
- * @returns Promise<Models.PrivateEndpointConnectionsCreateOrUpdateResponse>
46
- */
47
- PrivateEndpointConnections.prototype.createOrUpdate = function (resourceGroupName, configStoreName, privateEndpointConnectionName, privateEndpointConnection, options) {
48
- return this.beginCreateOrUpdate(resourceGroupName, configStoreName, privateEndpointConnectionName, privateEndpointConnection, options)
49
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
50
- };
51
- /**
52
- * Deletes a private endpoint connection.
53
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
54
- * @param configStoreName The name of the configuration store.
55
- * @param privateEndpointConnectionName Private endpoint connection name
56
- * @param [options] The optional parameters
57
- * @returns Promise<msRest.RestResponse>
58
- */
59
- PrivateEndpointConnections.prototype.deleteMethod = function (resourceGroupName, configStoreName, privateEndpointConnectionName, options) {
60
- return this.beginDeleteMethod(resourceGroupName, configStoreName, privateEndpointConnectionName, options)
61
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
62
- };
63
- /**
64
- * Update the state of the specified private endpoint connection associated with the configuration
65
- * store.
66
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
67
- * @param configStoreName The name of the configuration store.
68
- * @param privateEndpointConnectionName Private endpoint connection name
69
- * @param privateEndpointConnection The private endpoint connection properties.
70
- * @param [options] The optional parameters
71
- * @returns Promise<msRestAzure.LROPoller>
72
- */
73
- PrivateEndpointConnections.prototype.beginCreateOrUpdate = function (resourceGroupName, configStoreName, privateEndpointConnectionName, privateEndpointConnection, options) {
74
- return this.client.sendLRORequest({
75
- resourceGroupName: resourceGroupName,
76
- configStoreName: configStoreName,
77
- privateEndpointConnectionName: privateEndpointConnectionName,
78
- privateEndpointConnection: privateEndpointConnection,
79
- options: options
80
- }, beginCreateOrUpdateOperationSpec, options);
81
- };
82
- /**
83
- * Deletes a private endpoint connection.
84
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
85
- * @param configStoreName The name of the configuration store.
86
- * @param privateEndpointConnectionName Private endpoint connection name
87
- * @param [options] The optional parameters
88
- * @returns Promise<msRestAzure.LROPoller>
89
- */
90
- PrivateEndpointConnections.prototype.beginDeleteMethod = function (resourceGroupName, configStoreName, privateEndpointConnectionName, options) {
91
- return this.client.sendLRORequest({
92
- resourceGroupName: resourceGroupName,
93
- configStoreName: configStoreName,
94
- privateEndpointConnectionName: privateEndpointConnectionName,
95
- options: options
96
- }, beginDeleteMethodOperationSpec, options);
97
- };
98
- PrivateEndpointConnections.prototype.listByConfigurationStoreNext = function (nextPageLink, options, callback) {
99
- return this.client.sendOperationRequest({
100
- nextPageLink: nextPageLink,
101
- options: options
102
- }, listByConfigurationStoreNextOperationSpec, callback);
103
- };
104
- return PrivateEndpointConnections;
105
- }());
106
- export { PrivateEndpointConnections };
107
- // Operation Specifications
108
- var serializer = new msRest.Serializer(Mappers);
109
- var listByConfigurationStoreOperationSpec = {
110
- httpMethod: "GET",
111
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppConfiguration/configurationStores/{configStoreName}/privateEndpointConnections",
112
- urlParameters: [
113
- Parameters.subscriptionId,
114
- Parameters.resourceGroupName,
115
- Parameters.configStoreName
116
- ],
117
- queryParameters: [
118
- Parameters.apiVersion
119
- ],
120
- headerParameters: [
121
- Parameters.acceptLanguage
122
- ],
123
- responses: {
124
- 200: {
125
- bodyMapper: Mappers.PrivateEndpointConnectionListResult
126
- },
127
- default: {
128
- bodyMapper: Mappers.ErrorResponse
129
- }
130
- },
131
- serializer: serializer
132
- };
133
- var getOperationSpec = {
134
- httpMethod: "GET",
135
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppConfiguration/configurationStores/{configStoreName}/privateEndpointConnections/{privateEndpointConnectionName}",
136
- urlParameters: [
137
- Parameters.subscriptionId,
138
- Parameters.resourceGroupName,
139
- Parameters.configStoreName,
140
- Parameters.privateEndpointConnectionName
141
- ],
142
- queryParameters: [
143
- Parameters.apiVersion
144
- ],
145
- headerParameters: [
146
- Parameters.acceptLanguage
147
- ],
148
- responses: {
149
- 200: {
150
- bodyMapper: Mappers.PrivateEndpointConnection
151
- },
152
- default: {
153
- bodyMapper: Mappers.ErrorResponse
154
- }
155
- },
156
- serializer: serializer
157
- };
158
- var beginCreateOrUpdateOperationSpec = {
159
- httpMethod: "PUT",
160
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppConfiguration/configurationStores/{configStoreName}/privateEndpointConnections/{privateEndpointConnectionName}",
161
- urlParameters: [
162
- Parameters.subscriptionId,
163
- Parameters.resourceGroupName,
164
- Parameters.configStoreName,
165
- Parameters.privateEndpointConnectionName
166
- ],
167
- queryParameters: [
168
- Parameters.apiVersion
169
- ],
170
- headerParameters: [
171
- Parameters.acceptLanguage
172
- ],
173
- requestBody: {
174
- parameterPath: "privateEndpointConnection",
175
- mapper: __assign(__assign({}, Mappers.PrivateEndpointConnection), { required: true })
176
- },
177
- responses: {
178
- 200: {
179
- bodyMapper: Mappers.PrivateEndpointConnection
180
- },
181
- 201: {
182
- bodyMapper: Mappers.PrivateEndpointConnection
183
- },
184
- default: {
185
- bodyMapper: Mappers.ErrorResponse
186
- }
187
- },
188
- serializer: serializer
189
- };
190
- var beginDeleteMethodOperationSpec = {
191
- httpMethod: "DELETE",
192
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppConfiguration/configurationStores/{configStoreName}/privateEndpointConnections/{privateEndpointConnectionName}",
193
- urlParameters: [
194
- Parameters.subscriptionId,
195
- Parameters.resourceGroupName,
196
- Parameters.configStoreName,
197
- Parameters.privateEndpointConnectionName
198
- ],
199
- queryParameters: [
200
- Parameters.apiVersion
201
- ],
202
- headerParameters: [
203
- Parameters.acceptLanguage
204
- ],
205
- responses: {
206
- 200: {},
207
- 202: {},
208
- 204: {},
209
- default: {
210
- bodyMapper: Mappers.ErrorResponse
211
- }
212
- },
213
- serializer: serializer
214
- };
215
- var listByConfigurationStoreNextOperationSpec = {
216
- httpMethod: "GET",
217
- baseUrl: "https://management.azure.com",
218
- path: "{nextLink}",
219
- urlParameters: [
220
- Parameters.nextPageLink
221
- ],
222
- queryParameters: [
223
- Parameters.apiVersion
224
- ],
225
- headerParameters: [
226
- Parameters.acceptLanguage
227
- ],
228
- responses: {
229
- 200: {
230
- bodyMapper: Mappers.PrivateEndpointConnectionListResult
231
- },
232
- default: {
233
- bodyMapper: Mappers.ErrorResponse
234
- }
235
- },
236
- serializer: serializer
237
- };
238
- //# sourceMappingURL=privateEndpointConnections.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"privateEndpointConnections.js","sourceRoot":"","sources":["../../src/operations/privateEndpointConnections.ts"],"names":[],"mappings":"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"}
@@ -1,76 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { AppConfigurationManagementClientContext } from "../appConfigurationManagementClientContext";
4
- /** Class representing a PrivateLinkResources. */
5
- export declare class PrivateLinkResources {
6
- private readonly client;
7
- /**
8
- * Create a PrivateLinkResources.
9
- * @param {AppConfigurationManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: AppConfigurationManagementClientContext);
12
- /**
13
- * Gets the private link resources that need to be created for a configuration store.
14
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
15
- * @param configStoreName The name of the configuration store.
16
- * @param [options] The optional parameters
17
- * @returns Promise<Models.PrivateLinkResourcesListByConfigurationStoreResponse>
18
- */
19
- listByConfigurationStore(resourceGroupName: string, configStoreName: string, options?: msRest.RequestOptionsBase): Promise<Models.PrivateLinkResourcesListByConfigurationStoreResponse>;
20
- /**
21
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
22
- * @param configStoreName The name of the configuration store.
23
- * @param callback The callback
24
- */
25
- listByConfigurationStore(resourceGroupName: string, configStoreName: string, callback: msRest.ServiceCallback<Models.PrivateLinkResourceListResult>): void;
26
- /**
27
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
28
- * @param configStoreName The name of the configuration store.
29
- * @param options The optional parameters
30
- * @param callback The callback
31
- */
32
- listByConfigurationStore(resourceGroupName: string, configStoreName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.PrivateLinkResourceListResult>): void;
33
- /**
34
- * Gets a private link resource that need to be created for a configuration store.
35
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
36
- * @param configStoreName The name of the configuration store.
37
- * @param groupName The name of the private link resource group.
38
- * @param [options] The optional parameters
39
- * @returns Promise<Models.PrivateLinkResourcesGetResponse>
40
- */
41
- get(resourceGroupName: string, configStoreName: string, groupName: string, options?: msRest.RequestOptionsBase): Promise<Models.PrivateLinkResourcesGetResponse>;
42
- /**
43
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
44
- * @param configStoreName The name of the configuration store.
45
- * @param groupName The name of the private link resource group.
46
- * @param callback The callback
47
- */
48
- get(resourceGroupName: string, configStoreName: string, groupName: string, callback: msRest.ServiceCallback<Models.PrivateLinkResource>): void;
49
- /**
50
- * @param resourceGroupName The name of the resource group to which the container registry belongs.
51
- * @param configStoreName The name of the configuration store.
52
- * @param groupName The name of the private link resource group.
53
- * @param options The optional parameters
54
- * @param callback The callback
55
- */
56
- get(resourceGroupName: string, configStoreName: string, groupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.PrivateLinkResource>): void;
57
- /**
58
- * Gets the private link resources that need to be created for a configuration store.
59
- * @param nextPageLink The NextLink from the previous successful call to List operation.
60
- * @param [options] The optional parameters
61
- * @returns Promise<Models.PrivateLinkResourcesListByConfigurationStoreNextResponse>
62
- */
63
- listByConfigurationStoreNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.PrivateLinkResourcesListByConfigurationStoreNextResponse>;
64
- /**
65
- * @param nextPageLink The NextLink from the previous successful call to List operation.
66
- * @param callback The callback
67
- */
68
- listByConfigurationStoreNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.PrivateLinkResourceListResult>): void;
69
- /**
70
- * @param nextPageLink The NextLink from the previous successful call to List operation.
71
- * @param options The optional parameters
72
- * @param callback The callback
73
- */
74
- listByConfigurationStoreNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.PrivateLinkResourceListResult>): void;
75
- }
76
- //# sourceMappingURL=privateLinkResources.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"privateLinkResources.d.ts","sourceRoot":"","sources":["../../src/operations/privateLinkResources.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AAErG,iDAAiD;AACjD,qBAAa,oBAAoB;IAC/B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA0C;IAEjE;;;OAGG;gBACS,MAAM,EAAE,uCAAuC;IAI3D;;;;;;OAMG;IACH,wBAAwB,CAAC,iBAAiB,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,oDAAoD,CAAC;IACvL;;;;OAIG;IACH,wBAAwB,CAAC,iBAAiB,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;IAC1J;;;;;OAKG;IACH,wBAAwB,CAAC,iBAAiB,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;IAY9L;;;;;;;OAOG;IACH,GAAG,CAAC,iBAAiB,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAC;IAChK;;;;;OAKG;IACH,GAAG,CAAC,iBAAiB,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAC9I;;;;;;OAMG;IACH,GAAG,CAAC,iBAAiB,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAalL;;;;;OAKG;IACH,4BAA4B,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,wDAAwD,CAAC;IACjK;;;OAGG;IACH,4BAA4B,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;IAChI;;;;OAIG;IACH,4BAA4B,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;CAUrK"}
@@ -1,119 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is
7
- * regenerated.
8
- */
9
- import * as msRest from "@azure/ms-rest-js";
10
- import * as Mappers from "../models/privateLinkResourcesMappers";
11
- import * as Parameters from "../models/parameters";
12
- /** Class representing a PrivateLinkResources. */
13
- var PrivateLinkResources = /** @class */ (function () {
14
- /**
15
- * Create a PrivateLinkResources.
16
- * @param {AppConfigurationManagementClientContext} client Reference to the service client.
17
- */
18
- function PrivateLinkResources(client) {
19
- this.client = client;
20
- }
21
- PrivateLinkResources.prototype.listByConfigurationStore = function (resourceGroupName, configStoreName, options, callback) {
22
- return this.client.sendOperationRequest({
23
- resourceGroupName: resourceGroupName,
24
- configStoreName: configStoreName,
25
- options: options
26
- }, listByConfigurationStoreOperationSpec, callback);
27
- };
28
- PrivateLinkResources.prototype.get = function (resourceGroupName, configStoreName, groupName, options, callback) {
29
- return this.client.sendOperationRequest({
30
- resourceGroupName: resourceGroupName,
31
- configStoreName: configStoreName,
32
- groupName: groupName,
33
- options: options
34
- }, getOperationSpec, callback);
35
- };
36
- PrivateLinkResources.prototype.listByConfigurationStoreNext = function (nextPageLink, options, callback) {
37
- return this.client.sendOperationRequest({
38
- nextPageLink: nextPageLink,
39
- options: options
40
- }, listByConfigurationStoreNextOperationSpec, callback);
41
- };
42
- return PrivateLinkResources;
43
- }());
44
- export { PrivateLinkResources };
45
- // Operation Specifications
46
- var serializer = new msRest.Serializer(Mappers);
47
- var listByConfigurationStoreOperationSpec = {
48
- httpMethod: "GET",
49
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppConfiguration/configurationStores/{configStoreName}/privateLinkResources",
50
- urlParameters: [
51
- Parameters.subscriptionId,
52
- Parameters.resourceGroupName,
53
- Parameters.configStoreName
54
- ],
55
- queryParameters: [
56
- Parameters.apiVersion
57
- ],
58
- headerParameters: [
59
- Parameters.acceptLanguage
60
- ],
61
- responses: {
62
- 200: {
63
- bodyMapper: Mappers.PrivateLinkResourceListResult
64
- },
65
- default: {
66
- bodyMapper: Mappers.ErrorResponse
67
- }
68
- },
69
- serializer: serializer
70
- };
71
- var getOperationSpec = {
72
- httpMethod: "GET",
73
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppConfiguration/configurationStores/{configStoreName}/privateLinkResources/{groupName}",
74
- urlParameters: [
75
- Parameters.subscriptionId,
76
- Parameters.resourceGroupName,
77
- Parameters.configStoreName,
78
- Parameters.groupName
79
- ],
80
- queryParameters: [
81
- Parameters.apiVersion
82
- ],
83
- headerParameters: [
84
- Parameters.acceptLanguage
85
- ],
86
- responses: {
87
- 200: {
88
- bodyMapper: Mappers.PrivateLinkResource
89
- },
90
- default: {
91
- bodyMapper: Mappers.ErrorResponse
92
- }
93
- },
94
- serializer: serializer
95
- };
96
- var listByConfigurationStoreNextOperationSpec = {
97
- httpMethod: "GET",
98
- baseUrl: "https://management.azure.com",
99
- path: "{nextLink}",
100
- urlParameters: [
101
- Parameters.nextPageLink
102
- ],
103
- queryParameters: [
104
- Parameters.apiVersion
105
- ],
106
- headerParameters: [
107
- Parameters.acceptLanguage
108
- ],
109
- responses: {
110
- 200: {
111
- bodyMapper: Mappers.PrivateLinkResourceListResult
112
- },
113
- default: {
114
- bodyMapper: Mappers.ErrorResponse
115
- }
116
- },
117
- serializer: serializer
118
- };
119
- //# sourceMappingURL=privateLinkResources.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"privateLinkResources.js","sourceRoot":"","sources":["../../src/operations/privateLinkResources.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,uCAAuC,CAAC;AACjE,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,iDAAiD;AACjD;IAGE;;;OAGG;IACH,8BAAY,MAA+C;QACzD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAuBD,uDAAwB,GAAxB,UAAyB,iBAAyB,EAAE,eAAuB,EAAE,OAAkG,EAAE,QAAuE;QACtP,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,iBAAiB,mBAAA;YACjB,eAAe,iBAAA;YACf,OAAO,SAAA;SACR,EACD,qCAAqC,EACrC,QAAQ,CAAyE,CAAC;IACtF,CAAC;IA0BD,kCAAG,GAAH,UAAI,iBAAyB,EAAE,eAAuB,EAAE,SAAiB,EAAE,OAAwF,EAAE,QAA6D;QAChO,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,iBAAiB,mBAAA;YACjB,eAAe,iBAAA;YACf,SAAS,WAAA;YACT,OAAO,SAAA;SACR,EACD,gBAAgB,EAChB,QAAQ,CAAoD,CAAC;IACjE,CAAC;IAoBD,2DAA4B,GAA5B,UAA6B,YAAoB,EAAE,OAAkG,EAAE,QAAuE;QAC5N,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,yCAAyC,EACzC,QAAQ,CAA6E,CAAC;IAC1F,CAAC;IACH,2BAAC;AAAD,CAAC,AA1GD,IA0GC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,qCAAqC,GAAyB;IAClE,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,mKAAmK;IACzK,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,eAAe;KAC3B;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,6BAA6B;SAClD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,gBAAgB,GAAyB;IAC7C,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,+KAA+K;IACrL,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,eAAe;QAC1B,UAAU,CAAC,SAAS;KACrB;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,yCAAyC,GAAyB;IACtE,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,8BAA8B;IACvC,IAAI,EAAE,YAAY;IAClB,aAAa,EAAE;QACb,UAAU,CAAC,YAAY;KACxB;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,6BAA6B;SAClD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
@@ -1,67 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is
7
- * regenerated.
8
- */
9
-
10
- import * as Models from "./models";
11
- import * as msRest from "@azure/ms-rest-js";
12
- import * as msRestAzure from "@azure/ms-rest-azure-js";
13
- import { TokenCredential } from "@azure/core-auth";
14
-
15
- const packageName = "@azure/arm-appconfiguration";
16
- const packageVersion = "2.0.0";
17
-
18
- export class AppConfigurationManagementClientContext extends msRestAzure.AzureServiceClient {
19
- credentials: msRest.ServiceClientCredentials | TokenCredential;
20
- subscriptionId: string;
21
- apiVersion?: string;
22
-
23
- /**
24
- * Initializes a new instance of the AppConfigurationManagementClient class.
25
- * @param credentials Credentials needed for the client to connect to Azure. Credentials
26
- * implementing the TokenCredential interface from the @azure/identity package are recommended. For
27
- * more information about these credentials, see
28
- * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
29
- * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
30
- * @azure/ms-rest-browserauth are also supported.
31
- * @param subscriptionId The Microsoft Azure subscription ID.
32
- * @param [options] The parameter options
33
- */
34
- constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AppConfigurationManagementClientOptions) {
35
- if (credentials == undefined) {
36
- throw new Error('\'credentials\' cannot be null.');
37
- }
38
- if (subscriptionId == undefined) {
39
- throw new Error('\'subscriptionId\' cannot be null.');
40
- }
41
-
42
- if (!options) {
43
- options = {};
44
- }
45
- if (!options.userAgent) {
46
- const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
47
- options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
48
- }
49
-
50
- super(credentials, options);
51
-
52
- this.apiVersion = '2021-03-01-preview';
53
- this.acceptLanguage = 'en-US';
54
- this.longRunningOperationRetryTimeout = 30;
55
- this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
56
- this.requestContentType = "application/json; charset=utf-8";
57
- this.credentials = credentials;
58
- this.subscriptionId = subscriptionId;
59
-
60
- if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
61
- this.acceptLanguage = options.acceptLanguage;
62
- }
63
- if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
64
- this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
65
- }
66
- }
67
- }
@@ -1,35 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
-
9
- export {
10
- ApiKey,
11
- ApiKeyListResult,
12
- AzureEntityResource,
13
- BaseResource,
14
- ConfigurationStore,
15
- ConfigurationStoreListResult,
16
- ConfigurationStoreUpdateParameters,
17
- EncryptionProperties,
18
- ErrorAdditionalInfo,
19
- ErrorDetails,
20
- ErrorResponse,
21
- KeyValue,
22
- KeyVaultProperties,
23
- PrivateEndpoint,
24
- PrivateEndpointConnection,
25
- PrivateEndpointConnectionReference,
26
- PrivateLinkServiceConnectionState,
27
- ProxyResource,
28
- RegenerateKeyParameters,
29
- Resource,
30
- ResourceIdentity,
31
- Sku,
32
- SystemData,
33
- TrackedResource,
34
- UserIdentity
35
- } from "../models/mappers";
@@ -1,31 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
-
9
- export {
10
- AzureEntityResource,
11
- BaseResource,
12
- ConfigurationStore,
13
- EncryptionProperties,
14
- ErrorAdditionalInfo,
15
- ErrorDetails,
16
- ErrorResponse,
17
- KeyValue,
18
- KeyValueListResult,
19
- KeyVaultProperties,
20
- PrivateEndpoint,
21
- PrivateEndpointConnection,
22
- PrivateEndpointConnectionReference,
23
- PrivateLinkServiceConnectionState,
24
- ProxyResource,
25
- Resource,
26
- ResourceIdentity,
27
- Sku,
28
- SystemData,
29
- TrackedResource,
30
- UserIdentity
31
- } from "../models/mappers";
@@ -1,23 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
-
9
- export {
10
- CheckNameAvailabilityParameters,
11
- ErrorAdditionalInfo,
12
- ErrorDetails,
13
- ErrorResponse,
14
- LogSpecification,
15
- MetricDimension,
16
- MetricSpecification,
17
- NameAvailabilityStatus,
18
- OperationDefinition,
19
- OperationDefinitionDisplay,
20
- OperationDefinitionListResult,
21
- OperationProperties,
22
- ServiceSpecification
23
- } from "../models/mappers";
@@ -1,31 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
-
9
- export {
10
- AzureEntityResource,
11
- BaseResource,
12
- ConfigurationStore,
13
- EncryptionProperties,
14
- ErrorAdditionalInfo,
15
- ErrorDetails,
16
- ErrorResponse,
17
- KeyValue,
18
- KeyVaultProperties,
19
- PrivateEndpoint,
20
- PrivateEndpointConnection,
21
- PrivateEndpointConnectionListResult,
22
- PrivateEndpointConnectionReference,
23
- PrivateLinkServiceConnectionState,
24
- ProxyResource,
25
- Resource,
26
- ResourceIdentity,
27
- Sku,
28
- SystemData,
29
- TrackedResource,
30
- UserIdentity
31
- } from "../models/mappers";