使用客户删除公司。
包含此代码示例的文档页面
如需查看上下文中使用的代码示例,请参阅以下文档:
代码示例
Go
import (
"context"
"fmt"
"io"
talent "cloud.google.com/go/talent/apiv4beta1"
talentpb "google.golang.org/genproto/googleapis/cloud/talent/v4beta1"
)
// deleteCompany deletes an existing company. Companies with
// existing jobs cannot be deleted until those jobs have been deleted.
func deleteCompany(w io.Writer, projectID, companyID string) error {
ctx := context.Background()
// Initialize a companyService client.
c, err := talent.NewCompanyClient(ctx)
if err != nil {
return fmt.Errorf("talent.NewCompanyClient: %v", err)
}
defer c.Close()
// Construct a deleteCompany request.
companyName := fmt.Sprintf("projects/%s/companies/%s", projectID, companyID)
req := &talentpb.DeleteCompanyRequest{
// The resource name of the company to be deleted.
// The format is "projects/{project_id}/companies/{company_id}".
Name: companyName,
}
if err := c.DeleteCompany(ctx, req); err != nil {
return fmt.Errorf("DeleteCompany(%s): %v", companyName, err)
}
fmt.Fprintf(w, "Deleted company: %q\n", companyName)
return nil
}
Java
/*
* Please include the following imports to run this sample.
*
* import com.google.cloud.talent.v4beta1.CompanyName;
* import com.google.cloud.talent.v4beta1.CompanyServiceClient;
* import com.google.cloud.talent.v4beta1.CompanyWithTenantName;
* import com.google.cloud.talent.v4beta1.DeleteCompanyRequest;
*/
public static void sampleDeleteCompany() {
// TODO(developer): Replace these variables before running the sample.
String projectId = "Your Google Cloud Project ID";
String tenantId = "Your Tenant ID (using tenancy is optional)";
String companyId = "ID of the company to delete";
sampleDeleteCompany(projectId, tenantId, companyId);
}
/** Delete Company */
public static void sampleDeleteCompany(String projectId, String tenantId, String companyId) {
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CompanyName name = CompanyWithTenantName.of(projectId, tenantId, companyId);
DeleteCompanyRequest request =
DeleteCompanyRequest.newBuilder().setName(name.toString()).build();
companyServiceClient.deleteCompany(request);
System.out.println("Deleted company");
} catch (Exception exception) {
System.err.println("Failed to create the client due to: " + exception);
}
}
Node.js
const talent = require('@google-cloud/talent').v4;
/** Delete Company */
function sampleDeleteCompany(projectId, tenantId, companyId) {
const client = new talent.CompanyServiceClient();
// const projectId = 'Your Google Cloud Project ID';
// const tenantId = 'Your Tenant ID (using tenancy is optional)';
// const companyId = 'ID of the company to delete';
const formattedName = client.companyPath(projectId, tenantId, companyId);
client.deleteCompany({name: formattedName}).catch(err => {
console.error(err);
});
console.log('Deleted company');
}
Python
from google.cloud import talent
import six
def delete_company(project_id, tenant_id, company_id):
"""Delete Company"""
client = talent.CompanyServiceClient()
# project_id = 'Your Google Cloud Project ID'
# tenant_id = 'Your Tenant ID (using tenancy is optional)'
# company_id = 'ID of the company to delete'
if isinstance(project_id, six.binary_type):
project_id = project_id.decode("utf-8")
if isinstance(tenant_id, six.binary_type):
tenant_id = tenant_id.decode("utf-8")
if isinstance(company_id, six.binary_type):
company_id = company_id.decode("utf-8")
name = client.company_path(project_id, tenant_id, company_id)
client.delete_company(name=name)
print("Deleted company")
后续步骤
如需搜索和过滤其他 Google Cloud 产品的代码示例,请参阅 Google Cloud 示例浏览器。