@azure/arm-datacatalog 2.0.0 → 3.0.0

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 (118) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +70 -78
  5. package/dist/index.js +668 -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/dataCatalogRestClient.d.ts +22 -0
  10. package/dist-esm/src/dataCatalogRestClient.d.ts.map +1 -0
  11. package/dist-esm/src/dataCatalogRestClient.js +58 -0
  12. package/dist-esm/src/dataCatalogRestClient.js.map +1 -0
  13. package/dist-esm/src/index.d.ts +4 -0
  14. package/dist-esm/src/index.d.ts.map +1 -0
  15. package/{esm/models/aDCOperationsMappers.js → dist-esm/src/index.js} +4 -2
  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 +133 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +14 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +9 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/{esm → dist-esm/src}/models/mappers.js +101 -116
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +10 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/dist-esm/src/models/parameters.js +92 -0
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/aDCCatalogs.d.ts +62 -0
  34. package/dist-esm/src/operations/aDCCatalogs.d.ts.map +1 -0
  35. package/dist-esm/src/operations/aDCCatalogs.js +208 -0
  36. package/dist-esm/src/operations/aDCCatalogs.js.map +1 -0
  37. package/dist-esm/src/operations/aDCOperations.d.ts +18 -0
  38. package/dist-esm/src/operations/aDCOperations.d.ts.map +1 -0
  39. package/dist-esm/src/operations/aDCOperations.js +43 -0
  40. package/dist-esm/src/operations/aDCOperations.js.map +1 -0
  41. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  42. package/dist-esm/src/operations/index.d.ts.map +1 -0
  43. package/{esm → dist-esm/src}/operations/index.js +1 -2
  44. package/dist-esm/src/operations/index.js.map +1 -0
  45. package/dist-esm/src/operationsInterfaces/aDCCatalogs.d.ts +54 -0
  46. package/dist-esm/src/operationsInterfaces/aDCCatalogs.d.ts.map +1 -0
  47. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/aDCCatalogs.js} +2 -1
  48. package/dist-esm/src/operationsInterfaces/aDCCatalogs.js.map +1 -0
  49. package/dist-esm/src/operationsInterfaces/aDCOperations.d.ts +10 -0
  50. package/dist-esm/src/operationsInterfaces/aDCOperations.d.ts.map +1 -0
  51. package/dist-esm/src/operationsInterfaces/aDCOperations.js +9 -0
  52. package/dist-esm/src/operationsInterfaces/aDCOperations.js.map +1 -0
  53. package/dist-esm/src/operationsInterfaces/index.d.ts +3 -0
  54. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  55. package/dist-esm/src/operationsInterfaces/index.js +10 -0
  56. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  57. package/dist-esm/test/sampleTest.d.ts +2 -0
  58. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  59. package/dist-esm/test/sampleTest.js +40 -0
  60. package/dist-esm/test/sampleTest.js.map +1 -0
  61. package/package.json +69 -32
  62. package/review/arm-datacatalog.api.md +157 -0
  63. package/rollup.config.js +181 -30
  64. package/src/dataCatalogRestClient.ts +70 -37
  65. package/src/{models/aDCCatalogsMappers.ts → index.ts} +3 -8
  66. package/src/lroImpl.ts +34 -0
  67. package/src/models/index.ts +108 -207
  68. package/src/models/mappers.ts +104 -119
  69. package/src/models/parameters.ts +59 -20
  70. package/src/operations/aDCCatalogs.ts +193 -251
  71. package/src/operations/aDCOperations.ts +27 -44
  72. package/src/operations/index.ts +1 -2
  73. package/src/operationsInterfaces/aDCCatalogs.ts +93 -0
  74. package/src/operationsInterfaces/aDCOperations.ts +23 -0
  75. package/src/{models/aDCOperationsMappers.ts → operationsInterfaces/index.ts} +2 -6
  76. package/tsconfig.json +3 -3
  77. package/types/arm-datacatalog.d.ts +237 -0
  78. package/types/tsdoc-metadata.json +11 -0
  79. package/dist/arm-datacatalog.js +0 -765
  80. package/dist/arm-datacatalog.js.map +0 -1
  81. package/dist/arm-datacatalog.min.js +0 -1
  82. package/dist/arm-datacatalog.min.js.map +0 -1
  83. package/esm/dataCatalogRestClient.d.ts +0 -28
  84. package/esm/dataCatalogRestClient.d.ts.map +0 -1
  85. package/esm/dataCatalogRestClient.js +0 -41
  86. package/esm/dataCatalogRestClient.js.map +0 -1
  87. package/esm/dataCatalogRestClientContext.d.ts +0 -26
  88. package/esm/dataCatalogRestClientContext.d.ts.map +0 -1
  89. package/esm/dataCatalogRestClientContext.js +0 -67
  90. package/esm/dataCatalogRestClientContext.js.map +0 -1
  91. package/esm/models/aDCCatalogsMappers.d.ts +0 -2
  92. package/esm/models/aDCCatalogsMappers.d.ts.map +0 -1
  93. package/esm/models/aDCCatalogsMappers.js +0 -9
  94. package/esm/models/aDCCatalogsMappers.js.map +0 -1
  95. package/esm/models/aDCOperationsMappers.d.ts +0 -2
  96. package/esm/models/aDCOperationsMappers.d.ts.map +0 -1
  97. package/esm/models/aDCOperationsMappers.js.map +0 -1
  98. package/esm/models/index.d.ts +0 -235
  99. package/esm/models/index.d.ts.map +0 -1
  100. package/esm/models/index.js.map +0 -1
  101. package/esm/models/mappers.d.ts +0 -11
  102. package/esm/models/mappers.d.ts.map +0 -1
  103. package/esm/models/mappers.js.map +0 -1
  104. package/esm/models/parameters.d.ts +0 -7
  105. package/esm/models/parameters.d.ts.map +0 -1
  106. package/esm/models/parameters.js +0 -64
  107. package/esm/models/parameters.js.map +0 -1
  108. package/esm/operations/aDCCatalogs.d.ts +0 -131
  109. package/esm/operations/aDCCatalogs.d.ts.map +0 -1
  110. package/esm/operations/aDCCatalogs.js +0 -209
  111. package/esm/operations/aDCCatalogs.js.map +0 -1
  112. package/esm/operations/aDCOperations.d.ts +0 -28
  113. package/esm/operations/aDCOperations.d.ts.map +0 -1
  114. package/esm/operations/aDCOperations.js +0 -50
  115. package/esm/operations/aDCOperations.js.map +0 -1
  116. package/esm/operations/index.d.ts.map +0 -1
  117. package/esm/operations/index.js.map +0 -1
  118. package/src/dataCatalogRestClientContext.ts +0 -75
