google-apis-datastream_v1 0.58.0 → 0.59.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: 061e98bcb519b7c76dd05284faa2f127bb9ecaaae08e6adbe3c6415ebaae9ac9
4
- data.tar.gz: fcb6552b115ce251abdb036caa441a14d49b007b9f529ee8aea750ae1604f856
3
+ metadata.gz: e296d9fd2e51d2b9e4f3dbb3ff1c51b4d4fc78c72bc71b5e3ac3057b9c6af047
4
+ data.tar.gz: c57ad10923c799612e911c7b96a750c5dccded6d17007c2f947a8c9d1ea292a3
5
5
  SHA512:
6
- metadata.gz: 876ebbe536f3409d535d40d35dc8281d62ec963633c8dd14da28668b2d48ff7e4d624c6728fc1c70d5a73e398eb6f45baaa3960e10c039d0cb3d54049b7f4043
7
- data.tar.gz: ea7ab336078ea97bdf20057e646fd75b56e0c3036811457f37519fcc024dedb1400fe126e0e20606d8f9785de0a14fba4821277bece5ba857abe08d1875fee71
6
+ metadata.gz: d84bda04bce2cca38d540fd91415e71642531892137ca53a2657978dfe2645ae35d4dab2fead1f0d84453fcae2d7f66d12b264ad5e96068ddc268f88ae25866a
7
+ data.tar.gz: cd154e1615176e3c3904f8e28279c89bfaef4f2e9d96fe2cb36c785380acd0c218da88d3fbe59a2c25a3109dde1c8cbbf00d3e07deb49acbb0ef4b94e20012cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.59.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251112
6
+
3
7
  ### v0.58.0 (2025-11-09)
4
8
 
5
9
  * 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
@@ -2092,6 +2235,25 @@ module Google
2092
2235
  end
2093
2236
  end
2094
2237
 
2238
+ # Object filter to apply the rules to.
2239
+ class ObjectFilter
2240
+ include Google::Apis::Core::Hashable
2241
+
2242
+ # Represents an identifier of an object in the data source.
2243
+ # Corresponds to the JSON property `sourceObjectIdentifier`
2244
+ # @return [Google::Apis::DatastreamV1::SourceObjectIdentifier]
2245
+ attr_accessor :source_object_identifier
2246
+
2247
+ def initialize(**args)
2248
+ update!(**args)
2249
+ end
2250
+
2251
+ # Update properties of this object
2252
+ def update!(**args)
2253
+ @source_object_identifier = args[:source_object_identifier] if args.key?(:source_object_identifier)
2254
+ end
2255
+ end
2256
+
2095
2257
  # This resource represents a long-running operation that is the result of a
2096
2258
  # network API call.
2097
2259
  class Operation
@@ -3121,6 +3283,31 @@ module Google
3121
3283
  end
3122
3284
  end
3123
3285
 
3286
+ # A set of rules to apply to a set of objects.
3287
+ class RuleSet
3288
+ include Google::Apis::Core::Hashable
3289
+
3290
+ # Required. List of customization rules to apply.
3291
+ # Corresponds to the JSON property `customizationRules`
3292
+ # @return [Array<Google::Apis::DatastreamV1::CustomizationRule>]
3293
+ attr_accessor :customization_rules
3294
+
3295
+ # Object filter to apply the rules to.
3296
+ # Corresponds to the JSON property `objectFilter`
3297
+ # @return [Google::Apis::DatastreamV1::ObjectFilter]
3298
+ attr_accessor :object_filter
3299
+
3300
+ def initialize(**args)
3301
+ update!(**args)
3302
+ end
3303
+
3304
+ # Update properties of this object
3305
+ def update!(**args)
3306
+ @customization_rules = args[:customization_rules] if args.key?(:customization_rules)
3307
+ @object_filter = args[:object_filter] if args.key?(:object_filter)
3308
+ end
3309
+ end
3310
+
3124
3311
  # Request message for running a stream.
3125
3312
  class RunStreamRequest
3126
3313
  include Google::Apis::Core::Hashable
@@ -4142,6 +4329,11 @@ module Google
4142
4329
  # @return [String]
4143
4330
  attr_accessor :name
4144
4331
 
4332
+ # Optional. Rule sets to apply to the stream.
4333
+ # Corresponds to the JSON property `ruleSets`
4334
+ # @return [Array<Google::Apis::DatastreamV1::RuleSet>]
4335
+ attr_accessor :rule_sets
4336
+
4145
4337
  # Output only. Reserved for future use.
4146
4338
  # Corresponds to the JSON property `satisfiesPzi`
4147
4339
  # @return [Boolean]
@@ -4185,6 +4377,7 @@ module Google
4185
4377
  @labels = args[:labels] if args.key?(:labels)
4186
4378
  @last_recovery_time = args[:last_recovery_time] if args.key?(:last_recovery_time)
4187
4379
  @name = args[:name] if args.key?(:name)
4380
+ @rule_sets = args[:rule_sets] if args.key?(:rule_sets)
4188
4381
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
4189
4382
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
4190
4383
  @source_config = args[:source_config] if args.key?(:source_config)
@@ -4220,6 +4413,13 @@ module Google
4220
4413
  # @return [String]
4221
4414
  attr_accessor :create_time
4222
4415
 
4416
+ # Output only. The customization rules for the object. These rules are derived
4417
+ # from the parent Stream's `rule_sets` and represent the intended configuration
4418
+ # for the object.
4419
+ # Corresponds to the JSON property `customizationRules`
4420
+ # @return [Array<Google::Apis::DatastreamV1::CustomizationRule>]
4421
+ attr_accessor :customization_rules
4422
+
4223
4423
  # Required. Display name.
4224
4424
  # Corresponds to the JSON property `displayName`
4225
4425
  # @return [String]
@@ -4253,6 +4453,7 @@ module Google
4253
4453
  def update!(**args)
4254
4454
  @backfill_job = args[:backfill_job] if args.key?(:backfill_job)
4255
4455
  @create_time = args[:create_time] if args.key?(:create_time)
4456
+ @customization_rules = args[:customization_rules] if args.key?(:customization_rules)
4256
4457
  @display_name = args[:display_name] if args.key?(:display_name)
4257
4458
  @errors = args[:errors] if args.key?(:errors)
4258
4459
  @name = args[:name] if args.key?(:name)
@@ -4261,6 +4462,32 @@ module Google
4261
4462
  end
4262
4463
  end
4263
4464
 
4465
+ # Time unit column partitioning. see https://cloud.google.com/bigquery/docs/
4466
+ # partitioned-tables#date_timestamp_partitioned_tables
4467
+ class TimeUnitPartition
4468
+ include Google::Apis::Core::Hashable
4469
+
4470
+ # Required. The partitioning column.
4471
+ # Corresponds to the JSON property `column`
4472
+ # @return [String]
4473
+ attr_accessor :column
4474
+
4475
+ # Optional. Partition granularity.
4476
+ # Corresponds to the JSON property `partitioningTimeGranularity`
4477
+ # @return [String]
4478
+ attr_accessor :partitioning_time_granularity
4479
+
4480
+ def initialize(**args)
4481
+ update!(**args)
4482
+ end
4483
+
4484
+ # Update properties of this object
4485
+ def update!(**args)
4486
+ @column = args[:column] if args.key?(:column)
4487
+ @partitioning_time_granularity = args[:partitioning_time_granularity] if args.key?(:partitioning_time_granularity)
4488
+ end
4489
+ end
4490
+
4264
4491
  # Username-password credentials.
4265
4492
  class UserCredentials
4266
4493
  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.58.0"
19
+ GEM_VERSION = "0.59.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 = "20251029"
25
+ REVISION = "20251112"
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
@@ -1456,6 +1551,14 @@ module Google
1456
1551
  end
1457
1552
  end
1458
1553
 
1554
+ class ObjectFilter
1555
+ # @private
1556
+ class Representation < Google::Apis::Core::JsonRepresentation
1557
+ property :source_object_identifier, as: 'sourceObjectIdentifier', class: Google::Apis::DatastreamV1::SourceObjectIdentifier, decorator: Google::Apis::DatastreamV1::SourceObjectIdentifier::Representation
1558
+
1559
+ end
1560
+ end
1561
+
1459
1562
  class Operation
1460
1563
  # @private
1461
1564
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1738,6 +1841,16 @@ module Google
1738
1841
  end
1739
1842
  end
1740
1843
 
1844
+ class RuleSet
1845
+ # @private
1846
+ class Representation < Google::Apis::Core::JsonRepresentation
1847
+ collection :customization_rules, as: 'customizationRules', class: Google::Apis::DatastreamV1::CustomizationRule, decorator: Google::Apis::DatastreamV1::CustomizationRule::Representation
1848
+
1849
+ property :object_filter, as: 'objectFilter', class: Google::Apis::DatastreamV1::ObjectFilter, decorator: Google::Apis::DatastreamV1::ObjectFilter::Representation
1850
+
1851
+ end
1852
+ end
1853
+
1741
1854
  class RunStreamRequest
1742
1855
  # @private
1743
1856
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2073,6 +2186,8 @@ module Google
2073
2186
  hash :labels, as: 'labels'
2074
2187
  property :last_recovery_time, as: 'lastRecoveryTime'
2075
2188
  property :name, as: 'name'
2189
+ collection :rule_sets, as: 'ruleSets', class: Google::Apis::DatastreamV1::RuleSet, decorator: Google::Apis::DatastreamV1::RuleSet::Representation
2190
+
2076
2191
  property :satisfies_pzi, as: 'satisfiesPzi'
2077
2192
  property :satisfies_pzs, as: 'satisfiesPzs'
2078
2193
  property :source_config, as: 'sourceConfig', class: Google::Apis::DatastreamV1::SourceConfig, decorator: Google::Apis::DatastreamV1::SourceConfig::Representation
@@ -2094,6 +2209,8 @@ module Google
2094
2209
  property :backfill_job, as: 'backfillJob', class: Google::Apis::DatastreamV1::BackfillJob, decorator: Google::Apis::DatastreamV1::BackfillJob::Representation
2095
2210
 
2096
2211
  property :create_time, as: 'createTime'
2212
+ collection :customization_rules, as: 'customizationRules', class: Google::Apis::DatastreamV1::CustomizationRule, decorator: Google::Apis::DatastreamV1::CustomizationRule::Representation
2213
+
2097
2214
  property :display_name, as: 'displayName'
2098
2215
  collection :errors, as: 'errors', class: Google::Apis::DatastreamV1::Error, decorator: Google::Apis::DatastreamV1::Error::Representation
2099
2216
 
@@ -2104,6 +2221,14 @@ module Google
2104
2221
  end
2105
2222
  end
2106
2223
 
2224
+ class TimeUnitPartition
2225
+ # @private
2226
+ class Representation < Google::Apis::Core::JsonRepresentation
2227
+ property :column, as: 'column'
2228
+ property :partitioning_time_granularity, as: 'partitioningTimeGranularity'
2229
+ end
2230
+ end
2231
+
2107
2232
  class UserCredentials
2108
2233
  # @private
2109
2234
  class Representation < Google::Apis::Core::JsonRepresentation
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.58.0
4
+ version: 0.59.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.58.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.59.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: