google-apis-analyticshub_v1 0.40.0 → 0.41.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: b0a8a311a5966beacf0f1c2e17f8243128afb3824199eb0df9d9720aae58da5c
|
|
4
|
+
data.tar.gz: dfa87e1e136488c5ca33b6147cc07697015e30625b4eb36fb5836bc4b6597966
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee749fce7b3f18f4fc6d004097f02e6a4ff35b03d973bea54d720097f034693900e4d9d82d0622b20b65dd264e0ee87d3f5c4a1686383ad552ddddcd1d5a4afe
|
|
7
|
+
data.tar.gz: 74c70a9f99ef5bc913310fe15c33f2c5b2a5a180245fcfdde1272465e20e80a42d7dcb0ff130241e9ad725da3afd1ae4c9a6fc0547bf860307aa7af9de2aa0fe
|
data/CHANGELOG.md
CHANGED
|
@@ -301,6 +301,61 @@ module Google
|
|
|
301
301
|
end
|
|
302
302
|
end
|
|
303
303
|
|
|
304
|
+
# Configuration for a Bigtable subscription. The Pub/Sub message will be written
|
|
305
|
+
# to a Bigtable row as follows: - row key: subscription name and message ID
|
|
306
|
+
# delimited by #. - columns: message bytes written to a single column family "
|
|
307
|
+
# data" with an empty-string column qualifier. - cell timestamp: the message
|
|
308
|
+
# publish timestamp.
|
|
309
|
+
class BigtableConfig
|
|
310
|
+
include Google::Apis::Core::Hashable
|
|
311
|
+
|
|
312
|
+
# Optional. The app profile to use for the Bigtable writes. If not specified,
|
|
313
|
+
# the "default" application profile will be used. The app profile must use
|
|
314
|
+
# single-cluster routing.
|
|
315
|
+
# Corresponds to the JSON property `appProfileId`
|
|
316
|
+
# @return [String]
|
|
317
|
+
attr_accessor :app_profile_id
|
|
318
|
+
|
|
319
|
+
# Optional. The service account to use to write to Bigtable. The subscription
|
|
320
|
+
# creator or updater that specifies this field must have `iam.serviceAccounts.
|
|
321
|
+
# actAs` permission on the service account. If not specified, the Pub/Sub [
|
|
322
|
+
# service agent](`$universe.dns_names.final_documentation_domain`/iam/docs/
|
|
323
|
+
# service-agents), service-`project_number`@gcp-sa-pubsub.iam.gserviceaccount.
|
|
324
|
+
# com, is used.
|
|
325
|
+
# Corresponds to the JSON property `serviceAccountEmail`
|
|
326
|
+
# @return [String]
|
|
327
|
+
attr_accessor :service_account_email
|
|
328
|
+
|
|
329
|
+
# Optional. The unique name of the table to write messages to. Values are of the
|
|
330
|
+
# form `projects//instances//tables/`.
|
|
331
|
+
# Corresponds to the JSON property `table`
|
|
332
|
+
# @return [String]
|
|
333
|
+
attr_accessor :table
|
|
334
|
+
|
|
335
|
+
# Optional. When true, write the subscription name, message_id, publish_time,
|
|
336
|
+
# attributes, and ordering_key to additional columns in the table under the
|
|
337
|
+
# pubsub_metadata column family. The subscription name, message_id, and
|
|
338
|
+
# publish_time fields are put in their own columns while all other message
|
|
339
|
+
# properties (other than data) are written to a JSON object in the attributes
|
|
340
|
+
# column.
|
|
341
|
+
# Corresponds to the JSON property `writeMetadata`
|
|
342
|
+
# @return [Boolean]
|
|
343
|
+
attr_accessor :write_metadata
|
|
344
|
+
alias_method :write_metadata?, :write_metadata
|
|
345
|
+
|
|
346
|
+
def initialize(**args)
|
|
347
|
+
update!(**args)
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# Update properties of this object
|
|
351
|
+
def update!(**args)
|
|
352
|
+
@app_profile_id = args[:app_profile_id] if args.key?(:app_profile_id)
|
|
353
|
+
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
|
354
|
+
@table = args[:table] if args.key?(:table)
|
|
355
|
+
@write_metadata = args[:write_metadata] if args.key?(:write_metadata)
|
|
356
|
+
end
|
|
357
|
+
end
|
|
358
|
+
|
|
304
359
|
# Associates `members`, or principals, with a `role`.
|
|
305
360
|
class Binding
|
|
306
361
|
include Google::Apis::Core::Hashable
|
|
@@ -1066,6 +1121,15 @@ module Google
|
|
|
1066
1121
|
# @return [Google::Apis::AnalyticshubV1::BigQueryConfig]
|
|
1067
1122
|
attr_accessor :bigquery_config
|
|
1068
1123
|
|
|
1124
|
+
# Configuration for a Bigtable subscription. The Pub/Sub message will be written
|
|
1125
|
+
# to a Bigtable row as follows: - row key: subscription name and message ID
|
|
1126
|
+
# delimited by #. - columns: message bytes written to a single column family "
|
|
1127
|
+
# data" with an empty-string column qualifier. - cell timestamp: the message
|
|
1128
|
+
# publish timestamp.
|
|
1129
|
+
# Corresponds to the JSON property `bigtableConfig`
|
|
1130
|
+
# @return [Google::Apis::AnalyticshubV1::BigtableConfig]
|
|
1131
|
+
attr_accessor :bigtable_config
|
|
1132
|
+
|
|
1069
1133
|
# Configuration for a Cloud Storage subscription.
|
|
1070
1134
|
# Corresponds to the JSON property `cloudStorageConfig`
|
|
1071
1135
|
# @return [Google::Apis::AnalyticshubV1::CloudStorageConfig]
|
|
@@ -1194,6 +1258,7 @@ module Google
|
|
|
1194
1258
|
def update!(**args)
|
|
1195
1259
|
@ack_deadline_seconds = args[:ack_deadline_seconds] if args.key?(:ack_deadline_seconds)
|
|
1196
1260
|
@bigquery_config = args[:bigquery_config] if args.key?(:bigquery_config)
|
|
1261
|
+
@bigtable_config = args[:bigtable_config] if args.key?(:bigtable_config)
|
|
1197
1262
|
@cloud_storage_config = args[:cloud_storage_config] if args.key?(:cloud_storage_config)
|
|
1198
1263
|
@dead_letter_policy = args[:dead_letter_policy] if args.key?(:dead_letter_policy)
|
|
1199
1264
|
@detached = args[:detached] if args.key?(:detached)
|
|
@@ -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.41.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260308"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -64,6 +64,12 @@ module Google
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
class BigtableConfig
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
67
73
|
class Binding
|
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
75
|
|
|
@@ -515,6 +521,16 @@ module Google
|
|
|
515
521
|
end
|
|
516
522
|
end
|
|
517
523
|
|
|
524
|
+
class BigtableConfig
|
|
525
|
+
# @private
|
|
526
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
527
|
+
property :app_profile_id, as: 'appProfileId'
|
|
528
|
+
property :service_account_email, as: 'serviceAccountEmail'
|
|
529
|
+
property :table, as: 'table'
|
|
530
|
+
property :write_metadata, as: 'writeMetadata'
|
|
531
|
+
end
|
|
532
|
+
end
|
|
533
|
+
|
|
518
534
|
class Binding
|
|
519
535
|
# @private
|
|
520
536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -694,6 +710,8 @@ module Google
|
|
|
694
710
|
property :ack_deadline_seconds, as: 'ackDeadlineSeconds'
|
|
695
711
|
property :bigquery_config, as: 'bigqueryConfig', class: Google::Apis::AnalyticshubV1::BigQueryConfig, decorator: Google::Apis::AnalyticshubV1::BigQueryConfig::Representation
|
|
696
712
|
|
|
713
|
+
property :bigtable_config, as: 'bigtableConfig', class: Google::Apis::AnalyticshubV1::BigtableConfig, decorator: Google::Apis::AnalyticshubV1::BigtableConfig::Representation
|
|
714
|
+
|
|
697
715
|
property :cloud_storage_config, as: 'cloudStorageConfig', class: Google::Apis::AnalyticshubV1::CloudStorageConfig, decorator: Google::Apis::AnalyticshubV1::CloudStorageConfig::Representation
|
|
698
716
|
|
|
699
717
|
property :dead_letter_policy, as: 'deadLetterPolicy', class: Google::Apis::AnalyticshubV1::DeadLetterPolicy, decorator: Google::Apis::AnalyticshubV1::DeadLetterPolicy::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.41.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.41.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:
|