pub trait Dataform:
Debug
+ Send
+ Sync {
Show 59 methods
// Provided methods
fn list_repositories(
&self,
_req: ListRepositoriesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListRepositoriesResponse>>> + Send { ... }
fn get_repository(
&self,
_req: GetRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Repository>>> + Send { ... }
fn create_repository(
&self,
_req: CreateRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Repository>>> + Send { ... }
fn update_repository(
&self,
_req: UpdateRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Repository>>> + Send { ... }
fn delete_repository(
&self,
_req: DeleteRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send { ... }
fn commit_repository_changes(
&self,
_req: CommitRepositoryChangesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CommitRepositoryChangesResponse>>> + Send { ... }
fn read_repository_file(
&self,
_req: ReadRepositoryFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReadRepositoryFileResponse>>> + Send { ... }
fn query_repository_directory_contents(
&self,
_req: QueryRepositoryDirectoryContentsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryRepositoryDirectoryContentsResponse>>> + Send { ... }
fn fetch_repository_history(
&self,
_req: FetchRepositoryHistoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchRepositoryHistoryResponse>>> + Send { ... }
fn compute_repository_access_token_status(
&self,
_req: ComputeRepositoryAccessTokenStatusRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ComputeRepositoryAccessTokenStatusResponse>>> + Send { ... }
fn fetch_remote_branches(
&self,
_req: FetchRemoteBranchesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchRemoteBranchesResponse>>> + Send { ... }
fn list_workspaces(
&self,
_req: ListWorkspacesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListWorkspacesResponse>>> + Send { ... }
fn get_workspace(
&self,
_req: GetWorkspaceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Workspace>>> + Send { ... }
fn create_workspace(
&self,
_req: CreateWorkspaceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Workspace>>> + Send { ... }
fn delete_workspace(
&self,
_req: DeleteWorkspaceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send { ... }
fn install_npm_packages(
&self,
_req: InstallNpmPackagesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<InstallNpmPackagesResponse>>> + Send { ... }
fn pull_git_commits(
&self,
_req: PullGitCommitsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<PullGitCommitsResponse>>> + Send { ... }
fn push_git_commits(
&self,
_req: PushGitCommitsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<PushGitCommitsResponse>>> + Send { ... }
fn fetch_file_git_statuses(
&self,
_req: FetchFileGitStatusesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchFileGitStatusesResponse>>> + Send { ... }
fn fetch_git_ahead_behind(
&self,
_req: FetchGitAheadBehindRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchGitAheadBehindResponse>>> + Send { ... }
fn commit_workspace_changes(
&self,
_req: CommitWorkspaceChangesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CommitWorkspaceChangesResponse>>> + Send { ... }
fn reset_workspace_changes(
&self,
_req: ResetWorkspaceChangesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ResetWorkspaceChangesResponse>>> + Send { ... }
fn fetch_file_diff(
&self,
_req: FetchFileDiffRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchFileDiffResponse>>> + Send { ... }
fn query_directory_contents(
&self,
_req: QueryDirectoryContentsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryDirectoryContentsResponse>>> + Send { ... }
fn search_files(
&self,
_req: SearchFilesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<SearchFilesResponse>>> + Send { ... }
fn make_directory(
&self,
_req: MakeDirectoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<MakeDirectoryResponse>>> + Send { ... }
fn remove_directory(
&self,
_req: RemoveDirectoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<RemoveDirectoryResponse>>> + Send { ... }
fn move_directory(
&self,
_req: MoveDirectoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<MoveDirectoryResponse>>> + Send { ... }
fn read_file(
&self,
_req: ReadFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReadFileResponse>>> + Send { ... }
fn remove_file(
&self,
_req: RemoveFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<RemoveFileResponse>>> + Send { ... }
fn move_file(
&self,
_req: MoveFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<MoveFileResponse>>> + Send { ... }
fn write_file(
&self,
_req: WriteFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WriteFileResponse>>> + Send { ... }
fn list_release_configs(
&self,
_req: ListReleaseConfigsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListReleaseConfigsResponse>>> + Send { ... }
fn get_release_config(
&self,
_req: GetReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send { ... }
fn create_release_config(
&self,
_req: CreateReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send { ... }
fn update_release_config(
&self,
_req: UpdateReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send { ... }
fn delete_release_config(
&self,
_req: DeleteReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send { ... }
fn list_compilation_results(
&self,
_req: ListCompilationResultsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListCompilationResultsResponse>>> + Send { ... }
fn get_compilation_result(
&self,
_req: GetCompilationResultRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CompilationResult>>> + Send { ... }
fn create_compilation_result(
&self,
_req: CreateCompilationResultRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CompilationResult>>> + Send { ... }
fn query_compilation_result_actions(
&self,
_req: QueryCompilationResultActionsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryCompilationResultActionsResponse>>> + Send { ... }
fn list_workflow_configs(
&self,
_req: ListWorkflowConfigsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListWorkflowConfigsResponse>>> + Send { ... }
fn get_workflow_config(
&self,
_req: GetWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send { ... }
fn create_workflow_config(
&self,
_req: CreateWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send { ... }
fn update_workflow_config(
&self,
_req: UpdateWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send { ... }
fn delete_workflow_config(
&self,
_req: DeleteWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send { ... }
fn list_workflow_invocations(
&self,
_req: ListWorkflowInvocationsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListWorkflowInvocationsResponse>>> + Send { ... }
fn get_workflow_invocation(
&self,
_req: GetWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowInvocation>>> + Send { ... }
fn create_workflow_invocation(
&self,
_req: CreateWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowInvocation>>> + Send { ... }
fn delete_workflow_invocation(
&self,
_req: DeleteWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send { ... }
fn cancel_workflow_invocation(
&self,
_req: CancelWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CancelWorkflowInvocationResponse>>> + Send { ... }
fn query_workflow_invocation_actions(
&self,
_req: QueryWorkflowInvocationActionsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryWorkflowInvocationActionsResponse>>> + Send { ... }
fn get_config(
&self,
_req: GetConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Config>>> + Send { ... }
fn update_config(
&self,
_req: UpdateConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Config>>> + Send { ... }
fn list_locations(
&self,
_req: ListLocationsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListLocationsResponse>>> + Send { ... }
fn get_location(
&self,
_req: GetLocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Location>>> + Send { ... }
fn set_iam_policy(
&self,
_req: SetIamPolicyRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Policy>>> + Send { ... }
fn get_iam_policy(
&self,
_req: GetIamPolicyRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Policy>>> + Send { ... }
fn test_iam_permissions(
&self,
_req: TestIamPermissionsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<TestIamPermissionsResponse>>> + Send { ... }
}Expand description
Defines the trait used to implement super::client::Dataform.
Application developers may need to implement this trait to mock
client::Dataform. In other use-cases, application developers only
use client::Dataform and need not be concerned with this trait or
its implementations.
Services gain new RPCs routinely. Consequently, this trait gains new methods too. To avoid breaking applications the trait provides a default implementation of each method. Most of these implementations just return an error.
Provided Methods§
Sourcefn list_repositories(
&self,
_req: ListRepositoriesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListRepositoriesResponse>>> + Send
fn list_repositories( &self, _req: ListRepositoriesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListRepositoriesResponse>>> + Send
Implements super::client::Dataform::list_repositories.
Sourcefn get_repository(
&self,
_req: GetRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Repository>>> + Send
fn get_repository( &self, _req: GetRepositoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Repository>>> + Send
Implements super::client::Dataform::get_repository.
Sourcefn create_repository(
&self,
_req: CreateRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Repository>>> + Send
fn create_repository( &self, _req: CreateRepositoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Repository>>> + Send
Implements super::client::Dataform::create_repository.
Sourcefn update_repository(
&self,
_req: UpdateRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Repository>>> + Send
fn update_repository( &self, _req: UpdateRepositoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Repository>>> + Send
Implements super::client::Dataform::update_repository.
Sourcefn delete_repository(
&self,
_req: DeleteRepositoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send
fn delete_repository( &self, _req: DeleteRepositoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<()>>> + Send
Implements super::client::Dataform::delete_repository.
Sourcefn commit_repository_changes(
&self,
_req: CommitRepositoryChangesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CommitRepositoryChangesResponse>>> + Send
fn commit_repository_changes( &self, _req: CommitRepositoryChangesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<CommitRepositoryChangesResponse>>> + Send
Sourcefn read_repository_file(
&self,
_req: ReadRepositoryFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReadRepositoryFileResponse>>> + Send
fn read_repository_file( &self, _req: ReadRepositoryFileRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ReadRepositoryFileResponse>>> + Send
Implements super::client::Dataform::read_repository_file.
Sourcefn query_repository_directory_contents(
&self,
_req: QueryRepositoryDirectoryContentsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryRepositoryDirectoryContentsResponse>>> + Send
fn query_repository_directory_contents( &self, _req: QueryRepositoryDirectoryContentsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<QueryRepositoryDirectoryContentsResponse>>> + Send
Sourcefn fetch_repository_history(
&self,
_req: FetchRepositoryHistoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchRepositoryHistoryResponse>>> + Send
fn fetch_repository_history( &self, _req: FetchRepositoryHistoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<FetchRepositoryHistoryResponse>>> + Send
Sourcefn compute_repository_access_token_status(
&self,
_req: ComputeRepositoryAccessTokenStatusRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ComputeRepositoryAccessTokenStatusResponse>>> + Send
fn compute_repository_access_token_status( &self, _req: ComputeRepositoryAccessTokenStatusRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ComputeRepositoryAccessTokenStatusResponse>>> + Send
Sourcefn fetch_remote_branches(
&self,
_req: FetchRemoteBranchesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchRemoteBranchesResponse>>> + Send
fn fetch_remote_branches( &self, _req: FetchRemoteBranchesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<FetchRemoteBranchesResponse>>> + Send
Implements super::client::Dataform::fetch_remote_branches.
Sourcefn list_workspaces(
&self,
_req: ListWorkspacesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListWorkspacesResponse>>> + Send
fn list_workspaces( &self, _req: ListWorkspacesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListWorkspacesResponse>>> + Send
Implements super::client::Dataform::list_workspaces.
Sourcefn get_workspace(
&self,
_req: GetWorkspaceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Workspace>>> + Send
fn get_workspace( &self, _req: GetWorkspaceRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Workspace>>> + Send
Implements super::client::Dataform::get_workspace.
Sourcefn create_workspace(
&self,
_req: CreateWorkspaceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Workspace>>> + Send
fn create_workspace( &self, _req: CreateWorkspaceRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Workspace>>> + Send
Implements super::client::Dataform::create_workspace.
Sourcefn delete_workspace(
&self,
_req: DeleteWorkspaceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send
fn delete_workspace( &self, _req: DeleteWorkspaceRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<()>>> + Send
Implements super::client::Dataform::delete_workspace.
Sourcefn install_npm_packages(
&self,
_req: InstallNpmPackagesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<InstallNpmPackagesResponse>>> + Send
fn install_npm_packages( &self, _req: InstallNpmPackagesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<InstallNpmPackagesResponse>>> + Send
Implements super::client::Dataform::install_npm_packages.
Sourcefn pull_git_commits(
&self,
_req: PullGitCommitsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<PullGitCommitsResponse>>> + Send
fn pull_git_commits( &self, _req: PullGitCommitsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<PullGitCommitsResponse>>> + Send
Implements super::client::Dataform::pull_git_commits.
Sourcefn push_git_commits(
&self,
_req: PushGitCommitsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<PushGitCommitsResponse>>> + Send
fn push_git_commits( &self, _req: PushGitCommitsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<PushGitCommitsResponse>>> + Send
Implements super::client::Dataform::push_git_commits.
Sourcefn fetch_file_git_statuses(
&self,
_req: FetchFileGitStatusesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchFileGitStatusesResponse>>> + Send
fn fetch_file_git_statuses( &self, _req: FetchFileGitStatusesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<FetchFileGitStatusesResponse>>> + Send
Implements super::client::Dataform::fetch_file_git_statuses.
Sourcefn fetch_git_ahead_behind(
&self,
_req: FetchGitAheadBehindRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchGitAheadBehindResponse>>> + Send
fn fetch_git_ahead_behind( &self, _req: FetchGitAheadBehindRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<FetchGitAheadBehindResponse>>> + Send
Implements super::client::Dataform::fetch_git_ahead_behind.
Sourcefn commit_workspace_changes(
&self,
_req: CommitWorkspaceChangesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CommitWorkspaceChangesResponse>>> + Send
fn commit_workspace_changes( &self, _req: CommitWorkspaceChangesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<CommitWorkspaceChangesResponse>>> + Send
Sourcefn reset_workspace_changes(
&self,
_req: ResetWorkspaceChangesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ResetWorkspaceChangesResponse>>> + Send
fn reset_workspace_changes( &self, _req: ResetWorkspaceChangesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ResetWorkspaceChangesResponse>>> + Send
Implements super::client::Dataform::reset_workspace_changes.
Sourcefn fetch_file_diff(
&self,
_req: FetchFileDiffRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<FetchFileDiffResponse>>> + Send
fn fetch_file_diff( &self, _req: FetchFileDiffRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<FetchFileDiffResponse>>> + Send
Implements super::client::Dataform::fetch_file_diff.
Sourcefn query_directory_contents(
&self,
_req: QueryDirectoryContentsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryDirectoryContentsResponse>>> + Send
fn query_directory_contents( &self, _req: QueryDirectoryContentsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<QueryDirectoryContentsResponse>>> + Send
Sourcefn search_files(
&self,
_req: SearchFilesRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<SearchFilesResponse>>> + Send
fn search_files( &self, _req: SearchFilesRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<SearchFilesResponse>>> + Send
Implements super::client::Dataform::search_files.
Sourcefn make_directory(
&self,
_req: MakeDirectoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<MakeDirectoryResponse>>> + Send
fn make_directory( &self, _req: MakeDirectoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<MakeDirectoryResponse>>> + Send
Implements super::client::Dataform::make_directory.
Sourcefn remove_directory(
&self,
_req: RemoveDirectoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<RemoveDirectoryResponse>>> + Send
fn remove_directory( &self, _req: RemoveDirectoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<RemoveDirectoryResponse>>> + Send
Implements super::client::Dataform::remove_directory.
Sourcefn move_directory(
&self,
_req: MoveDirectoryRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<MoveDirectoryResponse>>> + Send
fn move_directory( &self, _req: MoveDirectoryRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<MoveDirectoryResponse>>> + Send
Implements super::client::Dataform::move_directory.
Sourcefn read_file(
&self,
_req: ReadFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReadFileResponse>>> + Send
fn read_file( &self, _req: ReadFileRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ReadFileResponse>>> + Send
Implements super::client::Dataform::read_file.
Sourcefn remove_file(
&self,
_req: RemoveFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<RemoveFileResponse>>> + Send
fn remove_file( &self, _req: RemoveFileRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<RemoveFileResponse>>> + Send
Implements super::client::Dataform::remove_file.
Sourcefn move_file(
&self,
_req: MoveFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<MoveFileResponse>>> + Send
fn move_file( &self, _req: MoveFileRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<MoveFileResponse>>> + Send
Implements super::client::Dataform::move_file.
Sourcefn write_file(
&self,
_req: WriteFileRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WriteFileResponse>>> + Send
fn write_file( &self, _req: WriteFileRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<WriteFileResponse>>> + Send
Implements super::client::Dataform::write_file.
Sourcefn list_release_configs(
&self,
_req: ListReleaseConfigsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListReleaseConfigsResponse>>> + Send
fn list_release_configs( &self, _req: ListReleaseConfigsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListReleaseConfigsResponse>>> + Send
Implements super::client::Dataform::list_release_configs.
Sourcefn get_release_config(
&self,
_req: GetReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send
fn get_release_config( &self, _req: GetReleaseConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send
Implements super::client::Dataform::get_release_config.
Sourcefn create_release_config(
&self,
_req: CreateReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send
fn create_release_config( &self, _req: CreateReleaseConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send
Implements super::client::Dataform::create_release_config.
Sourcefn update_release_config(
&self,
_req: UpdateReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send
fn update_release_config( &self, _req: UpdateReleaseConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ReleaseConfig>>> + Send
Implements super::client::Dataform::update_release_config.
Sourcefn delete_release_config(
&self,
_req: DeleteReleaseConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send
fn delete_release_config( &self, _req: DeleteReleaseConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<()>>> + Send
Implements super::client::Dataform::delete_release_config.
Sourcefn list_compilation_results(
&self,
_req: ListCompilationResultsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListCompilationResultsResponse>>> + Send
fn list_compilation_results( &self, _req: ListCompilationResultsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListCompilationResultsResponse>>> + Send
Sourcefn get_compilation_result(
&self,
_req: GetCompilationResultRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CompilationResult>>> + Send
fn get_compilation_result( &self, _req: GetCompilationResultRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<CompilationResult>>> + Send
Implements super::client::Dataform::get_compilation_result.
Sourcefn create_compilation_result(
&self,
_req: CreateCompilationResultRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CompilationResult>>> + Send
fn create_compilation_result( &self, _req: CreateCompilationResultRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<CompilationResult>>> + Send
Sourcefn query_compilation_result_actions(
&self,
_req: QueryCompilationResultActionsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryCompilationResultActionsResponse>>> + Send
fn query_compilation_result_actions( &self, _req: QueryCompilationResultActionsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<QueryCompilationResultActionsResponse>>> + Send
Sourcefn list_workflow_configs(
&self,
_req: ListWorkflowConfigsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListWorkflowConfigsResponse>>> + Send
fn list_workflow_configs( &self, _req: ListWorkflowConfigsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListWorkflowConfigsResponse>>> + Send
Implements super::client::Dataform::list_workflow_configs.
Sourcefn get_workflow_config(
&self,
_req: GetWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send
fn get_workflow_config( &self, _req: GetWorkflowConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send
Implements super::client::Dataform::get_workflow_config.
Sourcefn create_workflow_config(
&self,
_req: CreateWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send
fn create_workflow_config( &self, _req: CreateWorkflowConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send
Implements super::client::Dataform::create_workflow_config.
Sourcefn update_workflow_config(
&self,
_req: UpdateWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send
fn update_workflow_config( &self, _req: UpdateWorkflowConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<WorkflowConfig>>> + Send
Implements super::client::Dataform::update_workflow_config.
Sourcefn delete_workflow_config(
&self,
_req: DeleteWorkflowConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send
fn delete_workflow_config( &self, _req: DeleteWorkflowConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<()>>> + Send
Implements super::client::Dataform::delete_workflow_config.
Sourcefn list_workflow_invocations(
&self,
_req: ListWorkflowInvocationsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListWorkflowInvocationsResponse>>> + Send
fn list_workflow_invocations( &self, _req: ListWorkflowInvocationsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListWorkflowInvocationsResponse>>> + Send
Sourcefn get_workflow_invocation(
&self,
_req: GetWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowInvocation>>> + Send
fn get_workflow_invocation( &self, _req: GetWorkflowInvocationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<WorkflowInvocation>>> + Send
Implements super::client::Dataform::get_workflow_invocation.
Sourcefn create_workflow_invocation(
&self,
_req: CreateWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<WorkflowInvocation>>> + Send
fn create_workflow_invocation( &self, _req: CreateWorkflowInvocationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<WorkflowInvocation>>> + Send
Sourcefn delete_workflow_invocation(
&self,
_req: DeleteWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<()>>> + Send
fn delete_workflow_invocation( &self, _req: DeleteWorkflowInvocationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<()>>> + Send
Sourcefn cancel_workflow_invocation(
&self,
_req: CancelWorkflowInvocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<CancelWorkflowInvocationResponse>>> + Send
fn cancel_workflow_invocation( &self, _req: CancelWorkflowInvocationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<CancelWorkflowInvocationResponse>>> + Send
Sourcefn query_workflow_invocation_actions(
&self,
_req: QueryWorkflowInvocationActionsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<QueryWorkflowInvocationActionsResponse>>> + Send
fn query_workflow_invocation_actions( &self, _req: QueryWorkflowInvocationActionsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<QueryWorkflowInvocationActionsResponse>>> + Send
Sourcefn get_config(
&self,
_req: GetConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Config>>> + Send
fn get_config( &self, _req: GetConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Config>>> + Send
Implements super::client::Dataform::get_config.
Sourcefn update_config(
&self,
_req: UpdateConfigRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Config>>> + Send
fn update_config( &self, _req: UpdateConfigRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Config>>> + Send
Implements super::client::Dataform::update_config.
Sourcefn list_locations(
&self,
_req: ListLocationsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ListLocationsResponse>>> + Send
fn list_locations( &self, _req: ListLocationsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListLocationsResponse>>> + Send
Implements super::client::Dataform::list_locations.
Sourcefn get_location(
&self,
_req: GetLocationRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Location>>> + Send
fn get_location( &self, _req: GetLocationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Location>>> + Send
Implements super::client::Dataform::get_location.
Sourcefn set_iam_policy(
&self,
_req: SetIamPolicyRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Policy>>> + Send
fn set_iam_policy( &self, _req: SetIamPolicyRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Policy>>> + Send
Implements super::client::Dataform::set_iam_policy.
Sourcefn get_iam_policy(
&self,
_req: GetIamPolicyRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<Policy>>> + Send
fn get_iam_policy( &self, _req: GetIamPolicyRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Policy>>> + Send
Implements super::client::Dataform::get_iam_policy.
Sourcefn test_iam_permissions(
&self,
_req: TestIamPermissionsRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<TestIamPermissionsResponse>>> + Send
fn test_iam_permissions( &self, _req: TestIamPermissionsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<TestIamPermissionsResponse>>> + Send
Implements super::client::Dataform::test_iam_permissions.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.