google-apis-dataform_v1beta1 0.56.0 → 0.58.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: 793073fbc9eff923ba53beb6714ebb652497676cb02366ffb0fd89ec4f363d7d
4
- data.tar.gz: 41bb16abb3622c2070b1ca098bfba9eda86278243dd196274f58e00e30222ad9
3
+ metadata.gz: cbab037c7a9ff7726cc5f6d784c4afa19bc0a093d435699636cb1f4b4abf3793
4
+ data.tar.gz: c8d7fd733da2716ca1c063595518acb9fe31961dca2e03bf7360ff3be42b4c1a
5
5
  SHA512:
6
- metadata.gz: f16e1a542c85f6efba9eb1a245ddeba71bd64d14f1c5da7acca76c0e5d0457f8e2f3987b428473e0f03837d2b371fb303e7d3e6c496b65449ae017711a187a18
7
- data.tar.gz: df0cafba6bc0023e0d8218c373edf841872a17fc6ab73a2d5b32175802ea35e4d7f5a1d287ed157b438ea63e5ab1d8abb1de1a96e75ff847545355fdafd98480
6
+ metadata.gz: 05e8d48c1147455391c9f451b503e92cabb03b7c38a9dfeecd998ac3b169c67d18a92612a7d7d011f3010f03005db4c4aa8269e21c92cbad11f9ebf582247b1e
7
+ data.tar.gz: 81b033e2b8f9da86b714b852ff8f2195f50f407de7068b9ef643cc6a4c4016b2f33b556372e6567fce399539f219101bc79bf944a8ce48f38ab24abfb4e1b5cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.58.0 (2026-05-24)
4
+
5
+ * Regenerated from discovery document revision 20260515
6
+
7
+ ### v0.57.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260409
10
+
3
11
  ### v0.56.0 (2026-03-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20260317
@@ -1061,16 +1061,91 @@ 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
+ # `DeleteRepositoryLongRunning` request message.
1089
+ class DeleteRepositoryLongRunningRequest
1090
+ include Google::Apis::Core::Hashable
1091
+
1092
+ # Optional. If set to true, child resources of this repository (compilation
1093
+ # results and workflow invocations) will also be deleted. Otherwise, the request
1094
+ # will only succeed if the repository has no child resources. **Note:** *This
1095
+ # flag doesn't support deletion of workspaces, release configs or workflow
1096
+ # configs. If any of such resources exists in the repository, the request will
1097
+ # fail.*
1098
+ # Corresponds to the JSON property `force`
1099
+ # @return [Boolean]
1100
+ attr_accessor :force
1101
+ alias_method :force?, :force
1102
+
1103
+ def initialize(**args)
1104
+ update!(**args)
1105
+ end
1106
+
1107
+ # Update properties of this object
1108
+ def update!(**args)
1109
+ @force = args[:force] if args.key?(:force)
1110
+ end
1111
+ end
1112
+
1113
+ # `DeleteTeamFolderTree` request message.
1114
+ class DeleteTeamFolderTreeRequest
1115
+ include Google::Apis::Core::Hashable
1116
+
1117
+ # Optional. If `false` (default): The operation will fail if any Repository
1118
+ # within the folder hierarchy has associated Release Configs or Workflow Configs.
1119
+ # If `true`: The operation will attempt to delete everything, including any
1120
+ # Release Configs and Workflow Configs linked to Repositories within the folder
1121
+ # hierarchy. This permanently removes schedules and resources.
1122
+ # Corresponds to the JSON property `force`
1123
+ # @return [Boolean]
1124
+ attr_accessor :force
1125
+ alias_method :force?, :force
1126
+
1127
+ def initialize(**args)
1128
+ update!(**args)
1129
+ end
1130
+
1131
+ # Update properties of this object
1132
+ def update!(**args)
1133
+ @force = args[:force] if args.key?(:force)
1134
+ end
1135
+ end
1136
+
1064
1137
  # Represents a single entry in a directory.
