google-apis-datapipelines_v1 0.10.0 → 0.12.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: ea577a3ef9cf4f839f2634392c009c4758bdfec790519d8ab08ad8193f48aa19
4
- data.tar.gz: c32520c86a3770271afd249ec88aeb1f3dfd1ec594cbc2352ddbe44ac8f2be01
3
+ metadata.gz: 6bd79a68951705f7d5f6cfdd059c0c93b39bffaed70c03bcf9b4f89981b2c120
4
+ data.tar.gz: fadffb6e995de85d0fe3e85c9c7ef2caee56ca8a71706b5ddc190bff19488e4e
5
5
  SHA512:
6
- metadata.gz: 2ac72c1f2503095500f85fdd85eab7004cabcfd7a5012788242e01dd7135a7a78567061d11d6d6ddd2b69f2c8503b11f709f8d90946e13bee64e58244394fbbf
7
- data.tar.gz: 50efce3e8d16309f5205ed2a899800859f10cf2944ed44ab607bcae30d7b6f60f122930107d383fdd38c7874134fa28e09ea7adda848466569a24fb708351ec1
6
+ metadata.gz: 4ae5333543993b5adb5825eeebcd5ea1fe790027f0f734d27fea092195e63cce36a37ef5adb93e8c6feaa620436b233341dab1c718953f51738c8acb93ccfcd8
7
+ data.tar.gz: dce35e4b6949b9adcddcf04b6bc2cd08a6af71f5710d754433d3ea718e964365b539cbd3babb8c131387d474ac729a0e17237330406bbac9f5304ccb80e59741
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datapipelines_v1
2
2
 
3
+ ### v0.12.0 (2022-12-21)
4
+
5
+ * Regenerated from discovery document revision 20221210
6
+
7
+ ### v0.11.0 (2022-11-17)
8
+
9
+ * Regenerated from discovery document revision 20221106
10
+
3
11
  ### v0.10.0 (2022-10-27)
4
12
 
5
13
  * Regenerated using generator version 0.11.0
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatapipelinesV1
18
18
  # Version of the google-apis-datapipelines_v1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220319"
25
+ REVISION = "20221210"
26
26
  end
27
27
  end
28
28
  end
@@ -50,57 +50,6 @@ module Google
50
50
  @batch_path = 'batch'
51
51
  end
52
52
 
