google-apis-datastream_v1 0.66.0 → 0.68.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: fb6c4d72150b67a1fae8e776118620b229da4ebee63ae44d63f339541584e28e
4
- data.tar.gz: 4f10ace611a85d00cace00818abe495928b91f9570493ff092d9ec2947692dc4
3
+ metadata.gz: 7f04cdb2ecb8dba69281b4daef270789b20552f90ca02deb26c338fb638f91ce
4
+ data.tar.gz: ef1cb12d04dee49a79b3c806ca68513b187ca45104445902697d2fbdc21a6f43
5
5
  SHA512:
6
- metadata.gz: ee0577db136262dcdf5619b0a24bbc40dcfefdf8a394c2a6037376eb7ce17fc0f959ce5bab1c5a3fcfe85d793366d0813547a6306ec8a33c38585e2dd20917ba
7
- data.tar.gz: 70f3d1edf2a10110554ab57445329553fd4c42ec2ac93d8536781d944812c9553bc3a7f50a7bae703556646b3bc825ae65f31bbba2bfc15f9d631869ef465692
6
+ metadata.gz: 6623dc6ab7e9525c8593c7a3ef948bca194cef0045be216d3dcdad5254b2bb6eb76bd7ddfacf6714125b557177b09c4afb1b0d78fcd3ad92cd7f283f7388f3a1
7
+ data.tar.gz: 2da86360a095d1f3deacd469d3077202b7fd86494bac548e9c88f873495b074f13521b14c0759d87a730ad74066d62befd21ecfd035167fad1c7a71b8e3c482b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.68.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260503
6
+
7
+ ### v0.67.0 (2026-05-03)
8
+
9
+ * Regenerated from discovery document revision 20260426
10
+
3
11
  ### v0.66.0 (2026-04-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20260321
@@ -114,6 +114,11 @@ module Google
114
114
  # @return [Array<Google::Apis::DatastreamV1::Error>]
115
115
  attr_accessor :errors
116
116
 
117
+ # Represents a filter for included data on a stream object.
118
+ # Corresponds to the JSON property `eventFilter`
119
+ # @return [Google::Apis::DatastreamV1::EventFilter]
120
+ attr_accessor :event_filter
121
+
117
122
  # Output only. Backfill job's end time.
118
123
  # Corresponds to the JSON property `lastEndTime`
119
124
  # @return [String]
@@ -141,6 +146,7 @@ module Google
141
146
  # Update properties of this object
142
147
  def update!(**args)
143
148
  @errors = args[:errors] if args.key?(:errors)
149
+ @event_filter = args[:event_filter] if args.key?(:event_filter)
144
150
  @last_end_time = args[:last_end_time] if args.key?(:last_end_time)
145
151
  @last_start_time = args[:last_start_time] if args.key?(:last_start_time)
146
152
  @state = args[:state] if args.key?(:state)
@@ -3578,7 +3584,7 @@ module Google
3578
3584
  class QuotaFailureViolation
3579
3585
  include Google::Apis::Core::Hashable
3580
3586
 
3581
- # The API Service from which the `QuotaFailure.Violation` orginates. In some
3587
+ # The API Service from which the `QuotaFailure.Violation` originates. In some
3582
3588
  # cases, Quota issues originate from an API Service other than the one that was
3583
3589
  # called. In other words, a dependency of the called API Service could be the
3584
3590
  # cause of the `QuotaFailure`, and this field would have the dependency API
@@ -4276,6 +4282,27 @@ module Google
4276
4282
  end
4277
4283
  end
4278
4284
 
4285
+ # Represents a position in a Spanner change stream from which to start
4286
+ # replicating.
4287
+ class SpannerChangeStreamPosition
4288
+ include Google::Apis::Core::Hashable
4289
+
4290
+ # Required. The timestamp to start change stream queries from. The timestamp
4291
+ # must be a positive value.
4292
+ # Corresponds to the JSON property `startTime`
4293
+ # @return [String]
4294
+ attr_accessor :start_time
4295
+
4296
+ def initialize(**args)
4297
+ update!(**args)
4298
+ end
4299
+
4300
+ # Update properties of this object
4301
+ def update!(**args)
4302
+ @start_time = args[:start_time] if args.key?(:start_time)
4303
+ end
4304
+ end
4305
+
4279
4306
  # Spanner column.
4280
4307
  class SpannerColumn
4281
4308
  include Google::Apis::Core::Hashable
@@ -4524,6 +4551,12 @@ module Google
4524
4551
  # @return [Google::Apis::DatastreamV1::OracleScnPosition]
4525
4552
  attr_accessor :oracle_scn_position
4526
4553
 
4554
+ # Represents a position in a Spanner change stream from which to start
4555
+ # replicating.
4556
+ # Corresponds to the JSON property `spannerChangeStreamPosition`
4557
+ # @return [Google::Apis::DatastreamV1::SpannerChangeStreamPosition]
4558
+ attr_accessor :spanner_change_stream_position
4559
+
4527
4560
  # SQL Server LSN position
4528
4561
  # Corresponds to the JSON property `sqlServerLsnPosition`
4529
4562
  # @return [Google::Apis::DatastreamV1::SqlServerLsnPosition]
@@ -4539,6 +4572,7 @@ module Google
4539
4572
  @mysql_gtid_position = args[:mysql_gtid_position] if args.key?(:mysql_gtid_position)
4540
4573
  @mysql_log_position = args[:mysql_log_position] if args.key?(:mysql_log_position)
4541
4574
  @oracle_scn_position = args[:oracle_scn_position] if args.key?(:oracle_scn_position)
4575
+ @spanner_change_stream_position = args[:spanner_change_stream_position] if args.key?(:spanner_change_stream_position)
4542
4576
  @sql_server_lsn_position = args[:sql_server_lsn_position] if args.key?(:sql_server_lsn_position)
4543
4577
  end
4544
4578
  end
@@ -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.66.0"
19
+ GEM_VERSION = "0.68.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 = "20260321"
25
+ REVISION = "20260503"
26
26
  end
27
27
  end
28
28
  end
@@ -766,6 +766,12 @@ module Google
766
766
  include Google::Apis::Core::JsonObjectSupport
767
767
  end
768
768
 
769
+ class SpannerChangeStreamPosition
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
769
775
  class SpannerColumn
770
776
  class Representation < Google::Apis::Core::JsonRepresentation; end
771
777
 
@@ -1019,6 +1025,8 @@ module Google
1019
1025
  class Representation < Google::Apis::Core::JsonRepresentation
1020
1026
  collection :errors, as: 'errors', class: Google::Apis::DatastreamV1::Error, decorator: Google::Apis::DatastreamV1::Error::Representation
1021
1027
 
1028
+ property :event_filter, as: 'eventFilter', class: Google::Apis::DatastreamV1::EventFilter, decorator: Google::Apis::DatastreamV1::EventFilter::Representation
1029
+
1022
1030
  property :last_end_time, as: 'lastEndTime'
1023
1031
  property :last_start_time, as: 'lastStartTime'
1024
1032
  property :state, as: 'state'
@@ -2249,6 +2257,13 @@ module Google
2249
2257
  end
2250
2258
  end
2251
2259
 
2260
+ class SpannerChangeStreamPosition
2261
+ # @private
2262
+ class Representation < Google::Apis::Core::JsonRepresentation
2263
+ property :start_time, as: 'startTime'
2264
+ end
2265
+ end
2266
+
2252
2267
  class SpannerColumn
2253
2268
  # @private
2254
2269
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2328,6 +2343,8 @@ module Google
2328
2343
 
2329
2344
  property :oracle_scn_position, as: 'oracleScnPosition', class: Google::Apis::DatastreamV1::OracleScnPosition, decorator: Google::Apis::DatastreamV1::OracleScnPosition::Representation
2330
2345
 
2346
+ property :spanner_change_stream_position, as: 'spannerChangeStreamPosition', class: Google::Apis::DatastreamV1::SpannerChangeStreamPosition, decorator: Google::Apis::DatastreamV1::SpannerChangeStreamPosition::Representation
2347
+
2331
2348
  property :sql_server_lsn_position, as: 'sqlServerLsnPosition', class: Google::Apis::DatastreamV1::SqlServerLsnPosition, decorator: Google::Apis::DatastreamV1::SqlServerLsnPosition::Representation
2332
2349
 
2333
2350
  end
@@ -120,8 +120,8 @@ module Google
120
120
  end
121
121
 
122
122
  # Lists information about the supported locations for this service. This method
123
- # lists locations based on the resource scope provided in the [
124
- # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
123
+ # lists locations based on the resource scope provided in the
124
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
125
125
  # the method lists the public locations available to all projects. * **Project-
126
126
  # specific locations**: If `name` follows the format `projects/`project``, the
127
127
  # method lists locations visible to that specific project. This includes public,
@@ -132,8 +132,8 @@ module Google
132
132
  # @param [String] name
133
133
  # The resource that owns the locations collection, if applicable.
134
134
  # @param [Array<String>, String] extra_location_types
135
- # Optional. Do not use this field. It is unsupported and is ignored unless
136
- # explicitly documented otherwise. This is primarily for internal usage.
135
+ # Optional. Do not use this field unless explicitly documented otherwise. This
136
+ # is primarily for internal usage.
137
137
  # @param [String] filter
138
138
  # A filter to narrow down results to a preferred subset. The filtering language
139
139
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
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.66.0
4
+ version: 0.68.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.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.68.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: