google-apis-datastream_v1 0.5.0 → 0.8.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: 12779b2d5fa10b04573500902a879d91d187f018634d91f293e322d760897228
|
4
|
+
data.tar.gz: ee09a80334fe53f397bf617f65bdcbec73eda7bb5e2cf8f245a8897a2645823e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 703e1d2021ba1d9e4f158b40e2a06916a95d186292b5989ef5b001accdc0b1fad0c1033b121195819d97aedcf3b15edd40e41e0f1a9b76584ffa185bedf24972
|
7
|
+
data.tar.gz: 712cc2697609de6b64d1dee8cbbeba9cfa41b43d3168e95abfb3169a3a75b5b453a756713b7039ee20d1a1b801cf48eab3d5393944cbb88f554785dfe501a584
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2022-04-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220405
|
6
|
+
|
7
|
+
### v0.7.0 (2022-04-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220322
|
10
|
+
|
11
|
+
### v0.6.0 (2022-03-26)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220316
|
14
|
+
|
3
15
|
### v0.5.0 (2022-03-12)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220302
|
@@ -313,11 +313,23 @@ module Google
|
|
313
313
|
end
|
314
314
|
end
|
315
315
|
|
316
|
+
# Configuration to drop large object values.
|
317
|
+
class DropLargeObjects
|
318
|
+
include Google::Apis::Core::Hashable
|
319
|
+
|
320
|
+
def initialize(**args)
|
321
|
+
update!(**args)
|
322
|
+
end
|
323
|
+
|
324
|
+
# Update properties of this object
|
325
|
+
def update!(**args)
|
326
|
+
end
|
327
|
+
end
|
328
|
+
|
316
329
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
317
330
|
# messages in your APIs. A typical example is to use it as the request or the
|
318
331
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
319
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
320
|
-
# `Empty` is empty JSON object ````.
|
332
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
321
333
|
class Empty
|
322
334
|
include Google::Apis::Core::Hashable
|
323
335
|
|
@@ -1403,6 +1415,11 @@ module Google
|
|
1403
1415
|
class OracleSourceConfig
|
1404
1416
|
include Google::Apis::Core::Hashable
|
1405
1417
|
|
1418
|
+
# Configuration to drop large object values.
|
1419
|
+
# Corresponds to the JSON property `dropLargeObjects`
|
1420
|
+
# @return [Google::Apis::DatastreamV1::DropLargeObjects]
|
1421
|
+
attr_accessor :drop_large_objects
|
1422
|
+
|
1406
1423
|
# Oracle database structure.
|
1407
1424
|
# Corresponds to the JSON property `excludeObjects`
|
1408
1425
|
# @return [Google::Apis::DatastreamV1::OracleRdbms]
|
@@ -1419,6 +1436,7 @@ module Google
|
|
1419
1436
|
|
1420
1437
|
# Update properties of this object
|
1421
1438
|
def update!(**args)
|
1439
|
+
@drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
|
1422
1440
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1423
1441
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1424
1442
|
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.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220405"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,6 +76,12 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class DropLargeObjects
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
79
85
|
class Empty
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
87
|
|
@@ -473,6 +479,12 @@ module Google
|
|
473
479
|
end
|
474
480
|
end
|
475
481
|
|
482
|
+
class DropLargeObjects
|
483
|
+
# @private
|
484
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
476
488
|
class Empty
|
477
489
|
# @private
|
478
490
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -787,6 +799,8 @@ module Google
|
|
787
799
|
class OracleSourceConfig
|
788
800
|
# @private
|
789
801
|
class Representation < Google::Apis::Core::JsonRepresentation
|
802
|
+
property :drop_large_objects, as: 'dropLargeObjects', class: Google::Apis::DatastreamV1::DropLargeObjects, decorator: Google::Apis::DatastreamV1::DropLargeObjects::Representation
|
803
|
+
|
790
804
|
property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
791
805
|
|
792
806
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
@@ -122,8 +122,8 @@ module Google
|
|
122
122
|
# The resource that owns the locations collection, if applicable.
|
123
123
|
# @param [String] filter
|
124
124
|
# A filter to narrow down results to a preferred subset. The filtering language
|
125
|
-
# accepts strings like "displayName=tokyo"
|
126
|
-
# AIP-160](https://google.aip.dev/160).
|
125
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
126
|
+
# in [AIP-160](https://google.aip.dev/160).
|
127
127
|
# @param [Fixnum] page_size
|
128
128
|
# The maximum number of results to return. If not set, the service selects a
|
129
129
|
# default.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|