취업정보 업데이트(v3)

취업정보를 업데이트합니다.

코드 샘플

Ruby

CTS용 클라이언트 라이브러리를 설치하고 사용하는 방법은 CTS 클라이언트 라이브러리를 참조하세요.

CTS에 인증하려면 애플리케이션 기본 사용자 인증 정보를 설정합니다. 자세한 내용은 로컬 개발 환경의 인증 설정을 참조하세요.

# job_name     = "The name of the job you want to update"
# job_to_be_updated  = "The new job object to be updated"
require "google/apis/jobs_v3"

jobs = Google::Apis::JobsV3

talent_solution_client = jobs::CloudTalentSolutionService.new
talent_solution_client.authorization = Google::Auth.get_application_default(
  "https://www.googleapis.com/auth/jobs"
)

begin
  update_job_request = jobs::UpdateJobRequest.new job: job_to_be_updated
  job_updated = talent_solution_client.patch_project_job job_name, update_job_request
  puts "Job updated: #{job_updated.to_json}"
  job_updated
rescue StandardError => e
  puts "Exception occurred while updating job: #{e}"
end

다음 단계

다른 Google Cloud 제품의 코드 샘플을 검색하고 필터링하려면 Google Cloud 샘플 브라우저를 참조하세요.