google-apis-dataform_v1beta1 0.55.0 → 0.57.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: a972f2126fcc0dcec7a7b0f4b32d7d329e9248a4416567704e1a0dad97cda9e3
4
- data.tar.gz: a3911fdb053b950e21238bf674983f46418565a954925905d1b33ca4559c0021
3
+ metadata.gz: 67469aefa756b79b1084df8b139b389995ec51a76737aa7733099d006128dfdb
4
+ data.tar.gz: b74a50cc9b793a46062897500d6e68c6be5002202a47cb959e33e18f06f45eed
5
5
  SHA512:
6
- metadata.gz: 675235c7f3fca26045468e056ab8588f02363d9e7b4970f327b58f36f7484d312dd6e68dfec52df2c3323208264eee12c8f6121a32a19eeabbb91a70e94892ef
7
- data.tar.gz: 9b5822fc30d9d0988fbd0c103d9e17a5dcad76151fe143a81a09d801a486478a5e2d00acb82a49237d2aab35d4fd5a89c038a8a2343e9a7f843e5a717a9f3b25
6
+ metadata.gz: d2a00259b6222689b8cc5ba4c23e9b660bb146f93ef67f74665180b9af9dc02ff451b0b3dbfcee32e7ebd3bed07f689bd36f091a91475423c596cd1f2e09e844
7
+ data.tar.gz: 7c01b6c1e45ff4d236691b9e26831d2d4b3041211e2c5bf43bf9b73adeeed577fb2d153facf5bffb587f51e6c76a9e8e0cb4ebeddaa63862b96f5773124155db
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.57.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260409
6
+
7
+ ### v0.56.0 (2026-03-22)
8
+
9
+ * Regenerated from discovery document revision 20260317
10
+
3
11
  ### v0.55.0 (2026-02-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20260217
@@ -1061,6 +1061,54 @@ module Google
1061
1061
  end
1062
1062
  end
1063
1063
 
1064
+ # `DeleteFolderTree` request message.
1065
+ class DeleteFolderTreeRequest
1066
+ include Google::Apis::Core::Hashable
1067
+
1068
+ # Optional. If `false` (default): The operation will fail if any Repository
1069
+ # within the folder hierarchy has associated Release Configs or Workflow Configs.
1070
+ # If `true`: The operation will attempt to delete everything, including any
1071
+ # Release Configs and Workflow Configs linked to Repositories within the folder
1072
+ # hierarchy. This permanently removes schedules and resources.
1073
+ # Corresponds to the JSON property `force`
1074
+ # @return [Boolean]
1075
+ attr_accessor :force
1076
+ alias_method :force?, :force
1077
+
1078
+ def initialize(**args)
1079
+ update!(**args)
1080
+ end
1081
+
1082
+ # Update properties of this object
1083
+ def update!(**args)
1084
+ @force = args[:force] if args.key?(:force)
1085
+ end
1086
+ end
1087
+
1088
+ # `DeleteTeamFolderTree` request message.
1089
+ class DeleteTeamFolderTreeRequest
1090
+ include Google::Apis::Core::Hashable
1091
+
1092
+ # Optional. If `false` (default): The operation will fail if any Repository
1093
+ # within the folder hierarchy has associated Release Configs or Workflow Configs.
1094
+ # If `true`: The operation will attempt to delete everything, including any
1095
+ # Release Configs and Workflow Configs linked to Repositories within the folder
1096
+ # hierarchy. This permanently removes schedules and resources.
1097
+ # Corresponds to the JSON property `force`
1098
+ # @return [Boolean]
1099
+ attr_accessor :force
1100
+ alias_method :force?, :force
1101
+
1102
+ def initialize(**args)
1103
+ update!(**args)
1104
+ end
1105
+
1106
+ # Update properties of this object
1107
+ def update!(**args)
1108
+ @force = args[:force] if args.key?(:force)
1109
+ end
1110
+ end
1111
+
1064
1112
  # Represents a single entry in a directory.
