google-apis-datastream_v1 0.2.0 → 0.5.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 +4 -4
- data/CHANGELOG.md +13 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/datastream_v1/classes.rb +7 -7
- data/lib/google/apis/datastream_v1/gem_version.rb +3 -3
- data/lib/google/apis/datastream_v1/service.rb +24 -18
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d87f8c31369be78135f3d8bfd76e825f2565d256ae68ea9cc09f64151d921b03
|
4
|
+
data.tar.gz: 6f9d6b3d5c0e252dc689fcf763e25e86f844cfca3d89d3d215d4aa398675eff1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b85f3f1f4d9b9d24380b71456cfea71c3a145e532f132c0ff2be8c6d62f16ca0c1d26584b7a0665c134e32794601ad490dc59fd20c720df269b2c304a4b5456
|
7
|
+
data.tar.gz: '0969f2841a9ccf4e09d1c1315b339f7d973ebc596cef42a9e7b4e7703f54fdd131cde484191d59e249fcf94652f7de1a97e151f3dd66c37097bfcc1dad8a654f'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.5.0 (2022-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220302
|
6
|
+
|
7
|
+
### v0.4.0 (2022-01-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220105
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.3.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.2.0 (2021-11-18)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20211110
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datastream_v1"
|
|
51
51
|
client = Google::Apis::DatastreamV1::DatastreamService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -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
|
@@ -1285,12 +1285,12 @@ module Google
|
|
1285
1285
|
class OracleObjectIdentifier
|
1286
1286
|
include Google::Apis::Core::Hashable
|
1287
1287
|
|
1288
|
-
# The schema name.
|
1288
|
+
# Required. The schema name.
|
1289
1289
|
# Corresponds to the JSON property `schema`
|
1290
1290
|
# @return [String]
|
1291
1291
|
attr_accessor :schema
|
1292
1292
|
|
1293
|
-
# The table name.
|
1293
|
+
# Required. The table name.
|
1294
1294
|
# Corresponds to the JSON property `table`
|
1295
1295
|
# @return [String]
|
1296
1296
|
attr_accessor :table
|
@@ -1428,8 +1428,8 @@ module Google
|
|
1428
1428
|
class OracleTable
|
1429
1429
|
include Google::Apis::Core::Hashable
|
1430
1430
|
|
1431
|
-
# Oracle columns in the schema. When unspecified as part of
|
1432
|
-
# includes/excludes everything.
|
1431
|
+
# Oracle columns in the schema. When unspecified as part of include/exclude
|
1432
|
+
# objects, includes/excludes everything.
|
1433
1433
|
# Corresponds to the JSON property `oracleColumns`
|
1434
1434
|
# @return [Array<Google::Apis::DatastreamV1::OracleColumn>]
|
1435
1435
|
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.5.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 = "20220302"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -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.5.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:
|
11
|
+
date: 2022-03-14 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.5.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.
|
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
|