53
- # Lists pipelines. Returns a "FORBIDDEN" error if the caller doesn't have
54
- # permission to access it.
55
- # @param [String] parent
56
- # Required. The location name. For example: `projects/PROJECT_ID/locations/
57
- # LOCATION_ID`.
58
- # @param [String] filter
59
- # An expression for filtering the results of the request. If unspecified, all
60
- # pipelines will be returned. Multiple filters can be applied and must be comma
61
- # separated. Fields eligible for filtering are: + `type`: The type of the
62
- # pipeline (streaming or batch). Allowed values are `ALL`, `BATCH`, and `
63
- # STREAMING`. + `status`: The activity status of the pipeline. Allowed values
64
- # are `ALL`, `ACTIVE`, `ARCHIVED`, and `PAUSED`. For example, to limit results
65
- # to active batch processing pipelines: type:BATCH,status:ACTIVE
66
- # @param [Fixnum] page_size
67
- # The maximum number of entities to return. The service may return fewer than
68
- # this value, even if there are additional pages. If unspecified, the max limit
69
- # is yet to be determined by the backend implementation.
70
- # @param [String] page_token
71
- # A page token, received from a previous `ListPipelines` call. Provide this to
72
- # retrieve the subsequent page. When paginating, all other parameters provided
73
- # to `ListPipelines` must match the call that provided the page token.
74
- # @param [String] fields
75
- # Selector specifying which fields to include in a partial response.
76
- # @param [String] quota_user
77
- # Available to use for quota purposes for server-side applications. Can be any
78
- # arbitrary string assigned to a user, but should not exceed 40 characters.
79
- # @param [Google::Apis::RequestOptions] options
80
- # Request-specific options
81
- #
82
- # @yield [result, err] Result & error if block supplied
83
- # @yieldparam result [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse] parsed result object
84
- # @yieldparam err [StandardError] error object if request failed
85
- #
86
- # @return [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse]
87
- #
88
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
89
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
90
- # @raise [Google::Apis::AuthorizationError] Authorization is required
91
- def list_project_location_pipelines(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
92
- command = make_simple_command(:get, 'v1/{+parent}', options)
93
- command.response_representation = Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse::Representation
94
- command.response_class = Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse
95
- command.params['parent'] = parent unless parent.nil?
96
- command.query['filter'] = filter unless filter.nil?
97
- command.query['pageSize'] = page_size unless page_size.nil?
98
- command.query['pageToken'] = page_token unless page_token.nil?
99
- command.query['fields'] = fields unless fields.nil?
100
- command.query['quotaUser'] = quota_user unless quota_user.nil?
101
- execute_or_queue_command(command, &block)
102
- end
103
-
104
53
  # Creates a pipeline. For a batch pipeline, you can pass scheduler information.
105
54
  # Data Pipelines uses the scheduler information to create an internal scheduler
106
55
  # that runs jobs periodically. If the internal scheduler is not configured, you
@@ -203,6 +152,57 @@ module Google
203
152
  execute_or_queue_command(command, &block)
204
153
  end
205
154
 
155
+ # Lists pipelines. Returns a "FORBIDDEN" error if the caller doesn't have
156
+ # permission to access it.
157
+ # @param [String] parent
158
+ # Required. The location name. For example: `projects/PROJECT_ID/locations/
159
+ # LOCATION_ID`.
160
+ # @param [String] filter
161
+ # An expression for filtering the results of the request. If unspecified, all
162
+ # pipelines will be returned. Multiple filters can be applied and must be comma
163
+ # separated. Fields eligible for filtering are: + `type`: The type of the
164
+ # pipeline (streaming or batch). Allowed values are `ALL`, `BATCH`, and `
165
+ # STREAMING`. + `status`: The activity status of the pipeline. Allowed values
166
+ # are `ALL`, `ACTIVE`, `ARCHIVED`, and `PAUSED`. For example, to limit results
167
+ # to active batch processing pipelines: type:BATCH,status:ACTIVE
168
+ # @param [Fixnum] page_size
169
+ # The maximum number of entities to return. The service may return fewer than
170
+ # this value, even if there are additional pages. If unspecified, the max limit
171
+ # is yet to be determined by the backend implementation.
172
+ # @param [String] page_token
173
+ # A page token, received from a previous `ListPipelines` call. Provide this to
174
+ # retrieve the subsequent page. When paginating, all other parameters provided
175
+ # to `ListPipelines` must match the call that provided the page token.
176
+ # @param [String] fields
177
+ # Selector specifying which fields to include in a partial response.
178
+ # @param [String] quota_user
179
+ # Available to use for quota purposes for server-side applications. Can be any
180
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
181
+ # @param [Google::Apis::RequestOptions] options
182
+ # Request-specific options
183
+ #
184
+ # @yield [result, err] Result & error if block supplied
185
+ # @yieldparam result [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse] parsed result object
186
+ # @yieldparam err [StandardError] error object if request failed
187
+ #
188
+ # @return [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse]
189
+ #
190
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
191
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
192
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
193
+ def list_project_location_pipelines(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
194
+ command = make_simple_command(:get, 'v1/{+parent}/pipelines', options)
195
+ command.response_representation = Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse::Representation
196
+ command.response_class = Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse
197
+ command.params['parent'] = parent unless parent.nil?
198
+ command.query['filter'] = filter unless filter.nil?
199
+ command.query['pageSize'] = page_size unless page_size.nil?
200
+ command.query['pageToken'] = page_token unless page_token.nil?
201
+ command.query['fields'] = fields unless fields.nil?
202
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
203
+ execute_or_queue_command(command, &block)
204
+ end
205
+
206
206
  # Updates a pipeline. If successful, the updated Pipeline is returned. Returns `
207
207
  # NOT_FOUND` if the pipeline doesn't exist. If UpdatePipeline does not return
208
208
  # successfully, you can retry the UpdatePipeline request until you receive a
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datapipelines_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.12.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-10-31 00:00:00.000000000 Z
11
+ date: 2023-01-04 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-datapipelines_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datapipelines_v1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datapipelines_v1/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datapipelines_v1
63
63
  post_install_message:
64
64
  rdoc_options: []