1065
1113
  class DirectoryEntry
1066
1114
  include Google::Apis::Core::Hashable
@@ -1075,6 +1123,11 @@ module Google
1075
1123
  # @return [String]
1076
1124
  attr_accessor :file
1077
1125
 
1126
+ # Represents metadata for a single entry in a filesystem.
1127
+ # Corresponds to the JSON property `metadata`
1128
+ # @return [Google::Apis::DataformV1beta1::FilesystemEntryMetadata]
1129
+ attr_accessor :metadata
1130
+
1078
1131
  def initialize(**args)
1079
1132
  update!(**args)
1080
1133
  end
@@ -1083,6 +1136,7 @@ module Google
1083
1136
  def update!(**args)
1084
1137
  @directory = args[:directory] if args.key?(:directory)
1085
1138
  @file = args[:file] if args.key?(:file)
1139
+ @metadata = args[:metadata] if args.key?(:metadata)
1086
1140
  end
1087
1141
  end
1088
1142
 
@@ -1354,6 +1408,32 @@ module Google
1354
1408
  end
1355
1409
  end
1356
1410
 
1411
+ # Represents metadata for a single entry in a filesystem.
1412
+ class FilesystemEntryMetadata
1413
+ include Google::Apis::Core::Hashable
1414
+
1415
+ # Output only. Provides the size of the entry in bytes. For directories, this
1416
+ # will be 0.
1417
+ # Corresponds to the JSON property `sizeBytes`
1418
+ # @return [Fixnum]
1419
+ attr_accessor :size_bytes
1420
+
1421
+ # Output only. Represents the time of the last modification of the entry.
1422
+ # Corresponds to the JSON property `updateTime`
1423
+ # @return [String]
1424
+ attr_accessor :update_time
1425
+
1426
+ def initialize(**args)
1427
+ update!(**args)
1428
+ end
1429
+
1430
+ # Update properties of this object
1431
+ def update!(**args)
1432
+ @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
1433
+ @update_time = args[:update_time] if args.key?(:update_time)
1434
+ end
1435
+ end
1436
+
1357
1437
  # Represents a Dataform Folder. This is a resource that is used to organize
1358
1438
  # Files and other Folders and provide hierarchical access controls.
1359
1439
  class Folder
@@ -1361,9 +1441,8 @@ module Google
1361
1441
 
1362
1442
  # Optional. The containing Folder resource name. This should take the format:
1363
1443
  # projects/`project`/locations/`location`/folders/`folder`, projects/`project`/
1364
- # locations/`location`/teamFolders/`teamFolder`, or just projects/`project`/
1365
- # locations/`location` if this is a root Folder. This field can only be updated
1366
- # through MoveFolder.
1444
+ # locations/`location`/teamFolders/`teamFolder`, or just "" if this is a root
1445
+ # Folder. This field can only be updated through MoveFolder.
1367
1446
  # Corresponds to the JSON property `containingFolder`
1368
1447
  # @return [String]
1369
1448
  attr_accessor :containing_folder
@@ -1462,7 +1541,8 @@ module Google
1462
1541
  # @return [String]
1463
1542
  attr_accessor :authentication_token_secret_version
1464
1543
 
1465
- # Required. The Git remote's default branch name.
1544
+ # Required. The Git remote's default branch name. If not set, `main` will be
1545
+ # used and stored for the repository.
1466
1546
  # Corresponds to the JSON property `defaultBranch`
1467
1547
  # @return [String]
1468
1548
  attr_accessor :default_branch
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1beta1
18
18
  # Version of the google-apis-dataform_v1beta1 gem
19
- GEM_VERSION = "0.55.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260217"
25
+ REVISION = "20260409"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,18 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class DeleteFolderTreeRequest
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class DeleteTeamFolderTreeRequest
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
205
217
  class DirectoryEntry
206
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
219
 
@@ -274,6 +286,12 @@ module Google
274
286
  include Google::Apis::Core::JsonObjectSupport