@@ -6,255 +6,156 @@
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 };
11
+ /** The list of Azure data catalog service operation response. */
12
+ export interface OperationEntityListResult {
13
+ /** The list of operations. */
14
+ value?: OperationEntity[];
15
+ }
13
16
 
14
- /**
15
- * User principals.
16
- */
17
+ /** The operation supported by Azure Data Catalog Service. */
18
+ export interface OperationEntity {
19
+ /** Operation name: {provider}/{resource}/{operation}. */
20
+ name?: string;
21
+ /** The operation supported by Azure Data Catalog Service. */
22
+ display?: OperationDisplayInfo;
23
+ }
24
+
25
+ /** The operation supported by Azure Data Catalog Service. */
26
+ export interface OperationDisplayInfo {
27
+ /** The description of the operation. */
28
+ description?: string;
29
+ /** The action that users can perform, based on their permission level. */
30
+ operation?: string;
31
+ /** Service provider: Azure Data Catalog Service. */
32
+ provider?: string;
33
+ /** Resource on which the operation is performed. */
34
+ resource?: string;
35
+ }
36
+
37
+ /** The response from the List Azure Data Catalog operation. */
38
+ export interface ADCCatalogsListResult {
39
+ /** the list of Azure Data Catalogs. */
40
+ value?: ADCCatalog[];
41
+ }
42
+
43
+ /** User principals. */
17
44
  export interface Principals {
18
- /**
19
- * UPN of the user.
20
- */
45
+ /** UPN of the user. */
21
46
  upn?: string;
22
- /**
23
- * Object Id for the user
24
- */
47
+ /** Object Id for the user */
25
48
  objectId?: string;
26
49
  }
