google-apis-datastream_v1 0.58.0 → 0.60.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: e919f1014a52b5089c5f2ed9d76dc08d4d6f9afd5f61d80673614bc3a06923bc
|
|
4
|
+
data.tar.gz: 9f161bf802c9742df6ea34de62f88778e02e730eb90594a23bbfba5976914379
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ec08356cab17911002fdd3e3ea8f3b737220ceeba2a9b93a54449025d019a9dc9a126719bb18fe64a9ee72f4564a80c2994afb3c3cdd44faa432dcfaec77455
|
|
7
|
+
data.tar.gz: 39344aadb7efc10fb94386bdcf566cfed2d8259c7e4e9789c42a5fd5001d1cce899962161e6caee78f216acb9b25f0df16725521b6110be6e8a673d1d3efbb22
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
|
2
2
|
|
|
3
|
+
### v0.60.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251201
|
|
6
|
+
|
|
7
|
+
### v0.59.0 (2025-12-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251112
|
|
10
|
+
|
|
3
11
|
### v0.58.0 (2025-11-09)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251029
|
|
@@ -170,6 +170,25 @@ module Google
|
|
|
170
170
|
end
|
|
171
171
|
end
|
|
172
172
|
|
|
173
|
+
# BigQuery clustering configuration.
|
|
174
|
+
class BigQueryClustering
|
|
175
|
+
include Google::Apis::Core::Hashable
|
|
176
|
+
|
|
177
|
+
# Required. Column names to set as clustering columns.
|
|
178
|
+
# Corresponds to the JSON property `columns`
|
|
179
|
+
# @return [Array<String>]
|
|
180
|
+
attr_accessor :columns
|
|
181
|
+
|
|
182
|
+
def initialize(**args)
|
|
183
|
+
update!(**args)
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
# Update properties of this object
|
|
187
|
+
def update!(**args)
|
|
188
|
+
@columns = args[:columns] if args.key?(:columns)
|
|
189
|
+
end
|
|
190
|
+
end
|
|
191
|
+
|
|
173
192
|
# BigQuery destination configuration
|
|
174
193
|
class BigQueryDestinationConfig
|
|
175
194
|
include Google::Apis::Core::Hashable
|
|
@@ -225,6 +244,47 @@ module Google
|
|
|
225
244
|
end
|
|
226
245
|
end
|
|
227
246
|
|
|
247
|
+
# BigQuery partitioning configuration.
|
|
248
|
+
class BigQueryPartitioning
|
|
249
|
+
include Google::Apis::Core::Hashable
|
|
250
|
+
|
|
251
|
+
# Ingestion time partitioning. see https://cloud.google.com/bigquery/docs/
|
|
252
|
+
# partitioned-tables#ingestion_time
|
|
253
|
+
# Corresponds to the JSON property `ingestionTimePartition`
|
|
254
|
+
# @return [Google::Apis::DatastreamV1::IngestionTimePartition]
|
|
255
|
+
attr_accessor :ingestion_time_partition
|
|
256
|
+
|
|
257
|
+
# Integer range partitioning. see https://cloud.google.com/bigquery/docs/
|
|
258
|
+
# partitioned-tables#integer_range
|
|
259
|
+
# Corresponds to the JSON property `integerRangePartition`
|
|
260
|
+
# @return [Google::Apis::DatastreamV1::IntegerRangePartition]
|
|
261
|
+
attr_accessor :integer_range_partition
|
|
262
|
+
|
|
263
|
+
# Optional. If true, queries over the table require a partition filter.
|
|
264
|
+
# Corresponds to the JSON property `requirePartitionFilter`
|
|
265
|
+
# @return [Boolean]
|
|
266
|
+
attr_accessor :require_partition_filter
|
|
267
|
+
alias_method :require_partition_filter?, :require_partition_filter
|
|
268
|
+
|
|
269
|
+
# Time unit column partitioning. see https://cloud.google.com/bigquery/docs/
|
|
270
|
+
# partitioned-tables#date_timestamp_partitioned_tables
|
|
271
|
+
# Corresponds to the JSON property `timeUnitPartition`
|
|
272
|
+
# @return [Google::Apis::DatastreamV1::TimeUnitPartition]
|
|
273
|
+
attr_accessor :time_unit_partition
|
|
274
|
+
|
|
275
|
+
def initialize(**args)
|
|
276
|
+
update!(**args)
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
# Update properties of this object
|
|
280
|
+
def update!(**args)
|
|
281
|
+
@ingestion_time_partition = args[:ingestion_time_partition] if args.key?(:ingestion_time_partition)
|
|
282
|
+
@integer_range_partition = args[:integer_range_partition] if args.key?(:integer_range_partition)
|
|
283
|
+
@require_partition_filter = args[:require_partition_filter] if args.key?(:require_partition_filter)
|
|
284
|
+
@time_unit_partition = args[:time_unit_partition] if args.key?(:time_unit_partition)
|
|
285
|
+
end
|
|
286
|
+
end
|
|
287
|
+
|
|
228
288
|
# BigQuery warehouse profile.
|
|
229
289
|
class BigQueryProfile
|
|
230
290
|
include Google::Apis::Core::Hashable
|
|
@@ -490,6 +550,31 @@ module Google
|
|
|
490
550
|
end
|
|
491
551
|
end
|
|
492
552
|
|
|
553
|
+
# A customization rule to apply to a set of objects.
|
|
554
|
+
class CustomizationRule
|
|
555
|
+
include Google::Apis::Core::Hashable
|
|
556
|
+
|
|
557
|
+
# BigQuery clustering configuration.
|
|
558
|
+
# Corresponds to the JSON property `bigqueryClustering`
|
|
559
|
+
# @return [Google::Apis::DatastreamV1::BigQueryClustering]
|
|
560
|
+
attr_accessor :bigquery_clustering
|
|
561
|
+
|
|
562
|
+
# BigQuery partitioning configuration.
|
|
563
|
+
# Corresponds to the JSON property `bigqueryPartitioning`
|
|
564
|
+
# @return [Google::Apis::DatastreamV1::BigQueryPartitioning]
|
|
565
|
+
attr_accessor :bigquery_partitioning
|
|
566
|
+
|
|
567
|
+
def initialize(**args)
|
|
568
|
+
update!(**args)
|
|
569
|
+
end
|
|
570
|
+
|
|
571
|
+
# Update properties of this object
|
|
572
|
+
def update!(**args)
|
|
573
|
+
@bigquery_clustering = args[:bigquery_clustering] if args.key?(:bigquery_clustering)
|
|
574
|
+
@bigquery_partitioning = args[:bigquery_partitioning] if args.key?(:bigquery_partitioning)
|
|
575
|
+
end
|
|
576
|
+
end
|
|
577
|
+
|
|
493
578
|
# Dataset template used for dynamic dataset creation.
|
|
494
579
|
class DatasetTemplate
|
|
495
580
|
include Google::Apis::Core::Hashable
|
|
@@ -1004,6 +1089,64 @@ module Google
|
|
|
1004
1089
|
end
|
|
1005
1090
|
end
|
|
1006
1091
|
|
|
1092
|
+
# Ingestion time partitioning. see https://cloud.google.com/bigquery/docs/
|
|
1093
|
+
# partitioned-tables#ingestion_time
|
|
1094
|
+
class IngestionTimePartition
|
|
1095
|
+
include Google::Apis::Core::Hashable
|
|
1096
|
+
|
|
1097
|
+
# Optional. Partition granularity
|
|
1098
|
+
# Corresponds to the JSON property `partitioningTimeGranularity`
|
|
1099
|
+
# @return [String]
|
|
1100
|
+
attr_accessor :partitioning_time_granularity
|
|
1101
|
+
|
|
1102
|
+
def initialize(**args)
|
|
1103
|
+
update!(**args)
|
|
1104
|
+
end
|
|
1105
|
+
|
|
1106
|
+
# Update properties of this object
|
|
1107
|
+
def update!(**args)
|
|
1108
|
+
@partitioning_time_granularity = args[:partitioning_time_granularity] if args.key?(:partitioning_time_granularity)
|
|
1109
|
+
end
|
|
1110
|
+
end
|
|
1111
|
+
|
|
1112
|
+
# Integer range partitioning. see https://cloud.google.com/bigquery/docs/
|
|
1113
|
+
# partitioned-tables#integer_range
|
|
1114
|
+
class IntegerRangePartition
|
|
1115
|
+
include Google::Apis::Core::Hashable
|
|
1116
|
+
|
|
1117
|
+
# Required. The partitioning column.
|
|
1118
|
+
# Corresponds to the JSON property `column`
|
|
1119
|
+
# @return [String]
|
|
1120
|
+
attr_accessor :column
|
|
1121
|
+
|
|
1122
|
+
# Required. The ending value for range partitioning (exclusive).
|
|
1123
|
+
# Corresponds to the JSON property `end`
|
|
1124
|
+
# @return [Fixnum]
|
|
1125
|
+
attr_accessor :end
|
|
1126
|
+
|
|
1127
|
+
# Required. The interval of each range within the partition.
|
|
1128
|
+
# Corresponds to the JSON property `interval`
|
|
1129
|
+
# @return [Fixnum]
|
|
1130
|
+
attr_accessor :interval
|
|
1131
|
+
|
|
1132
|
+
# Required. The starting value for range partitioning (inclusive).
|
|
1133
|
+
# Corresponds to the JSON property `start`
|
|
1134
|
+
# @return [Fixnum]
|
|
1135
|
+
attr_accessor :start
|
|
1136
|
+
|
|
1137
|
+
def initialize(**args)
|
|
1138
|
+
update!(**args)
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1141
|
+
# Update properties of this object
|
|
1142
|
+
def update!(**args)
|
|
1143
|
+
@column = args[:column] if args.key?(:column)
|
|
1144
|
+
@end = args[:end] if args.key?(:end)
|
|
1145
|
+
@interval = args[:interval] if args.key?(:interval)
|
|
1146
|
+
@start = args[:start] if args.key?(:start)
|
|
1147
|
+
end
|
|
1148
|
+
end
|
|
1149
|
+
|
|
1007
1150
|
# JSON file format configuration.
|
|
1008
1151
|
class JsonFileFormat
|
|
1009
1152
|
include Google::Apis::Core::Hashable
|
|
@@ -1101,8 +1244,9 @@ module Google
|
|
|
1101
1244
|
attr_accessor :operations
|
|
1102
1245
|
|
|
1103
1246
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1104
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1105
|
-
# when attempting to list all resources across all supported
|
|
1247
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1248
|
+
# For example, when attempting to list all resources across all supported
|
|
1249
|
+
# locations.
|
|
1106
1250
|
# Corresponds to the JSON property `unreachable`
|
|
1107
1251
|
# @return [Array<String>]
|
|
1108
1252
|
attr_accessor :unreachable
|
|
@@ -1495,6 +1639,16 @@ module Google
|
|
|
1495
1639
|
class MongodbProfile
|
|
1496
1640
|
include Google::Apis::Core::Hashable
|
|
1497
1641
|
|
|
1642
|
+
# Optional. Specifies additional options for the MongoDB connection. The options
|
|
1643
|
+
# should be sent as key-value pairs, for example: `additional_options = `"
|
|
1644
|
+
# serverSelectionTimeoutMS": "10000", "directConnection": "true"``. Keys are
|
|
1645
|
+
# case-sensitive and should match the official MongoDB connection string options:
|
|
1646
|
+
# https://www.mongodb.com/docs/manual/reference/connection-string-options/ The
|
|
1647
|
+
# server will not modify the values provided by the user.
|
|
1648
|
+
# Corresponds to the JSON property `additionalOptions`
|
|
1649
|
+
# @return [Hash<String,String>]
|
|
1650
|
+
attr_accessor :additional_options
|
|
1651
|
+
|
|
1498
1652
|
# Required. List of host addresses for a MongoDB cluster. For SRV connection
|
|
1499
1653
|
# format, this list must contain exactly one DNS host without a port. For
|
|
1500
1654
|
# Standard connection format, this list must contain all the required hosts in
|
|
@@ -1548,6 +1702,7 @@ module Google
|
|
|
1548
1702
|
|
|
1549
1703
|
# Update properties of this object
|
|
1550
1704
|
def update!(**args)
|
|
1705
|
+
@additional_options = args[:additional_options] if args.key?(:additional_options)
|
|
1551
1706
|
@host_addresses = args[:host_addresses] if args.key?(:host_addresses)
|
|
1552
1707
|
@password = args[:password] if args.key?(:password)
|
|
1553
1708
|
@replica_set = args[:replica_set] if args.key?(:replica_set)
|
|
@@ -2092,6 +2247,25 @@ module Google
|
|
|
2092
2247
|
end
|
|
2093
2248
|
end
|
|
2094
2249
|
|
|
2250
|
+
# Object filter to apply the rules to.
|
|
2251
|
+
class ObjectFilter
|
|
2252
|
+
include Google::Apis::Core::Hashable
|
|
2253
|
+
|
|
2254
|
+
# Represents an identifier of an object in the data source.
|
|
2255
|
+
# Corresponds to the JSON property `sourceObjectIdentifier`
|
|
2256
|
+
# @return [Google::Apis::DatastreamV1::SourceObjectIdentifier]
|
|
2257
|
+
attr_accessor :source_object_identifier
|
|
2258
|
+
|
|
2259
|
+
def initialize(**args)
|
|
2260
|
+
update!(**args)
|
|
2261
|
+
end
|
|
2262
|
+
|
|
2263
|
+
# Update properties of this object
|
|
2264
|
+
def update!(**args)
|
|
2265
|
+
@source_object_identifier = args[:source_object_identifier] if args.key?(:source_object_identifier)
|
|
2266
|
+
end
|
|
2267
|
+
end
|
|
2268
|
+
|
|
2095
2269
|
# This resource represents a long-running operation that is the result of a
|
|
2096
2270
|
# network API call.
|
|
2097
2271
|
class Operation
|
|
@@ -3121,6 +3295,31 @@ module Google
|
|
|
3121
3295
|
end
|
|
3122
3296
|
end
|
|
3123
3297
|
|
|
3298
|
+
# A set of rules to apply to a set of objects.
|
|
3299
|
+
class RuleSet
|
|
3300
|
+
include Google::Apis::Core::Hashable
|
|
3301
|
+
|
|
3302
|
+
# Required. List of customization rules to apply.
|
|
3303
|
+
# Corresponds to the JSON property `customizationRules`
|
|
3304
|
+
# @return [Array<Google::Apis::DatastreamV1::CustomizationRule>]
|
|
3305
|
+
attr_accessor :customization_rules
|
|
3306
|
+
|
|
3307
|
+
# Object filter to apply the rules to.
|
|
3308
|
+
# Corresponds to the JSON property `objectFilter`
|
|
3309
|
+
# @return [Google::Apis::DatastreamV1::ObjectFilter]
|
|
3310
|
+
attr_accessor :object_filter
|
|
3311
|
+
|
|
3312
|
+
def initialize(**args)
|
|
3313
|
+
update!(**args)
|
|
3314
|
+
end
|
|
3315
|
+
|
|
3316
|
+
# Update properties of this object
|
|
3317
|
+
def update!(**args)
|
|
3318
|
+
@customization_rules = args[:customization_rules] if args.key?(:customization_rules)
|
|
3319
|
+
@object_filter = args[:object_filter] if args.key?(:object_filter)
|
|
3320
|
+
end
|
|
3321
|
+
end
|
|
3322
|
+
|
|
3124
3323
|
# Request message for running a stream.
|
|
3125
3324
|
class RunStreamRequest
|
|
3126
3325
|
include Google::Apis::Core::Hashable
|
|
@@ -3942,8 +4141,10 @@ module Google
|
|
|
3942
4141
|
class StandardConnectionFormat
|
|
3943
4142
|
include Google::Apis::Core::Hashable
|
|
3944
4143
|
|
|
3945
|
-
# Optional.
|
|
3946
|
-
#
|
|
4144
|
+
# Optional. Deprecated: Use the `additional_options` map to specify the `
|
|
4145
|
+
# directConnection` parameter instead. For example: `additional_options = `"
|
|
4146
|
+
# directConnection": "true"``. Specifies whether the client connects directly to
|
|
4147
|
+
# the host[:port] in the connection URI.
|
|
3947
4148
|
# Corresponds to the JSON property `directConnection`
|
|
3948
4149
|
# @return [Boolean]
|
|
3949
4150
|
attr_accessor :direct_connection
|
|
@@ -4142,6 +4343,11 @@ module Google
|
|
|
4142
4343
|
# @return [String]
|
|
4143
4344
|
attr_accessor :name
|
|
4144
4345
|
|
|
4346
|
+
# Optional. Rule sets to apply to the stream.
|
|
4347
|
+
# Corresponds to the JSON property `ruleSets`
|
|
4348
|
+
# @return [Array<Google::Apis::DatastreamV1::RuleSet>]
|
|
4349
|
+
attr_accessor :rule_sets
|
|
4350
|
+
|
|
4145
4351
|
# Output only. Reserved for future use.
|
|
4146
4352
|
# Corresponds to the JSON property `satisfiesPzi`
|
|
4147
4353
|
# @return [Boolean]
|
|
@@ -4185,6 +4391,7 @@ module Google
|
|
|
4185
4391
|
@labels = args[:labels] if args.key?(:labels)
|
|
4186
4392
|
@last_recovery_time = args[:last_recovery_time] if args.key?(:last_recovery_time)
|
|
4187
4393
|
@name = args[:name] if args.key?(:name)
|
|
4394
|
+
@rule_sets = args[:rule_sets] if args.key?(:rule_sets)
|
|
4188
4395
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
4189
4396
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
4190
4397
|
@source_config = args[:source_config] if args.key?(:source_config)
|
|
@@ -4220,6 +4427,13 @@ module Google
|
|
|
4220
4427
|
# @return [String]
|
|
4221
4428
|
attr_accessor :create_time
|
|
4222
4429
|
|
|
4430
|
+
# Output only. The customization rules for the object. These rules are derived
|
|
4431
|
+
# from the parent Stream's `rule_sets` and represent the intended configuration
|
|
4432
|
+
# for the object.
|
|
4433
|
+
# Corresponds to the JSON property `customizationRules`
|
|
4434
|
+
# @return [Array<Google::Apis::DatastreamV1::CustomizationRule>]
|
|
4435
|
+
attr_accessor :customization_rules
|
|
4436
|
+
|
|
4223
4437
|
# Required. Display name.
|
|
4224
4438
|
# Corresponds to the JSON property `displayName`
|
|
4225
4439
|
# @return [String]
|
|
@@ -4253,6 +4467,7 @@ module Google
|
|
|
4253
4467
|
def update!(**args)
|
|
4254
4468
|
@backfill_job = args[:backfill_job] if args.key?(:backfill_job)
|
|
4255
4469
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
4470
|
+
@customization_rules = args[:customization_rules] if args.key?(:customization_rules)
|
|
4256
4471
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
4257
4472
|
@errors = args[:errors] if args.key?(:errors)
|
|
4258
4473
|
@name = args[:name] if args.key?(:name)
|
|
@@ -4261,6 +4476,32 @@ module Google
|
|
|
4261
4476
|
end
|
|
4262
4477
|
end
|
|
4263
4478
|
|
|
4479
|
+
# Time unit column partitioning. see https://cloud.google.com/bigquery/docs/
|
|
4480
|
+
# partitioned-tables#date_timestamp_partitioned_tables
|
|
4481
|
+
class TimeUnitPartition
|
|
4482
|
+
include Google::Apis::Core::Hashable
|
|
4483
|
+
|
|
4484
|
+
# Required. The partitioning column.
|
|
4485
|
+
# Corresponds to the JSON property `column`
|
|
4486
|
+
# @return [String]
|
|
4487
|
+
attr_accessor :column
|
|
4488
|
+
|
|
4489
|
+
# Optional. Partition granularity.
|
|
4490
|
+
# Corresponds to the JSON property `partitioningTimeGranularity`
|
|
4491
|
+
# @return [String]
|
|
4492
|
+
attr_accessor :partitioning_time_granularity
|
|
4493
|
+
|
|
4494
|
+
def initialize(**args)
|
|
4495
|
+
update!(**args)
|
|
4496
|
+
end
|
|
4497
|
+
|
|
4498
|
+
# Update properties of this object
|
|
4499
|
+
def update!(**args)
|
|
4500
|
+
@column = args[:column] if args.key?(:column)
|
|
4501
|
+
@partitioning_time_granularity = args[:partitioning_time_granularity] if args.key?(:partitioning_time_granularity)
|
|
4502
|
+
end
|
|
4503
|
+
end
|
|
4504
|
+
|
|
4264
4505
|
# Username-password credentials.
|
|
4265
4506
|
class UserCredentials
|
|
4266
4507
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DatastreamV1
|
|
18
18
|
# Version of the google-apis-datastream_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.60.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 = "20251201"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -58,12 +58,24 @@ module Google
|
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
class BigQueryClustering
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
61
67
|
class BigQueryDestinationConfig
|
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
69
|
|
|
64
70
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
71
|
end
|
|
66
72
|
|
|
73
|
+
class BigQueryPartitioning
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
67
79
|
class BigQueryProfile
|
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
81
|
|
|
@@ -106,6 +118,12 @@ module Google
|
|
|
106
118
|
include Google::Apis::Core::JsonObjectSupport
|
|
107
119
|
end
|
|
108
120
|
|
|
121
|
+
class CustomizationRule
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
109
127
|
class DatasetTemplate
|
|
110
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
111
129
|
|
|
@@ -202,6 +220,18 @@ module Google
|
|
|
202
220
|
include Google::Apis::Core::JsonObjectSupport
|
|
203
221
|
end
|
|
204
222
|
|
|
223
|
+
class IngestionTimePartition
|
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
|
+
|
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
class IntegerRangePartition
|
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
|
+
|
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
233
|
+
end
|
|
234
|
+
|
|
205
235
|
class JsonFileFormat
|
|
206
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
237
|
|
|
@@ -412,6 +442,12 @@ module Google
|
|
|
412
442
|
include Google::Apis::Core::JsonObjectSupport
|
|
413
443
|
end
|
|
414
444
|
|
|
445
|
+
class ObjectFilter
|
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
|
+
|
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
449
|
+
end
|
|
450
|
+
|
|
415
451
|
class Operation
|
|
416
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
453
|
|
|
@@ -562,6 +598,12 @@ module Google
|
|
|
562
598
|
include Google::Apis::Core::JsonObjectSupport
|
|
563
599
|
end
|
|
564
600
|
|
|
601
|
+
class RuleSet
|
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
603
|
+
|
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
605
|
+
end
|
|
606
|
+
|
|
565
607
|
class RunStreamRequest
|
|
566
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
567
609
|
|
|
@@ -778,6 +820,12 @@ module Google
|
|
|
778
820
|
include Google::Apis::Core::JsonObjectSupport
|
|
779
821
|
end
|
|
780
822
|
|
|
823
|
+
class TimeUnitPartition
|
|
824
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
825
|
+
|
|
826
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
827
|
+
end
|
|
828
|
+
|
|
781
829
|
class UserCredentials
|
|
782
830
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
783
831
|
|
|
@@ -862,6 +910,13 @@ module Google
|
|
|
862
910
|
end
|
|
863
911
|
end
|
|
864
912
|
|
|
913
|
+
class BigQueryClustering
|
|
914
|
+
# @private
|
|
915
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
916
|
+
collection :columns, as: 'columns'
|
|
917
|
+
end
|
|
918
|
+
end
|
|
919
|
+
|
|
865
920
|
class BigQueryDestinationConfig
|
|
866
921
|
# @private
|
|
867
922
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -879,6 +934,19 @@ module Google
|
|
|
879
934
|
end
|
|
880
935
|
end
|
|
881
936
|
|
|
937
|
+
class BigQueryPartitioning
|
|
938
|
+
# @private
|
|
939
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
940
|
+
property :ingestion_time_partition, as: 'ingestionTimePartition', class: Google::Apis::DatastreamV1::IngestionTimePartition, decorator: Google::Apis::DatastreamV1::IngestionTimePartition::Representation
|
|
941
|
+
|
|
942
|
+
property :integer_range_partition, as: 'integerRangePartition', class: Google::Apis::DatastreamV1::IntegerRangePartition, decorator: Google::Apis::DatastreamV1::IntegerRangePartition::Representation
|
|
943
|
+
|
|
944
|
+
property :require_partition_filter, as: 'requirePartitionFilter'
|
|
945
|
+
property :time_unit_partition, as: 'timeUnitPartition', class: Google::Apis::DatastreamV1::TimeUnitPartition, decorator: Google::Apis::DatastreamV1::TimeUnitPartition::Representation
|
|
946
|
+
|
|
947
|
+
end
|
|
948
|
+
end
|
|
949
|
+
|
|
882
950
|
class BigQueryProfile
|
|
883
951
|
# @private
|
|
884
952
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -965,6 +1033,16 @@ module Google
|
|
|
965
1033
|
end
|
|
966
1034
|
end
|
|
967
1035
|
|
|
1036
|
+
class CustomizationRule
|
|
1037
|
+
# @private
|
|
1038
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1039
|
+
property :bigquery_clustering, as: 'bigqueryClustering', class: Google::Apis::DatastreamV1::BigQueryClustering, decorator: Google::Apis::DatastreamV1::BigQueryClustering::Representation
|
|
1040
|
+
|
|
1041
|
+
property :bigquery_partitioning, as: 'bigqueryPartitioning', class: Google::Apis::DatastreamV1::BigQueryPartitioning, decorator: Google::Apis::DatastreamV1::BigQueryPartitioning::Representation
|
|
1042
|
+
|
|
1043
|
+
end
|
|
1044
|
+
end
|
|
1045
|
+
|
|
968
1046
|
class DatasetTemplate
|
|
969
1047
|
# @private
|
|
970
1048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1124,6 +1202,23 @@ module Google
|
|
|
1124
1202
|
end
|
|
1125
1203
|
end
|
|
1126
1204
|
|
|
1205
|
+
class IngestionTimePartition
|
|
1206
|
+
# @private
|
|
1207
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1208
|
+
property :partitioning_time_granularity, as: 'partitioningTimeGranularity'
|
|
1209
|
+
end
|
|
1210
|
+
end
|
|
1211
|
+
|
|
1212
|
+
class IntegerRangePartition
|
|
1213
|
+
# @private
|
|
1214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1215
|
+
property :column, as: 'column'
|
|
1216
|
+
property :end, :numeric_string => true, as: 'end'
|
|
1217
|
+
property :interval, :numeric_string => true, as: 'interval'
|
|
1218
|
+
property :start, :numeric_string => true, as: 'start'
|
|
1219
|
+
end
|
|
1220
|
+
end
|
|
1221
|
+
|
|
1127
1222
|
class JsonFileFormat
|
|
1128
1223
|
# @private
|
|
1129
1224
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1290,6 +1385,7 @@ module Google
|
|
|
1290
1385
|
class MongodbProfile
|
|
1291
1386
|
# @private
|
|
1292
1387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1388
|
+
hash :additional_options, as: 'additionalOptions'
|
|
1293
1389
|
collection :host_addresses, as: 'hostAddresses', class: Google::Apis::DatastreamV1::HostAddress, decorator: Google::Apis::DatastreamV1::HostAddress::Representation
|
|
1294
1390
|
|
|
1295
1391
|
property :password, as: 'password'
|
|
@@ -1456,6 +1552,14 @@ module Google
|
|
|
1456
1552
|
end
|
|
1457
1553
|
end
|
|
1458
1554
|
|
|
1555
|
+
class ObjectFilter
|
|
1556
|
+
# @private
|
|
1557
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1558
|
+
property :source_object_identifier, as: 'sourceObjectIdentifier', class: Google::Apis::DatastreamV1::SourceObjectIdentifier, decorator: Google::Apis::DatastreamV1::SourceObjectIdentifier::Representation
|
|
1559
|
+
|
|
1560
|
+
end
|
|
1561
|
+
end
|
|
1562
|
+
|
|
1459
1563
|
class Operation
|
|
1460
1564
|
# @private
|
|
1461
1565
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1738,6 +1842,16 @@ module Google
|
|
|
1738
1842
|
end
|
|
1739
1843
|
end
|
|
1740
1844
|
|
|
1845
|
+
class RuleSet
|
|
1846
|
+
# @private
|
|
1847
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1848
|
+
collection :customization_rules, as: 'customizationRules', class: Google::Apis::DatastreamV1::CustomizationRule, decorator: Google::Apis::DatastreamV1::CustomizationRule::Representation
|
|
1849
|
+
|
|
1850
|
+
property :object_filter, as: 'objectFilter', class: Google::Apis::DatastreamV1::ObjectFilter, decorator: Google::Apis::DatastreamV1::ObjectFilter::Representation
|
|
1851
|
+
|
|
1852
|
+
end
|
|
1853
|
+
end
|
|
1854
|
+
|
|
1741
1855
|
class RunStreamRequest
|
|
1742
1856
|
# @private
|
|
1743
1857
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2073,6 +2187,8 @@ module Google
|
|
|
2073
2187
|
hash :labels, as: 'labels'
|
|
2074
2188
|
property :last_recovery_time, as: 'lastRecoveryTime'
|
|
2075
2189
|
property :name, as: 'name'
|
|
2190
|
+
collection :rule_sets, as: 'ruleSets', class: Google::Apis::DatastreamV1::RuleSet, decorator: Google::Apis::DatastreamV1::RuleSet::Representation
|
|
2191
|
+
|
|
2076
2192
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
2077
2193
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
2078
2194
|
property :source_config, as: 'sourceConfig', class: Google::Apis::DatastreamV1::SourceConfig, decorator: Google::Apis::DatastreamV1::SourceConfig::Representation
|
|
@@ -2094,6 +2210,8 @@ module Google
|
|
|
2094
2210
|
property :backfill_job, as: 'backfillJob', class: Google::Apis::DatastreamV1::BackfillJob, decorator: Google::Apis::DatastreamV1::BackfillJob::Representation
|
|
2095
2211
|
|
|
2096
2212
|
property :create_time, as: 'createTime'
|
|
2213
|
+
collection :customization_rules, as: 'customizationRules', class: Google::Apis::DatastreamV1::CustomizationRule, decorator: Google::Apis::DatastreamV1::CustomizationRule::Representation
|
|
2214
|
+
|
|
2097
2215
|
property :display_name, as: 'displayName'
|
|
2098
2216
|
collection :errors, as: 'errors', class: Google::Apis::DatastreamV1::Error, decorator: Google::Apis::DatastreamV1::Error::Representation
|
|
2099
2217
|
|
|
@@ -2104,6 +2222,14 @@ module Google
|
|
|
2104
2222
|
end
|
|
2105
2223
|
end
|
|
2106
2224
|
|
|
2225
|
+
class TimeUnitPartition
|
|
2226
|
+
# @private
|
|
2227
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2228
|
+
property :column, as: 'column'
|
|
2229
|
+
property :partitioning_time_granularity, as: 'partitioningTimeGranularity'
|
|
2230
|
+
end
|
|
2231
|
+
end
|
|
2232
|
+
|
|
2107
2233
|
class UserCredentials
|
|
2108
2234
|
# @private
|
|
2109
2235
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -552,11 +552,12 @@ module Google
|
|
|
552
552
|
# The standard list page token.
|
|
553
553
|
# @param [Boolean] return_partial_success
|
|
554
554
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
555
|
-
# those that are unreachable are returned in the
|
|
556
|
-
# unreachable
|
|
557
|
-
#
|
|
558
|
-
# by default
|
|
559
|
-
# explicitly documented otherwise in service or product specific
|
|
555
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
556
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
557
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
558
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
559
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
560
|
+
# documentation.
|
|
560
561
|
# @param [String] fields
|
|
561
562
|
# Selector specifying which fields to include in a partial response.
|
|
562
563
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-datastream_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.60.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-datastream_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.60.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|