google-apis-dataform_v1 0.6.0 → 0.8.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: bccb14386a176d76f59efca50b26dc946841253a65438688de5d992154e7021c
4
- data.tar.gz: 33e9da2d046d4670de5ae3de21e210bfa2a3827b36cb241dbb8015b5e04c6788
3
+ metadata.gz: 376eca51ecba1257b26b103e1abadbffca715cdf1c53565e3a870f51293d6a11
4
+ data.tar.gz: 21bf875dfb2b2d9f7a50e70f76a3e4425fa71384177becfa1ca196473134ebb7
5
5
  SHA512:
6
- metadata.gz: a9051cd8a2d9e39a9f32e58e907912a52ef6978b9f7a0497aef9ed4be573efeece83991d38cbb45704545f8e69ee4ced1a65d10d7003565ddbfd7c99c2c388cf
7
- data.tar.gz: 6d9e3e174e889262717cee379d03d299e88aa0c0f605c2ab4e93c7cc6a4c4378e8e7addac356e73cdcd900817d6d33700b888829b32f956ff9b0b31d8775703d
6
+ metadata.gz: 89ff027f2b81b1ed9b4d6b6c578e669c4a7bd8c069d3d9d5503526cc8177b6acb809b133be63f74df57782a0fc420407e0846dbf7753f7f86c5bf91c3a7818b1
7
+ data.tar.gz: 10391c2b925a8ada4efc9e9a5ab0aaf281af7dd8c19b6c3ee0d2a774a32927d78d41f365094df86850254bbcfe38262899c549fb708947389db6cbdb6936e6ba
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1
2
2
 
3
+ ### v0.8.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260430
6
+
7
+ ### v0.7.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260409
10
+
3
11
  ### v0.6.0 (2026-03-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20260317
@@ -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
@@ -1386,6 +1434,102 @@ module Google
1386
1434
  end
1387
1435
  end
1388
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
+
1389
1533
  # Controls Git remote configuration for a repository.
1390
1534
  class GitRemoteSettings
1391
1535
  include Google::Apis::Core::Hashable
@@ -1397,7 +1541,8 @@ module Google
1397
1541
  # @return [String]
1398
1542
  attr_accessor :authentication_token_secret_version
1399
1543
 
1400
- # 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.
1401
1546
  # Corresponds to the JSON property `defaultBranch`
1402
1547
  # @return [String]
1403
1548
  attr_accessor :default_branch
@@ -1671,7 +1816,8 @@ module Google
1671
1816
  # @return [String]
1672
1817
  attr_accessor :next_page_token
1673
1818
 
1674
- # Locations which could not be reached.
1819
+ # Locations which could not be reached. LINT.ThenChange(//depot/google3/google/
1820
+ # cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsResponse)
1675
1821
  # Corresponds to the JSON property `unreachable`
1676
1822
  # @return [Array<String>]
1677
1823
  attr_accessor :unreachable
@@ -1762,7 +1908,8 @@ module Google
1762
1908
  # @return [Array<Google::Apis::DataformV1::ReleaseConfig>]
1763
1909
  attr_accessor :release_configs
1764
1910
 
1765
- # Locations which could not be reached.
1911
+ # Locations which could not be reached. LINT.ThenChange(//depot/google3/google/
1912
+ # cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsResponse)
1766
1913
  # Corresponds to the JSON property `unreachable`
1767
1914
  # @return [Array<String>]
1768
1915
  attr_accessor :unreachable
@@ -2104,6 +2251,48 @@ module Google
2104
2251
  end
2105
2252
  end
2106
2253
 
2254
+ # `MoveFolder` request message.
2255
+ class MoveFolderRequest
2256
+ include Google::Apis::Core::Hashable
2257
+
2258
+ # Optional. The name of the Folder, TeamFolder, or root location to move the
2259
+ # Folder to. Can be in the format of: "" to move into the root User folder, `
2260
+ # projects/*/locations/*/folders/*`, `projects/*/locations/*/teamFolders/*`
2261
+ # Corresponds to the JSON property `destinationContainingFolder`
2262
+ # @return [String]
2263
+ attr_accessor :destination_containing_folder
2264
+
2265
+ def initialize(**args)
2266
+ update!(**args)
2267
+ end
2268
+
2269
+ # Update properties of this object
2270
+ def update!(**args)
2271
+ @destination_containing_folder = args[:destination_containing_folder] if args.key?(:destination_containing_folder)
2272
+ end
2273
+ end
2274
+
2275
+ # `MoveRepository` request message.
2276
+ class MoveRepositoryRequest
2277
+ include Google::Apis::Core::Hashable
2278
+
2279
+ # Optional. The name of the Folder, TeamFolder, or root location to move the
2280
+ # repository to. Can be in the format of: "" to move into the root User folder, `
2281
+ # projects/*/locations/*/folders/*`, `projects/*/locations/*/teamFolders/*`
2282
+ # Corresponds to the JSON property `destinationContainingFolder`
2283
+ # @return [String]
2284
+ attr_accessor :destination_containing_folder
2285
+
2286
+ def initialize(**args)
2287
+ update!(**args)
2288
+ end
2289
+
2290
+ # Update properties of this object
2291
+ def update!(**args)
2292
+ @destination_containing_folder = args[:destination_containing_folder] if args.key?(:destination_containing_folder)
2293
+ end
2294
+ end
2295
+
2107
2296
  # Represents a notebook.
2108
2297
  class Notebook
2109
2298
  include Google::Apis::Core::Hashable
@@ -2151,9 +2340,9 @@ module Google
2151
2340
  # @return [String]
2152
2341
  attr_accessor :contents
2153
2342
 
2154
- # Output only. The ID of the Vertex job that executed the notebook in contents
2155
- # and also the ID used for the outputs created in Google Cloud Storage buckets.
2156
- # Only set once the job has started to run.
2343
+ # Output only. The ID of the Gemini Enterprise Agent Platform job that executed
2344
+ # the notebook in contents and also the ID used for the outputs created in
2345
+ # Google Cloud Storage buckets. Only set once the job has started to run.
2157
2346
  # Corresponds to the JSON property `jobId`
2158
2347
  # @return [String]
2159
2348
  attr_accessor :job_id
@@ -2644,6 +2833,32 @@ module Google
2644
2833
  end
2645
2834
  end
2646
2835
 
2836
+ # `QueryFolderContents` response message.
2837
+ class QueryFolderContentsResponse
2838
+ include Google::Apis::Core::Hashable
2839
+
2840
+ # List of entries in the folder.
2841
+ # Corresponds to the JSON property `entries`
2842
+ # @return [Array<Google::Apis::DataformV1::FolderContentsEntry>]
2843
+ attr_accessor :entries
2844
+
2845
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2846
+ # field is omitted, there are no subsequent pages.
2847
+ # Corresponds to the JSON property `nextPageToken`
2848
+ # @return [String]
2849
+ attr_accessor :next_page_token
2850
+
2851
+ def initialize(**args)
2852
+ update!(**args)
2853
+ end
2854
+
2855
+ # Update properties of this object
2856
+ def update!(**args)
2857
+ @entries = args[:entries] if args.key?(:entries)
2858
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2859
+ end
2860
+ end
2861
+
2647
2862
  # `QueryRepositoryDirectoryContents` response message.
2648
2863
  class QueryRepositoryDirectoryContentsResponse
2649
2864
  include Google::Apis::Core::Hashable
@@ -2670,6 +2885,58 @@ module Google
2670
2885
  end
2671
2886
  end
2672
2887
 
2888
+ # `QueryTeamFolderContents` response message.
2889
+ class QueryTeamFolderContentsResponse
2890
+ include Google::Apis::Core::Hashable
2891
+
2892
+ # List of entries in the TeamFolder.
2893
+ # Corresponds to the JSON property `entries`
2894
+ # @return [Array<Google::Apis::DataformV1::TeamFolderContentsEntry>]
2895
+ attr_accessor :entries
2896
+
2897
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2898
+ # field is omitted, there are no subsequent pages.
2899
+ # Corresponds to the JSON property `nextPageToken`
2900
+ # @return [String]
2901
+ attr_accessor :next_page_token
2902
+
2903
+ def initialize(**args)
2904
+ update!(**args)
2905
+ end
2906
+
2907
+ # Update properties of this object
2908
+ def update!(**args)
2909
+ @entries = args[:entries] if args.key?(:entries)
2910
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2911
+ end
2912
+ end
2913
+
2914
+ # `QueryUserRootContents` response message.
2915
+ class QueryUserRootContentsResponse
2916
+ include Google::Apis::Core::Hashable
2917
+
2918
+ # List of entries in the folder.
2919
+ # Corresponds to the JSON property `entries`
2920
+ # @return [Array<Google::Apis::DataformV1::RootContentsEntry>]
2921
+ attr_accessor :entries
2922
+
2923
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2924
+ # field is omitted, there are no subsequent pages.
2925
+ # Corresponds to the JSON property `nextPageToken`
2926
+ # @return [String]
2927
+ attr_accessor :next_page_token
2928
+
2929
+ def initialize(**args)
2930
+ update!(**args)
2931
+ end
2932
+
2933
+ # Update properties of this object
2934
+ def update!(**args)
2935
+ @entries = args[:entries] if args.key?(:entries)
2936
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2937
+ end
2938
+ end
2939
+
2673
2940
  # `QueryWorkflowInvocationActions` response message.
2674
2941
  class QueryWorkflowInvocationActionsResponse
2675
2942
  include Google::Apis::Core::Hashable
@@ -2929,7 +3196,8 @@ module Google
2929
3196
 
2930
3197
  # Output only. All the metadata information that is used internally to serve the
2931
3198
  # resource. For example: timestamps, flags, status fields, etc. The format of
2932
- # this field is a JSON string.
3199
+ # this field is a JSON string. LINT.ThenChange(//depot/google3/google/cloud/
3200
+ # dataform/v2main/data_pipelines.proto:ReleaseConfig)
2933
3201
  # Corresponds to the JSON property `internalMetadata`
2934
3202
  # @return [String]
2935
3203
  attr_accessor :internal_metadata
@@ -3052,6 +3320,13 @@ module Google
3052
3320
  class Repository
3053
3321
  include Google::Apis::Core::Hashable
3054
3322
 
3323
+ # Optional. The name of the containing folder of the repository. The field is
3324
+ # immutable and it can be modified via a MoveRepository operation. Format: `
3325
+ # projects/*/locations/*/folders/*`. or `projects/*/locations/*/teamFolders/*`.
3326
+ # Corresponds to the JSON property `containingFolder`
3327
+ # @return [String]
3328
+ attr_accessor :containing_folder
3329
+
3055
3330
  # Output only. The timestamp of when the repository was created.
3056
3331
  # Corresponds to the JSON property `createTime`
3057
3332
  # @return [String]
@@ -3118,6 +3393,14 @@ module Google
3118
3393
  attr_accessor :set_authenticated_user_admin
3119
3394
  alias_method :set_authenticated_user_admin?, :set_authenticated_user_admin
3120
3395
 
3396
+ # Output only. The resource name of the TeamFolder that this Repository is
3397
+ # associated with. This should take the format: projects/`project`/locations/`
3398
+ # location`/teamFolders/`teamFolder`. If this is not set, the Repository is not
3399
+ # associated with a TeamFolder.
3400
+ # Corresponds to the JSON property `teamFolderName`
3401
+ # @return [String]
3402
+ attr_accessor :team_folder_name
3403
+
3121
3404
  # Configures workspace compilation overrides for a repository.
3122
3405
  # Corresponds to the JSON property `workspaceCompilationOverrides`
3123
3406
  # @return [Google::Apis::DataformV1::WorkspaceCompilationOverrides]
@@ -3129,6 +3412,7 @@ module Google
3129
3412
 
3130
3413
  # Update properties of this object
3131
3414
  def update!(**args)
3415
+ @containing_folder = args[:containing_folder] if args.key?(:containing_folder)
3132
3416
  @create_time = args[:create_time] if args.key?(:create_time)
3133
3417
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
3134
3418
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -3140,6 +3424,7 @@ module Google
3140
3424
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
3141
3425
  @service_account = args[:service_account] if args.key?(:service_account)
3142
3426
  @set_authenticated_user_admin = args[:set_authenticated_user_admin] if args.key?(:set_authenticated_user_admin)
3427
+ @team_folder_name = args[:team_folder_name] if args.key?(:team_folder_name)
3143
3428
  @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
3144
3429
  end
3145
3430
  end
@@ -3184,6 +3469,32 @@ module Google
3184
3469
  end
3185
3470
  end
3186
3471
 
3472
+ # Represents a single content entry.
3473
+ class RootContentsEntry
3474
+ include Google::Apis::Core::Hashable
3475
+
3476
+ # Represents a Dataform Folder. This is a resource that is used to organize
3477
+ # Files and other Folders and provide hierarchical access controls.
3478
+ # Corresponds to the JSON property `folder`
3479
+ # @return [Google::Apis::DataformV1::Folder]
3480
+ attr_accessor :folder
3481
+
3482
+ # Represents a Dataform Git repository.
3483
+ # Corresponds to the JSON property `repository`
3484
+ # @return [Google::Apis::DataformV1::Repository]
3485
+ attr_accessor :repository
3486
+
3487
+ def initialize(**args)
3488
+ update!(**args)
3489
+ end
3490
+
3491
+ # Update properties of this object
3492
+ def update!(**args)
3493
+ @folder = args[:folder] if args.key?(:folder)
3494
+ @repository = args[:repository] if args.key?(:repository)
3495
+ end
3496
+ end
3497
+
3187
3498
  # A record of an attempt to create a workflow invocation for this workflow
3188
3499
  # config.
3189
3500
  class ScheduledExecutionRecord
@@ -3312,6 +3623,32 @@ module Google
3312
3623
  end
3313
3624
  end
3314
3625
 
3626
+ # `SearchTeamFolders` response message.
3627
+ class SearchTeamFoldersResponse
3628
+ include Google::Apis::Core::Hashable
3629
+
3630
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
3631
+ # field is omitted, there are no subsequent pages.
3632
+ # Corresponds to the JSON property `nextPageToken`
3633
+ # @return [String]
3634
+ attr_accessor :next_page_token
3635
+
3636
+ # List of TeamFolders that match the search query.
3637
+ # Corresponds to the JSON property `results`
3638
+ # @return [Array<Google::Apis::DataformV1::TeamFolderSearchResult>]
3639
+ attr_accessor :results
3640
+
3641
+ def initialize(**args)
3642
+ update!(**args)
3643
+ end
3644
+
3645
+ # Update properties of this object
3646
+ def update!(**args)
3647
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3648
+ @results = args[:results] if args.key?(:results)
3649
+ end
3650
+ end
3651
+
3315
3652
  # Request message for `SetIamPolicy` method.
3316
3653
  class SetIamPolicyRequest
3317
3654
  include Google::Apis::Core::Hashable
@@ -3501,6 +3838,106 @@ module Google
3501
3838
  end
3502
3839
  end
3503
3840
 
3841
+ # Represents a Dataform TeamFolder. This is a resource that sits at the project
3842
+ # level and is used to organize Repositories and Folders with hierarchical
3843
+ # access controls. They provide a team context and stricter access controls.
3844
+ class TeamFolder
3845
+ include Google::Apis::Core::Hashable
3846
+
3847
+ # Output only. The timestamp of when the TeamFolder was created.
3848
+ # Corresponds to the JSON property `createTime`
3849
+ # @return [String]
3850
+ attr_accessor :create_time
3851
+
3852
+ # Output only. The IAM principal identifier of the creator of the TeamFolder.
3853
+ # Corresponds to the JSON property `creatorIamPrincipal`
3854
+ # @return [String]
3855
+ attr_accessor :creator_iam_principal
3856
+
3857
+ # Required. The TeamFolder's user-friendly name.
3858
+ # Corresponds to the JSON property `displayName`
3859
+ # @return [String]
3860
+ attr_accessor :display_name
3861
+
3862
+ # Output only. All the metadata information that is used internally to serve the
3863
+ # resource. For example: timestamps, flags, status fields, etc. The format of
3864
+ # this field is a JSON string.
3865
+ # Corresponds to the JSON property `internalMetadata`
3866
+ # @return [String]
3867
+ attr_accessor :internal_metadata
3868
+
3869
+ # Identifier. The TeamFolder's name.
3870
+ # Corresponds to the JSON property `name`
3871
+ # @return [String]
3872
+ attr_accessor :name
3873
+
3874
+ # Output only. The timestamp of when the TeamFolder was last updated.
3875
+ # Corresponds to the JSON property `updateTime`
3876
+ # @return [String]
3877
+ attr_accessor :update_time
3878
+
3879
+ def initialize(**args)
3880
+ update!(**args)
3881
+ end
3882
+
3883
+ # Update properties of this object
3884
+ def update!(**args)
3885
+ @create_time = args[:create_time] if args.key?(:create_time)
3886
+ @creator_iam_principal = args[:creator_iam_principal] if args.key?(:creator_iam_principal)
3887
+ @display_name = args[:display_name] if args.key?(:display_name)
3888
+ @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3889
+ @name = args[:name] if args.key?(:name)
3890
+ @update_time = args[:update_time] if args.key?(:update_time)
3891
+ end
3892
+ end
3893
+
3894
+ # Represents a single content entry.
3895
+ class TeamFolderContentsEntry
3896
+ include Google::Apis::Core::Hashable
3897
+
3898
+ # Represents a Dataform Folder. This is a resource that is used to organize
3899
+ # Files and other Folders and provide hierarchical access controls.
3900
+ # Corresponds to the JSON property `folder`
3901
+ # @return [Google::Apis::DataformV1::Folder]
3902
+ attr_accessor :folder
3903
+
3904
+ # Represents a Dataform Git repository.
3905
+ # Corresponds to the JSON property `repository`
3906
+ # @return [Google::Apis::DataformV1::Repository]
3907
+ attr_accessor :repository
3908
+
3909
+ def initialize(**args)
3910
+ update!(**args)
3911
+ end
3912
+
3913
+ # Update properties of this object
3914
+ def update!(**args)
3915
+ @folder = args[:folder] if args.key?(:folder)
3916
+ @repository = args[:repository] if args.key?(:repository)
3917
+ end
3918
+ end
3919
+
3920
+ # Represents a single content entry.
3921
+ class TeamFolderSearchResult
3922
+ include Google::Apis::Core::Hashable
3923
+
3924
+ # Represents a Dataform TeamFolder. This is a resource that sits at the project
3925
+ # level and is used to organize Repositories and Folders with hierarchical
3926
+ # access controls. They provide a team context and stricter access controls.
3927
+ # Corresponds to the JSON property `teamFolder`
3928
+ # @return [Google::Apis::DataformV1::TeamFolder]
3929
+ attr_accessor :team_folder
3930
+
3931
+ def initialize(**args)
3932
+ update!(**args)
3933
+ end
3934
+
3935
+ # Update properties of this object
3936
+ def update!(**args)
3937
+ @team_folder = args[:team_folder] if args.key?(:team_folder)
3938
+ end
3939
+ end
3940
+
3504
3941
  # Request message for `TestIamPermissions` method.
3505
3942
  class TestIamPermissionsRequest
3506
3943
  include Google::Apis::Core::Hashable
@@ -3821,6 +4258,13 @@ module Google
3821
4258
  # @return [Google::Apis::DataformV1::DataEncryptionState]
3822
4259
  attr_accessor :data_encryption_state
3823
4260
 
4261
+ # Optional. If set to true, workspaces will not be moved if its linked
4262
+ # Repository is moved. Instead, it will be deleted.
4263
+ # Corresponds to the JSON property `disableMoves`
4264
+ # @return [Boolean]
4265
+ attr_accessor :disable_moves
4266
+ alias_method :disable_moves?, :disable_moves
4267
+
3824
4268
  # Output only. All the metadata information that is used internally to serve the
3825
4269
  # resource. For example: timestamps, flags, status fields, etc. The format of
3826
4270
  # this field is a JSON string.
@@ -3846,6 +4290,7 @@ module Google
3846
4290
  def update!(**args)
3847
4291
  @create_time = args[:create_time] if args.key?(:create_time)
3848
4292
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
4293
+ @disable_moves = args[:disable_moves] if args.key?(:disable_moves)
3849
4294
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3850
4295
  @name = args[:name] if args.key?(:name)
3851
4296
  @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.6.0"
19
+ GEM_VERSION = "0.8.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 = "20260430"
26
26
  end
27
27
  end
28
28
  end