1065
1138
  class DirectoryEntry
1066
1139
  include Google::Apis::Core::Hashable
1067
1140
 
1068
- # A child directory in the directory.
1141
+ # A child directory in the directory. The path is returned including the full
1142
+ # folder structure from the root.
1069
1143
  # Corresponds to the JSON property `directory`
1070
1144
  # @return [String]
1071
1145
  attr_accessor :directory
1072
1146
 
1073
- # A file in the directory.
1147
+ # A file in the directory. The path is returned including the full folder
1148
+ # structure from the root.
1074
1149
  # Corresponds to the JSON property `file`
1075
1150
  # @return [String]
1076
1151
  attr_accessor :file
@@ -1393,9 +1468,8 @@ module Google
1393
1468
 
1394
1469
  # Optional. The containing Folder resource name. This should take the format:
1395
1470
  # projects/`project`/locations/`location`/folders/`folder`, projects/`project`/
1396
- # locations/`location`/teamFolders/`teamFolder`, or just projects/`project`/
1397
- # locations/`location` if this is a root Folder. This field can only be updated
1398
- # through MoveFolder.
1471
+ # locations/`location`/teamFolders/`teamFolder`, or just "" if this is a root
1472
+ # Folder. This field can only be updated through MoveFolder.
1399
1473
  # Corresponds to the JSON property `containingFolder`
1400
1474
  # @return [String]
1401
1475
  attr_accessor :containing_folder
@@ -1494,11 +1568,17 @@ module Google
1494
1568
  # @return [String]
1495
1569
  attr_accessor :authentication_token_secret_version
1496
1570
 
1497
- # Required. The Git remote's default branch name.
1571
+ # Optional. The Git remote's default branch name. If not set `main` will be used.
1498
1572
  # Corresponds to the JSON property `defaultBranch`
1499
1573
  # @return [String]
1500
1574
  attr_accessor :default_branch
1501
1575
 
1576
+ # Output only. The Git remote's effective default branch name. This is the
1577
+ # default branch name of the Git remote if it is set, otherwise it is `main`.
1578
+ # Corresponds to the JSON property `effectiveDefaultBranch`
1579
+ # @return [String]
1580
+ attr_accessor :effective_default_branch
1581
+
1502
1582
  # Configures fields for performing SSH authentication.
1503
1583
  # Corresponds to the JSON property `sshAuthenticationConfig`
1504
1584
  # @return [Google::Apis::DataformV1beta1::SshAuthenticationConfig]
@@ -1524,6 +1604,7 @@ module Google
1524
1604
  def update!(**args)
1525
1605
  @authentication_token_secret_version = args[:authentication_token_secret_version] if args.key?(:authentication_token_secret_version)
1526
1606
  @default_branch = args[:default_branch] if args.key?(:default_branch)
1607
+ @effective_default_branch = args[:effective_default_branch] if args.key?(:effective_default_branch)
1527
1608
  @ssh_authentication_config = args[:ssh_authentication_config] if args.key?(:ssh_authentication_config)
1528
1609
  @token_status = args[:token_status] if args.key?(:token_status)
1529
1610
  @url = args[:url] if args.key?(:url)
@@ -1769,7 +1850,8 @@ module Google
1769
1850
  # @return [String]
1770
1851
  attr_accessor :next_page_token
1771
1852
 
1772
- # Locations which could not be reached.
1853
+ # Locations which could not be reached. LINT.ThenChange(//depot/google3/google/
1854
+ # cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsResponse)
1773
1855
  # Corresponds to the JSON property `unreachable`
1774
1856
  # @return [Array<String>]
1775
1857
  attr_accessor :unreachable
@@ -1860,7 +1942,8 @@ module Google
1860
1942
  # @return [Array<Google::Apis::DataformV1beta1::ReleaseConfig>]
1861
1943
  attr_accessor :release_configs
1862
1944
 
