google-apis-dataform_v1beta1 0.55.0 → 0.56.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: 793073fbc9eff923ba53beb6714ebb652497676cb02366ffb0fd89ec4f363d7d
4
+ data.tar.gz: 41bb16abb3622c2070b1ca098bfba9eda86278243dd196274f58e00e30222ad9
5
5
  SHA512:
6
- metadata.gz: 675235c7f3fca26045468e056ab8588f02363d9e7b4970f327b58f36f7484d312dd6e68dfec52df2c3323208264eee12c8f6121a32a19eeabbb91a70e94892ef
7
- data.tar.gz: 9b5822fc30d9d0988fbd0c103d9e17a5dcad76151fe143a81a09d801a486478a5e2d00acb82a49237d2aab35d4fd5a89c038a8a2343e9a7f843e5a717a9f3b25
6
+ metadata.gz: f16e1a542c85f6efba9eb1a245ddeba71bd64d14f1c5da7acca76c0e5d0457f8e2f3987b428473e0f03837d2b371fb303e7d3e6c496b65449ae017711a187a18
7
+ data.tar.gz: df0cafba6bc0023e0d8218c373edf841872a17fc6ab73a2d5b32175802ea35e4d7f5a1d287ed157b438ea63e5ab1d8abb1de1a96e75ff847545355fdafd98480
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.56.0 (2026-03-22)
4
+
5
+ * Regenerated from discovery document revision 20260317
6
+
3
7
  ### v0.55.0 (2026-02-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20260217
@@ -1075,6 +1075,11 @@ module Google
1075
1075
  # @return [String]
1076
1076
  attr_accessor :file
1077
1077
 
1078
+ # Represents metadata for a single entry in a filesystem.
1079
+ # Corresponds to the JSON property `metadata`
1080
+ # @return [Google::Apis::DataformV1beta1::FilesystemEntryMetadata]
1081
+ attr_accessor :metadata
1082
+
1078
1083
  def initialize(**args)
1079
1084
  update!(**args)
1080
1085
  end
@@ -1083,6 +1088,7 @@ module Google
1083
1088
  def update!(**args)
1084
1089
  @directory = args[:directory] if args.key?(:directory)
1085
1090
  @file = args[:file] if args.key?(:file)
1091
+ @metadata = args[:metadata] if args.key?(:metadata)
1086
1092
  end
1087
1093
  end
1088
1094
 
@@ -1354,6 +1360,32 @@ module Google
1354
1360
  end
1355
1361
  end
1356
1362
 
1363
+ # Represents metadata for a single entry in a filesystem.
1364
+ class FilesystemEntryMetadata
1365
+ include Google::Apis::Core::Hashable
1366
+
1367
+ # Output only. Provides the size of the entry in bytes. For directories, this
1368
+ # will be 0.
1369
+ # Corresponds to the JSON property `sizeBytes`
1370
+ # @return [Fixnum]
1371
+ attr_accessor :size_bytes
1372
+
1373
+ # Output only. Represents the time of the last modification of the entry.
1374
+ # Corresponds to the JSON property `updateTime`
1375
+ # @return [String]
1376
+ attr_accessor :update_time
1377
+
1378
+ def initialize(**args)
1379
+ update!(**args)
1380
+ end
1381
+
1382
+ # Update properties of this object
1383
+ def update!(**args)
1384
+ @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
1385
+ @update_time = args[:update_time] if args.key?(:update_time)
1386
+ end
1387
+ end
1388
+
1357
1389
  # Represents a Dataform Folder. This is a resource that is used to organize
1358
1390
  # Files and other Folders and provide hierarchical access controls.
1359
1391
  class Folder
@@ -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.56.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 = "20260317"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class FilesystemEntryMetadata
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class Folder
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -1099,6 +1105,8 @@ module Google
1099
1105
  class Representation < Google::Apis::Core::JsonRepresentation
1100
1106
  property :directory, as: 'directory'
1101
1107
  property :file, as: 'file'
1108
+ property :metadata, as: 'metadata', class: Google::Apis::DataformV1beta1::FilesystemEntryMetadata, decorator: Google::Apis::DataformV1beta1::FilesystemEntryMetadata::Representation
1109
+
1102
1110
  end
1103
1111
  end
1104
1112
 
@@ -1190,6 +1198,14 @@ module Google
1190
1198
  end
1191
1199
  end
1192
1200
 
1201
+ class FilesystemEntryMetadata
1202
+ # @private
1203
+ class Representation < Google::Apis::Core::JsonRepresentation
1204
+ property :size_bytes, :numeric_string => true, as: 'sizeBytes'
1205
+ property :update_time, as: 'updateTime'
1206
+ end
1207
+ end
1208
+
1193
1209
  class Folder
1194
1210
  # @private
1195
1211
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2603,6 +2603,11 @@ module Google
2603
2603
  # @param [String] path
2604
2604
  # Optional. The directory's full path including directory name, relative to the
2605
2605
  # workspace root. If left unset, the workspace root is used.
2606
+ # @param [String] view
2607
+ # Optional. Specifies the metadata to return for each directory entry. If
2608
+ # unspecified, the default is `DIRECTORY_CONTENTS_VIEW_BASIC`. Currently the `
2609
+ # DIRECTORY_CONTENTS_VIEW_METADATA` view is not supported by CMEK-protected
2610
+ # workspaces.
2606
2611
  # @param [String] fields
2607
2612
  # Selector specifying which fields to include in a partial response.
2608
2613
  # @param [String] quota_user
@@ -2620,7 +2625,7 @@ module Google
2620
2625
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2621
2626
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2622
2627
  # @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)
2628
+ 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
2629
  command = make_simple_command(:get, 'v1beta1/{+workspace}:queryDirectoryContents', options)
2625
2630
  command.response_representation = Google::Apis::DataformV1beta1::QueryDirectoryContentsResponse::Representation
2626
2631
  command.response_class = Google::Apis::DataformV1beta1::QueryDirectoryContentsResponse
@@ -2628,6 +2633,7 @@ module Google
2628
2633
  command.query['pageSize'] = page_size unless page_size.nil?
2629
2634
  command.query['pageToken'] = page_token unless page_token.nil?
2630
2635
  command.query['path'] = path unless path.nil?
2636
+ command.query['view'] = view unless view.nil?
2631
2637
  command.query['fields'] = fields unless fields.nil?
2632
2638
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2633
2639
  execute_or_queue_command(command, &block)
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.56.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.56.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: