google-apis-firebasedataconnect_v1beta 0.21.0 → 0.23.0

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: 4115ac8cf0c3c9695f082f08398f6de97bdfb7bee19465176f9b32338c822a28
4
- data.tar.gz: 8e12b708bd37c4cefe26a75197c457f8439145ad44dcfe6b9736de9d22ec01c9
3
+ metadata.gz: 2a642246718512e0a32de9a1dbd5654187e09562a6b5ced2e65ac001945f70e8
4
+ data.tar.gz: d5dc174b3fe8ddbc963c301680d87a2e3ca96b6dbbba86685179d49f9221782a
5
5
  SHA512:
6
- metadata.gz: 7075462efc788ea57cbf37886e363d32286b0919021e2dbf940b7daca5b21085f631cd67ae6871d21c9cdb5bbfba51e3cdb9a5a3df7009adc72c974f39ec0fb5
7
- data.tar.gz: 6b89a6f2e8c2df2e0d435a4b6719e82baf44a7637e01f45595339aeaaef944e74fa8dadd8b64c47ce2b54a8187a257a0e6e3ce0cc8e4b9b44857fa7dd6e96470
6
+ metadata.gz: 214550960088dca37ba0b70b334955365ee65658a89811870c4b76e93c42748a0389effa142d0d405cf9d85f68ede85984efb6208a7f1c29f9658bb38b643695
7
+ data.tar.gz: c149267398a1197f86da0a88d6cb01fa40f65c00e255717d5dd924788f3d075799d037813fa699f4932a6f84b8fed5a8c6328b2a40ed60867cc493c42b0e246e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-firebasedataconnect_v1beta
2
2
 
3
+ ### v0.23.0 (2026-07-26)
4
+
5
+ * Regenerated from discovery document revision 20260719
6
+
7
+ ### v0.22.0 (2026-06-14)
8
+
9
+ * Regenerated from discovery document revision 20260531
10
+ * Regenerated using generator version 0.19.0
11
+
3
12
  ### v0.21.0 (2026-05-17)
4
13
 
5
14
  * Regenerated from discovery document revision 20260502
data/OVERVIEW.md CHANGED
@@ -1,6 +1,6 @@
1
- # Simple REST client for version V1beta of the Firebase Data Connect API
1
+ # Simple REST client for version V1beta of the Firebase SQL Connect API
2
2
 
3
- This is a simple client library for version V1beta of the Firebase Data Connect API. It provides:
3
+ This is a simple client library for version V1beta of the Firebase SQL Connect API. It provides:
4
4
 
5
5
  * A client object that connects to the HTTP/JSON REST endpoint for the service.
6
6
  * Ruby objects for data structures related to the service.
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Firebasedataconnect service in particular.)
67
67
 
68
- For reference information on specific calls in the Firebase Data Connect API, see the {Google::Apis::FirebasedataconnectV1beta::FirebaseDataConnectService class reference docs}.
68
+ For reference information on specific calls in the Firebase SQL Connect API, see the {Google::Apis::FirebasedataconnectV1beta::FirebaseDataConnectService class reference docs}.
69
69
 
70
70
  ## Which client should I use?
71
71
 
@@ -83,7 +83,7 @@ The [product documentation](https://firebase.google.com/docs/data-connect) may p
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -77,6 +77,11 @@ module Google
77
77
  class CloudSqlInstance
78
78
  include Google::Apis::Core::Hashable
79
79
 
80
+ # Output only. [Output only] The Cloud SQL instance edition.
81
+ # Corresponds to the JSON property `edition`
82
+ # @return [String]
83
+ attr_accessor :edition
84
+
80
85
  # Required. Name of the CloudSQL instance, in the format: ``` projects/`project`/
81
86
  # locations/`location`/instances/`instance` ```
82
87
  # Corresponds to the JSON property `instance`
@@ -89,6 +94,7 @@ module Google
89
94
 
90
95
  # Update properties of this object
91
96
  def update!(**args)
97
+ @edition = args[:edition] if args.key?(:edition)
92
98
  @instance = args[:instance] if args.key?(:instance)
93
99
  end
94
100
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasedataconnectV1beta
18
18
  # Version of the google-apis-firebasedataconnect_v1beta gem
19
- GEM_VERSION = "0.21.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260502"
25
+ REVISION = "20260719"
26
26
  end
27
27
  end
28
28
  end
@@ -303,6 +303,7 @@ module Google
303
303
  class CloudSqlInstance
304
304
  # @private
305
305
  class Representation < Google::Apis::Core::JsonRepresentation
306
+ property :edition, as: 'edition'
306
307
  property :instance, as: 'instance'
307
308
  end
308
309
  end
@@ -20,7 +20,7 @@ require 'google/apis/errors'
20
20
  module Google
21
21
  module Apis
22
22
  module FirebasedataconnectV1beta
23
- # Firebase Data Connect API
23
+ # Firebase SQL Connect API
24
24
  #
25
25
  # Firebase SQL Connect is a relational database service for mobile and web apps
26
26
  # that lets you build and scale using a fully-managed PostgreSQL database
@@ -19,7 +19,7 @@ require 'google/apis/firebasedataconnect_v1beta/gem_version.rb'
19
19
 
20
20
  module Google
21
21
  module Apis
22
- # Firebase Data Connect API
22
+ # Firebase SQL Connect API
23
23
  #
24
24
  # Firebase SQL Connect is a relational database service for mobile and web apps
25
25
  # that lets you build and scale using a fully-managed PostgreSQL database
@@ -28,7 +28,7 @@ module Google
28
28
  #
29
29
  # @see https://firebase.google.com/docs/data-connect
30
30
  module FirebasedataconnectV1beta
31
- # Version of the Firebase Data Connect API this client connects to.
31
+ # Version of the Firebase SQL Connect API this client connects to.
32
32
  # This is NOT the gem version.
33
33
  VERSION = 'V1beta'
34
34
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebasedataconnect_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -29,12 +29,12 @@ dependencies:
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
31
  version: 2.a
32
- description: This is the simple REST client for Firebase Data Connect API V1beta.
33
- Simple REST clients are Ruby client libraries that provide access to Google services
34
- via their HTTP REST API endpoints. These libraries are generated and updated automatically
32
+ description: This is the simple REST client for Firebase SQL Connect API V1beta. Simple
33
+ REST clients are Ruby client libraries that provide access to Google services via
34
+ their HTTP REST API endpoints. These libraries are generated and updated automatically
35
35
  based on the discovery documents published by the service, and they handle most
36
36
  concerns such as authentication, pagination, retry, timeouts, and logging. You can
37
- use this client to access the Firebase Data Connect API, but note that some services
37
+ use this client to access the Firebase SQL Connect API, but note that some services
38
38
  may provide a separate modern client that is easier to use.
39
39
  email: googleapis-packages@google.com
40
40
  executables: []
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1beta/v0.21.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1beta/v0.23.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1beta
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
@@ -75,5 +75,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  requirements: []
76
76
  rubygems_version: 3.6.9
77
77
  specification_version: 4
78
- summary: Simple REST client for Firebase Data Connect API V1beta
78
+ summary: Simple REST client for Firebase SQL Connect API V1beta
79
79
  test_files: []