google-cloud-talent-v4beta1 0.13.0 → 0.14.1
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/talent/v4beta1/company_service/client.rb +9 -2
- data/lib/google/cloud/talent/v4beta1/company_service/rest/client.rb +8 -1
- data/lib/google/cloud/talent/v4beta1/completion/client.rb +9 -2
- data/lib/google/cloud/talent/v4beta1/completion/rest/client.rb +8 -1
- data/lib/google/cloud/talent/v4beta1/event_service/client.rb +9 -2
- data/lib/google/cloud/talent/v4beta1/event_service/rest/client.rb +8 -1
- data/lib/google/cloud/talent/v4beta1/job_service/client.rb +9 -2
- data/lib/google/cloud/talent/v4beta1/job_service/operations.rb +9 -2
- data/lib/google/cloud/talent/v4beta1/job_service/rest/client.rb +8 -1
- data/lib/google/cloud/talent/v4beta1/job_service/rest/operations.rb +8 -1
- data/lib/google/cloud/talent/v4beta1/tenant_service/client.rb +9 -2
- data/lib/google/cloud/talent/v4beta1/tenant_service/rest/client.rb +8 -1
- data/lib/google/cloud/talent/v4beta1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/cloud/talent/v4beta1/common.rb +4 -0
- data/proto_docs/google/cloud/talent/v4beta1/filters.rb +4 -0
- data/proto_docs/google/longrunning/operations.rb +4 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 441fb25887e045742f173c1b559399cfd39b31768f089fa884a3270ba3fd56e4
|
4
|
+
data.tar.gz: ad4052e0bb307d92ec01e71b170e4a73a5d4f14227de959cd8ab9e41a680e46e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f322d3904b65953a2ecbc23d1df835809249d4ac10512de3a4a8b4e040265de1e9c86478347dd095f8396ba13c730c2de6e33d300d6590cbd1bb4392662f573f
|
7
|
+
data.tar.gz: 164a6a936b863a131ee793ccff9f7f90088fd18760b29c0a9ce5188cf3a343bf085d87042420f8f545da04c0f6afd7aa66e30f8e95fcc6870ee3c3a077bb62e2
|
data/README.md
CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
86
86
|
|
87
87
|
## Supported Ruby Versions
|
88
88
|
|
89
|
-
This library is supported on Ruby
|
89
|
+
This library is supported on Ruby 3.0+.
|
90
90
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -730,6 +730,13 @@ module Google
|
|
730
730
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
731
731
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
732
732
|
# * (`nil`) indicating no credentials
|
733
|
+
#
|
734
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
735
|
+
# external source for authentication to Google Cloud, you must validate it before
|
736
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
737
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
738
|
+
# For more information, refer to [Validate credential configurations from external
|
739
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
733
740
|
# @return [::Object]
|
734
741
|
# @!attribute [rw] scope
|
735
742
|
# The OAuth scopes
|
@@ -784,8 +791,8 @@ module Google
|
|
784
791
|
|
785
792
|
config_attr :endpoint, nil, ::String, nil
|
786
793
|
config_attr :credentials, nil do |value|
|
787
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
788
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
794
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
795
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
789
796
|
allowed.any? { |klass| klass === value }
|
790
797
|
end
|
791
798
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -686,6 +686,13 @@ module Google
|
|
686
686
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
687
687
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
688
688
|
# * (`nil`) indicating no credentials
|
689
|
+
#
|
690
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
691
|
+
# external source for authentication to Google Cloud, you must validate it before
|
692
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
693
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
694
|
+
# For more information, refer to [Validate credential configurations from external
|
695
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
689
696
|
# @return [::Object]
|
690
697
|
# @!attribute [rw] scope
|
691
698
|
# The OAuth scopes
|
@@ -733,7 +740,7 @@ module Google
|
|
733
740
|
|
734
741
|
config_attr :endpoint, nil, ::String, nil
|
735
742
|
config_attr :credentials, nil do |value|
|
736
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
743
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
737
744
|
allowed.any? { |klass| klass === value }
|
738
745
|
end
|
739
746
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -354,6 +354,13 @@ module Google
|
|
354
354
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
355
355
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
356
356
|
# * (`nil`) indicating no credentials
|
357
|
+
#
|
358
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
359
|
+
# external source for authentication to Google Cloud, you must validate it before
|
360
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
361
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
362
|
+
# For more information, refer to [Validate credential configurations from external
|
363
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
357
364
|
# @return [::Object]
|
358
365
|
# @!attribute [rw] scope
|
359
366
|
# The OAuth scopes
|
@@ -408,8 +415,8 @@ module Google
|
|
408
415
|
|
409
416
|
config_attr :endpoint, nil, ::String, nil
|
410
417
|
config_attr :credentials, nil do |value|
|
411
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
412
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
418
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
419
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
413
420
|
allowed.any? { |klass| klass === value }
|
414
421
|
end
|
415
422
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -338,6 +338,13 @@ module Google
|
|
338
338
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
339
339
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
340
340
|
# * (`nil`) indicating no credentials
|
341
|
+
#
|
342
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
343
|
+
# external source for authentication to Google Cloud, you must validate it before
|
344
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
345
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
346
|
+
# For more information, refer to [Validate credential configurations from external
|
347
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
341
348
|
# @return [::Object]
|
342
349
|
# @!attribute [rw] scope
|
343
350
|
# The OAuth scopes
|
@@ -385,7 +392,7 @@ module Google
|
|
385
392
|
|
386
393
|
config_attr :endpoint, nil, ::String, nil
|
387
394
|
config_attr :credentials, nil do |value|
|
388
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
395
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
389
396
|
allowed.any? { |klass| klass === value }
|
390
397
|
end
|
391
398
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -327,6 +327,13 @@ module Google
|
|
327
327
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
328
328
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
329
329
|
# * (`nil`) indicating no credentials
|
330
|
+
#
|
331
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
332
|
+
# external source for authentication to Google Cloud, you must validate it before
|
333
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
334
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
335
|
+
# For more information, refer to [Validate credential configurations from external
|
336
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
330
337
|
# @return [::Object]
|
331
338
|
# @!attribute [rw] scope
|
332
339
|
# The OAuth scopes
|
@@ -381,8 +388,8 @@ module Google
|
|
381
388
|
|
382
389
|
config_attr :endpoint, nil, ::String, nil
|
383
390
|
config_attr :credentials, nil do |value|
|
384
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
385
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
391
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
392
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
386
393
|
allowed.any? { |klass| klass === value }
|
387
394
|
end
|
388
395
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -311,6 +311,13 @@ module Google
|
|
311
311
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
312
312
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
313
313
|
# * (`nil`) indicating no credentials
|
314
|
+
#
|
315
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
316
|
+
# external source for authentication to Google Cloud, you must validate it before
|
317
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
318
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
319
|
+
# For more information, refer to [Validate credential configurations from external
|
320
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
314
321
|
# @return [::Object]
|
315
322
|
# @!attribute [rw] scope
|
316
323
|
# The OAuth scopes
|
@@ -358,7 +365,7 @@ module Google
|
|
358
365
|
|
359
366
|
config_attr :endpoint, nil, ::String, nil
|
360
367
|
config_attr :credentials, nil do |value|
|
361
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
368
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
362
369
|
allowed.any? { |klass| klass === value }
|
363
370
|
end
|
364
371
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -1858,6 +1858,13 @@ module Google
|
|
1858
1858
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1859
1859
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1860
1860
|
# * (`nil`) indicating no credentials
|
1861
|
+
#
|
1862
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1863
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1864
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1865
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1866
|
+
# For more information, refer to [Validate credential configurations from external
|
1867
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1861
1868
|
# @return [::Object]
|
1862
1869
|
# @!attribute [rw] scope
|
1863
1870
|
# The OAuth scopes
|
@@ -1912,8 +1919,8 @@ module Google
|
|
1912
1919
|
|
1913
1920
|
config_attr :endpoint, nil, ::String, nil
|
1914
1921
|
config_attr :credentials, nil do |value|
|
1915
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1916
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
1922
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
1923
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
1917
1924
|
allowed.any? { |klass| klass === value }
|
1918
1925
|
end
|
1919
1926
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -640,6 +640,13 @@ module Google
|
|
640
640
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
641
641
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
642
642
|
# * (`nil`) indicating no credentials
|
643
|
+
#
|
644
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
645
|
+
# external source for authentication to Google Cloud, you must validate it before
|
646
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
647
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
648
|
+
# For more information, refer to [Validate credential configurations from external
|
649
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
643
650
|
# @return [::Object]
|
644
651
|
# @!attribute [rw] scope
|
645
652
|
# The OAuth scopes
|
@@ -694,8 +701,8 @@ module Google
|
|
694
701
|
|
695
702
|
config_attr :endpoint, nil, ::String, nil
|
696
703
|
config_attr :credentials, nil do |value|
|
697
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
698
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
704
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
705
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
699
706
|
allowed.any? { |klass| klass === value }
|
700
707
|
end
|
701
708
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -1779,6 +1779,13 @@ module Google
|
|
1779
1779
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1780
1780
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1781
1781
|
# * (`nil`) indicating no credentials
|
1782
|
+
#
|
1783
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1784
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1785
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1786
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1787
|
+
# For more information, refer to [Validate credential configurations from external
|
1788
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1782
1789
|
# @return [::Object]
|
1783
1790
|
# @!attribute [rw] scope
|
1784
1791
|
# The OAuth scopes
|
@@ -1826,7 +1833,7 @@ module Google
|
|
1826
1833
|
|
1827
1834
|
config_attr :endpoint, nil, ::String, nil
|
1828
1835
|
config_attr :credentials, nil do |value|
|
1829
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1836
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
1830
1837
|
allowed.any? { |klass| klass === value }
|
1831
1838
|
end
|
1832
1839
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -502,6 +502,13 @@ module Google
|
|
502
502
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
503
503
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
504
504
|
# * (`nil`) indicating no credentials
|
505
|
+
#
|
506
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
507
|
+
# external source for authentication to Google Cloud, you must validate it before
|
508
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
509
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
510
|
+
# For more information, refer to [Validate credential configurations from external
|
511
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
505
512
|
# @return [::Object]
|
506
513
|
# @!attribute [rw] scope
|
507
514
|
# The OAuth scopes
|
@@ -549,7 +556,7 @@ module Google
|
|
549
556
|
|
550
557
|
config_attr :endpoint, nil, ::String, nil
|
551
558
|
config_attr :credentials, nil do |value|
|
552
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
559
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
553
560
|
allowed.any? { |klass| klass === value }
|
554
561
|
end
|
555
562
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -709,6 +709,13 @@ module Google
|
|
709
709
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
710
710
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
711
711
|
# * (`nil`) indicating no credentials
|
712
|
+
#
|
713
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
714
|
+
# external source for authentication to Google Cloud, you must validate it before
|
715
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
716
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
717
|
+
# For more information, refer to [Validate credential configurations from external
|
718
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
712
719
|
# @return [::Object]
|
713
720
|
# @!attribute [rw] scope
|
714
721
|
# The OAuth scopes
|
@@ -763,8 +770,8 @@ module Google
|
|
763
770
|
|
764
771
|
config_attr :endpoint, nil, ::String, nil
|
765
772
|
config_attr :credentials, nil do |value|
|
766
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
767
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
773
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
774
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
768
775
|
allowed.any? { |klass| klass === value }
|
769
776
|
end
|
770
777
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -665,6 +665,13 @@ module Google
|
|
665
665
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
666
666
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
667
667
|
# * (`nil`) indicating no credentials
|
668
|
+
#
|
669
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
670
|
+
# external source for authentication to Google Cloud, you must validate it before
|
671
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
672
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
673
|
+
# For more information, refer to [Validate credential configurations from external
|
674
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
668
675
|
# @return [::Object]
|
669
676
|
# @!attribute [rw] scope
|
670
677
|
# The OAuth scopes
|
@@ -712,7 +719,7 @@ module Google
|
|
712
719
|
|
713
720
|
config_attr :endpoint, nil, ::String, nil
|
714
721
|
config_attr :credentials, nil do |value|
|
715
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
722
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
716
723
|
allowed.any? { |klass| klass === value }
|
717
724
|
end
|
718
725
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -409,6 +415,14 @@ module Google
|
|
409
415
|
# @return [::Array<::String>]
|
410
416
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
417
|
# on public client surfaces.
|
418
|
+
# @!attribute [rw] generate_omitted_as_internal
|
419
|
+
# @return [::Boolean]
|
420
|
+
# Setting this to true indicates to the client generators that methods
|
421
|
+
# that would be excluded from the generation should instead be generated
|
422
|
+
# in a way that indicates these methods should not be consumed by
|
423
|
+
# end users. How this is expressed is up to individual language
|
424
|
+
# implementations to decide. Some examples may be: added annotations,
|
425
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
426
|
class SelectiveGapicGeneration
|
413
427
|
include ::Google::Protobuf::MessageExts
|
414
428
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -365,9 +365,13 @@ module Google
|
|
365
365
|
# @!attribute [rw] amount
|
366
366
|
# @return [::Google::Type::Money]
|
367
367
|
# Compensation amount.
|
368
|
+
#
|
369
|
+
# Note: The following fields are mutually exclusive: `amount`, `range`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
368
370
|
# @!attribute [rw] range
|
369
371
|
# @return [::Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationRange]
|
370
372
|
# Compensation range.
|
373
|
+
#
|
374
|
+
# Note: The following fields are mutually exclusive: `range`, `amount`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
371
375
|
# @!attribute [rw] description
|
372
376
|
# @return [::String]
|
373
377
|
# Compensation description. For example, could
|
@@ -372,12 +372,16 @@ module Google
|
|
372
372
|
# @!attribute [rw] road_traffic
|
373
373
|
# @return [::Google::Cloud::Talent::V4beta1::CommuteFilter::RoadTraffic]
|
374
374
|
# Specifies the traffic density to use when calculating commute time.
|
375
|
+
#
|
376
|
+
# Note: The following fields are mutually exclusive: `road_traffic`, `departure_time`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
375
377
|
# @!attribute [rw] departure_time
|
376
378
|
# @return [::Google::Type::TimeOfDay]
|
377
379
|
# The departure time used to calculate traffic impact, represented as
|
378
380
|
# {::Google::Type::TimeOfDay google.type.TimeOfDay} in local time zone.
|
379
381
|
#
|
380
382
|
# Currently traffic model is restricted to hour level resolution.
|
383
|
+
#
|
384
|
+
# Note: The following fields are mutually exclusive: `departure_time`, `road_traffic`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
381
385
|
class CommuteFilter
|
382
386
|
include ::Google::Protobuf::MessageExts
|
383
387
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -40,6 +40,8 @@ module Google
|
|
40
40
|
# @!attribute [rw] error
|
41
41
|
# @return [::Google::Rpc::Status]
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
|
+
#
|
44
|
+
# Note: The following fields are mutually exclusive: `error`, `response`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
43
45
|
# @!attribute [rw] response
|
44
46
|
# @return [::Google::Protobuf::Any]
|
45
47
|
# The normal, successful response of the operation. If the original
|
@@ -50,6 +52,8 @@ module Google
|
|
50
52
|
# is the original method name. For example, if the original method name
|
51
53
|
# is `TakeSnapshot()`, the inferred response type is
|
52
54
|
# `TakeSnapshotResponse`.
|
55
|
+
#
|
56
|
+
# Note: The following fields are mutually exclusive: `response`, `error`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
53
57
|
class Operation
|
54
58
|
include ::Google::Protobuf::MessageExts
|
55
59
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-talent-v4beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -152,7 +151,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
152
151
|
licenses:
|
153
152
|
- Apache-2.0
|
154
153
|
metadata: {}
|
155
|
-
post_install_message:
|
156
154
|
rdoc_options: []
|
157
155
|
require_paths:
|
158
156
|
- lib
|
@@ -160,15 +158,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
158
|
requirements:
|
161
159
|
- - ">="
|
162
160
|
- !ruby/object:Gem::Version
|
163
|
-
version: '
|
161
|
+
version: '3.0'
|
164
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
163
|
requirements:
|
166
164
|
- - ">="
|
167
165
|
- !ruby/object:Gem::Version
|
168
166
|
version: '0'
|
169
167
|
requirements: []
|
170
|
-
rubygems_version: 3.
|
171
|
-
signing_key:
|
168
|
+
rubygems_version: 3.6.8
|
172
169
|
specification_version: 4
|
173
170
|
summary: Cloud Talent Solution provides the capability to create, read, update, and
|
174
171
|
delete job postings, as well as search jobs based on keywords and filters.
|