LogSink constructor

LogSink({
  1. required String name,
  2. required String destination,
  3. String filter = '',
  4. String description = '',
  5. bool disabled = false,
  6. List<LogExclusion> exclusions = const [],
  7. LogSink_VersionFormat outputVersionFormat = LogSink_VersionFormat.$default,
  8. String writerIdentity = '',
  9. bool includeChildren = false,
  10. BigQueryOptions? bigqueryOptions,
  11. Timestamp? createTime,
  12. Timestamp? updateTime,
})

Implementation

LogSink({
  required this.name,
  required this.destination,
  this.filter = '',
  this.description = '',
  this.disabled = false,
  this.exclusions = const [],
  this.outputVersionFormat = LogSink_VersionFormat.$default,
  this.writerIdentity = '',
  this.includeChildren = false,
  this.bigqueryOptions,
  this.createTime,
  this.updateTime,
}) : super(fullyQualifiedName);