google-cloud-talent-v4 1.2.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f416bb0c8f41336f79801c7fce3159b2ea044c1a7e4709c28674ad96fb370510
4
- data.tar.gz: c691a3fd0e2ac2456fab8470d56236456bd9e046fbff2af35dcaaaa38477d49f
3
+ metadata.gz: 6baafc899bb862ba78bac19f6cc3ea913d178135711a2406bbd79b9311da9b9b
4
+ data.tar.gz: 7aff449d6557eee0162e346aa449ea7776056fbb905cfa05acf72b697068c107
5
5
  SHA512:
6
- metadata.gz: 04d05efcb6c898976a60e9fdaee573a52e9536ec5e4fcff40f0c31ff5cd4514ce4210f5d587712a4d69f6361416a54c8976a399991d01daec95c73e984c74993
7
- data.tar.gz: 30130f6777f1a9a19d1ea2f94b9420d93c03ea88e45a6a4481428c628fb92ea5e8295ed12c4008070019f7435828b26ae6423561ce90315d13ddcfceb0118c5f
6
+ metadata.gz: 0f539269b5f2f94d7d6c6c86ad1a35a3a845487de17f05932ab68977b4d17c8f27e544a2fab14a04da4b1a91f04acef7b6e2d47ad844f58099efa5277b375e0c
7
+ data.tar.gz: 74ec055123e948c475566e9da8ae15bbc5ea513692daf6856c3d486ad60daad6b52d28cba1c812e67d1f264c8515be9ab14964a0bba20945269027fba491dfc3
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 2.7+.
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
@@ -719,6 +719,13 @@ module Google
719
719
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
720
720
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
721
721
  # * (`nil`) indicating no credentials
722
+ #
723
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
724
+ # external source for authentication to Google Cloud, you must validate it before
725
+ # providing it to a Google API client library. Providing an unvalidated credential
726
+ # configuration to Google APIs can compromise the security of your systems and data.
727
+ # For more information, refer to [Validate credential configurations from external
728
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
722
729
  # @return [::Object]
723
730
  # @!attribute [rw] scope
724
731
  # The OAuth scopes
@@ -773,8 +780,8 @@ module Google
773
780
 
774
781
  config_attr :endpoint, nil, ::String, nil
775
782
  config_attr :credentials, nil do |value|
776
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
777
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
783
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
784
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
778
785
  allowed.any? { |klass| klass === value }
779
786
  end
780
787
  config_attr :scope, nil, ::String, ::Array, nil
@@ -675,6 +675,13 @@ module Google
675
675
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
676
676
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
677
677
  # * (`nil`) indicating no credentials
678
+ #
679
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
680
+ # external source for authentication to Google Cloud, you must validate it before
681
+ # providing it to a Google API client library. Providing an unvalidated credential
682
+ # configuration to Google APIs can compromise the security of your systems and data.
683
+ # For more information, refer to [Validate credential configurations from external
684
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
678
685
  # @return [::Object]
679
686
  # @!attribute [rw] scope
680
687
  # The OAuth scopes
@@ -722,7 +729,7 @@ module Google
722
729
 
723
730
  config_attr :endpoint, nil, ::String, nil
724
731
  config_attr :credentials, nil do |value|
725
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
732
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
726
733
  allowed.any? { |klass| klass === value }
727
734
  end
728
735
  config_attr :scope, nil, ::String, ::Array, nil
@@ -348,6 +348,13 @@ module Google
348
348
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
349
349
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
350
350
  # * (`nil`) indicating no credentials
351
+ #
352
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
353
+ # external source for authentication to Google Cloud, you must validate it before
354
+ # providing it to a Google API client library. Providing an unvalidated credential
355
+ # configuration to Google APIs can compromise the security of your systems and data.
356
+ # For more information, refer to [Validate credential configurations from external
357
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
351
358
  # @return [::Object]
352
359
  # @!attribute [rw] scope
353
360
  # The OAuth scopes
@@ -402,8 +409,8 @@ module Google
402
409
 
403
410
  config_attr :endpoint, nil, ::String, nil
404
411
  config_attr :credentials, nil do |value|
405
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
406
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
412
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
413
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
407
414
  allowed.any? { |klass| klass === value }
408
415
  end
409
416
  config_attr :scope, nil, ::String, ::Array, nil
@@ -332,6 +332,13 @@ module Google
332
332
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
333
333
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
334
334
  # * (`nil`) indicating no credentials
