google-apis-datastream_v1 0.3.0 → 0.4.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: a2e13721e36ff23027dea8c55321636aea95dc6a7558dfc4679a2419400961ed
4
- data.tar.gz: 139952ce0e97b8bacc22400516b6fb90f9b4ffa257d0a7deee0841f992d75a4e
3
+ metadata.gz: 4ecdf9b4896aa0a3d6b47bd0234cd5d4431610bba9e0f07845d82b823f69575d
4
+ data.tar.gz: 5a271cbf758c2335969815542db430d5c1691eefff855d741f6f0ef367090298
5
5
  SHA512:
6
- metadata.gz: df8b5ab1665156a9f874b35015e48853c659eb701df59fdf98576eb59ae7b48d72c59c86a196ba767dbb999041c1c6b7e5ba9fa97e41951ceee644403cf7bc23
7
- data.tar.gz: 5b9736833312da0e8e295b5a8a4b286080e70776b2915f9cbb82e1121132b66b4be222104e3be51d275a773374834e50b4d95cb6425e426d73ee18c91f5bac32
6
+ metadata.gz: b15be97f2883416cf658f088f762df5a6494c1d1a4e696e7a0efce2f70c9ad331d281c95296244a86973475d137fac22d62eb650db581833e9ba3b07d1718c0e
7
+ data.tar.gz: 170e3dde830978710f5ebcf986e8848e41c4c31cd31c33ebc86cdb1dcc8021699491851355136b835780c18b37e2c68d464949ab5fc2a89deb9f1b79df6a27dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.4.0 (2022-01-15)
4
+
5
+ * Regenerated from discovery document revision 20220105
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.3.0 (2021-12-14)
4
9
 
5
10
  * 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
@@ -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
@@ -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.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211110"
25
+ REVISION = "20220105"
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 ips used by Datastream.
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 resource of the Response type. Must be in the format `
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 under a parent data object that's
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. Execute the update without validating it.
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 a project and
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 in a project
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 do not create any resources. The
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. Create the stream without validating it.
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
- # Starts backfill job for the specified stream object.
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
- # Stops the backfill job for the specified stream object.
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.3.0
4
+ version: 0.4.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-01-17 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.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.4.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.4
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