275
287
  end
276
288
 
289
+ class FilesystemEntryMetadata
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
277
295
  class Folder
278
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
297
 
@@ -1094,11 +1112,27 @@ module Google
1094
1112
  end
1095
1113
  end
1096
1114
 
1115
+ class DeleteFolderTreeRequest
1116
+ # @private
1117
+ class Representation < Google::Apis::Core::JsonRepresentation
1118
+ property :force, as: 'force'
1119
+ end
1120
+ end
1121
+
1122
+ class DeleteTeamFolderTreeRequest
1123
+ # @private
1124
+ class Representation < Google::Apis::Core::JsonRepresentation
1125
+ property :force, as: 'force'
1126
+ end
1127
+ end
1128
+
1097
1129
  class DirectoryEntry
1098
1130
  # @private
1099
1131
  class Representation < Google::Apis::Core::JsonRepresentation
1100
1132
  property :directory, as: 'directory'
1101
1133
  property :file, as: 'file'
1134
+ property :metadata, as: 'metadata', class: Google::Apis::DataformV1beta1::FilesystemEntryMetadata, decorator: Google::Apis::DataformV1beta1::FilesystemEntryMetadata::Representation
1135
+
1102
1136
  end
1103
1137
  end
1104
1138
 
@@ -1190,6 +1224,14 @@ module Google
1190
1224
  end
1191
1225
  end
1192
1226
 
1227
+ class FilesystemEntryMetadata
1228
+ # @private
1229
+ class Representation < Google::Apis::Core::JsonRepresentation
1230
+ property :size_bytes, :numeric_string => true, as: 'sizeBytes'
1231
+ property :update_time, as: 'updateTime'
1232
+ end
1233
+ end
1234
+
1193
1235
  class Folder
1194
1236
  # @private
1195
1237
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -113,10 +113,15 @@ module Google
113
113
  end
114
114
 
115
115
  # Lists information about the supported locations for this service. This method
116
- # can be called in two ways: * **List all public locations:** Use the path `GET /
117
- # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
118
- # projects/`project_id`/locations`. This may include public locations as well as
119
- # private or other locations specifically visible to the project.
116
+ # lists locations based on the resource scope provided in the [
117
+ # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
118
+ # the method lists the public locations available to all projects. * **Project-
119
+ # specific locations**: If `name` follows the format `projects/`project``, the
120
+ # method lists locations visible to that specific project. This includes public,
121
+ # private, or other project-specific locations enabled for the project. For gRPC
122
+ # and client library implementations, the resource name is passed as the `name`
123
+ # field. For direct service calls, the resource name is incorporated into the
124
+ # request path based on the specific service implementation and version.
120
125
  # @param [String] name
121
126
  # The resource that owns the locations collection, if applicable.
122
127
  # @param [Array<String>, String] extra_location_types
@@ -167,17 +172,17 @@ module Google
167
172
  # folder contains all resources that are created by the user and not contained
168
173
  # in any other folder.
169
174
  # @param [String] location
170
- # Required. Location of the user root folder whose contents to list. Format:
175
+ # Required. Location of the user root folder to list contents for. Format:
171
176
  # projects/*/locations/*
172
177
  # @param [String] filter
173
178
  # Optional. Optional filtering for the returned list. Filtering is currently
174
- # only supported on the `display_name` field. Example: - `filter="display_name="
179
+ # only supported on the `display_name` field. Example: * `filter="display_name="
175
180
  # MyFolder""`
176
181
  # @param [String] order_by
177
182
  # Optional. Field to additionally sort results by. Will order Folders before
178
183
  # Repositories, and then by `order_by` in ascending order. Supported keywords:
179
- # display_name (default), created_at, last_modified_at. Examples: - `orderBy="
180
- # display_name"` - `orderBy="display_name desc"`
184
+ # display_name (default), created_at, last_modified_at. Examples: * `orderBy="
185
+ # display_name"` * `orderBy="display_name desc"`
181
186
  # @param [Fixnum] page_size
182
187
  # Optional. Maximum number of paths to return. The server may return fewer items
183
188
  # than requested. If unspecified, the server will pick an appropriate default.
@@ -262,8 +267,9 @@ module Google
262
267
  # projects/*/locations/*`.
263
268
  # @param [Google::Apis::DataformV1beta1::Folder] folder_object
264
269
  # @param [String] folder_id
265
- # The ID to use for the Folder, which will become the final component of the
266
- # Folder's resource name.
270
+ # Deprecated: This field is not used. The resource name is generated
271
+ # automatically. The ID to use for the Folder, which will become the final
272
+ # component of the Folder's resource name.
267
273
  # @param [String] fields
268
274
  # Selector specifying which fields to include in a partial response.
269
275
  # @param [String] quota_user
@@ -324,6 +330,41 @@ module Google
324
330
  execute_or_queue_command(command, &block)
325
331
  end
326
332
 
333
+ # Deletes a Folder with its contents (Folders, Repositories, Workspaces,
334
+ # ReleaseConfigs, and WorkflowConfigs).
335
+ # @param [String] name
336
+ # Required. The Folder's name. Format: projects/`project`/locations/`location`/
337
+ # folders/`folder`
338
+ # @param [Google::Apis::DataformV1beta1::DeleteFolderTreeRequest] delete_folder_tree_request_object
339
+ # @param [String] fields
340
+ # Selector specifying which fields to include in a partial response.
341
+ # @param [String] quota_user
342
+ # Available to use for quota purposes for server-side applications. Can be any
343
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
344
+ # @param [Google::Apis::RequestOptions] options
345
+ # Request-specific options
346
+ #
347
+ # @yield [result, err] Result & error if block supplied
348
+ # @yieldparam result [Google::Apis::DataformV1beta1::Operation] parsed result object
349
+ # @yieldparam err [StandardError] error object if request failed
350
+ #
351
+ # @return [Google::Apis::DataformV1beta1::Operation]
352
+ #
353
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
354
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
355
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
356
+ def delete_project_location_folder_tree(name, delete_folder_tree_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
357
+ command = make_simple_command(:post, 'v1beta1/{+name}:deleteTree', options)
358
+ command.request_representation = Google::Apis::DataformV1beta1::DeleteFolderTreeRequest::Representation
359
+ command.request_object = delete_folder_tree_request_object
360
+ command.response_representation = Google::Apis::DataformV1beta1::Operation::Representation
361
+ command.response_class = Google::Apis::DataformV1beta1::Operation
362
+ command.params['name'] = name unless name.nil?
363
+ command.query['fields'] = fields unless fields.nil?
364
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
365
+ execute_or_queue_command(command, &block)
366
+ end
367
+
327
368
  # Fetches a single Folder.
328
369
  # @param [String] name
329
370
  # Required. The Folder's name.
@@ -473,17 +514,17 @@ module Google
473
514
 
474
515
  # Returns the contents of a given Folder.
475
516
  # @param [String] folder
476
- # Required. Name of the folder whose contents to list. Format: projects/*/
517
+ # Required. Resource name of the Folder to list contents for. Format: projects/*/
477
518
  # locations/*/folders/*
478
519
  # @param [String] filter
479
520
  # Optional. Optional filtering for the returned list. Filtering is currently
480
- # only supported on the `display_name` field. Example: - `filter="display_name="
521
+ # only supported on the `display_name` field. Example: * `filter="display_name="
481
522
  # MyFolder""`
482
523
  # @param [String] order_by
483
524
  # Optional. Field to additionally sort results by. Will order Folders before
484
525
  # Repositories, and then by `order_by` in ascending order. Supported keywords:
485
- # display_name (default), create_time, last_modified_time. Examples: - `orderBy="
486
- # display_name"` - `orderBy="display_name desc"`
526
+ # display_name (default), create_time, last_modified_time. Examples: * `orderBy="
527
+ # display_name"` * `orderBy="display_name desc"`
487
528
  # @param [Fixnum] page_size
488
529
  # Optional. Maximum number of paths to return. The server may return fewer items
489
530
  # than requested. If unspecified, the server will pick an appropriate default.
@@ -2603,6 +2644,11 @@ module Google
2603
2644
  # @param [String] path
2604
2645
  # Optional. The directory's full path including directory name, relative to the
2605
2646
  # workspace root. If left unset, the workspace root is used.
2647
+ # @param [String] view
2648
+ # Optional. Specifies the metadata to return for each directory entry. If
2649
+ # unspecified, the default is `DIRECTORY_CONTENTS_VIEW_BASIC`. Currently the `
2650
+ # DIRECTORY_CONTENTS_VIEW_METADATA` view is not supported by CMEK-protected
2651
+ # workspaces.
2606
2652
  # @param [String] fields
2607
2653
  # Selector specifying which fields to include in a partial response.
2608
2654
  # @param [String] quota_user
@@ -2620,7 +2666,7 @@ module Google
2620
2666
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2621
2667
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2622
2668
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2623
- def query_project_location_repository_workspace_directory_contents(workspace, page_size: nil, page_token: nil, path: nil, fields: nil, quota_user: nil, options: nil, &block)
2669
+ def query_project_location_repository_workspace_directory_contents(workspace, page_size: nil, page_token: nil, path: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
2624
2670
  command = make_simple_command(:get, 'v1beta1/{+workspace}:queryDirectoryContents', options)
2625
2671
  command.response_representation = Google::Apis::DataformV1beta1::QueryDirectoryContentsResponse::Representation
2626
2672
  command.response_class = Google::Apis::DataformV1beta1::QueryDirectoryContentsResponse
@@ -2628,6 +2674,7 @@ module Google
2628
2674
  command.query['pageSize'] = page_size unless page_size.nil?
2629
2675
  command.query['pageToken'] = page_token unless page_token.nil?
2630
2676
  command.query['path'] = path unless path.nil?
2677
+ command.query['view'] = view unless view.nil?
2631
2678
  command.query['fields'] = fields unless fields.nil?
2632
2679
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2633
2680
  execute_or_queue_command(command, &block)
@@ -2931,8 +2978,9 @@ module Google
2931
2978
  # format `projects/*/locations/*`.
2932
2979
  # @param [Google::Apis::DataformV1beta1::TeamFolder] team_folder_object
2933
2980
  # @param [String] team_folder_id
2934
- # The ID to use for the TeamFolder, which will become the final component of the
2935
- # TeamFolder's resource name.
2981
+ # Deprecated: This field is not used. The resource name is generated
2982
+ # automatically. The ID to use for the TeamFolder, which will become the final
2983
+ # component of the TeamFolder's resource name.
2936
2984
  # @param [String] fields
2937
2985
  # Selector specifying which fields to include in a partial response.
2938
2986
  # @param [String] quota_user
@@ -2993,6 +3041,41 @@ module Google
2993
3041
  execute_or_queue_command(command, &block)
2994
3042
  end
2995
3043
 
3044
+ # Deletes a TeamFolder with its contents (Folders, Repositories, Workspaces,
3045
+ # ReleaseConfigs, and WorkflowConfigs).
3046
+ # @param [String] name
3047
+ # Required. The TeamFolder's name. Format: projects/`project`/locations/`
3048
+ # location`/teamFolders/`team_folder`
3049
+ # @param [Google::Apis::DataformV1beta1::DeleteTeamFolderTreeRequest] delete_team_folder_tree_request_object
3050
+ # @param [String] fields
3051
+ # Selector specifying which fields to include in a partial response.
3052
+ # @param [String] quota_user
3053
+ # Available to use for quota purposes for server-side applications. Can be any
3054
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3055
+ # @param [Google::Apis::RequestOptions] options
3056
+ # Request-specific options
3057
+ #
3058
+ # @yield [result, err] Result & error if block supplied
3059
+ # @yieldparam result [Google::Apis::DataformV1beta1::Operation] parsed result object
3060
+ # @yieldparam err [StandardError] error object if request failed
3061
+ #
3062
+ # @return [Google::Apis::DataformV1beta1::Operation]
3063
+ #
3064
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3065
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3066
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3067
+ def delete_project_location_team_folder_tree(name, delete_team_folder_tree_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3068
+ command = make_simple_command(:post, 'v1beta1/{+name}:deleteTree', options)
3069
+ command.request_representation = Google::Apis::DataformV1beta1::DeleteTeamFolderTreeRequest::Representation
3070
+ command.request_object = delete_team_folder_tree_request_object
3071
+ command.response_representation = Google::Apis::DataformV1beta1::Operation::Representation
3072
+ command.response_class = Google::Apis::DataformV1beta1::Operation
3073
+ command.params['name'] = name unless name.nil?
3074
+ command.query['fields'] = fields unless fields.nil?
3075
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3076
+ execute_or_queue_command(command, &block)
3077
+ end
3078
+
2996
3079
  # Fetches a single TeamFolder.
2997
3080
  # @param [String] name
2998
3081
  # Required. The TeamFolder's name.
@@ -3107,17 +3190,17 @@ module Google
3107
3190
 
3108
3191
  # Returns the contents of a given TeamFolder.
3109
3192
  # @param [String] team_folder
3110
- # Required. Name of the team_folder whose contents to list. Format: `projects/*/
3111
- # locations/*/teamFolders/*`.
3193
+ # Required. Resource name of the TeamFolder to list contents for. Format: `
3194
+ # projects/*/locations/*/teamFolders/*`.
3112
3195
  # @param [String] filter
3113
3196
  # Optional. Optional filtering for the returned list. Filtering is currently
3114
- # only supported on the `display_name` field. Example: - `filter="display_name="
3197
+ # only supported on the `display_name` field. Example: * `filter="display_name="
3115
3198
  # MyFolder""`
3116
3199
  # @param [String] order_by
3117
3200
  # Optional. Field to additionally sort results by. Will order Folders before
3118
3201
  # Repositories, and then by `order_by` in ascending order. Supported keywords: `
3119
- # display_name` (default), `create_time`, last_modified_time. Examples: - `
3120
- # orderBy="display_name"` - `orderBy="display_name desc"`
3202
+ # display_name` (default), `create_time`, last_modified_time. Examples: * `
3203
+ # orderBy="display_name"` * `orderBy="display_name desc"`
3121
3204
  # @param [Fixnum] page_size
3122
3205
  # Optional. Maximum number of paths to return. The server may return fewer items
3123
3206
  # than requested. If unspecified, the server will pick an appropriate default.
@@ -3164,12 +3247,12 @@ module Google
3164
3247
  # locations/*`.
3165
3248
  # @param [String] filter
3166
3249
  # Optional. Optional filtering for the returned list. Filtering is currently
3167
- # only supported on the `display_name` field. Example: - `filter="display_name="
3250
+ # only supported on the `display_name` field. Example: * `filter="display_name="
3168
3251
  # MyFolder""`
3169
3252
  # @param [String] order_by
3170
3253
  # Optional. Field to additionally sort results by. Supported keywords: `
3171
- # display_name` (default), `create_time`, `last_modified_time`. Examples: - `
3172
- # orderBy="display_name"` - `orderBy="display_name desc"`
3254
+ # display_name` (default), `create_time`, `last_modified_time`. Examples: * `
3255
+ # orderBy="display_name"` * `orderBy="display_name desc"`
3173
3256
  # @param [Fixnum] page_size
3174
3257
  # Optional. Maximum number of TeamFolders to return. The server may return fewer
3175
3258
  # items than requested. If unspecified, the server will pick an appropriate
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.55.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.57.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: