DataGoogleComputeGlobalAddress constructor

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

Implementation

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