google-apis-analyticshub_v1 0.43.0 → 0.45.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f793fbc13f0c286b6acba3210d66a6356e286f39e5751a0ac71273443bafb06d
|
|
4
|
+
data.tar.gz: cca483c89d003ee63112d965a7e4379436d57505f3aed8b5a0df2b7e6ceb11f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c27d4f0906cb04e119e3ae1da699292368d2bc7fa3cb3b867d775f5bdabfb97a7fcfbadc95567bde4a53f07e66586b94cdde4443baa3399c290bd54c90048da3
|
|
7
|
+
data.tar.gz: 9baac6a1355bfc2a69df0cd4e991ace5a07467c87aaff9403653e6cfda76185b127774dbe6291dabab55858a01da133e8fcbf862dc56cb16bc6b59aa57cc51f8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-analyticshub_v1
|
|
2
2
|
|
|
3
|
+
### v0.45.0 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260607
|
|
6
|
+
|
|
7
|
+
### v0.44.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated using generator version 0.19.0
|
|
10
|
+
|
|
3
11
|
### v0.43.0 (2026-05-10)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260427
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/bigquery/docs/analytics-hub
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
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
|
|
|
@@ -302,10 +302,10 @@ module Google
|
|
|
302
302
|
end
|
|
303
303
|
|
|
304
304
|
# Configuration for a Bigtable subscription. The Pub/Sub message will be written
|
|
305
|
-
# to a Bigtable row as follows: - row key: subscription name
|
|
306
|
-
# delimited by
|
|
307
|
-
# data
|
|
308
|
-
# publish timestamp.
|
|
305
|
+
# to a Bigtable row as follows: - row key: subscription name, message ID hash,
|
|
306
|
+
# and message ID delimited by `#`. - columns: message bytes written to a single
|
|
307
|
+
# column family `data` with an empty-string column qualifier. - cell timestamp:
|
|
308
|
+
# the message publish timestamp.
|
|
309
309
|
class BigtableConfig
|
|
310
310
|
include Google::Apis::Core::Hashable
|
|
311
311
|
|
|
@@ -552,6 +552,32 @@ module Google
|
|
|
552
552
|
end
|
|
553
553
|
end
|
|
554
554
|
|
|
555
|
+
# Configuration for compressing/decompressing message data using a user-
|
|
556
|
+
# specified compression algorithm.
|
|
557
|
+
class Compression
|
|
558
|
+
include Google::Apis::Core::Hashable
|
|
559
|
+
|
|
560
|
+
# Required. Specifies the compression algorithm to use.
|
|
561
|
+
# Corresponds to the JSON property `compressionAlgorithm`
|
|
562
|
+
# @return [String]
|
|
563
|
+
attr_accessor :compression_algorithm
|
|
564
|
+
|
|
565
|
+
# Required. Specifies whether to compress or decompress the message.
|
|
566
|
+
# Corresponds to the JSON property `compressionMode`
|
|
567
|
+
# @return [String]
|
|
568
|
+
attr_accessor :compression_mode
|
|
569
|
+
|
|
570
|
+
def initialize(**args)
|
|
571
|
+
update!(**args)
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
# Update properties of this object
|
|
575
|
+
def update!(**args)
|
|
576
|
+
@compression_algorithm = args[:compression_algorithm] if args.key?(:compression_algorithm)
|
|
577
|
+
@compression_mode = args[:compression_mode] if args.key?(:compression_mode)
|
|
578
|
+
end
|
|
579
|
+
end
|
|
580
|
+
|
|
555
581
|
# A data exchange is a container that lets you share data. Along with the
|
|
556
582
|
# descriptive information about the data exchange, it contains listings that
|
|
557
583
|
# reference shared datasets.
|
|
@@ -1124,10 +1150,10 @@ module Google
|
|
|
1124
1150
|
attr_accessor :bigquery_config
|
|
1125
1151
|
|
|
1126
1152
|
# Configuration for a Bigtable subscription. The Pub/Sub message will be written
|
|
1127
|
-
# to a Bigtable row as follows: - row key: subscription name
|
|
1128
|
-
# delimited by
|
|
1129
|
-
# data
|
|
1130
|
-
# publish timestamp.
|
|
1153
|
+
# to a Bigtable row as follows: - row key: subscription name, message ID hash,
|
|
1154
|
+
# and message ID delimited by `#`. - columns: message bytes written to a single
|
|
1155
|
+
# column family `data` with an empty-string column qualifier. - cell timestamp:
|
|
1156
|
+
# the message publish timestamp.
|
|
1131
1157
|
# Corresponds to the JSON property `bigtableConfig`
|
|
1132
1158
|
# @return [Google::Apis::AnalyticshubV1::BigtableConfig]
|
|
1133
1159
|
attr_accessor :bigtable_config
|
|
@@ -1670,6 +1696,12 @@ module Google
|
|
|
1670
1696
|
# @return [Google::Apis::AnalyticshubV1::AiInference]
|
|
1671
1697
|
attr_accessor :ai_inference
|
|
1672
1698
|
|
|
1699
|
+
# Configuration for compressing/decompressing message data using a user-
|
|
1700
|
+
# specified compression algorithm.
|
|
1701
|
+
# Corresponds to the JSON property `compression`
|
|
1702
|
+
# @return [Google::Apis::AnalyticshubV1::Compression]
|
|
1703
|
+
attr_accessor :compression
|
|
1704
|
+
|
|
1673
1705
|
# Optional. If true, the transform is disabled and will not be applied to
|
|
1674
1706
|
# messages. Defaults to `false`.
|
|
1675
1707
|
# Corresponds to the JSON property `disabled`
|
|
@@ -1697,6 +1729,7 @@ module Google
|
|
|
1697
1729
|
# Update properties of this object
|
|
1698
1730
|
def update!(**args)
|
|
1699
1731
|
@ai_inference = args[:ai_inference] if args.key?(:ai_inference)
|
|
1732
|
+
@compression = args[:compression] if args.key?(:compression)
|
|
1700
1733
|
@disabled = args[:disabled] if args.key?(:disabled)
|
|
1701
1734
|
@enabled = args[:enabled] if args.key?(:enabled)
|
|
1702
1735
|
@javascript_udf = args[:javascript_udf] if args.key?(:javascript_udf)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AnalyticshubV1
|
|
18
18
|
# Version of the google-apis-analyticshub_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.45.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260607"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -82,6 +82,12 @@ module Google
|
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
+
class Compression
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
85
91
|
class DataExchange
|
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
93
|
|
|
@@ -559,6 +565,14 @@ module Google
|
|
|
559
565
|
end
|
|
560
566
|
end
|
|
561
567
|
|
|
568
|
+
class Compression
|
|
569
|
+
# @private
|
|
570
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
571
|
+
property :compression_algorithm, as: 'compressionAlgorithm'
|
|
572
|
+
property :compression_mode, as: 'compressionMode'
|
|
573
|
+
end
|
|
574
|
+
end
|
|
575
|
+
|
|
562
576
|
class DataExchange
|
|
563
577
|
# @private
|
|
564
578
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -845,6 +859,8 @@ module Google
|
|
|
845
859
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
846
860
|
property :ai_inference, as: 'aiInference', class: Google::Apis::AnalyticshubV1::AiInference, decorator: Google::Apis::AnalyticshubV1::AiInference::Representation
|
|
847
861
|
|
|
862
|
+
property :compression, as: 'compression', class: Google::Apis::AnalyticshubV1::Compression, decorator: Google::Apis::AnalyticshubV1::Compression::Representation
|
|
863
|
+
|
|
848
864
|
property :disabled, as: 'disabled'
|
|
849
865
|
property :enabled, as: 'enabled'
|
|
850
866
|
property :javascript_udf, as: 'javascriptUdf', class: Google::Apis::AnalyticshubV1::JavaScriptUdf, decorator: Google::Apis::AnalyticshubV1::JavaScriptUdf::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-analyticshub_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.45.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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-analyticshub_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.45.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1
|
|
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.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|