GoogleLoggingProjectExclusion constructor

GoogleLoggingProjectExclusion({
  1. required String localName,
  2. required TfArg<String> name,
  3. required TfArg<String> filter,
  4. TfArg<String>? description,
  5. TfArg<bool>? disabled,
  6. TfArg<String>? project,
  7. LifecycleOptions? lifecycle,
  8. List<DependencyTarget>? dependsOn,
  9. String? provider,
  10. TfTimeouts? timeouts,
})

Implementation

GoogleLoggingProjectExclusion({
  required super.localName,
  required TfArg<String> name,
  required TfArg<String> filter,
  TfArg<String>? description,
  TfArg<bool>? disabled,
  TfArg<String>? project,
  super.lifecycle,
  super.dependsOn,
  super.provider,
  super.timeouts,
}) : super(
       terraformType: tfType,
       argMap: {
         'name': name,
         'filter': filter,
         if (description != null) 'description': description,
         if (disabled != null) 'disabled': disabled,
         if (project != null) 'project': project,
       },
     );