google-apis-dataform_v1beta1 0.56.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67469aefa756b79b1084df8b139b389995ec51a76737aa7733099d006128dfdb
|
|
4
|
+
data.tar.gz: b74a50cc9b793a46062897500d6e68c6be5002202a47cb959e33e18f06f45eed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2a00259b6222689b8cc5ba4c23e9b660bb146f93ef67f74665180b9af9dc02ff451b0b3dbfcee32e7ebd3bed07f689bd36f091a91475423c596cd1f2e09e844
|
|
7
|
+
data.tar.gz: 7c01b6c1e45ff4d236691b9e26831d2d4b3041211e2c5bf43bf9b73adeeed577fb2d153facf5bffb587f51e6c76a9e8e0cb4ebeddaa63862b96f5773124155db
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -1393,9 +1441,8 @@ module Google
|
|
|
1393
1441
|
|
|
1394
1442
|
# Optional. The containing Folder resource name. This should take the format:
|
|
1395
1443
|
# projects/`project`/locations/`location`/folders/`folder`, projects/`project`/
|
|
1396
|
-
# locations/`location`/teamFolders/`teamFolder`, or just
|
|
1397
|
-
#
|
|
1398
|
-
# through MoveFolder.
|
|
1444
|
+
# locations/`location`/teamFolders/`teamFolder`, or just "" if this is a root
|
|
1445
|
+
# Folder. This field can only be updated through MoveFolder.
|
|
1399
1446
|
# Corresponds to the JSON property `containingFolder`
|
|
1400
1447
|
# @return [String]
|
|
1401
1448
|
attr_accessor :containing_folder
|
|
@@ -1494,7 +1541,8 @@ module Google
|
|
|
1494
1541
|
# @return [String]
|
|
1495
1542
|
attr_accessor :authentication_token_secret_version
|
|
1496
1543
|
|
|
1497
|
-
# 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.
|
|
1498
1546
|
# Corresponds to the JSON property `defaultBranch`
|
|
1499
1547
|
# @return [String]
|
|
1500
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.
|
|
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 = "
|
|
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
|
|
|
@@ -1100,6 +1112,20 @@ module Google
|
|
|
1100
1112
|
end
|
|
1101
1113
|
end
|
|
1102
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
|
+
|
|
1103
1129
|
class DirectoryEntry
|
|
1104
1130
|
# @private
|
|
1105
1131
|
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
|
-
#
|
|
117
|
-
#
|
|
118
|
-
#
|
|
119
|
-
#
|
|
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
|
|
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:
|
|
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:
|
|
180
|
-
# display_name"`
|
|
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
|
-
#
|
|
266
|
-
# Folder
|
|
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.
|
|
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:
|
|
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:
|
|
486
|
-
# display_name"`
|
|
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.
|
|
@@ -2937,8 +2978,9 @@ module Google
|
|
|
2937
2978
|
# format `projects/*/locations/*`.
|
|
2938
2979
|
# @param [Google::Apis::DataformV1beta1::TeamFolder] team_folder_object
|
|
2939
2980
|
# @param [String] team_folder_id
|
|
2940
|
-
#
|
|
2941
|
-
# TeamFolder
|
|
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.
|
|
2942
2984
|
# @param [String] fields
|
|
2943
2985
|
# Selector specifying which fields to include in a partial response.
|
|
2944
2986
|
# @param [String] quota_user
|
|
@@ -2999,6 +3041,41 @@ module Google
|
|
|
2999
3041
|
execute_or_queue_command(command, &block)
|
|
3000
3042
|
end
|
|
3001
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
|
+
|
|
3002
3079
|
# Fetches a single TeamFolder.
|
|
3003
3080
|
# @param [String] name
|
|
3004
3081
|
# Required. The TeamFolder's name.
|
|
@@ -3113,17 +3190,17 @@ module Google
|
|
|
3113
3190
|
|
|
3114
3191
|
# Returns the contents of a given TeamFolder.
|
|
3115
3192
|
# @param [String] team_folder
|
|
3116
|
-
# Required.
|
|
3117
|
-
# locations/*/teamFolders/*`.
|
|
3193
|
+
# Required. Resource name of the TeamFolder to list contents for. Format: `
|
|
3194
|
+
# projects/*/locations/*/teamFolders/*`.
|
|
3118
3195
|
# @param [String] filter
|
|
3119
3196
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
3120
|
-
# only supported on the `display_name` field. Example:
|
|
3197
|
+
# only supported on the `display_name` field. Example: * `filter="display_name="
|
|
3121
3198
|
# MyFolder""`
|
|
3122
3199
|
# @param [String] order_by
|
|
3123
3200
|
# Optional. Field to additionally sort results by. Will order Folders before
|
|
3124
3201
|
# 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"`
|
|
3202
|
+
# display_name` (default), `create_time`, last_modified_time. Examples: * `
|
|
3203
|
+
# orderBy="display_name"` * `orderBy="display_name desc"`
|
|
3127
3204
|
# @param [Fixnum] page_size
|
|
3128
3205
|
# Optional. Maximum number of paths to return. The server may return fewer items
|
|
3129
3206
|
# than requested. If unspecified, the server will pick an appropriate default.
|
|
@@ -3170,12 +3247,12 @@ module Google
|
|
|
3170
3247
|
# locations/*`.
|
|
3171
3248
|
# @param [String] filter
|
|
3172
3249
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
3173
|
-
# only supported on the `display_name` field. Example:
|
|
3250
|
+
# only supported on the `display_name` field. Example: * `filter="display_name="
|
|
3174
3251
|
# MyFolder""`
|
|
3175
3252
|
# @param [String] order_by
|
|
3176
3253
|
# Optional. Field to additionally sort results by. Supported keywords: `
|
|
3177
|
-
# display_name` (default), `create_time`, `last_modified_time`. Examples:
|
|
3178
|
-
# orderBy="display_name"`
|
|
3254
|
+
# display_name` (default), `create_time`, `last_modified_time`. Examples: * `
|
|
3255
|
+
# orderBy="display_name"` * `orderBy="display_name desc"`
|
|
3179
3256
|
# @param [Fixnum] page_size
|
|
3180
3257
|
# Optional. Maximum number of TeamFolders to return. The server may return fewer
|
|
3181
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.
|
|
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.
|
|
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:
|