google-apis-dataform_v1beta1 0.53.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
|
@@ -1354,6 +1354,103 @@ module Google
|
|
|
1354
1354
|
end
|
|
1355
1355
|
end
|
|
1356
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
|
+
|
|
1357
1454
|
# Controls Git remote configuration for a repository.
|
|
1358
1455
|
class GitRemoteSettings
|
|
1359
1456
|
include Google::Apis::Core::Hashable
|
|
@@ -2073,6 +2170,48 @@ module Google
|
|
|
2073
2170
|
end
|
|
2074
2171
|
end
|
|
2075
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
|
+
|
|
2076
2215
|
# Represents a notebook.
|
|
2077
2216
|
class Notebook
|
|
2078
2217
|
include Google::Apis::Core::Hashable
|
|
@@ -2613,6 +2752,32 @@ module Google
|
|
|
2613
2752
|
end
|
|
2614
2753
|
end
|
|
2615
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
|
+
|
|
2616
2781
|
# `QueryRepositoryDirectoryContents` response message.
|
|
2617
2782
|
class QueryRepositoryDirectoryContentsResponse
|
|
2618
2783
|
include Google::Apis::Core::Hashable
|
|
@@ -2639,6 +2804,58 @@ module Google
|
|
|
2639
2804
|
end
|
|
2640
2805
|
end
|
|
2641
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
|
+
|
|
2642
2859
|
# `QueryWorkflowInvocationActions` response message.
|
|
2643
2860
|
class QueryWorkflowInvocationActionsResponse
|
|
2644
2861
|
include Google::Apis::Core::Hashable
|
|
@@ -3021,6 +3238,13 @@ module Google
|
|
|
3021
3238
|
class Repository
|
|
3022
3239
|
include Google::Apis::Core::Hashable
|
|
3023
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
|
+
|
|
3024
3248
|
# Output only. The timestamp of when the repository was created.
|
|
3025
3249
|
# Corresponds to the JSON property `createTime`
|
|
3026
3250
|
# @return [String]
|
|
@@ -3089,6 +3313,14 @@ module Google
|
|
|
3089
3313
|
attr_accessor :set_authenticated_user_admin
|
|
3090
3314
|
alias_method :set_authenticated_user_admin?, :set_authenticated_user_admin
|
|
3091
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
|
+
|
|
3092
3324
|
# Configures workspace compilation overrides for a repository. Primarily used by
|
|
3093
3325
|
# the UI (`console.cloud.google.com`). `schema_suffix` and `table_prefix` can
|
|
3094
3326
|
# have a special expression - `$`workspaceName``, which refers to the workspace
|
|
@@ -3107,6 +3339,7 @@ module Google
|
|
|
3107
3339
|
|
|
3108
3340
|
# Update properties of this object
|
|
3109
3341
|
def update!(**args)
|
|
3342
|
+
@containing_folder = args[:containing_folder] if args.key?(:containing_folder)
|
|
3110
3343
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3111
3344
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
3112
3345
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
@@ -3118,6 +3351,7 @@ module Google
|
|
|
3118
3351
|
@npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
|
|
3119
3352
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
3120
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)
|
|
3121
3355
|
@workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
|
|
3122
3356
|
end
|
|
3123
3357
|
end
|
|
@@ -3162,6 +3396,32 @@ module Google
|
|
|
3162
3396
|
end
|
|
3163
3397
|
end
|
|
3164
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
|
+
|
|
3165
3425
|
# A record of an attempt to create a workflow invocation for this workflow
|
|
3166
3426
|
# config.
|
|
3167
3427
|
class ScheduledExecutionRecord
|
|
@@ -3290,6 +3550,32 @@ module Google
|
|
|
3290
3550
|
end
|
|
3291
3551
|
end
|
|
3292
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
|
+
|
|
3293
3579
|
# Request message for `SetIamPolicy` method.
|
|
3294
3580
|
class SetIamPolicyRequest
|
|
3295
3581
|
include Google::Apis::Core::Hashable
|
|
@@ -3479,6 +3765,106 @@ module Google
|
|
|
3479
3765
|
end
|
|
3480
3766
|
end
|
|
3481
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
|
+
|
|
3482
3868
|
# Request message for `TestIamPermissions` method.
|
|
3483
3869
|
class TestIamPermissionsRequest
|
|
3484
3870
|
include Google::Apis::Core::Hashable
|
|
@@ -3799,6 +4185,13 @@ module Google
|
|
|
3799
4185
|
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
|
|
3800
4186
|
attr_accessor :data_encryption_state
|
|
3801
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
|
+
|
|
3802
4195
|
# Output only. All the metadata information that is used internally to serve the
|
|
3803
4196
|
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
3804
4197
|
# this field is a JSON string.
|
|
@@ -3824,6 +4217,7 @@ module Google
|
|
|
3824
4217
|
def update!(**args)
|
|
3825
4218
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3826
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)
|
|
3827
4221
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
3828
4222
|
@name = args[:name] if args.key?(:name)
|
|
3829
4223
|
@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 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
|