diff --git a/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/DataformClient.java b/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/DataformClient.java index b81a343..18adcd6 100644 --- a/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/DataformClient.java +++ b/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/DataformClient.java @@ -3282,7 +3282,6 @@ public final void cancelWorkflowInvocation(CancelWorkflowInvocationRequest reque * .toString()) * .setPageSize(883849137) * .setPageToken("pageToken873572522") - * .setFilter("filter-1274492040") * .build(); * for (WorkflowInvocationAction element : * dataformClient.queryWorkflowInvocationActions(request).iterateAll()) { @@ -3317,7 +3316,6 @@ public final QueryWorkflowInvocationActionsPagedResponse queryWorkflowInvocation * .toString()) * .setPageSize(883849137) * .setPageToken("pageToken873572522") - * .setFilter("filter-1274492040") * .build(); * ApiFuture future = * dataformClient.queryWorkflowInvocationActionsPagedCallable().futureCall(request); @@ -3352,7 +3350,6 @@ public final QueryWorkflowInvocationActionsPagedResponse queryWorkflowInvocation * .toString()) * .setPageSize(883849137) * .setPageToken("pageToken873572522") - * .setFilter("filter-1274492040") * .build(); * while (true) { * QueryWorkflowInvocationActionsResponse response = @@ -3529,7 +3526,10 @@ public final UnaryCallable getLocationCallable() { * try (DataformClient dataformClient = DataformClient.create()) { * SetIamPolicyRequest request = * SetIamPolicyRequest.newBuilder() - * .setResource(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + * .setResource( + * CompilationResultName.of( + * "[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]") + * .toString()) * .setPolicy(Policy.newBuilder().build()) * .setUpdateMask(FieldMask.newBuilder().build()) * .build(); @@ -3558,7 +3558,10 @@ public final Policy setIamPolicy(SetIamPolicyRequest request) { * try (DataformClient dataformClient = DataformClient.create()) { * SetIamPolicyRequest request = * SetIamPolicyRequest.newBuilder() - * .setResource(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + * .setResource( + * CompilationResultName.of( + * "[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]") + * .toString()) * .setPolicy(Policy.newBuilder().build()) * .setUpdateMask(FieldMask.newBuilder().build()) * .build(); diff --git a/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/stub/HttpJsonDataformStub.java b/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/stub/HttpJsonDataformStub.java index b0dc6e3..606cd23 100644 --- a/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/stub/HttpJsonDataformStub.java +++ b/google-cloud-dataform/src/main/java/com/google/cloud/dataform/v1alpha2/stub/HttpJsonDataformStub.java @@ -1397,7 +1397,6 @@ public class HttpJsonDataformStub extends DataformStub { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); - serializer.putQueryParam(fields, "filter", request.getFilter()); serializer.putQueryParam(fields, "pageSize", request.getPageSize()); serializer.putQueryParam(fields, "pageToken", request.getPageToken()); return fields; @@ -1496,7 +1495,8 @@ public class HttpJsonDataformStub extends DataformStub { return fields; }) .setAdditionalPaths( - "/v1alpha2/{resource=projects/*/locations/*/repositories/*/workspaces/*}:setIamPolicy") + "/v1alpha2/{resource=projects/*/locations/*/repositories/*/workspaces/*}:setIamPolicy", + "/v1alpha2/{resource=projects/*/locations/*/repositories/*/compilationResults/*}:setIamPolicy") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); diff --git a/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientHttpJsonTest.java b/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientHttpJsonTest.java index 3d546d1..9085e5c 100644 --- a/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientHttpJsonTest.java +++ b/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientHttpJsonTest.java @@ -2683,7 +2683,6 @@ public void queryWorkflowInvocationActionsTest() throws Exception { .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") - .setFilter("filter-1274492040") .build(); QueryWorkflowInvocationActionsPagedResponse pagedListResponse = @@ -2726,7 +2725,6 @@ public void queryWorkflowInvocationActionsExceptionTest() throws Exception { .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") - .setFilter("filter-1274492040") .build(); client.queryWorkflowInvocationActions(request); Assert.fail("No exception raised"); @@ -2864,7 +2862,10 @@ public void setIamPolicyTest() throws Exception { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() - .setResource(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .setResource( + CompilationResultName.of( + "[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]") + .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); @@ -2897,7 +2898,10 @@ public void setIamPolicyExceptionTest() throws Exception { try { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() - .setResource(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .setResource( + CompilationResultName.of( + "[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]") + .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); diff --git a/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientTest.java b/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientTest.java index c27b72e..785f448 100644 --- a/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientTest.java +++ b/google-cloud-dataform/src/test/java/com/google/cloud/dataform/v1alpha2/DataformClientTest.java @@ -2433,7 +2433,6 @@ public void queryWorkflowInvocationActionsTest() throws Exception { .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") - .setFilter("filter-1274492040") .build(); QueryWorkflowInvocationActionsPagedResponse pagedListResponse = @@ -2453,7 +2452,6 @@ public void queryWorkflowInvocationActionsTest() throws Exception { Assert.assertEquals(request.getName(), actualRequest.getName()); Assert.assertEquals(request.getPageSize(), actualRequest.getPageSize()); Assert.assertEquals(request.getPageToken(), actualRequest.getPageToken()); - Assert.assertEquals(request.getFilter(), actualRequest.getFilter()); Assert.assertTrue( channelProvider.isHeaderSent( ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), @@ -2474,7 +2472,6 @@ public void queryWorkflowInvocationActionsExceptionTest() throws Exception { .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") - .setFilter("filter-1274492040") .build(); client.queryWorkflowInvocationActions(request); Assert.fail("No exception raised"); @@ -2597,7 +2594,10 @@ public void setIamPolicyTest() throws Exception { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() - .setResource(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .setResource( + CompilationResultName.of( + "[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]") + .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); @@ -2626,7 +2626,10 @@ public void setIamPolicyExceptionTest() throws Exception { try { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() - .setResource(RepositoryName.of("[PROJECT]", "[LOCATION]", "[REPOSITORY]").toString()) + .setResource( + CompilationResultName.of( + "[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]") + .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/DataformProto.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/DataformProto.java index 81248f0..0a20fe4 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/DataformProto.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/DataformProto.java @@ -374,512 +374,514 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\340A\002\372A#\n!locations.googleapis.com/Locatio" + "n\022\026\n\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030" + "\003 \001(\tB\003\340A\001\022\025\n\010order_by\030\004 \001(\tB\003\340A\001\022\023\n\006fil" - + "ter\030\005 \001(\tB\003\340A\001\"u\n\030ListRepositoriesRespon" - + "se\022@\n\014repositories\030\001 \003(\0132*.google.cloud." - + "dataform.v1alpha2.Repository\022\027\n\017next_pag" - + "e_token\030\002 \001(\t\"P\n\024GetRepositoryRequest\0228\n" - + "\004name\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googleapis" - + ".com/Repository\"\265\001\n\027CreateRepositoryRequ" - + "est\0229\n\006parent\030\001 \001(\tB)\340A\002\372A#\n!locations.g" - + "oogleapis.com/Location\022C\n\nrepository\030\002 \001" - + "(\0132*.google.cloud.dataform.v1alpha2.Repo" - + "sitoryB\003\340A\002\022\032\n\rrepository_id\030\003 \001(\tB\003\340A\002\"" - + "\224\001\n\027UpdateRepositoryRequest\0224\n\013update_ma" - + "sk\030\001 \001(\0132\032.google.protobuf.FieldMaskB\003\340A" - + "\001\022C\n\nrepository\030\002 \001(\0132*.google.cloud.dat" - + "aform.v1alpha2.RepositoryB\003\340A\002\"b\n\027Delete" - + "RepositoryRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372A$\n" - + "\"dataform.googleapis.com/Repository\022\r\n\005f" - + "orce\030\002 \001(\010\"V\n\032FetchRemoteBranchesRequest" - + "\0228\n\004name\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googlea" - + "pis.com/Repository\"/\n\033FetchRemoteBranche" - + "sResponse\022\020\n\010branches\030\001 \003(\t\"\241\001\n\tWorkspac" - + "e\022\021\n\004name\030\001 \001(\tB\003\340A\003:\200\001\352A}\n!dataform.goo" - + "gleapis.com/Workspace\022Xprojects/{project" - + "}/locations/{location}/repositories/{rep" - + "ository}/workspaces/{workspace}\"\260\001\n\025List" - + "WorkspacesRequest\022:\n\006parent\030\001 \001(\tB*\340A\002\372A" - + "$\n\"dataform.googleapis.com/Repository\022\026\n" - + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030\003 \001(" - + "\tB\003\340A\001\022\025\n\010order_by\030\004 \001(\tB\003\340A\001\022\023\n\006filter\030" - + "\005 \001(\tB\003\340A\001\"p\n\026ListWorkspacesResponse\022=\n\n" - + "workspaces\030\001 \003(\0132).google.cloud.dataform" - + ".v1alpha2.Workspace\022\027\n\017next_page_token\030\002" - + " \001(\t\"N\n\023GetWorkspaceRequest\0227\n\004name\030\001 \001(" - + "\tB)\340A\002\372A#\n!dataform.googleapis.com/Works" - + "pace\"\262\001\n\026CreateWorkspaceRequest\022:\n\006paren" - + "t\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googleapis.com" - + "/Repository\022A\n\tworkspace\030\002 \001(\0132).google." - + "cloud.dataform.v1alpha2.WorkspaceB\003\340A\002\022\031" - + "\n\014workspace_id\030\003 \001(\tB\003\340A\002\"Q\n\026DeleteWorks" - + "paceRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataf" - + "orm.googleapis.com/Workspace\"=\n\014CommitAu" - + "thor\022\021\n\004name\030\001 \001(\tB\003\340A\002\022\032\n\remail_address" - + "\030\002 \001(\tB\003\340A\002\"\257\001\n\025PullGitCommitsRequest\0227\n" - + "\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.googleapis" - + ".com/Workspace\022\032\n\rremote_branch\030\002 \001(\tB\003\340" - + "A\001\022A\n\006author\030\003 \001(\0132,.google.cloud.datafo" - + "rm.v1alpha2.CommitAuthorB\003\340A\002\"l\n\025PushGit" - + "CommitsRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!da" - + "taform.googleapis.com/Workspace\022\032\n\rremot" - + "e_branch\030\002 \001(\tB\003\340A\001\"V\n\033FetchFileGitStatu" - + "sesRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!datafo" - + "rm.googleapis.com/Workspace\"\376\002\n\034FetchFil" - + "eGitStatusesResponse\022t\n\030uncommitted_file" - + "_changes\030\001 \003(\0132R.google.cloud.dataform.v" - + "1alpha2.FetchFileGitStatusesResponse.Unc" - + "ommittedFileChange\032\347\001\n\025UncommittedFileCh" - + "ange\022\014\n\004path\030\001 \001(\t\022g\n\005state\030\002 \001(\0162X.goog" - + "le.cloud.dataform.v1alpha2.FetchFileGitS" - + "tatusesResponse.UncommittedFileChange.St" - + "ate\"W\n\005State\022\025\n\021STATE_UNSPECIFIED\020\000\022\t\n\005A" - + "DDED\020\001\022\013\n\007DELETED\020\002\022\014\n\010MODIFIED\020\003\022\021\n\rHAS" - + "_CONFLICTS\020\004\"q\n\032FetchGitAheadBehindReque" - + "st\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.googl" - + "eapis.com/Workspace\022\032\n\rremote_branch\030\002 \001" - + "(\tB\003\340A\001\"L\n\033FetchGitAheadBehindResponse\022\025" - + "\n\rcommits_ahead\030\001 \001(\005\022\026\n\016commits_behind\030" - + "\002 \001(\005\"\314\001\n\035CommitWorkspaceChangesRequest\022" - + "7\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.googleap" - + "is.com/Workspace\022A\n\006author\030\004 \001(\0132,.googl" - + "e.cloud.dataform.v1alpha2.CommitAuthorB\003" - + "\340A\002\022\033\n\016commit_message\030\002 \001(\tB\003\340A\001\022\022\n\005path" - + "s\030\003 \003(\tB\003\340A\001\"\177\n\034ResetWorkspaceChangesReq" - + "uest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.goo" - + "gleapis.com/Workspace\022\022\n\005paths\030\002 \003(\tB\003\340A" - + "\001\022\022\n\005clean\030\003 \001(\010B\003\340A\001\"g\n\024FetchFileDiffRe" - + "quest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!datafo" - + "rm.googleapis.com/Workspace\022\021\n\004path\030\002 \001(" - + "\tB\003\340A\002\"/\n\025FetchFileDiffResponse\022\026\n\016forma" - + "tted_diff\030\001 \001(\t\"\241\001\n\035QueryDirectoryConten" - + "tsRequest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!da" + + "ter\030\005 \001(\tB\003\340A\001\"\212\001\n\030ListRepositoriesRespo" + + "nse\022@\n\014repositories\030\001 \003(\0132*.google.cloud" + + ".dataform.v1alpha2.Repository\022\027\n\017next_pa" + + "ge_token\030\002 \001(\t\022\023\n\013unreachable\030\003 \003(\t\"P\n\024G" + + "etRepositoryRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372A" + + "$\n\"dataform.googleapis.com/Repository\"\265\001" + + "\n\027CreateRepositoryRequest\0229\n\006parent\030\001 \001(" + + "\tB)\340A\002\372A#\n!locations.googleapis.com/Loca" + + "tion\022C\n\nrepository\030\002 \001(\0132*.google.cloud." + + "dataform.v1alpha2.RepositoryB\003\340A\002\022\032\n\rrep" + + "ository_id\030\003 \001(\tB\003\340A\002\"\224\001\n\027UpdateReposito" + + "ryRequest\0224\n\013update_mask\030\001 \001(\0132\032.google." + + "protobuf.FieldMaskB\003\340A\001\022C\n\nrepository\030\002 " + + "\001(\0132*.google.cloud.dataform.v1alpha2.Rep" + + "ositoryB\003\340A\002\"b\n\027DeleteRepositoryRequest\022" + + "8\n\004name\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googleap" + + "is.com/Repository\022\r\n\005force\030\002 \001(\010\"V\n\032Fetc" + + "hRemoteBranchesRequest\0228\n\004name\030\001 \001(\tB*\340A" + + "\002\372A$\n\"dataform.googleapis.com/Repository" + + "\"/\n\033FetchRemoteBranchesResponse\022\020\n\010branc" + + "hes\030\001 \003(\t\"\241\001\n\tWorkspace\022\021\n\004name\030\001 \001(\tB\003\340" + + "A\003:\200\001\352A}\n!dataform.googleapis.com/Worksp" + + "ace\022Xprojects/{project}/locations/{locat" + + "ion}/repositories/{repository}/workspace" + + "s/{workspace}\"\260\001\n\025ListWorkspacesRequest\022" + + ":\n\006parent\030\001 \001(\tB*\340A\002\372A$\n\"dataform.google" + + "apis.com/Repository\022\026\n\tpage_size\030\002 \001(\005B\003" + + "\340A\001\022\027\n\npage_token\030\003 \001(\tB\003\340A\001\022\025\n\010order_by" + + "\030\004 \001(\tB\003\340A\001\022\023\n\006filter\030\005 \001(\tB\003\340A\001\"\205\001\n\026Lis" + + "tWorkspacesResponse\022=\n\nworkspaces\030\001 \003(\0132" + + ").google.cloud.dataform.v1alpha2.Workspa" + + "ce\022\027\n\017next_page_token\030\002 \001(\t\022\023\n\013unreachab" + + "le\030\003 \003(\t\"N\n\023GetWorkspaceRequest\0227\n\004name\030" + + "\001 \001(\tB)\340A\002\372A#\n!dataform.googleapis.com/W" + + "orkspace\"\262\001\n\026CreateWorkspaceRequest\022:\n\006p" + + "arent\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googleapis" + + ".com/Repository\022A\n\tworkspace\030\002 \001(\0132).goo" + + "gle.cloud.dataform.v1alpha2.WorkspaceB\003\340" + + "A\002\022\031\n\014workspace_id\030\003 \001(\tB\003\340A\002\"Q\n\026DeleteW" + + "orkspaceRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!d" + + "ataform.googleapis.com/Workspace\"=\n\014Comm" + + "itAuthor\022\021\n\004name\030\001 \001(\tB\003\340A\002\022\032\n\remail_add" + + "ress\030\002 \001(\tB\003\340A\002\"\257\001\n\025PullGitCommitsReques" + + "t\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.google" + + "apis.com/Workspace\022\032\n\rremote_branch\030\002 \001(" + + "\tB\003\340A\001\022A\n\006author\030\003 \001(\0132,.google.cloud.da" + + "taform.v1alpha2.CommitAuthorB\003\340A\002\"l\n\025Pus" + + "hGitCommitsRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#" + + "\n!dataform.googleapis.com/Workspace\022\032\n\rr" + + "emote_branch\030\002 \001(\tB\003\340A\001\"V\n\033FetchFileGitS" + + "tatusesRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!da" + + "taform.googleapis.com/Workspace\"\376\002\n\034Fetc" + + "hFileGitStatusesResponse\022t\n\030uncommitted_" + + "file_changes\030\001 \003(\0132R.google.cloud.datafo" + + "rm.v1alpha2.FetchFileGitStatusesResponse" + + ".UncommittedFileChange\032\347\001\n\025UncommittedFi" + + "leChange\022\014\n\004path\030\001 \001(\t\022g\n\005state\030\002 \001(\0162X." + + "google.cloud.dataform.v1alpha2.FetchFile" + + "GitStatusesResponse.UncommittedFileChang" + + "e.State\"W\n\005State\022\025\n\021STATE_UNSPECIFIED\020\000\022" + + "\t\n\005ADDED\020\001\022\013\n\007DELETED\020\002\022\014\n\010MODIFIED\020\003\022\021\n" + + "\rHAS_CONFLICTS\020\004\"q\n\032FetchGitAheadBehindR" + + "equest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.g" + + "oogleapis.com/Workspace\022\032\n\rremote_branch" + + "\030\002 \001(\tB\003\340A\001\"L\n\033FetchGitAheadBehindRespon" + + "se\022\025\n\rcommits_ahead\030\001 \001(\005\022\026\n\016commits_beh" + + "ind\030\002 \001(\005\"\314\001\n\035CommitWorkspaceChangesRequ" + + "est\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform.goog" + + "leapis.com/Workspace\022A\n\006author\030\004 \001(\0132,.g" + + "oogle.cloud.dataform.v1alpha2.CommitAuth" + + "orB\003\340A\002\022\033\n\016commit_message\030\002 \001(\tB\003\340A\001\022\022\n\005" + + "paths\030\003 \003(\tB\003\340A\001\"\177\n\034ResetWorkspaceChange" + + "sRequest\0227\n\004name\030\001 \001(\tB)\340A\002\372A#\n!dataform" + + ".googleapis.com/Workspace\022\022\n\005paths\030\002 \003(\t" + + "B\003\340A\001\022\022\n\005clean\030\003 \001(\010B\003\340A\001\"g\n\024FetchFileDi" + + "ffRequest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!da" + "taform.googleapis.com/Workspace\022\021\n\004path\030" - + "\002 \001(\tB\003\340A\001\022\026\n\tpage_size\030\003 \001(\005B\003\340A\001\022\027\n\npa" - + "ge_token\030\004 \001(\tB\003\340A\001\"\343\001\n\036QueryDirectoryCo" - + "ntentsResponse\022h\n\021directory_entries\030\001 \003(" - + "\0132M.google.cloud.dataform.v1alpha2.Query" - + "DirectoryContentsResponse.DirectoryEntry" - + "\022\027\n\017next_page_token\030\002 \001(\t\032>\n\016DirectoryEn" - + "try\022\016\n\004file\030\001 \001(\tH\000\022\023\n\tdirectory\030\002 \001(\tH\000" - + "B\007\n\005entry\"g\n\024MakeDirectoryRequest\022<\n\twor" - + "kspace\030\001 \001(\tB)\340A\002\372A#\n!dataform.googleapi" - + "s.com/Workspace\022\021\n\004path\030\002 \001(\tB\003\340A\002\"\027\n\025Ma" - + "keDirectoryResponse\"i\n\026RemoveDirectoryRe" - + "quest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!datafo" - + "rm.googleapis.com/Workspace\022\021\n\004path\030\002 \001(" - + "\tB\003\340A\002\"~\n\024MoveDirectoryRequest\022<\n\tworksp" - + "ace\030\001 \001(\tB)\340A\002\372A#\n!dataform.googleapis.c" - + "om/Workspace\022\021\n\004path\030\002 \001(\tB\003\340A\002\022\025\n\010new_p" - + "ath\030\003 \001(\tB\003\340A\002\"\027\n\025MoveDirectoryResponse\"" - + "b\n\017ReadFileRequest\022<\n\tworkspace\030\001 \001(\tB)\340" - + "A\002\372A#\n!dataform.googleapis.com/Workspace" - + "\022\021\n\004path\030\002 \001(\tB\003\340A\002\")\n\020ReadFileResponse\022" - + "\025\n\rfile_contents\030\001 \001(\014\"d\n\021RemoveFileRequ" - + "est\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!dataform" - + ".googleapis.com/Workspace\022\021\n\004path\030\002 \001(\tB" - + "\003\340A\002\"y\n\017MoveFileRequest\022<\n\tworkspace\030\001 \001" - + "(\tB)\340A\002\372A#\n!dataform.googleapis.com/Work" - + "space\022\021\n\004path\030\002 \001(\tB\003\340A\002\022\025\n\010new_path\030\003 \001" - + "(\tB\003\340A\002\"\022\n\020MoveFileResponse\"z\n\020WriteFile" + + "\002 \001(\tB\003\340A\002\"/\n\025FetchFileDiffResponse\022\026\n\016f" + + "ormatted_diff\030\001 \001(\t\"\241\001\n\035QueryDirectoryCo" + + "ntentsRequest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#" + + "\n!dataform.googleapis.com/Workspace\022\021\n\004p" + + "ath\030\002 \001(\tB\003\340A\001\022\026\n\tpage_size\030\003 \001(\005B\003\340A\001\022\027" + + "\n\npage_token\030\004 \001(\tB\003\340A\001\"\343\001\n\036QueryDirecto" + + "ryContentsResponse\022h\n\021directory_entries\030" + + "\001 \003(\0132M.google.cloud.dataform.v1alpha2.Q" + + "ueryDirectoryContentsResponse.DirectoryE" + + "ntry\022\027\n\017next_page_token\030\002 \001(\t\032>\n\016Directo" + + "ryEntry\022\016\n\004file\030\001 \001(\tH\000\022\023\n\tdirectory\030\002 \001" + + "(\tH\000B\007\n\005entry\"g\n\024MakeDirectoryRequest\022<\n" + + "\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!dataform.googl" + + "eapis.com/Workspace\022\021\n\004path\030\002 \001(\tB\003\340A\002\"\027" + + "\n\025MakeDirectoryResponse\"i\n\026RemoveDirecto" + + "ryRequest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!da" + + "taform.googleapis.com/Workspace\022\021\n\004path\030" + + "\002 \001(\tB\003\340A\002\"~\n\024MoveDirectoryRequest\022<\n\two" + + "rkspace\030\001 \001(\tB)\340A\002\372A#\n!dataform.googleap" + + "is.com/Workspace\022\021\n\004path\030\002 \001(\tB\003\340A\002\022\025\n\010n" + + "ew_path\030\003 \001(\tB\003\340A\002\"\027\n\025MoveDirectoryRespo" + + "nse\"b\n\017ReadFileRequest\022<\n\tworkspace\030\001 \001(" + + "\tB)\340A\002\372A#\n!dataform.googleapis.com/Works" + + "pace\022\021\n\004path\030\002 \001(\tB\003\340A\002\")\n\020ReadFileRespo" + + "nse\022\025\n\rfile_contents\030\001 \001(\014\"d\n\021RemoveFile" + "Request\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!data" + "form.googleapis.com/Workspace\022\021\n\004path\030\002 " - + "\001(\tB\003\340A\002\022\025\n\010contents\030\003 \001(\014B\003\340A\002\"\023\n\021Write" - + "FileResponse\"Y\n\031InstallNpmPackagesReques" - + "t\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!dataform.g" - + "oogleapis.com/Workspace\"\034\n\032InstallNpmPac" - + "kagesResponse\"\265\010\n\021CompilationResult\022\021\n\004n" - + "ame\030\001 \001(\tB\003\340A\003\022\034\n\rgit_commitish\030\002 \001(\tB\003\340" - + "A\005H\000\022>\n\tworkspace\030\003 \001(\tB)\340A\005\372A#\n!datafor" - + "m.googleapis.com/WorkspaceH\000\022m\n\027code_com" - + "pilation_config\030\004 \001(\0132G.google.cloud.dat" - + "aform.v1alpha2.CompilationResult.CodeCom" - + "pilationConfigB\003\340A\005\022\"\n\025dataform_core_ver" - + "sion\030\005 \001(\tB\003\340A\003\022c\n\022compilation_errors\030\006 " - + "\003(\0132B.google.cloud.dataform.v1alpha2.Com" - + "pilationResult.CompilationErrorB\003\340A\003\032\371\002\n" - + "\025CodeCompilationConfig\022\035\n\020default_databa" - + "se\030\001 \001(\tB\003\340A\001\022\033\n\016default_schema\030\002 \001(\tB\003\340" - + "A\001\022\035\n\020default_location\030\010 \001(\tB\003\340A\001\022\035\n\020ass" - + "ertion_schema\030\003 \001(\tB\003\340A\001\022d\n\004vars\030\004 \003(\0132Q" - + ".google.cloud.dataform.v1alpha2.Compilat" - + "ionResult.CodeCompilationConfig.VarsEntr" - + "yB\003\340A\001\022\034\n\017database_suffix\030\005 \001(\tB\003\340A\001\022\032\n\r" - + "schema_suffix\030\006 \001(\tB\003\340A\001\022\031\n\014table_prefix" - + "\030\007 \001(\tB\003\340A\001\032+\n\tVarsEntry\022\013\n\003key\030\001 \001(\t\022\r\n" - + "\005value\030\002 \001(\t:\0028\001\032\223\001\n\020CompilationError\022\024\n" - + "\007message\030\001 \001(\tB\003\340A\003\022\022\n\005stack\030\002 \001(\tB\003\340A\003\022" - + "\021\n\004path\030\003 \001(\tB\003\340A\003\022B\n\raction_target\030\004 \001(" - + "\0132&.google.cloud.dataform.v1alpha2.Targe" - + "tB\003\340A\003:\232\001\352A\226\001\n)dataform.googleapis.com/C" - + "ompilationResult\022iprojects/{project}/loc" - + "ations/{location}/repositories/{reposito" - + "ry}/compilationResults/{compilation_resu" - + "lt}B\010\n\006source\"\214\001\n\035ListCompilationResults" - + "Request\022:\n\006parent\030\001 \001(\tB*\340A\002\372A$\n\"datafor" - + "m.googleapis.com/Repository\022\026\n\tpage_size" - + "\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030\003 \001(\tB\003\340A\001\"\211\001\n" - + "\036ListCompilationResultsResponse\022N\n\023compi" - + "lation_results\030\001 \003(\01321.google.cloud.data" - + "form.v1alpha2.CompilationResult\022\027\n\017next_" - + "page_token\030\002 \001(\t\"^\n\033GetCompilationResult" - + "Request\022?\n\004name\030\001 \001(\tB1\340A\002\372A+\n)dataform." - + "googleapis.com/CompilationResult\"\260\001\n\036Cre" - + "ateCompilationResultRequest\022:\n\006parent\030\001 " - + "\001(\tB*\340A\002\372A$\n\"dataform.googleapis.com/Rep" - + "ository\022R\n\022compilation_result\030\002 \001(\01321.go" + + "\001(\tB\003\340A\002\"y\n\017MoveFileRequest\022<\n\tworkspace" + + "\030\001 \001(\tB)\340A\002\372A#\n!dataform.googleapis.com/" + + "Workspace\022\021\n\004path\030\002 \001(\tB\003\340A\002\022\025\n\010new_path" + + "\030\003 \001(\tB\003\340A\002\"\022\n\020MoveFileResponse\"z\n\020Write" + + "FileRequest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!" + + "dataform.googleapis.com/Workspace\022\021\n\004pat" + + "h\030\002 \001(\tB\003\340A\002\022\025\n\010contents\030\003 \001(\014B\003\340A\002\"\023\n\021W" + + "riteFileResponse\"Y\n\031InstallNpmPackagesRe" + + "quest\022<\n\tworkspace\030\001 \001(\tB)\340A\002\372A#\n!datafo" + + "rm.googleapis.com/Workspace\"\034\n\032InstallNp" + + "mPackagesResponse\"\265\010\n\021CompilationResult\022" + + "\021\n\004name\030\001 \001(\tB\003\340A\003\022\034\n\rgit_commitish\030\002 \001(" + + "\tB\003\340A\005H\000\022>\n\tworkspace\030\003 \001(\tB)\340A\005\372A#\n!dat" + + "aform.googleapis.com/WorkspaceH\000\022m\n\027code" + + "_compilation_config\030\004 \001(\0132G.google.cloud" + + ".dataform.v1alpha2.CompilationResult.Cod" + + "eCompilationConfigB\003\340A\005\022\"\n\025dataform_core" + + "_version\030\005 \001(\tB\003\340A\003\022c\n\022compilation_error" + + "s\030\006 \003(\0132B.google.cloud.dataform.v1alpha2" + + ".CompilationResult.CompilationErrorB\003\340A\003" + + "\032\371\002\n\025CodeCompilationConfig\022\035\n\020default_da" + + "tabase\030\001 \001(\tB\003\340A\001\022\033\n\016default_schema\030\002 \001(" + + "\tB\003\340A\001\022\035\n\020default_location\030\010 \001(\tB\003\340A\001\022\035\n" + + "\020assertion_schema\030\003 \001(\tB\003\340A\001\022d\n\004vars\030\004 \003" + + "(\0132Q.google.cloud.dataform.v1alpha2.Comp" + + "ilationResult.CodeCompilationConfig.Vars" + + "EntryB\003\340A\001\022\034\n\017database_suffix\030\005 \001(\tB\003\340A\001" + + "\022\032\n\rschema_suffix\030\006 \001(\tB\003\340A\001\022\031\n\014table_pr" + + "efix\030\007 \001(\tB\003\340A\001\032+\n\tVarsEntry\022\013\n\003key\030\001 \001(" + + "\t\022\r\n\005value\030\002 \001(\t:\0028\001\032\223\001\n\020CompilationErro" + + "r\022\024\n\007message\030\001 \001(\tB\003\340A\003\022\022\n\005stack\030\002 \001(\tB\003" + + "\340A\003\022\021\n\004path\030\003 \001(\tB\003\340A\003\022B\n\raction_target\030" + + "\004 \001(\0132&.google.cloud.dataform.v1alpha2.T" + + "argetB\003\340A\003:\232\001\352A\226\001\n)dataform.googleapis.c" + + "om/CompilationResult\022iprojects/{project}" + + "/locations/{location}/repositories/{repo" + + "sitory}/compilationResults/{compilation_" + + "result}B\010\n\006source\"\214\001\n\035ListCompilationRes" + + "ultsRequest\022:\n\006parent\030\001 \001(\tB*\340A\002\372A$\n\"dat" + + "aform.googleapis.com/Repository\022\026\n\tpage_" + + "size\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030\003 \001(\tB\003\340A\001" + + "\"\236\001\n\036ListCompilationResultsResponse\022N\n\023c" + + "ompilation_results\030\001 \003(\01321.google.cloud." + + "dataform.v1alpha2.CompilationResult\022\027\n\017n" + + "ext_page_token\030\002 \001(\t\022\023\n\013unreachable\030\003 \003(" + + "\t\"^\n\033GetCompilationResultRequest\022?\n\004name" + + "\030\001 \001(\tB1\340A\002\372A+\n)dataform.googleapis.com/" + + "CompilationResult\"\260\001\n\036CreateCompilationR" + + "esultRequest\022:\n\006parent\030\001 \001(\tB*\340A\002\372A$\n\"da" + + "taform.googleapis.com/Repository\022R\n\022comp" + + "ilation_result\030\002 \001(\01321.google.cloud.data" + + "form.v1alpha2.CompilationResultB\003\340A\002\"8\n\006" + + "Target\022\020\n\010database\030\001 \001(\t\022\016\n\006schema\030\002 \001(\t" + + "\022\014\n\004name\030\003 \001(\t\"\354\002\n\022RelationDescriptor\022\023\n" + + "\013description\030\001 \001(\t\022T\n\007columns\030\002 \003(\0132C.go" + + "ogle.cloud.dataform.v1alpha2.RelationDes" + + "criptor.ColumnDescriptor\022_\n\017bigquery_lab" + + "els\030\003 \003(\0132F.google.cloud.dataform.v1alph" + + "a2.RelationDescriptor.BigqueryLabelsEntr" + + "y\032S\n\020ColumnDescriptor\022\014\n\004path\030\001 \003(\t\022\023\n\013d" + + "escription\030\002 \001(\t\022\034\n\024bigquery_policy_tags" + + "\030\003 \003(\t\0325\n\023BigqueryLabelsEntry\022\013\n\003key\030\001 \001" + + "(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\344\021\n\027CompilationRes" + + "ultAction\0226\n\006target\030\001 \001(\0132&.google.cloud" + + ".dataform.v1alpha2.Target\022@\n\020canonical_t" + + "arget\030\002 \001(\0132&.google.cloud.dataform.v1al" + + "pha2.Target\022\021\n\tfile_path\030\003 \001(\t\022T\n\010relati" + + "on\030\004 \001(\0132@.google.cloud.dataform.v1alpha" + + "2.CompilationResultAction.RelationH\000\022X\n\n" + + "operations\030\005 \001(\0132B.google.cloud.dataform" + + ".v1alpha2.CompilationResultAction.Operat" + + "ionsH\000\022V\n\tassertion\030\006 \001(\0132A.google.cloud" + + ".dataform.v1alpha2.CompilationResultActi" + + "on.AssertionH\000\022Z\n\013declaration\030\007 \001(\0132C.go" + "ogle.cloud.dataform.v1alpha2.Compilation" - + "ResultB\003\340A\002\"8\n\006Target\022\020\n\010database\030\001 \001(\t\022" - + "\016\n\006schema\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"\354\002\n\022Relati" - + "onDescriptor\022\023\n\013description\030\001 \001(\t\022T\n\007col" - + "umns\030\002 \003(\0132C.google.cloud.dataform.v1alp" - + "ha2.RelationDescriptor.ColumnDescriptor\022" - + "_\n\017bigquery_labels\030\003 \003(\0132F.google.cloud." - + "dataform.v1alpha2.RelationDescriptor.Big" - + "queryLabelsEntry\032S\n\020ColumnDescriptor\022\014\n\004" - + "path\030\001 \003(\t\022\023\n\013description\030\002 \001(\t\022\034\n\024bigqu" - + "ery_policy_tags\030\003 \003(\t\0325\n\023BigqueryLabelsE" - + "ntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\344\021\n" - + "\027CompilationResultAction\0226\n\006target\030\001 \001(\013" - + "2&.google.cloud.dataform.v1alpha2.Target" - + "\022@\n\020canonical_target\030\002 \001(\0132&.google.clou" - + "d.dataform.v1alpha2.Target\022\021\n\tfile_path\030" - + "\003 \001(\t\022T\n\010relation\030\004 \001(\0132@.google.cloud.d" - + "ataform.v1alpha2.CompilationResultAction" - + ".RelationH\000\022X\n\noperations\030\005 \001(\0132B.google" - + ".cloud.dataform.v1alpha2.CompilationResu" - + "ltAction.OperationsH\000\022V\n\tassertion\030\006 \001(\013" - + "2A.google.cloud.dataform.v1alpha2.Compil" - + "ationResultAction.AssertionH\000\022Z\n\013declara" - + "tion\030\007 \001(\0132C.google.cloud.dataform.v1alp" - + "ha2.CompilationResultAction.DeclarationH" - + "\000\032\343\010\n\010Relation\022B\n\022dependency_targets\030\001 \003" - + "(\0132&.google.cloud.dataform.v1alpha2.Targ" - + "et\022\020\n\010disabled\030\002 \001(\010\022\014\n\004tags\030\003 \003(\t\022O\n\023re" - + "lation_descriptor\030\004 \001(\01322.google.cloud.d" - + "ataform.v1alpha2.RelationDescriptor\022d\n\rr" - + "elation_type\030\005 \001(\0162M.google.cloud.datafo" - + "rm.v1alpha2.CompilationResultAction.Rela" - + "tion.RelationType\022\024\n\014select_query\030\006 \001(\t\022" - + "\026\n\016pre_operations\030\007 \003(\t\022\027\n\017post_operatio" - + "ns\030\010 \003(\t\022y\n\030incremental_table_config\030\t \001" - + "(\0132W.google.cloud.dataform.v1alpha2.Comp" - + "ilationResultAction.Relation.Incremental" - + "TableConfig\022\034\n\024partition_expression\030\n \001(" - + "\t\022\033\n\023cluster_expressions\030\013 \003(\t\022!\n\031partit" - + "ion_expiration_days\030\014 \001(\005\022 \n\030require_par" - + "tition_filter\030\r \001(\010\022s\n\022additional_option" - + "s\030\016 \003(\0132W.google.cloud.dataform.v1alpha2" - + ".CompilationResultAction.Relation.Additi" - + "onalOptionsEntry\032\330\001\n\026IncrementalTableCon" - + "fig\022 \n\030incremental_select_query\030\001 \001(\t\022\030\n" - + "\020refresh_disabled\030\002 \001(\010\022\030\n\020unique_key_pa" - + "rts\030\003 \003(\t\022\037\n\027update_partition_filter\030\004 \001" - + "(\t\022\"\n\032incremental_pre_operations\030\005 \003(\t\022#" - + "\n\033incremental_post_operations\030\006 \003(\t\0328\n\026A" - + "dditionalOptionsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005va" - + "lue\030\002 \001(\t:\0028\001\"p\n\014RelationType\022\035\n\031RELATIO" - + "N_TYPE_UNSPECIFIED\020\000\022\t\n\005TABLE\020\001\022\010\n\004VIEW\020" - + "\002\022\025\n\021INCREMENTAL_TABLE\020\003\022\025\n\021MATERIALIZED" - + "_VIEW\020\004\032\346\001\n\nOperations\022B\n\022dependency_tar" - + "gets\030\001 \003(\0132&.google.cloud.dataform.v1alp" + + "ResultAction.DeclarationH\000\032\343\010\n\010Relation\022" + + "B\n\022dependency_targets\030\001 \003(\0132&.google.clo" + + "ud.dataform.v1alpha2.Target\022\020\n\010disabled\030" + + "\002 \001(\010\022\014\n\004tags\030\003 \003(\t\022O\n\023relation_descript" + + "or\030\004 \001(\01322.google.cloud.dataform.v1alpha" + + "2.RelationDescriptor\022d\n\rrelation_type\030\005 " + + "\001(\0162M.google.cloud.dataform.v1alpha2.Com" + + "pilationResultAction.Relation.RelationTy" + + "pe\022\024\n\014select_query\030\006 \001(\t\022\026\n\016pre_operatio" + + "ns\030\007 \003(\t\022\027\n\017post_operations\030\010 \003(\t\022y\n\030inc" + + "remental_table_config\030\t \001(\0132W.google.clo" + + "ud.dataform.v1alpha2.CompilationResultAc" + + "tion.Relation.IncrementalTableConfig\022\034\n\024" + + "partition_expression\030\n \001(\t\022\033\n\023cluster_ex" + + "pressions\030\013 \003(\t\022!\n\031partition_expiration_" + + "days\030\014 \001(\005\022 \n\030require_partition_filter\030\r" + + " \001(\010\022s\n\022additional_options\030\016 \003(\0132W.googl" + + "e.cloud.dataform.v1alpha2.CompilationRes" + + "ultAction.Relation.AdditionalOptionsEntr" + + "y\032\330\001\n\026IncrementalTableConfig\022 \n\030incremen" + + "tal_select_query\030\001 \001(\t\022\030\n\020refresh_disabl" + + "ed\030\002 \001(\010\022\030\n\020unique_key_parts\030\003 \003(\t\022\037\n\027up" + + "date_partition_filter\030\004 \001(\t\022\"\n\032increment" + + "al_pre_operations\030\005 \003(\t\022#\n\033incremental_p" + + "ost_operations\030\006 \003(\t\0328\n\026AdditionalOption" + + "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"p" + + "\n\014RelationType\022\035\n\031RELATION_TYPE_UNSPECIF" + + "IED\020\000\022\t\n\005TABLE\020\001\022\010\n\004VIEW\020\002\022\025\n\021INCREMENTA" + + "L_TABLE\020\003\022\025\n\021MATERIALIZED_VIEW\020\004\032\346\001\n\nOpe" + + "rations\022B\n\022dependency_targets\030\001 \003(\0132&.go" + + "ogle.cloud.dataform.v1alpha2.Target\022\020\n\010d" + + "isabled\030\002 \001(\010\022\014\n\004tags\030\003 \003(\t\022O\n\023relation_" + + "descriptor\030\006 \001(\01322.google.cloud.dataform" + + ".v1alpha2.RelationDescriptor\022\017\n\007queries\030" + + "\004 \003(\t\022\022\n\nhas_output\030\005 \001(\010\032\225\002\n\tAssertion\022" + + "B\n\022dependency_targets\030\001 \003(\0132&.google.clo" + + "ud.dataform.v1alpha2.Target\022=\n\rparent_ac" + + "tion\030\005 \001(\0132&.google.cloud.dataform.v1alp" + "ha2.Target\022\020\n\010disabled\030\002 \001(\010\022\014\n\004tags\030\003 \003" - + "(\t\022O\n\023relation_descriptor\030\006 \001(\01322.google" - + ".cloud.dataform.v1alpha2.RelationDescrip" - + "tor\022\017\n\007queries\030\004 \003(\t\022\022\n\nhas_output\030\005 \001(\010" - + "\032\225\002\n\tAssertion\022B\n\022dependency_targets\030\001 \003" - + "(\0132&.google.cloud.dataform.v1alpha2.Targ" - + "et\022=\n\rparent_action\030\005 \001(\0132&.google.cloud" - + ".dataform.v1alpha2.Target\022\020\n\010disabled\030\002 " - + "\001(\010\022\014\n\004tags\030\003 \003(\t\022\024\n\014select_query\030\004 \001(\t\022" - + "O\n\023relation_descriptor\030\006 \001(\01322.google.cl" - + "oud.dataform.v1alpha2.RelationDescriptor" - + "\032^\n\013Declaration\022O\n\023relation_descriptor\030\001" - + " \001(\01322.google.cloud.dataform.v1alpha2.Re" - + "lationDescriptorB\021\n\017compiled_object\"\255\001\n$" - + "QueryCompilationResultActionsRequest\022?\n\004" - + "name\030\001 \001(\tB1\340A\002\372A+\n)dataform.googleapis." - + "com/CompilationResult\022\026\n\tpage_size\030\002 \001(\005" - + "B\003\340A\001\022\027\n\npage_token\030\003 \001(\tB\003\340A\001\022\023\n\006filter" - + "\030\004 \001(\tB\003\340A\001\"\235\001\n%QueryCompilationResultAc" - + "tionsResponse\022[\n\032compilation_result_acti" - + "ons\030\001 \003(\01327.google.cloud.dataform.v1alph" - + "a2.CompilationResultAction\022\027\n\017next_page_" - + "token\030\002 \001(\t\"\361\006\n\022WorkflowInvocation\022\021\n\004na" - + "me\030\001 \001(\tB\003\340A\003\022M\n\022compilation_result\030\002 \001(" - + "\tB1\340A\005\372A+\n)dataform.googleapis.com/Compi" - + "lationResult\022c\n\021invocation_config\030\003 \001(\0132" - + "C.google.cloud.dataform.v1alpha2.Workflo" - + "wInvocation.InvocationConfigB\003\340A\005\022L\n\005sta" - + "te\030\004 \001(\01628.google.cloud.dataform.v1alpha" - + "2.WorkflowInvocation.StateB\003\340A\003\0225\n\021invoc" - + "ation_timing\030\005 \001(\0132\025.google.type.Interva" - + "lB\003\340A\003\032\210\002\n\020InvocationConfig\022E\n\020included_" - + "targets\030\001 \003(\0132&.google.cloud.dataform.v1" - + "alpha2.TargetB\003\340A\005\022\032\n\rincluded_tags\030\002 \003(" - + "\tB\003\340A\005\022-\n transitive_dependencies_includ" - + "ed\030\003 \001(\010B\003\340A\005\022+\n\036transitive_dependents_i" - + "ncluded\030\004 \001(\010B\003\340A\005\0225\n(fully_refresh_incr" - + "emental_tables_enabled\030\005 \001(\010B\003\340A\005\"d\n\005Sta" - + "te\022\025\n\021STATE_UNSPECIFIED\020\000\022\013\n\007RUNNING\020\001\022\r" - + "\n\tSUCCEEDED\020\002\022\r\n\tCANCELLED\020\003\022\n\n\006FAILED\020\004" - + "\022\r\n\tCANCELING\020\005:\235\001\352A\231\001\n*dataform.googlea" - + "pis.com/WorkflowInvocation\022kprojects/{pr" - + "oject}/locations/{location}/repositories" - + "/{repository}/workflowInvocations/{workf" - + "low_invocation}\"\215\001\n\036ListWorkflowInvocati" - + "onsRequest\022:\n\006parent\030\001 \001(\tB*\340A\002\372A$\n\"data" - + "form.googleapis.com/Repository\022\026\n\tpage_s" - + "ize\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030\003 \001(\tB\003\340A\001\"" - + "\214\001\n\037ListWorkflowInvocationsResponse\022P\n\024w" - + "orkflow_invocations\030\001 \003(\01322.google.cloud" - + ".dataform.v1alpha2.WorkflowInvocation\022\027\n" - + "\017next_page_token\030\002 \001(\t\"`\n\034GetWorkflowInv" - + "ocationRequest\022@\n\004name\030\001 \001(\tB2\340A\002\372A,\n*da" - + "taform.googleapis.com/WorkflowInvocation" - + "\"\263\001\n\037CreateWorkflowInvocationRequest\022:\n\006" - + "parent\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googleapi" - + "s.com/Repository\022T\n\023workflow_invocation\030" - + "\002 \001(\01322.google.cloud.dataform.v1alpha2.W" - + "orkflowInvocationB\003\340A\002\"c\n\037DeleteWorkflow" - + "InvocationRequest\022@\n\004name\030\001 \001(\tB2\340A\002\372A,\n" - + "*dataform.googleapis.com/WorkflowInvocat" - + "ion\"c\n\037CancelWorkflowInvocationRequest\022@" - + "\n\004name\030\001 \001(\tB2\340A\002\372A,\n*dataform.googleapi" - + "s.com/WorkflowInvocation\"\243\004\n\030WorkflowInv" - + "ocationAction\022;\n\006target\030\001 \001(\0132&.google.c" - + "loud.dataform.v1alpha2.TargetB\003\340A\003\022E\n\020ca" - + "nonical_target\030\002 \001(\0132&.google.cloud.data" - + "form.v1alpha2.TargetB\003\340A\003\022R\n\005state\030\004 \001(\016" - + "2>.google.cloud.dataform.v1alpha2.Workfl" - + "owInvocationAction.StateB\003\340A\003\0225\n\021invocat" - + "ion_timing\030\005 \001(\0132\025.google.type.IntervalB" - + "\003\340A\003\022e\n\017bigquery_action\030\006 \001(\0132G.google.c" - + "loud.dataform.v1alpha2.WorkflowInvocatio" - + "nAction.BigQueryActionB\003\340A\003\032)\n\016BigQueryA" - + "ction\022\027\n\nsql_script\030\001 \001(\tB\003\340A\003\"f\n\005State\022" - + "\013\n\007PENDING\020\000\022\013\n\007RUNNING\020\001\022\013\n\007SKIPPED\020\002\022\014" - + "\n\010DISABLED\020\003\022\r\n\tSUCCEEDED\020\004\022\r\n\tCANCELLED" - + "\020\005\022\n\n\006FAILED\020\006\"\257\001\n%QueryWorkflowInvocati" - + "onActionsRequest\022@\n\004name\030\001 \001(\tB2\340A\002\372A,\n*" - + "dataform.googleapis.com/WorkflowInvocati" - + "on\022\026\n\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\npage_token" - + "\030\003 \001(\tB\003\340A\001\022\023\n\006filter\030\004 \001(\tB\003\340A\001\"\240\001\n&Que" - + "ryWorkflowInvocationActionsResponse\022]\n\033w" - + "orkflow_invocation_actions\030\001 \003(\01328.googl" - + "e.cloud.dataform.v1alpha2.WorkflowInvoca" - + "tionAction\022\027\n\017next_page_token\030\002 \001(\t2\255?\n\010" - + "Dataform\022\316\001\n\020ListRepositories\0227.google.c" - + "loud.dataform.v1alpha2.ListRepositoriesR" - + "equest\0328.google.cloud.dataform.v1alpha2." - + "ListRepositoriesResponse\"G\202\323\344\223\0028\0226/v1alp" - + "ha2/{parent=projects/*/locations/*}/repo" - + "sitories\332A\006parent\022\270\001\n\rGetRepository\0224.go" - + "ogle.cloud.dataform.v1alpha2.GetReposito" - + "ryRequest\032*.google.cloud.dataform.v1alph" - + "a2.Repository\"E\202\323\344\223\0028\0226/v1alpha2/{name=p" - + "rojects/*/locations/*/repositories/*}\332A\004" - + "name\022\345\001\n\020CreateRepository\0227.google.cloud" - + ".dataform.v1alpha2.CreateRepositoryReque" - + "st\032*.google.cloud.dataform.v1alpha2.Repo" - + "sitory\"l\202\323\344\223\002D\"6/v1alpha2/{parent=projec" - + "ts/*/locations/*}/repositories:\nreposito" - + "ry\332A\037parent,repository,repository_id\022\347\001\n" - + "\020UpdateRepository\0227.google.cloud.datafor" - + "m.v1alpha2.UpdateRepositoryRequest\032*.goo" - + "gle.cloud.dataform.v1alpha2.Repository\"n" - + "\202\323\344\223\002O2A/v1alpha2/{repository.name=proje" - + "cts/*/locations/*/repositories/*}:\nrepos" - + "itory\332A\026repository,update_mask\022\252\001\n\020Delet" - + "eRepository\0227.google.cloud.dataform.v1al" - + "pha2.DeleteRepositoryRequest\032\026.google.pr" - + "otobuf.Empty\"E\202\323\344\223\0028*6/v1alpha2/{name=pr" - + "ojects/*/locations/*/repositories/*}\332A\004n" - + "ame\022\342\001\n\023FetchRemoteBranches\022:.google.clo" - + "ud.dataform.v1alpha2.FetchRemoteBranches" - + "Request\032;.google.cloud.dataform.v1alpha2" - + ".FetchRemoteBranchesResponse\"R\202\323\344\223\002L\022J/v" - + "1alpha2/{name=projects/*/locations/*/rep" - + "ositories/*}:fetchRemoteBranches\022\325\001\n\016Lis" - + "tWorkspaces\0225.google.cloud.dataform.v1al" - + "pha2.ListWorkspacesRequest\0326.google.clou" - + "d.dataform.v1alpha2.ListWorkspacesRespon" - + "se\"T\202\323\344\223\002E\022C/v1alpha2/{parent=projects/*" - + "/locations/*/repositories/*}/workspaces\332" - + "A\006parent\022\302\001\n\014GetWorkspace\0223.google.cloud" - + ".dataform.v1alpha2.GetWorkspaceRequest\032)" - + ".google.cloud.dataform.v1alpha2.Workspac" - + "e\"R\202\323\344\223\002E\022C/v1alpha2/{name=projects/*/lo" - + "cations/*/repositories/*/workspaces/*}\332A" - + "\004name\022\354\001\n\017CreateWorkspace\0226.google.cloud" - + ".dataform.v1alpha2.CreateWorkspaceReques" - + "t\032).google.cloud.dataform.v1alpha2.Works" - + "pace\"v\202\323\344\223\002P\"C/v1alpha2/{parent=projects" - + "/*/locations/*/repositories/*}/workspace" - + "s:\tworkspace\332A\035parent,workspace,workspac" - + "e_id\022\265\001\n\017DeleteWorkspace\0226.google.cloud." - + "dataform.v1alpha2.DeleteWorkspaceRequest" - + "\032\026.google.protobuf.Empty\"R\202\323\344\223\002E*C/v1alp" - + "ha2/{name=projects/*/locations/*/reposit" - + "ories/*/workspaces/*}\332A\004name\022\363\001\n\022Install" - + "NpmPackages\0229.google.cloud.dataform.v1al" - + "pha2.InstallNpmPackagesRequest\032:.google." - + "cloud.dataform.v1alpha2.InstallNpmPackag" - + "esResponse\"f\202\323\344\223\002`\"[/v1alpha2/{workspace" + + "(\t\022\024\n\014select_query\030\004 \001(\t\022O\n\023relation_des" + + "criptor\030\006 \001(\01322.google.cloud.dataform.v1" + + "alpha2.RelationDescriptor\032^\n\013Declaration" + + "\022O\n\023relation_descriptor\030\001 \001(\01322.google.c" + + "loud.dataform.v1alpha2.RelationDescripto" + + "rB\021\n\017compiled_object\"\255\001\n$QueryCompilatio" + + "nResultActionsRequest\022?\n\004name\030\001 \001(\tB1\340A\002" + + "\372A+\n)dataform.googleapis.com/Compilation" + + "Result\022\026\n\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\npage_t" + + "oken\030\003 \001(\tB\003\340A\001\022\023\n\006filter\030\004 \001(\tB\003\340A\001\"\235\001\n" + + "%QueryCompilationResultActionsResponse\022[" + + "\n\032compilation_result_actions\030\001 \003(\01327.goo" + + "gle.cloud.dataform.v1alpha2.CompilationR" + + "esultAction\022\027\n\017next_page_token\030\002 \001(\t\"\361\006\n" + + "\022WorkflowInvocation\022\021\n\004name\030\001 \001(\tB\003\340A\003\022M" + + "\n\022compilation_result\030\002 \001(\tB1\340A\005\372A+\n)data" + + "form.googleapis.com/CompilationResult\022c\n" + + "\021invocation_config\030\003 \001(\0132C.google.cloud." + + "dataform.v1alpha2.WorkflowInvocation.Inv" + + "ocationConfigB\003\340A\005\022L\n\005state\030\004 \001(\01628.goog" + + "le.cloud.dataform.v1alpha2.WorkflowInvoc" + + "ation.StateB\003\340A\003\0225\n\021invocation_timing\030\005 " + + "\001(\0132\025.google.type.IntervalB\003\340A\003\032\210\002\n\020Invo" + + "cationConfig\022E\n\020included_targets\030\001 \003(\0132&" + + ".google.cloud.dataform.v1alpha2.TargetB\003" + + "\340A\005\022\032\n\rincluded_tags\030\002 \003(\tB\003\340A\005\022-\n trans" + + "itive_dependencies_included\030\003 \001(\010B\003\340A\005\022+" + + "\n\036transitive_dependents_included\030\004 \001(\010B\003" + + "\340A\005\0225\n(fully_refresh_incremental_tables_" + + "enabled\030\005 \001(\010B\003\340A\005\"d\n\005State\022\025\n\021STATE_UNS" + + "PECIFIED\020\000\022\013\n\007RUNNING\020\001\022\r\n\tSUCCEEDED\020\002\022\r" + + "\n\tCANCELLED\020\003\022\n\n\006FAILED\020\004\022\r\n\tCANCELING\020\005" + + ":\235\001\352A\231\001\n*dataform.googleapis.com/Workflo" + + "wInvocation\022kprojects/{project}/location" + + "s/{location}/repositories/{repository}/w" + + "orkflowInvocations/{workflow_invocation}" + + "\"\215\001\n\036ListWorkflowInvocationsRequest\022:\n\006p" + + "arent\030\001 \001(\tB*\340A\002\372A$\n\"dataform.googleapis" + + ".com/Repository\022\026\n\tpage_size\030\002 \001(\005B\003\340A\001\022" + + "\027\n\npage_token\030\003 \001(\tB\003\340A\001\"\241\001\n\037ListWorkflo" + + "wInvocationsResponse\022P\n\024workflow_invocat" + + "ions\030\001 \003(\01322.google.cloud.dataform.v1alp" + + "ha2.WorkflowInvocation\022\027\n\017next_page_toke" + + "n\030\002 \001(\t\022\023\n\013unreachable\030\003 \003(\t\"`\n\034GetWorkf" + + "lowInvocationRequest\022@\n\004name\030\001 \001(\tB2\340A\002\372" + + "A,\n*dataform.googleapis.com/WorkflowInvo" + + "cation\"\263\001\n\037CreateWorkflowInvocationReque" + + "st\022:\n\006parent\030\001 \001(\tB*\340A\002\372A$\n\"dataform.goo" + + "gleapis.com/Repository\022T\n\023workflow_invoc" + + "ation\030\002 \001(\01322.google.cloud.dataform.v1al" + + "pha2.WorkflowInvocationB\003\340A\002\"c\n\037DeleteWo" + + "rkflowInvocationRequest\022@\n\004name\030\001 \001(\tB2\340" + + "A\002\372A,\n*dataform.googleapis.com/WorkflowI" + + "nvocation\"c\n\037CancelWorkflowInvocationReq" + + "uest\022@\n\004name\030\001 \001(\tB2\340A\002\372A,\n*dataform.goo" + + "gleapis.com/WorkflowInvocation\"\300\004\n\030Workf" + + "lowInvocationAction\022;\n\006target\030\001 \001(\0132&.go" + + "ogle.cloud.dataform.v1alpha2.TargetB\003\340A\003" + + "\022E\n\020canonical_target\030\002 \001(\0132&.google.clou" + + "d.dataform.v1alpha2.TargetB\003\340A\003\022R\n\005state" + + "\030\004 \001(\0162>.google.cloud.dataform.v1alpha2." + + "WorkflowInvocationAction.StateB\003\340A\003\022\033\n\016f" + + "ailure_reason\030\007 \001(\tB\003\340A\003\0225\n\021invocation_t" + + "iming\030\005 \001(\0132\025.google.type.IntervalB\003\340A\003\022" + + "e\n\017bigquery_action\030\006 \001(\0132G.google.cloud." + + "dataform.v1alpha2.WorkflowInvocationActi" + + "on.BigQueryActionB\003\340A\003\032)\n\016BigQueryAction" + + "\022\027\n\nsql_script\030\001 \001(\tB\003\340A\003\"f\n\005State\022\013\n\007PE" + + "NDING\020\000\022\013\n\007RUNNING\020\001\022\013\n\007SKIPPED\020\002\022\014\n\010DIS" + + "ABLED\020\003\022\r\n\tSUCCEEDED\020\004\022\r\n\tCANCELLED\020\005\022\n\n" + + "\006FAILED\020\006\"\232\001\n%QueryWorkflowInvocationAct" + + "ionsRequest\022@\n\004name\030\001 \001(\tB2\340A\002\372A,\n*dataf" + + "orm.googleapis.com/WorkflowInvocation\022\026\n" + + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030\003 \001(" + + "\tB\003\340A\001\"\240\001\n&QueryWorkflowInvocationAction" + + "sResponse\022]\n\033workflow_invocation_actions" + + "\030\001 \003(\01328.google.cloud.dataform.v1alpha2." + + "WorkflowInvocationAction\022\027\n\017next_page_to" + + "ken\030\002 \001(\t2\255?\n\010Dataform\022\316\001\n\020ListRepositor" + + "ies\0227.google.cloud.dataform.v1alpha2.Lis" + + "tRepositoriesRequest\0328.google.cloud.data" + + "form.v1alpha2.ListRepositoriesResponse\"G" + + "\202\323\344\223\0028\0226/v1alpha2/{parent=projects/*/loc" + + "ations/*}/repositories\332A\006parent\022\270\001\n\rGetR" + + "epository\0224.google.cloud.dataform.v1alph" + + "a2.GetRepositoryRequest\032*.google.cloud.d" + + "ataform.v1alpha2.Repository\"E\202\323\344\223\0028\0226/v1" + + "alpha2/{name=projects/*/locations/*/repo" + + "sitories/*}\332A\004name\022\345\001\n\020CreateRepository\022" + + "7.google.cloud.dataform.v1alpha2.CreateR" + + "epositoryRequest\032*.google.cloud.dataform" + + ".v1alpha2.Repository\"l\202\323\344\223\002D\"6/v1alpha2/" + + "{parent=projects/*/locations/*}/reposito" + + "ries:\nrepository\332A\037parent,repository,rep" + + "ository_id\022\347\001\n\020UpdateRepository\0227.google" + + ".cloud.dataform.v1alpha2.UpdateRepositor" + + "yRequest\032*.google.cloud.dataform.v1alpha" + + "2.Repository\"n\202\323\344\223\002O2A/v1alpha2/{reposit" + + "ory.name=projects/*/locations/*/reposito" + + "ries/*}:\nrepository\332A\026repository,update_" + + "mask\022\252\001\n\020DeleteRepository\0227.google.cloud" + + ".dataform.v1alpha2.DeleteRepositoryReque" + + "st\032\026.google.protobuf.Empty\"E\202\323\344\223\0028*6/v1a" + + "lpha2/{name=projects/*/locations/*/repos" + + "itories/*}\332A\004name\022\342\001\n\023FetchRemoteBranche" + + "s\022:.google.cloud.dataform.v1alpha2.Fetch" + + "RemoteBranchesRequest\032;.google.cloud.dat" + + "aform.v1alpha2.FetchRemoteBranchesRespon" + + "se\"R\202\323\344\223\002L\022J/v1alpha2/{name=projects/*/l" + + "ocations/*/repositories/*}:fetchRemoteBr" + + "anches\022\325\001\n\016ListWorkspaces\0225.google.cloud" + + ".dataform.v1alpha2.ListWorkspacesRequest" + + "\0326.google.cloud.dataform.v1alpha2.ListWo" + + "rkspacesResponse\"T\202\323\344\223\002E\022C/v1alpha2/{par" + + "ent=projects/*/locations/*/repositories/" + + "*}/workspaces\332A\006parent\022\302\001\n\014GetWorkspace\022" + + "3.google.cloud.dataform.v1alpha2.GetWork" + + "spaceRequest\032).google.cloud.dataform.v1a" + + "lpha2.Workspace\"R\202\323\344\223\002E\022C/v1alpha2/{name" + "=projects/*/locations/*/repositories/*/w" - + "orkspaces/*}:installNpmPackages:\001*\022\264\001\n\016P" - + "ullGitCommits\0225.google.cloud.dataform.v1" - + "alpha2.PullGitCommitsRequest\032\026.google.pr" - + "otobuf.Empty\"S\202\323\344\223\002M\"H/v1alpha2/{name=pr" - + "ojects/*/locations/*/repositories/*/work" - + "spaces/*}:pull:\001*\022\264\001\n\016PushGitCommits\0225.g" - + "oogle.cloud.dataform.v1alpha2.PushGitCom" - + "mitsRequest\032\026.google.protobuf.Empty\"S\202\323\344" - + "\223\002M\"H/v1alpha2/{name=projects/*/location" - + "s/*/repositories/*/workspaces/*}:push:\001*" - + "\022\363\001\n\024FetchFileGitStatuses\022;.google.cloud" - + ".dataform.v1alpha2.FetchFileGitStatusesR" - + "equest\032<.google.cloud.dataform.v1alpha2." - + "FetchFileGitStatusesResponse\"`\202\323\344\223\002Z\022X/v" - + "1alpha2/{name=projects/*/locations/*/rep" - + "ositories/*/workspaces/*}:fetchFileGitSt" - + "atuses\022\357\001\n\023FetchGitAheadBehind\022:.google." - + "cloud.dataform.v1alpha2.FetchGitAheadBeh" - + "indRequest\032;.google.cloud.dataform.v1alp" - + "ha2.FetchGitAheadBehindResponse\"_\202\323\344\223\002Y\022" - + "W/v1alpha2/{name=projects/*/locations/*/" - + "repositories/*/workspaces/*}:fetchGitAhe", - "adBehind\022\306\001\n\026CommitWorkspaceChanges\022=.go" - + "ogle.cloud.dataform.v1alpha2.CommitWorks" - + "paceChangesRequest\032\026.google.protobuf.Emp" - + "ty\"U\202\323\344\223\002O\"J/v1alpha2/{name=projects/*/l" - + "ocations/*/repositories/*/workspaces/*}:" - + "commit:\001*\022\303\001\n\025ResetWorkspaceChanges\022<.go" - + "ogle.cloud.dataform.v1alpha2.ResetWorksp" - + "aceChangesRequest\032\026.google.protobuf.Empt" - + "y\"T\202\323\344\223\002N\"I/v1alpha2/{name=projects/*/lo" - + "cations/*/repositories/*/workspaces/*}:r" - + "eset:\001*\022\334\001\n\rFetchFileDiff\0224.google.cloud" - + ".dataform.v1alpha2.FetchFileDiffRequest\032" - + "5.google.cloud.dataform.v1alpha2.FetchFi" - + "leDiffResponse\"^\202\323\344\223\002X\022V/v1alpha2/{works" - + "pace=projects/*/locations/*/repositories" - + "/*/workspaces/*}:fetchFileDiff\022\200\002\n\026Query" - + "DirectoryContents\022=.google.cloud.datafor" - + "m.v1alpha2.QueryDirectoryContentsRequest" - + "\032>.google.cloud.dataform.v1alpha2.QueryD" - + "irectoryContentsResponse\"g\202\323\344\223\002a\022_/v1alp" + + "orkspaces/*}\332A\004name\022\354\001\n\017CreateWorkspace\022" + + "6.google.cloud.dataform.v1alpha2.CreateW" + + "orkspaceRequest\032).google.cloud.dataform." + + "v1alpha2.Workspace\"v\202\323\344\223\002P\"C/v1alpha2/{p" + + "arent=projects/*/locations/*/repositorie" + + "s/*}/workspaces:\tworkspace\332A\035parent,work" + + "space,workspace_id\022\265\001\n\017DeleteWorkspace\0226" + + ".google.cloud.dataform.v1alpha2.DeleteWo" + + "rkspaceRequest\032\026.google.protobuf.Empty\"R" + + "\202\323\344\223\002E*C/v1alpha2/{name=projects/*/locat" + + "ions/*/repositories/*/workspaces/*}\332A\004na" + + "me\022\363\001\n\022InstallNpmPackages\0229.google.cloud" + + ".dataform.v1alpha2.InstallNpmPackagesReq" + + "uest\032:.google.cloud.dataform.v1alpha2.In" + + "stallNpmPackagesResponse\"f\202\323\344\223\002`\"[/v1alp" + "ha2/{workspace=projects/*/locations/*/re" - + "positories/*/workspaces/*}:queryDirector" - + "yContents\022\337\001\n\rMakeDirectory\0224.google.clo" - + "ud.dataform.v1alpha2.MakeDirectoryReques" - + "t\0325.google.cloud.dataform.v1alpha2.MakeD" - + "irectoryResponse\"a\202\323\344\223\002[\"V/v1alpha2/{wor" - + "kspace=projects/*/locations/*/repositori" - + "es/*/workspaces/*}:makeDirectory:\001*\022\306\001\n\017" - + "RemoveDirectory\0226.google.cloud.dataform." - + "v1alpha2.RemoveDirectoryRequest\032\026.google" - + ".protobuf.Empty\"c\202\323\344\223\002]\"X/v1alpha2/{work" - + "space=projects/*/locations/*/repositorie" - + "s/*/workspaces/*}:removeDirectory:\001*\022\337\001\n" - + "\rMoveDirectory\0224.google.cloud.dataform.v" - + "1alpha2.MoveDirectoryRequest\0325.google.cl" - + "oud.dataform.v1alpha2.MoveDirectoryRespo" - + "nse\"a\202\323\344\223\002[\"V/v1alpha2/{workspace=projec" - + "ts/*/locations/*/repositories/*/workspac" - + "es/*}:moveDirectory:\001*\022\310\001\n\010ReadFile\022/.go" - + "ogle.cloud.dataform.v1alpha2.ReadFileReq" - + "uest\0320.google.cloud.dataform.v1alpha2.Re" - + "adFileResponse\"Y\202\323\344\223\002S\022Q/v1alpha2/{works" - + "pace=projects/*/locations/*/repositories" - + "/*/workspaces/*}:readFile\022\267\001\n\nRemoveFile" - + "\0221.google.cloud.dataform.v1alpha2.Remove" - + "FileRequest\032\026.google.protobuf.Empty\"^\202\323\344" - + "\223\002X\"S/v1alpha2/{workspace=projects/*/loc" - + "ations/*/repositories/*/workspaces/*}:re" - + "moveFile:\001*\022\313\001\n\010MoveFile\022/.google.cloud." - + "dataform.v1alpha2.MoveFileRequest\0320.goog" - + "le.cloud.dataform.v1alpha2.MoveFileRespo" - + "nse\"\\\202\323\344\223\002V\"Q/v1alpha2/{workspace=projec" - + "ts/*/locations/*/repositories/*/workspac" - + "es/*}:moveFile:\001*\022\317\001\n\tWriteFile\0220.google" - + ".cloud.dataform.v1alpha2.WriteFileReques" - + "t\0321.google.cloud.dataform.v1alpha2.Write" - + "FileResponse\"]\202\323\344\223\002W\"R/v1alpha2/{workspa" - + "ce=projects/*/locations/*/repositories/*" - + "/workspaces/*}:writeFile:\001*\022\365\001\n\026ListComp" - + "ilationResults\022=.google.cloud.dataform.v" - + "1alpha2.ListCompilationResultsRequest\032>." - + "google.cloud.dataform.v1alpha2.ListCompi" - + "lationResultsResponse\"\\\202\323\344\223\002M\022K/v1alpha2" - + "/{parent=projects/*/locations/*/reposito" - + "ries/*}/compilationResults\332A\006parent\022\342\001\n\024" - + "GetCompilationResult\022;.google.cloud.data" - + "form.v1alpha2.GetCompilationResultReques" - + "t\0321.google.cloud.dataform.v1alpha2.Compi" - + "lationResult\"Z\202\323\344\223\002M\022K/v1alpha2/{name=pr" - + "ojects/*/locations/*/repositories/*/comp" - + "ilationResults/*}\332A\004name\022\222\002\n\027CreateCompi" - + "lationResult\022>.google.cloud.dataform.v1a" - + "lpha2.CreateCompilationResultRequest\0321.g" - + "oogle.cloud.dataform.v1alpha2.Compilatio" - + "nResult\"\203\001\202\323\344\223\002a\"K/v1alpha2/{parent=proj" - + "ects/*/locations/*/repositories/*}/compi" - + "lationResults:\022compilation_result\332A\031pare" - + "nt,compilation_result\022\207\002\n\035QueryCompilati" - + "onResultActions\022D.google.cloud.dataform." - + "v1alpha2.QueryCompilationResultActionsRe" - + "quest\032E.google.cloud.dataform.v1alpha2.Q" - + "ueryCompilationResultActionsResponse\"Y\202\323" - + "\344\223\002S\022Q/v1alpha2/{name=projects/*/locatio" - + "ns/*/repositories/*/compilationResults/*" - + "}:query\022\371\001\n\027ListWorkflowInvocations\022>.go" - + "ogle.cloud.dataform.v1alpha2.ListWorkflo" - + "wInvocationsRequest\032?.google.cloud.dataf" - + "orm.v1alpha2.ListWorkflowInvocationsResp" - + "onse\"]\202\323\344\223\002N\022L/v1alpha2/{parent=projects" - + "/*/locations/*/repositories/*}/workflowI" - + "nvocations\332A\006parent\022\346\001\n\025GetWorkflowInvoc" - + "ation\022<.google.cloud.dataform.v1alpha2.G" - + "etWorkflowInvocationRequest\0322.google.clo" - + "ud.dataform.v1alpha2.WorkflowInvocation\"" - + "[\202\323\344\223\002N\022L/v1alpha2/{name=projects/*/loca" - + "tions/*/repositories/*/workflowInvocatio" - + "ns/*}\332A\004name\022\230\002\n\030CreateWorkflowInvocatio" - + "n\022?.google.cloud.dataform.v1alpha2.Creat" - + "eWorkflowInvocationRequest\0322.google.clou" - + "d.dataform.v1alpha2.WorkflowInvocation\"\206" - + "\001\202\323\344\223\002c\"L/v1alpha2/{parent=projects/*/lo" - + "cations/*/repositories/*}/workflowInvoca" - + "tions:\023workflow_invocation\332A\032parent,work" - + "flow_invocation\022\320\001\n\030DeleteWorkflowInvoca" - + "tion\022?.google.cloud.dataform.v1alpha2.De" - + "leteWorkflowInvocationRequest\032\026.google.p" - + "rotobuf.Empty\"[\202\323\344\223\002N*L/v1alpha2/{name=p" + + "positories/*/workspaces/*}:installNpmPac" + + "kages:\001*\022\264\001\n\016PullGitCommits\0225.google.clo" + + "ud.dataform.v1alpha2.PullGitCommitsReque" + + "st\032\026.google.protobuf.Empty\"S\202\323\344\223\002M\"H/v1a" + + "lpha2/{name=projects/*/locations/*/repos" + + "itories/*/workspaces/*}:pull:\001*\022\264\001\n\016Push" + + "GitCommits\0225.google.cloud.dataform.v1alp" + + "ha2.PushGitCommitsRequest\032\026.google.proto" + + "buf.Empty\"S\202\323\344\223\002M\"H/v1alpha2/{name=proje" + + "cts/*/locations/*/repositories/*/workspa" + + "ces/*}:push:\001*\022\363\001\n\024FetchFileGitStatuses\022" + + ";.google.cloud.dataform.v1alpha2.FetchFi" + + "leGitStatusesRequest\032<.google.cloud.data" + + "form.v1alpha2.FetchFileGitStatusesRespon" + + "se\"`\202\323\344\223\002Z\022X/v1alpha2/{name=projects/*/l" + + "ocations/*/repositories/*/workspaces/*}:" + + "fetchFileGitStatuses\022\357\001\n\023FetchGitAheadBe" + + "hind\022:.google.cloud.dataform.v1alpha2.Fe" + + "tchGitAheadBehindRequest\032;.google.cloud." + + "dataform.v1alpha2.FetchGitAheadBehindRes", + "ponse\"_\202\323\344\223\002Y\022W/v1alpha2/{name=projects/" + + "*/locations/*/repositories/*/workspaces/" + + "*}:fetchGitAheadBehind\022\306\001\n\026CommitWorkspa" + + "ceChanges\022=.google.cloud.dataform.v1alph" + + "a2.CommitWorkspaceChangesRequest\032\026.googl" + + "e.protobuf.Empty\"U\202\323\344\223\002O\"J/v1alpha2/{nam" + + "e=projects/*/locations/*/repositories/*/" + + "workspaces/*}:commit:\001*\022\303\001\n\025ResetWorkspa" + + "ceChanges\022<.google.cloud.dataform.v1alph" + + "a2.ResetWorkspaceChangesRequest\032\026.google" + + ".protobuf.Empty\"T\202\323\344\223\002N\"I/v1alpha2/{name" + + "=projects/*/locations/*/repositories/*/w" + + "orkspaces/*}:reset:\001*\022\334\001\n\rFetchFileDiff\022" + + "4.google.cloud.dataform.v1alpha2.FetchFi" + + "leDiffRequest\0325.google.cloud.dataform.v1" + + "alpha2.FetchFileDiffResponse\"^\202\323\344\223\002X\022V/v" + + "1alpha2/{workspace=projects/*/locations/" + + "*/repositories/*/workspaces/*}:fetchFile" + + "Diff\022\200\002\n\026QueryDirectoryContents\022=.google" + + ".cloud.dataform.v1alpha2.QueryDirectoryC" + + "ontentsRequest\032>.google.cloud.dataform.v" + + "1alpha2.QueryDirectoryContentsResponse\"g" + + "\202\323\344\223\002a\022_/v1alpha2/{workspace=projects/*/" + + "locations/*/repositories/*/workspaces/*}" + + ":queryDirectoryContents\022\337\001\n\rMakeDirector" + + "y\0224.google.cloud.dataform.v1alpha2.MakeD" + + "irectoryRequest\0325.google.cloud.dataform." + + "v1alpha2.MakeDirectoryResponse\"a\202\323\344\223\002[\"V" + + "/v1alpha2/{workspace=projects/*/location" + + "s/*/repositories/*/workspaces/*}:makeDir" + + "ectory:\001*\022\306\001\n\017RemoveDirectory\0226.google.c" + + "loud.dataform.v1alpha2.RemoveDirectoryRe" + + "quest\032\026.google.protobuf.Empty\"c\202\323\344\223\002]\"X/" + + "v1alpha2/{workspace=projects/*/locations" + + "/*/repositories/*/workspaces/*}:removeDi" + + "rectory:\001*\022\337\001\n\rMoveDirectory\0224.google.cl" + + "oud.dataform.v1alpha2.MoveDirectoryReque" + + "st\0325.google.cloud.dataform.v1alpha2.Move" + + "DirectoryResponse\"a\202\323\344\223\002[\"V/v1alpha2/{wo" + + "rkspace=projects/*/locations/*/repositor" + + "ies/*/workspaces/*}:moveDirectory:\001*\022\310\001\n" + + "\010ReadFile\022/.google.cloud.dataform.v1alph" + + "a2.ReadFileRequest\0320.google.cloud.datafo" + + "rm.v1alpha2.ReadFileResponse\"Y\202\323\344\223\002S\022Q/v" + + "1alpha2/{workspace=projects/*/locations/" + + "*/repositories/*/workspaces/*}:readFile\022" + + "\267\001\n\nRemoveFile\0221.google.cloud.dataform.v" + + "1alpha2.RemoveFileRequest\032\026.google.proto" + + "buf.Empty\"^\202\323\344\223\002X\"S/v1alpha2/{workspace=" + + "projects/*/locations/*/repositories/*/wo" + + "rkspaces/*}:removeFile:\001*\022\313\001\n\010MoveFile\022/" + + ".google.cloud.dataform.v1alpha2.MoveFile" + + "Request\0320.google.cloud.dataform.v1alpha2" + + ".MoveFileResponse\"\\\202\323\344\223\002V\"Q/v1alpha2/{wo" + + "rkspace=projects/*/locations/*/repositor" + + "ies/*/workspaces/*}:moveFile:\001*\022\317\001\n\tWrit" + + "eFile\0220.google.cloud.dataform.v1alpha2.W" + + "riteFileRequest\0321.google.cloud.dataform." + + "v1alpha2.WriteFileResponse\"]\202\323\344\223\002W\"R/v1a" + + "lpha2/{workspace=projects/*/locations/*/" + + "repositories/*/workspaces/*}:writeFile:\001" + + "*\022\365\001\n\026ListCompilationResults\022=.google.cl" + + "oud.dataform.v1alpha2.ListCompilationRes" + + "ultsRequest\032>.google.cloud.dataform.v1al" + + "pha2.ListCompilationResultsResponse\"\\\202\323\344" + + "\223\002M\022K/v1alpha2/{parent=projects/*/locati" + + "ons/*/repositories/*}/compilationResults" + + "\332A\006parent\022\342\001\n\024GetCompilationResult\022;.goo" + + "gle.cloud.dataform.v1alpha2.GetCompilati" + + "onResultRequest\0321.google.cloud.dataform." + + "v1alpha2.CompilationResult\"Z\202\323\344\223\002M\022K/v1a" + + "lpha2/{name=projects/*/locations/*/repos" + + "itories/*/compilationResults/*}\332A\004name\022\222" + + "\002\n\027CreateCompilationResult\022>.google.clou" + + "d.dataform.v1alpha2.CreateCompilationRes" + + "ultRequest\0321.google.cloud.dataform.v1alp" + + "ha2.CompilationResult\"\203\001\202\323\344\223\002a\"K/v1alpha" + + "2/{parent=projects/*/locations/*/reposit" + + "ories/*}/compilationResults:\022compilation" + + "_result\332A\031parent,compilation_result\022\207\002\n\035" + + "QueryCompilationResultActions\022D.google.c" + + "loud.dataform.v1alpha2.QueryCompilationR" + + "esultActionsRequest\032E.google.cloud.dataf" + + "orm.v1alpha2.QueryCompilationResultActio" + + "nsResponse\"Y\202\323\344\223\002S\022Q/v1alpha2/{name=proj" + + "ects/*/locations/*/repositories/*/compil" + + "ationResults/*}:query\022\371\001\n\027ListWorkflowIn" + + "vocations\022>.google.cloud.dataform.v1alph" + + "a2.ListWorkflowInvocationsRequest\032?.goog" + + "le.cloud.dataform.v1alpha2.ListWorkflowI" + + "nvocationsResponse\"]\202\323\344\223\002N\022L/v1alpha2/{p" + + "arent=projects/*/locations/*/repositorie" + + "s/*}/workflowInvocations\332A\006parent\022\346\001\n\025Ge" + + "tWorkflowInvocation\022<.google.cloud.dataf" + + "orm.v1alpha2.GetWorkflowInvocationReques" + + "t\0322.google.cloud.dataform.v1alpha2.Workf" + + "lowInvocation\"[\202\323\344\223\002N\022L/v1alpha2/{name=p" + "rojects/*/locations/*/repositories/*/wor" - + "kflowInvocations/*}\332A\004name\022\323\001\n\030CancelWor" + + "kflowInvocations/*}\332A\004name\022\230\002\n\030CreateWor" + "kflowInvocation\022?.google.cloud.dataform." - + "v1alpha2.CancelWorkflowInvocationRequest" - + "\032\026.google.protobuf.Empty\"^\202\323\344\223\002X\"S/v1alp" - + "ha2/{name=projects/*/locations/*/reposit" - + "ories/*/workflowInvocations/*}:cancel:\001*" - + "\022\213\002\n\036QueryWorkflowInvocationActions\022E.go" - + "ogle.cloud.dataform.v1alpha2.QueryWorkfl" - + "owInvocationActionsRequest\032F.google.clou" - + "d.dataform.v1alpha2.QueryWorkflowInvocat" - + "ionActionsResponse\"Z\202\323\344\223\002T\022R/v1alpha2/{n" - + "ame=projects/*/locations/*/repositories/" - + "*/workflowInvocations/*}:query\032K\312A\027dataf" - + "orm.googleapis.com\322A.https://www.googlea" - + "pis.com/auth/cloud-platformB\312\002\n\"com.goog" - + "le.cloud.dataform.v1alpha2B\rDataformProt" - + "oP\001ZFgoogle.golang.org/genproto/googleap" - + "is/cloud/dataform/v1alpha2;dataform\252\002\036Go" - + "ogle.Cloud.Dataform.V1Alpha2\312\002\036Google\\Cl" - + "oud\\Dataform\\V1alpha2\352\002!Google::Cloud::D" - + "ataform::V1alpha2\352Ad\n*secretmanager.goog" - + "leapis.com/SecretVersion\0226projects/{proj" - + "ect}/secrets/{secret}/versions/{version}" - + "b\006proto3" + + "v1alpha2.CreateWorkflowInvocationRequest" + + "\0322.google.cloud.dataform.v1alpha2.Workfl" + + "owInvocation\"\206\001\202\323\344\223\002c\"L/v1alpha2/{parent" + + "=projects/*/locations/*/repositories/*}/" + + "workflowInvocations:\023workflow_invocation" + + "\332A\032parent,workflow_invocation\022\320\001\n\030Delete" + + "WorkflowInvocation\022?.google.cloud.datafo" + + "rm.v1alpha2.DeleteWorkflowInvocationRequ" + + "est\032\026.google.protobuf.Empty\"[\202\323\344\223\002N*L/v1" + + "alpha2/{name=projects/*/locations/*/repo" + + "sitories/*/workflowInvocations/*}\332A\004name" + + "\022\323\001\n\030CancelWorkflowInvocation\022?.google.c" + + "loud.dataform.v1alpha2.CancelWorkflowInv" + + "ocationRequest\032\026.google.protobuf.Empty\"^" + + "\202\323\344\223\002X\"S/v1alpha2/{name=projects/*/locat" + + "ions/*/repositories/*/workflowInvocation" + + "s/*}:cancel:\001*\022\213\002\n\036QueryWorkflowInvocati" + + "onActions\022E.google.cloud.dataform.v1alph" + + "a2.QueryWorkflowInvocationActionsRequest" + + "\032F.google.cloud.dataform.v1alpha2.QueryW" + + "orkflowInvocationActionsResponse\"Z\202\323\344\223\002T" + + "\022R/v1alpha2/{name=projects/*/locations/*" + + "/repositories/*/workflowInvocations/*}:q" + + "uery\032K\312A\027dataform.googleapis.com\322A.https" + + "://www.googleapis.com/auth/cloud-platfor" + + "mB\312\002\n\"com.google.cloud.dataform.v1alpha2" + + "B\rDataformProtoP\001ZFgoogle.golang.org/gen" + + "proto/googleapis/cloud/dataform/v1alpha2" + + ";dataform\252\002\036Google.Cloud.Dataform.V1Alph" + + "a2\312\002\036Google\\Cloud\\Dataform\\V1alpha2\352\002!Go" + + "ogle::Cloud::Dataform::V1alpha2\352Ad\n*secr" + + "etmanager.googleapis.com/SecretVersion\0226" + + "projects/{project}/secrets/{secret}/vers" + + "ions/{version}b\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( @@ -925,7 +927,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_dataform_v1alpha2_ListRepositoriesResponse_descriptor, new java.lang.String[] { - "Repositories", "NextPageToken", + "Repositories", "NextPageToken", "Unreachable", }); internal_static_google_cloud_dataform_v1alpha2_GetRepositoryRequest_descriptor = getDescriptor().getMessageTypes().get(3); @@ -997,7 +999,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_dataform_v1alpha2_ListWorkspacesResponse_descriptor, new java.lang.String[] { - "Workspaces", "NextPageToken", + "Workspaces", "NextPageToken", "Unreachable", }); internal_static_google_cloud_dataform_v1alpha2_GetWorkspaceRequest_descriptor = getDescriptor().getMessageTypes().get(12); @@ -1314,7 +1316,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_dataform_v1alpha2_ListCompilationResultsResponse_descriptor, new java.lang.String[] { - "CompilationResults", "NextPageToken", + "CompilationResults", "NextPageToken", "Unreachable", }); internal_static_google_cloud_dataform_v1alpha2_GetCompilationResultRequest_descriptor = getDescriptor().getMessageTypes().get(45); @@ -1518,7 +1520,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_dataform_v1alpha2_ListWorkflowInvocationsResponse_descriptor, new java.lang.String[] { - "WorkflowInvocations", "NextPageToken", + "WorkflowInvocations", "NextPageToken", "Unreachable", }); internal_static_google_cloud_dataform_v1alpha2_GetWorkflowInvocationRequest_descriptor = getDescriptor().getMessageTypes().get(55); @@ -1558,7 +1560,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_dataform_v1alpha2_WorkflowInvocationAction_descriptor, new java.lang.String[] { - "Target", "CanonicalTarget", "State", "InvocationTiming", "BigqueryAction", + "Target", + "CanonicalTarget", + "State", + "FailureReason", + "InvocationTiming", + "BigqueryAction", }); internal_static_google_cloud_dataform_v1alpha2_WorkflowInvocationAction_BigQueryAction_descriptor = internal_static_google_cloud_dataform_v1alpha2_WorkflowInvocationAction_descriptor @@ -1576,7 +1583,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_cloud_dataform_v1alpha2_QueryWorkflowInvocationActionsRequest_descriptor, new java.lang.String[] { - "Name", "PageSize", "PageToken", "Filter", + "Name", "PageSize", "PageToken", }); internal_static_google_cloud_dataform_v1alpha2_QueryWorkflowInvocationActionsResponse_descriptor = getDescriptor().getMessageTypes().get(61); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponse.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponse.java index 36011d7..0767d5c 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponse.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponse.java @@ -41,6 +41,7 @@ private ListCompilationResultsResponse( private ListCompilationResultsResponse() { compilationResults_ = java.util.Collections.emptyList(); nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @@ -93,6 +94,16 @@ private ListCompilationResultsResponse( nextPageToken_ = s; break; } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000002; + } + unreachable_.add(s); + break; + } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { @@ -112,6 +123,9 @@ private ListCompilationResultsResponse( if (((mutable_bitField0_ & 0x00000001) != 0)) { compilationResults_ = java.util.Collections.unmodifiableList(compilationResults_); } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -259,6 +273,67 @@ public com.google.protobuf.ByteString getNextPageTokenBytes() { } } + public static final int UNREACHABLE_FIELD_NUMBER = 3; + private com.google.protobuf.LazyStringList unreachable_; + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_; + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -279,6 +354,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_); } + for (int i = 0; i < unreachable_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, unreachable_.getRaw(i)); + } unknownFields.writeTo(output); } @@ -295,6 +373,14 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_); } + { + int dataSize = 0; + for (int i = 0; i < unreachable_.size(); i++) { + dataSize += computeStringSizeNoTag(unreachable_.getRaw(i)); + } + size += dataSize; + size += 1 * getUnreachableList().size(); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -313,6 +399,7 @@ public boolean equals(final java.lang.Object obj) { if (!getCompilationResultsList().equals(other.getCompilationResultsList())) return false; if (!getNextPageToken().equals(other.getNextPageToken())) return false; + if (!getUnreachableList().equals(other.getUnreachableList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -330,6 +417,10 @@ public int hashCode() { } hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getNextPageToken().hashCode(); + if (getUnreachableCount() > 0) { + hash = (37 * hash) + UNREACHABLE_FIELD_NUMBER; + hash = (53 * hash) + getUnreachableList().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -488,6 +579,8 @@ public Builder clear() { } nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -527,6 +620,11 @@ public com.google.cloud.dataform.v1alpha2.ListCompilationResultsResponse buildPa result.compilationResults_ = compilationResultsBuilder_.build(); } result.nextPageToken_ = nextPageToken_; + if (((bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.unreachable_ = unreachable_; onBuilt(); return result; } @@ -610,6 +708,16 @@ public Builder mergeFrom( nextPageToken_ = other.nextPageToken_; onChanged(); } + if (!other.unreachable_.isEmpty()) { + if (unreachable_.isEmpty()) { + unreachable_ = other.unreachable_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureUnreachableIsMutable(); + unreachable_.addAll(other.unreachable_); + } + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1136,6 +1244,174 @@ public Builder setNextPageTokenBytes(com.google.protobuf.ByteString value) { return this; } + private com.google.protobuf.LazyStringList unreachable_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureUnreachableIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(unreachable_); + bitField0_ |= 0x00000002; + } + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_.getUnmodifiableView(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index to set the value at. + * @param value The unreachable to set. + * @return This builder for chaining. + */ + public Builder setUnreachable(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.set(index, value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachable(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param values The unreachable to add. + * @return This builder for chaining. + */ + public Builder addAllUnreachable(java.lang.Iterable values) { + ensureUnreachableIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, unreachable_); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return This builder for chaining. + */ + public Builder clearUnreachable() { + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The bytes of the unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachableBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponseOrBuilder.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponseOrBuilder.java index 70891f5..60be13b 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponseOrBuilder.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListCompilationResultsResponseOrBuilder.java @@ -107,4 +107,55 @@ com.google.cloud.dataform.v1alpha2.CompilationResultOrBuilder getCompilationResu * @return The bytes for nextPageToken. */ com.google.protobuf.ByteString getNextPageTokenBytes(); + + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + java.util.List getUnreachableList(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + int getUnreachableCount(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + java.lang.String getUnreachable(int index); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + com.google.protobuf.ByteString getUnreachableBytes(int index); } diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponse.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponse.java index 9da0b2e..35e257f 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponse.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponse.java @@ -40,6 +40,7 @@ private ListRepositoriesResponse(com.google.protobuf.GeneratedMessageV3.Builder< private ListRepositoriesResponse() { repositories_ = java.util.Collections.emptyList(); nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @@ -91,6 +92,16 @@ private ListRepositoriesResponse( nextPageToken_ = s; break; } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000002; + } + unreachable_.add(s); + break; + } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { @@ -110,6 +121,9 @@ private ListRepositoriesResponse( if (((mutable_bitField0_ & 0x00000001) != 0)) { repositories_ = java.util.Collections.unmodifiableList(repositories_); } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -251,6 +265,67 @@ public com.google.protobuf.ByteString getNextPageTokenBytes() { } } + public static final int UNREACHABLE_FIELD_NUMBER = 3; + private com.google.protobuf.LazyStringList unreachable_; + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_; + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -271,6 +346,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_); } + for (int i = 0; i < unreachable_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, unreachable_.getRaw(i)); + } unknownFields.writeTo(output); } @@ -286,6 +364,14 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_); } + { + int dataSize = 0; + for (int i = 0; i < unreachable_.size(); i++) { + dataSize += computeStringSizeNoTag(unreachable_.getRaw(i)); + } + size += dataSize; + size += 1 * getUnreachableList().size(); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -304,6 +390,7 @@ public boolean equals(final java.lang.Object obj) { if (!getRepositoriesList().equals(other.getRepositoriesList())) return false; if (!getNextPageToken().equals(other.getNextPageToken())) return false; + if (!getUnreachableList().equals(other.getUnreachableList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -321,6 +408,10 @@ public int hashCode() { } hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getNextPageToken().hashCode(); + if (getUnreachableCount() > 0) { + hash = (37 * hash) + UNREACHABLE_FIELD_NUMBER; + hash = (53 * hash) + getUnreachableList().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -477,6 +568,8 @@ public Builder clear() { } nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -515,6 +608,11 @@ public com.google.cloud.dataform.v1alpha2.ListRepositoriesResponse buildPartial( result.repositories_ = repositoriesBuilder_.build(); } result.nextPageToken_ = nextPageToken_; + if (((bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.unreachable_ = unreachable_; onBuilt(); return result; } @@ -596,6 +694,16 @@ public Builder mergeFrom(com.google.cloud.dataform.v1alpha2.ListRepositoriesResp nextPageToken_ = other.nextPageToken_; onChanged(); } + if (!other.unreachable_.isEmpty()) { + if (unreachable_.isEmpty()) { + unreachable_ = other.unreachable_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureUnreachableIsMutable(); + unreachable_.addAll(other.unreachable_); + } + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1091,6 +1199,174 @@ public Builder setNextPageTokenBytes(com.google.protobuf.ByteString value) { return this; } + private com.google.protobuf.LazyStringList unreachable_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureUnreachableIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(unreachable_); + bitField0_ |= 0x00000002; + } + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_.getUnmodifiableView(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index to set the value at. + * @param value The unreachable to set. + * @return This builder for chaining. + */ + public Builder setUnreachable(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.set(index, value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachable(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param values The unreachable to add. + * @return This builder for chaining. + */ + public Builder addAllUnreachable(java.lang.Iterable values) { + ensureUnreachableIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, unreachable_); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return This builder for chaining. + */ + public Builder clearUnreachable() { + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The bytes of the unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachableBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponseOrBuilder.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponseOrBuilder.java index f4a3c4e..2c5eaa5 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponseOrBuilder.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListRepositoriesResponseOrBuilder.java @@ -101,4 +101,55 @@ public interface ListRepositoriesResponseOrBuilder * @return The bytes for nextPageToken. */ com.google.protobuf.ByteString getNextPageTokenBytes(); + + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + java.util.List getUnreachableList(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + int getUnreachableCount(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + java.lang.String getUnreachable(int index); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + com.google.protobuf.ByteString getUnreachableBytes(int index); } diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponse.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponse.java index 07c937a..ac50089 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponse.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponse.java @@ -41,6 +41,7 @@ private ListWorkflowInvocationsResponse( private ListWorkflowInvocationsResponse() { workflowInvocations_ = java.util.Collections.emptyList(); nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @@ -94,6 +95,16 @@ private ListWorkflowInvocationsResponse( nextPageToken_ = s; break; } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000002; + } + unreachable_.add(s); + break; + } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { @@ -113,6 +124,9 @@ private ListWorkflowInvocationsResponse( if (((mutable_bitField0_ & 0x00000001) != 0)) { workflowInvocations_ = java.util.Collections.unmodifiableList(workflowInvocations_); } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -261,6 +275,67 @@ public com.google.protobuf.ByteString getNextPageTokenBytes() { } } + public static final int UNREACHABLE_FIELD_NUMBER = 3; + private com.google.protobuf.LazyStringList unreachable_; + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_; + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -281,6 +356,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_); } + for (int i = 0; i < unreachable_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, unreachable_.getRaw(i)); + } unknownFields.writeTo(output); } @@ -297,6 +375,14 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_); } + { + int dataSize = 0; + for (int i = 0; i < unreachable_.size(); i++) { + dataSize += computeStringSizeNoTag(unreachable_.getRaw(i)); + } + size += dataSize; + size += 1 * getUnreachableList().size(); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -315,6 +401,7 @@ public boolean equals(final java.lang.Object obj) { if (!getWorkflowInvocationsList().equals(other.getWorkflowInvocationsList())) return false; if (!getNextPageToken().equals(other.getNextPageToken())) return false; + if (!getUnreachableList().equals(other.getUnreachableList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -332,6 +419,10 @@ public int hashCode() { } hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getNextPageToken().hashCode(); + if (getUnreachableCount() > 0) { + hash = (37 * hash) + UNREACHABLE_FIELD_NUMBER; + hash = (53 * hash) + getUnreachableList().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -490,6 +581,8 @@ public Builder clear() { } nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -530,6 +623,11 @@ public com.google.cloud.dataform.v1alpha2.ListWorkflowInvocationsResponse buildP result.workflowInvocations_ = workflowInvocationsBuilder_.build(); } result.nextPageToken_ = nextPageToken_; + if (((bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.unreachable_ = unreachable_; onBuilt(); return result; } @@ -614,6 +712,16 @@ public Builder mergeFrom( nextPageToken_ = other.nextPageToken_; onChanged(); } + if (!other.unreachable_.isEmpty()) { + if (unreachable_.isEmpty()) { + unreachable_ = other.unreachable_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureUnreachableIsMutable(); + unreachable_.addAll(other.unreachable_); + } + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1141,6 +1249,174 @@ public Builder setNextPageTokenBytes(com.google.protobuf.ByteString value) { return this; } + private com.google.protobuf.LazyStringList unreachable_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureUnreachableIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(unreachable_); + bitField0_ |= 0x00000002; + } + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_.getUnmodifiableView(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index to set the value at. + * @param value The unreachable to set. + * @return This builder for chaining. + */ + public Builder setUnreachable(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.set(index, value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachable(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param values The unreachable to add. + * @return This builder for chaining. + */ + public Builder addAllUnreachable(java.lang.Iterable values) { + ensureUnreachableIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, unreachable_); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return This builder for chaining. + */ + public Builder clearUnreachable() { + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The bytes of the unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachableBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponseOrBuilder.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponseOrBuilder.java index 426e3b0..0313b99 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponseOrBuilder.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkflowInvocationsResponseOrBuilder.java @@ -108,4 +108,55 @@ com.google.cloud.dataform.v1alpha2.WorkflowInvocationOrBuilder getWorkflowInvoca * @return The bytes for nextPageToken. */ com.google.protobuf.ByteString getNextPageTokenBytes(); + + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + java.util.List getUnreachableList(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + int getUnreachableCount(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + java.lang.String getUnreachable(int index); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + com.google.protobuf.ByteString getUnreachableBytes(int index); } diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponse.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponse.java index bafce83..c342be0 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponse.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponse.java @@ -40,6 +40,7 @@ private ListWorkspacesResponse(com.google.protobuf.GeneratedMessageV3.Builder private ListWorkspacesResponse() { workspaces_ = java.util.Collections.emptyList(); nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @@ -91,6 +92,16 @@ private ListWorkspacesResponse( nextPageToken_ = s; break; } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000002; + } + unreachable_.add(s); + break; + } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { @@ -110,6 +121,9 @@ private ListWorkspacesResponse( if (((mutable_bitField0_ & 0x00000001) != 0)) { workspaces_ = java.util.Collections.unmodifiableList(workspaces_); } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -250,6 +264,67 @@ public com.google.protobuf.ByteString getNextPageTokenBytes() { } } + public static final int UNREACHABLE_FIELD_NUMBER = 3; + private com.google.protobuf.LazyStringList unreachable_; + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_; + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -270,6 +345,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_); } + for (int i = 0; i < unreachable_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, unreachable_.getRaw(i)); + } unknownFields.writeTo(output); } @@ -285,6 +363,14 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nextPageToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_); } + { + int dataSize = 0; + for (int i = 0; i < unreachable_.size(); i++) { + dataSize += computeStringSizeNoTag(unreachable_.getRaw(i)); + } + size += dataSize; + size += 1 * getUnreachableList().size(); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -303,6 +389,7 @@ public boolean equals(final java.lang.Object obj) { if (!getWorkspacesList().equals(other.getWorkspacesList())) return false; if (!getNextPageToken().equals(other.getNextPageToken())) return false; + if (!getUnreachableList().equals(other.getUnreachableList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -320,6 +407,10 @@ public int hashCode() { } hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getNextPageToken().hashCode(); + if (getUnreachableCount() > 0) { + hash = (37 * hash) + UNREACHABLE_FIELD_NUMBER; + hash = (53 * hash) + getUnreachableList().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -476,6 +567,8 @@ public Builder clear() { } nextPageToken_ = ""; + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -514,6 +607,11 @@ public com.google.cloud.dataform.v1alpha2.ListWorkspacesResponse buildPartial() result.workspaces_ = workspacesBuilder_.build(); } result.nextPageToken_ = nextPageToken_; + if (((bitField0_ & 0x00000002) != 0)) { + unreachable_ = unreachable_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.unreachable_ = unreachable_; onBuilt(); return result; } @@ -595,6 +693,16 @@ public Builder mergeFrom(com.google.cloud.dataform.v1alpha2.ListWorkspacesRespon nextPageToken_ = other.nextPageToken_; onChanged(); } + if (!other.unreachable_.isEmpty()) { + if (unreachable_.isEmpty()) { + unreachable_ = other.unreachable_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureUnreachableIsMutable(); + unreachable_.addAll(other.unreachable_); + } + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1089,6 +1197,174 @@ public Builder setNextPageTokenBytes(com.google.protobuf.ByteString value) { return this; } + private com.google.protobuf.LazyStringList unreachable_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureUnreachableIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + unreachable_ = new com.google.protobuf.LazyStringArrayList(unreachable_); + bitField0_ |= 0x00000002; + } + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + public com.google.protobuf.ProtocolStringList getUnreachableList() { + return unreachable_.getUnmodifiableView(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + public int getUnreachableCount() { + return unreachable_.size(); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + public java.lang.String getUnreachable(int index) { + return unreachable_.get(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + public com.google.protobuf.ByteString getUnreachableBytes(int index) { + return unreachable_.getByteString(index); + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param index The index to set the value at. + * @param value The unreachable to set. + * @return This builder for chaining. + */ + public Builder setUnreachable(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.set(index, value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachable(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param values The unreachable to add. + * @return This builder for chaining. + */ + public Builder addAllUnreachable(java.lang.Iterable values) { + ensureUnreachableIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, unreachable_); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @return This builder for chaining. + */ + public Builder clearUnreachable() { + unreachable_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** + * + * + *
+     * Locations which could not be reached.
+     * 
+ * + * repeated string unreachable = 3; + * + * @param value The bytes of the unreachable to add. + * @return This builder for chaining. + */ + public Builder addUnreachableBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureUnreachableIsMutable(); + unreachable_.add(value); + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponseOrBuilder.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponseOrBuilder.java index 467098e..3589dc0 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponseOrBuilder.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/ListWorkspacesResponseOrBuilder.java @@ -101,4 +101,55 @@ public interface ListWorkspacesResponseOrBuilder * @return The bytes for nextPageToken. */ com.google.protobuf.ByteString getNextPageTokenBytes(); + + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return A list containing the unreachable. + */ + java.util.List getUnreachableList(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @return The count of unreachable. + */ + int getUnreachableCount(); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the element to return. + * @return The unreachable at the given index. + */ + java.lang.String getUnreachable(int index); + /** + * + * + *
+   * Locations which could not be reached.
+   * 
+ * + * repeated string unreachable = 3; + * + * @param index The index of the value to return. + * @return The bytes of the unreachable at the given index. + */ + com.google.protobuf.ByteString getUnreachableBytes(int index); } diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequest.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequest.java index 07fe75c..e5c3132 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequest.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequest.java @@ -42,7 +42,6 @@ private QueryWorkflowInvocationActionsRequest( private QueryWorkflowInvocationActionsRequest() { name_ = ""; pageToken_ = ""; - filter_ = ""; } @java.lang.Override @@ -93,13 +92,6 @@ private QueryWorkflowInvocationActionsRequest( pageToken_ = s; break; } - case 34: - { - java.lang.String s = input.readStringRequireUtf8(); - - filter_ = s; - break; - } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { @@ -266,57 +258,6 @@ public com.google.protobuf.ByteString getPageTokenBytes() { } } - public static final int FILTER_FIELD_NUMBER = 4; - private volatile java.lang.Object filter_; - /** - * - * - *
-   * Optional. Optional filter for the returned list. Filtering is only currently
-   * supported on the `file_path` field.
-   * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The filter. - */ - @java.lang.Override - public java.lang.String getFilter() { - java.lang.Object ref = filter_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - filter_ = s; - return s; - } - } - /** - * - * - *
-   * Optional. Optional filter for the returned list. Filtering is only currently
-   * supported on the `file_path` field.
-   * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for filter. - */ - @java.lang.Override - public com.google.protobuf.ByteString getFilterBytes() { - java.lang.Object ref = filter_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - filter_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - private byte memoizedIsInitialized = -1; @java.lang.Override @@ -340,9 +281,6 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, pageToken_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filter_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, filter_); - } unknownFields.writeTo(output); } @@ -361,9 +299,6 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pageToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, pageToken_); } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(filter_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, filter_); - } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -384,7 +319,6 @@ public boolean equals(final java.lang.Object obj) { if (!getName().equals(other.getName())) return false; if (getPageSize() != other.getPageSize()) return false; if (!getPageToken().equals(other.getPageToken())) return false; - if (!getFilter().equals(other.getFilter())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -402,8 +336,6 @@ public int hashCode() { hash = (53 * hash) + getPageSize(); hash = (37 * hash) + PAGE_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getPageToken().hashCode(); - hash = (37 * hash) + FILTER_FIELD_NUMBER; - hash = (53 * hash) + getFilter().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -559,8 +491,6 @@ public Builder clear() { pageToken_ = ""; - filter_ = ""; - return this; } @@ -594,7 +524,6 @@ public com.google.cloud.dataform.v1alpha2.QueryWorkflowInvocationActionsRequest result.name_ = name_; result.pageSize_ = pageSize_; result.pageToken_ = pageToken_; - result.filter_ = filter_; onBuilt(); return result; } @@ -660,10 +589,6 @@ public Builder mergeFrom( pageToken_ = other.pageToken_; onChanged(); } - if (!other.getFilter().isEmpty()) { - filter_ = other.filter_; - onChanged(); - } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -995,117 +920,6 @@ public Builder setPageTokenBytes(com.google.protobuf.ByteString value) { return this; } - private java.lang.Object filter_ = ""; - /** - * - * - *
-     * Optional. Optional filter for the returned list. Filtering is only currently
-     * supported on the `file_path` field.
-     * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The filter. - */ - public java.lang.String getFilter() { - java.lang.Object ref = filter_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - filter_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * - * - *
-     * Optional. Optional filter for the returned list. Filtering is only currently
-     * supported on the `file_path` field.
-     * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for filter. - */ - public com.google.protobuf.ByteString getFilterBytes() { - java.lang.Object ref = filter_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - filter_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * - * - *
-     * Optional. Optional filter for the returned list. Filtering is only currently
-     * supported on the `file_path` field.
-     * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @param value The filter to set. - * @return This builder for chaining. - */ - public Builder setFilter(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - filter_ = value; - onChanged(); - return this; - } - /** - * - * - *
-     * Optional. Optional filter for the returned list. Filtering is only currently
-     * supported on the `file_path` field.
-     * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return This builder for chaining. - */ - public Builder clearFilter() { - - filter_ = getDefaultInstance().getFilter(); - onChanged(); - return this; - } - /** - * - * - *
-     * Optional. Optional filter for the returned list. Filtering is only currently
-     * supported on the `file_path` field.
-     * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @param value The bytes for filter to set. - * @return This builder for chaining. - */ - public Builder setFilterBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - filter_ = value; - onChanged(); - return this; - } - @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequestOrBuilder.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequestOrBuilder.java index 15f67c2..8cba9c9 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequestOrBuilder.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/QueryWorkflowInvocationActionsRequestOrBuilder.java @@ -99,31 +99,4 @@ public interface QueryWorkflowInvocationActionsRequestOrBuilder * @return The bytes for pageToken. */ com.google.protobuf.ByteString getPageTokenBytes(); - - /** - * - * - *
-   * Optional. Optional filter for the returned list. Filtering is only currently
-   * supported on the `file_path` field.
-   * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The filter. - */ - java.lang.String getFilter(); - /** - * - * - *
-   * Optional. Optional filter for the returned list. Filtering is only currently
-   * supported on the `file_path` field.
-   * 
- * - * string filter = 4 [(.google.api.field_behavior) = OPTIONAL]; - * - * @return The bytes for filter. - */ - com.google.protobuf.ByteString getFilterBytes(); } diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationAction.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationAction.java index 4d5c549..d85097c 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationAction.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationAction.java @@ -39,6 +39,7 @@ private WorkflowInvocationAction(com.google.protobuf.GeneratedMessageV3.Builder< private WorkflowInvocationAction() { state_ = 0; + failureReason_ = ""; } @java.lang.Override @@ -141,6 +142,13 @@ private WorkflowInvocationAction( bigqueryAction_ = subBuilder.buildPartial(); } + break; + } + case 58: + { + java.lang.String s = input.readStringRequireUtf8(); + + failureReason_ = s; break; } default: @@ -1262,6 +1270,55 @@ public com.google.cloud.dataform.v1alpha2.WorkflowInvocationAction.State getStat : result; } + public static final int FAILURE_REASON_FIELD_NUMBER = 7; + private volatile java.lang.Object failureReason_; + /** + * + * + *
+   * Output only. If and only if action's state is FAILED a failure reason is set.
+   * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The failureReason. + */ + @java.lang.Override + public java.lang.String getFailureReason() { + java.lang.Object ref = failureReason_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + failureReason_ = s; + return s; + } + } + /** + * + * + *
+   * Output only. If and only if action's state is FAILED a failure reason is set.
+   * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The bytes for failureReason. + */ + @java.lang.Override + public com.google.protobuf.ByteString getFailureReasonBytes() { + java.lang.Object ref = failureReason_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + failureReason_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + public static final int INVOCATION_TIMING_FIELD_NUMBER = 5; private com.google.type.Interval invocationTiming_; /** @@ -1413,6 +1470,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (bigqueryAction_ != null) { output.writeMessage(6, getBigqueryAction()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(failureReason_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, failureReason_); + } unknownFields.writeTo(output); } @@ -1438,6 +1498,9 @@ public int getSerializedSize() { if (bigqueryAction_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getBigqueryAction()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(failureReason_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, failureReason_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -1463,6 +1526,7 @@ public boolean equals(final java.lang.Object obj) { if (!getCanonicalTarget().equals(other.getCanonicalTarget())) return false; } if (state_ != other.state_) return false; + if (!getFailureReason().equals(other.getFailureReason())) return false; if (hasInvocationTiming() != other.hasInvocationTiming()) return false; if (hasInvocationTiming()) { if (!getInvocationTiming().equals(other.getInvocationTiming())) return false; @@ -1492,6 +1556,8 @@ public int hashCode() { } hash = (37 * hash) + STATE_FIELD_NUMBER; hash = (53 * hash) + state_; + hash = (37 * hash) + FAILURE_REASON_FIELD_NUMBER; + hash = (53 * hash) + getFailureReason().hashCode(); if (hasInvocationTiming()) { hash = (37 * hash) + INVOCATION_TIMING_FIELD_NUMBER; hash = (53 * hash) + getInvocationTiming().hashCode(); @@ -1660,6 +1726,8 @@ public Builder clear() { } state_ = 0; + failureReason_ = ""; + if (invocationTimingBuilder_ == null) { invocationTiming_ = null; } else { @@ -1710,6 +1778,7 @@ public com.google.cloud.dataform.v1alpha2.WorkflowInvocationAction buildPartial( result.canonicalTarget_ = canonicalTargetBuilder_.build(); } result.state_ = state_; + result.failureReason_ = failureReason_; if (invocationTimingBuilder_ == null) { result.invocationTiming_ = invocationTiming_; } else { @@ -1779,6 +1848,10 @@ public Builder mergeFrom(com.google.cloud.dataform.v1alpha2.WorkflowInvocationAc if (other.state_ != 0) { setStateValue(other.getStateValue()); } + if (!other.getFailureReason().isEmpty()) { + failureReason_ = other.failureReason_; + onChanged(); + } if (other.hasInvocationTiming()) { mergeInvocationTiming(other.getInvocationTiming()); } @@ -2335,6 +2408,112 @@ public Builder clearState() { return this; } + private java.lang.Object failureReason_ = ""; + /** + * + * + *
+     * Output only. If and only if action's state is FAILED a failure reason is set.
+     * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The failureReason. + */ + public java.lang.String getFailureReason() { + java.lang.Object ref = failureReason_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + failureReason_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * Output only. If and only if action's state is FAILED a failure reason is set.
+     * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The bytes for failureReason. + */ + public com.google.protobuf.ByteString getFailureReasonBytes() { + java.lang.Object ref = failureReason_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + failureReason_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * Output only. If and only if action's state is FAILED a failure reason is set.
+     * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @param value The failureReason to set. + * @return This builder for chaining. + */ + public Builder setFailureReason(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + failureReason_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * Output only. If and only if action's state is FAILED a failure reason is set.
+     * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return This builder for chaining. + */ + public Builder clearFailureReason() { + + failureReason_ = getDefaultInstance().getFailureReason(); + onChanged(); + return this; + } + /** + * + * + *
+     * Output only. If and only if action's state is FAILED a failure reason is set.
+     * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @param value The bytes for failureReason to set. + * @return This builder for chaining. + */ + public Builder setFailureReasonBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + failureReason_ = value; + onChanged(); + return this; + } + private com.google.type.Interval invocationTiming_; private com.google.protobuf.SingleFieldBuilderV3< com.google.type.Interval, diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationActionOrBuilder.java b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationActionOrBuilder.java index 6bd628d..7d71d2e 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationActionOrBuilder.java +++ b/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/WorkflowInvocationActionOrBuilder.java @@ -137,6 +137,31 @@ public interface WorkflowInvocationActionOrBuilder */ com.google.cloud.dataform.v1alpha2.WorkflowInvocationAction.State getState(); + /** + * + * + *
+   * Output only. If and only if action's state is FAILED a failure reason is set.
+   * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The failureReason. + */ + java.lang.String getFailureReason(); + /** + * + * + *
+   * Output only. If and only if action's state is FAILED a failure reason is set.
+   * 
+ * + * string failure_reason = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * + * @return The bytes for failureReason. + */ + com.google.protobuf.ByteString getFailureReasonBytes(); + /** * * diff --git a/proto-google-cloud-dataform-v1alpha2/src/main/proto/google/cloud/dataform/v1alpha2/dataform.proto b/proto-google-cloud-dataform-v1alpha2/src/main/proto/google/cloud/dataform/v1alpha2/dataform.proto index 0145971..771acdb 100644 --- a/proto-google-cloud-dataform-v1alpha2/src/main/proto/google/cloud/dataform/v1alpha2/dataform.proto +++ b/proto-google-cloud-dataform-v1alpha2/src/main/proto/google/cloud/dataform/v1alpha2/dataform.proto @@ -421,6 +421,9 @@ message ListRepositoriesResponse { // A token which can be sent as `page_token` to retrieve the next page. // If this field is omitted, there are no subsequent pages. string next_page_token = 2; + + // Locations which could not be reached. + repeated string unreachable = 3; } // `GetRepository` request message. @@ -547,6 +550,9 @@ message ListWorkspacesResponse { // A token, which can be sent as `page_token` to retrieve the next page. // If this field is omitted, there are no subsequent pages. string next_page_token = 2; + + // Locations which could not be reached. + repeated string unreachable = 3; } // `GetWorkspace` request message. @@ -1084,6 +1090,9 @@ message ListCompilationResultsResponse { // A token, which can be sent as `page_token` to retrieve the next page. // If this field is omitted, there are no subsequent pages. string next_page_token = 2; + + // Locations which could not be reached. + repeated string unreachable = 3; } // `GetCompilationResult` request message. @@ -1474,6 +1483,9 @@ message ListWorkflowInvocationsResponse { // A token, which can be sent as `page_token` to retrieve the next page. // If this field is omitted, there are no subsequent pages. string next_page_token = 2; + + // Locations which could not be reached. + repeated string unreachable = 3; } // `GetWorkflowInvocation` request message. @@ -1567,6 +1579,9 @@ message WorkflowInvocationAction { // Output only. This action's current state. State state = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; + // Output only. If and only if action's state is FAILED a failure reason is set. + string failure_reason = 7 [(google.api.field_behavior) = OUTPUT_ONLY]; + // Output only. This action's timing details. // `start_time` will be set if the action is in [RUNNING, SUCCEEDED, // CANCELLED, FAILED] state. @@ -1600,10 +1615,6 @@ message QueryWorkflowInvocationActionsRequest { // `QueryWorkflowInvocationActions` must match the call that provided the page // token. string page_token = 3 [(google.api.field_behavior) = OPTIONAL]; - - // Optional. Optional filter for the returned list. Filtering is only currently - // supported on the `file_path` field. - string filter = 4 [(google.api.field_behavior) = OPTIONAL]; } // `QueryWorkflowInvocationActions` response message.