1863
- # Locations which could not be reached.
1945
+ # Locations which could not be reached. LINT.ThenChange(//depot/google3/google/
1946
+ # cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsResponse)
1864
1947
  # Corresponds to the JSON property `unreachable`
1865
1948
  # @return [Array<String>]
1866
1949
  attr_accessor :unreachable
@@ -2291,9 +2374,9 @@ module Google
2291
2374
  # @return [String]
2292
2375
  attr_accessor :contents
2293
2376
 
2294
- # Output only. The ID of the Vertex job that executed the notebook in contents
2295
- # and also the ID used for the outputs created in Google Cloud Storage buckets.
2296
- # Only set once the job has started to run.
2377
+ # Output only. The ID of the Gemini Enterprise Agent Platform job that executed
2378
+ # the notebook in contents and also the ID used for the outputs created in
2379
+ # Google Cloud Storage buckets. Only set once the job has started to run.
2297
2380
  # Corresponds to the JSON property `jobId`
2298
2381
  # @return [String]
2299
2382
  attr_accessor :job_id
@@ -3147,7 +3230,8 @@ module Google
3147
3230
 
3148
3231
  # Output only. All the metadata information that is used internally to serve the
3149
3232
  # resource. For example: timestamps, flags, status fields, etc. The format of
3150
- # this field is a JSON string.
3233
+ # this field is a JSON string. LINT.ThenChange(//depot/google3/google/cloud/
3234
+ # dataform/v2main/data_pipelines.proto:ReleaseConfig)
3151
3235
  # Corresponds to the JSON property `internalMetadata`
3152
3236
  # @return [String]
3153
3237
  attr_accessor :internal_metadata
@@ -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.56.0"
19
+ GEM_VERSION = "0.58.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 = "20260317"
25
+ REVISION = "20260515"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,24 @@ 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 DeleteRepositoryLongRunningRequest
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class DeleteTeamFolderTreeRequest
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
205
223
  class DirectoryEntry
206
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
225
 
@@ -1100,6 +1118,27 @@ module Google
1100
1118
  end
1101
1119
  end
1102
1120
 
1121
+ class DeleteFolderTreeRequest
1122
+ # @private
1123
+ class Representation < Google::Apis::Core::JsonRepresentation
1124
+ property :force, as: 'force'
1125
+ end
1126
+ end
1127
+
1128
+ class DeleteRepositoryLongRunningRequest
1129
+ # @private
1130
+ class Representation < Google::Apis::Core::JsonRepresentation
1131
+ property :force, as: 'force'
1132
+ end
1133
+ end
1134
+
1135
+ class DeleteTeamFolderTreeRequest
1136
+ # @private
1137
+ class Representation < Google::Apis::Core::JsonRepresentation
1138
+ property :force, as: 'force'
1139
+ end
1140
+ end
1141
+
1103
1142
  class DirectoryEntry
1104
1143
  # @private
1105
1144
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1235,6 +1274,7 @@ module Google
1235
1274
  class Representation < Google::Apis::Core::JsonRepresentation
1236
1275
  property :authentication_token_secret_version, as: 'authenticationTokenSecretVersion'
1237
1276
  property :default_branch, as: 'defaultBranch'
1277
+ property :effective_default_branch, as: 'effectiveDefaultBranch'
1238
1278
  property :ssh_authentication_config, as: 'sshAuthenticationConfig', class: Google::Apis::DataformV1beta1::SshAuthenticationConfig, decorator: Google::Apis::DataformV1beta1::SshAuthenticationConfig::Representation
1239
1279
 
1240
1280
  property :token_status, as: 'tokenStatus'
@@ -113,15 +113,20 @@ 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
123
- # Optional. Do not use this field. It is unsupported and is ignored unless
124
- # explicitly documented otherwise. This is primarily for internal usage.
128
+ # Optional. Do not use this field unless explicitly documented otherwise. This
129
+ # is primarily for internal usage.
125
130
  # @param [String] filter
