Skip to content

Commit

Permalink
add space to changelog and add root README entry (#3004)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRoyalTnetennba authored Mar 11, 2019
1 parent 6495d54 commit e4e6802
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ This client supports the following Google Cloud Platform services at an
* [Cloud Resource Manager](#cloud-resource-manager-alpha) (Alpha)
* [Cloud Scheduler](#cloud-scheduler-alpha) (Alpha)
* [Cloud Speech API](#cloud-speech-api-alpha) (Alpha)
* [Cloud Talent Solutions API](#cloud-talent-solutions-api-alpha) (Alpha)
* [Cloud Tasks API](#cloud-tasks-api-alpha) (Alpha)
* [Cloud Text-To-Speech API](#cloud-text-to-speech-api-alpha) (Alpha)
* [Cloud Vision API](#cloud-vision-api-alpha) (Alpha)
Expand Down Expand Up @@ -869,6 +870,44 @@ backup = storage.bucket "task-attachment-backups"
file.copy backup, file.name
```

### Cloud Talent Solutions API (Alpha)

- [google-cloud-talent README](google-cloud-talent/README.md)
- [google-cloud-talent API documentation](https://googleapis.github.io/google-cloud-ruby/docs/google-cloud-talent/latest)
- [google-cloud-talent on RubyGems](https://rubygems.org/gems/google-cloud-talent/)
- [Google Cloud Talent Solutions documentation](https://cloud.google.com/talent-solution/docs)

#### Quick Start

```sh
$ gem install google-cloud-talent
```

#### Preview

```rb
require "google/cloud/talent"

require "google/cloud/talent"
job_service_client = Google::Cloud::Talent::JobService.new(version: :v4beta1)
formatted_parent = job_service_client.project_path("[PROJECT]")

# TODO: Initialize `filter`:
filter = ''
# Iterate over all results.
job_service_client.list_jobs(formatted_parent, filter).each do |element|
# Process element.
end

# Or iterate over results one page at a time.
job_service_client.list_jobs(formatted_parent, filter).each_page do |page|
# Process each page at a time.
page.each do |element|
# Process element.
end
end
```

### Cloud Tasks API (Alpha)

- [google-cloud-tasks README](google-cloud-tasks/README.md)
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-talent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Release History

### 0.1.0 / 2019-03-11

* Initial release

0 comments on commit e4e6802

Please sign in to comment.