DataGoogleComputeRegionBackendService constructor

DataGoogleComputeRegionBackendService({
  1. required String localName,
  2. required TfArg<String> name,
  3. TfArg<String>? project,
  4. TfArg<String>? region,
  5. String? provider,
  6. TfTimeouts? timeouts,
})

Implementation

DataGoogleComputeRegionBackendService({
  required super.localName,
  required TfArg<String> name,
  TfArg<String>? project,
  TfArg<String>? region,
  super.provider,
  super.timeouts,
}) : super(
       terraformType: tfType,
       argMap: {
         'name': name,
         if (project != null) 'project': project,
         if (region != null) 'region': region,
       },
     );