126
131
  # A filter to narrow down results to a preferred subset. The filtering language
127
132
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -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.
@@ -892,6 +933,39 @@ module Google
892
933
  execute_or_queue_command(command, &block)
893
934
  end
894
935
 
936
+ # Deletes a single Repository asynchronously.
937
+ # @param [String] name
938
+ # Required. The repository's name.
939
+ # @param [Google::Apis::DataformV1beta1::DeleteRepositoryLongRunningRequest] delete_repository_long_running_request_object
940
+ # @param [String] fields
941
+ # Selector specifying which fields to include in a partial response.
942
+ # @param [String] quota_user
943
+ # Available to use for quota purposes for server-side applications. Can be any
944
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
945
+ # @param [Google::Apis::RequestOptions] options
946
+ # Request-specific options
947
+ #
948
+ # @yield [result, err] Result & error if block supplied
949
+ # @yieldparam result [Google::Apis::DataformV1beta1::Operation] parsed result object
950
+ # @yieldparam err [StandardError] error object if request failed
951
+ #
952
+ # @return [Google::Apis::DataformV1beta1::Operation]
953
+ #
954
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
955
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
956
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
957
+ def delete_project_location_repository_long_running(name, delete_repository_long_running_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
958
+ command = make_simple_command(:post, 'v1beta1/{+name}:deleteLongRunning', options)
959
+ command.request_representation = Google::Apis::DataformV1beta1::DeleteRepositoryLongRunningRequest::Representation
960
+ command.request_object = delete_repository_long_running_request_object
961
+ command.response_representation = Google::Apis::DataformV1beta1::Operation::Representation
962
+ command.response_class = Google::Apis::DataformV1beta1::Operation
963
+ command.params['name'] = name unless name.nil?
964
+ command.query['fields'] = fields unless fields.nil?
965
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
966
+ execute_or_queue_command(command, &block)
967
+ end
968
+
895
969
  # Fetches a Repository's history of commits. The Repository must not have a
896
970
  # value for `git_remote_settings.url`.
897
971
  # @param [String] name
@@ -1364,7 +1438,8 @@ module Google
1364
1438
 
1365
1439
  # Fetches a single CompilationResult.
1366
1440
  # @param [String] name
1367
- # Required. The compilation result's name.
1441
+ # Required. The compilation result's name. LINT.ThenChange(//depot/google3/
1442
+ # google/cloud/dataform/v2main/data_pipelines.proto:GetCompilationResultRequest)
1368
1443
  # @param [String] fields
1369
1444
  # Selector specifying which fields to include in a partial response.
1370
1445
  # @param [String] quota_user
@@ -1397,7 +1472,8 @@ module Google
1397
1472
  # Required. The repository in which to list compilation results. Must be in the
1398
1473
  # format `projects/*/locations/*/repositories/*`.
1399
1474
  # @param [String] filter
1400
- # Optional. Filter for the returned list.
1475
+ # Optional. Filter for the returned list. LINT.ThenChange(//depot/google3/google/
1476
+ # cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsRequest)
1401
1477
  # @param [String] order_by
1402
1478
  # Optional. This field only supports ordering by `name` and `create_time`. If
1403
1479
  # unspecified, the server will choose the ordering. If specified, the default
@@ -1494,7 +1570,9 @@ module Google
1494
1570
  # @param [Google::Apis::DataformV1beta1::ReleaseConfig] release_config_object
1495
1571
  # @param [String] release_config_id
1496
1572
  # Required. The ID to use for the release config, which will become the final
1497
- # component of the release config's resource name.
1573
+ # component of the release config's resource name. LINT.ThenChange(//depot/
1574
+ # google3/google/cloud/dataform/v2main/data_pipelines.proto:
1575
+ # CreateReleaseConfigRequest)
1498
1576
  # @param [String] fields
1499
1577
  # Selector specifying which fields to include in a partial response.
1500
1578
  # @param [String] quota_user
@@ -1527,7 +1605,8 @@ module Google
1527
1605
 
1528
1606
  # Deletes a single ReleaseConfig.
1529
1607
  # @param [String] name
1530
- # Required. The release config's name.
1608
+ # Required. The release config's name. LINT.ThenChange(//depot/google3/google/
1609
+ # cloud/dataform/v2main/data_pipelines.proto:DeleteReleaseConfigRequest)
1531
1610
  # @param [String] fields
1532
1611
  # Selector specifying which fields to include in a partial response.
1533
1612
  # @param [String] quota_user
@@ -1557,7 +1636,8 @@ module Google
1557
1636
 
1558
1637
  # Fetches a single ReleaseConfig.
1559
1638
  # @param [String] name
1560
- # Required. The release config's name.
1639
+ # Required. The release config's name. LINT.ThenChange(//depot/google3/google/
1640
+ # cloud/dataform/v2main/data_pipelines.proto:GetReleaseConfigRequest)
1561
1641
  # @param [String] fields
1562
1642
  # Selector specifying which fields to include in a partial response.
1563
1643
  # @param [String] quota_user
@@ -1597,7 +1677,9 @@ module Google
1597
1677
  # Optional. Page token received from a previous `ListReleaseConfigs` call.
1598
1678
  # Provide this to retrieve the subsequent page. When paginating, all other
1599
1679
  # parameters provided to `ListReleaseConfigs`, with the exception of `page_size`,
1600
- # must match the call that provided the page token.
1680
+ # must match the call that provided the page token. LINT.ThenChange(//depot/
1681
+ # google3/google/cloud/dataform/v2main/data_pipelines.proto:
1682
+ # ListReleaseConfigsRequest)
1601
1683
  # @param [String] fields
1602
1684
  # Selector specifying which fields to include in a partial response.
1603
1685
  # @param [String] quota_user
@@ -2937,8 +3019,9 @@ module Google
2937
3019
  # format `projects/*/locations/*`.
2938
3020
  # @param [Google::Apis::DataformV1beta1::TeamFolder] team_folder_object
2939
3021
  # @param [String] team_folder_id
2940
- # The ID to use for the TeamFolder, which will become the final component of the
2941
- # TeamFolder's resource name.
3022
+ # Deprecated: This field is not used. The resource name is generated
3023
+ # automatically. The ID to use for the TeamFolder, which will become the final
3024
+ # component of the TeamFolder's resource name.
2942
3025
  # @param [String] fields
2943
3026
  # Selector specifying which fields to include in a partial response.
2944
3027
  # @param [String] quota_user
@@ -2999,6 +3082,41 @@ module Google
2999
3082
  execute_or_queue_command(command, &block)
3000
3083
  end
3001
3084
 
3085
+ # Deletes a TeamFolder with its contents (Folders, Repositories, Workspaces,
3086
+ # ReleaseConfigs, and WorkflowConfigs).
3087
+ # @param [String] name
3088
+ # Required. The TeamFolder's name. Format: projects/`project`/locations/`
3089
+ # location`/teamFolders/`team_folder`
3090
+ # @param [Google::Apis::DataformV1beta1::DeleteTeamFolderTreeRequest] delete_team_folder_tree_request_object
3091
+ # @param [String] fields
3092
+ # Selector specifying which fields to include in a partial response.
3093
+ # @param [String] quota_user
3094
+ # Available to use for quota purposes for server-side applications. Can be any
3095
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3096
+ # @param [Google::Apis::RequestOptions] options
3097
+ # Request-specific options
3098
+ #
3099
+ # @yield [result, err] Result & error if block supplied
3100
+ # @yieldparam result [Google::Apis::DataformV1beta1::Operation] parsed result object
3101
+ # @yieldparam err [StandardError] error object if request failed
3102
+ #
3103
+ # @return [Google::Apis::DataformV1beta1::Operation]
3104
+ #
3105
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3106
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3107
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3108
+ def delete_project_location_team_folder_tree(name, delete_team_folder_tree_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3109
+ command = make_simple_command(:post, 'v1beta1/{+name}:deleteTree', options)
3110
+ command.request_representation = Google::Apis::DataformV1beta1::DeleteTeamFolderTreeRequest::Representation
3111
+ command.request_object = delete_team_folder_tree_request_object
3112
+ command.response_representation = Google::Apis::DataformV1beta1::Operation::Representation
3113
+ command.response_class = Google::Apis::DataformV1beta1::Operation
3114
+ command.params['name'] = name unless name.nil?
3115
+ command.query['fields'] = fields unless fields.nil?
3116
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3117
+ execute_or_queue_command(command, &block)
3118
+ end
3119
+
3002
3120
  # Fetches a single TeamFolder.
3003
3121
  # @param [String] name
3004
3122
  # Required. The TeamFolder's name.
@@ -3113,17 +3231,17 @@ module Google
3113
3231
 
3114
3232
  # Returns the contents of a given TeamFolder.
3115
3233
  # @param [String] team_folder
3116
- # Required. Name of the team_folder whose contents to list. Format: `projects/*/
3117
- # locations/*/teamFolders/*`.
3234
+ # Required. Resource name of the TeamFolder to list contents for. Format: `
3235
+ # projects/*/locations/*/teamFolders/*`.
3118
3236
  # @param [String] filter
3119
3237
  # Optional. Optional filtering for the returned list. Filtering is currently
3120
- # only supported on the `display_name` field. Example: - `filter="display_name="
3238
+ # only supported on the `display_name` field. Example: * `filter="display_name="
3121
3239
  # MyFolder""`
3122
3240
  # @param [String] order_by
3123
3241
  # Optional. Field to additionally sort results by. Will order Folders before
3124
3242
  # Repositories, and then by `order_by` in ascending order. Supported keywords: `
3125
- # display_name` (default), `create_time`, last_modified_time. Examples: - `
3126
- # orderBy="display_name"` - `orderBy="display_name desc"`
3243
+ # display_name` (default), `create_time`, last_modified_time. Examples: * `
3244
+ # orderBy="display_name"` * `orderBy="display_name desc"`
3127
3245
  # @param [Fixnum] page_size
3128
3246
  # Optional. Maximum number of paths to return. The server may return fewer items
3129
3247
  # than requested. If unspecified, the server will pick an appropriate default.
@@ -3170,16 +3288,16 @@ module Google
3170
3288
  # locations/*`.
3171
3289
  # @param [String] filter
3172
3290
  # Optional. Optional filtering for the returned list. Filtering is currently
3173
- # only supported on the `display_name` field. Example: - `filter="display_name="
3291
+ # only supported on the `display_name` field. Example: * `filter="display_name="
3174
3292
  # MyFolder""`
3175
3293
  # @param [String] order_by
3176
3294
  # Optional. Field to additionally sort results by. Supported keywords: `
3177
- # display_name` (default), `create_time`, `last_modified_time`. Examples: - `
3178
- # orderBy="display_name"` - `orderBy="display_name desc"`
3295
+ # display_name` (default), `create_time`, `last_modified_time`. Examples: * `
3296
+ # orderBy="display_name"` * `orderBy="display_name desc"`
3179
3297
  # @param [Fixnum] page_size
3180
3298
  # Optional. Maximum number of TeamFolders to return. The server may return fewer
3181
- # items than requested. If unspecified, the server will pick an appropriate
3182
- # default.
3299
+ # items than requested. If unspecified, the server will pick a default of
3300
+ # page_size = 50.
3183
3301
  # @param [String] page_token
3184
3302
  # Optional. Page token received from a previous `SearchTeamFolders` call.
3185
3303
  # Provide this to retrieve the subsequent page. When paginating, all other
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.56.0
4
+ version: 0.58.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.56.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.58.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: