@@ -408,6 +408,30 @@ <h3>Method Details</h3>
408
408
},
409
409
],
410
410
},
411
+ "sqlServerRdbms": { # SQLServer database structure. # SQLServer RDBMS to enrich with child data objects and metadata.
412
+ "schemas": [ # SQLServer schemas in the database server.
413
+ { # SQLServer schema.
414
+ "schema": "A String", # Schema name.
415
+ "tables": [ # Tables in the schema.
416
+ { # SQLServer table.
417
+ "columns": [ # SQLServer columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
418
+ { # SQLServer Column.
419
+ "column": "A String", # Column name.
420
+ "dataType": "A String", # The SQLServer data type.
421
+ "length": 42, # Column length.
422
+ "nullable": True or False, # Whether or not the column can accept a null value.
423
+ "ordinalPosition": 42, # The ordinal position of the column in the table.
424
+ "precision": 42, # Column precision.
425
+ "primaryKey": True or False, # Whether or not the column represents a primary key.
426
+ "scale": 42, # Column scale.
427
+ },
428
+ ],
429
+ "table": "A String", # Table name.
430
+ },
431
+ ],
432
+ },
433
+ ],
434
+ },
411
435
}
412
436
413
437
x__xgafv: string, V1 error format.
@@ -493,6 +517,30 @@ <h3>Method Details</h3>
493
517
},
494
518
],
495
519
},
520
+ "sqlServerRdbms": { # SQLServer database structure. # Enriched SQLServer RDBMS object.
521
+ "schemas": [ # SQLServer schemas in the database server.
522
+ { # SQLServer schema.
523
+ "schema": "A String", # Schema name.
524
+ "tables": [ # Tables in the schema.
525
+ { # SQLServer table.
526
+ "columns": [ # SQLServer columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
527
+ { # SQLServer Column.
528
+ "column": "A String", # Column name.
529
+ "dataType": "A String", # The SQLServer data type.
530
+ "length": 42, # Column length.
531
+ "nullable": True or False, # Whether or not the column can accept a null value.
532
+ "ordinalPosition": 42, # The ordinal position of the column in the table.
533
+ "precision": 42, # Column precision.
534
+ "primaryKey": True or False, # Whether or not the column represents a primary key.
535
+ "scale": 42, # Column scale.
536
+ },
537
+ ],
538
+ "table": "A String", # Table name.
539
+ },
540
+ ],
541
+ },
542
+ ],
543
+ },
496
544
}</ pre >
497
545
</ div >
498
546
0 commit comments