google-cloud-talent-v4beta1 0.8.1 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +72 -101
  3. data/lib/google/cloud/talent/v4beta1/company_service/client.rb +41 -9
  4. data/lib/google/cloud/talent/v4beta1/company_service/rest/client.rb +117 -7
  5. data/lib/google/cloud/talent/v4beta1/company_service/rest/service_stub.rb +14 -2
  6. data/lib/google/cloud/talent/v4beta1/completion/client.rb +41 -9
  7. data/lib/google/cloud/talent/v4beta1/completion/rest/client.rb +49 -7
  8. data/lib/google/cloud/talent/v4beta1/completion/rest/service_stub.rb +14 -2
  9. data/lib/google/cloud/talent/v4beta1/event_service/client.rb +41 -9
  10. data/lib/google/cloud/talent/v4beta1/event_service/rest/client.rb +49 -7
  11. data/lib/google/cloud/talent/v4beta1/event_service/rest/service_stub.rb +14 -2
  12. data/lib/google/cloud/talent/v4beta1/job_service/client.rb +42 -9
  13. data/lib/google/cloud/talent/v4beta1/job_service/operations.rb +38 -7
  14. data/lib/google/cloud/talent/v4beta1/job_service/rest/client.rb +212 -7
  15. data/lib/google/cloud/talent/v4beta1/job_service/rest/operations.rb +108 -8
  16. data/lib/google/cloud/talent/v4beta1/job_service/rest/service_stub.rb +14 -2
  17. data/lib/google/cloud/talent/v4beta1/tenant_service/client.rb +41 -9
  18. data/lib/google/cloud/talent/v4beta1/tenant_service/rest/client.rb +117 -7
  19. data/lib/google/cloud/talent/v4beta1/tenant_service/rest/service_stub.rb +14 -2
  20. data/lib/google/cloud/talent/v4beta1/version.rb +1 -1
  21. data/proto_docs/google/api/client.rb +14 -0
  22. data/proto_docs/google/api/field_behavior.rb +14 -0
  23. data/proto_docs/google/cloud/talent/v4beta1/common.rb +1 -0
  24. data/proto_docs/google/cloud/talent/v4beta1/company.rb +1 -0
  25. data/proto_docs/google/cloud/talent/v4beta1/job.rb +1 -0
  26. data/proto_docs/google/cloud/talent/v4beta1/job_service.rb +1 -0
  27. 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 == Configuration::DEFAULT_ENDPOINT &&
146
- !@config.endpoint.split(".").first.include?("-")
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,10 +167,13 @@ module Google
154
167
 
155
168
  @tenant_service_stub = ::Gapic::ServiceStub.new(
156
169
  ::Google::Cloud::Talent::V4beta1::TenantService::Stub,
157
- credentials: credentials,
158
- endpoint: @config.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
- interceptors: @config.interceptors
175
+ interceptors: @config.interceptors,
176
+ channel_pool_config: @config.channel_pool
161
177
  )
162
178
  end
163
179
 
@@ -655,9 +671,9 @@ module Google
655
671
  # end
656
672
  #
657
673
  # @!attribute [rw] endpoint
658
- # The hostname or hostname:port of the service endpoint.
659
- # Defaults to `"jobs.googleapis.com"`.
660
- # @return [::String]
674
+ # A custom service endpoint, as a hostname or hostname:port. The default is
675
+ # nil, indicating to use the default endpoint in the current universe domain.
676
+ # @return [::String,nil]
661
677
  # @!attribute [rw] credentials
662
678
  # Credentials to send with calls. You may provide any of the following types:
663
679
  # * (`String`) The path to a service account key file in JSON format
@@ -703,13 +719,20 @@ module Google
703
719
  # @!attribute [rw] quota_project
704
720
  # A separate project against which to charge quota.
705
721
  # @return [::String]