27
50
 
28
- /**
29
- * The Resource model definition.
30
- */
31
- export interface Resource extends BaseResource {
51
+ /** The Resource model definition. */
52
+ export interface Resource {
32
53
  /**
33
54
  * Resource Id
34
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
55
+ * NOTE: This property will not be serialized. It can only be populated by the server.
35
56
  */
36
57
  readonly id?: string;
37
58
  /**
38
59
  * Resource name
39
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
60
+ * NOTE: This property will not be serialized. It can only be populated by the server.
40
61
  */
41
62
  readonly name?: string;
42
63
  /**
43
64
  * Resource type
44
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
65
+ * NOTE: This property will not be serialized. It can only be populated by the server.
45
66
  */
46
67
  readonly type?: string;
47
- /**
48
- * Resource location
49
- */
68
+ /** Resource location */
50
69
  location?: string;
51
- /**
52
- * Resource tags
53
- */
70
+ /** Resource tags */
54
71
  tags?: { [propertyName: string]: string };
55
- /**
56
- * Resource etag
57
- */
72
+ /** Resource etag */
58
73
  etag?: string;
59
74
  }
60
75
 
61
- /**
62
- * Azure Data Catalog.
63
- */
64
- export interface ADCCatalog extends Resource {
65
- /**
66
- * Azure data catalog SKU. Possible values include: 'Free', 'Standard'
67
- */
76
+ /** Azure Data Catalog. */
77
+ export type ADCCatalog = Resource & {
78
+ /** Azure data catalog SKU. */
68
79
  sku?: SkuType;
69
- /**
70
- * Azure data catalog units.
71
- */
80
+ /** Azure data catalog units. */
72
81
  units?: number;
73
- /**
74
- * Azure data catalog admin list.
75
- */
82
+ /** Azure data catalog admin list. */
76
83
  admins?: Principals[];
77
- /**
78
- * Azure data catalog user list.
79
- */
84
+ /** Azure data catalog user list. */
80
85
  users?: Principals[];
81
- /**
82
- * Azure data catalog provision status.
83
- */
86
+ /** Azure data catalog provision status. */
84
87
  successfullyProvisioned?: boolean;
85
- /**
86
- * Automatic unit adjustment enabled or not.
87
- */
88
+ /** Automatic unit adjustment enabled or not. */
88
89
  enableAutomaticUnitAdjustment?: boolean;
89
- }
90
-
91
- /**
92
- * The response from the List Azure Data Catalog operation.
93
- */
94
- export interface ADCCatalogsListResult {
95
- /**
96
- * the list of Azure Data Catalogs.
97
- */
98
- value?: ADCCatalog[];
99
- }
100
-
101
- /**
102
- * The operation supported by Azure Data Catalog Service.
103
- */
104
- export interface OperationDisplayInfo {
105
- /**
106
- * The description of the operation.
107
- */
108
- description?: string;
109
- /**
110
- * The action that users can perform, based on their permission level.
111
- */
112
- operation?: string;
113
- /**
114
- * Service provider: Azure Data Catalog Service.
115
- */
116
- provider?: string;
117
- /**
118
- * Resource on which the operation is performed.
119
- */
120
- resource?: string;
121
- }
122
-
123
- /**
124
- * The operation supported by Azure Data Catalog Service.
125
- */
126
- export interface OperationEntity {
127
- /**
128
- * Operation name: {provider}/{resource}/{operation}.
129
- */
130
- name?: string;
131
- /**
132
- * The operation supported by Azure Data Catalog Service.
133
- */
134
- display?: OperationDisplayInfo;
135
- }
136
-
137
- /**
138
- * The list of Azure data catalog service operation response.
139
- */
140
- export interface OperationEntityListResult {
141
- /**
142
- * The list of operations.
143
- */
144
- value?: OperationEntity[];
145
- }
90
+ };
146
91
 
147
- /**
148
- * An interface representing DataCatalogRestClientOptions.
149
- */
150
- export interface DataCatalogRestClientOptions extends AzureServiceClientOptions {
151
- baseUri?: string;
92
+ /** Known values of {@link SkuType} that the service accepts. */
93
+ export enum KnownSkuType {
94
+ Free = "Free",
95
+ Standard = "Standard"
152
96
  }
153
97
 
154
98
  /**
155
- * Defines values for SkuType.
156
- * Possible values include: 'Free', 'Standard'
157
- * @readonly
158
- * @enum {string}
99
+ * Defines values for SkuType. \
100
+ * {@link KnownSkuType} can be used interchangeably with SkuType,
101
+ * this enum contains the known values that the service supports.
102
+ * ### Known values supported by the service
103
+ * **Free** \
104
+ * **Standard**
159
105
  */
160
- export type SkuType = 'Free' | 'Standard';
106
+ export type SkuType = string;
161
107
 
162
- /**
163
- * Contains response data for the list operation.
164
- */
165
- export type ADCOperationsListResponse = OperationEntityListResult & {
166
- /**
167
- * The underlying HTTP response.
168
- */
169
- _response: msRest.HttpResponse & {
170
- /**
171
- * The response body as text (string format)
172
- */
173
- bodyAsText: string;
108
+ /** Optional parameters. */
109
+ export interface ADCOperationsListOptionalParams
110
+ extends coreClient.OperationOptions {}
174
111
 
175
- /**
176
- * The response body as parsed JSON or XML
177
- */
178
- parsedBody: OperationEntityListResult;
179
- };
180
- };
112
+ /** Contains response data for the list operation. */
113
+ export type ADCOperationsListResponse = OperationEntityListResult;
181
114
 
182
- /**
183
- * Contains response data for the listtByResourceGroup operation.
184
- */
185
- export type ADCCatalogsListtByResourceGroupResponse = ADCCatalogsListResult & {
186
- /**
187
- * The underlying HTTP response.
188
- */
189
- _response: msRest.HttpResponse & {
190
- /**
191
- * The response body as text (string format)
192
- */
193
- bodyAsText: string;
115
+ /** Optional parameters. */
116
+ export interface ADCCatalogsListtByResourceGroupOptionalParams
117
+ extends coreClient.OperationOptions {}
194
118
 
195
- /**
196
- * The response body as parsed JSON or XML
197
- */
198
- parsedBody: ADCCatalogsListResult;
199
- };
200
- };
119
+ /** Contains response data for the listtByResourceGroup operation. */
120
+ export type ADCCatalogsListtByResourceGroupResponse = ADCCatalogsListResult;
201
121
 
202
- /**
203
- * Contains response data for the createOrUpdate operation.
204
- */
205
- export type ADCCatalogsCreateOrUpdateResponse = ADCCatalog & {
206
- /**
207
- * The underlying HTTP response.
208
- */
209
- _response: msRest.HttpResponse & {
210
- /**
211
- * The response body as text (string format)
212
- */
213
- bodyAsText: string;
122
+ /** Optional parameters. */
123
+ export interface ADCCatalogsCreateOrUpdateOptionalParams
124
+ extends coreClient.OperationOptions {}
214
125
 
215
- /**
216
- * The response body as parsed JSON or XML
217
- */
218
- parsedBody: ADCCatalog;
219
- };
220
- };
126
+ /** Contains response data for the createOrUpdate operation. */
127
+ export type ADCCatalogsCreateOrUpdateResponse = ADCCatalog;
221
128
 
222
- /**
223
- * Contains response data for the get operation.
224
- */
225
- export type ADCCatalogsGetResponse = ADCCatalog & {
226
- /**
227
- * The underlying HTTP response.
228
- */
229
- _response: msRest.HttpResponse & {
230
- /**
231
- * The response body as text (string format)
232
- */
233
- bodyAsText: string;
129
+ /** Optional parameters. */
130
+ export interface ADCCatalogsGetOptionalParams
131
+ extends coreClient.OperationOptions {}
234
132
 
235
- /**
236
- * The response body as parsed JSON or XML
237
- */
238
- parsedBody: ADCCatalog;
239
- };
240
- };
133
+ /** Contains response data for the get operation. */
134
+ export type ADCCatalogsGetResponse = ADCCatalog;
241
135
 
242
- /**
243
- * Contains response data for the update operation.
244
- */
245
- export type ADCCatalogsUpdateResponse = ADCCatalog & {
246
- /**
247
- * The underlying HTTP response.
248
- */
249
- _response: msRest.HttpResponse & {
250
- /**
251
- * The response body as text (string format)
252
- */
253
- bodyAsText: string;
136
+ /** Optional parameters. */
137
+ export interface ADCCatalogsDeleteOptionalParams
138
+ extends coreClient.OperationOptions {
139
+ /** Delay to wait until next poll, in milliseconds. */
140
+ updateIntervalInMs?: number;
141
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
142
+ resumeFrom?: string;
143
+ }
254
144
 
255
- /**
256
- * The response body as parsed JSON or XML
257
- */
258
- parsedBody: ADCCatalog;
259
- };
260
- };
145
+ /** Optional parameters. */
146
+ export interface ADCCatalogsUpdateOptionalParams
147
+ extends coreClient.OperationOptions {}
148
+
149
+ /** Contains response data for the update operation. */
150
+ export type ADCCatalogsUpdateResponse = ADCCatalog;
151
+
152
+ /** Optional parameters. */
153
+ export interface DataCatalogRestClientOptionalParams
154
+ extends coreClient.ServiceClientOptions {
155
+ /** server parameter */
156
+ $host?: string;
157
+ /** Api Version */
158
+ apiVersion?: string;
159
+ /** Overrides client endpoint. */
160
+ endpoint?: string;
161
+ }
@@ -6,14 +6,106 @@
6
6
  * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
7
  */
8
8
 
9
- import { CloudErrorMapper, BaseResourceMapper } 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 const CloudError = CloudErrorMapper;
13
- export const BaseResource = BaseResourceMapper;
11
+ export const OperationEntityListResult: coreClient.CompositeMapper = {
12
+ type: {
13
+ name: "Composite",
14
+ className: "OperationEntityListResult",
15
+ modelProperties: {
16
+ value: {
17
+ serializedName: "value",
18
+ type: {
19
+ name: "Sequence",
20
+ element: {
21
+ type: {
22
+ name: "Composite",
23
+ className: "OperationEntity"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+ }
30
+ };
14
31
 
15
- export const Principals: msRest.CompositeMapper = {
16
- serializedName: "Principals",
32
+ export const OperationEntity: coreClient.CompositeMapper = {
33
+ type: {
34
+ name: "Composite",
35
+ className: "OperationEntity",
36
+ modelProperties: {
37
+ name: {
38
+ serializedName: "name",
39
+ type: {
40
+ name: "String"
41
+ }
42
+ },
43
+ display: {
44
+ serializedName: "display",
45
+ type: {
46
+ name: "Composite",
47
+ className: "OperationDisplayInfo"
48
+ }
49
+ }
50
+ }
51
+ }
52
+ };
53
+
54
+ export const OperationDisplayInfo: coreClient.CompositeMapper = {
55
+ type: {
56
+ name: "Composite",
57
+ className: "OperationDisplayInfo",
58
+ modelProperties: {
59
+ description: {
60
+ serializedName: "description",
61
+ type: {
62
+ name: "String"
63
+ }
64
+ },
65
+ operation: {
66
+ serializedName: "operation",
67
+ type: {
68
+ name: "String"
69
+ }
70
+ },
71
+ provider: {
72
+ serializedName: "provider",
73
+ type: {
74
+ name: "String"
75
+ }
76
+ },
77
+ resource: {
78
+ serializedName: "resource",
79
+ type: {
80
+ name: "String"
81
+ }
82
+ }
83
+ }
84
+ }
85
+ };
86
+
87
+ export const ADCCatalogsListResult: coreClient.CompositeMapper = {
88
+ type: {
89
+ name: "Composite",
90
+ className: "ADCCatalogsListResult",
91
+ modelProperties: {
92
+ value: {
93
+ serializedName: "value",
94
+ type: {
95
+ name: "Sequence",
96
+ element: {
97
+ type: {
98
+ name: "Composite",
99
+ className: "ADCCatalog"
100
+ }
101
+ }
102
+ }
103
+ }
104
+ }
105
+ }
106
+ };
107
+
108
+ export const Principals: coreClient.CompositeMapper = {
17
109
  type: {
18
110
  name: "Composite",
19
111
  className: "Principals",
@@ -34,29 +126,28 @@ export const Principals: msRest.CompositeMapper = {
34
126
  }
35
127
  };
36
128
 
37
- export const Resource: msRest.CompositeMapper = {
38
- serializedName: "Resource",
129
+ export const Resource: coreClient.CompositeMapper = {
39
130
  type: {
40
131
  name: "Composite",
41
132
  className: "Resource",
42
133
  modelProperties: {
43
134
  id: {
44
- readOnly: true,
45
135
  serializedName: "id",
136
+ readOnly: true,
46
137
  type: {
47
138
  name: "String"
48
139
  }
49
140
  },
50
141
  name: {
51
- readOnly: true,
52
142
  serializedName: "name",
143
+ readOnly: true,
53
144
  type: {
54
145
  name: "String"
55
146
  }
56
147
  },
57
148
  type: {
58
- readOnly: true,
59
149
  serializedName: "type",
150
+ readOnly: true,
60
151
  type: {
61
152
  name: "String"
62
153
  }
@@ -71,11 +162,7 @@ export const Resource: msRest.CompositeMapper = {
71
162
  serializedName: "tags",
72
163
  type: {
73
164
  name: "Dictionary",
74
- value: {
75
- type: {
76
- name: "String"
77
- }
78
- }
165
+ value: { type: { name: "String" } }
79
166
  }
80
167
  },
81
168
  etag: {
@@ -88,8 +175,7 @@ export const Resource: msRest.CompositeMapper = {
88
175
  }
89
176
  };
90
177
 
91
- export const ADCCatalog: msRest.CompositeMapper = {
92
- serializedName: "ADCCatalog",
178
+ export const ADCCatalog: coreClient.CompositeMapper = {
93
179
  type: {
94
180
  name: "Composite",
95
181
  className: "ADCCatalog",
@@ -146,104 +232,3 @@ export const ADCCatalog: msRest.CompositeMapper = {
146
232
  }
147
233
  }
148
234
  };
149
-
150
- export const ADCCatalogsListResult: msRest.CompositeMapper = {
151
- serializedName: "ADCCatalogsListResult",
152
- type: {
153
- name: "Composite",
154
- className: "ADCCatalogsListResult",
155
- modelProperties: {
156
- value: {
157
- serializedName: "value",
158
- type: {
159
- name: "Sequence",
160
- element: {
161
- type: {
162
- name: "Composite",
163
- className: "ADCCatalog"
164
- }
165
- }
166
- }
167
- }
168
- }
169
- }
170
- };
171
-
172
- export const OperationDisplayInfo: msRest.CompositeMapper = {
173
- serializedName: "OperationDisplayInfo",
174
- type: {
175
- name: "Composite",
176
- className: "OperationDisplayInfo",
177
- modelProperties: {
178
- description: {
179
- serializedName: "description",
180
- type: {
181
- name: "String"
182
- }
183
- },
184
- operation: {
185
- serializedName: "operation",
186
- type: {
187
- name: "String"
188
- }
189
- },
190
- provider: {
191
- serializedName: "provider",
192
- type: {
193
- name: "String"
194
- }
195
- },
196
- resource: {
197
- serializedName: "resource",
198
- type: {
199
- name: "String"
200
- }
201
- }
202
- }
203
- }
204
- };
205
-
206
- export const OperationEntity: msRest.CompositeMapper = {
207
- serializedName: "OperationEntity",
208
- type: {
209
- name: "Composite",
210
- className: "OperationEntity",
211
- modelProperties: {
212
- name: {
213
- serializedName: "name",
214
- type: {
215
- name: "String"
216
- }
217
- },
218
- display: {
219
- serializedName: "display",
220
- type: {
221
- name: "Composite",
222
- className: "OperationDisplayInfo"
223
- }
224
- }
225
- }
226
- }
227
- };
228
-
229
- export const OperationEntityListResult: msRest.CompositeMapper = {
230
- serializedName: "OperationEntityListResult",
231
- type: {
232
- name: "Composite",
233
- className: "OperationEntityListResult",
234
- modelProperties: {
235
- value: {
236
- serializedName: "value",
237
- type: {
238
- name: "Sequence",
239
- element: {
240
- type: {
241
- name: "Composite",
242
- className: "OperationEntity"
243
- }
244
- }
245
- }
246
- }
247
- }
248
- }
249
- };