google-apis-datastream_v1 0.6.0 → 0.9.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: 1d02640b9b49f64b69bc8e28a2b55cce6db90d2548613f10fcd8bb27875348bf
|
4
|
+
data.tar.gz: 54e698610afe49d65788a21974b365590deb081431db22b72eec2d73a6bf4bb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9d7bae39e370f8aa2127f74cf9d23198a09cf224e82da6d9a8cf28b8d43019e94a55562f1559187fab12cb20a584b6078d0d9fe682804baa65775363b813182
|
7
|
+
data.tar.gz: d105a22ccde776f9133844447609b50c11f6d5bb38cefb742345fa481ae6f7717342b6ac8eb000da0eed14b5cc3bcfd7f2fbd90f328c1411826fd175932dfd77
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.9.0 (2022-06-05)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.5.0
|
6
|
+
|
7
|
+
### v0.8.0 (2022-04-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220405
|
10
|
+
|
11
|
+
### v0.7.0 (2022-04-02)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220322
|
14
|
+
|
3
15
|
### v0.6.0 (2022-03-26)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220316
|
@@ -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
|
|
@@ -1281,19 +1293,6 @@ module Google
|
|
1281
1293
|
end
|
1282
1294
|
end
|
1283
1295
|
|
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
|
-
|
1297
1296
|
# Oracle data source object identifier.
|
1298
1297
|
class OracleObjectIdentifier
|
1299
1298
|
include Google::Apis::Core::Hashable
|
@@ -1418,7 +1417,7 @@ module Google
|
|
1418
1417
|
|
1419
1418
|
# Configuration to drop large object values.
|
1420
1419
|
# Corresponds to the JSON property `dropLargeObjects`
|
1421
|
-
# @return [Google::Apis::DatastreamV1::
|
1420
|
+
# @return [Google::Apis::DatastreamV1::DropLargeObjects]
|
1422
1421
|
attr_accessor :drop_large_objects
|
1423
1422
|
|
1424
1423
|
# Oracle database structure.
|
@@ -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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
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
|
|
@@ -238,12 +244,6 @@ module Google
|
|
238
244
|
include Google::Apis::Core::JsonObjectSupport
|
239
245
|
end
|
240
246
|
|
241
|
-
class OracleDropLargeObjects
|
242
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
-
|
244
|
-
include Google::Apis::Core::JsonObjectSupport
|
245
|
-
end
|
246
|
-
|
247
247
|
class OracleObjectIdentifier
|
248
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
249
|
|
@@ -479,6 +479,12 @@ module Google
|
|
479
479
|
end
|
480
480
|
end
|
481
481
|
|
482
|
+
class DropLargeObjects
|
483
|
+
# @private
|
484
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
482
488
|
class Empty
|
483
489
|
# @private
|
484
490
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -753,12 +759,6 @@ module Google
|
|
753
759
|
end
|
754
760
|
end
|
755
761
|
|
756
|
-
class OracleDropLargeObjects
|
757
|
-
# @private
|
758
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
759
|
-
end
|
760
|
-
end
|
761
|
-
|
762
762
|
class OracleObjectIdentifier
|
763
763
|
# @private
|
764
764
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -799,7 +799,7 @@ module Google
|
|
799
799
|
class OracleSourceConfig
|
800
800
|
# @private
|
801
801
|
class Representation < Google::Apis::Core::JsonRepresentation
|
802
|
-
property :drop_large_objects, as: 'dropLargeObjects', class: Google::Apis::DatastreamV1::
|
802
|
+
property :drop_large_objects, as: 'dropLargeObjects', class: Google::Apis::DatastreamV1::DropLargeObjects, decorator: Google::Apis::DatastreamV1::DropLargeObjects::Representation
|
803
803
|
|
804
804
|
property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
805
805
|
|
@@ -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.9.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-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.9.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Datastream API V1
|