LogBucket constructor

LogBucket({
  1. String name = '',
  2. String description = '',
  3. Timestamp? createTime,
  4. Timestamp? updateTime,
  5. int retentionDays = 0,
  6. bool locked = false,
  7. LifecycleState lifecycleState = LifecycleState.$default,
  8. bool analyticsEnabled = false,
  9. List<String> restrictedFields = const [],
  10. List<IndexConfig> indexConfigs = const [],
  11. CmekSettings? cmekSettings,
})

Implementation

LogBucket({
  this.name = '',
  this.description = '',
  this.createTime,
  this.updateTime,
  this.retentionDays = 0,
  this.locked = false,
  this.lifecycleState = LifecycleState.$default,
  this.analyticsEnabled = false,
  this.restrictedFields = const [],
  this.indexConfigs = const [],
  this.cmekSettings,
}) : super(fullyQualifiedName);