google-cloud-data_catalog-lineage-v1 0.8.0 → 0.9.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: f43427e302f4f666d87eacc3539bf2bb5e3249b527ae1d019efba66d104bafd9
4
- data.tar.gz: e7cf3b9ad100ffd65020696f8f3412bfbe8668dfc9b6e99684bc06575dcb6d64
3
+ metadata.gz: e13d1aa45d178ad37802e479ed790b5d6eb114590cbcee5cff42ab92fb3e579b
4
+ data.tar.gz: 6250b528c91b203ed443d88ede967dabe5295ba82b8d931fff8d7c050af32842
5
5
  SHA512:
6
- metadata.gz: 944f1f77772b28287d658623892d6102e188abff891b4da8b2d37c6d7d8fe9b12c26ad48e9c6f40d64789e93c6076a65be5ea979496fd14946fba05a5626be48
7
- data.tar.gz: 678b9fb72dcacc6c2b41b81b8779fd4e136d95b77df2706582ef50b35b72952c05a56af59cf73ea9a177643e266e25128e8ca5cdf71c46be20d6bd2c68b6f757
6
+ metadata.gz: 72724c1e14bed7b745a413720d526204595718769bb420ff349ae229b47003141b02dfcf300c300138574b8bbe00e807ab236efca461bf7caee7cfd52f78e237
7
+ data.tar.gz: e3e80f537fd471ce4c809303946d12bea46b1080db65f88a6b0bd21905c13a52e180ae46e07d12a598df38dc5c4dc37a4313e15a2388e064aa010a3cb5670c68
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
@@ -1643,9 +1643,13 @@ module Google
1643
1643
  # @param source [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference, ::Hash]
1644
1644
  # Optional. Send asset information in the **source** field to retrieve all
1645
1645
  # links that lead from the specified asset to downstream assets.
1646
+ #
1647
+ # Note: The following fields are mutually exclusive: `source`, `target`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1646
1648
  # @param target [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference, ::Hash]
1647
1649
  # Optional. Send asset information in the **target** field to retrieve all
1648
1650
  # links that lead from upstream assets to the specified asset.
1651
+ #
1652
+ # Note: The following fields are mutually exclusive: `target`, `source`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1649
1653
  # @param page_size [::Integer]
1650
1654
  # Optional. The maximum number of links to return in a single page of the
1651
1655
  # response. A page may contain fewer links than this value. If unspecified,
@@ -1896,6 +1900,13 @@ module Google
1896
1900
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1897
1901
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1898
1902
  # * (`nil`) indicating no credentials
1903
+ #
1904
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1905
+ # external source for authentication to Google Cloud, you must validate it before
1906
+ # providing it to a Google API client library. Providing an unvalidated credential
1907
+ # configuration to Google APIs can compromise the security of your systems and data.
1908
+ # For more information, refer to [Validate credential configurations from external
1909
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1899
1910
  # @return [::Object]
1900
1911
  # @!attribute [rw] scope
1901
1912
  # The OAuth scopes
@@ -1950,8 +1961,8 @@ module Google
1950
1961
 
1951
1962
  config_attr :endpoint, nil, ::String, nil
1952
1963
  config_attr :credentials, nil do |value|
1953
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1954
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1964
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1965
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1955
1966
  allowed.any? { |klass| klass === value }
1956
1967
  end
1957
1968
  config_attr :scope, nil, ::String, ::Array, nil
@@ -641,6 +641,13 @@ module Google
641
641
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
642
642
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
643
643
  # * (`nil`) indicating no credentials
644
+ #
645
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
646
+ # external source for authentication to Google Cloud, you must validate it before
647
+ # providing it to a Google API client library. Providing an unvalidated credential
648
+ # configuration to Google APIs can compromise the security of your systems and data.
649
+ # For more information, refer to [Validate credential configurations from external
650
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
644
651
  # @return [::Object]
645
652
  # @!attribute [rw] scope
646
653
  # The OAuth scopes
@@ -695,8 +702,8 @@ module Google
695
702
 
696
703
  config_attr :endpoint, nil, ::String, nil
697
704
  config_attr :credentials, nil do |value|
698
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
699
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
705
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
706
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
700
707
  allowed.any? { |klass| klass === value }
701
708
  end
702
709
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1531,9 +1531,13 @@ module Google
1531
1531
  # @param source [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference, ::Hash]
1532
1532
  # Optional. Send asset information in the **source** field to retrieve all
1533
1533
  # links that lead from the specified asset to downstream assets.
1534
+ #
1535
+ # Note: The following fields are mutually exclusive: `source`, `target`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1534
1536
  # @param target [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference, ::Hash]
1535
1537
  # Optional. Send asset information in the **target** field to retrieve all
1536
1538
  # links that lead from upstream assets to the specified asset.
1539
+ #
1540
+ # Note: The following fields are mutually exclusive: `target`, `source`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1537
1541
  # @param page_size [::Integer]
1538
1542
  # Optional. The maximum number of links to return in a single page of the
1539
1543
  # response. A page may contain fewer links than this value. If unspecified,