335
+ #
336
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
337
+ # external source for authentication to Google Cloud, you must validate it before
338
+ # providing it to a Google API client library. Providing an unvalidated credential
339
+ # configuration to Google APIs can compromise the security of your systems and data.
340
+ # For more information, refer to [Validate credential configurations from external
341
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
335
342
  # @return [::Object]
336
343
  # @!attribute [rw] scope
337
344
  # The OAuth scopes
@@ -379,7 +386,7 @@ module Google
379
386
 
380
387
  config_attr :endpoint, nil, ::String, nil
381
388
  config_attr :credentials, nil do |value|
382
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
389
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
383
390
  allowed.any? { |klass| klass === value }
384
391
  end
385
392
  config_attr :scope, nil, ::String, ::Array, nil
@@ -326,6 +326,13 @@ module Google
326
326
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
327
327
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
328
328
  # * (`nil`) indicating no credentials
329
+ #
330
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
331
+ # external source for authentication to Google Cloud, you must validate it before
332
+ # providing it to a Google API client library. Providing an unvalidated credential
333
+ # configuration to Google APIs can compromise the security of your systems and data.
334
+ # For more information, refer to [Validate credential configurations from external
335
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
329
336
  # @return [::Object]
330
337
  # @!attribute [rw] scope
331
338
  # The OAuth scopes
@@ -380,8 +387,8 @@ module Google
380
387
 
381
388
  config_attr :endpoint, nil, ::String, nil
382
389
  config_attr :credentials, nil do |value|
383
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
384
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
390
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
391
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
385
392
  allowed.any? { |klass| klass === value }
386
393
  end
387
394
  config_attr :scope, nil, ::String, ::Array, nil
@@ -310,6 +310,13 @@ module Google
310
310
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
311
311
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
312
312
  # * (`nil`) indicating no credentials
313
+ #
314
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
315
+ # external source for authentication to Google Cloud, you must validate it before
316
+ # providing it to a Google API client library. Providing an unvalidated credential
317
+ # configuration to Google APIs can compromise the security of your systems and data.
318
+ # For more information, refer to [Validate credential configurations from external
319
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
313
320
  # @return [::Object]
314
321
  # @!attribute [rw] scope
315
322
  # The OAuth scopes
@@ -357,7 +364,7 @@ module Google
357
364
 
358
365
  config_attr :endpoint, nil, ::String, nil
359
366
  config_attr :credentials, nil do |value|
360
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
367
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
361
368
  allowed.any? { |klass| klass === value }
362
369
  end
363
370
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1837,6 +1837,13 @@ module Google
1837
1837
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1838
1838
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1839
1839
  # * (`nil`) indicating no credentials
1840
+ #
1841
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1842
+ # external source for authentication to Google Cloud, you must validate it before
1843
+ # providing it to a Google API client library. Providing an unvalidated credential
1844
+ # configuration to Google APIs can compromise the security of your systems and data.
1845
+ # For more information, refer to [Validate credential configurations from external
1846
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1840
1847
  # @return [::Object]
1841
1848
  # @!attribute [rw] scope
1842
1849
  # The OAuth scopes
@@ -1891,8 +1898,8 @@ module Google
1891
1898
 
1892
1899
  config_attr :endpoint, nil, ::String, nil
1893
1900
  config_attr :credentials, nil do |value|
1894
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1895
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1901
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1902
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1896
1903
  allowed.any? { |klass| klass === value }
1897
1904
  end
1898
1905
  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
@@ -1758,6 +1758,13 @@ module Google
1758
1758
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1759
1759
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1760
1760
  # * (`nil`) indicating no credentials
1761
+ #
1762
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1763
+ # external source for authentication to Google Cloud, you must validate it before
1764
+ # providing it to a Google API client library. Providing an unvalidated credential
1765
+ # configuration to Google APIs can compromise the security of your systems and data.
1766
+ # For more information, refer to [Validate credential configurations from external
1767
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1761
1768
  # @return [::Object]
1762
1769
  # @!attribute [rw] scope
1763
1770
  # The OAuth scopes
@@ -1805,7 +1812,7 @@ module Google
1805
1812
 
1806
1813
  config_attr :endpoint, nil, ::String, nil
1807
1814
  config_attr :credentials, nil do |value|
1808
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1815
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1809
1816
  allowed.any? { |klass| klass === value }
1810
1817
  end
1811
1818
  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
@@ -707,6 +707,13 @@ module Google
707
707
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
708
708
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
709
709
  # * (`nil`) indicating no credentials
710
+ #
711
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
712
+ # external source for authentication to Google Cloud, you must validate it before
713
+ # providing it to a Google API client library. Providing an unvalidated credential
714
+ # configuration to Google APIs can compromise the security of your systems and data.
715
+ # For more information, refer to [Validate credential configurations from external
716
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
710
717
  # @return [::Object]
711
718
  # @!attribute [rw] scope
712
719
  # The OAuth scopes
@@ -761,8 +768,8 @@ module Google
761
768
 
762
769
  config_attr :endpoint, nil, ::String, nil
763
770
  config_attr :credentials, nil do |value|
764
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
765
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
771
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
772
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
766
773
  allowed.any? { |klass| klass === value }
767
774
  end
768
775
  config_attr :scope, nil, ::String, ::Array, nil
@@ -663,6 +663,13 @@ module Google
663
663
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
664
664
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
665
665
  # * (`nil`) indicating no credentials
666
+ #
667
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
668
+ # external source for authentication to Google Cloud, you must validate it before
669
+ # providing it to a Google API client library. Providing an unvalidated credential
670
+ # configuration to Google APIs can compromise the security of your systems and data.
671
+ # For more information, refer to [Validate credential configurations from external
672
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
666
673
  # @return [::Object]
667
674
  # @!attribute [rw] scope
668
675
  # The OAuth scopes
@@ -710,7 +717,7 @@ module Google
710
717
 
711
718
  config_attr :endpoint, nil, ::String, nil
712
719
  config_attr :credentials, nil do |value|
713
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
720
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
714
721
  allowed.any? { |klass| klass === value }
715
722
  end
716
723
  config_attr :scope, nil, ::String, ::Array, nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Talent
23
23
  module V4
24
- VERSION = "1.2.0"
24
+ VERSION = "1.3.1"
25
25
  end
26
26
  end
27
27
  end
@@ -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
@@ -364,9 +364,13 @@ module Google
364
364
  # @!attribute [rw] amount
365
365
  # @return [::Google::Type::Money]
366
366
  # Compensation amount.
367
+ #
368
+ # 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.
367
369
  # @!attribute [rw] range
368
370
  # @return [::Google::Cloud::Talent::V4::CompensationInfo::CompensationRange]
369
371
  # Compensation range.
372
+ #
373
+ # 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.
370
374
  # @!attribute [rw] description
371
375
  # @return [::String]
372
376
  # Compensation description. For example, could
@@ -360,12 +360,16 @@ module Google
360
360
  # @!attribute [rw] road_traffic
361
361
  # @return [::Google::Cloud::Talent::V4::CommuteFilter::RoadTraffic]
362
362
  # Specifies the traffic density to use when calculating commute time.
363
+ #
364
+ # 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.
363
365
  # @!attribute [rw] departure_time
364
366
  # @return [::Google::Type::TimeOfDay]
365
367
  # The departure time used to calculate traffic impact, represented as
366
368
  # {::Google::Type::TimeOfDay google.type.TimeOfDay} in local time zone.
367
369
  #
368
370
  # Currently traffic model is restricted to hour level resolution.
371
+ #
372
+ # 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.
369
373
  class CommuteFilter
370
374
  include ::Google::Protobuf::MessageExts
371
375
  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-v4
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-08 00:00:00.000000000 Z
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.24.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.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -151,7 +150,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
151
150
  licenses:
152
151
  - Apache-2.0
153
152
  metadata: {}
154
- post_install_message:
155
153
  rdoc_options: []
156
154
  require_paths:
157
155
  - lib
@@ -159,15 +157,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
159
157
  requirements:
160
158
  - - ">="
161
159
  - !ruby/object:Gem::Version
162
- version: '2.7'
160
+ version: '3.0'
163
161
  required_rubygems_version: !ruby/object:Gem::Requirement
164
162
  requirements:
165
163
  - - ">="
166
164
  - !ruby/object:Gem::Version
167
165
  version: '0'
168
166
  requirements: []
169
- rubygems_version: 3.5.23
170
- signing_key:
167
+ rubygems_version: 3.6.8
171
168
  specification_version: 4
172
169
  summary: Cloud Talent Solution provides the capability to create, read, update, and
173
170
  delete job postings, as well as search jobs based on keywords and filters.