722
+ # @!attribute [rw] universe_domain
723
+ # The universe domain within which to make requests. This determines the
724
+ # default endpoint URL. The default value of nil uses the environment
725
+ # universe (usually the default "googleapis.com" universe).
726
+ # @return [::String,nil]
706
727
  #
707
728
  class Configuration
708
729
  extend ::Gapic::Config
709
730
 
731
+ # @private
732
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
710
733
  DEFAULT_ENDPOINT = "jobs.googleapis.com"
711
734
 
712
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
735
+ config_attr :endpoint, nil, ::String, nil
713
736
  config_attr :credentials, nil do |value|
714
737
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
715
738
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -724,6 +747,7 @@ module Google
724
747
  config_attr :metadata, nil, ::Hash, nil
725
748
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
726
749
  config_attr :quota_project, nil, ::String, nil
750
+ config_attr :universe_domain, nil, ::String, nil
727
751
 
728
752
  # @private
729
753
  def initialize parent_config = nil
@@ -744,6 +768,14 @@ module Google
744
768
  end
745
769
  end
746
770
 
771
+ ##
772
+ # Configuration for the channel pool
773
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
774
+ #
775
+ def channel_pool
776
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
777
+ end
778
+
747
779
  ##
748
780
  # Configuration RPC class for the TenantService API.
749
781
  #
@@ -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 == Configuration::DEFAULT_ENDPOINT &&
142
- !@config.endpoint.split(".").first.include?("-")
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::V4beta1::TenantService::Rest::ServiceStub.new endpoint: @config.endpoint, credentials: credentials
165
+ @tenant_service_stub = ::Google::Cloud::Talent::V4beta1::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
@@ -186,6 +204,22 @@ module Google
186
204
  # @return [::Google::Cloud::Talent::V4beta1::Tenant]
187
205
  #
188
206
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
207
+ #
208
+ # @example Basic example
209
+ # require "google/cloud/talent/v4beta1"
210
+ #
211
+ # # Create a client object. The client can be reused for multiple calls.
212
+ # client = Google::Cloud::Talent::V4beta1::TenantService::Rest::Client.new
213
+ #
214
+ # # Create a request. To set request fields, pass in keyword arguments.
215
+ # request = Google::Cloud::Talent::V4beta1::CreateTenantRequest.new
216
+ #
217
+ # # Call the create_tenant method.
218
+ # result = client.create_tenant request
219
+ #
220
+ # # The returned object is of type Google::Cloud::Talent::V4beta1::Tenant.
221
+ # p result
222
+ #
189
223
  def create_tenant request, options = nil
190
224
  raise ::ArgumentError, "request must be provided" if request.nil?
191
225
 
@@ -251,6 +285,22 @@ module Google
251
285
  # @return [::Google::Cloud::Talent::V4beta1::Tenant]
252
286
  #
253
287
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
288
+ #
289
+ # @example Basic example
290
+ # require "google/cloud/talent/v4beta1"
291
+ #
292
+ # # Create a client object. The client can be reused for multiple calls.
293
+ # client = Google::Cloud::Talent::V4beta1::TenantService::Rest::Client.new
294
+ #
295
+ # # Create a request. To set request fields, pass in keyword arguments.
296
+ # request = Google::Cloud::Talent::V4beta1::GetTenantRequest.new
297
+ #
298
+ # # Call the get_tenant method.
299
+ # result = client.get_tenant request
300
+ #
301
+ # # The returned object is of type Google::Cloud::Talent::V4beta1::Tenant.
302
+ # p result
303
+ #
254
304
  def get_tenant request, options = nil
255
305
  raise ::ArgumentError, "request must be provided" if request.nil?
256
306
 
@@ -326,6 +376,22 @@ module Google
326
376
  # @return [::Google::Cloud::Talent::V4beta1::Tenant]
327
377
  #
