Skip to content

Commit

Permalink
feat: Support for ReleaseConfigs (#11918)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

BEGIN_COMMIT_OVERRIDE
feat: Support for ReleaseConfigs 
feat: Support for WorkflowConfigs
feat: Support new first-party repository methods for committing,
listing/reading files, and fetching history
feat: Support new ComputeRepositoryAccessTokenStatus repository method
feat: Support SSH based git authentication configuration
feat: Support workspace compilation override fields
feat: Support NPMRC environment variables
feat: Support labels on repositories
feat: Support custom service account repository configuration
docs: several comments reformatted
fix: rearrange several messages, thus changing field types
END_COMMIT_OVERRIDE



PiperOrigin-RevId: 576787262

Source-Link:
googleapis/googleapis@7e7ae1a

Source-Link:
googleapis/googleapis-gen@b145f1c
Copy-Tag:
eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRhdGFmb3JtLy5Pd2xCb3QueWFtbCIsImgiOiJiMTQ1ZjFjNjlhMWQzNjE4YTZkZGRkYTM2MTg4ZGZlOWQ5OWVlYjQzIn0=

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Oct 26, 2023
1 parent 0defe95 commit 13b57e4
Show file tree
Hide file tree
Showing 47 changed files with 35,110 additions and 12,103 deletions.
56 changes: 56 additions & 0 deletions packages/google-cloud-dataform/google/cloud/dataform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,28 @@
from google.cloud.dataform_v1beta1.services.dataform.client import DataformClient
from google.cloud.dataform_v1beta1.types.dataform import (
CancelWorkflowInvocationRequest,
CodeCompilationConfig,
CommitAuthor,
CommitLogEntry,
CommitMetadata,
CommitRepositoryChangesRequest,
CommitWorkspaceChangesRequest,
CompilationResult,
CompilationResultAction,
ComputeRepositoryAccessTokenStatusRequest,
ComputeRepositoryAccessTokenStatusResponse,
CreateCompilationResultRequest,
CreateReleaseConfigRequest,
CreateRepositoryRequest,
CreateWorkflowConfigRequest,
CreateWorkflowInvocationRequest,
CreateWorkspaceRequest,
DeleteReleaseConfigRequest,
DeleteRepositoryRequest,
DeleteWorkflowConfigRequest,
DeleteWorkflowInvocationRequest,
DeleteWorkspaceRequest,
DirectoryEntry,
FetchFileDiffRequest,
FetchFileDiffResponse,
FetchFileGitStatusesRequest,
Expand All @@ -43,16 +54,25 @@
FetchGitAheadBehindResponse,
FetchRemoteBranchesRequest,
FetchRemoteBranchesResponse,
FetchRepositoryHistoryRequest,
FetchRepositoryHistoryResponse,
GetCompilationResultRequest,
GetReleaseConfigRequest,
GetRepositoryRequest,
GetWorkflowConfigRequest,
GetWorkflowInvocationRequest,
GetWorkspaceRequest,
InstallNpmPackagesRequest,
InstallNpmPackagesResponse,
InvocationConfig,
ListCompilationResultsRequest,
ListCompilationResultsResponse,
ListReleaseConfigsRequest,
ListReleaseConfigsResponse,
ListRepositoriesRequest,
ListRepositoriesResponse,
ListWorkflowConfigsRequest,
ListWorkflowConfigsResponse,
ListWorkflowInvocationsRequest,
ListWorkflowInvocationsResponse,
ListWorkspacesRequest,
Expand All @@ -69,17 +89,25 @@
QueryCompilationResultActionsResponse,
QueryDirectoryContentsRequest,
QueryDirectoryContentsResponse,
QueryRepositoryDirectoryContentsRequest,
QueryRepositoryDirectoryContentsResponse,
QueryWorkflowInvocationActionsRequest,
QueryWorkflowInvocationActionsResponse,
ReadFileRequest,
ReadFileResponse,
ReadRepositoryFileRequest,
ReadRepositoryFileResponse,
RelationDescriptor,
ReleaseConfig,
RemoveDirectoryRequest,
RemoveFileRequest,
Repository,
ResetWorkspaceChangesRequest,
Target,
UpdateReleaseConfigRequest,
UpdateRepositoryRequest,
UpdateWorkflowConfigRequest,
WorkflowConfig,
WorkflowInvocation,
WorkflowInvocationAction,
Workspace,
Expand All @@ -91,17 +119,28 @@
"DataformClient",
"DataformAsyncClient",
"CancelWorkflowInvocationRequest",
"CodeCompilationConfig",
"CommitAuthor",
"CommitLogEntry",
"CommitMetadata",
"CommitRepositoryChangesRequest",
"CommitWorkspaceChangesRequest",
"CompilationResult",
"CompilationResultAction",
"ComputeRepositoryAccessTokenStatusRequest",
"ComputeRepositoryAccessTokenStatusResponse",
"CreateCompilationResultRequest",
"CreateReleaseConfigRequest",
"CreateRepositoryRequest",
"CreateWorkflowConfigRequest",
"CreateWorkflowInvocationRequest",
"CreateWorkspaceRequest",
"DeleteReleaseConfigRequest",
"DeleteRepositoryRequest",
"DeleteWorkflowConfigRequest",
"DeleteWorkflowInvocationRequest",
"DeleteWorkspaceRequest",
"DirectoryEntry",
"FetchFileDiffRequest",
"FetchFileDiffResponse",
"FetchFileGitStatusesRequest",
Expand All @@ -110,16 +149,25 @@
"FetchGitAheadBehindResponse",
"FetchRemoteBranchesRequest",
"FetchRemoteBranchesResponse",
"FetchRepositoryHistoryRequest",
"FetchRepositoryHistoryResponse",
"GetCompilationResultRequest",
"GetReleaseConfigRequest",
"GetRepositoryRequest",
"GetWorkflowConfigRequest",
"GetWorkflowInvocationRequest",
"GetWorkspaceRequest",
"InstallNpmPackagesRequest",
"InstallNpmPackagesResponse",
"InvocationConfig",
"ListCompilationResultsRequest",
"ListCompilationResultsResponse",
"ListReleaseConfigsRequest",
"ListReleaseConfigsResponse",
"ListRepositoriesRequest",
"ListRepositoriesResponse",
"ListWorkflowConfigsRequest",
"ListWorkflowConfigsResponse",
"ListWorkflowInvocationsRequest",
"ListWorkflowInvocationsResponse",
"ListWorkspacesRequest",
Expand All @@ -136,17 +184,25 @@
"QueryCompilationResultActionsResponse",
"QueryDirectoryContentsRequest",
"QueryDirectoryContentsResponse",
"QueryRepositoryDirectoryContentsRequest",
"QueryRepositoryDirectoryContentsResponse",
"QueryWorkflowInvocationActionsRequest",
"QueryWorkflowInvocationActionsResponse",
"ReadFileRequest",
"ReadFileResponse",
"ReadRepositoryFileRequest",
"ReadRepositoryFileResponse",
"RelationDescriptor",
"ReleaseConfig",
"RemoveDirectoryRequest",
"RemoveFileRequest",
"Repository",
"ResetWorkspaceChangesRequest",
"Target",
"UpdateReleaseConfigRequest",
"UpdateRepositoryRequest",
"UpdateWorkflowConfigRequest",
"WorkflowConfig",
"WorkflowInvocation",
"WorkflowInvocationAction",
"Workspace",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,28 @@
from .services.dataform import DataformAsyncClient, DataformClient
from .types.dataform import (
CancelWorkflowInvocationRequest,
CodeCompilationConfig,
CommitAuthor,
CommitLogEntry,
CommitMetadata,
CommitRepositoryChangesRequest,
CommitWorkspaceChangesRequest,
CompilationResult,
CompilationResultAction,
ComputeRepositoryAccessTokenStatusRequest,
ComputeRepositoryAccessTokenStatusResponse,
CreateCompilationResultRequest,
CreateReleaseConfigRequest,
CreateRepositoryRequest,
CreateWorkflowConfigRequest,
CreateWorkflowInvocationRequest,
CreateWorkspaceRequest,
DeleteReleaseConfigRequest,
DeleteRepositoryRequest,
DeleteWorkflowConfigRequest,
DeleteWorkflowInvocationRequest,
DeleteWorkspaceRequest,
DirectoryEntry,
FetchFileDiffRequest,
FetchFileDiffResponse,
FetchFileGitStatusesRequest,
Expand All @@ -40,16 +51,25 @@
FetchGitAheadBehindResponse,
FetchRemoteBranchesRequest,
FetchRemoteBranchesResponse,
FetchRepositoryHistoryRequest,
FetchRepositoryHistoryResponse,
GetCompilationResultRequest,
GetReleaseConfigRequest,
GetRepositoryRequest,
GetWorkflowConfigRequest,
GetWorkflowInvocationRequest,
GetWorkspaceRequest,
InstallNpmPackagesRequest,
InstallNpmPackagesResponse,
InvocationConfig,
ListCompilationResultsRequest,
ListCompilationResultsResponse,
ListReleaseConfigsRequest,
ListReleaseConfigsResponse,
ListRepositoriesRequest,
ListRepositoriesResponse,
ListWorkflowConfigsRequest,
ListWorkflowConfigsResponse,
ListWorkflowInvocationsRequest,
ListWorkflowInvocationsResponse,
ListWorkspacesRequest,
Expand All @@ -66,17 +86,25 @@
QueryCompilationResultActionsResponse,
QueryDirectoryContentsRequest,
QueryDirectoryContentsResponse,
QueryRepositoryDirectoryContentsRequest,
QueryRepositoryDirectoryContentsResponse,
QueryWorkflowInvocationActionsRequest,
QueryWorkflowInvocationActionsResponse,
ReadFileRequest,
ReadFileResponse,
ReadRepositoryFileRequest,
ReadRepositoryFileResponse,
RelationDescriptor,
ReleaseConfig,
RemoveDirectoryRequest,
RemoveFileRequest,
Repository,
ResetWorkspaceChangesRequest,
Target,
UpdateReleaseConfigRequest,
UpdateRepositoryRequest,
UpdateWorkflowConfigRequest,
WorkflowConfig,
WorkflowInvocation,
WorkflowInvocationAction,
Workspace,
Expand All @@ -87,18 +115,29 @@
__all__ = (
"DataformAsyncClient",
"CancelWorkflowInvocationRequest",
"CodeCompilationConfig",
"CommitAuthor",
"CommitLogEntry",
"CommitMetadata",
"CommitRepositoryChangesRequest",
"CommitWorkspaceChangesRequest",
"CompilationResult",
"CompilationResultAction",
"ComputeRepositoryAccessTokenStatusRequest",
"ComputeRepositoryAccessTokenStatusResponse",
"CreateCompilationResultRequest",
"CreateReleaseConfigRequest",
"CreateRepositoryRequest",
"CreateWorkflowConfigRequest",
"CreateWorkflowInvocationRequest",
"CreateWorkspaceRequest",
"DataformClient",
"DeleteReleaseConfigRequest",
"DeleteRepositoryRequest",
"DeleteWorkflowConfigRequest",
"DeleteWorkflowInvocationRequest",
"DeleteWorkspaceRequest",
"DirectoryEntry",
"FetchFileDiffRequest",
"FetchFileDiffResponse",
"FetchFileGitStatusesRequest",
Expand All @@ -107,16 +146,25 @@
"FetchGitAheadBehindResponse",
"FetchRemoteBranchesRequest",
"FetchRemoteBranchesResponse",
"FetchRepositoryHistoryRequest",
"FetchRepositoryHistoryResponse",
"GetCompilationResultRequest",
"GetReleaseConfigRequest",
"GetRepositoryRequest",
"GetWorkflowConfigRequest",
"GetWorkflowInvocationRequest",
"GetWorkspaceRequest",
"InstallNpmPackagesRequest",
"InstallNpmPackagesResponse",
"InvocationConfig",
"ListCompilationResultsRequest",
"ListCompilationResultsResponse",
"ListReleaseConfigsRequest",
"ListReleaseConfigsResponse",
"ListRepositoriesRequest",
"ListRepositoriesResponse",
"ListWorkflowConfigsRequest",
"ListWorkflowConfigsResponse",
"ListWorkflowInvocationsRequest",
"ListWorkflowInvocationsResponse",
"ListWorkspacesRequest",
Expand All @@ -133,17 +181,25 @@
"QueryCompilationResultActionsResponse",
"QueryDirectoryContentsRequest",
"QueryDirectoryContentsResponse",
"QueryRepositoryDirectoryContentsRequest",
"QueryRepositoryDirectoryContentsResponse",
"QueryWorkflowInvocationActionsRequest",
"QueryWorkflowInvocationActionsResponse",
"ReadFileRequest",
"ReadFileResponse",
"ReadRepositoryFileRequest",
"ReadRepositoryFileResponse",
"RelationDescriptor",
"ReleaseConfig",
"RemoveDirectoryRequest",
"RemoveFileRequest",
"Repository",
"ResetWorkspaceChangesRequest",
"Target",
"UpdateReleaseConfigRequest",
"UpdateRepositoryRequest",
"UpdateWorkflowConfigRequest",
"WorkflowConfig",
"WorkflowInvocation",
"WorkflowInvocationAction",
"Workspace",
Expand Down
Loading

0 comments on commit 13b57e4

Please sign in to comment.