@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
@@ -1,235 +0,0 @@
1
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
2
- import * as msRest from "@azure/ms-rest-js";
3
- export { BaseResource, CloudError };
4
- /**
5
- * User principals.
6
- */
7
- export interface Principals {
8
- /**
9
- * UPN of the user.
10
- */
11
- upn?: string;
12
- /**
13
- * Object Id for the user
14
- */
15
- objectId?: string;
16
- }
17
- /**
18
- * The Resource model definition.
19
- */
20
- export interface Resource extends BaseResource {
21
- /**
22
- * Resource Id
23
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
24
- */
25
- readonly id?: string;
26
- /**
27
- * Resource name
28
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
29
- */
30
- readonly name?: string;
31
- /**
32
- * Resource type
33
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
34
- */
35
- readonly type?: string;
36
- /**
37
- * Resource location
38
- */
39
- location?: string;
40
- /**
41
- * Resource tags
42
- */
43
- tags?: {
44
- [propertyName: string]: string;
45
- };
46
- /**
47
- * Resource etag
48
- */
49
- etag?: string;
50
- }
51
- /**
52
- * Azure Data Catalog.
53
- */
54
- export interface ADCCatalog extends Resource {
55
- /**
56
- * Azure data catalog SKU. Possible values include: 'Free', 'Standard'
57
- */
58
- sku?: SkuType;
59
- /**
60
- * Azure data catalog units.
61
- */
62
- units?: number;
63
- /**
64
- * Azure data catalog admin list.
65
- */
66
- admins?: Principals[];
67
- /**
68
- * Azure data catalog user list.
69
- */
70
- users?: Principals[];
71
- /**
72
- * Azure data catalog provision status.
73
- */
74
- successfullyProvisioned?: boolean;
75
- /**
76
- * Automatic unit adjustment enabled or not.
77
- */
78
- enableAutomaticUnitAdjustment?: boolean;
79
- }
80
- /**
81
- * The response from the List Azure Data Catalog operation.
82
- */
83
- export interface ADCCatalogsListResult {
84
- /**
85
- * the list of Azure Data Catalogs.
86
- */
87
- value?: ADCCatalog[];
88
- }
89
- /**
90
- * The operation supported by Azure Data Catalog Service.
91
- */
92
- export interface OperationDisplayInfo {
93
- /**
94
- * The description of the operation.
95
- */
96
- description?: string;
97
- /**
98
- * The action that users can perform, based on their permission level.
99
- */
100
- operation?: string;
101
- /**
102
- * Service provider: Azure Data Catalog Service.
103
- */
104
- provider?: string;
105
- /**
106
- * Resource on which the operation is performed.
107
- */
108
- resource?: string;
109
- }
110
- /**
111
- * The operation supported by Azure Data Catalog Service.
112
- */
113
- export interface OperationEntity {
114
- /**
115
- * Operation name: {provider}/{resource}/{operation}.
116
- */
117
- name?: string;
118
- /**
119
- * The operation supported by Azure Data Catalog Service.
120
- */
121
- display?: OperationDisplayInfo;
122
- }
123
- /**
124
- * The list of Azure data catalog service operation response.
125
- */
126
- export interface OperationEntityListResult {
127
- /**
128
- * The list of operations.
129
- */
130
- value?: OperationEntity[];
131
- }
132
- /**
133
- * An interface representing DataCatalogRestClientOptions.
134
- */
135
- export interface DataCatalogRestClientOptions extends AzureServiceClientOptions {
136
- baseUri?: string;
137
- }
138
- /**
139
- * Defines values for SkuType.
140
- * Possible values include: 'Free', 'Standard'
141
- * @readonly
142
- * @enum {string}
143
- */
144
- export declare type SkuType = 'Free' | 'Standard';
145
- /**
146
- * Contains response data for the list operation.
147
- */
148
- export declare type ADCOperationsListResponse = OperationEntityListResult & {
149
- /**
150
- * The underlying HTTP response.
151
- */
152
- _response: msRest.HttpResponse & {
153
- /**
154
- * The response body as text (string format)
155
- */
156
- bodyAsText: string;
157
- /**
158
- * The response body as parsed JSON or XML
159
- */
160
- parsedBody: OperationEntityListResult;
161
- };
162
- };
163
- /**
164
- * Contains response data for the listtByResourceGroup operation.
165
- */
166
- export declare type ADCCatalogsListtByResourceGroupResponse = ADCCatalogsListResult & {
167
- /**
168
- * The underlying HTTP response.
169
- */
170
- _response: msRest.HttpResponse & {
171
- /**
172
- * The response body as text (string format)
173
- */
174
- bodyAsText: string;
175
- /**
176
- * The response body as parsed JSON or XML
177
- */
178
- parsedBody: ADCCatalogsListResult;
179
- };
180
- };
181
- /**
182
- * Contains response data for the createOrUpdate operation.
183
- */
184
- export declare type ADCCatalogsCreateOrUpdateResponse = ADCCatalog & {
185
- /**
186
- * The underlying HTTP response.
187
- */
188
- _response: msRest.HttpResponse & {
189
- /**
190
- * The response body as text (string format)
191
- */
192
- bodyAsText: string;
193
- /**
194
- * The response body as parsed JSON or XML
195
- */
196
- parsedBody: ADCCatalog;
197
- };
198
- };
199
- /**
200
- * Contains response data for the get operation.
201
- */
202
- export declare type ADCCatalogsGetResponse = ADCCatalog & {
203
- /**
204
- * The underlying HTTP response.
205
- */
206
- _response: msRest.HttpResponse & {
207
- /**
208
- * The response body as text (string format)
209
- */
210
- bodyAsText: string;
211
- /**
212
- * The response body as parsed JSON or XML
213
- */
214
- parsedBody: ADCCatalog;
215
- };
216
- };
217
- /**
218
- * Contains response data for the update operation.
219
- */
220
- export declare type ADCCatalogsUpdateResponse = ADCCatalog & {
221
- /**
222
- * The underlying HTTP response.
223
- */
224
- _response: msRest.HttpResponse & {
225
- /**
226
- * The response body as text (string format)
227
- */
228
- bodyAsText: string;
229
- /**
230
- * The response body as parsed JSON or XML
231
- */
232
- parsedBody: ADCCatalog;
233
- };
234
- };
235
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -1,11 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const CloudError: msRest.CompositeMapper;
3
- export declare const BaseResource: msRest.CompositeMapper;
4
- export declare const Principals: msRest.CompositeMapper;
5
- export declare const Resource: msRest.CompositeMapper;
6
- export declare const ADCCatalog: msRest.CompositeMapper;
7
- export declare const ADCCatalogsListResult: msRest.CompositeMapper;
8
- export declare const OperationDisplayInfo: msRest.CompositeMapper;
9
- export declare const OperationEntity: msRest.CompositeMapper;
10
- export declare const OperationEntityListResult: msRest.CompositeMapper;
11
- //# sourceMappingURL=mappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAoB/B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eAoD7B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAyD/B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,MAAM,CAAC,eAoB1C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eAgCzC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eAqBpC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,eAoB9C,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -1,7 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const acceptLanguage: msRest.OperationParameter;
3
- export declare const apiVersion: msRest.OperationQueryParameter;
4
- export declare const catalogName: msRest.OperationURLParameter;
5
- export declare const resourceGroupName: msRest.OperationURLParameter;
6
- export declare const subscriptionId: msRest.OperationURLParameter;
7
- //# sourceMappingURL=parameters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAS/B,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,qBAShC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBActC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBASnC,CAAC"}
@@ -1,64 +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
- export var acceptLanguage = {
10
- parameterPath: "acceptLanguage",
11
- mapper: {
12
- serializedName: "accept-language",
13
- defaultValue: 'en-US',
14
- type: {
15
- name: "String"
16
- }
17
- }
18
- };
19
- export var apiVersion = {
20
- parameterPath: "apiVersion",
21
- mapper: {
22
- required: true,
23
- serializedName: "api-version",
24
- type: {
25
- name: "String"
26
- }
27
- }
28
- };
29
- export var catalogName = {
30
- parameterPath: "catalogName",
31
- mapper: {
32
- required: true,
33
- serializedName: "catalogName",
34
- type: {
35
- name: "String"
36
- }
37
- }
38
- };
39
- export var resourceGroupName = {
40
- parameterPath: "resourceGroupName",
41
- mapper: {
42
- required: true,
43
- serializedName: "resourceGroupName",
44
- constraints: {
45
- MaxLength: 90,
46
- MinLength: 1,
47
- Pattern: /^[-\w\._\(\)]+$/
48
- },
49
- type: {
50
- name: "String"
51
- }
52
- }
53
- };
54
- export var subscriptionId = {
55
- parameterPath: "subscriptionId",
56
- mapper: {
57
- required: true,
58
- serializedName: "subscriptionId",
59
- type: {
60
- name: "String"
61
- }
62
- }
63
- };
64
- //# sourceMappingURL=parameters.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,WAAW,GAAiC;IACvD,aAAa,EAAE,aAAa;IAC5B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,iBAAiB;SAC3B;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}
@@ -1,131 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as msRestAzure from "@azure/ms-rest-azure-js";
3
- import * as Models from "../models";
4
- import { DataCatalogRestClientContext } from "../dataCatalogRestClientContext";
5
- /** Class representing a ADCCatalogs. */
6
- export declare class ADCCatalogs {
7
- private readonly client;
8
- /**
9
- * Create a ADCCatalogs.
10
- * @param {DataCatalogRestClientContext} client Reference to the service client.
11
- */
12
- constructor(client: DataCatalogRestClientContext);
13
- /**
14
- * The List catalogs in Resource Group operation lists all the Azure Data Catalogs available under
15
- * the given resource group.
16
- * @summary List catalogs in Resource Group (GET Resources)
17
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
18
- * is case insensitive.
19
- * @param [options] The optional parameters
20
- * @returns Promise<Models.ADCCatalogsListtByResourceGroupResponse>
21
- */
22
- listtByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsListtByResourceGroupResponse>;
23
- /**
24
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
25
- * is case insensitive.
26
- * @param callback The callback
27
- */
28
- listtByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ADCCatalogsListResult>): void;
29
- /**
30
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
31
- * is case insensitive.
32
- * @param options The optional parameters
33
- * @param callback The callback
34
- */
35
- listtByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalogsListResult>): void;
36
- /**
37
- * The Create Azure Data Catalog service operation creates a new data catalog service with the
38
- * specified parameters. If the specific service already exists, then any patchable properties will
39
- * be updated and any immutable properties will remain unchanged.
40
- * @summary Create or Update Azure Data Catalog service (PUT Resource)
41
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
42
- * is case insensitive.
43
- * @param properties Properties supplied to the Create or Update a data catalog.
44
- * @param [options] The optional parameters
45
- * @returns Promise<Models.ADCCatalogsCreateOrUpdateResponse>
46
- */
47
- createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsCreateOrUpdateResponse>;
48
- /**
49
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
50
- * is case insensitive.
51
- * @param properties Properties supplied to the Create or Update a data catalog.
52
- * @param callback The callback
53
- */
54
- createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;
55
- /**
56
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
57
- * is case insensitive.
58
- * @param properties Properties supplied to the Create or Update a data catalog.
59
- * @param options The optional parameters
60
- * @param callback The callback
61
- */
62
- createOrUpdate(resourceGroupName: string, properties: Models.ADCCatalog, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;
63
- /**
64
- * The Get Azure Data Catalog Service operation retrieves a json representation of the data
65
- * catalog.
66
- * @summary Get Azure Data Catalog service (GET Resources)
67
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
68
- * is case insensitive.
69
- * @param [options] The optional parameters
70
- * @returns Promise<Models.ADCCatalogsGetResponse>
71
- */
72
- get(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsGetResponse>;
73
- /**
74
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
75
- * is case insensitive.
76
- * @param callback The callback
77
- */
78
- get(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;
79
- /**
80
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
81
- * is case insensitive.
82
- * @param options The optional parameters
83
- * @param callback The callback
84
- */
85
- get(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;
86
- /**
87
- * The Delete Azure Data Catalog Service operation deletes an existing data catalog.
88
- * @summary Delete Azure Data Catalog Service (DELETE Resource)
89
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
90
- * is case insensitive.
91
- * @param [options] The optional parameters
92
- * @returns Promise<msRest.RestResponse>
93
- */
94
- deleteMethod(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
95
- /**
96
- * The Update Azure Data Catalog Service operation can be used to update the existing deployment.
97
- * The update call only supports the properties listed in the PATCH body.
98
- * @summary Update Azure Data Catalog Service (PATCH Resource)
99
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
100
- * is case insensitive.
101
- * @param properties Properties supplied to the Update a data catalog.
102
- * @param [options] The optional parameters
103
- * @returns Promise<Models.ADCCatalogsUpdateResponse>
104
- */
105
- update(resourceGroupName: string, properties: Models.ADCCatalog, options?: msRest.RequestOptionsBase): Promise<Models.ADCCatalogsUpdateResponse>;
106
- /**
107
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
108
- * is case insensitive.
109
- * @param properties Properties supplied to the Update a data catalog.
110
- * @param callback The callback
111
- */
112
- update(resourceGroupName: string, properties: Models.ADCCatalog, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;
113
- /**
114
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
115
- * is case insensitive.
116
- * @param properties Properties supplied to the Update a data catalog.
117
- * @param options The optional parameters
118
- * @param callback The callback
119
- */
120
- update(resourceGroupName: string, properties: Models.ADCCatalog, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ADCCatalog>): void;
121
- /**
122
- * The Delete Azure Data Catalog Service operation deletes an existing data catalog.
123
- * @summary Delete Azure Data Catalog Service (DELETE Resource)
124
- * @param resourceGroupName The name of the resource group within the user's subscription. The name
125
- * is case insensitive.
126
- * @param [options] The optional parameters
127
- * @returns Promise<msRestAzure.LROPoller>
128
- */
129
- beginDeleteMethod(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
130
- }
131
- //# sourceMappingURL=aDCCatalogs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"aDCCatalogs.d.ts","sourceRoot":"","sources":["../../src/operations/aDCCatalogs.ts"],"names":[],"mappings":"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"}