google-cloud-talent-v4 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/talent/v4/company_service/client.rb +31 -8
- data/lib/google/cloud/talent/v4/company_service/rest/client.rb +33 -7
- data/lib/google/cloud/talent/v4/company_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/completion/client.rb +31 -8
- data/lib/google/cloud/talent/v4/completion/rest/client.rb +33 -7
- data/lib/google/cloud/talent/v4/completion/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/event_service/client.rb +31 -8
- data/lib/google/cloud/talent/v4/event_service/rest/client.rb +33 -7
- data/lib/google/cloud/talent/v4/event_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/job_service/client.rb +32 -8
- data/lib/google/cloud/talent/v4/job_service/operations.rb +28 -6
- data/lib/google/cloud/talent/v4/job_service/rest/client.rb +34 -7
- data/lib/google/cloud/talent/v4/job_service/rest/operations.rb +33 -8
- data/lib/google/cloud/talent/v4/job_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/tenant_service/client.rb +31 -8
- data/lib/google/cloud/talent/v4/tenant_service/rest/client.rb +33 -7
- data/lib/google/cloud/talent/v4/tenant_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/cloud/talent/v4/common.rb +1 -0
- data/proto_docs/google/cloud/talent/v4/company.rb +1 -0
- data/proto_docs/google/cloud/talent/v4/job.rb +1 -0
- data/proto_docs/google/cloud/talent/v4/job_service.rb +1 -0
- metadata +5 -5
@@ -30,6 +30,9 @@ module Google
|
|
30
30
|
# A service that handles tenant management, including CRUD and enumeration.
|
31
31
|
#
|
32
32
|
class Client
|
33
|
+
# @private
|
34
|
+
DEFAULT_ENDPOINT_TEMPLATE = "jobs.$UNIVERSE_DOMAIN$"
|
35
|
+
|
33
36
|
include Paths
|
34
37
|
|
35
38
|
# @private
|
@@ -109,6 +112,15 @@ module Google
|
|
109
112
|
@config
|
110
113
|
end
|
111
114
|
|
115
|
+
##
|
116
|
+
# The effective universe domain
|
117
|
+
#
|
118
|
+
# @return [String]
|
119
|
+
#
|
120
|
+
def universe_domain
|
121
|
+
@tenant_service_stub.universe_domain
|
122
|
+
end
|
123
|
+
|
112
124
|
##
|
113
125
|
# Create a new TenantService client object.
|
114
126
|
#
|
@@ -142,8 +154,9 @@ module Google
|
|
142
154
|
credentials = @config.credentials
|
143
155
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
144
156
|
# but only if the default endpoint does not have a region prefix.
|
145
|
-
enable_self_signed_jwt = @config.endpoint
|
146
|
-
|
157
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
158
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
159
|
+
!@config.endpoint.split(".").first.include?("-"))
|
147
160
|
credentials ||= Credentials.default scope: @config.scope,
|
148
161
|
enable_self_signed_jwt: enable_self_signed_jwt
|
149
162
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -154,8 +167,10 @@ module Google
|
|
154
167
|
|
155
168
|
@tenant_service_stub = ::Gapic::ServiceStub.new(
|
156
169
|
::Google::Cloud::Talent::V4::TenantService::Stub,
|
157
|
-
credentials:
|
158
|
-
endpoint:
|
170
|
+
credentials: credentials,
|
171
|
+
endpoint: @config.endpoint,
|
172
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
173
|
+
universe_domain: @config.universe_domain,
|
159
174
|
channel_args: @config.channel_args,
|
160
175
|
interceptors: @config.interceptors,
|
161
176
|
channel_pool_config: @config.channel_pool
|
@@ -654,9 +669,9 @@ module Google
|
|
654
669
|
# end
|
655
670
|
#
|
656
671
|
# @!attribute [rw] endpoint
|
657
|
-
#
|
658
|
-
#
|
659
|
-
# @return [::String]
|
672
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
673
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
674
|
+
# @return [::String,nil]
|
660
675
|
# @!attribute [rw] credentials
|
661
676
|
# Credentials to send with calls. You may provide any of the following types:
|
662
677
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -702,13 +717,20 @@ module Google
|
|
702
717
|
# @!attribute [rw] quota_project
|
703
718
|
# A separate project against which to charge quota.
|
704
719
|
# @return [::String]
|
720
|
+
# @!attribute [rw] universe_domain
|
721
|
+
# The universe domain within which to make requests. This determines the
|
722
|
+
# default endpoint URL. The default value of nil uses the environment
|
723
|
+
# universe (usually the default "googleapis.com" universe).
|
724
|
+
# @return [::String,nil]
|
705
725
|
#
|
706
726
|
class Configuration
|
707
727
|
extend ::Gapic::Config
|
708
728
|
|
729
|
+
# @private
|
730
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
709
731
|
DEFAULT_ENDPOINT = "jobs.googleapis.com"
|
710
732
|
|
711
|
-
config_attr :endpoint,
|
733
|
+
config_attr :endpoint, nil, ::String, nil
|
712
734
|
config_attr :credentials, nil do |value|
|
713
735
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
714
736
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -723,6 +745,7 @@ module Google
|
|
723
745
|
config_attr :metadata, nil, ::Hash, nil
|
724
746
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
725
747
|
config_attr :quota_project, nil, ::String, nil
|
748
|
+
config_attr :universe_domain, nil, ::String, nil
|
726
749
|
|
727
750
|
# @private
|
728
751
|
def initialize parent_config = nil
|
@@ -32,6 +32,9 @@ module Google
|
|
32
32
|
# A service that handles tenant management, including CRUD and enumeration.
|
33
33
|
#
|
34
34
|
class Client
|
35
|
+
# @private
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "jobs.$UNIVERSE_DOMAIN$"
|
37
|
+
|
35
38
|
include Paths
|
36
39
|
|
37
40
|
# @private
|
@@ -111,6 +114,15 @@ module Google
|
|
111
114
|
@config
|
112
115
|
end
|
113
116
|
|
117
|
+
##
|
118
|
+
# The effective universe domain
|
119
|
+
#
|
120
|
+
# @return [String]
|
121
|
+
#
|
122
|
+
def universe_domain
|
123
|
+
@tenant_service_stub.universe_domain
|
124
|
+
end
|
125
|
+
|
114
126
|
##
|
115
127
|
# Create a new TenantService REST client object.
|
116
128
|
#
|
@@ -138,8 +150,9 @@ module Google
|
|
138
150
|
credentials = @config.credentials
|
139
151
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
140
152
|
# but only if the default endpoint does not have a region prefix.
|
141
|
-
enable_self_signed_jwt = @config.endpoint
|
142
|
-
|
153
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
154
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
155
|
+
!@config.endpoint.split(".").first.include?("-"))
|
143
156
|
credentials ||= Credentials.default scope: @config.scope,
|
144
157
|
enable_self_signed_jwt: enable_self_signed_jwt
|
145
158
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -149,7 +162,12 @@ module Google
|
|
149
162
|
@quota_project_id = @config.quota_project
|
150
163
|
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
151
164
|
|
152
|
-
@tenant_service_stub = ::Google::Cloud::Talent::V4::TenantService::Rest::ServiceStub.new
|
165
|
+
@tenant_service_stub = ::Google::Cloud::Talent::V4::TenantService::Rest::ServiceStub.new(
|
166
|
+
endpoint: @config.endpoint,
|
167
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
168
|
+
universe_domain: @config.universe_domain,
|
169
|
+
credentials: credentials
|
170
|
+
)
|
153
171
|
end
|
154
172
|
|
155
173
|
# Service calls
|
@@ -609,9 +627,9 @@ module Google
|
|
609
627
|
# end
|
610
628
|
#
|
611
629
|
# @!attribute [rw] endpoint
|
612
|
-
#
|
613
|
-
#
|
614
|
-
# @return [::String]
|
630
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
631
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
632
|
+
# @return [::String,nil]
|
615
633
|
# @!attribute [rw] credentials
|
616
634
|
# Credentials to send with calls. You may provide any of the following types:
|
617
635
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -648,13 +666,20 @@ module Google
|
|
648
666
|
# @!attribute [rw] quota_project
|
649
667
|
# A separate project against which to charge quota.
|
650
668
|
# @return [::String]
|
669
|
+
# @!attribute [rw] universe_domain
|
670
|
+
# The universe domain within which to make requests. This determines the
|
671
|
+
# default endpoint URL. The default value of nil uses the environment
|
672
|
+
# universe (usually the default "googleapis.com" universe).
|
673
|
+
# @return [::String,nil]
|
651
674
|
#
|
652
675
|
class Configuration
|
653
676
|
extend ::Gapic::Config
|
654
677
|
|
678
|
+
# @private
|
679
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
655
680
|
DEFAULT_ENDPOINT = "jobs.googleapis.com"
|
656
681
|
|
657
|
-
config_attr :endpoint,
|
682
|
+
config_attr :endpoint, nil, ::String, nil
|
658
683
|
config_attr :credentials, nil do |value|
|
659
684
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
660
685
|
allowed.any? { |klass| klass === value }
|
@@ -666,6 +691,7 @@ module Google
|
|
666
691
|
config_attr :metadata, nil, ::Hash, nil
|
667
692
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
668
693
|
config_attr :quota_project, nil, ::String, nil
|
694
|
+
config_attr :universe_domain, nil, ::String, nil
|
669
695
|
|
670
696
|
# @private
|
671
697
|
def initialize parent_config = nil
|
@@ -30,16 +30,28 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
def initialize endpoint:, credentials:
|
33
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
|
34
34
|
# These require statements are intentionally placed here to initialize
|
35
35
|
# the REST modules only when it's required.
|
36
36
|
require "gapic/rest"
|
37
37
|
|
38
|
-
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
39
|
+
endpoint_template: endpoint_template,
|
40
|
+
universe_domain: universe_domain,
|
41
|
+
credentials: credentials,
|
39
42
|
numeric_enums: true,
|
40
43
|
raise_faraday_errors: false
|
41
44
|
end
|
42
45
|
|
46
|
+
##
|
47
|
+
# The effective universe domain
|
48
|
+
#
|
49
|
+
# @return [String]
|
50
|
+
#
|
51
|
+
def universe_domain
|
52
|
+
@client_stub.universe_domain
|
53
|
+
end
|
54
|
+
|
43
55
|
##
|
44
56
|
# Baseline implementation for the create_tenant REST call
|
45
57
|
#
|
@@ -21,6 +21,7 @@ module Google
|
|
21
21
|
module Api
|
22
22
|
# Required information for every language.
|
23
23
|
# @!attribute [rw] reference_docs_uri
|
24
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
24
25
|
# @return [::String]
|
25
26
|
# Link to automatically generated reference documentation. Example:
|
26
27
|
# https://cloud.google.com/nodejs/docs/reference/asset/latest
|
@@ -304,6 +305,19 @@ module Google
|
|
304
305
|
# seconds: 360 # 6 minutes
|
305
306
|
# total_poll_timeout:
|
306
307
|
# seconds: 54000 # 90 minutes
|
308
|
+
# @!attribute [rw] auto_populated_fields
|
309
|
+
# @return [::Array<::String>]
|
310
|
+
# List of top-level fields of the request message, that should be
|
311
|
+
# automatically populated by the client libraries based on their
|
312
|
+
# (google.api.field_info).format. Currently supported format: UUID4.
|
313
|
+
#
|
314
|
+
# Example of a YAML configuration:
|
315
|
+
#
|
316
|
+
# publishing:
|
317
|
+
# method_settings:
|
318
|
+
# - selector: google.example.v1.ExampleService.CreateExample
|
319
|
+
# auto_populated_fields:
|
320
|
+
# - request_id
|
307
321
|
class MethodSettings
|
308
322
|
include ::Google::Protobuf::MessageExts
|
309
323
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -894,6 +894,7 @@ module Google
|
|
894
894
|
# Deprecated. All resources are only visible to the owner.
|
895
895
|
#
|
896
896
|
# An enum that represents who has view access to the resource.
|
897
|
+
# @deprecated This enum is deprecated and may be removed in the next major version update.
|
897
898
|
module Visibility
|
898
899
|
# Default value.
|
899
900
|
VISIBILITY_UNSPECIFIED = 0
|
@@ -80,6 +80,7 @@ module Google
|
|
80
80
|
# @return [::String]
|
81
81
|
# A URI that hosts the employer's company logo.
|
82
82
|
# @!attribute [rw] keyword_searchable_job_custom_attributes
|
83
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
83
84
|
# @return [::Array<::String>]
|
84
85
|
# This field is deprecated. Please set the searchability of the custom
|
85
86
|
# attribute in the
|
@@ -211,6 +211,7 @@ module Google
|
|
211
211
|
# setting job {::Google::Cloud::Talent::V4::Job#addresses Job.addresses} to the
|
212
212
|
# same location level as this field is strongly recommended.
|
213
213
|
# @!attribute [rw] visibility
|
214
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
214
215
|
# @return [::Google::Cloud::Talent::V4::Visibility]
|
215
216
|
# Deprecated. The job is only visible to the owner.
|
216
217
|
#
|
@@ -400,6 +400,7 @@ module Google
|
|
400
400
|
# Controls over how job documents get ranked on top of existing relevance
|
401
401
|
# score (determined by API algorithm).
|
402
402
|
# @!attribute [rw] disable_keyword_match
|
403
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
403
404
|
# @return [::Boolean]
|
404
405
|
# This field is deprecated. Please use
|
405
406
|
# {::Google::Cloud::Talent::V4::SearchJobsRequest#keyword_match_mode SearchJobsRequest.keyword_match_mode}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-talent-v4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.21.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.21.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -278,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
278
278
|
- !ruby/object:Gem::Version
|
279
279
|
version: '0'
|
280
280
|
requirements: []
|
281
|
-
rubygems_version: 3.
|
281
|
+
rubygems_version: 3.5.3
|
282
282
|
signing_key:
|
283
283
|
specification_version: 4
|
284
284
|
summary: Cloud Talent Solution provides the capability to create, read, update, and
|