@maxim_mazurok/gapi.client.metastore-v1 0.0.20231010 → 0.0.20231028
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.
- package/index.d.ts +14 -1
- package/package.json +1 -1
- package/tests.ts +16 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://metastore.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231028
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -162,6 +162,11 @@ declare namespace gapi.client {
|
|
|
162
162
|
type?:
|
|
163
163
|
string;
|
|
164
164
|
}
|
|
165
|
+
interface DataCatalogConfig {
|
|
166
|
+
/** Optional. Defines whether the metastore metadata should be synced to Data Catalog. The default value is to disable syncing metastore metadata to Data Catalog. */
|
|
167
|
+
enabled?:
|
|
168
|
+
boolean;
|
|
169
|
+
}
|
|
165
170
|
// tslint:disable-next-line:no-empty-interface
|
|
166
171
|
interface Empty {
|
|
167
172
|
}
|
|
@@ -432,6 +437,11 @@ declare namespace gapi.client {
|
|
|
432
437
|
updateTime?:
|
|
433
438
|
string;
|
|
434
439
|
}
|
|
440
|
+
interface MetadataIntegration {
|
|
441
|
+
/** Optional. The integration config for the Data Catalog service. */
|
|
442
|
+
dataCatalogConfig?:
|
|
443
|
+
DataCatalogConfig;
|
|
444
|
+
}
|
|
435
445
|
interface MetadataManagementActivity {
|
|
436
446
|
/** Output only. The latest metadata exports of the metastore service. */
|
|
437
447
|
metadataExports?:
|
|
@@ -645,6 +655,9 @@ declare namespace gapi.client {
|
|
|
645
655
|
*/
|
|
646
656
|
maintenanceWindow?:
|
|
647
657
|
MaintenanceWindow;
|
|
658
|
+
/** Optional. The setting that defines how metastore metadata should be integrated with external services and systems. */
|
|
659
|
+
metadataIntegration?:
|
|
660
|
+
MetadataIntegration;
|
|
648
661
|
/** Output only. The metadata management activities of the metastore service. */
|
|
649
662
|
metadataManagementActivity?:
|
|
650
663
|
MetadataManagementActivity;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20231028
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -247,6 +247,11 @@ gapi.load('client', async () => {
|
|
|
247
247
|
dayOfWeek: "Test string",
|
|
248
248
|
hourOfDay: 42,
|
|
249
249
|
},
|
|
250
|
+
metadataIntegration: {
|
|
251
|
+
dataCatalogConfig: {
|
|
252
|
+
enabled: true,
|
|
253
|
+
},
|
|
254
|
+
},
|
|
250
255
|
metadataManagementActivity: {
|
|
251
256
|
metadataExports: [
|
|
252
257
|
{
|
|
@@ -383,6 +388,11 @@ gapi.load('client', async () => {
|
|
|
383
388
|
dayOfWeek: "Test string",
|
|
384
389
|
hourOfDay: 42,
|
|
385
390
|
},
|
|
391
|
+
metadataIntegration: {
|
|
392
|
+
dataCatalogConfig: {
|
|
393
|
+
enabled: true,
|
|
394
|
+
},
|
|
395
|
+
},
|
|
386
396
|
metadataManagementActivity: {
|
|
387
397
|
metadataExports: [
|
|
388
398
|
{
|
|
@@ -551,6 +561,11 @@ gapi.load('client', async () => {
|
|
|
551
561
|
dayOfWeek: "Test string",
|
|
552
562
|
hourOfDay: 42,
|
|
553
563
|
},
|
|
564
|
+
metadataIntegration: {
|
|
565
|
+
dataCatalogConfig: {
|
|
566
|
+
enabled: true,
|
|
567
|
+
},
|
|
568
|
+
},
|
|
554
569
|
metadataManagementActivity: {
|
|
555
570
|
metadataExports: [
|
|
556
571
|
{
|