TableInput constructor

TableInput({
  1. required String name,
  2. String? description,
  3. DateTime? lastAccessTime,
  4. DateTime? lastAnalyzedTime,
  5. String? owner,
  6. Map<String, String>? parameters,
  7. List<Column>? partitionKeys,
  8. int? retention,
  9. StorageDescriptor? storageDescriptor,
  10. String? tableType,
  11. TableIdentifier? targetTable,
  12. String? viewExpandedText,
  13. String? viewOriginalText,
})

Implementation

TableInput({
  required this.name,
  this.description,
  this.lastAccessTime,
  this.lastAnalyzedTime,
  this.owner,
  this.parameters,
  this.partitionKeys,
  this.retention,
  this.storageDescriptor,
  this.tableType,
  this.targetTable,
  this.viewExpandedText,
  this.viewOriginalText,
});