google-apis-dataform_v1 0.6.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 323f22a05b5a4601ce8cb77810ed275da2741a4a0b74065a4284579c51c0393a
|
|
4
|
+
data.tar.gz: 52ea2c4760c4a7462df9fb8a8e9bba3ded213f80e541eaa01e34681e031ee106
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdcc51f412fd91821f7317ba38cf94025e9759de55e59b1da2599358a4f2501e16e2798854d8be5ae0328c231be2d12a070feaf4a17182692d38ef99b63666c3
|
|
7
|
+
data.tar.gz: 15c2123ab418516a9c20a67e0d00d089a6b8c4cbdbe9c5465ade21c5cc446f7024ad0fb161d3ec9db72e7c31791fc0515c65141aa318d24ced824b705912c908
|
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
|
|
@@ -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
|
|
@@ -2104,6 +2249,48 @@ module Google
|
|
|
2104
2249
|
end
|
|
2105
2250
|
end
|
|
2106
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
|
+
|
|
2107
2294
|
# Represents a notebook.
|
|
2108
2295
|
class Notebook
|
|
2109
2296
|
include Google::Apis::Core::Hashable
|
|
@@ -2644,6 +2831,32 @@ module Google
|
|
|
2644
2831
|
end
|
|
2645
2832
|
end
|
|
2646
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
|
+
|
|
2647
2860
|
# `QueryRepositoryDirectoryContents` response message.
|
|
2648
2861
|
class QueryRepositoryDirectoryContentsResponse
|
|
2649
2862
|
include Google::Apis::Core::Hashable
|
|
@@ -2670,6 +2883,58 @@ module Google
|
|
|
2670
2883
|
end
|
|
2671
2884
|
end
|
|
2672
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
|
+
|
|
2673
2938
|
# `QueryWorkflowInvocationActions` response message.
|
|
2674
2939
|
class QueryWorkflowInvocationActionsResponse
|
|
2675
2940
|
include Google::Apis::Core::Hashable
|
|
@@ -3052,6 +3317,13 @@ module Google
|
|
|
3052
3317
|
class Repository
|
|
3053
3318
|
include Google::Apis::Core::Hashable
|
|
3054
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
|
+
|
|
3055
3327
|
# Output only. The timestamp of when the repository was created.
|
|
3056
3328
|
# Corresponds to the JSON property `createTime`
|
|
3057
3329
|
# @return [String]
|
|
@@ -3118,6 +3390,14 @@ module Google
|
|
|
3118
3390
|
attr_accessor :set_authenticated_user_admin
|
|
3119
3391
|
alias_method :set_authenticated_user_admin?, :set_authenticated_user_admin
|
|
3120
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
|
+
|
|
3121
3401
|
# Configures workspace compilation overrides for a repository.
|
|
3122
3402
|
# Corresponds to the JSON property `workspaceCompilationOverrides`
|
|
3123
3403
|
# @return [Google::Apis::DataformV1::WorkspaceCompilationOverrides]
|
|
@@ -3129,6 +3409,7 @@ module Google
|
|
|
3129
3409
|
|
|
3130
3410
|
# Update properties of this object
|
|
3131
3411
|
def update!(**args)
|
|
3412
|
+
@containing_folder = args[:containing_folder] if args.key?(:containing_folder)
|
|
3132
3413
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3133
3414
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
3134
3415
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
@@ -3140,6 +3421,7 @@ module Google
|
|
|
3140
3421
|
@npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
|
|
3141
3422
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
3142
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)
|
|
3143
3425
|
@workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
|
|
3144
3426
|
end
|
|
3145
3427
|
end
|
|
@@ -3184,6 +3466,32 @@ module Google
|
|
|
3184
3466
|
end
|
|
3185
3467
|
end
|
|
3186
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
|
+
|
|
3187
3495
|
# A record of an attempt to create a workflow invocation for this workflow
|
|
3188
3496
|
# config.
|
|
3189
3497
|
class ScheduledExecutionRecord
|
|
@@ -3312,6 +3620,32 @@ module Google
|
|
|
3312
3620
|
end
|
|
3313
3621
|
end
|
|
3314
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
|
+
|
|
3315
3649
|
# Request message for `SetIamPolicy` method.
|
|
3316
3650
|
class SetIamPolicyRequest
|
|
3317
3651
|
include Google::Apis::Core::Hashable
|
|
@@ -3501,6 +3835,106 @@ module Google
|
|
|
3501
3835
|
end
|
|
3502
3836
|
end
|
|
3503
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
|
+
|
|
3504
3938
|
# Request message for `TestIamPermissions` method.
|
|
3505
3939
|
class TestIamPermissionsRequest
|
|
3506
3940
|
include Google::Apis::Core::Hashable
|
|
@@ -3821,6 +4255,13 @@ module Google
|
|
|
3821
4255
|
# @return [Google::Apis::DataformV1::DataEncryptionState]
|
|
3822
4256
|
attr_accessor :data_encryption_state
|
|
3823
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
|
+
|
|
3824
4265
|
# Output only. All the metadata information that is used internally to serve the
|
|
3825
4266
|
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
3826
4267
|
# this field is a JSON string.
|
|
@@ -3846,6 +4287,7 @@ module Google
|
|
|
3846
4287
|
def update!(**args)
|
|
3847
4288
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3848
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)
|
|
3849
4291
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
3850
4292
|
@name = args[:name] if args.key?(:name)
|
|
3851
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.
|
|
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 = "
|
|
25
|
+
REVISION = "20260409"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|