google-apis-dataform_v1 0.5.0 → 0.7.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: fde513acaad0468f8c6f6b7a7cd0deb8b64247da461fdab00b0b4bf5d0ab26d6
4
- data.tar.gz: '0381939bfc342d2bae64d9d0472e186b9cefb073cb9b61dc395280d71f888d20'
3
+ metadata.gz: 323f22a05b5a4601ce8cb77810ed275da2741a4a0b74065a4284579c51c0393a
4
+ data.tar.gz: 52ea2c4760c4a7462df9fb8a8e9bba3ded213f80e541eaa01e34681e031ee106
5
5
  SHA512:
6
- metadata.gz: a00c931b807d2b0070ae0ebbd4ca16d3db6479c1b0ebce7e804555e72c27de431461cc51dc1197bcbc78541e54589a8687a23043704689fd88380f6fe5c03539
7
- data.tar.gz: 15a3d114aee59cea2b02caddb328fe47ad1f0ccf971d3bd371191185868a10f1701e6c2031c6297a94a1c422dd663b92aa17643118c560ca7fd31dcceab6af6e
6
+ metadata.gz: cdcc51f412fd91821f7317ba38cf94025e9759de55e59b1da2599358a4f2501e16e2798854d8be5ae0328c231be2d12a070feaf4a17182692d38ef99b63666c3
7
+ data.tar.gz: 15c2123ab418516a9c20a67e0d00d089a6b8c4cbdbe9c5465ade21c5cc446f7024ad0fb161d3ec9db72e7c31791fc0515c65141aa318d24ced824b705912c908
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1
2
2
 
3
+ ### v0.7.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260409
6
+
7
+ ### v0.6.0 (2026-03-22)
8
+
9
+ * Regenerated from discovery document revision 20260317
10
+
3
11
  ### v0.5.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::DataformV1::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,128 @@ 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
+
1437
+ # Represents a Dataform Folder. This is a resource that is used to organize
1438
+ # Files and other Folders and provide hierarchical access controls.
1439
+ class Folder
1440
+ include Google::Apis::Core::Hashable
1441
+
1442
+ # Optional. The containing Folder resource name. This should take the format:
1443
+ # projects/`project`/locations/`location`/folders/`folder`, projects/`project`/
1444
+ # locations/`location`/teamFolders/`teamFolder`, or just "" if this is a root
1445
+ # Folder. This field can only be updated through MoveFolder.
1446
+ # Corresponds to the JSON property `containingFolder`
1447
+ # @return [String]
1448
+ attr_accessor :containing_folder
1449
+
1450
+ # Output only. The timestamp of when the Folder was created.
1451
+ # Corresponds to the JSON property `createTime`
1452
+ # @return [String]
1453
+ attr_accessor :create_time
1454
+
1455
+ # Output only. The IAM principal identifier of the creator of the Folder.
1456
+ # Corresponds to the JSON property `creatorIamPrincipal`
1457
+ # @return [String]
1458
+ attr_accessor :creator_iam_principal
1459
+
1460
+ # Required. The Folder's user-friendly name.
1461
+ # Corresponds to the JSON property `displayName`
1462
+ # @return [String]
1463
+ attr_accessor :display_name
1464
+
1465
+ # Output only. All the metadata information that is used internally to serve the
1466
+ # resource. For example: timestamps, flags, status fields, etc. The format of
1467
+ # this field is a JSON string.
1468
+ # Corresponds to the JSON property `internalMetadata`
1469
+ # @return [String]
1470
+ attr_accessor :internal_metadata
1471
+
1472
+ # Identifier. The Folder's name.
1473
+ # Corresponds to the JSON property `name`
1474
+ # @return [String]
1475
+ attr_accessor :name
1476
+
1477
+ # Output only. The resource name of the TeamFolder that this Folder is
1478
+ # associated with. This should take the format: projects/`project`/locations/`
1479
+ # location`/teamFolders/`teamFolder`. If this is not set, the Folder is not
1480
+ # associated with a TeamFolder and is a UserFolder.
1481
+ # Corresponds to the JSON property `teamFolderName`
1482
+ # @return [String]
1483
+ attr_accessor :team_folder_name
1484
+
1485
+ # Output only. The timestamp of when the Folder was last updated.
1486
+ # Corresponds to the JSON property `updateTime`
1487
+ # @return [String]
1488
+ attr_accessor :update_time
1489
+
1490
+ def initialize(**args)
1491
+ update!(**args)
1492
+ end
1493
+
1494
+ # Update properties of this object
1495
+ def update!(**args)
1496
+ @containing_folder = args[:containing_folder] if args.key?(:containing_folder)
1497
+ @create_time = args[:create_time] if args.key?(:create_time)
1498
+ @creator_iam_principal = args[:creator_iam_principal] if args.key?(:creator_iam_principal)
1499
+ @display_name = args[:display_name] if args.key?(:display_name)
1500
+ @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
1501
+ @name = args[:name] if args.key?(:name)
1502
+ @team_folder_name = args[:team_folder_name] if args.key?(:team_folder_name)
1503
+ @update_time = args[:update_time] if args.key?(:update_time)
1504
+ end
1505
+ end
1506
+
1507
+ # Represents a single content entry.
1508
+ class FolderContentsEntry
1509
+ include Google::Apis::Core::Hashable
1510
+
1511
+ # Represents a Dataform Folder. This is a resource that is used to organize
1512
+ # Files and other Folders and provide hierarchical access controls.
1513
+ # Corresponds to the JSON property `folder`
1514
+ # @return [Google::Apis::DataformV1::Folder]
1515
+ attr_accessor :folder
1516
+
1517
+ # Represents a Dataform Git repository.
1518
+ # Corresponds to the JSON property `repository`
1519
+ # @return [Google::Apis::DataformV1::Repository]
1520
+ attr_accessor :repository
1521
+
1522
+ def initialize(**args)
1523
+ update!(**args)
1524
+ end
1525
+
1526
+ # Update properties of this object
1527
+ def update!(**args)
1528
+ @folder = args[:folder] if args.key?(:folder)
1529
+ @repository = args[:repository] if args.key?(:repository)
1530
+ end
1531
+ end
1532
+
1357
1533
  # Controls Git remote configuration for a repository.
1358
1534
  class GitRemoteSettings
1359
1535
  include Google::Apis::Core::Hashable
@@ -1365,7 +1541,8 @@ module Google
1365
1541
  # @return [String]
1366
1542
  attr_accessor :authentication_token_secret_version
1367
1543
 
1368
- # 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.
1369
1546
  # Corresponds to the JSON property `defaultBranch`
1370
1547
  # @return [String]
1371
1548
  attr_accessor :default_branch
@@ -2072,6 +2249,48 @@ module Google
2072
2249
  end
2073
2250
  end
2074
2251
 
2252
+ # `MoveFolder` request message.
2253
+ class MoveFolderRequest
2254
+ include Google::Apis::Core::Hashable
2255
+
2256
+ # Optional. The name of the Folder, TeamFolder, or root location to move the
2257
+ # Folder to. Can be in the format of: "" to move into the root User folder, `
2258
+ # projects/*/locations/*/folders/*`, `projects/*/locations/*/teamFolders/*`
2259
+ # Corresponds to the JSON property `destinationContainingFolder`
2260
+ # @return [String]
2261
+ attr_accessor :destination_containing_folder
2262
+
2263
+ def initialize(**args)
2264
+ update!(**args)
2265
+ end
2266
+
2267
+ # Update properties of this object
2268
+ def update!(**args)
2269
+ @destination_containing_folder = args[:destination_containing_folder] if args.key?(:destination_containing_folder)
2270
+ end
2271
+ end
2272
+
2273
+ # `MoveRepository` request message.
2274
+ class MoveRepositoryRequest
2275
+ include Google::Apis::Core::Hashable
2276
+
2277
+ # Optional. The name of the Folder, TeamFolder, or root location to move the
2278
+ # repository to. Can be in the format of: "" to move into the root User folder, `
2279
+ # projects/*/locations/*/folders/*`, `projects/*/locations/*/teamFolders/*`
2280
+ # Corresponds to the JSON property `destinationContainingFolder`
2281
+ # @return [String]
2282
+ attr_accessor :destination_containing_folder
2283
+
2284
+ def initialize(**args)
2285
+ update!(**args)
2286
+ end
2287
+
2288
+ # Update properties of this object
2289
+ def update!(**args)
2290
+ @destination_containing_folder = args[:destination_containing_folder] if args.key?(:destination_containing_folder)
2291
+ end
2292
+ end
2293
+
2075
2294
  # Represents a notebook.
2076
2295
  class Notebook
2077
2296
  include Google::Apis::Core::Hashable
@@ -2612,6 +2831,32 @@ module Google
2612
2831
  end
2613
2832
  end
2614
2833
 
2834
+ # `QueryFolderContents` response message.
2835
+ class QueryFolderContentsResponse
2836
+ include Google::Apis::Core::Hashable
2837
+
2838
+ # List of entries in the folder.
2839
+ # Corresponds to the JSON property `entries`
2840
+ # @return [Array<Google::Apis::DataformV1::FolderContentsEntry>]
2841
+ attr_accessor :entries
2842
+
2843
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2844
+ # field is omitted, there are no subsequent pages.
2845
+ # Corresponds to the JSON property `nextPageToken`
2846
+ # @return [String]
2847
+ attr_accessor :next_page_token
2848
+
2849
+ def initialize(**args)
2850
+ update!(**args)
2851
+ end
2852
+
2853
+ # Update properties of this object
2854
+ def update!(**args)
2855
+ @entries = args[:entries] if args.key?(:entries)
2856
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2857
+ end
2858
+ end
2859
+
2615
2860
  # `QueryRepositoryDirectoryContents` response message.
2616
2861
  class QueryRepositoryDirectoryContentsResponse
2617
2862
  include Google::Apis::Core::Hashable
@@ -2638,6 +2883,58 @@ module Google
2638
2883
  end
2639
2884
  end
2640
2885
 
2886
+ # `QueryTeamFolderContents` response message.
2887
+ class QueryTeamFolderContentsResponse
2888
+ include Google::Apis::Core::Hashable
2889
+
2890
+ # List of entries in the TeamFolder.
2891
+ # Corresponds to the JSON property `entries`
2892
+ # @return [Array<Google::Apis::DataformV1::TeamFolderContentsEntry>]
2893
+ attr_accessor :entries
2894
+
2895
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2896
+ # field is omitted, there are no subsequent pages.
2897
+ # Corresponds to the JSON property `nextPageToken`
2898
+ # @return [String]
2899
+ attr_accessor :next_page_token
2900
+
2901
+ def initialize(**args)
2902
+ update!(**args)
2903
+ end
2904
+
2905
+ # Update properties of this object
2906
+ def update!(**args)
2907
+ @entries = args[:entries] if args.key?(:entries)
2908
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2909
+ end
2910
+ end
2911
+
2912
+ # `QueryUserRootContents` response message.
2913
+ class QueryUserRootContentsResponse
2914
+ include Google::Apis::Core::Hashable
2915
+
2916
+ # List of entries in the folder.
2917
+ # Corresponds to the JSON property `entries`
2918
+ # @return [Array<Google::Apis::DataformV1::RootContentsEntry>]
2919
+ attr_accessor :entries
2920
+
2921
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2922
+ # field is omitted, there are no subsequent pages.
2923
+ # Corresponds to the JSON property `nextPageToken`
2924
+ # @return [String]
2925
+ attr_accessor :next_page_token
2926
+
2927
+ def initialize(**args)
2928
+ update!(**args)
2929
+ end
2930
+
2931
+ # Update properties of this object
2932
+ def update!(**args)
2933
+ @entries = args[:entries] if args.key?(:entries)
2934
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2935
+ end
2936
+ end
2937
+
2641
2938
  # `QueryWorkflowInvocationActions` response message.
2642
2939
  class QueryWorkflowInvocationActionsResponse
2643
2940
  include Google::Apis::Core::Hashable
@@ -3020,6 +3317,13 @@ module Google
3020
3317
  class Repository
3021
3318
  include Google::Apis::Core::Hashable
3022
3319
 
3320
+ # Optional. The name of the containing folder of the repository. The field is
3321
+ # immutable and it can be modified via a MoveRepository operation. Format: `
3322
+ # projects/*/locations/*/folders/*`. or `projects/*/locations/*/teamFolders/*`.
3323
+ # Corresponds to the JSON property `containingFolder`
3324
+ # @return [String]
3325
+ attr_accessor :containing_folder
3326
+
3023
3327
  # Output only. The timestamp of when the repository was created.
3024
3328
  # Corresponds to the JSON property `createTime`
3025
3329
  # @return [String]
@@ -3086,6 +3390,14 @@ module Google
3086
3390
  attr_accessor :set_authenticated_user_admin
3087
3391
  alias_method :set_authenticated_user_admin?, :set_authenticated_user_admin
3088
3392
 
3393
+ # Output only. The resource name of the TeamFolder that this Repository is
3394
+ # associated with. This should take the format: projects/`project`/locations/`
3395
+ # location`/teamFolders/`teamFolder`. If this is not set, the Repository is not
3396
+ # associated with a TeamFolder.
3397
+ # Corresponds to the JSON property `teamFolderName`
3398
+ # @return [String]
3399
+ attr_accessor :team_folder_name
3400
+
3089
3401
  # Configures workspace compilation overrides for a repository.
3090
3402
  # Corresponds to the JSON property `workspaceCompilationOverrides`
3091
3403
  # @return [Google::Apis::DataformV1::WorkspaceCompilationOverrides]
@@ -3097,6 +3409,7 @@ module Google
3097
3409
 
3098
3410
  # Update properties of this object
3099
3411
  def update!(**args)
3412
+ @containing_folder = args[:containing_folder] if args.key?(:containing_folder)
3100
3413
  @create_time = args[:create_time] if args.key?(:create_time)
3101
3414
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
3102
3415
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -3108,6 +3421,7 @@ module Google
3108
3421
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
3109
3422
  @service_account = args[:service_account] if args.key?(:service_account)
3110
3423
  @set_authenticated_user_admin = args[:set_authenticated_user_admin] if args.key?(:set_authenticated_user_admin)
3424
+ @team_folder_name = args[:team_folder_name] if args.key?(:team_folder_name)
3111
3425
  @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
3112
3426
  end
3113
3427
  end
@@ -3152,6 +3466,32 @@ module Google
3152
3466
  end
3153
3467
  end
3154
3468
 
3469
+ # Represents a single content entry.
3470
+ class RootContentsEntry
3471
+ include Google::Apis::Core::Hashable
3472
+
3473
+ # Represents a Dataform Folder. This is a resource that is used to organize
3474
+ # Files and other Folders and provide hierarchical access controls.
3475
+ # Corresponds to the JSON property `folder`
3476
+ # @return [Google::Apis::DataformV1::Folder]
3477
+ attr_accessor :folder
3478
+
3479
+ # Represents a Dataform Git repository.
3480
+ # Corresponds to the JSON property `repository`
3481
+ # @return [Google::Apis::DataformV1::Repository]
3482
+ attr_accessor :repository
3483
+
3484
+ def initialize(**args)
3485
+ update!(**args)
3486
+ end
3487
+
3488
+ # Update properties of this object
3489
+ def update!(**args)
3490
+ @folder = args[:folder] if args.key?(:folder)
3491
+ @repository = args[:repository] if args.key?(:repository)
3492
+ end
3493
+ end
3494
+
3155
3495
  # A record of an attempt to create a workflow invocation for this workflow
3156
3496
  # config.
3157
3497
  class ScheduledExecutionRecord
@@ -3280,6 +3620,32 @@ module Google
3280
3620
  end
3281
3621
  end
3282
3622
 
3623
+ # `SearchTeamFolders` response message.
3624
+ class SearchTeamFoldersResponse
3625
+ include Google::Apis::Core::Hashable
3626
+
3627
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
3628
+ # field is omitted, there are no subsequent pages.
3629
+ # Corresponds to the JSON property `nextPageToken`
3630
+ # @return [String]
3631
+ attr_accessor :next_page_token
3632
+
3633
+ # List of TeamFolders that match the search query.
3634
+ # Corresponds to the JSON property `results`
3635
+ # @return [Array<Google::Apis::DataformV1::TeamFolderSearchResult>]
3636
+ attr_accessor :results
3637
+
3638
+ def initialize(**args)
3639
+ update!(**args)
3640
+ end
3641
+
3642
+ # Update properties of this object
3643
+ def update!(**args)
3644
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3645
+ @results = args[:results] if args.key?(:results)
3646
+ end
3647
+ end
3648
+
3283
3649
  # Request message for `SetIamPolicy` method.
3284
3650
  class SetIamPolicyRequest
3285
3651
  include Google::Apis::Core::Hashable
@@ -3469,6 +3835,106 @@ module Google
3469
3835
  end
3470
3836
  end
3471
3837
 
3838
+ # Represents a Dataform TeamFolder. This is a resource that sits at the project
3839
+ # level and is used to organize Repositories and Folders with hierarchical
3840
+ # access controls. They provide a team context and stricter access controls.
3841
+ class TeamFolder
3842
+ include Google::Apis::Core::Hashable
3843
+
3844
+ # Output only. The timestamp of when the TeamFolder was created.
3845
+ # Corresponds to the JSON property `createTime`
3846
+ # @return [String]
3847
+ attr_accessor :create_time
3848
+
3849
+ # Output only. The IAM principal identifier of the creator of the TeamFolder.
3850
+ # Corresponds to the JSON property `creatorIamPrincipal`
3851
+ # @return [String]
3852
+ attr_accessor :creator_iam_principal
3853
+
3854
+ # Required. The TeamFolder's user-friendly name.
3855
+ # Corresponds to the JSON property `displayName`
3856
+ # @return [String]
3857
+ attr_accessor :display_name
3858
+
3859
+ # Output only. All the metadata information that is used internally to serve the
3860
+ # resource. For example: timestamps, flags, status fields, etc. The format of
3861
+ # this field is a JSON string.
3862
+ # Corresponds to the JSON property `internalMetadata`
3863
+ # @return [String]
3864
+ attr_accessor :internal_metadata
3865
+
3866
+ # Identifier. The TeamFolder's name.
3867
+ # Corresponds to the JSON property `name`
3868
+ # @return [String]
3869
+ attr_accessor :name
3870
+
3871
+ # Output only. The timestamp of when the TeamFolder was last updated.
3872
+ # Corresponds to the JSON property `updateTime`
3873
+ # @return [String]
3874
+ attr_accessor :update_time
3875
+
3876
+ def initialize(**args)
3877
+ update!(**args)
3878
+ end
3879
+
3880
+ # Update properties of this object
3881
+ def update!(**args)
3882
+ @create_time = args[:create_time] if args.key?(:create_time)
3883
+ @creator_iam_principal = args[:creator_iam_principal] if args.key?(:creator_iam_principal)
3884
+ @display_name = args[:display_name] if args.key?(:display_name)
3885
+ @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3886
+ @name = args[:name] if args.key?(:name)
3887
+ @update_time = args[:update_time] if args.key?(:update_time)
3888
+ end
3889
+ end
3890
+
3891
+ # Represents a single content entry.
3892
+ class TeamFolderContentsEntry
3893
+ include Google::Apis::Core::Hashable
3894
+
3895
+ # Represents a Dataform Folder. This is a resource that is used to organize
3896
+ # Files and other Folders and provide hierarchical access controls.
3897
+ # Corresponds to the JSON property `folder`
3898
+ # @return [Google::Apis::DataformV1::Folder]
3899
+ attr_accessor :folder
3900
+
3901
+ # Represents a Dataform Git repository.
3902
+ # Corresponds to the JSON property `repository`
3903
+ # @return [Google::Apis::DataformV1::Repository]
3904
+ attr_accessor :repository
3905
+
3906
+ def initialize(**args)
3907
+ update!(**args)
3908
+ end
3909
+
3910
+ # Update properties of this object
3911
+ def update!(**args)
3912
+ @folder = args[:folder] if args.key?(:folder)
3913
+ @repository = args[:repository] if args.key?(:repository)
3914
+ end
3915
+ end
3916
+
3917
+ # Represents a single content entry.
3918
+ class TeamFolderSearchResult
3919
+ include Google::Apis::Core::Hashable
3920
+
3921
+ # Represents a Dataform TeamFolder. This is a resource that sits at the project
3922
+ # level and is used to organize Repositories and Folders with hierarchical
3923
+ # access controls. They provide a team context and stricter access controls.
3924
+ # Corresponds to the JSON property `teamFolder`
3925
+ # @return [Google::Apis::DataformV1::TeamFolder]
3926
+ attr_accessor :team_folder
3927
+
3928
+ def initialize(**args)
3929
+ update!(**args)
3930
+ end
3931
+
3932
+ # Update properties of this object
3933
+ def update!(**args)
3934
+ @team_folder = args[:team_folder] if args.key?(:team_folder)
3935
+ end
3936
+ end
3937
+
3472
3938
  # Request message for `TestIamPermissions` method.
3473
3939
  class TestIamPermissionsRequest
3474
3940
  include Google::Apis::Core::Hashable
@@ -3789,6 +4255,13 @@ module Google
3789
4255
  # @return [Google::Apis::DataformV1::DataEncryptionState]
3790
4256
  attr_accessor :data_encryption_state
3791
4257
 
4258
+ # Optional. If set to true, workspaces will not be moved if its linked
4259
+ # Repository is moved. Instead, it will be deleted.
4260
+ # Corresponds to the JSON property `disableMoves`
4261
+ # @return [Boolean]
4262
+ attr_accessor :disable_moves
4263
+ alias_method :disable_moves?, :disable_moves
4264
+
3792
4265
  # Output only. All the metadata information that is used internally to serve the
3793
4266
  # resource. For example: timestamps, flags, status fields, etc. The format of
3794
4267
  # this field is a JSON string.
@@ -3814,6 +4287,7 @@ module Google
3814
4287
  def update!(**args)
3815
4288
  @create_time = args[:create_time] if args.key?(:create_time)
3816
4289
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
4290
+ @disable_moves = args[:disable_moves] if args.key?(:disable_moves)
3817
4291
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3818
4292
  @name = args[:name] if args.key?(:name)
3819
4293
  @private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1
18
18
  # Version of the google-apis-dataform_v1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.7.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