google-apis-datastream_v1 0.3.0 → 0.6.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: 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
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2022-03-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220316
|
6
|
+
|
7
|
+
### v0.5.0 (2022-03-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220302
|
10
|
+
|
11
|
+
### v0.4.0 (2022-01-15)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220105
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.3.0 (2021-12-14)
|
4
17
|
|
5
18
|
* Unspecified changes
|
@@ -894,12 +894,12 @@ module Google
|
|
894
894
|
class MysqlObjectIdentifier
|
895
895
|
include Google::Apis::Core::Hashable
|
896
896
|
|
897
|
-
# The database name.
|
897
|
+
# Required. The database name.
|
898
898
|
# Corresponds to the JSON property `database`
|
899
899
|
# @return [String]
|
900
900
|
attr_accessor :database
|
901
901
|
|
902
|
-
# The table name.
|
902
|
+
# Required. The table name.
|
903
903
|
# Corresponds to the JSON property `table`
|
904
904
|
# @return [String]
|
905
905
|
attr_accessor :table
|
@@ -1064,7 +1064,7 @@ module Google
|
|
1064
1064
|
include Google::Apis::Core::Hashable
|
1065
1065
|
|
1066
1066
|
# MySQL columns in the database. When unspecified as part of include/exclude
|
1067
|
-
#
|
1067
|
+
# objects, includes/excludes everything.
|
1068
1068
|
# Corresponds to the JSON property `mysqlColumns`
|
1069
1069
|
# @return [Array<Google::Apis::DatastreamV1::MysqlColumn>]
|
1070
1070
|
attr_accessor :mysql_columns
|
@@ -1281,16 +1281,29 @@ 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
|
1287
1300
|
|
1288
|
-
# The schema name.
|
1301
|
+
# Required. The schema name.
|
1289
1302
|
# Corresponds to the JSON property `schema`
|
1290
1303
|
# @return [String]
|
1291
1304
|
attr_accessor :schema
|
1292
1305
|
|
1293
|
-
# The table name.
|
1306
|
+
# Required. The table name.
|
1294
1307
|
# Corresponds to the JSON property `table`
|
1295
1308
|
# @return [String]
|
1296
1309
|
attr_accessor :table
|
@@ -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
|
@@ -1428,8 +1447,8 @@ module Google
|
|
1428
1447
|
class OracleTable
|
1429
1448
|
include Google::Apis::Core::Hashable
|
1430
1449
|
|
1431
|
-
# Oracle columns in the schema. When unspecified as part of
|
1432
|
-
# includes/excludes everything.
|
1450
|
+
# Oracle columns in the schema. When unspecified as part of include/exclude
|
1451
|
+
# objects, includes/excludes everything.
|
1433
1452
|
# Corresponds to the JSON property `oracleColumns`
|
1434
1453
|
# @return [Array<Google::Apis::DatastreamV1::OracleColumn>]
|
1435
1454
|
attr_accessor :oracle_columns
|
@@ -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
|
-
GENERATOR_VERSION = "0.4.
|
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
|
@@ -49,12 +49,10 @@ module Google
|
|
49
49
|
@batch_path = 'batch'
|
50
50
|
end
|
51
51
|
|
52
|
-
# The FetchStaticIps API call exposes the static
|
53
|
-
# Typically, a request returns children data objects under a parent data object
|
54
|
-
# that's optionally supplied in the request.
|
52
|
+
# The FetchStaticIps API call exposes the static IP addresses used by Datastream.
|
55
53
|
# @param [String] name
|
56
|
-
# Required. The name
|
57
|
-
# projects/*/locations/*`.
|
54
|
+
# Required. The resource name for the location for which static IPs should be
|
55
|
+
# returned. Must be in the format `projects/*/locations/*`.
|
58
56
|
# @param [Fixnum] page_size
|
59
57
|
# Maximum number of Ips to return, will likely not be specified.
|
60
58
|
# @param [String] page_token
|
@@ -181,6 +179,9 @@ module Google
|
|
181
179
|
# second request. This prevents clients from accidentally creating duplicate
|
182
180
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
183
181
|
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
182
|
+
# @param [Boolean] validate_only
|
183
|
+
# Optional. Only validate the connection profile, but don't create any resources.
|
184
|
+
# The default is false.
|
184
185
|
# @param [String] fields
|
185
186
|
# Selector specifying which fields to include in a partial response.
|
186
187
|
# @param [String] quota_user
|
@@ -198,7 +199,7 @@ module Google
|
|
198
199
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
199
200
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
200
201
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
201
|
-
def create_project_location_connection_profile(parent, connection_profile_object = nil, connection_profile_id: nil, force: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
202
|
+
def create_project_location_connection_profile(parent, connection_profile_object = nil, connection_profile_id: nil, force: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
202
203
|
command = make_simple_command(:post, 'v1/{+parent}/connectionProfiles', options)
|
203
204
|
command.request_representation = Google::Apis::DatastreamV1::ConnectionProfile::Representation
|
204
205
|
command.request_object = connection_profile_object
|
@@ -208,12 +209,13 @@ module Google
|
|
208
209
|
command.query['connectionProfileId'] = connection_profile_id unless connection_profile_id.nil?
|
209
210
|
command.query['force'] = force unless force.nil?
|
210
211
|
command.query['requestId'] = request_id unless request_id.nil?
|
212
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
211
213
|
command.query['fields'] = fields unless fields.nil?
|
212
214
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
213
215
|
execute_or_queue_command(command, &block)
|
214
216
|
end
|
215
217
|
|
216
|
-
# Use this method to delete a connection profile
|
218
|
+
# Use this method to delete a connection profile.
|
217
219
|
# @param [String] name
|
218
220
|
# Required. The name of the connection profile resource to delete.
|
219
221
|
# @param [String] request_id
|
@@ -257,7 +259,7 @@ module Google
|
|
257
259
|
|
258
260
|
# Use this method to discover a connection profile. The discover API call
|
259
261
|
# exposes the data objects and metadata belonging to the profile. Typically, a
|
260
|
-
# request returns children data objects
|
262
|
+
# request returns children data objects of a parent data object that's
|
261
263
|
# optionally supplied in the request.
|
262
264
|
# @param [String] parent
|
263
265
|
# Required. The parent resource of the connection profile type. Must be in the
|
@@ -374,7 +376,7 @@ module Google
|
|
374
376
|
# Output only. The resource's name.
|
375
377
|
# @param [Google::Apis::DatastreamV1::ConnectionProfile] connection_profile_object
|
376
378
|
# @param [Boolean] force
|
377
|
-
# Optional.
|
379
|
+
# Optional. Update the connection profile without validating it.
|
378
380
|
# @param [String] request_id
|
379
381
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
380
382
|
# that if you must retry your request, the server will know to ignore the
|
@@ -392,6 +394,9 @@ module Google
|
|
392
394
|
# update_mask are relative to the resource, not the full request. A field will
|
393
395
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
394
396
|
# all fields will be overwritten.
|
397
|
+
# @param [Boolean] validate_only
|
398
|
+
# Optional. Only validate the connection profile, but don't update any resources.
|
399
|
+
# The default is false.
|
395
400
|
# @param [String] fields
|
396
401
|
# Selector specifying which fields to include in a partial response.
|
397
402
|
# @param [String] quota_user
|
@@ -409,7 +414,7 @@ module Google
|
|
409
414
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
410
415
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
411
416
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
412
|
-
def patch_project_location_connection_profile(name, connection_profile_object = nil, force: nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
417
|
+
def patch_project_location_connection_profile(name, connection_profile_object = nil, force: nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
413
418
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
414
419
|
command.request_representation = Google::Apis::DatastreamV1::ConnectionProfile::Representation
|
415
420
|
command.request_object = connection_profile_object
|
@@ -419,6 +424,7 @@ module Google
|
|
419
424
|
command.query['force'] = force unless force.nil?
|
420
425
|
command.query['requestId'] = request_id unless request_id.nil?
|
421
426
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
427
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
422
428
|
command.query['fields'] = fields unless fields.nil?
|
423
429
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
424
430
|
execute_or_queue_command(command, &block)
|
@@ -747,8 +753,8 @@ module Google
|
|
747
753
|
execute_or_queue_command(command, &block)
|
748
754
|
end
|
749
755
|
|
750
|
-
# Use this method to create a route for a private connectivity in
|
751
|
-
# location.
|
756
|
+
# Use this method to create a route for a private connectivity configuration in
|
757
|
+
# a project and location.
|
752
758
|
# @param [String] parent
|
753
759
|
# Required. The parent that owns the collection of Routes.
|
754
760
|
# @param [Google::Apis::DatastreamV1::Route] route_object
|
@@ -868,8 +874,8 @@ module Google
|
|
868
874
|
execute_or_queue_command(command, &block)
|
869
875
|
end
|
870
876
|
|
871
|
-
# Use this method to list routes created for a private connectivity
|
872
|
-
# and location.
|
877
|
+
# Use this method to list routes created for a private connectivity
|
878
|
+
# configuration in a project and location.
|
873
879
|
# @param [String] parent
|
874
880
|
# Required. The parent that owns the collection of Routess.
|
875
881
|
# @param [String] filter
|
@@ -935,7 +941,7 @@ module Google
|
|
935
941
|
# @param [String] stream_id
|
936
942
|
# Required. The stream identifier.
|
937
943
|
# @param [Boolean] validate_only
|
938
|
-
# Optional. Only validate the stream, but
|
944
|
+
# Optional. Only validate the stream, but don't create any resources. The
|
939
945
|
# default is false.
|
940
946
|
# @param [String] fields
|
941
947
|
# Selector specifying which fields to include in a partial response.
|
@@ -1093,7 +1099,7 @@ module Google
|
|
1093
1099
|
# Output only. The stream's name.
|
1094
1100
|
# @param [Google::Apis::DatastreamV1::Stream] stream_object
|
1095
1101
|
# @param [Boolean] force
|
1096
|
-
# Optional.
|
1102
|
+
# Optional. Update the stream without validating it.
|
1097
1103
|
# @param [String] request_id
|
1098
1104
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
1099
1105
|
# that if you must retry your request, the server will know to ignore the
|
@@ -1250,7 +1256,7 @@ module Google
|
|
1250
1256
|
execute_or_queue_command(command, &block)
|
1251
1257
|
end
|
1252
1258
|
|
1253
|
-
#
|
1259
|
+
# Use this method to start a backfill job for the specified stream object.
|
1254
1260
|
# @param [String] object
|
1255
1261
|
# Required. The name of the stream object resource to start a backfill job for.
|
1256
1262
|
# @param [Google::Apis::DatastreamV1::StartBackfillJobRequest] start_backfill_job_request_object
|
@@ -1283,7 +1289,7 @@ module Google
|
|
1283
1289
|
execute_or_queue_command(command, &block)
|
1284
1290
|
end
|
1285
1291
|
|
1286
|
-
#
|
1292
|
+
# Use this method to stop a backfill job for the specified stream object.
|
1287
1293
|
# @param [String] object
|
1288
1294
|
# Required. The name of the stream object resource to stop the backfill job for.
|
1289
1295
|
# @param [Google::Apis::DatastreamV1::StopBackfillJobRequest] stop_backfill_job_request_object
|
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-
|
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: []
|
@@ -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.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Datastream API V1
|