google-apis-dataform_v1beta1 0.52.0 → 0.54.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: de6f0f24eb322bb16a3fe114fefb7033e779c907040b7a7f325b3569ac4e69b1
|
|
4
|
+
data.tar.gz: e18d03efe45abebaeee2765c40eb047b649955175646263491494234317c49b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29d038597b906b674082bf98d4931ba5a874cc68281b13ed8ea1c97ef4c0304d424849676bfb7df45c26a865e9949769d6f21da04731aaeaa2043d4cd172a127
|
|
7
|
+
data.tar.gz: 210a5f74563f47a4037c28f78917d5728e73dde033197cdf43e0a4f61c01ba5ad10f18961ab1329ff62225c2520c5581f63782dd0e5a32279d641cdf816fbf97
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataform_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.54.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260106
|
|
6
|
+
|
|
7
|
+
### v0.53.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251202
|
|
10
|
+
|
|
3
11
|
### v0.52.0 (2025-11-23)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251111
|
|
@@ -749,6 +749,11 @@ module Google
|
|
|
749
749
|
# @return [String]
|
|
750
750
|
attr_accessor :name
|
|
751
751
|
|
|
752
|
+
# Metadata used to identify if a resource is user scoped.
|
|
753
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
754
|
+
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
755
|
+
attr_accessor :private_resource_metadata
|
|
756
|
+
|
|
752
757
|
# Immutable. The name of the release config to compile. Must be in the format `
|
|
753
758
|
# projects/*/locations/*/repositories/*/releaseConfigs/*`.
|
|
754
759
|
# Corresponds to the JSON property `releaseConfig`
|
|
@@ -781,6 +786,7 @@ module Google
|
|
|
781
786
|
@git_commitish = args[:git_commitish] if args.key?(:git_commitish)
|
|
782
787
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
783
788
|
@name = args[:name] if args.key?(:name)
|
|
789
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
784
790
|
@release_config = args[:release_config] if args.key?(:release_config)
|
|
785
791
|
@resolved_git_commit_sha = args[:resolved_git_commit_sha] if args.key?(:resolved_git_commit_sha)
|
|
786
792
|
@workspace = args[:workspace] if args.key?(:workspace)
|
|
@@ -1348,6 +1354,103 @@ module Google
|
|
|
1348
1354
|
end
|
|
1349
1355
|
end
|
|
1350
1356
|
|
|
1357
|
+
# Represents a Dataform Folder. This is a resource that is used to organize
|
|
1358
|
+
# Files and other Folders and provide hierarchical access controls.
|
|
1359
|
+
class Folder
|
|
1360
|
+
include Google::Apis::Core::Hashable
|
|
1361
|
+
|
|
1362
|
+
# Optional. The containing Folder resource name. This should take the format:
|
|
1363
|
+
# projects/`project`/locations/`location`/folders/`folder`, projects/`project`/
|
|
1364
|
+
# locations/`location`/teamFolders/`teamFolder`, or just projects/`project`/
|
|
1365
|
+
# locations/`location` if this is a root Folder. This field can only be updated
|
|
1366
|
+
# through MoveFolder.
|
|
1367
|
+
# Corresponds to the JSON property `containingFolder`
|
|
1368
|
+
# @return [String]
|
|
1369
|
+
attr_accessor :containing_folder
|
|
1370
|
+
|
|
1371
|
+
# Output only. The timestamp of when the Folder was created.
|
|
1372
|
+
# Corresponds to the JSON property `createTime`
|
|
1373
|
+
# @return [String]
|
|
1374
|
+
attr_accessor :create_time
|
|
1375
|
+
|
|
1376
|
+
# Output only. The IAM principal identifier of the creator of the Folder.
|
|
1377
|
+
# Corresponds to the JSON property `creatorIamPrincipal`
|
|
1378
|
+
# @return [String]
|
|
1379
|
+
attr_accessor :creator_iam_principal
|
|
1380
|
+
|
|
1381
|
+
# Required. The Folder's user-friendly name.
|
|
1382
|
+
# Corresponds to the JSON property `displayName`
|
|
1383
|
+
# @return [String]
|
|
1384
|
+
attr_accessor :display_name
|
|
1385
|
+
|
|
1386
|
+
# Output only. All the metadata information that is used internally to serve the
|
|
1387
|
+
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
1388
|
+
# this field is a JSON string.
|
|
1389
|
+
# Corresponds to the JSON property `internalMetadata`
|
|
1390
|
+
# @return [String]
|
|
1391
|
+
attr_accessor :internal_metadata
|
|
1392
|
+
|
|
1393
|
+
# Identifier. The Folder's name.
|
|
1394
|
+
# Corresponds to the JSON property `name`
|
|
1395
|
+
# @return [String]
|
|
1396
|
+
attr_accessor :name
|
|
1397
|
+
|
|
1398
|
+
# Output only. The resource name of the TeamFolder that this Folder is
|
|
1399
|
+
# associated with. This should take the format: projects/`project`/locations/`
|
|
1400
|
+
# location`/teamFolders/`teamFolder`. If this is not set, the Folder is not
|
|
1401
|
+
# associated with a TeamFolder and is a UserFolder.
|
|
1402
|
+
# Corresponds to the JSON property `teamFolderName`
|
|
1403
|
+
# @return [String]
|
|
1404
|
+
attr_accessor :team_folder_name
|
|
1405
|
+
|
|
1406
|
+
# Output only. The timestamp of when the Folder was last updated.
|
|
1407
|
+
# Corresponds to the JSON property `updateTime`
|
|
1408
|
+
# @return [String]
|
|
1409
|
+
attr_accessor :update_time
|
|
1410
|
+
|
|
1411
|
+
def initialize(**args)
|
|
1412
|
+
update!(**args)
|
|
1413
|
+
end
|
|
1414
|
+
|
|
1415
|
+
# Update properties of this object
|
|
1416
|
+
def update!(**args)
|
|
1417
|
+
@containing_folder = args[:containing_folder] if args.key?(:containing_folder)
|
|
1418
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1419
|
+
@creator_iam_principal = args[:creator_iam_principal] if args.key?(:creator_iam_principal)
|
|
1420
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1421
|
+
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
1422
|
+
@name = args[:name] if args.key?(:name)
|
|
1423
|
+
@team_folder_name = args[:team_folder_name] if args.key?(:team_folder_name)
|
|
1424
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
1425
|
+
end
|
|
1426
|
+
end
|
|
1427
|
+
|
|
1428
|
+
# Represents a single content entry.
|
|
1429
|
+
class FolderContentsEntry
|
|
1430
|
+
include Google::Apis::Core::Hashable
|
|
1431
|
+
|
|
1432
|
+
# Represents a Dataform Folder. This is a resource that is used to organize
|
|
1433
|
+
# Files and other Folders and provide hierarchical access controls.
|
|
1434
|
+
# Corresponds to the JSON property `folder`
|
|
1435
|
+
# @return [Google::Apis::DataformV1beta1::Folder]
|
|
1436
|
+
attr_accessor :folder
|
|
1437
|
+
|
|
1438
|
+
# Represents a Dataform Git repository.
|
|
1439
|
+
# Corresponds to the JSON property `repository`
|
|
1440
|
+
# @return [Google::Apis::DataformV1beta1::Repository]
|
|
1441
|
+
attr_accessor :repository
|
|
1442
|
+
|
|
1443
|
+
def initialize(**args)
|
|
1444
|
+
update!(**args)
|
|
1445
|
+
end
|
|
1446
|
+
|
|
1447
|
+
# Update properties of this object
|
|
1448
|
+
def update!(**args)
|
|
1449
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
1450
|
+
@repository = args[:repository] if args.key?(:repository)
|
|
1451
|
+
end
|
|
1452
|
+
end
|
|
1453
|
+
|
|
1351
1454
|
# Controls Git remote configuration for a repository.
|
|
1352
1455
|
class GitRemoteSettings
|
|
1353
1456
|
include Google::Apis::Core::Hashable
|
|
@@ -1691,8 +1794,9 @@ module Google
|
|
|
1691
1794
|
attr_accessor :operations
|
|
1692
1795
|
|
|
1693
1796
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1694
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1695
|
-
# when attempting to list all resources across all supported
|
|
1797
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1798
|
+
# For example, when attempting to list all resources across all supported
|
|
1799
|
+
# locations.
|
|
1696
1800
|
# Corresponds to the JSON property `unreachable`
|
|
1697
1801
|
# @return [Array<String>]
|
|
1698
1802
|
attr_accessor :unreachable
|
|
@@ -2066,6 +2170,48 @@ module Google
|
|
|
2066
2170
|
end
|
|
2067
2171
|
end
|
|
2068
2172
|
|
|
2173
|
+
# `MoveFolder` request message.
|
|
2174
|
+
class MoveFolderRequest
|
|
2175
|
+
include Google::Apis::Core::Hashable
|
|
2176
|
+
|
|
2177
|
+
# Required. The name of the Folder, TeamFolder, or root location to move the
|
|
2178
|
+
# Folder to. Can be in the format of: - "" to move into the root User folder - `
|
|
2179
|
+
# projects/*/locations/*/folders/*` - `projects/*/locations/*/teamFolders/*`
|
|
2180
|
+
# Corresponds to the JSON property `destinationContainingFolder`
|
|
2181
|
+
# @return [String]
|
|
2182
|
+
attr_accessor :destination_containing_folder
|
|
2183
|
+
|
|
2184
|
+
def initialize(**args)
|
|
2185
|
+
update!(**args)
|
|
2186
|
+
end
|
|
2187
|
+
|
|
2188
|
+
# Update properties of this object
|
|
2189
|
+
def update!(**args)
|
|
2190
|
+
@destination_containing_folder = args[:destination_containing_folder] if args.key?(:destination_containing_folder)
|
|
2191
|
+
end
|
|
2192
|
+
end
|
|
2193
|
+
|
|
2194
|
+
# `MoveRepository` request message.
|
|
2195
|
+
class MoveRepositoryRequest
|
|
2196
|
+
include Google::Apis::Core::Hashable
|
|
2197
|
+
|
|
2198
|
+
# Required. The name of the Folder, TeamFolder, or root location to move the
|
|
2199
|
+
# repository to. Can be in the format of: - "" to move into the root User folder
|
|
2200
|
+
# - `projects/*/locations/*/folders/*` - `projects/*/locations/*/teamFolders/*`
|
|
2201
|
+
# Corresponds to the JSON property `destinationContainingFolder`
|
|
2202
|
+
# @return [String]
|
|
2203
|
+
attr_accessor :destination_containing_folder
|
|
2204
|
+
|
|
2205
|
+
def initialize(**args)
|
|
2206
|
+
update!(**args)
|
|
2207
|
+
end
|
|
2208
|
+
|
|
2209
|
+
# Update properties of this object
|
|
2210
|
+
def update!(**args)
|
|
2211
|
+
@destination_containing_folder = args[:destination_containing_folder] if args.key?(:destination_containing_folder)
|
|
2212
|
+
end
|
|
2213
|
+
end
|
|
2214
|
+
|
|
2069
2215
|
# Represents a notebook.
|
|
2070
2216
|
class Notebook
|
|
2071
2217
|
include Google::Apis::Core::Hashable
|
|
@@ -2461,6 +2607,27 @@ module Google
|
|
|
2461
2607
|
end
|
|
2462
2608
|
end
|
|
2463
2609
|
|
|
2610
|
+
# Metadata used to identify if a resource is user scoped.
|
|
2611
|
+
class PrivateResourceMetadata
|
|
2612
|
+
include Google::Apis::Core::Hashable
|
|
2613
|
+
|
|
2614
|
+
# Output only. If true, this resource is user-scoped, meaning it is either a
|
|
2615
|
+
# workspace or sourced from a workspace.
|
|
2616
|
+
# Corresponds to the JSON property `userScoped`
|
|
2617
|
+
# @return [Boolean]
|
|
2618
|
+
attr_accessor :user_scoped
|
|
2619
|
+
alias_method :user_scoped?, :user_scoped
|
|
2620
|
+
|
|
2621
|
+
def initialize(**args)
|
|
2622
|
+
update!(**args)
|
|
2623
|
+
end
|
|
2624
|
+
|
|
2625
|
+
# Update properties of this object
|
|
2626
|
+
def update!(**args)
|
|
2627
|
+
@user_scoped = args[:user_scoped] if args.key?(:user_scoped)
|
|
2628
|
+
end
|
|
2629
|
+
end
|
|
2630
|
+
|
|
2464
2631
|
# `PullGitCommits` request message.
|
|
2465
2632
|
class PullGitCommitsRequest
|
|
2466
2633
|
include Google::Apis::Core::Hashable
|
|
@@ -2585,6 +2752,32 @@ module Google
|
|
|
2585
2752
|
end
|
|
2586
2753
|
end
|
|
2587
2754
|
|
|
2755
|
+
# `QueryFolderContents` response message.
|
|
2756
|
+
class QueryFolderContentsResponse
|
|
2757
|
+
include Google::Apis::Core::Hashable
|
|
2758
|
+
|
|
2759
|
+
# List of entries in the folder.
|
|
2760
|
+
# Corresponds to the JSON property `entries`
|
|
2761
|
+
# @return [Array<Google::Apis::DataformV1beta1::FolderContentsEntry>]
|
|
2762
|
+
attr_accessor :entries
|
|
2763
|
+
|
|
2764
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
|
2765
|
+
# field is omitted, there are no subsequent pages.
|
|
2766
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
2767
|
+
# @return [String]
|
|
2768
|
+
attr_accessor :next_page_token
|
|
2769
|
+
|
|
2770
|
+
def initialize(**args)
|
|
2771
|
+
update!(**args)
|
|
2772
|
+
end
|
|
2773
|
+
|
|
2774
|
+
# Update properties of this object
|
|
2775
|
+
def update!(**args)
|
|
2776
|
+
@entries = args[:entries] if args.key?(:entries)
|
|
2777
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2778
|
+
end
|
|
2779
|
+
end
|
|
2780
|
+
|
|
2588
2781
|
# `QueryRepositoryDirectoryContents` response message.
|
|
2589
2782
|
class QueryRepositoryDirectoryContentsResponse
|
|
2590
2783
|
include Google::Apis::Core::Hashable
|
|
@@ -2611,6 +2804,58 @@ module Google
|
|
|
2611
2804
|
end
|
|
2612
2805
|
end
|
|
2613
2806
|
|
|
2807
|
+
# `QueryTeamFolderContents` response message.
|
|
2808
|
+
class QueryTeamFolderContentsResponse
|
|
2809
|
+
include Google::Apis::Core::Hashable
|
|
2810
|
+
|
|
2811
|
+
# List of entries in the TeamFolder.
|
|
2812
|
+
# Corresponds to the JSON property `entries`
|
|
2813
|
+
# @return [Array<Google::Apis::DataformV1beta1::TeamFolderContentsEntry>]
|
|
2814
|
+
attr_accessor :entries
|
|
2815
|
+
|
|
2816
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
|
2817
|
+
# field is omitted, there are no subsequent pages.
|
|
2818
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
2819
|
+
# @return [String]
|
|
2820
|
+
attr_accessor :next_page_token
|
|
2821
|
+
|
|
2822
|
+
def initialize(**args)
|
|
2823
|
+
update!(**args)
|
|
2824
|
+
end
|
|
2825
|
+
|
|
2826
|
+
# Update properties of this object
|
|
2827
|
+
def update!(**args)
|
|
2828
|
+
@entries = args[:entries] if args.key?(:entries)
|
|
2829
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2830
|
+
end
|
|
2831
|
+
end
|
|
2832
|
+
|
|
2833
|
+
# `QueryUserRootContents` response message.
|
|
2834
|
+
class QueryUserRootContentsResponse
|
|
2835
|
+
include Google::Apis::Core::Hashable
|
|
2836
|
+
|
|
2837
|
+
# List of entries in the folder.
|
|
2838
|
+
# Corresponds to the JSON property `entries`
|
|
2839
|
+
# @return [Array<Google::Apis::DataformV1beta1::RootContentsEntry>]
|
|
2840
|
+
attr_accessor :entries
|
|
2841
|
+
|
|
2842
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
|
2843
|
+
# field is omitted, there are no subsequent pages.
|
|
2844
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
2845
|
+
# @return [String]
|
|
2846
|
+
attr_accessor :next_page_token
|
|
2847
|
+
|
|
2848
|
+
def initialize(**args)
|
|
2849
|
+
update!(**args)
|
|
2850
|
+
end
|
|
2851
|
+
|
|
2852
|
+
# Update properties of this object
|
|
2853
|
+
def update!(**args)
|
|
2854
|
+
@entries = args[:entries] if args.key?(:entries)
|
|
2855
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2856
|
+
end
|
|
2857
|
+
end
|
|
2858
|
+
|
|
2614
2859
|
# `QueryWorkflowInvocationActions` response message.
|
|
2615
2860
|
class QueryWorkflowInvocationActionsResponse
|
|
2616
2861
|
include Google::Apis::Core::Hashable
|
|
@@ -2993,6 +3238,13 @@ module Google
|
|
|
2993
3238
|
class Repository
|
|
2994
3239
|
include Google::Apis::Core::Hashable
|
|
2995
3240
|
|
|
3241
|
+
# Optional. The name of the containing folder of the repository. The field is
|
|
3242
|
+
# immutable and it can be modified via a MoveRepository operation. Format: `
|
|
3243
|
+
# projects/*/locations/*/folders/*`. or `projects/*/locations/*/teamFolders/*`.
|
|
3244
|
+
# Corresponds to the JSON property `containingFolder`
|
|
3245
|
+
# @return [String]
|
|
3246
|
+
attr_accessor :containing_folder
|
|
3247
|
+
|
|
2996
3248
|
# Output only. The timestamp of when the repository was created.
|
|
2997
3249
|
# Corresponds to the JSON property `createTime`
|
|
2998
3250
|
# @return [String]
|
|
@@ -3061,6 +3313,14 @@ module Google
|
|
|
3061
3313
|
attr_accessor :set_authenticated_user_admin
|
|
3062
3314
|
alias_method :set_authenticated_user_admin?, :set_authenticated_user_admin
|
|
3063
3315
|
|
|
3316
|
+
# Output only. The resource name of the TeamFolder that this Repository is
|
|
3317
|
+
# associated with. This should take the format: projects/`project`/locations/`
|
|
3318
|
+
# location`/teamFolders/`teamFolder`. If this is not set, the Repository is not
|
|
3319
|
+
# associated with a TeamFolder.
|
|
3320
|
+
# Corresponds to the JSON property `teamFolderName`
|
|
3321
|
+
# @return [String]
|
|
3322
|
+
attr_accessor :team_folder_name
|
|
3323
|
+
|
|
3064
3324
|
# Configures workspace compilation overrides for a repository. Primarily used by
|
|
3065
3325
|
# the UI (`console.cloud.google.com`). `schema_suffix` and `table_prefix` can
|
|
3066
3326
|
# have a special expression - `$`workspaceName``, which refers to the workspace
|
|
@@ -3079,6 +3339,7 @@ module Google
|
|
|
3079
3339
|
|
|
3080
3340
|
# Update properties of this object
|
|
3081
3341
|
def update!(**args)
|
|
3342
|
+
@containing_folder = args[:containing_folder] if args.key?(:containing_folder)
|
|
3082
3343
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3083
3344
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
3084
3345
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
@@ -3090,6 +3351,7 @@ module Google
|
|
|
3090
3351
|
@npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
|
|
3091
3352
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
3092
3353
|
@set_authenticated_user_admin = args[:set_authenticated_user_admin] if args.key?(:set_authenticated_user_admin)
|
|
3354
|
+
@team_folder_name = args[:team_folder_name] if args.key?(:team_folder_name)
|
|
3093
3355
|
@workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
|
|
3094
3356
|
end
|
|
3095
3357
|
end
|
|
@@ -3134,6 +3396,32 @@ module Google
|
|
|
3134
3396
|
end
|
|
3135
3397
|
end
|
|
3136
3398
|
|
|
3399
|
+
# Represents a single content entry.
|
|
3400
|
+
class RootContentsEntry
|
|
3401
|
+
include Google::Apis::Core::Hashable
|
|
3402
|
+
|
|
3403
|
+
# Represents a Dataform Folder. This is a resource that is used to organize
|
|
3404
|
+
# Files and other Folders and provide hierarchical access controls.
|
|
3405
|
+
# Corresponds to the JSON property `folder`
|
|
3406
|
+
# @return [Google::Apis::DataformV1beta1::Folder]
|
|
3407
|
+
attr_accessor :folder
|
|
3408
|
+
|
|
3409
|
+
# Represents a Dataform Git repository.
|
|
3410
|
+
# Corresponds to the JSON property `repository`
|
|
3411
|
+
# @return [Google::Apis::DataformV1beta1::Repository]
|
|
3412
|
+
attr_accessor :repository
|
|
3413
|
+
|
|
3414
|
+
def initialize(**args)
|
|
3415
|
+
update!(**args)
|
|
3416
|
+
end
|
|
3417
|
+
|
|
3418
|
+
# Update properties of this object
|
|
3419
|
+
def update!(**args)
|
|
3420
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
3421
|
+
@repository = args[:repository] if args.key?(:repository)
|
|
3422
|
+
end
|
|
3423
|
+
end
|
|
3424
|
+
|
|
3137
3425
|
# A record of an attempt to create a workflow invocation for this workflow
|
|
3138
3426
|
# config.
|
|
3139
3427
|
class ScheduledExecutionRecord
|
|
@@ -3262,6 +3550,32 @@ module Google
|
|
|
3262
3550
|
end
|
|
3263
3551
|
end
|
|
3264
3552
|
|
|
3553
|
+
# `SearchTeamFolders` response message.
|
|
3554
|
+
class SearchTeamFoldersResponse
|
|
3555
|
+
include Google::Apis::Core::Hashable
|
|
3556
|
+
|
|
3557
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
|
3558
|
+
# field is omitted, there are no subsequent pages.
|
|
3559
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
3560
|
+
# @return [String]
|
|
3561
|
+
attr_accessor :next_page_token
|
|
3562
|
+
|
|
3563
|
+
# List of TeamFolders that match the search query.
|
|
3564
|
+
# Corresponds to the JSON property `results`
|
|
3565
|
+
# @return [Array<Google::Apis::DataformV1beta1::TeamFolderSearchResult>]
|
|
3566
|
+
attr_accessor :results
|
|
3567
|
+
|
|
3568
|
+
def initialize(**args)
|
|
3569
|
+
update!(**args)
|
|
3570
|
+
end
|
|
3571
|
+
|
|
3572
|
+
# Update properties of this object
|
|
3573
|
+
def update!(**args)
|
|
3574
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3575
|
+
@results = args[:results] if args.key?(:results)
|
|
3576
|
+
end
|
|
3577
|
+
end
|
|
3578
|
+
|
|
3265
3579
|
# Request message for `SetIamPolicy` method.
|
|
3266
3580
|
class SetIamPolicyRequest
|
|
3267
3581
|
include Google::Apis::Core::Hashable
|
|
@@ -3451,6 +3765,106 @@ module Google
|
|
|
3451
3765
|
end
|
|
3452
3766
|
end
|
|
3453
3767
|
|
|
3768
|
+
# Represents a Dataform TeamFolder. This is a resource that sits at the project
|
|
3769
|
+
# level and is used to organize Repositories and Folders with hierarchical
|
|
3770
|
+
# access controls. They provide a team context and stricter access controls.
|
|
3771
|
+
class TeamFolder
|
|
3772
|
+
include Google::Apis::Core::Hashable
|
|
3773
|
+
|
|
3774
|
+
# Output only. The timestamp of when the TeamFolder was created.
|
|
3775
|
+
# Corresponds to the JSON property `createTime`
|
|
3776
|
+
# @return [String]
|
|
3777
|
+
attr_accessor :create_time
|
|
3778
|
+
|
|
3779
|
+
# Output only. The IAM principal identifier of the creator of the TeamFolder.
|
|
3780
|
+
# Corresponds to the JSON property `creatorIamPrincipal`
|
|
3781
|
+
# @return [String]
|
|
3782
|
+
attr_accessor :creator_iam_principal
|
|
3783
|
+
|
|
3784
|
+
# Required. The TeamFolder's user-friendly name.
|
|
3785
|
+
# Corresponds to the JSON property `displayName`
|
|
3786
|
+
# @return [String]
|
|
3787
|
+
attr_accessor :display_name
|
|
3788
|
+
|
|
3789
|
+
# Output only. All the metadata information that is used internally to serve the
|
|
3790
|
+
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
3791
|
+
# this field is a JSON string.
|
|
3792
|
+
# Corresponds to the JSON property `internalMetadata`
|
|
3793
|
+
# @return [String]
|
|
3794
|
+
attr_accessor :internal_metadata
|
|
3795
|
+
|
|
3796
|
+
# Identifier. The TeamFolder's name.
|
|
3797
|
+
# Corresponds to the JSON property `name`
|
|
3798
|
+
# @return [String]
|
|
3799
|
+
attr_accessor :name
|
|
3800
|
+
|
|
3801
|
+
# Output only. The timestamp of when the TeamFolder was last updated.
|
|
3802
|
+
# Corresponds to the JSON property `updateTime`
|
|
3803
|
+
# @return [String]
|
|
3804
|
+
attr_accessor :update_time
|
|
3805
|
+
|
|
3806
|
+
def initialize(**args)
|
|
3807
|
+
update!(**args)
|
|
3808
|
+
end
|
|
3809
|
+
|
|
3810
|
+
# Update properties of this object
|
|
3811
|
+
def update!(**args)
|
|
3812
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3813
|
+
@creator_iam_principal = args[:creator_iam_principal] if args.key?(:creator_iam_principal)
|
|
3814
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3815
|
+
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
3816
|
+
@name = args[:name] if args.key?(:name)
|
|
3817
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
3818
|
+
end
|
|
3819
|
+
end
|
|
3820
|
+
|
|
3821
|
+
# Represents a single content entry.
|
|
3822
|
+
class TeamFolderContentsEntry
|
|
3823
|
+
include Google::Apis::Core::Hashable
|
|
3824
|
+
|
|
3825
|
+
# Represents a Dataform Folder. This is a resource that is used to organize
|
|
3826
|
+
# Files and other Folders and provide hierarchical access controls.
|
|
3827
|
+
# Corresponds to the JSON property `folder`
|
|
3828
|
+
# @return [Google::Apis::DataformV1beta1::Folder]
|
|
3829
|
+
attr_accessor :folder
|
|
3830
|
+
|
|
3831
|
+
# Represents a Dataform Git repository.
|
|
3832
|
+
# Corresponds to the JSON property `repository`
|
|
3833
|
+
# @return [Google::Apis::DataformV1beta1::Repository]
|
|
3834
|
+
attr_accessor :repository
|
|
3835
|
+
|
|
3836
|
+
def initialize(**args)
|
|
3837
|
+
update!(**args)
|
|
3838
|
+
end
|
|
3839
|
+
|
|
3840
|
+
# Update properties of this object
|
|
3841
|
+
def update!(**args)
|
|
3842
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
3843
|
+
@repository = args[:repository] if args.key?(:repository)
|
|
3844
|
+
end
|
|
3845
|
+
end
|
|
3846
|
+
|
|
3847
|
+
# Represents a single content entry.
|
|
3848
|
+
class TeamFolderSearchResult
|
|
3849
|
+
include Google::Apis::Core::Hashable
|
|
3850
|
+
|
|
3851
|
+
# Represents a Dataform TeamFolder. This is a resource that sits at the project
|
|
3852
|
+
# level and is used to organize Repositories and Folders with hierarchical
|
|
3853
|
+
# access controls. They provide a team context and stricter access controls.
|
|
3854
|
+
# Corresponds to the JSON property `teamFolder`
|
|
3855
|
+
# @return [Google::Apis::DataformV1beta1::TeamFolder]
|
|
3856
|
+
attr_accessor :team_folder
|
|
3857
|
+
|
|
3858
|
+
def initialize(**args)
|
|
3859
|
+
update!(**args)
|
|
3860
|
+
end
|
|
3861
|
+
|
|
3862
|
+
# Update properties of this object
|
|
3863
|
+
def update!(**args)
|
|
3864
|
+
@team_folder = args[:team_folder] if args.key?(:team_folder)
|
|
3865
|
+
end
|
|
3866
|
+
end
|
|
3867
|
+
|
|
3454
3868
|
# Request message for `TestIamPermissions` method.
|
|
3455
3869
|
class TestIamPermissionsRequest
|
|
3456
3870
|
include Google::Apis::Core::Hashable
|
|
@@ -3641,6 +4055,11 @@ module Google
|
|
|
3641
4055
|
# @return [String]
|
|
3642
4056
|
attr_accessor :name
|
|
3643
4057
|
|
|
4058
|
+
# Metadata used to identify if a resource is user scoped.
|
|
4059
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
4060
|
+
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
4061
|
+
attr_accessor :private_resource_metadata
|
|
4062
|
+
|
|
3644
4063
|
# Output only. The resolved compilation result that was used to create this
|
|
3645
4064
|
# invocation. Will be in the format `projects/*/locations/*/repositories/*/
|
|
3646
4065
|
# compilationResults/*`.
|
|
@@ -3671,6 +4090,7 @@ module Google
|
|
|
3671
4090
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
|
3672
4091
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
|
3673
4092
|
@name = args[:name] if args.key?(:name)
|
|
4093
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
3674
4094
|
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
|
3675
4095
|
@state = args[:state] if args.key?(:state)
|
|
3676
4096
|
@workflow_config = args[:workflow_config] if args.key?(:workflow_config)
|
|
@@ -3765,6 +4185,13 @@ module Google
|
|
|
3765
4185
|
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
|
|
3766
4186
|
attr_accessor :data_encryption_state
|
|
3767
4187
|
|
|
4188
|
+
# Optional. If set to true, workspaces will not be moved if its linked
|
|
4189
|
+
# Repository is moved. Instead, it will be deleted.
|
|
4190
|
+
# Corresponds to the JSON property `disableMoves`
|
|
4191
|
+
# @return [Boolean]
|
|
4192
|
+
attr_accessor :disable_moves
|
|
4193
|
+
alias_method :disable_moves?, :disable_moves
|
|
4194
|
+
|
|
3768
4195
|
# Output only. All the metadata information that is used internally to serve the
|
|
3769
4196
|
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
3770
4197
|
# this field is a JSON string.
|
|
@@ -3777,6 +4204,11 @@ module Google
|
|
|
3777
4204
|
# @return [String]
|
|
3778
4205
|
attr_accessor :name
|
|
3779
4206
|
|
|
4207
|
+
# Metadata used to identify if a resource is user scoped.
|
|
4208
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
4209
|
+
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
4210
|
+
attr_accessor :private_resource_metadata
|
|
4211
|
+
|
|
3780
4212
|
def initialize(**args)
|
|
3781
4213
|
update!(**args)
|
|
3782
4214
|
end
|
|
@@ -3785,8 +4217,10 @@ module Google
|
|
|
3785
4217
|
def update!(**args)
|
|
3786
4218
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3787
4219
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
4220
|
+
@disable_moves = args[:disable_moves] if args.key?(:disable_moves)
|
|
3788
4221
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
3789
4222
|
@name = args[:name] if args.key?(:name)
|
|
4223
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
3790
4224
|
end
|
|
3791
4225
|
end
|
|
3792
4226
|
|
|
@@ -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.54.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 = "20260106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|