@@ -1768,6 +1772,13 @@ module Google
1768
1772
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1769
1773
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1770
1774
  # * (`nil`) indicating no credentials
1775
+ #
1776
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1777
+ # external source for authentication to Google Cloud, you must validate it before
1778
+ # providing it to a Google API client library. Providing an unvalidated credential
1779
+ # configuration to Google APIs can compromise the security of your systems and data.
1780
+ # For more information, refer to [Validate credential configurations from external
1781
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1771
1782
  # @return [::Object]
1772
1783
  # @!attribute [rw] scope
1773
1784
  # The OAuth scopes
@@ -1815,7 +1826,7 @@ module Google
1815
1826
 
1816
1827
  config_attr :endpoint, nil, ::String, nil
1817
1828
  config_attr :credentials, nil do |value|
1818
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1829
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1819
1830
  allowed.any? { |klass| klass === value }
1820
1831
  end
1821
1832
  config_attr :scope, nil, ::String, ::Array, nil
@@ -503,6 +503,13 @@ module Google
503
503
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
504
504
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
505
505
  # * (`nil`) indicating no credentials
506
+ #
507
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
508
+ # external source for authentication to Google Cloud, you must validate it before
509
+ # providing it to a Google API client library. Providing an unvalidated credential
510
+ # configuration to Google APIs can compromise the security of your systems and data.
511
+ # For more information, refer to [Validate credential configurations from external
512
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
506
513
  # @return [::Object]
507
514
  # @!attribute [rw] scope
508
515
  # The OAuth scopes
@@ -550,7 +557,7 @@ module Google
550
557
 
551
558
  config_attr :endpoint, nil, ::String, nil
552
559
  config_attr :credentials, nil do |value|
553
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
560
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
554
561
  allowed.any? { |klass| klass === value }
555
562
  end
556
563
  config_attr :scope, nil, ::String, ::Array, nil
@@ -22,7 +22,7 @@ module Google
22
22
  module DataCatalog
23
23
  module Lineage
24
24
  module V1
25
- VERSION = "0.8.0"
25
+ VERSION = "0.9.1"
26
26
  end
27
27
  end
28
28
  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
@@ -561,10 +561,14 @@ module Google
561
561
  # @return [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference]
562
562
  # Optional. Send asset information in the **source** field to retrieve all
563
563
  # links that lead from the specified asset to downstream assets.
564
+ #
565
+ # Note: The following fields are mutually exclusive: `source`, `target`. If a field in that set is populated, all other fields in the set will automatically be cleared.
564
566
  # @!attribute [rw] target
565
567
  # @return [::Google::Cloud::DataCatalog::Lineage::V1::EntityReference]
566
568
  # Optional. Send asset information in the **target** field to retrieve all
567
569
  # links that lead from upstream assets to the specified asset.
570
+ #
571
+ # Note: The following fields are mutually exclusive: `target`, `source`. If a field in that set is populated, all other fields in the set will automatically be cleared.
568
572
  # @!attribute [rw] page_size
569
573
  # @return [::Integer]
570
574
  # Optional. The maximum number of links to return in a single page of the
@@ -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
@@ -53,21 +53,33 @@ module Google
53
53
  # @!attribute [rw] null_value
54
54
  # @return [::Google::Protobuf::NullValue]
55
55
  # Represents a null value.
56
+ #
57
+ # Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
56
58
  # @!attribute [rw] number_value
57
59
  # @return [::Float]
58
60
  # Represents a double value.
61
+ #
62
+ # Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
59
63
  # @!attribute [rw] string_value
60
64
  # @return [::String]
61
65
  # Represents a string value.
66
+ #
67
+ # Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
62
68
  # @!attribute [rw] bool_value
63
69
  # @return [::Boolean]
64
70
  # Represents a boolean value.
71
+ #
72
+ # Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
65
73
  # @!attribute [rw] struct_value
66
74
  # @return [::Google::Protobuf::Struct]
67
75
  # Represents a structured value.
76
+ #
77
+ # Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
68
78
  # @!attribute [rw] list_value
69
79
  # @return [::Google::Protobuf::ListValue]
70
80
  # Represents a repeated `Value`.
81
+ #
82
+ # Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
71
83
  class Value
72
84
  include ::Google::Protobuf::MessageExts
73
85
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-data_catalog-lineage-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 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
@@ -95,7 +94,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
95
94
  licenses:
96
95
  - Apache-2.0
97
96
  metadata: {}
98
- post_install_message:
99
97
  rdoc_options: []
100
98
  require_paths:
101
99
  - lib
@@ -103,15 +101,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
103
101
  requirements:
104
102
  - - ">="
105
103
  - !ruby/object:Gem::Version
106
- version: '2.7'
104
+ version: '3.0'
107
105
  required_rubygems_version: !ruby/object:Gem::Requirement
108
106
  requirements:
109
107
  - - ">="
110
108
  - !ruby/object:Gem::Version
111
109
  version: '0'
112
110
  requirements: []
113
- rubygems_version: 3.5.23
114
- signing_key:
111
+ rubygems_version: 3.6.8
115
112
  specification_version: 4
116
113
  summary: API Client library for the Data Lineage V1 API
117
114
  test_files: []