DataGoogleProjectIamCustomRole constructor

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

Implementation

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