google-cloud-dataform-v1 0.4.0 → 0.5.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 +4 -4
- data/lib/google/cloud/dataform/v1/dataform/client.rb +26 -18
- data/lib/google/cloud/dataform/v1/dataform/paths.rb +21 -0
- data/lib/google/cloud/dataform/v1/dataform/rest/client.rb +26 -18
- data/lib/google/cloud/dataform/v1/dataform_pb.rb +1 -1
- data/lib/google/cloud/dataform/v1/version.rb +1 -1
- data/proto_docs/google/cloud/dataform/v1/dataform.rb +49 -27
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9335063a7fa15e53a926ef6adb4c51000e9a3221a3d89045d94f99b7a5cd9b0
|
|
4
|
+
data.tar.gz: d568f30659593bc82e65abed043167409fc2109f7019e3be23b853d5a8c64190
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7907237758e825d6441aefce9b248dc2d5170fce68caf72f9038d3e34450fe7fde4e00866c4422d553b5221bb477ca2092f3fbdf76956810a3a8f8fdad3fad5f
|
|
7
|
+
data.tar.gz: 427b280fb03e37c94449735241ae99a0e835cee6ddd847e96cae607cc816c835ab1ea2e50aa3fed5b9ed2d99cafecc8d3e3b4454a136b9725026c0b5381693bd
|
|
@@ -699,7 +699,7 @@ module Google
|
|
|
699
699
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
700
700
|
#
|
|
701
701
|
# @param team_folder [::String]
|
|
702
|
-
# Required.
|
|
702
|
+
# Required. Resource name of the TeamFolder to list contents for.
|
|
703
703
|
# Format: `projects/*/locations/*/teamFolders/*`.
|
|
704
704
|
# @param page_size [::Integer]
|
|
705
705
|
# Optional. Maximum number of paths to return. The server may return fewer
|
|
@@ -718,14 +718,16 @@ module Google
|
|
|
718
718
|
# order. Supported keywords: `display_name` (default), `create_time`,
|
|
719
719
|
# last_modified_time.
|
|
720
720
|
# Examples:
|
|
721
|
-
#
|
|
722
|
-
#
|
|
721
|
+
#
|
|
722
|
+
# * `orderBy="display_name"`
|
|
723
|
+
# * `orderBy="display_name desc"`
|
|
723
724
|
# @param filter [::String]
|
|
724
725
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
725
726
|
# only supported on the `display_name` field.
|
|
726
727
|
#
|
|
727
728
|
# Example:
|
|
728
|
-
#
|
|
729
|
+
#
|
|
730
|
+
# * `filter="display_name="MyFolder""`
|
|
729
731
|
#
|
|
730
732
|
# @yield [response, operation] Access the result along with the RPC operation
|
|
731
733
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Dataform::V1::QueryTeamFolderContentsResponse::TeamFolderContentsEntry>]
|
|
@@ -820,9 +822,9 @@ module Google
|
|
|
820
822
|
# Required. Location in which to query TeamFolders.
|
|
821
823
|
# Format: `projects/*/locations/*`.
|
|
822
824
|
# @param page_size [::Integer]
|
|
823
|
-
# Optional. Maximum number of TeamFolders to return. The server may return
|
|
824
|
-
# fewer items than requested. If unspecified, the server will pick
|
|
825
|
-
#
|
|
825
|
+
# Optional. Maximum number of `TeamFolders` to return. The server may return
|
|
826
|
+
# fewer items than requested. If unspecified, the server will pick a default
|
|
827
|
+
# of `page_size` = 50.
|
|
826
828
|
# @param page_token [::String]
|
|
827
829
|
# Optional. Page token received from a previous `SearchTeamFolders` call.
|
|
828
830
|
# Provide this to retrieve the subsequent page.
|
|
@@ -834,14 +836,16 @@ module Google
|
|
|
834
836
|
# Optional. Field to additionally sort results by.
|
|
835
837
|
# Supported keywords: `display_name` (default), `create_time`,
|
|
836
838
|
# `last_modified_time`. Examples:
|
|
837
|
-
#
|
|
838
|
-
#
|
|
839
|
+
#
|
|
840
|
+
# * `orderBy="display_name"`
|
|
841
|
+
# * `orderBy="display_name desc"`
|
|
839
842
|
# @param filter [::String]
|
|
840
843
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
841
844
|
# only supported on the `display_name` field.
|
|
842
845
|
#
|
|
843
846
|
# Example:
|
|
844
|
-
#
|
|
847
|
+
#
|
|
848
|
+
# * `filter="display_name="MyFolder""`
|
|
845
849
|
#
|
|
846
850
|
# @yield [response, operation] Access the result along with the RPC operation
|
|
847
851
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Dataform::V1::SearchTeamFoldersResponse::TeamFolderSearchResult>]
|
|
@@ -1384,7 +1388,7 @@ module Google
|
|
|
1384
1388
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
1385
1389
|
#
|
|
1386
1390
|
# @param folder [::String]
|
|
1387
|
-
# Required.
|
|
1391
|
+
# Required. Resource name of the Folder to list contents for.
|
|
1388
1392
|
# Format: projects/*/locations/*/folders/*
|
|
1389
1393
|
# @param page_size [::Integer]
|
|
1390
1394
|
# Optional. Maximum number of paths to return. The server may return fewer
|
|
@@ -1403,14 +1407,16 @@ module Google
|
|
|
1403
1407
|
# order. Supported keywords: display_name (default), create_time,
|
|
1404
1408
|
# last_modified_time.
|
|
1405
1409
|
# Examples:
|
|
1406
|
-
#
|
|
1407
|
-
#
|
|
1410
|
+
#
|
|
1411
|
+
# * `orderBy="display_name"`
|
|
1412
|
+
# * `orderBy="display_name desc"`
|
|
1408
1413
|
# @param filter [::String]
|
|
1409
1414
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
1410
1415
|
# only supported on the `display_name` field.
|
|
1411
1416
|
#
|
|
1412
1417
|
# Example:
|
|
1413
|
-
#
|
|
1418
|
+
#
|
|
1419
|
+
# * `filter="display_name="MyFolder""`
|
|
1414
1420
|
#
|
|
1415
1421
|
# @yield [response, operation] Access the result along with the RPC operation
|
|
1416
1422
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Dataform::V1::QueryFolderContentsResponse::FolderContentsEntry>]
|
|
@@ -1503,7 +1509,7 @@ module Google
|
|
|
1503
1509
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
1504
1510
|
#
|
|
1505
1511
|
# @param location [::String]
|
|
1506
|
-
# Required. Location of the user root folder
|
|
1512
|
+
# Required. Location of the user root folder to list contents for.
|
|
1507
1513
|
# Format: projects/*/locations/*
|
|
1508
1514
|
# @param page_size [::Integer]
|
|
1509
1515
|
# Optional. Maximum number of paths to return. The server may return fewer
|
|
@@ -1521,14 +1527,16 @@ module Google
|
|
|
1521
1527
|
# Will order Folders before Repositories, and then by `order_by` in ascending
|
|
1522
1528
|
# order. Supported keywords: display_name (default), created_at,
|
|
1523
1529
|
# last_modified_at. Examples:
|
|
1524
|
-
#
|
|
1525
|
-
#
|
|
1530
|
+
#
|
|
1531
|
+
# * `orderBy="display_name"`
|
|
1532
|
+
# * `orderBy="display_name desc"`
|
|
1526
1533
|
# @param filter [::String]
|
|
1527
1534
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
1528
1535
|
# only supported on the `display_name` field.
|
|
1529
1536
|
#
|
|
1530
1537
|
# Example:
|
|
1531
|
-
#
|
|
1538
|
+
#
|
|
1539
|
+
# * `filter="display_name="MyFolder""`
|
|
1532
1540
|
#
|
|
1533
1541
|
# @yield [response, operation] Access the result along with the RPC operation
|
|
1534
1542
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Dataform::V1::QueryUserRootContentsResponse::RootContentsEntry>]
|
|
@@ -125,6 +125,27 @@ module Google
|
|
|
125
125
|
"projects/#{project}/locations/#{location}/folders/#{folder}"
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
+
##
|
|
129
|
+
# Create a fully-qualified GitRepositoryLink resource string.
|
|
130
|
+
#
|
|
131
|
+
# The resource will be in the following format:
|
|
132
|
+
#
|
|
133
|
+
# `projects/{project}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_repository_link}`
|
|
134
|
+
#
|
|
135
|
+
# @param project [String]
|
|
136
|
+
# @param location [String]
|
|
137
|
+
# @param connection [String]
|
|
138
|
+
# @param git_repository_link [String]
|
|
139
|
+
#
|
|
140
|
+
# @return [::String]
|
|
141
|
+
def git_repository_link_path project:, location:, connection:, git_repository_link:
|
|
142
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
|
143
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
|
144
|
+
raise ::ArgumentError, "connection cannot contain /" if connection.to_s.include? "/"
|
|
145
|
+
|
|
146
|
+
"projects/#{project}/locations/#{location}/connections/#{connection}/gitRepositoryLinks/#{git_repository_link}"
|
|
147
|
+
end
|
|
148
|
+
|
|
128
149
|
##
|
|
129
150
|
# Create a fully-qualified Location resource string.
|
|
130
151
|
#
|
|
@@ -658,7 +658,7 @@ module Google
|
|
|
658
658
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
659
659
|
#
|
|
660
660
|
# @param team_folder [::String]
|
|
661
|
-
# Required.
|
|
661
|
+
# Required. Resource name of the TeamFolder to list contents for.
|
|
662
662
|
# Format: `projects/*/locations/*/teamFolders/*`.
|
|
663
663
|
# @param page_size [::Integer]
|
|
664
664
|
# Optional. Maximum number of paths to return. The server may return fewer
|
|
@@ -677,14 +677,16 @@ module Google
|
|
|
677
677
|
# order. Supported keywords: `display_name` (default), `create_time`,
|
|
678
678
|
# last_modified_time.
|
|
679
679
|
# Examples:
|
|
680
|
-
#
|
|
681
|
-
#
|
|
680
|
+
#
|
|
681
|
+
# * `orderBy="display_name"`
|
|
682
|
+
# * `orderBy="display_name desc"`
|
|
682
683
|
# @param filter [::String]
|
|
683
684
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
684
685
|
# only supported on the `display_name` field.
|
|
685
686
|
#
|
|
686
687
|
# Example:
|
|
687
|
-
#
|
|
688
|
+
#
|
|
689
|
+
# * `filter="display_name="MyFolder""`
|
|
688
690
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
689
691
|
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1::QueryTeamFolderContentsResponse::TeamFolderContentsEntry>]
|
|
690
692
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
@@ -772,9 +774,9 @@ module Google
|
|
|
772
774
|
# Required. Location in which to query TeamFolders.
|
|
773
775
|
# Format: `projects/*/locations/*`.
|
|
774
776
|
# @param page_size [::Integer]
|
|
775
|
-
# Optional. Maximum number of TeamFolders to return. The server may return
|
|
776
|
-
# fewer items than requested. If unspecified, the server will pick
|
|
777
|
-
#
|
|
777
|
+
# Optional. Maximum number of `TeamFolders` to return. The server may return
|
|
778
|
+
# fewer items than requested. If unspecified, the server will pick a default
|
|
779
|
+
# of `page_size` = 50.
|
|
778
780
|
# @param page_token [::String]
|
|
779
781
|
# Optional. Page token received from a previous `SearchTeamFolders` call.
|
|
780
782
|
# Provide this to retrieve the subsequent page.
|
|
@@ -786,14 +788,16 @@ module Google
|
|
|
786
788
|
# Optional. Field to additionally sort results by.
|
|
787
789
|
# Supported keywords: `display_name` (default), `create_time`,
|
|
788
790
|
# `last_modified_time`. Examples:
|
|
789
|
-
#
|
|
790
|
-
#
|
|
791
|
+
#
|
|
792
|
+
# * `orderBy="display_name"`
|
|
793
|
+
# * `orderBy="display_name desc"`
|
|
791
794
|
# @param filter [::String]
|
|
792
795
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
793
796
|
# only supported on the `display_name` field.
|
|
794
797
|
#
|
|
795
798
|
# Example:
|
|
796
|
-
#
|
|
799
|
+
#
|
|
800
|
+
# * `filter="display_name="MyFolder""`
|
|
797
801
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
798
802
|
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1::SearchTeamFoldersResponse::TeamFolderSearchResult>]
|
|
799
803
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
@@ -1294,7 +1298,7 @@ module Google
|
|
|
1294
1298
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
1295
1299
|
#
|
|
1296
1300
|
# @param folder [::String]
|
|
1297
|
-
# Required.
|
|
1301
|
+
# Required. Resource name of the Folder to list contents for.
|
|
1298
1302
|
# Format: projects/*/locations/*/folders/*
|
|
1299
1303
|
# @param page_size [::Integer]
|
|
1300
1304
|
# Optional. Maximum number of paths to return. The server may return fewer
|
|
@@ -1313,14 +1317,16 @@ module Google
|
|
|
1313
1317
|
# order. Supported keywords: display_name (default), create_time,
|
|
1314
1318
|
# last_modified_time.
|
|
1315
1319
|
# Examples:
|
|
1316
|
-
#
|
|
1317
|
-
#
|
|
1320
|
+
#
|
|
1321
|
+
# * `orderBy="display_name"`
|
|
1322
|
+
# * `orderBy="display_name desc"`
|
|
1318
1323
|
# @param filter [::String]
|
|
1319
1324
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
1320
1325
|
# only supported on the `display_name` field.
|
|
1321
1326
|
#
|
|
1322
1327
|
# Example:
|
|
1323
|
-
#
|
|
1328
|
+
#
|
|
1329
|
+
# * `filter="display_name="MyFolder""`
|
|
1324
1330
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
1325
1331
|
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1::QueryFolderContentsResponse::FolderContentsEntry>]
|
|
1326
1332
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
@@ -1406,7 +1412,7 @@ module Google
|
|
|
1406
1412
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
1407
1413
|
#
|
|
1408
1414
|
# @param location [::String]
|
|
1409
|
-
# Required. Location of the user root folder
|
|
1415
|
+
# Required. Location of the user root folder to list contents for.
|
|
1410
1416
|
# Format: projects/*/locations/*
|
|
1411
1417
|
# @param page_size [::Integer]
|
|
1412
1418
|
# Optional. Maximum number of paths to return. The server may return fewer
|
|
@@ -1424,14 +1430,16 @@ module Google
|
|
|
1424
1430
|
# Will order Folders before Repositories, and then by `order_by` in ascending
|
|
1425
1431
|
# order. Supported keywords: display_name (default), created_at,
|
|
1426
1432
|
# last_modified_at. Examples:
|
|
1427
|
-
#
|
|
1428
|
-
#
|
|
1433
|
+
#
|
|
1434
|
+
# * `orderBy="display_name"`
|
|
1435
|
+
# * `orderBy="display_name desc"`
|
|
1429
1436
|
# @param filter [::String]
|
|
1430
1437
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
1431
1438
|
# only supported on the `display_name` field.
|
|
1432
1439
|
#
|
|
1433
1440
|
# Example:
|
|
1434
|
-
#
|
|
1441
|
+
#
|
|
1442
|
+
# * `filter="display_name="MyFolder""`
|
|
1435
1443
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
1436
1444
|
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1::QueryUserRootContentsResponse::RootContentsEntry>]
|
|
1437
1445
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
@@ -18,7 +18,7 @@ require 'google/rpc/status_pb'
|
|
|
18
18
|
require 'google/type/interval_pb'
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
descriptor_data = "\n\'google/cloud/dataform/v1/dataform.proto\x12\x18google.cloud.dataform.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/iam/v1/iam_policy.proto\x1a\x1agoogle/iam/v1/policy.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\x1a\x1agoogle/type/interval.proto\"e\n\x13\x44\x61taEncryptionState\x12N\n\x14kms_key_version_name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\"\x92\x0e\n\nRepository\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12#\n\x11\x63ontaining_folder\x18\x10 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12\"\n\x10team_folder_name\x18\x12 \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12\x34\n\x0b\x63reate_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12X\n\x13git_remote_settings\x18\x02 \x01(\x0b\x32\x36.google.cloud.dataform.v1.Repository.GitRemoteSettingsB\x03\xe0\x41\x01\x12\x66\n*npmrc_environment_variables_secret_version\x18\x03 \x01(\tB2\xe0\x41\x01\xfa\x41,\n*secretmanager.googleapis.com/SecretVersion\x12p\n\x1fworkspace_compilation_overrides\x18\x04 \x01(\x0b\x32\x42.google.cloud.dataform.v1.Repository.WorkspaceCompilationOverridesB\x03\xe0\x41\x01\x12\x45\n\x06labels\x18\x05 \x03(\x0b\x32\x30.google.cloud.dataform.v1.Repository.LabelsEntryB\x03\xe0\x41\x01\x12,\n\x1cset_authenticated_user_admin\x18\t \x01(\x08\x42\x06\xe0\x41\x01\xe0\x41\x04\x12\x1c\n\x0fservice_account\x18\n \x01(\tB\x03\xe0\x41\x01\x12?\n\x0ckms_key_name\x18\x0b \x01(\tB)\xe0\x41\x01\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12Q\n\x15\x64\x61ta_encryption_state\x18\x0c \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x0f \x01(\tB\x03\xe0\x41\x03H\x02\x88\x01\x01\x1a\xe7\x04\n\x11GitRemoteSettings\x12\x10\n\x03url\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0e\x64\x65\x66\x61ult_branch\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12_\n#authentication_token_secret_version\x18\x03 \x01(\tB2\xe0\x41\x01\xfa\x41,\n*secretmanager.googleapis.com/SecretVersion\x12v\n\x19ssh_authentication_config\x18\x05 \x01(\x0b\x32N.google.cloud.dataform.v1.Repository.GitRemoteSettings.SshAuthenticationConfigB\x03\xe0\x41\x01\x12_\n\x0ctoken_status\x18\x04 \x01(\x0e\x32\x42.google.cloud.dataform.v1.Repository.GitRemoteSettings.TokenStatusB\x05\x18\x01\xe0\x41\x03\x1a\x94\x01\n\x17SshAuthenticationConfig\x12[\n\x1fuser_private_key_secret_version\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*secretmanager.googleapis.com/SecretVersion\x12\x1c\n\x0fhost_public_key\x18\x02 \x01(\tB\x03\xe0\x41\x02\"R\n\x0bTokenStatus\x12\x1c\n\x18TOKEN_STATUS_UNSPECIFIED\x10\x00\x12\r\n\tNOT_FOUND\x10\x01\x12\x0b\n\x07INVALID\x10\x02\x12\t\n\x05VALID\x10\x03\x1au\n\x1dWorkspaceCompilationOverrides\x12\x1d\n\x10\x64\x65\x66\x61ult_database\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rschema_suffix\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0ctable_prefix\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x85\x01\xea\x41\x81\x01\n\"dataform.googleapis.com/Repository\x12\x41projects/{project}/locations/{location}/repositories/{repository}*\x0crepositories2\nrepositoryB\x14\n\x12_containing_folderB\x13\n\x11_team_folder_nameB\x14\n\x12_internal_metadata\"3\n\x17PrivateResourceMetadata\x12\x18\n\x0buser_scoped\x18\x01 \x01(\x08\x42\x03\xe0\x41\x03\"\xb1\x01\n\x17ListRepositoriesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x18ListRepositoriesResponse\x12:\n\x0crepositories\x18\x01 \x03(\x0b\x32$.google.cloud.dataform.v1.Repository\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xa4\x01\n\x15MoveRepositoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12/\n\x1d\x64\x65stination_containing_folder\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x42 \n\x1e_destination_containing_folder\"P\n\x14GetRepositoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\"\xaf\x01\n\x17\x43reateRepositoryRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12=\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryB\x03\xe0\x41\x02\x12\x1a\n\rrepository_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x8e\x01\n\x17UpdateRepositoryRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12=\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryB\x03\xe0\x41\x02\"g\n\x17\x44\x65leteRepositoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xd2\x05\n\x1e\x43ommitRepositoryChangesRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x46\n\x0f\x63ommit_metadata\x18\x02 \x01(\x0b\x32(.google.cloud.dataform.v1.CommitMetadataB\x03\xe0\x41\x02\x12%\n\x18required_head_commit_sha\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12j\n\x0f\x66ile_operations\x18\x03 \x03(\x0b\x32L.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperationsEntryB\x03\xe0\x41\x01\x1a\x9b\x02\n\rFileOperation\x12\x66\n\nwrite_file\x18\x01 \x01(\x0b\x32P.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperation.WriteFileH\x00\x12h\n\x0b\x64\x65lete_file\x18\x02 \x01(\x0b\x32Q.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperation.DeleteFileH\x00\x1a\x1d\n\tWriteFile\x12\x10\n\x08\x63ontents\x18\x01 \x01(\x0c\x1a\x0c\n\nDeleteFileB\x0b\n\toperation\x1a}\n\x13\x46ileOperationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12U\n\x05value\x18\x02 \x01(\x0b\x32\x46.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperation:\x02\x38\x01\"5\n\x1f\x43ommitRepositoryChangesResponse\x12\x12\n\ncommit_sha\x18\x01 \x01(\t\"\x81\x01\n\x19ReadRepositoryFileRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x17\n\ncommit_sha\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04path\x18\x03 \x01(\tB\x03\xe0\x41\x02\".\n\x1aReadRepositoryFileResponse\x12\x10\n\x08\x63ontents\x18\x01 \x01(\x0c\"\xc0\x01\n\'QueryRepositoryDirectoryContentsRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x17\n\ncommit_sha\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04path\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x88\x01\n(QueryRepositoryDirectoryContentsResponse\x12\x43\n\x11\x64irectory_entries\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.DirectoryEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x8a\x01\n\x1d\x46\x65tchRepositoryHistoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\"t\n\x1e\x46\x65tchRepositoryHistoryResponse\x12\x39\n\x07\x63ommits\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.CommitLogEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xa5\x01\n\x0e\x43ommitLogEntry\x12/\n\x0b\x63ommit_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\ncommit_sha\x18\x02 \x01(\t\x12\x36\n\x06\x61uthor\x18\x03 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthor\x12\x16\n\x0e\x63ommit_message\x18\x04 \x01(\t\"j\n\x0e\x43ommitMetadata\x12;\n\x06\x61uthor\x18\x01 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthorB\x03\xe0\x41\x02\x12\x1b\n\x0e\x63ommit_message\x18\x02 \x01(\tB\x03\xe0\x41\x01\"e\n)ComputeRepositoryAccessTokenStatusRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\"\xff\x01\n*ComputeRepositoryAccessTokenStatusResponse\x12\x66\n\x0ctoken_status\x18\x01 \x01(\x0e\x32P.google.cloud.dataform.v1.ComputeRepositoryAccessTokenStatusResponse.TokenStatus\"i\n\x0bTokenStatus\x12\x1c\n\x18TOKEN_STATUS_UNSPECIFIED\x10\x00\x12\r\n\tNOT_FOUND\x10\x01\x12\x0b\n\x07INVALID\x10\x02\x12\t\n\x05VALID\x10\x03\x12\x15\n\x11PERMISSION_DENIED\x10\x04\"V\n\x1a\x46\x65tchRemoteBranchesRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\"/\n\x1b\x46\x65tchRemoteBranchesResponse\x12\x10\n\x08\x62ranches\x18\x01 \x03(\t\"\x8b\x04\n\tWorkspace\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x15\x64\x61ta_encryption_state\x18\x02 \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x05 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\x1f\n\rdisable_moves\x18\x06 \x01(\x08\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12Y\n\x19private_resource_metadata\x18\x08 \x01(\x0b\x32\x31.google.cloud.dataform.v1.PrivateResourceMetadataB\x03\xe0\x41\x03:\x98\x01\xea\x41\x94\x01\n!dataform.googleapis.com/Workspace\x12Xprojects/{project}/locations/{location}/repositories/{repository}/workspaces/{workspace}*\nworkspaces2\tworkspaceB\x14\n\x12_internal_metadataB\x10\n\x0e_disable_moves\"\xb0\x01\n\x15ListWorkspacesRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x7f\n\x16ListWorkspacesResponse\x12\x37\n\nworkspaces\x18\x01 \x03(\x0b\x32#.google.cloud.dataform.v1.Workspace\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"N\n\x13GetWorkspaceRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"\xac\x01\n\x16\x43reateWorkspaceRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12;\n\tworkspace\x18\x02 \x01(\x0b\x32#.google.cloud.dataform.v1.WorkspaceB\x03\xe0\x41\x02\x12\x19\n\x0cworkspace_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"Q\n\x16\x44\x65leteWorkspaceRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"=\n\x0c\x43ommitAuthor\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\remail_address\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xa9\x01\n\x15PullGitCommitsRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x1a\n\rremote_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12;\n\x06\x61uthor\x18\x03 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthorB\x03\xe0\x41\x02\"\x18\n\x16PullGitCommitsResponse\"l\n\x15PushGitCommitsRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x1a\n\rremote_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x18\n\x16PushGitCommitsResponse\"V\n\x1b\x46\x65tchFileGitStatusesRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"\xf7\x02\n\x1c\x46\x65tchFileGitStatusesResponse\x12n\n\x18uncommitted_file_changes\x18\x01 \x03(\x0b\x32L.google.cloud.dataform.v1.FetchFileGitStatusesResponse.UncommittedFileChange\x1a\xe6\x01\n\x15UncommittedFileChange\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x66\n\x05state\x18\x02 \x01(\x0e\x32R.google.cloud.dataform.v1.FetchFileGitStatusesResponse.UncommittedFileChange.StateB\x03\xe0\x41\x03\"W\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44\x44\x45\x44\x10\x01\x12\x0b\n\x07\x44\x45LETED\x10\x02\x12\x0c\n\x08MODIFIED\x10\x03\x12\x11\n\rHAS_CONFLICTS\x10\x04\"q\n\x1a\x46\x65tchGitAheadBehindRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x1a\n\rremote_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\"L\n\x1b\x46\x65tchGitAheadBehindResponse\x12\x15\n\rcommits_ahead\x18\x01 \x01(\x05\x12\x16\n\x0e\x63ommits_behind\x18\x02 \x01(\x05\"\xc6\x01\n\x1d\x43ommitWorkspaceChangesRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12;\n\x06\x61uthor\x18\x04 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthorB\x03\xe0\x41\x02\x12\x1b\n\x0e\x63ommit_message\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05paths\x18\x03 \x03(\tB\x03\xe0\x41\x01\" \n\x1e\x43ommitWorkspaceChangesResponse\"\x7f\n\x1cResetWorkspaceChangesRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x12\n\x05paths\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\x12\n\x05\x63lean\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"\x1f\n\x1dResetWorkspaceChangesResponse\"g\n\x14\x46\x65tchFileDiffRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"/\n\x15\x46\x65tchFileDiffResponse\x12\x16\n\x0e\x66ormatted_diff\x18\x01 \x01(\t\"\xe5\x01\n\x1dQueryDirectoryContentsRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x42\n\x04view\x18\x05 \x01(\x0e\x32/.google.cloud.dataform.v1.DirectoryContentsViewB\x03\xe0\x41\x01\"~\n\x1eQueryDirectoryContentsResponse\x12\x43\n\x11\x64irectory_entries\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.DirectoryEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x83\x01\n\x0e\x44irectoryEntry\x12\x0e\n\x04\x66ile\x18\x01 \x01(\tH\x00\x12\x13\n\tdirectory\x18\x02 \x01(\tH\x00\x12\x43\n\x08metadata\x18\x03 \x01(\x0b\x32\x31.google.cloud.dataform.v1.FilesystemEntryMetadataB\x07\n\x05\x65ntry\"h\n\x17\x46ilesystemEntryMetadata\x12\x17\n\nsize_bytes\x18\x01 \x01(\x03\x42\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"\x98\x01\n\x12SearchFilesRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"s\n\x13SearchFilesResponse\x12>\n\x0esearch_results\x18\x01 \x03(\x0b\x32&.google.cloud.dataform.v1.SearchResult\x12\x1c\n\x0fnext_page_token\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x99\x01\n\x0cSearchResult\x12:\n\x04\x66ile\x18\x01 \x01(\x0b\x32*.google.cloud.dataform.v1.FileSearchResultH\x00\x12\x44\n\tdirectory\x18\x02 \x01(\x0b\x32/.google.cloud.dataform.v1.DirectorySearchResultH\x00\x42\x07\n\x05\x65ntry\" \n\x10\x46ileSearchResult\x12\x0c\n\x04path\x18\x01 \x01(\t\"%\n\x15\x44irectorySearchResult\x12\x0c\n\x04path\x18\x01 \x01(\t\"g\n\x14MakeDirectoryRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x17\n\x15MakeDirectoryResponse\"i\n\x16RemoveDirectoryRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x19\n\x17RemoveDirectoryResponse\"~\n\x14MoveDirectoryRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08new_path\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x17\n\x15MoveDirectoryResponse\"y\n\x0fReadFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08revision\x18\x03 \x01(\tB\x03\xe0\x41\x01\")\n\x10ReadFileResponse\x12\x15\n\rfile_contents\x18\x01 \x01(\x0c\"d\n\x11RemoveFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x14\n\x12RemoveFileResponse\"y\n\x0fMoveFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08new_path\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x12\n\x10MoveFileResponse\"z\n\x10WriteFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08\x63ontents\x18\x03 \x01(\x0c\x42\x03\xe0\x41\x02\"\x13\n\x11WriteFileResponse\"Y\n\x19InstallNpmPackagesRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"\x1c\n\x1aInstallNpmPackagesResponse\"\xe7\x06\n\rReleaseConfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x1a\n\rgit_commitish\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12U\n\x17\x63ode_compilation_config\x18\x03 \x01(\x0b\x32/.google.cloud.dataform.v1.CodeCompilationConfigB\x03\xe0\x41\x01\x12\x1a\n\rcron_schedule\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\ttime_zone\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12m\n recent_scheduled_release_records\x18\x05 \x03(\x0b\x32>.google.cloud.dataform.v1.ReleaseConfig.ScheduledReleaseRecordB\x03\xe0\x41\x03\x12U\n\x1arelease_compilation_result\x18\x06 \x01(\tB1\xe0\x41\x01\xfa\x41+\n)dataform.googleapis.com/CompilationResult\x12\x15\n\x08\x64isabled\x18\x08 \x01(\x08\x42\x03\xe0\x41\x01\x12#\n\x11internal_metadata\x18\t \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x1a\xd3\x01\n\x16ScheduledReleaseRecord\x12L\n\x12\x63ompilation_result\x18\x02 \x01(\tB.\xfa\x41+\n)dataform.googleapis.com/CompilationResultH\x00\x12*\n\x0c\x65rror_status\x18\x03 \x01(\x0b\x32\x12.google.rpc.StatusH\x00\x12\x35\n\x0crelease_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x42\x08\n\x06result:\xad\x01\xea\x41\xa9\x01\n%dataform.googleapis.com/ReleaseConfig\x12\x61projects/{project}/locations/{location}/repositories/{repository}/releaseConfigs/{release_config}*\x0ereleaseConfigs2\rreleaseConfigB\x14\n\x12_internal_metadata\"\x88\x01\n\x19ListReleaseConfigsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x8c\x01\n\x1aListReleaseConfigsResponse\x12@\n\x0frelease_configs\x18\x01 \x03(\x0b\x32\'.google.cloud.dataform.v1.ReleaseConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"V\n\x17GetReleaseConfigRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfig\"\xbe\x01\n\x1a\x43reateReleaseConfigRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x44\n\x0erelease_config\x18\x02 \x01(\x0b\x32\'.google.cloud.dataform.v1.ReleaseConfigB\x03\xe0\x41\x02\x12\x1e\n\x11release_config_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x98\x01\n\x1aUpdateReleaseConfigRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x44\n\x0erelease_config\x18\x02 \x01(\x0b\x32\'.google.cloud.dataform.v1.ReleaseConfigB\x03\xe0\x41\x02\"Y\n\x1a\x44\x65leteReleaseConfigRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfig\"\xca\x08\n\x11\x43ompilationResult\x12\x1c\n\rgit_commitish\x18\x02 \x01(\tB\x03\xe0\x41\x05H\x00\x12>\n\tworkspace\x18\x03 \x01(\tB)\xe0\x41\x05\xfa\x41#\n!dataform.googleapis.com/WorkspaceH\x00\x12G\n\x0erelease_config\x18\x07 \x01(\tB-\xe0\x41\x05\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfigH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12U\n\x17\x63ode_compilation_config\x18\x04 \x01(\x0b\x32/.google.cloud.dataform.v1.CodeCompilationConfigB\x03\xe0\x41\x05\x12$\n\x17resolved_git_commit_sha\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\"\n\x15\x64\x61taform_core_version\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12]\n\x12\x63ompilation_errors\x18\x06 \x03(\x0b\x32<.google.cloud.dataform.v1.CompilationResult.CompilationErrorB\x03\xe0\x41\x03\x12Q\n\x15\x64\x61ta_encryption_state\x18\t \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x0b \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12Y\n\x19private_resource_metadata\x18\x0c \x01(\x0b\x32\x31.google.cloud.dataform.v1.PrivateResourceMetadataB\x03\xe0\x41\x03\x1a\x8d\x01\n\x10\x43ompilationError\x12\x14\n\x07message\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x12\n\x05stack\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04path\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12<\n\raction_target\x18\x04 \x01(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x03:\xc1\x01\xea\x41\xbd\x01\n)dataform.googleapis.com/CompilationResult\x12iprojects/{project}/locations/{location}/repositories/{repository}/compilationResults/{compilation_result}*\x12\x63ompilationResults2\x11\x63ompilationResultB\x08\n\x06sourceB\x14\n\x12_internal_metadata\"\xee\x03\n\x15\x43odeCompilationConfig\x12\x1d\n\x10\x64\x65\x66\x61ult_database\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0e\x64\x65\x66\x61ult_schema\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x64\x65\x66\x61ult_location\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x61ssertion_schema\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12L\n\x04vars\x18\x04 \x03(\x0b\x32\x39.google.cloud.dataform.v1.CodeCompilationConfig.VarsEntryB\x03\xe0\x41\x01\x12\x1c\n\x0f\x64\x61tabase_suffix\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rschema_suffix\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0ctable_prefix\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12*\n\x1d\x62uiltin_assertion_name_prefix\x18\n \x01(\tB\x03\xe0\x41\x01\x12_\n default_notebook_runtime_options\x18\t \x01(\x0b\x32\x30.google.cloud.dataform.v1.NotebookRuntimeOptionsB\x03\xe0\x41\x01\x1a+\n\tVarsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb6\x01\n\x16NotebookRuntimeOptions\x12 \n\x11gcs_output_bucket\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00\x12h\n%ai_platform_notebook_runtime_template\x18\x02 \x01(\tB9\xe0\x41\x01\xfa\x41\x33\n1aiplatform.googleapis.com/NotebookRuntimeTemplateB\x10\n\x0e\x65xecution_sink\"\xb8\x01\n\x1dListCompilationResultsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x98\x01\n\x1eListCompilationResultsResponse\x12H\n\x13\x63ompilation_results\x18\x01 \x03(\x0b\x32+.google.cloud.dataform.v1.CompilationResult\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"^\n\x1bGetCompilationResultRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)dataform.googleapis.com/CompilationResult\"\xaa\x01\n\x1e\x43reateCompilationResultRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12L\n\x12\x63ompilation_result\x18\x02 \x01(\x0b\x32+.google.cloud.dataform.v1.CompilationResultB\x03\xe0\x41\x02\"G\n\x06Target\x12\x15\n\x08\x64\x61tabase\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06schema\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04name\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xe0\x02\n\x12RelationDescriptor\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12N\n\x07\x63olumns\x18\x02 \x03(\x0b\x32=.google.cloud.dataform.v1.RelationDescriptor.ColumnDescriptor\x12Y\n\x0f\x62igquery_labels\x18\x03 \x03(\x0b\x32@.google.cloud.dataform.v1.RelationDescriptor.BigqueryLabelsEntry\x1aS\n\x10\x43olumnDescriptor\x12\x0c\n\x04path\x18\x01 \x03(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x1c\n\x14\x62igquery_policy_tags\x18\x03 \x03(\t\x1a\x35\n\x13\x42igqueryLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa3\x1e\n\x17\x43ompilationResultAction\x12N\n\x08relation\x18\x04 \x01(\x0b\x32:.google.cloud.dataform.v1.CompilationResultAction.RelationH\x00\x12R\n\noperations\x18\x05 \x01(\x0b\x32<.google.cloud.dataform.v1.CompilationResultAction.OperationsH\x00\x12P\n\tassertion\x18\x06 \x01(\x0b\x32;.google.cloud.dataform.v1.CompilationResultAction.AssertionH\x00\x12T\n\x0b\x64\x65\x63laration\x18\x07 \x01(\x0b\x32=.google.cloud.dataform.v1.CompilationResultAction.DeclarationH\x00\x12N\n\x08notebook\x18\x08 \x01(\x0b\x32:.google.cloud.dataform.v1.CompilationResultAction.NotebookH\x00\x12]\n\x10\x64\x61ta_preparation\x18\t \x01(\x0b\x32\x41.google.cloud.dataform.v1.CompilationResultAction.DataPreparationH\x00\x12\x30\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12:\n\x10\x63\x61nonical_target\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x11\n\tfile_path\x18\x03 \x01(\t\x12#\n\x11internal_metadata\x18\n \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x1a\xae\x0b\n\x08Relation\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12I\n\x13relation_descriptor\x18\x04 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x12^\n\rrelation_type\x18\x05 \x01(\x0e\x32G.google.cloud.dataform.v1.CompilationResultAction.Relation.RelationType\x12\x14\n\x0cselect_query\x18\x06 \x01(\t\x12\x16\n\x0epre_operations\x18\x07 \x03(\t\x12\x17\n\x0fpost_operations\x18\x08 \x03(\t\x12s\n\x18incremental_table_config\x18\t \x01(\x0b\x32Q.google.cloud.dataform.v1.CompilationResultAction.Relation.IncrementalTableConfig\x12\x1c\n\x14partition_expression\x18\n \x01(\t\x12\x1b\n\x13\x63luster_expressions\x18\x0b \x03(\t\x12!\n\x19partition_expiration_days\x18\x0c \x01(\x05\x12 \n\x18require_partition_filter\x18\r \x01(\x08\x12m\n\x12\x61\x64\x64itional_options\x18\x0e \x03(\x0b\x32Q.google.cloud.dataform.v1.CompilationResultAction.Relation.AdditionalOptionsEntry\x12\x17\n\nconnection\x18\x0f \x01(\tB\x03\xe0\x41\x01\x12\x61\n\x0ctable_format\x18\x10 \x01(\x0e\x32\x46.google.cloud.dataform.v1.CompilationResultAction.Relation.TableFormatB\x03\xe0\x41\x01\x12_\n\x0b\x66ile_format\x18\x11 \x01(\x0e\x32\x45.google.cloud.dataform.v1.CompilationResultAction.Relation.FileFormatB\x03\xe0\x41\x01\x12\x18\n\x0bstorage_uri\x18\x12 \x01(\tB\x03\xe0\x41\x01\x1a\xd8\x01\n\x16IncrementalTableConfig\x12 \n\x18incremental_select_query\x18\x01 \x01(\t\x12\x18\n\x10refresh_disabled\x18\x02 \x01(\x08\x12\x18\n\x10unique_key_parts\x18\x03 \x03(\t\x12\x1f\n\x17update_partition_filter\x18\x04 \x01(\t\x12\"\n\x1aincremental_pre_operations\x18\x05 \x03(\t\x12#\n\x1bincremental_post_operations\x18\x06 \x03(\t\x1a\x38\n\x16\x41\x64\x64itionalOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"p\n\x0cRelationType\x12\x1d\n\x19RELATION_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05TABLE\x10\x01\x12\x08\n\x04VIEW\x10\x02\x12\x15\n\x11INCREMENTAL_TABLE\x10\x03\x12\x15\n\x11MATERIALIZED_VIEW\x10\x04\"8\n\x0bTableFormat\x12\x1c\n\x18TABLE_FORMAT_UNSPECIFIED\x10\x00\x12\x0b\n\x07ICEBERG\x10\x01\"6\n\nFileFormat\x12\x1b\n\x17\x46ILE_FORMAT_UNSPECIFIED\x10\x00\x12\x0b\n\x07PARQUET\x10\x01\x1a\xda\x01\n\nOperations\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12I\n\x13relation_descriptor\x18\x06 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x12\x0f\n\x07queries\x18\x04 \x03(\t\x12\x12\n\nhas_output\x18\x05 \x01(\x08\x1a\x83\x02\n\tAssertion\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x37\n\rparent_action\x18\x05 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12\x14\n\x0cselect_query\x18\x04 \x01(\t\x12I\n\x13relation_descriptor\x18\x06 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x1aX\n\x0b\x44\x65\x63laration\x12I\n\x13relation_descriptor\x18\x01 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x1az\n\x08Notebook\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x10\n\x08\x63ontents\x18\x03 \x01(\t\x12\x0c\n\x04tags\x18\x04 \x03(\t\x1a\xa7\x04\n\x0f\x44\x61taPreparation\x12\x17\n\rcontents_yaml\x18\x05 \x01(\tH\x00\x12g\n\x0c\x63ontents_sql\x18\x06 \x01(\x0b\x32O.google.cloud.dataform.v1.CompilationResultAction.DataPreparation.SqlDefinitionH\x00\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x04 \x03(\t\x1a\xcd\x01\n\rSqlDefinition\x12\r\n\x05query\x18\x01 \x01(\t\x12\x61\n\x0b\x65rror_table\x18\x02 \x01(\x0b\x32L.google.cloud.dataform.v1.CompilationResultAction.DataPreparation.ErrorTable\x12J\n\x04load\x18\x03 \x01(\x0b\x32<.google.cloud.dataform.v1.CompilationResultAction.LoadConfig\x1aV\n\nErrorTable\x12\x30\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x16\n\x0eretention_days\x18\x02 \x01(\x05\x42\x0c\n\ndefinition\x1a\xf0\x02\n\nLoadConfig\x12S\n\x07replace\x18\x01 \x01(\x0b\x32@.google.cloud.dataform.v1.CompilationResultAction.SimpleLoadModeH\x00\x12R\n\x06\x61ppend\x18\x02 \x01(\x0b\x32@.google.cloud.dataform.v1.CompilationResultAction.SimpleLoadModeH\x00\x12X\n\x07maximum\x18\x03 \x01(\x0b\x32\x45.google.cloud.dataform.v1.CompilationResultAction.IncrementalLoadModeH\x00\x12W\n\x06unique\x18\x04 \x01(\x0b\x32\x45.google.cloud.dataform.v1.CompilationResultAction.IncrementalLoadModeH\x00\x42\x06\n\x04mode\x1a\x10\n\x0eSimpleLoadMode\x1a%\n\x13IncrementalLoadMode\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\tB\x11\n\x0f\x63ompiled_objectB\x14\n\x12_internal_metadata\"\xad\x01\n$QueryCompilationResultActionsRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)dataform.googleapis.com/CompilationResult\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x97\x01\n%QueryCompilationResultActionsResponse\x12U\n\x1a\x63ompilation_result_actions\x18\x01 \x03(\x0b\x32\x31.google.cloud.dataform.v1.CompilationResultAction\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xad\x07\n\x0eWorkflowConfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x45\n\x0erelease_config\x18\x02 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfig\x12J\n\x11invocation_config\x18\x03 \x01(\x0b\x32*.google.cloud.dataform.v1.InvocationConfigB\x03\xe0\x41\x01\x12\x1a\n\rcron_schedule\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\ttime_zone\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12r\n\"recent_scheduled_execution_records\x18\x05 \x03(\x0b\x32\x41.google.cloud.dataform.v1.WorkflowConfig.ScheduledExecutionRecordB\x03\xe0\x41\x03\x12\x15\n\x08\x64isabled\x18\x08 \x01(\x08\x42\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x0b \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x1a\xd9\x01\n\x18ScheduledExecutionRecord\x12N\n\x13workflow_invocation\x18\x02 \x01(\tB/\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocationH\x00\x12*\n\x0c\x65rror_status\x18\x03 \x01(\x0b\x32\x12.google.rpc.StatusH\x00\x12\x37\n\x0e\x65xecution_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x42\x08\n\x06result:\xb2\x01\xea\x41\xae\x01\n&dataform.googleapis.com/WorkflowConfig\x12\x63projects/{project}/locations/{location}/repositories/{repository}/workflowConfigs/{workflow_config}*\x0fworkflowConfigs2\x0eworkflowConfigB\x14\n\x12_internal_metadata\"\xdc\x03\n\x10InvocationConfig\x12?\n\x10included_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x01\x12\x1a\n\rincluded_tags\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12-\n transitive_dependencies_included\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12+\n\x1etransitive_dependents_included\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x35\n(fully_refresh_incremental_tables_enabled\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1c\n\x0fservice_account\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12Z\n\x0equery_priority\x18\t \x01(\x0e\x32\x38.google.cloud.dataform.v1.InvocationConfig.QueryPriorityB\x03\xe0\x41\x01H\x00\x88\x01\x01\"K\n\rQueryPriority\x12\x1e\n\x1aQUERY_PRIORITY_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINTERACTIVE\x10\x01\x12\t\n\x05\x42\x41TCH\x10\x02\x42\x11\n\x0f_query_priority\"\x89\x01\n\x1aListWorkflowConfigsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x8f\x01\n\x1bListWorkflowConfigsResponse\x12\x42\n\x10workflow_configs\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.WorkflowConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"X\n\x18GetWorkflowConfigRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&dataform.googleapis.com/WorkflowConfig\"\xc2\x01\n\x1b\x43reateWorkflowConfigRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x46\n\x0fworkflow_config\x18\x02 \x01(\x0b\x32(.google.cloud.dataform.v1.WorkflowConfigB\x03\xe0\x41\x02\x12\x1f\n\x12workflow_config_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x9b\x01\n\x1bUpdateWorkflowConfigRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x46\n\x0fworkflow_config\x18\x02 \x01(\x0b\x32(.google.cloud.dataform.v1.WorkflowConfigB\x03\xe0\x41\x02\"[\n\x1b\x44\x65leteWorkflowConfigRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&dataform.googleapis.com/WorkflowConfig\"\x94\x08\n\x12WorkflowInvocation\x12O\n\x12\x63ompilation_result\x18\x02 \x01(\tB1\xe0\x41\x05\xfa\x41+\n)dataform.googleapis.com/CompilationResultH\x00\x12I\n\x0fworkflow_config\x18\x06 \x01(\tB.\xe0\x41\x05\xfa\x41(\n&dataform.googleapis.com/WorkflowConfigH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12J\n\x11invocation_config\x18\x03 \x01(\x0b\x32*.google.cloud.dataform.v1.InvocationConfigB\x03\xe0\x41\x05\x12\x46\n\x05state\x18\x04 \x01(\x0e\x32\x32.google.cloud.dataform.v1.WorkflowInvocation.StateB\x03\xe0\x41\x03\x12\x35\n\x11invocation_timing\x18\x05 \x01(\x0b\x32\x15.google.type.IntervalB\x03\xe0\x41\x03\x12V\n\x1bresolved_compilation_result\x18\x07 \x01(\tB1\xe0\x41\x03\xfa\x41+\n)dataform.googleapis.com/CompilationResult\x12Q\n\x15\x64\x61ta_encryption_state\x18\x08 \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\t \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12Y\n\x19private_resource_metadata\x18\n \x01(\x0b\x32\x31.google.cloud.dataform.v1.PrivateResourceMetadataB\x03\xe0\x41\x03\"d\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\r\n\tCANCELLED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\x12\r\n\tCANCELING\x10\x05:\xc6\x01\xea\x41\xc2\x01\n*dataform.googleapis.com/WorkflowInvocation\x12kprojects/{project}/locations/{location}/repositories/{repository}/workflowInvocations/{workflow_invocation}*\x13workflowInvocations2\x12workflowInvocationB\x14\n\x12\x63ompilation_sourceB\x14\n\x12_internal_metadata\"\xb9\x01\n\x1eListWorkflowInvocationsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x9b\x01\n\x1fListWorkflowInvocationsResponse\x12J\n\x14workflow_invocations\x18\x01 \x03(\x0b\x32,.google.cloud.dataform.v1.WorkflowInvocation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"`\n\x1cGetWorkflowInvocationRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\"\xad\x01\n\x1f\x43reateWorkflowInvocationRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12N\n\x13workflow_invocation\x18\x02 \x01(\x0b\x32,.google.cloud.dataform.v1.WorkflowInvocationB\x03\xe0\x41\x02\"c\n\x1f\x44\x65leteWorkflowInvocationRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\"c\n\x1f\x43\x61ncelWorkflowInvocationRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\"\"\n CancelWorkflowInvocationResponse\"\x9b\x10\n\x18WorkflowInvocationAction\x12\x61\n\x0f\x62igquery_action\x18\x06 \x01(\x0b\x32\x41.google.cloud.dataform.v1.WorkflowInvocationAction.BigQueryActionB\x03\xe0\x41\x03H\x00\x12\x61\n\x0fnotebook_action\x18\x08 \x01(\x0b\x32\x41.google.cloud.dataform.v1.WorkflowInvocationAction.NotebookActionB\x03\xe0\x41\x03H\x00\x12p\n\x17\x64\x61ta_preparation_action\x18\t \x01(\x0b\x32H.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationActionB\x03\xe0\x41\x03H\x00\x12\x35\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x03\x12?\n\x10\x63\x61nonical_target\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x03\x12L\n\x05state\x18\x04 \x01(\x0e\x32\x38.google.cloud.dataform.v1.WorkflowInvocationAction.StateB\x03\xe0\x41\x03\x12\x1b\n\x0e\x66\x61ilure_reason\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x11invocation_timing\x18\x05 \x01(\x0b\x32\x15.google.type.IntervalB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\n \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x1a>\n\x0e\x42igQueryAction\x12\x17\n\nsql_script\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x1a<\n\x0eNotebookAction\x12\x15\n\x08\x63ontents\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x1a\x81\t\n\x15\x44\x61taPreparationAction\x12\x1c\n\rcontents_yaml\x18\x02 \x01(\tB\x03\xe0\x41\x03H\x00\x12t\n\x0c\x63ontents_sql\x18\x06 \x01(\x0b\x32\\.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionSqlDefinitionH\x00\x12\x1a\n\rgenerated_sql\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x04 \x01(\tB\x03\xe0\x41\x03\x1a\x84\x02\n\x13\x41\x63tionSqlDefinition\x12\r\n\x05query\x18\x01 \x01(\t\x12n\n\x0b\x65rror_table\x18\x02 \x01(\x0b\x32Y.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionErrorTable\x12n\n\x0bload_config\x18\x03 \x01(\x0b\x32Y.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionLoadConfig\x1a\\\n\x10\x41\x63tionErrorTable\x12\x30\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x16\n\x0eretention_days\x18\x02 \x01(\x05\x1a\xea\x03\n\x10\x41\x63tionLoadConfig\x12p\n\x07replace\x18\x01 \x01(\x0b\x32].google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionSimpleLoadModeH\x00\x12o\n\x06\x61ppend\x18\x02 \x01(\x0b\x32].google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionSimpleLoadModeH\x00\x12u\n\x07maximum\x18\x03 \x01(\x0b\x32\x62.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionIncrementalLoadModeH\x00\x12t\n\x06unique\x18\x04 \x01(\x0b\x32\x62.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionIncrementalLoadModeH\x00\x42\x06\n\x04mode\x1a\x16\n\x14\x41\x63tionSimpleLoadMode\x1a+\n\x19\x41\x63tionIncrementalLoadMode\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\tB\x0c\n\ndefinition\"f\n\x05State\x12\x0b\n\x07PENDING\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\x0b\n\x07SKIPPED\x10\x02\x12\x0c\n\x08\x44ISABLED\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\r\n\tCANCELLED\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\x42\x08\n\x06\x61\x63tionB\x14\n\x12_internal_metadata\"\x9a\x01\n%QueryWorkflowInvocationActionsRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x9a\x01\n&QueryWorkflowInvocationActionsResponse\x12W\n\x1bworkflow_invocation_actions\x18\x01 \x03(\x0b\x32\x32.google.cloud.dataform.v1.WorkflowInvocationAction\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x85\x02\n\x06\x43onfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12G\n\x14\x64\x65\x66\x61ult_kms_key_name\x18\x02 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12#\n\x11internal_metadata\x18\x07 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01:d\xea\x41\x61\n\x1e\x64\x61taform.googleapis.com/Config\x12.projects/{project}/locations/{location}/config*\x07\x63onfigs2\x06\x63onfigB\x14\n\x12_internal_metadata\"H\n\x10GetConfigRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Config\"\x82\x01\n\x13UpdateConfigRequest\x12\x35\n\x06\x63onfig\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.ConfigB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\"\xcf\x03\n\x06\x46older\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11\x63ontaining_folder\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10team_folder_name\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x07 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\'\n\x15\x63reator_iam_principal\x18\x08 \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01:n\xea\x41k\n\x1e\x64\x61taform.googleapis.com/Folder\x12\x38projects/{project}/locations/{location}/folders/{folder}*\x07\x66olders2\x06\x66olderB\x14\n\x12_internal_metadataB\x18\n\x16_creator_iam_principal\"\x87\x01\n\x13\x43reateFolderRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x35\n\x06\x66older\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderB\x03\xe0\x41\x02\"\x9c\x01\n\x11MoveFolderRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\x12/\n\x1d\x64\x65stination_containing_folder\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x42 \n\x1e_destination_containing_folder\"H\n\x10GetFolderRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\"\x82\x01\n\x13UpdateFolderRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x35\n\x06\x66older\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderB\x03\xe0\x41\x02\"K\n\x13\x44\x65leteFolderRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\"c\n\x17\x44\x65leteFolderTreeRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"k\n\x1b\x44\x65leteTeamFolderTreeRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xe2\x02\n\x18\x44\x65leteFolderTreeMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12L\n\x05state\x18\x04 \x01(\x0e\x32\x38.google.cloud.dataform.v1.DeleteFolderTreeMetadata.StateB\x03\xe0\x41\x03\x12\x1d\n\x10percent_complete\x18\x05 \x01(\x05\x42\x03\xe0\x41\x03\"[\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINITIALIZED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\"\xb1\x01\n\x1aQueryFolderContentsRequest\x12\x36\n\x06\x66older\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa3\x02\n\x1bQueryFolderContentsResponse\x12Z\n\x07\x65ntries\x18\x01 \x03(\x0b\x32I.google.cloud.dataform.v1.QueryFolderContentsResponse.FolderContentsEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a\x8e\x01\n\x13\x46olderContentsEntry\x12\x32\n\x06\x66older\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderH\x00\x12:\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryH\x00\x42\x07\n\x05\x65ntry\"\xb8\x01\n\x1cQueryUserRootContentsRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa3\x02\n\x1dQueryUserRootContentsResponse\x12Z\n\x07\x65ntries\x18\x01 \x03(\x0b\x32I.google.cloud.dataform.v1.QueryUserRootContentsResponse.RootContentsEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a\x8c\x01\n\x11RootContentsEntry\x12\x32\n\x06\x66older\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderH\x00\x12:\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryH\x00\x42\x07\n\x05\x65ntry\"\xab\x03\n\nTeamFolder\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x05 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\'\n\x15\x63reator_iam_principal\x18\x06 \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01:\x84\x01\xea\x41\x80\x01\n\"dataform.googleapis.com/TeamFolder\x12\x41projects/{project}/locations/{location}/teamFolders/{team_folder}*\x0bteamFolders2\nteamFolderB\x14\n\x12_internal_metadataB\x18\n\x16_creator_iam_principal\"\x94\x01\n\x17\x43reateTeamFolderRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12>\n\x0bteam_folder\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.TeamFolderB\x03\xe0\x41\x02\"P\n\x14GetTeamFolderRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\"\x8f\x01\n\x17UpdateTeamFolderRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12>\n\x0bteam_folder\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.TeamFolderB\x03\xe0\x41\x02\"S\n\x17\x44\x65leteTeamFolderRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\"\xbe\x01\n\x1eQueryTeamFolderContentsRequest\x12?\n\x0bteam_folder\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xb3\x02\n\x1fQueryTeamFolderContentsResponse\x12\x62\n\x07\x65ntries\x18\x01 \x03(\x0b\x32Q.google.cloud.dataform.v1.QueryTeamFolderContentsResponse.TeamFolderContentsEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a\x92\x01\n\x17TeamFolderContentsEntry\x12\x32\n\x06\x66older\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderH\x00\x12:\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryH\x00\x42\x07\n\x05\x65ntry\"\xb4\x01\n\x18SearchTeamFoldersRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xf1\x01\n\x19SearchTeamFoldersResponse\x12[\n\x07results\x18\x01 \x03(\x0b\x32J.google.cloud.dataform.v1.SearchTeamFoldersResponse.TeamFolderSearchResult\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a^\n\x16TeamFolderSearchResult\x12;\n\x0bteam_folder\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.TeamFolderH\x00\x42\x07\n\x05\x65ntry\"\xca\x02\n\x12MoveFolderMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x41\n\x05state\x18\x04 \x01(\x0e\x32\x32.google.cloud.dataform.v1.MoveFolderMetadata.State\x12\x18\n\x10percent_complete\x18\x05 \x01(\x05\"Y\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINITIALIZED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0b\n\x07SUCCESS\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\"\xd2\x02\n\x16MoveRepositoryMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x45\n\x05state\x18\x04 \x01(\x0e\x32\x36.google.cloud.dataform.v1.MoveRepositoryMetadata.State\x12\x18\n\x10percent_complete\x18\x05 \x01(\x05\"Y\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINITIALIZED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0b\n\x07SUCCESS\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04*\x89\x01\n\x15\x44irectoryContentsView\x12\'\n#DIRECTORY_CONTENTS_VIEW_UNSPECIFIED\x10\x00\x12!\n\x1d\x44IRECTORY_CONTENTS_VIEW_BASIC\x10\x01\x12$\n DIRECTORY_CONTENTS_VIEW_METADATA\x10\x02\x32\xe3}\n\x08\x44\x61taform\x12\xa5\x01\n\rGetTeamFolder\x12..google.cloud.dataform.v1.GetTeamFolderRequest\x1a$.google.cloud.dataform.v1.TeamFolder\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/teamFolders/*}\x12\xc6\x01\n\x10\x43reateTeamFolder\x12\x31.google.cloud.dataform.v1.CreateTeamFolderRequest\x1a$.google.cloud.dataform.v1.TeamFolder\"Y\xda\x41\x12parent,team_folder\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/teamFolders:\x0bteam_folder\x12\xd7\x01\n\x10UpdateTeamFolder\x12\x31.google.cloud.dataform.v1.UpdateTeamFolderRequest\x1a$.google.cloud.dataform.v1.TeamFolder\"j\xda\x41\x17team_folder,update_mask\x82\xd3\xe4\x93\x02J2;/v1/{team_folder.name=projects/*/locations/*/teamFolders/*}:\x0bteam_folder\x12\x9d\x01\n\x10\x44\x65leteTeamFolder\x12\x31.google.cloud.dataform.v1.DeleteTeamFolderRequest\x1a\x16.google.protobuf.Empty\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/teamFolders/*}\x12\xf5\x01\n\x14\x44\x65leteTeamFolderTree\x12\x35.google.cloud.dataform.v1.DeleteTeamFolderTreeRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteFolderTreeMetadata\xda\x41\nname,force\x82\xd3\xe4\x93\x02?\":/v1/{name=projects/*/locations/*/teamFolders/*}:deleteTree:\x01*\x12\xea\x01\n\x17QueryTeamFolderContents\x12\x38.google.cloud.dataform.v1.QueryTeamFolderContentsRequest\x1a\x39.google.cloud.dataform.v1.QueryTeamFolderContentsResponse\"Z\xda\x41\x0bteam_folder\x82\xd3\xe4\x93\x02\x46\x12\x44/v1/{team_folder=projects/*/locations/*/teamFolders/*}:queryContents\x12\xbe\x01\n\x11SearchTeamFolders\x12\x32.google.cloud.dataform.v1.SearchTeamFoldersRequest\x1a\x33.google.cloud.dataform.v1.SearchTeamFoldersResponse\"@\x82\xd3\xe4\x93\x02:\x12\x38/v1/{location=projects/*/locations/*}/teamFolders:search\x12\x95\x01\n\tGetFolder\x12*.google.cloud.dataform.v1.GetFolderRequest\x1a .google.cloud.dataform.v1.Folder\":\xda\x41\x04name\x82\xd3\xe4\x93\x02-\x12+/v1/{name=projects/*/locations/*/folders/*}\x12\xac\x01\n\x0c\x43reateFolder\x12-.google.cloud.dataform.v1.CreateFolderRequest\x1a .google.cloud.dataform.v1.Folder\"K\xda\x41\rparent,folder\x82\xd3\xe4\x93\x02\x35\"+/v1/{parent=projects/*/locations/*}/folders:\x06\x66older\x12\xb8\x01\n\x0cUpdateFolder\x12-.google.cloud.dataform.v1.UpdateFolderRequest\x1a .google.cloud.dataform.v1.Folder\"W\xda\x41\x12\x66older,update_mask\x82\xd3\xe4\x93\x02<22/v1/{folder.name=projects/*/locations/*/folders/*}:\x06\x66older\x12\x91\x01\n\x0c\x44\x65leteFolder\x12-.google.cloud.dataform.v1.DeleteFolderRequest\x1a\x16.google.protobuf.Empty\":\xda\x41\x04name\x82\xd3\xe4\x93\x02-*+/v1/{name=projects/*/locations/*/folders/*}\x12\xe9\x01\n\x10\x44\x65leteFolderTree\x12\x31.google.cloud.dataform.v1.DeleteFolderTreeRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteFolderTreeMetadata\xda\x41\nname,force\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/folders/*}:deleteTree:\x01*\x12\xd6\x01\n\x13QueryFolderContents\x12\x34.google.cloud.dataform.v1.QueryFolderContentsRequest\x1a\x35.google.cloud.dataform.v1.QueryFolderContentsResponse\"R\xda\x41\x06\x66older\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{folder=projects/*/locations/*/folders/*}:queryFolderContents\x12\xd8\x01\n\x15QueryUserRootContents\x12\x36.google.cloud.dataform.v1.QueryUserRootContentsRequest\x1a\x37.google.cloud.dataform.v1.QueryUserRootContentsResponse\"N\xda\x41\x08location\x82\xd3\xe4\x93\x02=\x12;/v1/{location=projects/*/locations/*}:queryUserRootContents\x12\xe9\x01\n\nMoveFolder\x12+.google.cloud.dataform.v1.MoveFolderRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\xca\x41+\n\x15google.protobuf.Empty\x12\x12MoveFolderMetadata\xda\x41\"name,destination_containing_folder\x82\xd3\xe4\x93\x02\x35\"0/v1/{name=projects/*/locations/*/folders/*}:move:\x01*\x12\xbc\x01\n\x10ListRepositories\x12\x31.google.cloud.dataform.v1.ListRepositoriesRequest\x1a\x32.google.cloud.dataform.v1.ListRepositoriesResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*/locations/*}/repositories\x12\xa6\x01\n\rGetRepository\x12..google.cloud.dataform.v1.GetRepositoryRequest\x1a$.google.cloud.dataform.v1.Repository\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/repositories/*}\x12\xd3\x01\n\x10\x43reateRepository\x12\x31.google.cloud.dataform.v1.CreateRepositoryRequest\x1a$.google.cloud.dataform.v1.Repository\"f\xda\x41\x1fparent,repository,repository_id\x82\xd3\xe4\x93\x02>\"0/v1/{parent=projects/*/locations/*}/repositories:\nrepository\x12\xd5\x01\n\x10UpdateRepository\x12\x31.google.cloud.dataform.v1.UpdateRepositoryRequest\x1a$.google.cloud.dataform.v1.Repository\"h\xda\x41\x16repository,update_mask\x82\xd3\xe4\x93\x02I2;/v1/{repository.name=projects/*/locations/*/repositories/*}:\nrepository\x12\x9e\x01\n\x10\x44\x65leteRepository\x12\x31.google.cloud.dataform.v1.DeleteRepositoryRequest\x1a\x16.google.protobuf.Empty\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32*0/v1/{name=projects/*/locations/*/repositories/*}\x12\xfa\x01\n\x0eMoveRepository\x12/.google.cloud.dataform.v1.MoveRepositoryRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41/\n\x15google.protobuf.Empty\x12\x16MoveRepositoryMetadata\xda\x41\"name,destination_containing_folder\x82\xd3\xe4\x93\x02:\"5/v1/{name=projects/*/locations/*/repositories/*}:move:\x01*\x12\xd2\x01\n\x17\x43ommitRepositoryChanges\x12\x38.google.cloud.dataform.v1.CommitRepositoryChangesRequest\x1a\x39.google.cloud.dataform.v1.CommitRepositoryChangesResponse\"B\x82\xd3\xe4\x93\x02<\"7/v1/{name=projects/*/locations/*/repositories/*}:commit:\x01*\x12\xc2\x01\n\x12ReadRepositoryFile\x12\x33.google.cloud.dataform.v1.ReadRepositoryFileRequest\x1a\x34.google.cloud.dataform.v1.ReadRepositoryFileResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/v1/{name=projects/*/locations/*/repositories/*}:readFile\x12\xfa\x01\n QueryRepositoryDirectoryContents\x12\x41.google.cloud.dataform.v1.QueryRepositoryDirectoryContentsRequest\x1a\x42.google.cloud.dataform.v1.QueryRepositoryDirectoryContentsResponse\"O\x82\xd3\xe4\x93\x02I\x12G/v1/{name=projects/*/locations/*/repositories/*}:queryDirectoryContents\x12\xd2\x01\n\x16\x46\x65tchRepositoryHistory\x12\x37.google.cloud.dataform.v1.FetchRepositoryHistoryRequest\x1a\x38.google.cloud.dataform.v1.FetchRepositoryHistoryResponse\"E\x82\xd3\xe4\x93\x02?\x12=/v1/{name=projects/*/locations/*/repositories/*}:fetchHistory\x12\x82\x02\n\"ComputeRepositoryAccessTokenStatus\x12\x43.google.cloud.dataform.v1.ComputeRepositoryAccessTokenStatusRequest\x1a\x44.google.cloud.dataform.v1.ComputeRepositoryAccessTokenStatusResponse\"Q\x82\xd3\xe4\x93\x02K\x12I/v1/{name=projects/*/locations/*/repositories/*}:computeAccessTokenStatus\x12\xd0\x01\n\x13\x46\x65tchRemoteBranches\x12\x34.google.cloud.dataform.v1.FetchRemoteBranchesRequest\x1a\x35.google.cloud.dataform.v1.FetchRemoteBranchesResponse\"L\x82\xd3\xe4\x93\x02\x46\x12\x44/v1/{name=projects/*/locations/*/repositories/*}:fetchRemoteBranches\x12\xc3\x01\n\x0eListWorkspaces\x12/.google.cloud.dataform.v1.ListWorkspacesRequest\x1a\x30.google.cloud.dataform.v1.ListWorkspacesResponse\"N\xda\x41\x06parent\x82\xd3\xe4\x93\x02?\x12=/v1/{parent=projects/*/locations/*/repositories/*}/workspaces\x12\xb0\x01\n\x0cGetWorkspace\x12-.google.cloud.dataform.v1.GetWorkspaceRequest\x1a#.google.cloud.dataform.v1.Workspace\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?\x12=/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}\x12\xda\x01\n\x0f\x43reateWorkspace\x12\x30.google.cloud.dataform.v1.CreateWorkspaceRequest\x1a#.google.cloud.dataform.v1.Workspace\"p\xda\x41\x1dparent,workspace,workspace_id\x82\xd3\xe4\x93\x02J\"=/v1/{parent=projects/*/locations/*/repositories/*}/workspaces:\tworkspace\x12\xa9\x01\n\x0f\x44\x65leteWorkspace\x12\x30.google.cloud.dataform.v1.DeleteWorkspaceRequest\x1a\x16.google.protobuf.Empty\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?*=/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}\x12\xe1\x01\n\x12InstallNpmPackages\x12\x33.google.cloud.dataform.v1.InstallNpmPackagesRequest\x1a\x34.google.cloud.dataform.v1.InstallNpmPackagesResponse\"`\x82\xd3\xe4\x93\x02Z\"U/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:installNpmPackages:\x01*\x12\xc2\x01\n\x0ePullGitCommits\x12/.google.cloud.dataform.v1.PullGitCommitsRequest\x1a\x30.google.cloud.dataform.v1.PullGitCommitsResponse\"M\x82\xd3\xe4\x93\x02G\"B/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:pull:\x01*\x12\xc2\x01\n\x0ePushGitCommits\x12/.google.cloud.dataform.v1.PushGitCommitsRequest\x1a\x30.google.cloud.dataform.v1.PushGitCommitsResponse\"M\x82\xd3\xe4\x93\x02G\"B/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:push:\x01*\x12\xe1\x01\n\x14\x46\x65tchFileGitStatuses\x12\x35.google.cloud.dataform.v1.FetchFileGitStatusesRequest\x1a\x36.google.cloud.dataform.v1.FetchFileGitStatusesResponse\"Z\x82\xd3\xe4\x93\x02T\x12R/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:fetchFileGitStatuses\x12\xdd\x01\n\x13\x46\x65tchGitAheadBehind\x12\x34.google.cloud.dataform.v1.FetchGitAheadBehindRequest\x1a\x35.google.cloud.dataform.v1.FetchGitAheadBehindResponse\"Y\x82\xd3\xe4\x93\x02S\x12Q/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:fetchGitAheadBehind\x12\xdc\x01\n\x16\x43ommitWorkspaceChanges\x12\x37.google.cloud.dataform.v1.CommitWorkspaceChangesRequest\x1a\x38.google.cloud.dataform.v1.CommitWorkspaceChangesResponse\"O\x82\xd3\xe4\x93\x02I\"D/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:commit:\x01*\x12\xd8\x01\n\x15ResetWorkspaceChanges\x12\x36.google.cloud.dataform.v1.ResetWorkspaceChangesRequest\x1a\x37.google.cloud.dataform.v1.ResetWorkspaceChangesResponse\"N\x82\xd3\xe4\x93\x02H\"C/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:reset:\x01*\x12\xca\x01\n\rFetchFileDiff\x12..google.cloud.dataform.v1.FetchFileDiffRequest\x1a/.google.cloud.dataform.v1.FetchFileDiffResponse\"X\x82\xd3\xe4\x93\x02R\x12P/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:fetchFileDiff\x12\xee\x01\n\x16QueryDirectoryContents\x12\x37.google.cloud.dataform.v1.QueryDirectoryContentsRequest\x1a\x38.google.cloud.dataform.v1.QueryDirectoryContentsResponse\"a\x82\xd3\xe4\x93\x02[\x12Y/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:queryDirectoryContents\x12\xc2\x01\n\x0bSearchFiles\x12,.google.cloud.dataform.v1.SearchFilesRequest\x1a-.google.cloud.dataform.v1.SearchFilesResponse\"V\x82\xd3\xe4\x93\x02P\x12N/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:searchFiles\x12\xcd\x01\n\rMakeDirectory\x12..google.cloud.dataform.v1.MakeDirectoryRequest\x1a/.google.cloud.dataform.v1.MakeDirectoryResponse\"[\x82\xd3\xe4\x93\x02U\"P/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:makeDirectory:\x01*\x12\xd5\x01\n\x0fRemoveDirectory\x12\x30.google.cloud.dataform.v1.RemoveDirectoryRequest\x1a\x31.google.cloud.dataform.v1.RemoveDirectoryResponse\"]\x82\xd3\xe4\x93\x02W\"R/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:removeDirectory:\x01*\x12\xcd\x01\n\rMoveDirectory\x12..google.cloud.dataform.v1.MoveDirectoryRequest\x1a/.google.cloud.dataform.v1.MoveDirectoryResponse\"[\x82\xd3\xe4\x93\x02U\"P/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:moveDirectory:\x01*\x12\xb6\x01\n\x08ReadFile\x12).google.cloud.dataform.v1.ReadFileRequest\x1a*.google.cloud.dataform.v1.ReadFileResponse\"S\x82\xd3\xe4\x93\x02M\x12K/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:readFile\x12\xc1\x01\n\nRemoveFile\x12+.google.cloud.dataform.v1.RemoveFileRequest\x1a,.google.cloud.dataform.v1.RemoveFileResponse\"X\x82\xd3\xe4\x93\x02R\"M/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:removeFile:\x01*\x12\xb9\x01\n\x08MoveFile\x12).google.cloud.dataform.v1.MoveFileRequest\x1a*.google.cloud.dataform.v1.MoveFileResponse\"V\x82\xd3\xe4\x93\x02P\"K/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:moveFile:\x01*\x12\xbd\x01\n\tWriteFile\x12*.google.cloud.dataform.v1.WriteFileRequest\x1a+.google.cloud.dataform.v1.WriteFileResponse\"W\x82\xd3\xe4\x93\x02Q\"L/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:writeFile:\x01*\x12\xd3\x01\n\x12ListReleaseConfigs\x12\x33.google.cloud.dataform.v1.ListReleaseConfigsRequest\x1a\x34.google.cloud.dataform.v1.ListReleaseConfigsResponse\"R\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{parent=projects/*/locations/*/repositories/*}/releaseConfigs\x12\xc0\x01\n\x10GetReleaseConfig\x12\x31.google.cloud.dataform.v1.GetReleaseConfigRequest\x1a\'.google.cloud.dataform.v1.ReleaseConfig\"P\xda\x41\x04name\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{name=projects/*/locations/*/repositories/*/releaseConfigs/*}\x12\xfa\x01\n\x13\x43reateReleaseConfig\x12\x34.google.cloud.dataform.v1.CreateReleaseConfigRequest\x1a\'.google.cloud.dataform.v1.ReleaseConfig\"\x83\x01\xda\x41\'parent,release_config,release_config_id\x82\xd3\xe4\x93\x02S\"A/v1/{parent=projects/*/locations/*/repositories/*}/releaseConfigs:\x0erelease_config\x12\xfc\x01\n\x13UpdateReleaseConfig\x12\x34.google.cloud.dataform.v1.UpdateReleaseConfigRequest\x1a\'.google.cloud.dataform.v1.ReleaseConfig\"\x85\x01\xda\x41\x1arelease_config,update_mask\x82\xd3\xe4\x93\x02\x62\x32P/v1/{release_config.name=projects/*/locations/*/repositories/*/releaseConfigs/*}:\x0erelease_config\x12\xb5\x01\n\x13\x44\x65leteReleaseConfig\x12\x34.google.cloud.dataform.v1.DeleteReleaseConfigRequest\x1a\x16.google.protobuf.Empty\"P\xda\x41\x04name\x82\xd3\xe4\x93\x02\x43*A/v1/{name=projects/*/locations/*/repositories/*/releaseConfigs/*}\x12\xe3\x01\n\x16ListCompilationResults\x12\x37.google.cloud.dataform.v1.ListCompilationResultsRequest\x1a\x38.google.cloud.dataform.v1.ListCompilationResultsResponse\"V\xda\x41\x06parent\x82\xd3\xe4\x93\x02G\x12\x45/v1/{parent=projects/*/locations/*/repositories/*}/compilationResults\x12\xd0\x01\n\x14GetCompilationResult\x12\x35.google.cloud.dataform.v1.GetCompilationResultRequest\x1a+.google.cloud.dataform.v1.CompilationResult\"T\xda\x41\x04name\x82\xd3\xe4\x93\x02G\x12\x45/v1/{name=projects/*/locations/*/repositories/*/compilationResults/*}\x12\xff\x01\n\x17\x43reateCompilationResult\x12\x38.google.cloud.dataform.v1.CreateCompilationResultRequest\x1a+.google.cloud.dataform.v1.CompilationResult\"}\xda\x41\x19parent,compilation_result\x82\xd3\xe4\x93\x02[\"E/v1/{parent=projects/*/locations/*/repositories/*}/compilationResults:\x12\x63ompilation_result\x12\xf5\x01\n\x1dQueryCompilationResultActions\x12>.google.cloud.dataform.v1.QueryCompilationResultActionsRequest\x1a?.google.cloud.dataform.v1.QueryCompilationResultActionsResponse\"S\x82\xd3\xe4\x93\x02M\x12K/v1/{name=projects/*/locations/*/repositories/*/compilationResults/*}:query\x12\xd7\x01\n\x13ListWorkflowConfigs\x12\x34.google.cloud.dataform.v1.ListWorkflowConfigsRequest\x1a\x35.google.cloud.dataform.v1.ListWorkflowConfigsResponse\"S\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{parent=projects/*/locations/*/repositories/*}/workflowConfigs\x12\xc4\x01\n\x11GetWorkflowConfig\x12\x32.google.cloud.dataform.v1.GetWorkflowConfigRequest\x1a(.google.cloud.dataform.v1.WorkflowConfig\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{name=projects/*/locations/*/repositories/*/workflowConfigs/*}\x12\x81\x02\n\x14\x43reateWorkflowConfig\x12\x35.google.cloud.dataform.v1.CreateWorkflowConfigRequest\x1a(.google.cloud.dataform.v1.WorkflowConfig\"\x87\x01\xda\x41)parent,workflow_config,workflow_config_id\x82\xd3\xe4\x93\x02U\"B/v1/{parent=projects/*/locations/*/repositories/*}/workflowConfigs:\x0fworkflow_config\x12\x83\x02\n\x14UpdateWorkflowConfig\x12\x35.google.cloud.dataform.v1.UpdateWorkflowConfigRequest\x1a(.google.cloud.dataform.v1.WorkflowConfig\"\x89\x01\xda\x41\x1bworkflow_config,update_mask\x82\xd3\xe4\x93\x02\x65\x32R/v1/{workflow_config.name=projects/*/locations/*/repositories/*/workflowConfigs/*}:\x0fworkflow_config\x12\xb8\x01\n\x14\x44\x65leteWorkflowConfig\x12\x35.google.cloud.dataform.v1.DeleteWorkflowConfigRequest\x1a\x16.google.protobuf.Empty\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44*B/v1/{name=projects/*/locations/*/repositories/*/workflowConfigs/*}\x12\xe7\x01\n\x17ListWorkflowInvocations\x12\x38.google.cloud.dataform.v1.ListWorkflowInvocationsRequest\x1a\x39.google.cloud.dataform.v1.ListWorkflowInvocationsResponse\"W\xda\x41\x06parent\x82\xd3\xe4\x93\x02H\x12\x46/v1/{parent=projects/*/locations/*/repositories/*}/workflowInvocations\x12\xd4\x01\n\x15GetWorkflowInvocation\x12\x36.google.cloud.dataform.v1.GetWorkflowInvocationRequest\x1a,.google.cloud.dataform.v1.WorkflowInvocation\"U\xda\x41\x04name\x82\xd3\xe4\x93\x02H\x12\x46/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}\x12\x86\x02\n\x18\x43reateWorkflowInvocation\x12\x39.google.cloud.dataform.v1.CreateWorkflowInvocationRequest\x1a,.google.cloud.dataform.v1.WorkflowInvocation\"\x80\x01\xda\x41\x1aparent,workflow_invocation\x82\xd3\xe4\x93\x02]\"F/v1/{parent=projects/*/locations/*/repositories/*}/workflowInvocations:\x13workflow_invocation\x12\xc4\x01\n\x18\x44\x65leteWorkflowInvocation\x12\x39.google.cloud.dataform.v1.DeleteWorkflowInvocationRequest\x1a\x16.google.protobuf.Empty\"U\xda\x41\x04name\x82\xd3\xe4\x93\x02H*F/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}\x12\xeb\x01\n\x18\x43\x61ncelWorkflowInvocation\x12\x39.google.cloud.dataform.v1.CancelWorkflowInvocationRequest\x1a:.google.cloud.dataform.v1.CancelWorkflowInvocationResponse\"X\x82\xd3\xe4\x93\x02R\"M/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}:cancel:\x01*\x12\xf9\x01\n\x1eQueryWorkflowInvocationActions\x12?.google.cloud.dataform.v1.QueryWorkflowInvocationActionsRequest\x1a@.google.cloud.dataform.v1.QueryWorkflowInvocationActionsResponse\"T\x82\xd3\xe4\x93\x02N\x12L/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}:query\x12\x92\x01\n\tGetConfig\x12*.google.cloud.dataform.v1.GetConfigRequest\x1a .google.cloud.dataform.v1.Config\"7\xda\x41\x04name\x82\xd3\xe4\x93\x02*\x12(/v1/{name=projects/*/locations/*/config}\x12\xb5\x01\n\x0cUpdateConfig\x12-.google.cloud.dataform.v1.UpdateConfigRequest\x1a .google.cloud.dataform.v1.Config\"T\xda\x41\x12\x63onfig,update_mask\x82\xd3\xe4\x93\x02\x39\x32//v1/{config.name=projects/*/locations/*/config}:\x06\x63onfig\x12\xf7\x02\n\x0cGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"\xab\x02\xda\x41\x08resource\x82\xd3\xe4\x93\x02\x99\x02\x12\x41/v1/{resource=projects/*/locations/*/repositories/*}:getIamPolicyZP\x12N/v1/{resource=projects/*/locations/*/repositories/*/workspaces/*}:getIamPolicyZ>\x12</v1/{resource=projects/*/locations/*/folders/*}:getIamPolicyZB\x12@/v1/{resource=projects/*/locations/*/teamFolders/*}:getIamPolicy\x12\xf8\x02\n\x0cSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"\xac\x02\x82\xd3\xe4\x93\x02\xa5\x02\"A/v1/{resource=projects/*/locations/*/repositories/*}:setIamPolicy:\x01*ZS\"N/v1/{resource=projects/*/locations/*/repositories/*/workspaces/*}:setIamPolicy:\x01*ZA\"</v1/{resource=projects/*/locations/*/folders/*}:setIamPolicy:\x01*ZE\"@/v1/{resource=projects/*/locations/*/teamFolders/*}:setIamPolicy:\x01*\x12\xb0\x03\n\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1a).google.iam.v1.TestIamPermissionsResponse\"\xc4\x02\x82\xd3\xe4\x93\x02\xbd\x02\"G/v1/{resource=projects/*/locations/*/repositories/*}:testIamPermissions:\x01*ZY\"T/v1/{resource=projects/*/locations/*/repositories/*/workspaces/*}:testIamPermissions:\x01*ZG\"B/v1/{resource=projects/*/locations/*/folders/*}:testIamPermissions:\x01*ZK\"F/v1/{resource=projects/*/locations/*/teamFolders/*}:testIamPermissions:\x01*\x1at\xca\x41\x17\x64\x61taform.googleapis.com\xd2\x41Whttps://www.googleapis.com/auth/bigquery,https://www.googleapis.com/auth/cloud-platformB\xde\x05\n\x1c\x63om.google.cloud.dataform.v1B\rDataformProtoP\x01Z8cloud.google.com/go/dataform/apiv1/dataformpb;dataformpb\xaa\x02\x18Google.Cloud.Dataform.V1\xca\x02\x18Google\\Cloud\\Dataform\\V1\xea\x02\x1bGoogle::Cloud::Dataform::V1\xea\x41\x64\n*secretmanager.googleapis.com/SecretVersion\x12\x36projects/{project}/secrets/{secret}/versions/{version}\xea\x41x\n!cloudkms.googleapis.com/CryptoKey\x12Sprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}\xea\x41\xa6\x01\n(cloudkms.googleapis.com/CryptoKeyVersion\x12zprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}\xea\x41\x91\x01\n1aiplatform.googleapis.com/NotebookRuntimeTemplate\x12\\projects/{project}/locations/{location}/notebookRuntimeTemplates/{notebook_runtime_template}b\x06proto3"
|
|
21
|
+
descriptor_data = "\n\'google/cloud/dataform/v1/dataform.proto\x12\x18google.cloud.dataform.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/iam/v1/iam_policy.proto\x1a\x1agoogle/iam/v1/policy.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\x1a\x1agoogle/type/interval.proto\"e\n\x13\x44\x61taEncryptionState\x12N\n\x14kms_key_version_name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\"\xae\x0f\n\nRepository\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12#\n\x11\x63ontaining_folder\x18\x10 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12\"\n\x10team_folder_name\x18\x12 \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12\x34\n\x0b\x63reate_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12X\n\x13git_remote_settings\x18\x02 \x01(\x0b\x32\x36.google.cloud.dataform.v1.Repository.GitRemoteSettingsB\x03\xe0\x41\x01\x12\x66\n*npmrc_environment_variables_secret_version\x18\x03 \x01(\tB2\xe0\x41\x01\xfa\x41,\n*secretmanager.googleapis.com/SecretVersion\x12p\n\x1fworkspace_compilation_overrides\x18\x04 \x01(\x0b\x32\x42.google.cloud.dataform.v1.Repository.WorkspaceCompilationOverridesB\x03\xe0\x41\x01\x12\x45\n\x06labels\x18\x05 \x03(\x0b\x32\x30.google.cloud.dataform.v1.Repository.LabelsEntryB\x03\xe0\x41\x01\x12,\n\x1cset_authenticated_user_admin\x18\t \x01(\x08\x42\x06\xe0\x41\x01\xe0\x41\x04\x12\x1c\n\x0fservice_account\x18\n \x01(\tB\x03\xe0\x41\x01\x12?\n\x0ckms_key_name\x18\x0b \x01(\tB)\xe0\x41\x01\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12Q\n\x15\x64\x61ta_encryption_state\x18\x0c \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x0f \x01(\tB\x03\xe0\x41\x03H\x02\x88\x01\x01\x1a\x83\x06\n\x11GitRemoteSettings\x12\x10\n\x03url\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0e\x64\x65\x66\x61ult_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12%\n\x18\x65\x66\x66\x65\x63tive_default_branch\x18\t \x01(\tB\x03\xe0\x41\x03\x12_\n#authentication_token_secret_version\x18\x03 \x01(\tB2\xe0\x41\x01\xfa\x41,\n*secretmanager.googleapis.com/SecretVersion\x12v\n\x19ssh_authentication_config\x18\x05 \x01(\x0b\x32N.google.cloud.dataform.v1.Repository.GitRemoteSettings.SshAuthenticationConfigB\x03\xe0\x41\x01\x12[\n\x13git_repository_link\x18\x07 \x01(\tB9\xe0\x41\x01\xfa\x41\x33\n1developerconnect.googleapis.com/GitRepositoryLinkH\x00\x88\x01\x01\x12_\n\x0ctoken_status\x18\x04 \x01(\x0e\x32\x42.google.cloud.dataform.v1.Repository.GitRemoteSettings.TokenStatusB\x05\x18\x01\xe0\x41\x03\x1a\x94\x01\n\x17SshAuthenticationConfig\x12[\n\x1fuser_private_key_secret_version\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*secretmanager.googleapis.com/SecretVersion\x12\x1c\n\x0fhost_public_key\x18\x02 \x01(\tB\x03\xe0\x41\x02\"R\n\x0bTokenStatus\x12\x1c\n\x18TOKEN_STATUS_UNSPECIFIED\x10\x00\x12\r\n\tNOT_FOUND\x10\x01\x12\x0b\n\x07INVALID\x10\x02\x12\t\n\x05VALID\x10\x03\x42\x16\n\x14_git_repository_link\x1au\n\x1dWorkspaceCompilationOverrides\x12\x1d\n\x10\x64\x65\x66\x61ult_database\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rschema_suffix\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0ctable_prefix\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x85\x01\xea\x41\x81\x01\n\"dataform.googleapis.com/Repository\x12\x41projects/{project}/locations/{location}/repositories/{repository}*\x0crepositories2\nrepositoryB\x14\n\x12_containing_folderB\x13\n\x11_team_folder_nameB\x14\n\x12_internal_metadata\"3\n\x17PrivateResourceMetadata\x12\x18\n\x0buser_scoped\x18\x01 \x01(\x08\x42\x03\xe0\x41\x03\"\xb1\x01\n\x17ListRepositoriesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x18ListRepositoriesResponse\x12:\n\x0crepositories\x18\x01 \x03(\x0b\x32$.google.cloud.dataform.v1.Repository\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xa4\x01\n\x15MoveRepositoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12/\n\x1d\x64\x65stination_containing_folder\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x42 \n\x1e_destination_containing_folder\"P\n\x14GetRepositoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\"\xaf\x01\n\x17\x43reateRepositoryRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12=\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryB\x03\xe0\x41\x02\x12\x1a\n\rrepository_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x8e\x01\n\x17UpdateRepositoryRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12=\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryB\x03\xe0\x41\x02\"g\n\x17\x44\x65leteRepositoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xd2\x05\n\x1e\x43ommitRepositoryChangesRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x46\n\x0f\x63ommit_metadata\x18\x02 \x01(\x0b\x32(.google.cloud.dataform.v1.CommitMetadataB\x03\xe0\x41\x02\x12%\n\x18required_head_commit_sha\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12j\n\x0f\x66ile_operations\x18\x03 \x03(\x0b\x32L.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperationsEntryB\x03\xe0\x41\x01\x1a\x9b\x02\n\rFileOperation\x12\x66\n\nwrite_file\x18\x01 \x01(\x0b\x32P.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperation.WriteFileH\x00\x12h\n\x0b\x64\x65lete_file\x18\x02 \x01(\x0b\x32Q.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperation.DeleteFileH\x00\x1a\x1d\n\tWriteFile\x12\x10\n\x08\x63ontents\x18\x01 \x01(\x0c\x1a\x0c\n\nDeleteFileB\x0b\n\toperation\x1a}\n\x13\x46ileOperationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12U\n\x05value\x18\x02 \x01(\x0b\x32\x46.google.cloud.dataform.v1.CommitRepositoryChangesRequest.FileOperation:\x02\x38\x01\"5\n\x1f\x43ommitRepositoryChangesResponse\x12\x12\n\ncommit_sha\x18\x01 \x01(\t\"\x81\x01\n\x19ReadRepositoryFileRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x17\n\ncommit_sha\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04path\x18\x03 \x01(\tB\x03\xe0\x41\x02\".\n\x1aReadRepositoryFileResponse\x12\x10\n\x08\x63ontents\x18\x01 \x01(\x0c\"\xc0\x01\n\'QueryRepositoryDirectoryContentsRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x17\n\ncommit_sha\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04path\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x88\x01\n(QueryRepositoryDirectoryContentsResponse\x12\x43\n\x11\x64irectory_entries\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.DirectoryEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x8a\x01\n\x1d\x46\x65tchRepositoryHistoryRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\"t\n\x1e\x46\x65tchRepositoryHistoryResponse\x12\x39\n\x07\x63ommits\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.CommitLogEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xa5\x01\n\x0e\x43ommitLogEntry\x12/\n\x0b\x63ommit_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\ncommit_sha\x18\x02 \x01(\t\x12\x36\n\x06\x61uthor\x18\x03 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthor\x12\x16\n\x0e\x63ommit_message\x18\x04 \x01(\t\"j\n\x0e\x43ommitMetadata\x12;\n\x06\x61uthor\x18\x01 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthorB\x03\xe0\x41\x02\x12\x1b\n\x0e\x63ommit_message\x18\x02 \x01(\tB\x03\xe0\x41\x01\"e\n)ComputeRepositoryAccessTokenStatusRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\"\xff\x01\n*ComputeRepositoryAccessTokenStatusResponse\x12\x66\n\x0ctoken_status\x18\x01 \x01(\x0e\x32P.google.cloud.dataform.v1.ComputeRepositoryAccessTokenStatusResponse.TokenStatus\"i\n\x0bTokenStatus\x12\x1c\n\x18TOKEN_STATUS_UNSPECIFIED\x10\x00\x12\r\n\tNOT_FOUND\x10\x01\x12\x0b\n\x07INVALID\x10\x02\x12\t\n\x05VALID\x10\x03\x12\x15\n\x11PERMISSION_DENIED\x10\x04\"V\n\x1a\x46\x65tchRemoteBranchesRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\"/\n\x1b\x46\x65tchRemoteBranchesResponse\x12\x10\n\x08\x62ranches\x18\x01 \x03(\t\"\x8b\x04\n\tWorkspace\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x15\x64\x61ta_encryption_state\x18\x02 \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x05 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\x1f\n\rdisable_moves\x18\x06 \x01(\x08\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12Y\n\x19private_resource_metadata\x18\x08 \x01(\x0b\x32\x31.google.cloud.dataform.v1.PrivateResourceMetadataB\x03\xe0\x41\x03:\x98\x01\xea\x41\x94\x01\n!dataform.googleapis.com/Workspace\x12Xprojects/{project}/locations/{location}/repositories/{repository}/workspaces/{workspace}*\nworkspaces2\tworkspaceB\x14\n\x12_internal_metadataB\x10\n\x0e_disable_moves\"\xb0\x01\n\x15ListWorkspacesRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x7f\n\x16ListWorkspacesResponse\x12\x37\n\nworkspaces\x18\x01 \x03(\x0b\x32#.google.cloud.dataform.v1.Workspace\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"N\n\x13GetWorkspaceRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"\xac\x01\n\x16\x43reateWorkspaceRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12;\n\tworkspace\x18\x02 \x01(\x0b\x32#.google.cloud.dataform.v1.WorkspaceB\x03\xe0\x41\x02\x12\x19\n\x0cworkspace_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"Q\n\x16\x44\x65leteWorkspaceRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"=\n\x0c\x43ommitAuthor\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\remail_address\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xa9\x01\n\x15PullGitCommitsRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x1a\n\rremote_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12;\n\x06\x61uthor\x18\x03 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthorB\x03\xe0\x41\x02\"\x18\n\x16PullGitCommitsResponse\"l\n\x15PushGitCommitsRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x1a\n\rremote_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x18\n\x16PushGitCommitsResponse\"V\n\x1b\x46\x65tchFileGitStatusesRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"\xf7\x02\n\x1c\x46\x65tchFileGitStatusesResponse\x12n\n\x18uncommitted_file_changes\x18\x01 \x03(\x0b\x32L.google.cloud.dataform.v1.FetchFileGitStatusesResponse.UncommittedFileChange\x1a\xe6\x01\n\x15UncommittedFileChange\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x66\n\x05state\x18\x02 \x01(\x0e\x32R.google.cloud.dataform.v1.FetchFileGitStatusesResponse.UncommittedFileChange.StateB\x03\xe0\x41\x03\"W\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44\x44\x45\x44\x10\x01\x12\x0b\n\x07\x44\x45LETED\x10\x02\x12\x0c\n\x08MODIFIED\x10\x03\x12\x11\n\rHAS_CONFLICTS\x10\x04\"q\n\x1a\x46\x65tchGitAheadBehindRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x1a\n\rremote_branch\x18\x02 \x01(\tB\x03\xe0\x41\x01\"L\n\x1b\x46\x65tchGitAheadBehindResponse\x12\x15\n\rcommits_ahead\x18\x01 \x01(\x05\x12\x16\n\x0e\x63ommits_behind\x18\x02 \x01(\x05\"\xc6\x01\n\x1d\x43ommitWorkspaceChangesRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12;\n\x06\x61uthor\x18\x04 \x01(\x0b\x32&.google.cloud.dataform.v1.CommitAuthorB\x03\xe0\x41\x02\x12\x1b\n\x0e\x63ommit_message\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05paths\x18\x03 \x03(\tB\x03\xe0\x41\x01\" \n\x1e\x43ommitWorkspaceChangesResponse\"\x7f\n\x1cResetWorkspaceChangesRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x12\n\x05paths\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\x12\n\x05\x63lean\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"\x1f\n\x1dResetWorkspaceChangesResponse\"g\n\x14\x46\x65tchFileDiffRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"/\n\x15\x46\x65tchFileDiffResponse\x12\x16\n\x0e\x66ormatted_diff\x18\x01 \x01(\t\"\xe5\x01\n\x1dQueryDirectoryContentsRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x42\n\x04view\x18\x05 \x01(\x0e\x32/.google.cloud.dataform.v1.DirectoryContentsViewB\x03\xe0\x41\x01\"~\n\x1eQueryDirectoryContentsResponse\x12\x43\n\x11\x64irectory_entries\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.DirectoryEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x83\x01\n\x0e\x44irectoryEntry\x12\x0e\n\x04\x66ile\x18\x01 \x01(\tH\x00\x12\x13\n\tdirectory\x18\x02 \x01(\tH\x00\x12\x43\n\x08metadata\x18\x03 \x01(\x0b\x32\x31.google.cloud.dataform.v1.FilesystemEntryMetadataB\x07\n\x05\x65ntry\"h\n\x17\x46ilesystemEntryMetadata\x12\x17\n\nsize_bytes\x18\x01 \x01(\x03\x42\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"\x98\x01\n\x12SearchFilesRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"s\n\x13SearchFilesResponse\x12>\n\x0esearch_results\x18\x01 \x03(\x0b\x32&.google.cloud.dataform.v1.SearchResult\x12\x1c\n\x0fnext_page_token\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x99\x01\n\x0cSearchResult\x12:\n\x04\x66ile\x18\x01 \x01(\x0b\x32*.google.cloud.dataform.v1.FileSearchResultH\x00\x12\x44\n\tdirectory\x18\x02 \x01(\x0b\x32/.google.cloud.dataform.v1.DirectorySearchResultH\x00\x42\x07\n\x05\x65ntry\" \n\x10\x46ileSearchResult\x12\x0c\n\x04path\x18\x01 \x01(\t\"%\n\x15\x44irectorySearchResult\x12\x0c\n\x04path\x18\x01 \x01(\t\"g\n\x14MakeDirectoryRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x17\n\x15MakeDirectoryResponse\"i\n\x16RemoveDirectoryRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x19\n\x17RemoveDirectoryResponse\"~\n\x14MoveDirectoryRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08new_path\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x17\n\x15MoveDirectoryResponse\"y\n\x0fReadFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08revision\x18\x03 \x01(\tB\x03\xe0\x41\x01\")\n\x10ReadFileResponse\x12\x15\n\rfile_contents\x18\x01 \x01(\x0c\"d\n\x11RemoveFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\x14\n\x12RemoveFileResponse\"y\n\x0fMoveFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08new_path\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x12\n\x10MoveFileResponse\"z\n\x10WriteFileRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08\x63ontents\x18\x03 \x01(\x0c\x42\x03\xe0\x41\x02\"\x13\n\x11WriteFileResponse\"Y\n\x19InstallNpmPackagesRequest\x12<\n\tworkspace\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!dataform.googleapis.com/Workspace\"\x1c\n\x1aInstallNpmPackagesResponse\"\xe7\x06\n\rReleaseConfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x1a\n\rgit_commitish\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12U\n\x17\x63ode_compilation_config\x18\x03 \x01(\x0b\x32/.google.cloud.dataform.v1.CodeCompilationConfigB\x03\xe0\x41\x01\x12\x1a\n\rcron_schedule\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\ttime_zone\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12m\n recent_scheduled_release_records\x18\x05 \x03(\x0b\x32>.google.cloud.dataform.v1.ReleaseConfig.ScheduledReleaseRecordB\x03\xe0\x41\x03\x12U\n\x1arelease_compilation_result\x18\x06 \x01(\tB1\xe0\x41\x01\xfa\x41+\n)dataform.googleapis.com/CompilationResult\x12\x15\n\x08\x64isabled\x18\x08 \x01(\x08\x42\x03\xe0\x41\x01\x12#\n\x11internal_metadata\x18\t \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x1a\xd3\x01\n\x16ScheduledReleaseRecord\x12L\n\x12\x63ompilation_result\x18\x02 \x01(\tB.\xfa\x41+\n)dataform.googleapis.com/CompilationResultH\x00\x12*\n\x0c\x65rror_status\x18\x03 \x01(\x0b\x32\x12.google.rpc.StatusH\x00\x12\x35\n\x0crelease_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x42\x08\n\x06result:\xad\x01\xea\x41\xa9\x01\n%dataform.googleapis.com/ReleaseConfig\x12\x61projects/{project}/locations/{location}/repositories/{repository}/releaseConfigs/{release_config}*\x0ereleaseConfigs2\rreleaseConfigB\x14\n\x12_internal_metadata\"\x88\x01\n\x19ListReleaseConfigsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x8c\x01\n\x1aListReleaseConfigsResponse\x12@\n\x0frelease_configs\x18\x01 \x03(\x0b\x32\'.google.cloud.dataform.v1.ReleaseConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"V\n\x17GetReleaseConfigRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfig\"\xbe\x01\n\x1a\x43reateReleaseConfigRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x44\n\x0erelease_config\x18\x02 \x01(\x0b\x32\'.google.cloud.dataform.v1.ReleaseConfigB\x03\xe0\x41\x02\x12\x1e\n\x11release_config_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x98\x01\n\x1aUpdateReleaseConfigRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x44\n\x0erelease_config\x18\x02 \x01(\x0b\x32\'.google.cloud.dataform.v1.ReleaseConfigB\x03\xe0\x41\x02\"Y\n\x1a\x44\x65leteReleaseConfigRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfig\"\xca\x08\n\x11\x43ompilationResult\x12\x1c\n\rgit_commitish\x18\x02 \x01(\tB\x03\xe0\x41\x05H\x00\x12>\n\tworkspace\x18\x03 \x01(\tB)\xe0\x41\x05\xfa\x41#\n!dataform.googleapis.com/WorkspaceH\x00\x12G\n\x0erelease_config\x18\x07 \x01(\tB-\xe0\x41\x05\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfigH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12U\n\x17\x63ode_compilation_config\x18\x04 \x01(\x0b\x32/.google.cloud.dataform.v1.CodeCompilationConfigB\x03\xe0\x41\x05\x12$\n\x17resolved_git_commit_sha\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\"\n\x15\x64\x61taform_core_version\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12]\n\x12\x63ompilation_errors\x18\x06 \x03(\x0b\x32<.google.cloud.dataform.v1.CompilationResult.CompilationErrorB\x03\xe0\x41\x03\x12Q\n\x15\x64\x61ta_encryption_state\x18\t \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x0b \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12Y\n\x19private_resource_metadata\x18\x0c \x01(\x0b\x32\x31.google.cloud.dataform.v1.PrivateResourceMetadataB\x03\xe0\x41\x03\x1a\x8d\x01\n\x10\x43ompilationError\x12\x14\n\x07message\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x12\n\x05stack\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04path\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12<\n\raction_target\x18\x04 \x01(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x03:\xc1\x01\xea\x41\xbd\x01\n)dataform.googleapis.com/CompilationResult\x12iprojects/{project}/locations/{location}/repositories/{repository}/compilationResults/{compilation_result}*\x12\x63ompilationResults2\x11\x63ompilationResultB\x08\n\x06sourceB\x14\n\x12_internal_metadata\"\xee\x03\n\x15\x43odeCompilationConfig\x12\x1d\n\x10\x64\x65\x66\x61ult_database\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0e\x64\x65\x66\x61ult_schema\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x64\x65\x66\x61ult_location\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x61ssertion_schema\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12L\n\x04vars\x18\x04 \x03(\x0b\x32\x39.google.cloud.dataform.v1.CodeCompilationConfig.VarsEntryB\x03\xe0\x41\x01\x12\x1c\n\x0f\x64\x61tabase_suffix\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rschema_suffix\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0ctable_prefix\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12*\n\x1d\x62uiltin_assertion_name_prefix\x18\n \x01(\tB\x03\xe0\x41\x01\x12_\n default_notebook_runtime_options\x18\t \x01(\x0b\x32\x30.google.cloud.dataform.v1.NotebookRuntimeOptionsB\x03\xe0\x41\x01\x1a+\n\tVarsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb6\x01\n\x16NotebookRuntimeOptions\x12 \n\x11gcs_output_bucket\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00\x12h\n%ai_platform_notebook_runtime_template\x18\x02 \x01(\tB9\xe0\x41\x01\xfa\x41\x33\n1aiplatform.googleapis.com/NotebookRuntimeTemplateB\x10\n\x0e\x65xecution_sink\"\xb8\x01\n\x1dListCompilationResultsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x98\x01\n\x1eListCompilationResultsResponse\x12H\n\x13\x63ompilation_results\x18\x01 \x03(\x0b\x32+.google.cloud.dataform.v1.CompilationResult\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"^\n\x1bGetCompilationResultRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)dataform.googleapis.com/CompilationResult\"\xaa\x01\n\x1e\x43reateCompilationResultRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12L\n\x12\x63ompilation_result\x18\x02 \x01(\x0b\x32+.google.cloud.dataform.v1.CompilationResultB\x03\xe0\x41\x02\"G\n\x06Target\x12\x15\n\x08\x64\x61tabase\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06schema\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04name\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xe0\x02\n\x12RelationDescriptor\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12N\n\x07\x63olumns\x18\x02 \x03(\x0b\x32=.google.cloud.dataform.v1.RelationDescriptor.ColumnDescriptor\x12Y\n\x0f\x62igquery_labels\x18\x03 \x03(\x0b\x32@.google.cloud.dataform.v1.RelationDescriptor.BigqueryLabelsEntry\x1aS\n\x10\x43olumnDescriptor\x12\x0c\n\x04path\x18\x01 \x03(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x1c\n\x14\x62igquery_policy_tags\x18\x03 \x03(\t\x1a\x35\n\x13\x42igqueryLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa3\x1e\n\x17\x43ompilationResultAction\x12N\n\x08relation\x18\x04 \x01(\x0b\x32:.google.cloud.dataform.v1.CompilationResultAction.RelationH\x00\x12R\n\noperations\x18\x05 \x01(\x0b\x32<.google.cloud.dataform.v1.CompilationResultAction.OperationsH\x00\x12P\n\tassertion\x18\x06 \x01(\x0b\x32;.google.cloud.dataform.v1.CompilationResultAction.AssertionH\x00\x12T\n\x0b\x64\x65\x63laration\x18\x07 \x01(\x0b\x32=.google.cloud.dataform.v1.CompilationResultAction.DeclarationH\x00\x12N\n\x08notebook\x18\x08 \x01(\x0b\x32:.google.cloud.dataform.v1.CompilationResultAction.NotebookH\x00\x12]\n\x10\x64\x61ta_preparation\x18\t \x01(\x0b\x32\x41.google.cloud.dataform.v1.CompilationResultAction.DataPreparationH\x00\x12\x30\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12:\n\x10\x63\x61nonical_target\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x11\n\tfile_path\x18\x03 \x01(\t\x12#\n\x11internal_metadata\x18\n \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x1a\xae\x0b\n\x08Relation\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12I\n\x13relation_descriptor\x18\x04 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x12^\n\rrelation_type\x18\x05 \x01(\x0e\x32G.google.cloud.dataform.v1.CompilationResultAction.Relation.RelationType\x12\x14\n\x0cselect_query\x18\x06 \x01(\t\x12\x16\n\x0epre_operations\x18\x07 \x03(\t\x12\x17\n\x0fpost_operations\x18\x08 \x03(\t\x12s\n\x18incremental_table_config\x18\t \x01(\x0b\x32Q.google.cloud.dataform.v1.CompilationResultAction.Relation.IncrementalTableConfig\x12\x1c\n\x14partition_expression\x18\n \x01(\t\x12\x1b\n\x13\x63luster_expressions\x18\x0b \x03(\t\x12!\n\x19partition_expiration_days\x18\x0c \x01(\x05\x12 \n\x18require_partition_filter\x18\r \x01(\x08\x12m\n\x12\x61\x64\x64itional_options\x18\x0e \x03(\x0b\x32Q.google.cloud.dataform.v1.CompilationResultAction.Relation.AdditionalOptionsEntry\x12\x17\n\nconnection\x18\x0f \x01(\tB\x03\xe0\x41\x01\x12\x61\n\x0ctable_format\x18\x10 \x01(\x0e\x32\x46.google.cloud.dataform.v1.CompilationResultAction.Relation.TableFormatB\x03\xe0\x41\x01\x12_\n\x0b\x66ile_format\x18\x11 \x01(\x0e\x32\x45.google.cloud.dataform.v1.CompilationResultAction.Relation.FileFormatB\x03\xe0\x41\x01\x12\x18\n\x0bstorage_uri\x18\x12 \x01(\tB\x03\xe0\x41\x01\x1a\xd8\x01\n\x16IncrementalTableConfig\x12 \n\x18incremental_select_query\x18\x01 \x01(\t\x12\x18\n\x10refresh_disabled\x18\x02 \x01(\x08\x12\x18\n\x10unique_key_parts\x18\x03 \x03(\t\x12\x1f\n\x17update_partition_filter\x18\x04 \x01(\t\x12\"\n\x1aincremental_pre_operations\x18\x05 \x03(\t\x12#\n\x1bincremental_post_operations\x18\x06 \x03(\t\x1a\x38\n\x16\x41\x64\x64itionalOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"p\n\x0cRelationType\x12\x1d\n\x19RELATION_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05TABLE\x10\x01\x12\x08\n\x04VIEW\x10\x02\x12\x15\n\x11INCREMENTAL_TABLE\x10\x03\x12\x15\n\x11MATERIALIZED_VIEW\x10\x04\"8\n\x0bTableFormat\x12\x1c\n\x18TABLE_FORMAT_UNSPECIFIED\x10\x00\x12\x0b\n\x07ICEBERG\x10\x01\"6\n\nFileFormat\x12\x1b\n\x17\x46ILE_FORMAT_UNSPECIFIED\x10\x00\x12\x0b\n\x07PARQUET\x10\x01\x1a\xda\x01\n\nOperations\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12I\n\x13relation_descriptor\x18\x06 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x12\x0f\n\x07queries\x18\x04 \x03(\t\x12\x12\n\nhas_output\x18\x05 \x01(\x08\x1a\x83\x02\n\tAssertion\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x37\n\rparent_action\x18\x05 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12\x14\n\x0cselect_query\x18\x04 \x01(\t\x12I\n\x13relation_descriptor\x18\x06 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x1aX\n\x0b\x44\x65\x63laration\x12I\n\x13relation_descriptor\x18\x01 \x01(\x0b\x32,.google.cloud.dataform.v1.RelationDescriptor\x1az\n\x08Notebook\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x10\n\x08\x63ontents\x18\x03 \x01(\t\x12\x0c\n\x04tags\x18\x04 \x03(\t\x1a\xa7\x04\n\x0f\x44\x61taPreparation\x12\x17\n\rcontents_yaml\x18\x05 \x01(\tH\x00\x12g\n\x0c\x63ontents_sql\x18\x06 \x01(\x0b\x32O.google.cloud.dataform.v1.CompilationResultAction.DataPreparation.SqlDefinitionH\x00\x12<\n\x12\x64\x65pendency_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x10\n\x08\x64isabled\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x04 \x03(\t\x1a\xcd\x01\n\rSqlDefinition\x12\r\n\x05query\x18\x01 \x01(\t\x12\x61\n\x0b\x65rror_table\x18\x02 \x01(\x0b\x32L.google.cloud.dataform.v1.CompilationResultAction.DataPreparation.ErrorTable\x12J\n\x04load\x18\x03 \x01(\x0b\x32<.google.cloud.dataform.v1.CompilationResultAction.LoadConfig\x1aV\n\nErrorTable\x12\x30\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x16\n\x0eretention_days\x18\x02 \x01(\x05\x42\x0c\n\ndefinition\x1a\xf0\x02\n\nLoadConfig\x12S\n\x07replace\x18\x01 \x01(\x0b\x32@.google.cloud.dataform.v1.CompilationResultAction.SimpleLoadModeH\x00\x12R\n\x06\x61ppend\x18\x02 \x01(\x0b\x32@.google.cloud.dataform.v1.CompilationResultAction.SimpleLoadModeH\x00\x12X\n\x07maximum\x18\x03 \x01(\x0b\x32\x45.google.cloud.dataform.v1.CompilationResultAction.IncrementalLoadModeH\x00\x12W\n\x06unique\x18\x04 \x01(\x0b\x32\x45.google.cloud.dataform.v1.CompilationResultAction.IncrementalLoadModeH\x00\x42\x06\n\x04mode\x1a\x10\n\x0eSimpleLoadMode\x1a%\n\x13IncrementalLoadMode\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\tB\x11\n\x0f\x63ompiled_objectB\x14\n\x12_internal_metadata\"\xad\x01\n$QueryCompilationResultActionsRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)dataform.googleapis.com/CompilationResult\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x97\x01\n%QueryCompilationResultActionsResponse\x12U\n\x1a\x63ompilation_result_actions\x18\x01 \x03(\x0b\x32\x31.google.cloud.dataform.v1.CompilationResultAction\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xad\x07\n\x0eWorkflowConfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x45\n\x0erelease_config\x18\x02 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%dataform.googleapis.com/ReleaseConfig\x12J\n\x11invocation_config\x18\x03 \x01(\x0b\x32*.google.cloud.dataform.v1.InvocationConfigB\x03\xe0\x41\x01\x12\x1a\n\rcron_schedule\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\ttime_zone\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12r\n\"recent_scheduled_execution_records\x18\x05 \x03(\x0b\x32\x41.google.cloud.dataform.v1.WorkflowConfig.ScheduledExecutionRecordB\x03\xe0\x41\x03\x12\x15\n\x08\x64isabled\x18\x08 \x01(\x08\x42\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x0b \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x1a\xd9\x01\n\x18ScheduledExecutionRecord\x12N\n\x13workflow_invocation\x18\x02 \x01(\tB/\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocationH\x00\x12*\n\x0c\x65rror_status\x18\x03 \x01(\x0b\x32\x12.google.rpc.StatusH\x00\x12\x37\n\x0e\x65xecution_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x42\x08\n\x06result:\xb2\x01\xea\x41\xae\x01\n&dataform.googleapis.com/WorkflowConfig\x12\x63projects/{project}/locations/{location}/repositories/{repository}/workflowConfigs/{workflow_config}*\x0fworkflowConfigs2\x0eworkflowConfigB\x14\n\x12_internal_metadata\"\xdc\x03\n\x10InvocationConfig\x12?\n\x10included_targets\x18\x01 \x03(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x01\x12\x1a\n\rincluded_tags\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12-\n transitive_dependencies_included\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12+\n\x1etransitive_dependents_included\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x35\n(fully_refresh_incremental_tables_enabled\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1c\n\x0fservice_account\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12Z\n\x0equery_priority\x18\t \x01(\x0e\x32\x38.google.cloud.dataform.v1.InvocationConfig.QueryPriorityB\x03\xe0\x41\x01H\x00\x88\x01\x01\"K\n\rQueryPriority\x12\x1e\n\x1aQUERY_PRIORITY_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINTERACTIVE\x10\x01\x12\t\n\x05\x42\x41TCH\x10\x02\x42\x11\n\x0f_query_priority\"\x89\x01\n\x1aListWorkflowConfigsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x8f\x01\n\x1bListWorkflowConfigsResponse\x12\x42\n\x10workflow_configs\x18\x01 \x03(\x0b\x32(.google.cloud.dataform.v1.WorkflowConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"X\n\x18GetWorkflowConfigRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&dataform.googleapis.com/WorkflowConfig\"\xc2\x01\n\x1b\x43reateWorkflowConfigRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x46\n\x0fworkflow_config\x18\x02 \x01(\x0b\x32(.google.cloud.dataform.v1.WorkflowConfigB\x03\xe0\x41\x02\x12\x1f\n\x12workflow_config_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\"\x9b\x01\n\x1bUpdateWorkflowConfigRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x46\n\x0fworkflow_config\x18\x02 \x01(\x0b\x32(.google.cloud.dataform.v1.WorkflowConfigB\x03\xe0\x41\x02\"[\n\x1b\x44\x65leteWorkflowConfigRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&dataform.googleapis.com/WorkflowConfig\"\x94\x08\n\x12WorkflowInvocation\x12O\n\x12\x63ompilation_result\x18\x02 \x01(\tB1\xe0\x41\x05\xfa\x41+\n)dataform.googleapis.com/CompilationResultH\x00\x12I\n\x0fworkflow_config\x18\x06 \x01(\tB.\xe0\x41\x05\xfa\x41(\n&dataform.googleapis.com/WorkflowConfigH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12J\n\x11invocation_config\x18\x03 \x01(\x0b\x32*.google.cloud.dataform.v1.InvocationConfigB\x03\xe0\x41\x05\x12\x46\n\x05state\x18\x04 \x01(\x0e\x32\x32.google.cloud.dataform.v1.WorkflowInvocation.StateB\x03\xe0\x41\x03\x12\x35\n\x11invocation_timing\x18\x05 \x01(\x0b\x32\x15.google.type.IntervalB\x03\xe0\x41\x03\x12V\n\x1bresolved_compilation_result\x18\x07 \x01(\tB1\xe0\x41\x03\xfa\x41+\n)dataform.googleapis.com/CompilationResult\x12Q\n\x15\x64\x61ta_encryption_state\x18\x08 \x01(\x0b\x32-.google.cloud.dataform.v1.DataEncryptionStateB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\t \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x12Y\n\x19private_resource_metadata\x18\n \x01(\x0b\x32\x31.google.cloud.dataform.v1.PrivateResourceMetadataB\x03\xe0\x41\x03\"d\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\r\n\tCANCELLED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\x12\r\n\tCANCELING\x10\x05:\xc6\x01\xea\x41\xc2\x01\n*dataform.googleapis.com/WorkflowInvocation\x12kprojects/{project}/locations/{location}/repositories/{repository}/workflowInvocations/{workflow_invocation}*\x13workflowInvocations2\x12workflowInvocationB\x14\n\x12\x63ompilation_sourceB\x14\n\x12_internal_metadata\"\xb9\x01\n\x1eListWorkflowInvocationsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x9b\x01\n\x1fListWorkflowInvocationsResponse\x12J\n\x14workflow_invocations\x18\x01 \x03(\x0b\x32,.google.cloud.dataform.v1.WorkflowInvocation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"`\n\x1cGetWorkflowInvocationRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\"\xad\x01\n\x1f\x43reateWorkflowInvocationRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/Repository\x12N\n\x13workflow_invocation\x18\x02 \x01(\x0b\x32,.google.cloud.dataform.v1.WorkflowInvocationB\x03\xe0\x41\x02\"c\n\x1f\x44\x65leteWorkflowInvocationRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\"c\n\x1f\x43\x61ncelWorkflowInvocationRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\"\"\n CancelWorkflowInvocationResponse\"\x9b\x10\n\x18WorkflowInvocationAction\x12\x61\n\x0f\x62igquery_action\x18\x06 \x01(\x0b\x32\x41.google.cloud.dataform.v1.WorkflowInvocationAction.BigQueryActionB\x03\xe0\x41\x03H\x00\x12\x61\n\x0fnotebook_action\x18\x08 \x01(\x0b\x32\x41.google.cloud.dataform.v1.WorkflowInvocationAction.NotebookActionB\x03\xe0\x41\x03H\x00\x12p\n\x17\x64\x61ta_preparation_action\x18\t \x01(\x0b\x32H.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationActionB\x03\xe0\x41\x03H\x00\x12\x35\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x03\x12?\n\x10\x63\x61nonical_target\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.TargetB\x03\xe0\x41\x03\x12L\n\x05state\x18\x04 \x01(\x0e\x32\x38.google.cloud.dataform.v1.WorkflowInvocationAction.StateB\x03\xe0\x41\x03\x12\x1b\n\x0e\x66\x61ilure_reason\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x11invocation_timing\x18\x05 \x01(\x0b\x32\x15.google.type.IntervalB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\n \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01\x1a>\n\x0e\x42igQueryAction\x12\x17\n\nsql_script\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x1a<\n\x0eNotebookAction\x12\x15\n\x08\x63ontents\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x1a\x81\t\n\x15\x44\x61taPreparationAction\x12\x1c\n\rcontents_yaml\x18\x02 \x01(\tB\x03\xe0\x41\x03H\x00\x12t\n\x0c\x63ontents_sql\x18\x06 \x01(\x0b\x32\\.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionSqlDefinitionH\x00\x12\x1a\n\rgenerated_sql\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x04 \x01(\tB\x03\xe0\x41\x03\x1a\x84\x02\n\x13\x41\x63tionSqlDefinition\x12\r\n\x05query\x18\x01 \x01(\t\x12n\n\x0b\x65rror_table\x18\x02 \x01(\x0b\x32Y.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionErrorTable\x12n\n\x0bload_config\x18\x03 \x01(\x0b\x32Y.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionLoadConfig\x1a\\\n\x10\x41\x63tionErrorTable\x12\x30\n\x06target\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.Target\x12\x16\n\x0eretention_days\x18\x02 \x01(\x05\x1a\xea\x03\n\x10\x41\x63tionLoadConfig\x12p\n\x07replace\x18\x01 \x01(\x0b\x32].google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionSimpleLoadModeH\x00\x12o\n\x06\x61ppend\x18\x02 \x01(\x0b\x32].google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionSimpleLoadModeH\x00\x12u\n\x07maximum\x18\x03 \x01(\x0b\x32\x62.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionIncrementalLoadModeH\x00\x12t\n\x06unique\x18\x04 \x01(\x0b\x32\x62.google.cloud.dataform.v1.WorkflowInvocationAction.DataPreparationAction.ActionIncrementalLoadModeH\x00\x42\x06\n\x04mode\x1a\x16\n\x14\x41\x63tionSimpleLoadMode\x1a+\n\x19\x41\x63tionIncrementalLoadMode\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\tB\x0c\n\ndefinition\"f\n\x05State\x12\x0b\n\x07PENDING\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\x0b\n\x07SKIPPED\x10\x02\x12\x0c\n\x08\x44ISABLED\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\r\n\tCANCELLED\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\x42\x08\n\x06\x61\x63tionB\x14\n\x12_internal_metadata\"\x9a\x01\n%QueryWorkflowInvocationActionsRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*dataform.googleapis.com/WorkflowInvocation\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x9a\x01\n&QueryWorkflowInvocationActionsResponse\x12W\n\x1bworkflow_invocation_actions\x18\x01 \x03(\x0b\x32\x32.google.cloud.dataform.v1.WorkflowInvocationAction\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x85\x02\n\x06\x43onfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12G\n\x14\x64\x65\x66\x61ult_kms_key_name\x18\x02 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12#\n\x11internal_metadata\x18\x07 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01:d\xea\x41\x61\n\x1e\x64\x61taform.googleapis.com/Config\x12.projects/{project}/locations/{location}/config*\x07\x63onfigs2\x06\x63onfigB\x14\n\x12_internal_metadata\"H\n\x10GetConfigRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Config\"\x82\x01\n\x13UpdateConfigRequest\x12\x35\n\x06\x63onfig\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.ConfigB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\"\xcf\x03\n\x06\x46older\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11\x63ontaining_folder\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10team_folder_name\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x07 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\'\n\x15\x63reator_iam_principal\x18\x08 \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01:n\xea\x41k\n\x1e\x64\x61taform.googleapis.com/Folder\x12\x38projects/{project}/locations/{location}/folders/{folder}*\x07\x66olders2\x06\x66olderB\x14\n\x12_internal_metadataB\x18\n\x16_creator_iam_principal\"\x87\x01\n\x13\x43reateFolderRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x35\n\x06\x66older\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderB\x03\xe0\x41\x02\"\x9c\x01\n\x11MoveFolderRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\x12/\n\x1d\x64\x65stination_containing_folder\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x42 \n\x1e_destination_containing_folder\"H\n\x10GetFolderRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\"\x82\x01\n\x13UpdateFolderRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x35\n\x06\x66older\x18\x02 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderB\x03\xe0\x41\x02\"K\n\x13\x44\x65leteFolderRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\"c\n\x17\x44\x65leteFolderTreeRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"k\n\x1b\x44\x65leteTeamFolderTreeRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xe2\x02\n\x18\x44\x65leteFolderTreeMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12L\n\x05state\x18\x04 \x01(\x0e\x32\x38.google.cloud.dataform.v1.DeleteFolderTreeMetadata.StateB\x03\xe0\x41\x03\x12\x1d\n\x10percent_complete\x18\x05 \x01(\x05\x42\x03\xe0\x41\x03\"[\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINITIALIZED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\"\xb1\x01\n\x1aQueryFolderContentsRequest\x12\x36\n\x06\x66older\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x64\x61taform.googleapis.com/Folder\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa3\x02\n\x1bQueryFolderContentsResponse\x12Z\n\x07\x65ntries\x18\x01 \x03(\x0b\x32I.google.cloud.dataform.v1.QueryFolderContentsResponse.FolderContentsEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a\x8e\x01\n\x13\x46olderContentsEntry\x12\x32\n\x06\x66older\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderH\x00\x12:\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryH\x00\x42\x07\n\x05\x65ntry\"\xb8\x01\n\x1cQueryUserRootContentsRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa3\x02\n\x1dQueryUserRootContentsResponse\x12Z\n\x07\x65ntries\x18\x01 \x03(\x0b\x32I.google.cloud.dataform.v1.QueryUserRootContentsResponse.RootContentsEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a\x8c\x01\n\x11RootContentsEntry\x12\x32\n\x06\x66older\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderH\x00\x12:\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryH\x00\x42\x07\n\x05\x65ntry\"\xab\x03\n\nTeamFolder\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12#\n\x11internal_metadata\x18\x05 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\'\n\x15\x63reator_iam_principal\x18\x06 \x01(\tB\x03\xe0\x41\x03H\x01\x88\x01\x01:\x84\x01\xea\x41\x80\x01\n\"dataform.googleapis.com/TeamFolder\x12\x41projects/{project}/locations/{location}/teamFolders/{team_folder}*\x0bteamFolders2\nteamFolderB\x14\n\x12_internal_metadataB\x18\n\x16_creator_iam_principal\"\x94\x01\n\x17\x43reateTeamFolderRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12>\n\x0bteam_folder\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.TeamFolderB\x03\xe0\x41\x02\"P\n\x14GetTeamFolderRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\"\x8f\x01\n\x17UpdateTeamFolderRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12>\n\x0bteam_folder\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.TeamFolderB\x03\xe0\x41\x02\"S\n\x17\x44\x65leteTeamFolderRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\"\xbe\x01\n\x1eQueryTeamFolderContentsRequest\x12?\n\x0bteam_folder\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"dataform.googleapis.com/TeamFolder\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xb3\x02\n\x1fQueryTeamFolderContentsResponse\x12\x62\n\x07\x65ntries\x18\x01 \x03(\x0b\x32Q.google.cloud.dataform.v1.QueryTeamFolderContentsResponse.TeamFolderContentsEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a\x92\x01\n\x17TeamFolderContentsEntry\x12\x32\n\x06\x66older\x18\x01 \x01(\x0b\x32 .google.cloud.dataform.v1.FolderH\x00\x12:\n\nrepository\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.RepositoryH\x00\x42\x07\n\x05\x65ntry\"\xb4\x01\n\x18SearchTeamFoldersRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xf1\x01\n\x19SearchTeamFoldersResponse\x12[\n\x07results\x18\x01 \x03(\x0b\x32J.google.cloud.dataform.v1.SearchTeamFoldersResponse.TeamFolderSearchResult\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x1a^\n\x16TeamFolderSearchResult\x12;\n\x0bteam_folder\x18\x02 \x01(\x0b\x32$.google.cloud.dataform.v1.TeamFolderH\x00\x42\x07\n\x05\x65ntry\"\xca\x02\n\x12MoveFolderMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x41\n\x05state\x18\x04 \x01(\x0e\x32\x32.google.cloud.dataform.v1.MoveFolderMetadata.State\x12\x18\n\x10percent_complete\x18\x05 \x01(\x05\"Y\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINITIALIZED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0b\n\x07SUCCESS\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\"\xd2\x02\n\x16MoveRepositoryMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x45\n\x05state\x18\x04 \x01(\x0e\x32\x36.google.cloud.dataform.v1.MoveRepositoryMetadata.State\x12\x18\n\x10percent_complete\x18\x05 \x01(\x05\"Y\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bINITIALIZED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0b\n\x07SUCCESS\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04*\x89\x01\n\x15\x44irectoryContentsView\x12\'\n#DIRECTORY_CONTENTS_VIEW_UNSPECIFIED\x10\x00\x12!\n\x1d\x44IRECTORY_CONTENTS_VIEW_BASIC\x10\x01\x12$\n DIRECTORY_CONTENTS_VIEW_METADATA\x10\x02\x32\xe3}\n\x08\x44\x61taform\x12\xa5\x01\n\rGetTeamFolder\x12..google.cloud.dataform.v1.GetTeamFolderRequest\x1a$.google.cloud.dataform.v1.TeamFolder\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/teamFolders/*}\x12\xc6\x01\n\x10\x43reateTeamFolder\x12\x31.google.cloud.dataform.v1.CreateTeamFolderRequest\x1a$.google.cloud.dataform.v1.TeamFolder\"Y\xda\x41\x12parent,team_folder\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/teamFolders:\x0bteam_folder\x12\xd7\x01\n\x10UpdateTeamFolder\x12\x31.google.cloud.dataform.v1.UpdateTeamFolderRequest\x1a$.google.cloud.dataform.v1.TeamFolder\"j\xda\x41\x17team_folder,update_mask\x82\xd3\xe4\x93\x02J2;/v1/{team_folder.name=projects/*/locations/*/teamFolders/*}:\x0bteam_folder\x12\x9d\x01\n\x10\x44\x65leteTeamFolder\x12\x31.google.cloud.dataform.v1.DeleteTeamFolderRequest\x1a\x16.google.protobuf.Empty\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/teamFolders/*}\x12\xf5\x01\n\x14\x44\x65leteTeamFolderTree\x12\x35.google.cloud.dataform.v1.DeleteTeamFolderTreeRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteFolderTreeMetadata\xda\x41\nname,force\x82\xd3\xe4\x93\x02?\":/v1/{name=projects/*/locations/*/teamFolders/*}:deleteTree:\x01*\x12\xea\x01\n\x17QueryTeamFolderContents\x12\x38.google.cloud.dataform.v1.QueryTeamFolderContentsRequest\x1a\x39.google.cloud.dataform.v1.QueryTeamFolderContentsResponse\"Z\xda\x41\x0bteam_folder\x82\xd3\xe4\x93\x02\x46\x12\x44/v1/{team_folder=projects/*/locations/*/teamFolders/*}:queryContents\x12\xbe\x01\n\x11SearchTeamFolders\x12\x32.google.cloud.dataform.v1.SearchTeamFoldersRequest\x1a\x33.google.cloud.dataform.v1.SearchTeamFoldersResponse\"@\x82\xd3\xe4\x93\x02:\x12\x38/v1/{location=projects/*/locations/*}/teamFolders:search\x12\x95\x01\n\tGetFolder\x12*.google.cloud.dataform.v1.GetFolderRequest\x1a .google.cloud.dataform.v1.Folder\":\xda\x41\x04name\x82\xd3\xe4\x93\x02-\x12+/v1/{name=projects/*/locations/*/folders/*}\x12\xac\x01\n\x0c\x43reateFolder\x12-.google.cloud.dataform.v1.CreateFolderRequest\x1a .google.cloud.dataform.v1.Folder\"K\xda\x41\rparent,folder\x82\xd3\xe4\x93\x02\x35\"+/v1/{parent=projects/*/locations/*}/folders:\x06\x66older\x12\xb8\x01\n\x0cUpdateFolder\x12-.google.cloud.dataform.v1.UpdateFolderRequest\x1a .google.cloud.dataform.v1.Folder\"W\xda\x41\x12\x66older,update_mask\x82\xd3\xe4\x93\x02<22/v1/{folder.name=projects/*/locations/*/folders/*}:\x06\x66older\x12\x91\x01\n\x0c\x44\x65leteFolder\x12-.google.cloud.dataform.v1.DeleteFolderRequest\x1a\x16.google.protobuf.Empty\":\xda\x41\x04name\x82\xd3\xe4\x93\x02-*+/v1/{name=projects/*/locations/*/folders/*}\x12\xe9\x01\n\x10\x44\x65leteFolderTree\x12\x31.google.cloud.dataform.v1.DeleteFolderTreeRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteFolderTreeMetadata\xda\x41\nname,force\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/folders/*}:deleteTree:\x01*\x12\xd6\x01\n\x13QueryFolderContents\x12\x34.google.cloud.dataform.v1.QueryFolderContentsRequest\x1a\x35.google.cloud.dataform.v1.QueryFolderContentsResponse\"R\xda\x41\x06\x66older\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{folder=projects/*/locations/*/folders/*}:queryFolderContents\x12\xd8\x01\n\x15QueryUserRootContents\x12\x36.google.cloud.dataform.v1.QueryUserRootContentsRequest\x1a\x37.google.cloud.dataform.v1.QueryUserRootContentsResponse\"N\xda\x41\x08location\x82\xd3\xe4\x93\x02=\x12;/v1/{location=projects/*/locations/*}:queryUserRootContents\x12\xe9\x01\n\nMoveFolder\x12+.google.cloud.dataform.v1.MoveFolderRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\xca\x41+\n\x15google.protobuf.Empty\x12\x12MoveFolderMetadata\xda\x41\"name,destination_containing_folder\x82\xd3\xe4\x93\x02\x35\"0/v1/{name=projects/*/locations/*/folders/*}:move:\x01*\x12\xbc\x01\n\x10ListRepositories\x12\x31.google.cloud.dataform.v1.ListRepositoriesRequest\x1a\x32.google.cloud.dataform.v1.ListRepositoriesResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*/locations/*}/repositories\x12\xa6\x01\n\rGetRepository\x12..google.cloud.dataform.v1.GetRepositoryRequest\x1a$.google.cloud.dataform.v1.Repository\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/repositories/*}\x12\xd3\x01\n\x10\x43reateRepository\x12\x31.google.cloud.dataform.v1.CreateRepositoryRequest\x1a$.google.cloud.dataform.v1.Repository\"f\xda\x41\x1fparent,repository,repository_id\x82\xd3\xe4\x93\x02>\"0/v1/{parent=projects/*/locations/*}/repositories:\nrepository\x12\xd5\x01\n\x10UpdateRepository\x12\x31.google.cloud.dataform.v1.UpdateRepositoryRequest\x1a$.google.cloud.dataform.v1.Repository\"h\xda\x41\x16repository,update_mask\x82\xd3\xe4\x93\x02I2;/v1/{repository.name=projects/*/locations/*/repositories/*}:\nrepository\x12\x9e\x01\n\x10\x44\x65leteRepository\x12\x31.google.cloud.dataform.v1.DeleteRepositoryRequest\x1a\x16.google.protobuf.Empty\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32*0/v1/{name=projects/*/locations/*/repositories/*}\x12\xfa\x01\n\x0eMoveRepository\x12/.google.cloud.dataform.v1.MoveRepositoryRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41/\n\x15google.protobuf.Empty\x12\x16MoveRepositoryMetadata\xda\x41\"name,destination_containing_folder\x82\xd3\xe4\x93\x02:\"5/v1/{name=projects/*/locations/*/repositories/*}:move:\x01*\x12\xd2\x01\n\x17\x43ommitRepositoryChanges\x12\x38.google.cloud.dataform.v1.CommitRepositoryChangesRequest\x1a\x39.google.cloud.dataform.v1.CommitRepositoryChangesResponse\"B\x82\xd3\xe4\x93\x02<\"7/v1/{name=projects/*/locations/*/repositories/*}:commit:\x01*\x12\xc2\x01\n\x12ReadRepositoryFile\x12\x33.google.cloud.dataform.v1.ReadRepositoryFileRequest\x1a\x34.google.cloud.dataform.v1.ReadRepositoryFileResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/v1/{name=projects/*/locations/*/repositories/*}:readFile\x12\xfa\x01\n QueryRepositoryDirectoryContents\x12\x41.google.cloud.dataform.v1.QueryRepositoryDirectoryContentsRequest\x1a\x42.google.cloud.dataform.v1.QueryRepositoryDirectoryContentsResponse\"O\x82\xd3\xe4\x93\x02I\x12G/v1/{name=projects/*/locations/*/repositories/*}:queryDirectoryContents\x12\xd2\x01\n\x16\x46\x65tchRepositoryHistory\x12\x37.google.cloud.dataform.v1.FetchRepositoryHistoryRequest\x1a\x38.google.cloud.dataform.v1.FetchRepositoryHistoryResponse\"E\x82\xd3\xe4\x93\x02?\x12=/v1/{name=projects/*/locations/*/repositories/*}:fetchHistory\x12\x82\x02\n\"ComputeRepositoryAccessTokenStatus\x12\x43.google.cloud.dataform.v1.ComputeRepositoryAccessTokenStatusRequest\x1a\x44.google.cloud.dataform.v1.ComputeRepositoryAccessTokenStatusResponse\"Q\x82\xd3\xe4\x93\x02K\x12I/v1/{name=projects/*/locations/*/repositories/*}:computeAccessTokenStatus\x12\xd0\x01\n\x13\x46\x65tchRemoteBranches\x12\x34.google.cloud.dataform.v1.FetchRemoteBranchesRequest\x1a\x35.google.cloud.dataform.v1.FetchRemoteBranchesResponse\"L\x82\xd3\xe4\x93\x02\x46\x12\x44/v1/{name=projects/*/locations/*/repositories/*}:fetchRemoteBranches\x12\xc3\x01\n\x0eListWorkspaces\x12/.google.cloud.dataform.v1.ListWorkspacesRequest\x1a\x30.google.cloud.dataform.v1.ListWorkspacesResponse\"N\xda\x41\x06parent\x82\xd3\xe4\x93\x02?\x12=/v1/{parent=projects/*/locations/*/repositories/*}/workspaces\x12\xb0\x01\n\x0cGetWorkspace\x12-.google.cloud.dataform.v1.GetWorkspaceRequest\x1a#.google.cloud.dataform.v1.Workspace\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?\x12=/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}\x12\xda\x01\n\x0f\x43reateWorkspace\x12\x30.google.cloud.dataform.v1.CreateWorkspaceRequest\x1a#.google.cloud.dataform.v1.Workspace\"p\xda\x41\x1dparent,workspace,workspace_id\x82\xd3\xe4\x93\x02J\"=/v1/{parent=projects/*/locations/*/repositories/*}/workspaces:\tworkspace\x12\xa9\x01\n\x0f\x44\x65leteWorkspace\x12\x30.google.cloud.dataform.v1.DeleteWorkspaceRequest\x1a\x16.google.protobuf.Empty\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?*=/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}\x12\xe1\x01\n\x12InstallNpmPackages\x12\x33.google.cloud.dataform.v1.InstallNpmPackagesRequest\x1a\x34.google.cloud.dataform.v1.InstallNpmPackagesResponse\"`\x82\xd3\xe4\x93\x02Z\"U/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:installNpmPackages:\x01*\x12\xc2\x01\n\x0ePullGitCommits\x12/.google.cloud.dataform.v1.PullGitCommitsRequest\x1a\x30.google.cloud.dataform.v1.PullGitCommitsResponse\"M\x82\xd3\xe4\x93\x02G\"B/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:pull:\x01*\x12\xc2\x01\n\x0ePushGitCommits\x12/.google.cloud.dataform.v1.PushGitCommitsRequest\x1a\x30.google.cloud.dataform.v1.PushGitCommitsResponse\"M\x82\xd3\xe4\x93\x02G\"B/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:push:\x01*\x12\xe1\x01\n\x14\x46\x65tchFileGitStatuses\x12\x35.google.cloud.dataform.v1.FetchFileGitStatusesRequest\x1a\x36.google.cloud.dataform.v1.FetchFileGitStatusesResponse\"Z\x82\xd3\xe4\x93\x02T\x12R/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:fetchFileGitStatuses\x12\xdd\x01\n\x13\x46\x65tchGitAheadBehind\x12\x34.google.cloud.dataform.v1.FetchGitAheadBehindRequest\x1a\x35.google.cloud.dataform.v1.FetchGitAheadBehindResponse\"Y\x82\xd3\xe4\x93\x02S\x12Q/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:fetchGitAheadBehind\x12\xdc\x01\n\x16\x43ommitWorkspaceChanges\x12\x37.google.cloud.dataform.v1.CommitWorkspaceChangesRequest\x1a\x38.google.cloud.dataform.v1.CommitWorkspaceChangesResponse\"O\x82\xd3\xe4\x93\x02I\"D/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:commit:\x01*\x12\xd8\x01\n\x15ResetWorkspaceChanges\x12\x36.google.cloud.dataform.v1.ResetWorkspaceChangesRequest\x1a\x37.google.cloud.dataform.v1.ResetWorkspaceChangesResponse\"N\x82\xd3\xe4\x93\x02H\"C/v1/{name=projects/*/locations/*/repositories/*/workspaces/*}:reset:\x01*\x12\xca\x01\n\rFetchFileDiff\x12..google.cloud.dataform.v1.FetchFileDiffRequest\x1a/.google.cloud.dataform.v1.FetchFileDiffResponse\"X\x82\xd3\xe4\x93\x02R\x12P/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:fetchFileDiff\x12\xee\x01\n\x16QueryDirectoryContents\x12\x37.google.cloud.dataform.v1.QueryDirectoryContentsRequest\x1a\x38.google.cloud.dataform.v1.QueryDirectoryContentsResponse\"a\x82\xd3\xe4\x93\x02[\x12Y/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:queryDirectoryContents\x12\xc2\x01\n\x0bSearchFiles\x12,.google.cloud.dataform.v1.SearchFilesRequest\x1a-.google.cloud.dataform.v1.SearchFilesResponse\"V\x82\xd3\xe4\x93\x02P\x12N/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:searchFiles\x12\xcd\x01\n\rMakeDirectory\x12..google.cloud.dataform.v1.MakeDirectoryRequest\x1a/.google.cloud.dataform.v1.MakeDirectoryResponse\"[\x82\xd3\xe4\x93\x02U\"P/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:makeDirectory:\x01*\x12\xd5\x01\n\x0fRemoveDirectory\x12\x30.google.cloud.dataform.v1.RemoveDirectoryRequest\x1a\x31.google.cloud.dataform.v1.RemoveDirectoryResponse\"]\x82\xd3\xe4\x93\x02W\"R/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:removeDirectory:\x01*\x12\xcd\x01\n\rMoveDirectory\x12..google.cloud.dataform.v1.MoveDirectoryRequest\x1a/.google.cloud.dataform.v1.MoveDirectoryResponse\"[\x82\xd3\xe4\x93\x02U\"P/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:moveDirectory:\x01*\x12\xb6\x01\n\x08ReadFile\x12).google.cloud.dataform.v1.ReadFileRequest\x1a*.google.cloud.dataform.v1.ReadFileResponse\"S\x82\xd3\xe4\x93\x02M\x12K/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:readFile\x12\xc1\x01\n\nRemoveFile\x12+.google.cloud.dataform.v1.RemoveFileRequest\x1a,.google.cloud.dataform.v1.RemoveFileResponse\"X\x82\xd3\xe4\x93\x02R\"M/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:removeFile:\x01*\x12\xb9\x01\n\x08MoveFile\x12).google.cloud.dataform.v1.MoveFileRequest\x1a*.google.cloud.dataform.v1.MoveFileResponse\"V\x82\xd3\xe4\x93\x02P\"K/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:moveFile:\x01*\x12\xbd\x01\n\tWriteFile\x12*.google.cloud.dataform.v1.WriteFileRequest\x1a+.google.cloud.dataform.v1.WriteFileResponse\"W\x82\xd3\xe4\x93\x02Q\"L/v1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:writeFile:\x01*\x12\xd3\x01\n\x12ListReleaseConfigs\x12\x33.google.cloud.dataform.v1.ListReleaseConfigsRequest\x1a\x34.google.cloud.dataform.v1.ListReleaseConfigsResponse\"R\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{parent=projects/*/locations/*/repositories/*}/releaseConfigs\x12\xc0\x01\n\x10GetReleaseConfig\x12\x31.google.cloud.dataform.v1.GetReleaseConfigRequest\x1a\'.google.cloud.dataform.v1.ReleaseConfig\"P\xda\x41\x04name\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{name=projects/*/locations/*/repositories/*/releaseConfigs/*}\x12\xfa\x01\n\x13\x43reateReleaseConfig\x12\x34.google.cloud.dataform.v1.CreateReleaseConfigRequest\x1a\'.google.cloud.dataform.v1.ReleaseConfig\"\x83\x01\xda\x41\'parent,release_config,release_config_id\x82\xd3\xe4\x93\x02S\"A/v1/{parent=projects/*/locations/*/repositories/*}/releaseConfigs:\x0erelease_config\x12\xfc\x01\n\x13UpdateReleaseConfig\x12\x34.google.cloud.dataform.v1.UpdateReleaseConfigRequest\x1a\'.google.cloud.dataform.v1.ReleaseConfig\"\x85\x01\xda\x41\x1arelease_config,update_mask\x82\xd3\xe4\x93\x02\x62\x32P/v1/{release_config.name=projects/*/locations/*/repositories/*/releaseConfigs/*}:\x0erelease_config\x12\xb5\x01\n\x13\x44\x65leteReleaseConfig\x12\x34.google.cloud.dataform.v1.DeleteReleaseConfigRequest\x1a\x16.google.protobuf.Empty\"P\xda\x41\x04name\x82\xd3\xe4\x93\x02\x43*A/v1/{name=projects/*/locations/*/repositories/*/releaseConfigs/*}\x12\xe3\x01\n\x16ListCompilationResults\x12\x37.google.cloud.dataform.v1.ListCompilationResultsRequest\x1a\x38.google.cloud.dataform.v1.ListCompilationResultsResponse\"V\xda\x41\x06parent\x82\xd3\xe4\x93\x02G\x12\x45/v1/{parent=projects/*/locations/*/repositories/*}/compilationResults\x12\xd0\x01\n\x14GetCompilationResult\x12\x35.google.cloud.dataform.v1.GetCompilationResultRequest\x1a+.google.cloud.dataform.v1.CompilationResult\"T\xda\x41\x04name\x82\xd3\xe4\x93\x02G\x12\x45/v1/{name=projects/*/locations/*/repositories/*/compilationResults/*}\x12\xff\x01\n\x17\x43reateCompilationResult\x12\x38.google.cloud.dataform.v1.CreateCompilationResultRequest\x1a+.google.cloud.dataform.v1.CompilationResult\"}\xda\x41\x19parent,compilation_result\x82\xd3\xe4\x93\x02[\"E/v1/{parent=projects/*/locations/*/repositories/*}/compilationResults:\x12\x63ompilation_result\x12\xf5\x01\n\x1dQueryCompilationResultActions\x12>.google.cloud.dataform.v1.QueryCompilationResultActionsRequest\x1a?.google.cloud.dataform.v1.QueryCompilationResultActionsResponse\"S\x82\xd3\xe4\x93\x02M\x12K/v1/{name=projects/*/locations/*/repositories/*/compilationResults/*}:query\x12\xd7\x01\n\x13ListWorkflowConfigs\x12\x34.google.cloud.dataform.v1.ListWorkflowConfigsRequest\x1a\x35.google.cloud.dataform.v1.ListWorkflowConfigsResponse\"S\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{parent=projects/*/locations/*/repositories/*}/workflowConfigs\x12\xc4\x01\n\x11GetWorkflowConfig\x12\x32.google.cloud.dataform.v1.GetWorkflowConfigRequest\x1a(.google.cloud.dataform.v1.WorkflowConfig\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{name=projects/*/locations/*/repositories/*/workflowConfigs/*}\x12\x81\x02\n\x14\x43reateWorkflowConfig\x12\x35.google.cloud.dataform.v1.CreateWorkflowConfigRequest\x1a(.google.cloud.dataform.v1.WorkflowConfig\"\x87\x01\xda\x41)parent,workflow_config,workflow_config_id\x82\xd3\xe4\x93\x02U\"B/v1/{parent=projects/*/locations/*/repositories/*}/workflowConfigs:\x0fworkflow_config\x12\x83\x02\n\x14UpdateWorkflowConfig\x12\x35.google.cloud.dataform.v1.UpdateWorkflowConfigRequest\x1a(.google.cloud.dataform.v1.WorkflowConfig\"\x89\x01\xda\x41\x1bworkflow_config,update_mask\x82\xd3\xe4\x93\x02\x65\x32R/v1/{workflow_config.name=projects/*/locations/*/repositories/*/workflowConfigs/*}:\x0fworkflow_config\x12\xb8\x01\n\x14\x44\x65leteWorkflowConfig\x12\x35.google.cloud.dataform.v1.DeleteWorkflowConfigRequest\x1a\x16.google.protobuf.Empty\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44*B/v1/{name=projects/*/locations/*/repositories/*/workflowConfigs/*}\x12\xe7\x01\n\x17ListWorkflowInvocations\x12\x38.google.cloud.dataform.v1.ListWorkflowInvocationsRequest\x1a\x39.google.cloud.dataform.v1.ListWorkflowInvocationsResponse\"W\xda\x41\x06parent\x82\xd3\xe4\x93\x02H\x12\x46/v1/{parent=projects/*/locations/*/repositories/*}/workflowInvocations\x12\xd4\x01\n\x15GetWorkflowInvocation\x12\x36.google.cloud.dataform.v1.GetWorkflowInvocationRequest\x1a,.google.cloud.dataform.v1.WorkflowInvocation\"U\xda\x41\x04name\x82\xd3\xe4\x93\x02H\x12\x46/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}\x12\x86\x02\n\x18\x43reateWorkflowInvocation\x12\x39.google.cloud.dataform.v1.CreateWorkflowInvocationRequest\x1a,.google.cloud.dataform.v1.WorkflowInvocation\"\x80\x01\xda\x41\x1aparent,workflow_invocation\x82\xd3\xe4\x93\x02]\"F/v1/{parent=projects/*/locations/*/repositories/*}/workflowInvocations:\x13workflow_invocation\x12\xc4\x01\n\x18\x44\x65leteWorkflowInvocation\x12\x39.google.cloud.dataform.v1.DeleteWorkflowInvocationRequest\x1a\x16.google.protobuf.Empty\"U\xda\x41\x04name\x82\xd3\xe4\x93\x02H*F/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}\x12\xeb\x01\n\x18\x43\x61ncelWorkflowInvocation\x12\x39.google.cloud.dataform.v1.CancelWorkflowInvocationRequest\x1a:.google.cloud.dataform.v1.CancelWorkflowInvocationResponse\"X\x82\xd3\xe4\x93\x02R\"M/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}:cancel:\x01*\x12\xf9\x01\n\x1eQueryWorkflowInvocationActions\x12?.google.cloud.dataform.v1.QueryWorkflowInvocationActionsRequest\x1a@.google.cloud.dataform.v1.QueryWorkflowInvocationActionsResponse\"T\x82\xd3\xe4\x93\x02N\x12L/v1/{name=projects/*/locations/*/repositories/*/workflowInvocations/*}:query\x12\x92\x01\n\tGetConfig\x12*.google.cloud.dataform.v1.GetConfigRequest\x1a .google.cloud.dataform.v1.Config\"7\xda\x41\x04name\x82\xd3\xe4\x93\x02*\x12(/v1/{name=projects/*/locations/*/config}\x12\xb5\x01\n\x0cUpdateConfig\x12-.google.cloud.dataform.v1.UpdateConfigRequest\x1a .google.cloud.dataform.v1.Config\"T\xda\x41\x12\x63onfig,update_mask\x82\xd3\xe4\x93\x02\x39\x32//v1/{config.name=projects/*/locations/*/config}:\x06\x63onfig\x12\xf7\x02\n\x0cGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"\xab\x02\xda\x41\x08resource\x82\xd3\xe4\x93\x02\x99\x02\x12\x41/v1/{resource=projects/*/locations/*/repositories/*}:getIamPolicyZP\x12N/v1/{resource=projects/*/locations/*/repositories/*/workspaces/*}:getIamPolicyZ>\x12</v1/{resource=projects/*/locations/*/folders/*}:getIamPolicyZB\x12@/v1/{resource=projects/*/locations/*/teamFolders/*}:getIamPolicy\x12\xf8\x02\n\x0cSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"\xac\x02\x82\xd3\xe4\x93\x02\xa5\x02\"A/v1/{resource=projects/*/locations/*/repositories/*}:setIamPolicy:\x01*ZS\"N/v1/{resource=projects/*/locations/*/repositories/*/workspaces/*}:setIamPolicy:\x01*ZA\"</v1/{resource=projects/*/locations/*/folders/*}:setIamPolicy:\x01*ZE\"@/v1/{resource=projects/*/locations/*/teamFolders/*}:setIamPolicy:\x01*\x12\xb0\x03\n\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1a).google.iam.v1.TestIamPermissionsResponse\"\xc4\x02\x82\xd3\xe4\x93\x02\xbd\x02\"G/v1/{resource=projects/*/locations/*/repositories/*}:testIamPermissions:\x01*ZY\"T/v1/{resource=projects/*/locations/*/repositories/*/workspaces/*}:testIamPermissions:\x01*ZG\"B/v1/{resource=projects/*/locations/*/folders/*}:testIamPermissions:\x01*ZK\"F/v1/{resource=projects/*/locations/*/teamFolders/*}:testIamPermissions:\x01*\x1at\xca\x41\x17\x64\x61taform.googleapis.com\xd2\x41Whttps://www.googleapis.com/auth/bigquery,https://www.googleapis.com/auth/cloud-platformB\x81\x08\n\x1c\x63om.google.cloud.dataform.v1B\rDataformProtoP\x01Z8cloud.google.com/go/dataform/apiv1/dataformpb;dataformpb\xaa\x02\x18Google.Cloud.Dataform.V1\xca\x02\x18Google\\Cloud\\Dataform\\V1\xea\x02\x1bGoogle::Cloud::Dataform::V1\xea\x41\x64\n*secretmanager.googleapis.com/SecretVersion\x12\x36projects/{project}/secrets/{secret}/versions/{version}\xea\x41x\n!cloudkms.googleapis.com/CryptoKey\x12Sprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}\xea\x41\xa6\x01\n(cloudkms.googleapis.com/CryptoKeyVersion\x12zprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}\xea\x41\x91\x01\n1aiplatform.googleapis.com/NotebookRuntimeTemplate\x12\\projects/{project}/locations/{location}/notebookRuntimeTemplates/{notebook_runtime_template}\xea\x41~\n!dataplex.googleapis.com/EntryLink\x12Yprojects/{project}/locations/{location}/entryGroups/{entry_group}/entryLinks/{entry_link}\xea\x41\x9e\x01\n1developerconnect.googleapis.com/GitRepositoryLink\x12iprojects/{project}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_repository_link}b\x06proto3"
|
|
22
22
|
|
|
23
23
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
24
24
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -105,7 +105,13 @@ module Google
|
|
|
105
105
|
# Required. The Git remote's URL.
|
|
106
106
|
# @!attribute [rw] default_branch
|
|
107
107
|
# @return [::String]
|
|
108
|
-
#
|
|
108
|
+
# Optional. The Git remote's default branch name.
|
|
109
|
+
# If not set, `main` will be used.
|
|
110
|
+
# @!attribute [r] effective_default_branch
|
|
111
|
+
# @return [::String]
|
|
112
|
+
# Output only. The Git remote's effective default branch name.
|
|
113
|
+
# This is the default branch name of the Git remote if it is set,
|
|
114
|
+
# otherwise it is `main`.
|
|
109
115
|
# @!attribute [rw] authentication_token_secret_version
|
|
110
116
|
# @return [::String]
|
|
111
117
|
# Optional. The name of the Secret Manager secret version to use as an
|
|
@@ -114,6 +120,11 @@ module Google
|
|
|
114
120
|
# @!attribute [rw] ssh_authentication_config
|
|
115
121
|
# @return [::Google::Cloud::Dataform::V1::Repository::GitRemoteSettings::SshAuthenticationConfig]
|
|
116
122
|
# Optional. Authentication fields for remote uris using SSH protocol.
|
|
123
|
+
# @!attribute [rw] git_repository_link
|
|
124
|
+
# @return [::String]
|
|
125
|
+
# Optional. Resource name for the `GitRepositoryLink` used for machine
|
|
126
|
+
# credentials. Must be in the format
|
|
127
|
+
# `projects/*/locations/*/connections/*/gitRepositoryLinks/*`
|
|
117
128
|
# @!attribute [r] token_status
|
|
118
129
|
# @deprecated This field is deprecated and may be removed in the next major version update.
|
|
119
130
|
# @return [::Google::Cloud::Dataform::V1::Repository::GitRemoteSettings::TokenStatus]
|
|
@@ -927,12 +938,14 @@ module Google
|
|
|
927
938
|
# Represents a single entry in a directory.
|
|
928
939
|
# @!attribute [rw] file
|
|
929
940
|
# @return [::String]
|
|
930
|
-
# A file in the directory.
|
|
941
|
+
# A file in the directory. The path is returned including the full
|
|
942
|
+
# folder structure from the root.
|
|
931
943
|
#
|
|
932
944
|
# Note: The following fields are mutually exclusive: `file`, `directory`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
933
945
|
# @!attribute [rw] directory
|
|
934
946
|
# @return [::String]
|
|
935
|
-
# A child directory in the directory.
|
|
947
|
+
# A child directory in the directory. The path is returned including
|
|
948
|
+
# the full folder structure from the root.
|
|
936
949
|
#
|
|
937
950
|
# Note: The following fields are mutually exclusive: `directory`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
938
951
|
# @!attribute [rw] metadata
|
|
@@ -2485,9 +2498,10 @@ module Google
|
|
|
2485
2498
|
# Output only. The code contents of a Notebook to be run.
|
|
2486
2499
|
# @!attribute [r] job_id
|
|
2487
2500
|
# @return [::String]
|
|
2488
|
-
# Output only. The ID of the
|
|
2489
|
-
# contents and also the ID used for the outputs
|
|
2490
|
-
# Storage buckets. Only set once the job has
|
|
2501
|
+
# Output only. The ID of the Gemini Enterprise Agent Platform job that
|
|
2502
|
+
# executed the notebook in contents and also the ID used for the outputs
|
|
2503
|
+
# created in Google Cloud Storage buckets. Only set once the job has
|
|
2504
|
+
# started to run.
|
|
2491
2505
|
class NotebookAction
|
|
2492
2506
|
include ::Google::Protobuf::MessageExts
|
|
2493
2507
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -2707,8 +2721,8 @@ module Google
|
|
|
2707
2721
|
# Optional. The containing Folder resource name. This should take
|
|
2708
2722
|
# the format: projects/\\{project}/locations/\\{location}/folders/\\{folder},
|
|
2709
2723
|
# projects/\\{project}/locations/\\{location}/teamFolders/\\{teamFolder}, or just
|
|
2710
|
-
#
|
|
2711
|
-
#
|
|
2724
|
+
# "" if this is a root Folder. This field can only be updated through
|
|
2725
|
+
# MoveFolder.
|
|
2712
2726
|
# @!attribute [r] team_folder_name
|
|
2713
2727
|
# @return [::String]
|
|
2714
2728
|
# Output only. The resource name of the TeamFolder that this Folder is
|
|
@@ -2879,7 +2893,7 @@ module Google
|
|
|
2879
2893
|
# `QueryFolderContents` request message.
|
|
2880
2894
|
# @!attribute [rw] folder
|
|
2881
2895
|
# @return [::String]
|
|
2882
|
-
# Required.
|
|
2896
|
+
# Required. Resource name of the Folder to list contents for.
|
|
2883
2897
|
# Format: projects/*/locations/*/folders/*
|
|
2884
2898
|
# @!attribute [rw] page_size
|
|
2885
2899
|
# @return [::Integer]
|
|
@@ -2901,15 +2915,17 @@ module Google
|
|
|
2901
2915
|
# order. Supported keywords: display_name (default), create_time,
|
|
2902
2916
|
# last_modified_time.
|
|
2903
2917
|
# Examples:
|
|
2904
|
-
#
|
|
2905
|
-
#
|
|
2918
|
+
#
|
|
2919
|
+
# * `orderBy="display_name"`
|
|
2920
|
+
# * `orderBy="display_name desc"`
|
|
2906
2921
|
# @!attribute [rw] filter
|
|
2907
2922
|
# @return [::String]
|
|
2908
2923
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
2909
2924
|
# only supported on the `display_name` field.
|
|
2910
2925
|
#
|
|
2911
2926
|
# Example:
|
|
2912
|
-
#
|
|
2927
|
+
#
|
|
2928
|
+
# * `filter="display_name="MyFolder""`
|
|
2913
2929
|
class QueryFolderContentsRequest
|
|
2914
2930
|
include ::Google::Protobuf::MessageExts
|
|
2915
2931
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -2947,7 +2963,7 @@ module Google
|
|
|
2947
2963
|
# `QueryUserRootContents` request message.
|
|
2948
2964
|
# @!attribute [rw] location
|
|
2949
2965
|
# @return [::String]
|
|
2950
|
-
# Required. Location of the user root folder
|
|
2966
|
+
# Required. Location of the user root folder to list contents for.
|
|
2951
2967
|
# Format: projects/*/locations/*
|
|
2952
2968
|
# @!attribute [rw] page_size
|
|
2953
2969
|
# @return [::Integer]
|
|
@@ -2968,15 +2984,17 @@ module Google
|
|
|
2968
2984
|
# Will order Folders before Repositories, and then by `order_by` in ascending
|
|
2969
2985
|
# order. Supported keywords: display_name (default), created_at,
|
|
2970
2986
|
# last_modified_at. Examples:
|
|
2971
|
-
#
|
|
2972
|
-
#
|
|
2987
|
+
#
|
|
2988
|
+
# * `orderBy="display_name"`
|
|
2989
|
+
# * `orderBy="display_name desc"`
|
|
2973
2990
|
# @!attribute [rw] filter
|
|
2974
2991
|
# @return [::String]
|
|
2975
2992
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
2976
2993
|
# only supported on the `display_name` field.
|
|
2977
2994
|
#
|
|
2978
2995
|
# Example:
|
|
2979
|
-
#
|
|
2996
|
+
#
|
|
2997
|
+
# * `filter="display_name="MyFolder""`
|
|
2980
2998
|
class QueryUserRootContentsRequest
|
|
2981
2999
|
include ::Google::Protobuf::MessageExts
|
|
2982
3000
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -3086,7 +3104,7 @@ module Google
|
|
|
3086
3104
|
# `QueryTeamFolderContents` request message.
|
|
3087
3105
|
# @!attribute [rw] team_folder
|
|
3088
3106
|
# @return [::String]
|
|
3089
|
-
# Required.
|
|
3107
|
+
# Required. Resource name of the TeamFolder to list contents for.
|
|
3090
3108
|
# Format: `projects/*/locations/*/teamFolders/*`.
|
|
3091
3109
|
# @!attribute [rw] page_size
|
|
3092
3110
|
# @return [::Integer]
|
|
@@ -3108,15 +3126,17 @@ module Google
|
|
|
3108
3126
|
# order. Supported keywords: `display_name` (default), `create_time`,
|
|
3109
3127
|
# last_modified_time.
|
|
3110
3128
|
# Examples:
|
|
3111
|
-
#
|
|
3112
|
-
#
|
|
3129
|
+
#
|
|
3130
|
+
# * `orderBy="display_name"`
|
|
3131
|
+
# * `orderBy="display_name desc"`
|
|
3113
3132
|
# @!attribute [rw] filter
|
|
3114
3133
|
# @return [::String]
|
|
3115
3134
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
3116
3135
|
# only supported on the `display_name` field.
|
|
3117
3136
|
#
|
|
3118
3137
|
# Example:
|
|
3119
|
-
#
|
|
3138
|
+
#
|
|
3139
|
+
# * `filter="display_name="MyFolder""`
|
|
3120
3140
|
class QueryTeamFolderContentsRequest
|
|
3121
3141
|
include ::Google::Protobuf::MessageExts
|
|
3122
3142
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -3158,9 +3178,9 @@ module Google
|
|
|
3158
3178
|
# Format: `projects/*/locations/*`.
|
|
3159
3179
|
# @!attribute [rw] page_size
|
|
3160
3180
|
# @return [::Integer]
|
|
3161
|
-
# Optional. Maximum number of TeamFolders to return. The server may return
|
|
3162
|
-
# fewer items than requested. If unspecified, the server will pick
|
|
3163
|
-
#
|
|
3181
|
+
# Optional. Maximum number of `TeamFolders` to return. The server may return
|
|
3182
|
+
# fewer items than requested. If unspecified, the server will pick a default
|
|
3183
|
+
# of `page_size` = 50.
|
|
3164
3184
|
# @!attribute [rw] page_token
|
|
3165
3185
|
# @return [::String]
|
|
3166
3186
|
# Optional. Page token received from a previous `SearchTeamFolders` call.
|
|
@@ -3174,15 +3194,17 @@ module Google
|
|
|
3174
3194
|
# Optional. Field to additionally sort results by.
|
|
3175
3195
|
# Supported keywords: `display_name` (default), `create_time`,
|
|
3176
3196
|
# `last_modified_time`. Examples:
|
|
3177
|
-
#
|
|
3178
|
-
#
|
|
3197
|
+
#
|
|
3198
|
+
# * `orderBy="display_name"`
|
|
3199
|
+
# * `orderBy="display_name desc"`
|
|
3179
3200
|
# @!attribute [rw] filter
|
|
3180
3201
|
# @return [::String]
|
|
3181
3202
|
# Optional. Optional filtering for the returned list. Filtering is currently
|
|
3182
3203
|
# only supported on the `display_name` field.
|
|
3183
3204
|
#
|
|
3184
3205
|
# Example:
|
|
3185
|
-
#
|
|
3206
|
+
#
|
|
3207
|
+
# * `filter="display_name="MyFolder""`
|
|
3186
3208
|
class SearchTeamFoldersRequest
|
|
3187
3209
|
include ::Google::Protobuf::MessageExts
|
|
3188
3210
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -3292,7 +3314,7 @@ module Google
|
|
|
3292
3314
|
|
|
3293
3315
|
# Represents the level of detail to return for directory contents.
|
|
3294
3316
|
module DirectoryContentsView
|
|
3295
|
-
# The default
|
|
3317
|
+
# The default unset value. Defaults to DIRECTORY_CONTENTS_VIEW_BASIC.
|
|
3296
3318
|
DIRECTORY_CONTENTS_VIEW_UNSPECIFIED = 0
|
|
3297
3319
|
|
|
3298
3320
|
# Includes only the file or directory name. This is the default behavior.
|