使用客户删除公司。
包含此代码示例的文档页面
如需查看上下文中使用的代码示例,请参阅以下文档:
代码示例
C#
public static object DeleteCompany(string projectId, string tenantId, string companyId)
{
CompanyServiceClient companyServiceClient = CompanyServiceClient.Create();
CompanyName companyName = CompanyName.FromProjectTenantCompany(projectId, tenantId, companyId);
DeleteCompanyRequest request = new DeleteCompanyRequest
{
CompanyName = companyName
};
companyServiceClient.DeleteCompany(request);
Console.WriteLine("Deleted Company.");
return 0;
}
Java
import com.google.cloud.talent.v4.CompanyName;
import com.google.cloud.talent.v4.CompanyServiceClient;
import com.google.cloud.talent.v4.DeleteCompanyRequest;
import java.io.IOException;
public class JobSearchDeleteCompany {
public static void deleteCompany() throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "your-project-id";
String tenantId = "your-tenant-id";
String companyId = "your-company-id";
deleteCompany(projectId, tenantId, companyId);
}
// Delete Company.
public static void deleteCompany(String projectId, String tenantId, String companyId)
throws IOException {
// Initialize client that will be used to send requests. This client only needs to be created
// once, and can be reused for multiple requests. After completing all of your requests, call
// the "close" method on the client to safely clean up any remaining background resources.
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CompanyName name = CompanyName.of(projectId, tenantId, companyId);
DeleteCompanyRequest request =
DeleteCompanyRequest.newBuilder().setName(name.toString()).build();
companyServiceClient.deleteCompany(request);
System.out.println("Deleted company");
}
}
}
后续步骤
如需搜索和过滤其他 Google Cloud 产品的代码示例,请参阅 Google Cloud 示例浏览器