google-cloud-talent-v4beta1 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +72 -101
  3. data/lib/google/cloud/talent/v4beta1/company_service/client.rb +31 -8
  4. data/lib/google/cloud/talent/v4beta1/company_service/rest/client.rb +33 -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 +31 -8
  7. data/lib/google/cloud/talent/v4beta1/completion/rest/client.rb +33 -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 +31 -8
  10. data/lib/google/cloud/talent/v4beta1/event_service/rest/client.rb +33 -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 +32 -8
  13. data/lib/google/cloud/talent/v4beta1/job_service/operations.rb +28 -6
  14. data/lib/google/cloud/talent/v4beta1/job_service/rest/client.rb +34 -7
  15. data/lib/google/cloud/talent/v4beta1/job_service/rest/operations.rb +33 -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 +31 -8
  18. data/lib/google/cloud/talent/v4beta1/tenant_service/rest/client.rb +33 -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/cloud/talent/v4beta1/common.rb +1 -0
  23. data/proto_docs/google/cloud/talent/v4beta1/company.rb +1 -0
  24. data/proto_docs/google/cloud/talent/v4beta1/job.rb +1 -0
  25. data/proto_docs/google/cloud/talent/v4beta1/job_service.rb +1 -0
  26. 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,8 +167,10 @@ 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
175
  interceptors: @config.interceptors,
161
176
  channel_pool_config: @config.channel_pool
@@ -656,9 +671,9 @@ module Google
656
671
  # end
657
672
  #
658
673
  # @!attribute [rw] endpoint
659
- # The hostname or hostname:port of the service endpoint.
660
- # Defaults to `"jobs.googleapis.com"`.
661
- # @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]
662
677
  # @!attribute [rw] credentials
663
678
  # Credentials to send with calls. You may provide any of the following types:
664
679
  # * (`String`) The path to a service account key file in JSON format
@@ -704,13 +719,20 @@ module Google
704
719
  # @!attribute [rw] quota_project
705
720
  # A separate project against which to charge quota.
706
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]
707
727
  #
708
728
  class Configuration
709
729
  extend ::Gapic::Config
710
730
 
731
+ # @private
732
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
711
733
  DEFAULT_ENDPOINT = "jobs.googleapis.com"
712
734
 
713
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
735
+ config_attr :endpoint, nil, ::String, nil
714
736
  config_attr :credentials, nil do |value|
715
737
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
716
738
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -725,6 +747,7 @@ module Google
725
747
  config_attr :metadata, nil, ::Hash, nil
726
748
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
727
749
  config_attr :quota_project, nil, ::String, nil
750
+ config_attr :universe_domain, nil, ::String, nil
728
751
 
729
752
  # @private
730
753
  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 == 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
@@ -611,9 +629,9 @@ module Google
611
629
  # end
612
630
  #
613
631
  # @!attribute [rw] endpoint
614
- # The hostname or hostname:port of the service endpoint.
615
- # Defaults to `"jobs.googleapis.com"`.
616
- # @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]
617
635
  # @!attribute [rw] credentials
618
636
  # Credentials to send with calls. You may provide any of the following types:
619
637
  # * (`String`) The path to a service account key file in JSON format
@@ -650,13 +668,20 @@ module Google
650
668
  # @!attribute [rw] quota_project
651
669
  # A separate project against which to charge quota.
652
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]
653
676
  #
654
677
  class Configuration
655
678
  extend ::Gapic::Config
656
679
 
680
+ # @private
681
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
657
682
  DEFAULT_ENDPOINT = "jobs.googleapis.com"
658
683
 
659
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
684
+ config_attr :endpoint, nil, ::String, nil
660
685
  config_attr :credentials, nil do |value|
661
686
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
662
687
  allowed.any? { |klass| klass === value }
@@ -668,6 +693,7 @@ module Google
668
693
  config_attr :metadata, nil, ::Hash, nil
669
694
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
670
695
  config_attr :quota_project, nil, ::String, nil
696
+ config_attr :universe_domain, nil, ::String, nil
671
697
 
672
698
  # @private
673
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.9.0"
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
@@ -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.9.0
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-09-12 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.20.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.20.0
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.19
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