328
378
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
379
+ #
380
+ # @example Basic example
381
+ # require "google/cloud/talent/v4beta1"
382
+ #
383
+ # # Create a client object. The client can be reused for multiple calls.
384
+ # client = Google::Cloud::Talent::V4beta1::TenantService::Rest::Client.new
385
+ #
386
+ # # Create a request. To set request fields, pass in keyword arguments.
387
+ # request = Google::Cloud::Talent::V4beta1::UpdateTenantRequest.new
388
+ #
389
+ # # Call the update_tenant method.
390
+ # result = client.update_tenant request
391
+ #
392
+ # # The returned object is of type Google::Cloud::Talent::V4beta1::Tenant.
393
+ # p result
394
+ #
329
395
  def update_tenant request, options = nil
330
396
  raise ::ArgumentError, "request must be provided" if request.nil?
331
397
 
@@ -391,6 +457,22 @@ module Google
391
457
  # @return [::Google::Protobuf::Empty]
392
458
  #
393
459
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
460
+ #
461
+ # @example Basic example
462
+ # require "google/cloud/talent/v4beta1"
463
+ #
464
+ # # Create a client object. The client can be reused for multiple calls.
465
+ # client = Google::Cloud::Talent::V4beta1::TenantService::Rest::Client.new
466
+ #
467
+ # # Create a request. To set request fields, pass in keyword arguments.
468
+ # request = Google::Cloud::Talent::V4beta1::DeleteTenantRequest.new
469
+ #
470
+ # # Call the delete_tenant method.
471
+ # result = client.delete_tenant request
472
+ #
473
+ # # The returned object is of type Google::Protobuf::Empty.
474
+ # p result
475
+ #
394
476
  def delete_tenant request, options = nil
395
477
  raise ::ArgumentError, "request must be provided" if request.nil?
396
478
 
@@ -461,6 +543,26 @@ module Google
461
543
  # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Talent::V4beta1::Tenant>]
462
544
  #
463
545
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
546
+ #
547
+ # @example Basic example
548
+ # require "google/cloud/talent/v4beta1"
549
+ #
550
+ # # Create a client object. The client can be reused for multiple calls.
551
+ # client = Google::Cloud::Talent::V4beta1::TenantService::Rest::Client.new
552
+ #
553
+ # # Create a request. To set request fields, pass in keyword arguments.
554
+ # request = Google::Cloud::Talent::V4beta1::ListTenantsRequest.new
555
+ #
556
+ # # Call the list_tenants method.
557
+ # result = client.list_tenants request
558
+ #
559
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
560
+ # # over elements, and API calls will be issued to fetch pages as needed.
561
+ # result.each do |item|
562
+ # # Each element is of type ::Google::Cloud::Talent::V4beta1::Tenant.
563
+ # p item
564
+ # end
565
+ #
464
566
  def list_tenants request, options = nil
465
567
  raise ::ArgumentError, "request must be provided" if request.nil?
466
568
 
@@ -527,9 +629,9 @@ module Google
527
629
  # end
528
630
  #
529
631
  # @!attribute [rw] endpoint
530
- # The hostname or hostname:port of the service endpoint.
531
- # Defaults to `"jobs.googleapis.com"`.
532
- # @return [::String]
632
+ # A custom service endpoint, as a hostname or hostname:port. The default is
633
+ # nil, indicating to use the default endpoint in the current universe domain.
634
+ # @return [::String,nil]
533
635
  # @!attribute [rw] credentials
534
636
  # Credentials to send with calls. You may provide any of the following types:
535
637
  # * (`String`) The path to a service account key file in JSON format
@@ -566,13 +668,20 @@ module Google
566
668
  # @!attribute [rw] quota_project
567
669
  # A separate project against which to charge quota.
568
670
  # @return [::String]
671
+ # @!attribute [rw] universe_domain
672
+ # The universe domain within which to make requests. This determines the
673
+ # default endpoint URL. The default value of nil uses the environment
674
+ # universe (usually the default "googleapis.com" universe).
675
+ # @return [::String,nil]
569
676
  #
570
677
  class Configuration
571
678
  extend ::Gapic::Config
572
679
 
680
+ # @private
681
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
573
682
  DEFAULT_ENDPOINT = "jobs.googleapis.com"
574
683
 
575
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
684
+ config_attr :endpoint, nil, ::String, nil
576
685
  config_attr :credentials, nil do |value|
577
686
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
578
687
  allowed.any? { |klass| klass === value }
@@ -584,6 +693,7 @@ module Google
584
693
  config_attr :metadata, nil, ::Hash, nil
585
694
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
586
695
  config_attr :quota_project, nil, ::String, nil
696
+ config_attr :universe_domain, nil, ::String, nil
587
697
 
588
698
  # @private
589
699
  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, credentials: credentials,
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,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Talent
23
23
  module V4beta1
24
- VERSION = "0.8.1"
24
+ VERSION = "0.10.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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
@@ -66,6 +66,20 @@ module Google
66
66
  # a non-empty value will be returned. The user will not be aware of what
67
67
  # non-empty value to expect.
68
68
  NON_EMPTY_DEFAULT = 7
69
+
70
+ # Denotes that the field in a resource (a message annotated with
71
+ # google.api.resource) is used in the resource name to uniquely identify the
72
+ # resource. For AIP-compliant APIs, this should only be applied to the
73
+ # `name` field on the resource.
74
+ #
75
+ # This behavior should not be applied to references to other resources within
76
+ # the message.
77
+ #
78
+ # The identifier field of resources often have different field behavior
79
+ # depending on the request it is embedded in (e.g. for Create methods name
80
+ # is optional and unused, while for Update methods it is required). Instead
81
+ # of method-specific annotations, only `IDENTIFIER` is required.
82
+ IDENTIFIER = 8
69
83
  end
70
84
  end
71
85
  end
@@ -895,6 +895,7 @@ module Google
895
895
  # Deprecated. All resources are only visible to the owner.
896
896
  #
897
897
  # An enum that represents who has view access to the resource.
898
+ # @deprecated This enum is deprecated and may be removed in the next major version update.
898
899
  module Visibility
899
900
  # Default value.
900
901
  VISIBILITY_UNSPECIFIED = 0
@@ -83,6 +83,7 @@ module Google
83
83
  # @return [::String]
84
84
  # A URI that hosts the employer's company logo.
85
85
  # @!attribute [rw] keyword_searchable_job_custom_attributes
86
+ # @deprecated This field is deprecated and may be removed in the next major version update.
86
87
  # @return [::Array<::String>]
87
88
  # This field is deprecated. Please set the searchability of the custom
88
89
  # attribute in the
@@ -209,6 +209,7 @@ module Google
209
209
  # setting job {::Google::Cloud::Talent::V4beta1::Job#addresses Job.addresses} to
210
210
  # the same location level as this field is strongly recommended.
211
211
  # @!attribute [rw] visibility
212
+ # @deprecated This field is deprecated and may be removed in the next major version update.
212
213
  # @return [::Google::Cloud::Talent::V4beta1::Visibility]
213
214
  # Deprecated. The job is only visible to the owner.
214
215
  #
@@ -222,6 +222,7 @@ module Google
222
222
  #
223
223
  # Defaults to false.
224
224
  # @!attribute [rw] require_precise_result_size
225
+ # @deprecated This field is deprecated and may be removed in the next major version update.
225
226
  # @return [::Boolean]
226
227
  # This field is deprecated.
227
228
  # @!attribute [rw] histogram_queries
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-talent-v4beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.10.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: 2023-06-06 00:00:00.000000000 Z
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.1
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.19.1
29
+ version: 0.21.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -279,7 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
279
279
  - !ruby/object:Gem::Version
280
280
  version: '0'
281
281
  requirements: []
282
- rubygems_version: 3.4.2
282
+ rubygems_version: 3.5.3
283
283
  signing_key:
284
284
  specification_version: 4
285
285
  summary: Cloud Talent Solution provides the capability to create, read, update, and