google-apis-biglake_v1 0.8.0 → 0.9.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/OVERVIEW.md +4 -4
- data/lib/google/apis/biglake_v1/gem_version.rb +2 -2
- data/lib/google/apis/biglake_v1/service.rb +11 -5
- data/lib/google/apis/biglake_v1.rb +12 -6
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8455480f4ff5af4b4bc8e9538eb2b5068b339f587f9fdb1cabe9f520e3caa7e
|
|
4
|
+
data.tar.gz: '09e0eeaf6cd8b3e023652e77efae2d22558233f4a53b1502e42b0ae06a6bfb76'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05e99e800c861d7c5f07a77bdd4a08ec8c28d72be25aa848f341720f384a8e00625eff2578748e03ddfc2dae778d7a7d15732ac7f68a54cf1642b5174442fbff
|
|
7
|
+
data.tar.gz: abd341bfe6141330df7f4cb18f73aca612ee96bb79742a3abbf3decb83327348342387410c17328f2156ba54c9cf15cf86859fba654666af180ee9fd6deededa
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Simple REST client for version V1 of the
|
|
1
|
+
# Simple REST client for version V1 of the Lakehouse API
|
|
2
2
|
|
|
3
|
-
This is a simple client library for version V1 of the
|
|
3
|
+
This is a simple client library for version V1 of the Lakehouse 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 Biglake service in particular.)
|
|
67
67
|
|
|
68
|
-
For reference information on specific calls in the
|
|
68
|
+
For reference information on specific calls in the Lakehouse API, see the {Google::Apis::BiglakeV1::BigLakeServiceService class reference docs}.
|
|
69
69
|
|
|
70
70
|
## Which client should I use?
|
|
71
71
|
|
|
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
|
79
79
|
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
|
81
81
|
|
|
82
|
-
The [product documentation](https://cloud.google.com/
|
|
82
|
+
The [product documentation](https://cloud.google.com/products/lakehouse) may provide guidance regarding the preferred client library to use.
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BiglakeV1
|
|
18
18
|
# Version of the google-apis-biglake_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.9.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260625"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -20,11 +20,17 @@ require 'google/apis/errors'
|
|
|
20
20
|
module Google
|
|
21
21
|
module Apis
|
|
22
22
|
module BiglakeV1
|
|
23
|
-
#
|
|
23
|
+
# Lakehouse API
|
|
24
24
|
#
|
|
25
|
-
# The BigLake API provides access to
|
|
26
|
-
# managed, and highly available metastore
|
|
27
|
-
# for
|
|
25
|
+
# The Lakehouse API (formerly BigLake API) provides access to a serverless,
|
|
26
|
+
# fully managed, and highly available metastore that provides a single source of
|
|
27
|
+
# truth for your data lakehouse. It lets multiple engines—including Apache Spark,
|
|
28
|
+
# Google Managed Spark, Apache Flink, Trino and BigQuery—share tables and
|
|
29
|
+
# metadata for key open formats (Apache Iceberg, Apache Hive), and query the
|
|
30
|
+
# same copy of data. Plus, through the Lakehouse runtime catalog federation
|
|
31
|
+
# seamlessly unite your lakehouse ecosystem, letting Iceberg compatible engines
|
|
32
|
+
# on Google Cloud (BigQuery, Google Managed Spark) discover and analyze
|
|
33
|
+
# enterprise data across Snowflake, Databricks, and AWS Glue.
|
|
28
34
|
#
|
|
29
35
|
# @example
|
|
30
36
|
# require 'google/apis/biglake_v1'
|
|
@@ -32,7 +38,7 @@ module Google
|
|
|
32
38
|
# Biglake = Google::Apis::BiglakeV1 # Alias the module
|
|
33
39
|
# service = Biglake::BigLakeServiceService.new
|
|
34
40
|
#
|
|
35
|
-
# @see https://cloud.google.com/
|
|
41
|
+
# @see https://cloud.google.com/products/lakehouse
|
|
36
42
|
class BigLakeServiceService < Google::Apis::Core::BaseService
|
|
37
43
|
DEFAULT_ENDPOINT_TEMPLATE = "https://biglake.$UNIVERSE_DOMAIN$/"
|
|
38
44
|
|
|
@@ -19,15 +19,21 @@ require 'google/apis/biglake_v1/gem_version.rb'
|
|
|
19
19
|
|
|
20
20
|
module Google
|
|
21
21
|
module Apis
|
|
22
|
-
#
|
|
22
|
+
# Lakehouse API
|
|
23
23
|
#
|
|
24
|
-
# The BigLake API provides access to
|
|
25
|
-
# managed, and highly available metastore
|
|
26
|
-
# for
|
|
24
|
+
# The Lakehouse API (formerly BigLake API) provides access to a serverless,
|
|
25
|
+
# fully managed, and highly available metastore that provides a single source of
|
|
26
|
+
# truth for your data lakehouse. It lets multiple engines—including Apache Spark,
|
|
27
|
+
# Google Managed Spark, Apache Flink, Trino and BigQuery—share tables and
|
|
28
|
+
# metadata for key open formats (Apache Iceberg, Apache Hive), and query the
|
|
29
|
+
# same copy of data. Plus, through the Lakehouse runtime catalog federation
|
|
30
|
+
# seamlessly unite your lakehouse ecosystem, letting Iceberg compatible engines
|
|
31
|
+
# on Google Cloud (BigQuery, Google Managed Spark) discover and analyze
|
|
32
|
+
# enterprise data across Snowflake, Databricks, and AWS Glue.
|
|
27
33
|
#
|
|
28
|
-
# @see https://cloud.google.com/
|
|
34
|
+
# @see https://cloud.google.com/products/lakehouse
|
|
29
35
|
module BiglakeV1
|
|
30
|
-
# Version of the
|
|
36
|
+
# Version of the Lakehouse API this client connects to.
|
|
31
37
|
# This is NOT the gem version.
|
|
32
38
|
VERSION = 'V1'
|
|
33
39
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-biglake_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.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
|
|
32
|
+
description: This is the simple REST client for Lakehouse API V1. Simple REST clients
|
|
33
33
|
are Ruby client libraries that provide access to Google services via their HTTP
|
|
34
34
|
REST API endpoints. These libraries are generated and updated automatically based
|
|
35
35
|
on the discovery documents published by the service, and they handle most concerns
|
|
36
36
|
such as authentication, pagination, retry, timeouts, and logging. You can use this
|
|
37
|
-
client to access the
|
|
37
|
+
client to access the Lakehouse API, but note that some services may provide a separate
|
|
38
38
|
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-biglake_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-biglake_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-biglake_v1/v0.9.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-biglake_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -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
|
|
78
|
+
summary: Simple REST client for Lakehouse API V1
|
|
79
79
|
test_files: []
|