google-cloud-oracle_database-v1 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5dde628bb1c1e0eece312e73a1d3235b519cd64358440b9c03be6557b97bfae
4
- data.tar.gz: 1c3a2e8efc855bfb3d486f1108837ea348dabc594c0f37456f570a5689aca766
3
+ metadata.gz: b78d1a8a529c13181bdbb4c7dcf69f5c22b97a4f603a43fa282fb590b06bc5ee
4
+ data.tar.gz: 91e9e7a66ada1234f2e1ebb733ddf40744694efa8c01849066656770f6c9d7d6
5
5
  SHA512:
6
- metadata.gz: 7bc2237b115ed2fd418a2780906e02a44438f1eccadb4f7587b5f798d826c7b66fe88f124cbcd8ac71d9304fe955094fc44241a92ca1eac9b38d9929909ea56d
7
- data.tar.gz: 4f75908b426171318e9bab820ca3da576be4c7d1fe71fd767c16251c1b6ff9938d5ff0b793dddf57e03b1de9e9f4cdbff5df76e0e2d5553089d555f1eb1a3735
6
+ metadata.gz: ed3042064e202554345ee8278a55079a864cda0170fde57375f64bea05e6e9f6d3befdaab7477b4e5a395e4d5f008818ef22f127b09c1f14147fc0007b87e7c8
7
+ data.tar.gz: 0b8b8eed73d453d55f3a3cb99c95f70c5d2807bd95c39695142aa600b4f8fddc0bf8ec9d17ef1e6e5fa17709cadb4e465613247811921d85f52799d1d26c3242
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
@@ -2372,6 +2372,13 @@ module Google
2372
2372
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
2373
2373
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
2374
2374
  # * (`nil`) indicating no credentials
2375
+ #
2376
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
2377
+ # external source for authentication to Google Cloud, you must validate it before
2378
+ # providing it to a Google API client library. Providing an unvalidated credential
2379
+ # configuration to Google APIs can compromise the security of your systems and data.
2380
+ # For more information, refer to [Validate credential configurations from external
2381
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
2375
2382
  # @return [::Object]
2376
2383
  # @!attribute [rw] scope
2377
2384
  # The OAuth scopes
@@ -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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OracleDatabase
23
23
  module V1
24
- VERSION = "0.3.0"
24
+ VERSION = "0.4.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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
@@ -75,9 +75,13 @@ module Google
75
75
  # UTC offset. Must be whole seconds, between -18 hours and +18 hours.
76
76
  # For example, a UTC offset of -4:00 would be represented as
77
77
  # { seconds: -14400 }.
78
+ #
79
+ # Note: The following fields are mutually exclusive: `utc_offset`, `time_zone`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
80
  # @!attribute [rw] time_zone
79
81
  # @return [::Google::Type::TimeZone]
80
82
  # Time zone.
83
+ #
84
+ # Note: The following fields are mutually exclusive: `time_zone`, `utc_offset`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
85
  class DateTime
82
86
  include ::Google::Protobuf::MessageExts
83
87
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-oracle_database-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
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-09 00:00:00.000000000 Z
10
+ date: 2025-01-29 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
@@ -139,7 +138,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
139
138
  licenses:
140
139
  - Apache-2.0
141
140
  metadata: {}
142
- post_install_message:
143
141
  rdoc_options: []
144
142
  require_paths:
145
143
  - lib
@@ -147,15 +145,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
147
145
  requirements:
148
146
  - - ">="
149
147
  - !ruby/object:Gem::Version
150
- version: '2.7'
148
+ version: '3.0'
151
149
  required_rubygems_version: !ruby/object:Gem::Requirement
152
150
  requirements:
153
151
  - - ">="
154
152
  - !ruby/object:Gem::Version
155
153
  version: '0'
156
154
  requirements: []
157
- rubygems_version: 3.5.23
158
- signing_key:
155
+ rubygems_version: 3.6.2
159
156
  specification_version: 4
160
157
  summary: The Oracle Database@Google Cloud API provides a set of APIs to manage Oracle
161
158
  database services, such as Exadata and Autonomous Databases.