google-apis-datastream_v1 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f276f14fd56d6b980b6ab6568c0fbd1e5622d5ea13f7f349f0f44ce41bad7ef
|
4
|
+
data.tar.gz: c14f1bd0055bfafb305ed226f139a5952773340bf6b8ce99f98de0d545ab9cce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7814bd918e5eb081a3ef3c04754cf057f94e7f443d4f772b6460fc07e7eebb689f50dd3ad4aeba3541f8dc84fa327634e57de4cd43429533edf0e9a0e32b021
|
7
|
+
data.tar.gz: 907e5e901f4897cbed357e374bb0cf670d979b3eb4626dff73dfd1e1394ca6454aa2913741d82f87a762ea96ae28b710aa99b19dcc1174328363bfba63d15cee
|
data/CHANGELOG.md
CHANGED
@@ -1281,6 +1281,19 @@ module Google
|
|
1281
1281
|
end
|
1282
1282
|
end
|
1283
1283
|
|
1284
|
+
# Configuration to drop large object values.
|
1285
|
+
class OracleDropLargeObjects
|
1286
|
+
include Google::Apis::Core::Hashable
|
1287
|
+
|
1288
|
+
def initialize(**args)
|
1289
|
+
update!(**args)
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
# Update properties of this object
|
1293
|
+
def update!(**args)
|
1294
|
+
end
|
1295
|
+
end
|
1296
|
+
|
1284
1297
|
# Oracle data source object identifier.
|
1285
1298
|
class OracleObjectIdentifier
|
1286
1299
|
include Google::Apis::Core::Hashable
|
@@ -1403,6 +1416,11 @@ module Google
|
|
1403
1416
|
class OracleSourceConfig
|
1404
1417
|
include Google::Apis::Core::Hashable
|
1405
1418
|
|
1419
|
+
# Configuration to drop large object values.
|
1420
|
+
# Corresponds to the JSON property `dropLargeObjects`
|
1421
|
+
# @return [Google::Apis::DatastreamV1::OracleDropLargeObjects]
|
1422
|
+
attr_accessor :drop_large_objects
|
1423
|
+
|
1406
1424
|
# Oracle database structure.
|
1407
1425
|
# Corresponds to the JSON property `excludeObjects`
|
1408
1426
|
# @return [Google::Apis::DatastreamV1::OracleRdbms]
|
@@ -1419,6 +1437,7 @@ module Google
|
|
1419
1437
|
|
1420
1438
|
# Update properties of this object
|
1421
1439
|
def update!(**args)
|
1440
|
+
@drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
|
1422
1441
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1423
1442
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1424
1443
|
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.6.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 = "20220316"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -238,6 +238,12 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class OracleDropLargeObjects
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
241
247
|
class OracleObjectIdentifier
|
242
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
249
|
|
@@ -747,6 +753,12 @@ module Google
|
|
747
753
|
end
|
748
754
|
end
|
749
755
|
|
756
|
+
class OracleDropLargeObjects
|
757
|
+
# @private
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
759
|
+
end
|
760
|
+
end
|
761
|
+
|
750
762
|
class OracleObjectIdentifier
|
751
763
|
# @private
|
752
764
|
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::OracleDropLargeObjects, decorator: Google::Apis::DatastreamV1::OracleDropLargeObjects::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
|
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.6.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-03-
|
11
|
+
date: 2022-03-28 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.6.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: []
|