public abstract class DataformClient
Reference documentation and code samples for the Dataform v1beta1 API class DataformClient.
Dataform client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Dataform.V1Beta1Assembly
Google.Cloud.Dataform.V1Beta1.dll
Remarks
Dataform is a service to develop, create, document, test, and update curated tables in BigQuery.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the Dataform service, which is a host of "dataform.googleapis.com" and a port of 443.
Property Value | |
---|---|
Type | Description |
string |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }
The default Dataform scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyListstring |
The default Dataform scopes are:
GrpcClient
public virtual Dataform.DataformClient GrpcClient { get; }
The underlying gRPC Dataform client
Property Value | |
---|---|
Type | Description |
DataformDataformClient |
IAMPolicyClient
public virtual IAMPolicyClient IAMPolicyClient { get; }
The IAMPolicyClient associated with this client.
Property Value | |
---|---|
Type | Description |
IAMPolicyClient |
LocationsClient
public virtual LocationsClient LocationsClient { get; }
The LocationsClient associated with this client.
Property Value | |
---|---|
Type | Description |
LocationsClient |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }
The service metadata associated with this client type.
Property Value | |
---|---|
Type | Description |
ServiceMetadata |
Methods
CancelWorkflowInvocation(CancelWorkflowInvocationRequest, CallSettings)
public virtual void CancelWorkflowInvocation(CancelWorkflowInvocationRequest request, CallSettings callSettings = null)
Requests cancellation of a running WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
CancelWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CancelWorkflowInvocationRequest request = new CancelWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
dataformClient.CancelWorkflowInvocation(request);
CancelWorkflowInvocationAsync(CancelWorkflowInvocationRequest, CallSettings)
public virtual Task CancelWorkflowInvocationAsync(CancelWorkflowInvocationRequest request, CallSettings callSettings = null)
Requests cancellation of a running WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
CancelWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CancelWorkflowInvocationRequest request = new CancelWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
await dataformClient.CancelWorkflowInvocationAsync(request);
CancelWorkflowInvocationAsync(CancelWorkflowInvocationRequest, CancellationToken)
public virtual Task CancelWorkflowInvocationAsync(CancelWorkflowInvocationRequest request, CancellationToken cancellationToken)
Requests cancellation of a running WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
CancelWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CancelWorkflowInvocationRequest request = new CancelWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
await dataformClient.CancelWorkflowInvocationAsync(request);
CommitRepositoryChanges(CommitRepositoryChangesRequest, CallSettings)
public virtual void CommitRepositoryChanges(CommitRepositoryChangesRequest request, CallSettings callSettings = null)
Applies a Git commit to a Repository. The Repository must not have a value
for git_remote_settings.url
.
Parameters | |
---|---|
Name | Description |
request |
CommitRepositoryChangesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CommitRepositoryChangesRequest request = new CommitRepositoryChangesRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
CommitMetadata = new CommitMetadata(),
FileOperations =
{
{
"",
new CommitRepositoryChangesRequest.Types.FileOperation()
},
},
RequiredHeadCommitSha = "",
};
// Make the request
dataformClient.CommitRepositoryChanges(request);
CommitRepositoryChangesAsync(CommitRepositoryChangesRequest, CallSettings)
public virtual Task CommitRepositoryChangesAsync(CommitRepositoryChangesRequest request, CallSettings callSettings = null)
Applies a Git commit to a Repository. The Repository must not have a value
for git_remote_settings.url
.
Parameters | |
---|---|
Name | Description |
request |
CommitRepositoryChangesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CommitRepositoryChangesRequest request = new CommitRepositoryChangesRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
CommitMetadata = new CommitMetadata(),
FileOperations =
{
{
"",
new CommitRepositoryChangesRequest.Types.FileOperation()
},
},
RequiredHeadCommitSha = "",
};
// Make the request
await dataformClient.CommitRepositoryChangesAsync(request);
CommitRepositoryChangesAsync(CommitRepositoryChangesRequest, CancellationToken)
public virtual Task CommitRepositoryChangesAsync(CommitRepositoryChangesRequest request, CancellationToken cancellationToken)
Applies a Git commit to a Repository. The Repository must not have a value
for git_remote_settings.url
.
Parameters | |
---|---|
Name | Description |
request |
CommitRepositoryChangesRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CommitRepositoryChangesRequest request = new CommitRepositoryChangesRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
CommitMetadata = new CommitMetadata(),
FileOperations =
{
{
"",
new CommitRepositoryChangesRequest.Types.FileOperation()
},
},
RequiredHeadCommitSha = "",
};
// Make the request
await dataformClient.CommitRepositoryChangesAsync(request);
CommitWorkspaceChanges(CommitWorkspaceChangesRequest, CallSettings)
public virtual void CommitWorkspaceChanges(CommitWorkspaceChangesRequest request, CallSettings callSettings = null)
Applies a Git commit for uncommitted files in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
CommitWorkspaceChangesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CommitWorkspaceChangesRequest request = new CommitWorkspaceChangesRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
CommitMessage = "",
Paths = { "", },
Author = new CommitAuthor(),
};
// Make the request
dataformClient.CommitWorkspaceChanges(request);
CommitWorkspaceChangesAsync(CommitWorkspaceChangesRequest, CallSettings)
public virtual Task CommitWorkspaceChangesAsync(CommitWorkspaceChangesRequest request, CallSettings callSettings = null)
Applies a Git commit for uncommitted files in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
CommitWorkspaceChangesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CommitWorkspaceChangesRequest request = new CommitWorkspaceChangesRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
CommitMessage = "",
Paths = { "", },
Author = new CommitAuthor(),
};
// Make the request
await dataformClient.CommitWorkspaceChangesAsync(request);
CommitWorkspaceChangesAsync(CommitWorkspaceChangesRequest, CancellationToken)
public virtual Task CommitWorkspaceChangesAsync(CommitWorkspaceChangesRequest request, CancellationToken cancellationToken)
Applies a Git commit for uncommitted files in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
CommitWorkspaceChangesRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CommitWorkspaceChangesRequest request = new CommitWorkspaceChangesRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
CommitMessage = "",
Paths = { "", },
Author = new CommitAuthor(),
};
// Make the request
await dataformClient.CommitWorkspaceChangesAsync(request);
ComputeRepositoryAccessTokenStatus(ComputeRepositoryAccessTokenStatusRequest, CallSettings)
public virtual ComputeRepositoryAccessTokenStatusResponse ComputeRepositoryAccessTokenStatus(ComputeRepositoryAccessTokenStatusRequest request, CallSettings callSettings = null)
Computes a Repository's Git access token status.
Parameters | |
---|---|
Name | Description |
request |
ComputeRepositoryAccessTokenStatusRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ComputeRepositoryAccessTokenStatusResponse |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ComputeRepositoryAccessTokenStatusRequest request = new ComputeRepositoryAccessTokenStatusRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
ComputeRepositoryAccessTokenStatusResponse response = dataformClient.ComputeRepositoryAccessTokenStatus(request);
ComputeRepositoryAccessTokenStatusAsync(ComputeRepositoryAccessTokenStatusRequest, CallSettings)
public virtual Task<ComputeRepositoryAccessTokenStatusResponse> ComputeRepositoryAccessTokenStatusAsync(ComputeRepositoryAccessTokenStatusRequest request, CallSettings callSettings = null)
Computes a Repository's Git access token status.
Parameters | |
---|---|
Name | Description |
request |
ComputeRepositoryAccessTokenStatusRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskComputeRepositoryAccessTokenStatusResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ComputeRepositoryAccessTokenStatusRequest request = new ComputeRepositoryAccessTokenStatusRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
ComputeRepositoryAccessTokenStatusResponse response = await dataformClient.ComputeRepositoryAccessTokenStatusAsync(request);
ComputeRepositoryAccessTokenStatusAsync(ComputeRepositoryAccessTokenStatusRequest, CancellationToken)
public virtual Task<ComputeRepositoryAccessTokenStatusResponse> ComputeRepositoryAccessTokenStatusAsync(ComputeRepositoryAccessTokenStatusRequest request, CancellationToken cancellationToken)
Computes a Repository's Git access token status.
Parameters | |
---|---|
Name | Description |
request |
ComputeRepositoryAccessTokenStatusRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskComputeRepositoryAccessTokenStatusResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ComputeRepositoryAccessTokenStatusRequest request = new ComputeRepositoryAccessTokenStatusRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
ComputeRepositoryAccessTokenStatusResponse response = await dataformClient.ComputeRepositoryAccessTokenStatusAsync(request);
Create()
public static DataformClient Create()
Synchronously creates a DataformClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use DataformClientBuilder.
Returns | |
---|---|
Type | Description |
DataformClient |
The created DataformClient. |
CreateAsync(CancellationToken)
public static Task<DataformClient> CreateAsync(CancellationToken cancellationToken = default)
Asynchronously creates a DataformClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use DataformClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken |
CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
TaskDataformClient |
The task representing the created DataformClient. |
CreateCompilationResult(CreateCompilationResultRequest, CallSettings)
public virtual CompilationResult CreateCompilationResult(CreateCompilationResultRequest request, CallSettings callSettings = null)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
CreateCompilationResultRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
CompilationResult |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CreateCompilationResultRequest request = new CreateCompilationResultRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
CompilationResult = new CompilationResult(),
};
// Make the request
CompilationResult response = dataformClient.CreateCompilationResult(request);
CreateCompilationResult(RepositoryName, CompilationResult, CallSettings)
public virtual CompilationResult CreateCompilationResult(RepositoryName parent, CompilationResult compilationResult, CallSettings callSettings = null)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the compilation result. Must be
in the format |
compilationResult |
CompilationResult Required. The compilation result to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
CompilationResult |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
CompilationResult compilationResult = new CompilationResult();
// Make the request
CompilationResult response = dataformClient.CreateCompilationResult(parent, compilationResult);
CreateCompilationResult(string, CompilationResult, CallSettings)
public virtual CompilationResult CreateCompilationResult(string parent, CompilationResult compilationResult, CallSettings callSettings = null)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the compilation result. Must be
in the format |
compilationResult |
CompilationResult Required. The compilation result to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
CompilationResult |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
CompilationResult compilationResult = new CompilationResult();
// Make the request
CompilationResult response = dataformClient.CreateCompilationResult(parent, compilationResult);
CreateCompilationResultAsync(CreateCompilationResultRequest, CallSettings)
public virtual Task<CompilationResult> CreateCompilationResultAsync(CreateCompilationResultRequest request, CallSettings callSettings = null)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
CreateCompilationResultRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateCompilationResultRequest request = new CreateCompilationResultRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
CompilationResult = new CompilationResult(),
};
// Make the request
CompilationResult response = await dataformClient.CreateCompilationResultAsync(request);
CreateCompilationResultAsync(CreateCompilationResultRequest, CancellationToken)
public virtual Task<CompilationResult> CreateCompilationResultAsync(CreateCompilationResultRequest request, CancellationToken cancellationToken)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
CreateCompilationResultRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateCompilationResultRequest request = new CreateCompilationResultRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
CompilationResult = new CompilationResult(),
};
// Make the request
CompilationResult response = await dataformClient.CreateCompilationResultAsync(request);
CreateCompilationResultAsync(RepositoryName, CompilationResult, CallSettings)
public virtual Task<CompilationResult> CreateCompilationResultAsync(RepositoryName parent, CompilationResult compilationResult, CallSettings callSettings = null)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the compilation result. Must be
in the format |
compilationResult |
CompilationResult Required. The compilation result to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
CompilationResult compilationResult = new CompilationResult();
// Make the request
CompilationResult response = await dataformClient.CreateCompilationResultAsync(parent, compilationResult);
CreateCompilationResultAsync(RepositoryName, CompilationResult, CancellationToken)
public virtual Task<CompilationResult> CreateCompilationResultAsync(RepositoryName parent, CompilationResult compilationResult, CancellationToken cancellationToken)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the compilation result. Must be
in the format |
compilationResult |
CompilationResult Required. The compilation result to create. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
CompilationResult compilationResult = new CompilationResult();
// Make the request
CompilationResult response = await dataformClient.CreateCompilationResultAsync(parent, compilationResult);
CreateCompilationResultAsync(string, CompilationResult, CallSettings)
public virtual Task<CompilationResult> CreateCompilationResultAsync(string parent, CompilationResult compilationResult, CallSettings callSettings = null)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the compilation result. Must be
in the format |
compilationResult |
CompilationResult Required. The compilation result to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
CompilationResult compilationResult = new CompilationResult();
// Make the request
CompilationResult response = await dataformClient.CreateCompilationResultAsync(parent, compilationResult);
CreateCompilationResultAsync(string, CompilationResult, CancellationToken)
public virtual Task<CompilationResult> CreateCompilationResultAsync(string parent, CompilationResult compilationResult, CancellationToken cancellationToken)
Creates a new CompilationResult in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the compilation result. Must be
in the format |
compilationResult |
CompilationResult Required. The compilation result to create. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
CompilationResult compilationResult = new CompilationResult();
// Make the request
CompilationResult response = await dataformClient.CreateCompilationResultAsync(parent, compilationResult);
CreateReleaseConfig(CreateReleaseConfigRequest, CallSettings)
public virtual ReleaseConfig CreateReleaseConfig(CreateReleaseConfigRequest request, CallSettings callSettings = null)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateReleaseConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ReleaseConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CreateReleaseConfigRequest request = new CreateReleaseConfigRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
ReleaseConfig = new ReleaseConfig(),
ReleaseConfigId = "",
};
// Make the request
ReleaseConfig response = dataformClient.CreateReleaseConfig(request);
CreateReleaseConfig(RepositoryName, ReleaseConfig, string, CallSettings)
public virtual ReleaseConfig CreateReleaseConfig(RepositoryName parent, ReleaseConfig releaseConfig, string releaseConfigId, CallSettings callSettings = null)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the release config. Must be in
the format |
releaseConfig |
ReleaseConfig Required. The release config to create. |
releaseConfigId |
string Required. The ID to use for the release config, which will become the final component of the release config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ReleaseConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
ReleaseConfig releaseConfig = new ReleaseConfig();
string releaseConfigId = "";
// Make the request
ReleaseConfig response = dataformClient.CreateReleaseConfig(parent, releaseConfig, releaseConfigId);
CreateReleaseConfig(string, ReleaseConfig, string, CallSettings)
public virtual ReleaseConfig CreateReleaseConfig(string parent, ReleaseConfig releaseConfig, string releaseConfigId, CallSettings callSettings = null)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the release config. Must be in
the format |
releaseConfig |
ReleaseConfig Required. The release config to create. |
releaseConfigId |
string Required. The ID to use for the release config, which will become the final component of the release config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ReleaseConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
ReleaseConfig releaseConfig = new ReleaseConfig();
string releaseConfigId = "";
// Make the request
ReleaseConfig response = dataformClient.CreateReleaseConfig(parent, releaseConfig, releaseConfigId);
CreateReleaseConfigAsync(CreateReleaseConfigRequest, CallSettings)
public virtual Task<ReleaseConfig> CreateReleaseConfigAsync(CreateReleaseConfigRequest request, CallSettings callSettings = null)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateReleaseConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateReleaseConfigRequest request = new CreateReleaseConfigRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
ReleaseConfig = new ReleaseConfig(),
ReleaseConfigId = "",
};
// Make the request
ReleaseConfig response = await dataformClient.CreateReleaseConfigAsync(request);
CreateReleaseConfigAsync(CreateReleaseConfigRequest, CancellationToken)
public virtual Task<ReleaseConfig> CreateReleaseConfigAsync(CreateReleaseConfigRequest request, CancellationToken cancellationToken)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateReleaseConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateReleaseConfigRequest request = new CreateReleaseConfigRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
ReleaseConfig = new ReleaseConfig(),
ReleaseConfigId = "",
};
// Make the request
ReleaseConfig response = await dataformClient.CreateReleaseConfigAsync(request);
CreateReleaseConfigAsync(RepositoryName, ReleaseConfig, string, CallSettings)
public virtual Task<ReleaseConfig> CreateReleaseConfigAsync(RepositoryName parent, ReleaseConfig releaseConfig, string releaseConfigId, CallSettings callSettings = null)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the release config. Must be in
the format |
releaseConfig |
ReleaseConfig Required. The release config to create. |
releaseConfigId |
string Required. The ID to use for the release config, which will become the final component of the release config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
ReleaseConfig releaseConfig = new ReleaseConfig();
string releaseConfigId = "";
// Make the request
ReleaseConfig response = await dataformClient.CreateReleaseConfigAsync(parent, releaseConfig, releaseConfigId);
CreateReleaseConfigAsync(RepositoryName, ReleaseConfig, string, CancellationToken)
public virtual Task<ReleaseConfig> CreateReleaseConfigAsync(RepositoryName parent, ReleaseConfig releaseConfig, string releaseConfigId, CancellationToken cancellationToken)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the release config. Must be in
the format |
releaseConfig |
ReleaseConfig Required. The release config to create. |
releaseConfigId |
string Required. The ID to use for the release config, which will become the final component of the release config's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
ReleaseConfig releaseConfig = new ReleaseConfig();
string releaseConfigId = "";
// Make the request
ReleaseConfig response = await dataformClient.CreateReleaseConfigAsync(parent, releaseConfig, releaseConfigId);
CreateReleaseConfigAsync(string, ReleaseConfig, string, CallSettings)
public virtual Task<ReleaseConfig> CreateReleaseConfigAsync(string parent, ReleaseConfig releaseConfig, string releaseConfigId, CallSettings callSettings = null)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the release config. Must be in
the format |
releaseConfig |
ReleaseConfig Required. The release config to create. |
releaseConfigId |
string Required. The ID to use for the release config, which will become the final component of the release config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
ReleaseConfig releaseConfig = new ReleaseConfig();
string releaseConfigId = "";
// Make the request
ReleaseConfig response = await dataformClient.CreateReleaseConfigAsync(parent, releaseConfig, releaseConfigId);
CreateReleaseConfigAsync(string, ReleaseConfig, string, CancellationToken)
public virtual Task<ReleaseConfig> CreateReleaseConfigAsync(string parent, ReleaseConfig releaseConfig, string releaseConfigId, CancellationToken cancellationToken)
Creates a new ReleaseConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the release config. Must be in
the format |
releaseConfig |
ReleaseConfig Required. The release config to create. |
releaseConfigId |
string Required. The ID to use for the release config, which will become the final component of the release config's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
ReleaseConfig releaseConfig = new ReleaseConfig();
string releaseConfigId = "";
// Make the request
ReleaseConfig response = await dataformClient.CreateReleaseConfigAsync(parent, releaseConfig, releaseConfigId);
CreateRepository(LocationName, Repository, string, CallSettings)
public virtual Repository CreateRepository(LocationName parent, Repository repository, string repositoryId, CallSettings callSettings = null)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. The location in which to create the repository. Must be in the
format |
repository |
Repository Required. The repository to create. |
repositoryId |
string Required. The ID to use for the repository, which will become the final component of the repository's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Repository |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
Repository repository = new Repository();
string repositoryId = "";
// Make the request
Repository response = dataformClient.CreateRepository(parent, repository, repositoryId);
CreateRepository(CreateRepositoryRequest, CallSettings)
public virtual Repository CreateRepository(CreateRepositoryRequest request, CallSettings callSettings = null)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
CreateRepositoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Repository |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CreateRepositoryRequest request = new CreateRepositoryRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Repository = new Repository(),
RepositoryId = "",
};
// Make the request
Repository response = dataformClient.CreateRepository(request);
CreateRepository(string, Repository, string, CallSettings)
public virtual Repository CreateRepository(string parent, Repository repository, string repositoryId, CallSettings callSettings = null)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The location in which to create the repository. Must be in the
format |
repository |
Repository Required. The repository to create. |
repositoryId |
string Required. The ID to use for the repository, which will become the final component of the repository's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Repository |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
Repository repository = new Repository();
string repositoryId = "";
// Make the request
Repository response = dataformClient.CreateRepository(parent, repository, repositoryId);
CreateRepositoryAsync(LocationName, Repository, string, CallSettings)
public virtual Task<Repository> CreateRepositoryAsync(LocationName parent, Repository repository, string repositoryId, CallSettings callSettings = null)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. The location in which to create the repository. Must be in the
format |
repository |
Repository Required. The repository to create. |
repositoryId |
string Required. The ID to use for the repository, which will become the final component of the repository's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
Repository repository = new Repository();
string repositoryId = "";
// Make the request
Repository response = await dataformClient.CreateRepositoryAsync(parent, repository, repositoryId);
CreateRepositoryAsync(LocationName, Repository, string, CancellationToken)
public virtual Task<Repository> CreateRepositoryAsync(LocationName parent, Repository repository, string repositoryId, CancellationToken cancellationToken)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. The location in which to create the repository. Must be in the
format |
repository |
Repository Required. The repository to create. |
repositoryId |
string Required. The ID to use for the repository, which will become the final component of the repository's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
Repository repository = new Repository();
string repositoryId = "";
// Make the request
Repository response = await dataformClient.CreateRepositoryAsync(parent, repository, repositoryId);
CreateRepositoryAsync(CreateRepositoryRequest, CallSettings)
public virtual Task<Repository> CreateRepositoryAsync(CreateRepositoryRequest request, CallSettings callSettings = null)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
CreateRepositoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateRepositoryRequest request = new CreateRepositoryRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Repository = new Repository(),
RepositoryId = "",
};
// Make the request
Repository response = await dataformClient.CreateRepositoryAsync(request);
CreateRepositoryAsync(CreateRepositoryRequest, CancellationToken)
public virtual Task<Repository> CreateRepositoryAsync(CreateRepositoryRequest request, CancellationToken cancellationToken)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
CreateRepositoryRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateRepositoryRequest request = new CreateRepositoryRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Repository = new Repository(),
RepositoryId = "",
};
// Make the request
Repository response = await dataformClient.CreateRepositoryAsync(request);
CreateRepositoryAsync(string, Repository, string, CallSettings)
public virtual Task<Repository> CreateRepositoryAsync(string parent, Repository repository, string repositoryId, CallSettings callSettings = null)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The location in which to create the repository. Must be in the
format |
repository |
Repository Required. The repository to create. |
repositoryId |
string Required. The ID to use for the repository, which will become the final component of the repository's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
Repository repository = new Repository();
string repositoryId = "";
// Make the request
Repository response = await dataformClient.CreateRepositoryAsync(parent, repository, repositoryId);
CreateRepositoryAsync(string, Repository, string, CancellationToken)
public virtual Task<Repository> CreateRepositoryAsync(string parent, Repository repository, string repositoryId, CancellationToken cancellationToken)
Creates a new Repository in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The location in which to create the repository. Must be in the
format |
repository |
Repository Required. The repository to create. |
repositoryId |
string Required. The ID to use for the repository, which will become the final component of the repository's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
Repository repository = new Repository();
string repositoryId = "";
// Make the request
Repository response = await dataformClient.CreateRepositoryAsync(parent, repository, repositoryId);
CreateWorkflowConfig(CreateWorkflowConfigRequest, CallSettings)
public virtual WorkflowConfig CreateWorkflowConfig(CreateWorkflowConfigRequest request, CallSettings callSettings = null)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CreateWorkflowConfigRequest request = new CreateWorkflowConfigRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
WorkflowConfig = new WorkflowConfig(),
WorkflowConfigId = "",
};
// Make the request
WorkflowConfig response = dataformClient.CreateWorkflowConfig(request);
CreateWorkflowConfig(RepositoryName, WorkflowConfig, string, CallSettings)
public virtual WorkflowConfig CreateWorkflowConfig(RepositoryName parent, WorkflowConfig workflowConfig, string workflowConfigId, CallSettings callSettings = null)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workflow config. Must be in
the format |
workflowConfig |
WorkflowConfig Required. The workflow config to create. |
workflowConfigId |
string Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
WorkflowConfig workflowConfig = new WorkflowConfig();
string workflowConfigId = "";
// Make the request
WorkflowConfig response = dataformClient.CreateWorkflowConfig(parent, workflowConfig, workflowConfigId);
CreateWorkflowConfig(string, WorkflowConfig, string, CallSettings)
public virtual WorkflowConfig CreateWorkflowConfig(string parent, WorkflowConfig workflowConfig, string workflowConfigId, CallSettings callSettings = null)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workflow config. Must be in
the format |
workflowConfig |
WorkflowConfig Required. The workflow config to create. |
workflowConfigId |
string Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
WorkflowConfig workflowConfig = new WorkflowConfig();
string workflowConfigId = "";
// Make the request
WorkflowConfig response = dataformClient.CreateWorkflowConfig(parent, workflowConfig, workflowConfigId);
CreateWorkflowConfigAsync(CreateWorkflowConfigRequest, CallSettings)
public virtual Task<WorkflowConfig> CreateWorkflowConfigAsync(CreateWorkflowConfigRequest request, CallSettings callSettings = null)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateWorkflowConfigRequest request = new CreateWorkflowConfigRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
WorkflowConfig = new WorkflowConfig(),
WorkflowConfigId = "",
};
// Make the request
WorkflowConfig response = await dataformClient.CreateWorkflowConfigAsync(request);
CreateWorkflowConfigAsync(CreateWorkflowConfigRequest, CancellationToken)
public virtual Task<WorkflowConfig> CreateWorkflowConfigAsync(CreateWorkflowConfigRequest request, CancellationToken cancellationToken)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateWorkflowConfigRequest request = new CreateWorkflowConfigRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
WorkflowConfig = new WorkflowConfig(),
WorkflowConfigId = "",
};
// Make the request
WorkflowConfig response = await dataformClient.CreateWorkflowConfigAsync(request);
CreateWorkflowConfigAsync(RepositoryName, WorkflowConfig, string, CallSettings)
public virtual Task<WorkflowConfig> CreateWorkflowConfigAsync(RepositoryName parent, WorkflowConfig workflowConfig, string workflowConfigId, CallSettings callSettings = null)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workflow config. Must be in
the format |
workflowConfig |
WorkflowConfig Required. The workflow config to create. |
workflowConfigId |
string Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
WorkflowConfig workflowConfig = new WorkflowConfig();
string workflowConfigId = "";
// Make the request
WorkflowConfig response = await dataformClient.CreateWorkflowConfigAsync(parent, workflowConfig, workflowConfigId);
CreateWorkflowConfigAsync(RepositoryName, WorkflowConfig, string, CancellationToken)
public virtual Task<WorkflowConfig> CreateWorkflowConfigAsync(RepositoryName parent, WorkflowConfig workflowConfig, string workflowConfigId, CancellationToken cancellationToken)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workflow config. Must be in
the format |
workflowConfig |
WorkflowConfig Required. The workflow config to create. |
workflowConfigId |
string Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
WorkflowConfig workflowConfig = new WorkflowConfig();
string workflowConfigId = "";
// Make the request
WorkflowConfig response = await dataformClient.CreateWorkflowConfigAsync(parent, workflowConfig, workflowConfigId);
CreateWorkflowConfigAsync(string, WorkflowConfig, string, CallSettings)
public virtual Task<WorkflowConfig> CreateWorkflowConfigAsync(string parent, WorkflowConfig workflowConfig, string workflowConfigId, CallSettings callSettings = null)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workflow config. Must be in
the format |
workflowConfig |
WorkflowConfig Required. The workflow config to create. |
workflowConfigId |
string Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
WorkflowConfig workflowConfig = new WorkflowConfig();
string workflowConfigId = "";
// Make the request
WorkflowConfig response = await dataformClient.CreateWorkflowConfigAsync(parent, workflowConfig, workflowConfigId);
CreateWorkflowConfigAsync(string, WorkflowConfig, string, CancellationToken)
public virtual Task<WorkflowConfig> CreateWorkflowConfigAsync(string parent, WorkflowConfig workflowConfig, string workflowConfigId, CancellationToken cancellationToken)
Creates a new WorkflowConfig in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workflow config. Must be in
the format |
workflowConfig |
WorkflowConfig Required. The workflow config to create. |
workflowConfigId |
string Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
WorkflowConfig workflowConfig = new WorkflowConfig();
string workflowConfigId = "";
// Make the request
WorkflowConfig response = await dataformClient.CreateWorkflowConfigAsync(parent, workflowConfig, workflowConfigId);
CreateWorkflowInvocation(CreateWorkflowInvocationRequest, CallSettings)
public virtual WorkflowInvocation CreateWorkflowInvocation(CreateWorkflowInvocationRequest request, CallSettings callSettings = null)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowInvocation |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CreateWorkflowInvocationRequest request = new CreateWorkflowInvocationRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
WorkflowInvocation = new WorkflowInvocation(),
};
// Make the request
WorkflowInvocation response = dataformClient.CreateWorkflowInvocation(request);
CreateWorkflowInvocation(RepositoryName, WorkflowInvocation, CallSettings)
public virtual WorkflowInvocation CreateWorkflowInvocation(RepositoryName parent, WorkflowInvocation workflowInvocation, CallSettings callSettings = null)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workflow invocation. Must
be in the format |
workflowInvocation |
WorkflowInvocation Required. The workflow invocation resource to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowInvocation |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
WorkflowInvocation workflowInvocation = new WorkflowInvocation();
// Make the request
WorkflowInvocation response = dataformClient.CreateWorkflowInvocation(parent, workflowInvocation);
CreateWorkflowInvocation(string, WorkflowInvocation, CallSettings)
public virtual WorkflowInvocation CreateWorkflowInvocation(string parent, WorkflowInvocation workflowInvocation, CallSettings callSettings = null)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workflow invocation. Must
be in the format |
workflowInvocation |
WorkflowInvocation Required. The workflow invocation resource to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowInvocation |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
WorkflowInvocation workflowInvocation = new WorkflowInvocation();
// Make the request
WorkflowInvocation response = dataformClient.CreateWorkflowInvocation(parent, workflowInvocation);
CreateWorkflowInvocationAsync(CreateWorkflowInvocationRequest, CallSettings)
public virtual Task<WorkflowInvocation> CreateWorkflowInvocationAsync(CreateWorkflowInvocationRequest request, CallSettings callSettings = null)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateWorkflowInvocationRequest request = new CreateWorkflowInvocationRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
WorkflowInvocation = new WorkflowInvocation(),
};
// Make the request
WorkflowInvocation response = await dataformClient.CreateWorkflowInvocationAsync(request);
CreateWorkflowInvocationAsync(CreateWorkflowInvocationRequest, CancellationToken)
public virtual Task<WorkflowInvocation> CreateWorkflowInvocationAsync(CreateWorkflowInvocationRequest request, CancellationToken cancellationToken)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateWorkflowInvocationRequest request = new CreateWorkflowInvocationRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
WorkflowInvocation = new WorkflowInvocation(),
};
// Make the request
WorkflowInvocation response = await dataformClient.CreateWorkflowInvocationAsync(request);
CreateWorkflowInvocationAsync(RepositoryName, WorkflowInvocation, CallSettings)
public virtual Task<WorkflowInvocation> CreateWorkflowInvocationAsync(RepositoryName parent, WorkflowInvocation workflowInvocation, CallSettings callSettings = null)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workflow invocation. Must
be in the format |
workflowInvocation |
WorkflowInvocation Required. The workflow invocation resource to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
WorkflowInvocation workflowInvocation = new WorkflowInvocation();
// Make the request
WorkflowInvocation response = await dataformClient.CreateWorkflowInvocationAsync(parent, workflowInvocation);
CreateWorkflowInvocationAsync(RepositoryName, WorkflowInvocation, CancellationToken)
public virtual Task<WorkflowInvocation> CreateWorkflowInvocationAsync(RepositoryName parent, WorkflowInvocation workflowInvocation, CancellationToken cancellationToken)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workflow invocation. Must
be in the format |
workflowInvocation |
WorkflowInvocation Required. The workflow invocation resource to create. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
WorkflowInvocation workflowInvocation = new WorkflowInvocation();
// Make the request
WorkflowInvocation response = await dataformClient.CreateWorkflowInvocationAsync(parent, workflowInvocation);
CreateWorkflowInvocationAsync(string, WorkflowInvocation, CallSettings)
public virtual Task<WorkflowInvocation> CreateWorkflowInvocationAsync(string parent, WorkflowInvocation workflowInvocation, CallSettings callSettings = null)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workflow invocation. Must
be in the format |
workflowInvocation |
WorkflowInvocation Required. The workflow invocation resource to create. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
WorkflowInvocation workflowInvocation = new WorkflowInvocation();
// Make the request
WorkflowInvocation response = await dataformClient.CreateWorkflowInvocationAsync(parent, workflowInvocation);
CreateWorkflowInvocationAsync(string, WorkflowInvocation, CancellationToken)
public virtual Task<WorkflowInvocation> CreateWorkflowInvocationAsync(string parent, WorkflowInvocation workflowInvocation, CancellationToken cancellationToken)
Creates a new WorkflowInvocation in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workflow invocation. Must
be in the format |
workflowInvocation |
WorkflowInvocation Required. The workflow invocation resource to create. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
WorkflowInvocation workflowInvocation = new WorkflowInvocation();
// Make the request
WorkflowInvocation response = await dataformClient.CreateWorkflowInvocationAsync(parent, workflowInvocation);
CreateWorkspace(CreateWorkspaceRequest, CallSettings)
public virtual Workspace CreateWorkspace(CreateWorkspaceRequest request, CallSettings callSettings = null)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkspaceRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Workspace |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CreateWorkspaceRequest request = new CreateWorkspaceRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
Workspace = new Workspace(),
WorkspaceId = "",
};
// Make the request
Workspace response = dataformClient.CreateWorkspace(request);
CreateWorkspace(RepositoryName, Workspace, string, CallSettings)
public virtual Workspace CreateWorkspace(RepositoryName parent, Workspace workspace, string workspaceId, CallSettings callSettings = null)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workspace. Must be in the
format |
workspace |
Workspace Required. The workspace to create. |
workspaceId |
string Required. The ID to use for the workspace, which will become the final component of the workspace's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Workspace |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
Workspace workspace = new Workspace();
string workspaceId = "";
// Make the request
Workspace response = dataformClient.CreateWorkspace(parent, workspace, workspaceId);
CreateWorkspace(string, Workspace, string, CallSettings)
public virtual Workspace CreateWorkspace(string parent, Workspace workspace, string workspaceId, CallSettings callSettings = null)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workspace. Must be in the
format |
workspace |
Workspace Required. The workspace to create. |
workspaceId |
string Required. The ID to use for the workspace, which will become the final component of the workspace's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Workspace |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
Workspace workspace = new Workspace();
string workspaceId = "";
// Make the request
Workspace response = dataformClient.CreateWorkspace(parent, workspace, workspaceId);
CreateWorkspaceAsync(CreateWorkspaceRequest, CallSettings)
public virtual Task<Workspace> CreateWorkspaceAsync(CreateWorkspaceRequest request, CallSettings callSettings = null)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkspaceRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateWorkspaceRequest request = new CreateWorkspaceRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
Workspace = new Workspace(),
WorkspaceId = "",
};
// Make the request
Workspace response = await dataformClient.CreateWorkspaceAsync(request);
CreateWorkspaceAsync(CreateWorkspaceRequest, CancellationToken)
public virtual Task<Workspace> CreateWorkspaceAsync(CreateWorkspaceRequest request, CancellationToken cancellationToken)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkspaceRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CreateWorkspaceRequest request = new CreateWorkspaceRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
Workspace = new Workspace(),
WorkspaceId = "",
};
// Make the request
Workspace response = await dataformClient.CreateWorkspaceAsync(request);
CreateWorkspaceAsync(RepositoryName, Workspace, string, CallSettings)
public virtual Task<Workspace> CreateWorkspaceAsync(RepositoryName parent, Workspace workspace, string workspaceId, CallSettings callSettings = null)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workspace. Must be in the
format |
workspace |
Workspace Required. The workspace to create. |
workspaceId |
string Required. The ID to use for the workspace, which will become the final component of the workspace's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
Workspace workspace = new Workspace();
string workspaceId = "";
// Make the request
Workspace response = await dataformClient.CreateWorkspaceAsync(parent, workspace, workspaceId);
CreateWorkspaceAsync(RepositoryName, Workspace, string, CancellationToken)
public virtual Task<Workspace> CreateWorkspaceAsync(RepositoryName parent, Workspace workspace, string workspaceId, CancellationToken cancellationToken)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to create the workspace. Must be in the
format |
workspace |
Workspace Required. The workspace to create. |
workspaceId |
string Required. The ID to use for the workspace, which will become the final component of the workspace's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
Workspace workspace = new Workspace();
string workspaceId = "";
// Make the request
Workspace response = await dataformClient.CreateWorkspaceAsync(parent, workspace, workspaceId);
CreateWorkspaceAsync(string, Workspace, string, CallSettings)
public virtual Task<Workspace> CreateWorkspaceAsync(string parent, Workspace workspace, string workspaceId, CallSettings callSettings = null)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workspace. Must be in the
format |
workspace |
Workspace Required. The workspace to create. |
workspaceId |
string Required. The ID to use for the workspace, which will become the final component of the workspace's resource name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
Workspace workspace = new Workspace();
string workspaceId = "";
// Make the request
Workspace response = await dataformClient.CreateWorkspaceAsync(parent, workspace, workspaceId);
CreateWorkspaceAsync(string, Workspace, string, CancellationToken)
public virtual Task<Workspace> CreateWorkspaceAsync(string parent, Workspace workspace, string workspaceId, CancellationToken cancellationToken)
Creates a new Workspace in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to create the workspace. Must be in the
format |
workspace |
Workspace Required. The workspace to create. |
workspaceId |
string Required. The ID to use for the workspace, which will become the final component of the workspace's resource name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
Workspace workspace = new Workspace();
string workspaceId = "";
// Make the request
Workspace response = await dataformClient.CreateWorkspaceAsync(parent, workspace, workspaceId);
DeleteReleaseConfig(DeleteReleaseConfigRequest, CallSettings)
public virtual void DeleteReleaseConfig(DeleteReleaseConfigRequest request, CallSettings callSettings = null)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
request |
DeleteReleaseConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
DeleteReleaseConfigRequest request = new DeleteReleaseConfigRequest
{
ReleaseConfigName = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]"),
};
// Make the request
dataformClient.DeleteReleaseConfig(request);
DeleteReleaseConfig(ReleaseConfigName, CallSettings)
public virtual void DeleteReleaseConfig(ReleaseConfigName name, CallSettings callSettings = null)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
ReleaseConfigName Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ReleaseConfigName name = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]");
// Make the request
dataformClient.DeleteReleaseConfig(name);
DeleteReleaseConfig(string, CallSettings)
public virtual void DeleteReleaseConfig(string name, CallSettings callSettings = null)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/releaseConfigs/[RELEASE_CONFIG]";
// Make the request
dataformClient.DeleteReleaseConfig(name);
DeleteReleaseConfigAsync(DeleteReleaseConfigRequest, CallSettings)
public virtual Task DeleteReleaseConfigAsync(DeleteReleaseConfigRequest request, CallSettings callSettings = null)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
request |
DeleteReleaseConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteReleaseConfigRequest request = new DeleteReleaseConfigRequest
{
ReleaseConfigName = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]"),
};
// Make the request
await dataformClient.DeleteReleaseConfigAsync(request);
DeleteReleaseConfigAsync(DeleteReleaseConfigRequest, CancellationToken)
public virtual Task DeleteReleaseConfigAsync(DeleteReleaseConfigRequest request, CancellationToken cancellationToken)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
request |
DeleteReleaseConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteReleaseConfigRequest request = new DeleteReleaseConfigRequest
{
ReleaseConfigName = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]"),
};
// Make the request
await dataformClient.DeleteReleaseConfigAsync(request);
DeleteReleaseConfigAsync(ReleaseConfigName, CallSettings)
public virtual Task DeleteReleaseConfigAsync(ReleaseConfigName name, CallSettings callSettings = null)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
ReleaseConfigName Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ReleaseConfigName name = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]");
// Make the request
await dataformClient.DeleteReleaseConfigAsync(name);
DeleteReleaseConfigAsync(ReleaseConfigName, CancellationToken)
public virtual Task DeleteReleaseConfigAsync(ReleaseConfigName name, CancellationToken cancellationToken)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
ReleaseConfigName Required. The release config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ReleaseConfigName name = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]");
// Make the request
await dataformClient.DeleteReleaseConfigAsync(name);
DeleteReleaseConfigAsync(string, CallSettings)
public virtual Task DeleteReleaseConfigAsync(string name, CallSettings callSettings = null)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/releaseConfigs/[RELEASE_CONFIG]";
// Make the request
await dataformClient.DeleteReleaseConfigAsync(name);
DeleteReleaseConfigAsync(string, CancellationToken)
public virtual Task DeleteReleaseConfigAsync(string name, CancellationToken cancellationToken)
Deletes a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The release config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/releaseConfigs/[RELEASE_CONFIG]";
// Make the request
await dataformClient.DeleteReleaseConfigAsync(name);
DeleteRepository(DeleteRepositoryRequest, CallSettings)
public virtual void DeleteRepository(DeleteRepositoryRequest request, CallSettings callSettings = null)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
request |
DeleteRepositoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
DeleteRepositoryRequest request = new DeleteRepositoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
Force = false,
};
// Make the request
dataformClient.DeleteRepository(request);
DeleteRepository(RepositoryName, CallSettings)
public virtual void DeleteRepository(RepositoryName name, CallSettings callSettings = null)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
name |
RepositoryName Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName name = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
dataformClient.DeleteRepository(name);
DeleteRepository(string, CallSettings)
public virtual void DeleteRepository(string name, CallSettings callSettings = null)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
name |
string Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
dataformClient.DeleteRepository(name);
DeleteRepositoryAsync(DeleteRepositoryRequest, CallSettings)
public virtual Task DeleteRepositoryAsync(DeleteRepositoryRequest request, CallSettings callSettings = null)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
request |
DeleteRepositoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteRepositoryRequest request = new DeleteRepositoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
Force = false,
};
// Make the request
await dataformClient.DeleteRepositoryAsync(request);
DeleteRepositoryAsync(DeleteRepositoryRequest, CancellationToken)
public virtual Task DeleteRepositoryAsync(DeleteRepositoryRequest request, CancellationToken cancellationToken)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
request |
DeleteRepositoryRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteRepositoryRequest request = new DeleteRepositoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
Force = false,
};
// Make the request
await dataformClient.DeleteRepositoryAsync(request);
DeleteRepositoryAsync(RepositoryName, CallSettings)
public virtual Task DeleteRepositoryAsync(RepositoryName name, CallSettings callSettings = null)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
name |
RepositoryName Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName name = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
await dataformClient.DeleteRepositoryAsync(name);
DeleteRepositoryAsync(RepositoryName, CancellationToken)
public virtual Task DeleteRepositoryAsync(RepositoryName name, CancellationToken cancellationToken)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
name |
RepositoryName Required. The repository's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName name = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
await dataformClient.DeleteRepositoryAsync(name);
DeleteRepositoryAsync(string, CallSettings)
public virtual Task DeleteRepositoryAsync(string name, CallSettings callSettings = null)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
name |
string Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
await dataformClient.DeleteRepositoryAsync(name);
DeleteRepositoryAsync(string, CancellationToken)
public virtual Task DeleteRepositoryAsync(string name, CancellationToken cancellationToken)
Deletes a single Repository.
Parameters | |
---|---|
Name | Description |
name |
string Required. The repository's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
await dataformClient.DeleteRepositoryAsync(name);
DeleteWorkflowConfig(DeleteWorkflowConfigRequest, CallSettings)
public virtual void DeleteWorkflowConfig(DeleteWorkflowConfigRequest request, CallSettings callSettings = null)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
DeleteWorkflowConfigRequest request = new DeleteWorkflowConfigRequest
{
WorkflowConfigName = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]"),
};
// Make the request
dataformClient.DeleteWorkflowConfig(request);
DeleteWorkflowConfig(WorkflowConfigName, CallSettings)
public virtual void DeleteWorkflowConfig(WorkflowConfigName name, CallSettings callSettings = null)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
WorkflowConfigName Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
WorkflowConfigName name = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]");
// Make the request
dataformClient.DeleteWorkflowConfig(name);
DeleteWorkflowConfig(string, CallSettings)
public virtual void DeleteWorkflowConfig(string name, CallSettings callSettings = null)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowConfigs/[WORKFLOW_CONFIG]";
// Make the request
dataformClient.DeleteWorkflowConfig(name);
DeleteWorkflowConfigAsync(DeleteWorkflowConfigRequest, CallSettings)
public virtual Task DeleteWorkflowConfigAsync(DeleteWorkflowConfigRequest request, CallSettings callSettings = null)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteWorkflowConfigRequest request = new DeleteWorkflowConfigRequest
{
WorkflowConfigName = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]"),
};
// Make the request
await dataformClient.DeleteWorkflowConfigAsync(request);
DeleteWorkflowConfigAsync(DeleteWorkflowConfigRequest, CancellationToken)
public virtual Task DeleteWorkflowConfigAsync(DeleteWorkflowConfigRequest request, CancellationToken cancellationToken)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteWorkflowConfigRequest request = new DeleteWorkflowConfigRequest
{
WorkflowConfigName = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]"),
};
// Make the request
await dataformClient.DeleteWorkflowConfigAsync(request);
DeleteWorkflowConfigAsync(WorkflowConfigName, CallSettings)
public virtual Task DeleteWorkflowConfigAsync(WorkflowConfigName name, CallSettings callSettings = null)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
WorkflowConfigName Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowConfigName name = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]");
// Make the request
await dataformClient.DeleteWorkflowConfigAsync(name);
DeleteWorkflowConfigAsync(WorkflowConfigName, CancellationToken)
public virtual Task DeleteWorkflowConfigAsync(WorkflowConfigName name, CancellationToken cancellationToken)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
WorkflowConfigName Required. The workflow config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowConfigName name = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]");
// Make the request
await dataformClient.DeleteWorkflowConfigAsync(name);
DeleteWorkflowConfigAsync(string, CallSettings)
public virtual Task DeleteWorkflowConfigAsync(string name, CallSettings callSettings = null)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowConfigs/[WORKFLOW_CONFIG]";
// Make the request
await dataformClient.DeleteWorkflowConfigAsync(name);
DeleteWorkflowConfigAsync(string, CancellationToken)
public virtual Task DeleteWorkflowConfigAsync(string name, CancellationToken cancellationToken)
Deletes a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowConfigs/[WORKFLOW_CONFIG]";
// Make the request
await dataformClient.DeleteWorkflowConfigAsync(name);
DeleteWorkflowInvocation(DeleteWorkflowInvocationRequest, CallSettings)
public virtual void DeleteWorkflowInvocation(DeleteWorkflowInvocationRequest request, CallSettings callSettings = null)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
DeleteWorkflowInvocationRequest request = new DeleteWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
dataformClient.DeleteWorkflowInvocation(request);
DeleteWorkflowInvocation(WorkflowInvocationName, CallSettings)
public virtual void DeleteWorkflowInvocation(WorkflowInvocationName name, CallSettings callSettings = null)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
WorkflowInvocationName Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
WorkflowInvocationName name = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]");
// Make the request
dataformClient.DeleteWorkflowInvocation(name);
DeleteWorkflowInvocation(string, CallSettings)
public virtual void DeleteWorkflowInvocation(string name, CallSettings callSettings = null)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowInvocations/[WORKFLOW_INVOCATION]";
// Make the request
dataformClient.DeleteWorkflowInvocation(name);
DeleteWorkflowInvocationAsync(DeleteWorkflowInvocationRequest, CallSettings)
public virtual Task DeleteWorkflowInvocationAsync(DeleteWorkflowInvocationRequest request, CallSettings callSettings = null)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteWorkflowInvocationRequest request = new DeleteWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
await dataformClient.DeleteWorkflowInvocationAsync(request);
DeleteWorkflowInvocationAsync(DeleteWorkflowInvocationRequest, CancellationToken)
public virtual Task DeleteWorkflowInvocationAsync(DeleteWorkflowInvocationRequest request, CancellationToken cancellationToken)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteWorkflowInvocationRequest request = new DeleteWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
await dataformClient.DeleteWorkflowInvocationAsync(request);
DeleteWorkflowInvocationAsync(WorkflowInvocationName, CallSettings)
public virtual Task DeleteWorkflowInvocationAsync(WorkflowInvocationName name, CallSettings callSettings = null)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
WorkflowInvocationName Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowInvocationName name = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]");
// Make the request
await dataformClient.DeleteWorkflowInvocationAsync(name);
DeleteWorkflowInvocationAsync(WorkflowInvocationName, CancellationToken)
public virtual Task DeleteWorkflowInvocationAsync(WorkflowInvocationName name, CancellationToken cancellationToken)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
WorkflowInvocationName Required. The workflow invocation resource's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowInvocationName name = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]");
// Make the request
await dataformClient.DeleteWorkflowInvocationAsync(name);
DeleteWorkflowInvocationAsync(string, CallSettings)
public virtual Task DeleteWorkflowInvocationAsync(string name, CallSettings callSettings = null)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowInvocations/[WORKFLOW_INVOCATION]";
// Make the request
await dataformClient.DeleteWorkflowInvocationAsync(name);
DeleteWorkflowInvocationAsync(string, CancellationToken)
public virtual Task DeleteWorkflowInvocationAsync(string name, CancellationToken cancellationToken)
Deletes a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow invocation resource's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowInvocations/[WORKFLOW_INVOCATION]";
// Make the request
await dataformClient.DeleteWorkflowInvocationAsync(name);
DeleteWorkspace(DeleteWorkspaceRequest, CallSettings)
public virtual void DeleteWorkspace(DeleteWorkspaceRequest request, CallSettings callSettings = null)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkspaceRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
DeleteWorkspaceRequest request = new DeleteWorkspaceRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
dataformClient.DeleteWorkspace(request);
DeleteWorkspace(WorkspaceName, CallSettings)
public virtual void DeleteWorkspace(WorkspaceName name, CallSettings callSettings = null)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
WorkspaceName Required. The workspace resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
WorkspaceName name = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]");
// Make the request
dataformClient.DeleteWorkspace(name);
DeleteWorkspace(string, CallSettings)
public virtual void DeleteWorkspace(string name, CallSettings callSettings = null)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workspace resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workspaces/[WORKSPACE]";
// Make the request
dataformClient.DeleteWorkspace(name);
DeleteWorkspaceAsync(DeleteWorkspaceRequest, CallSettings)
public virtual Task DeleteWorkspaceAsync(DeleteWorkspaceRequest request, CallSettings callSettings = null)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkspaceRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteWorkspaceRequest request = new DeleteWorkspaceRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
await dataformClient.DeleteWorkspaceAsync(request);
DeleteWorkspaceAsync(DeleteWorkspaceRequest, CancellationToken)
public virtual Task DeleteWorkspaceAsync(DeleteWorkspaceRequest request, CancellationToken cancellationToken)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkspaceRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
DeleteWorkspaceRequest request = new DeleteWorkspaceRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
await dataformClient.DeleteWorkspaceAsync(request);
DeleteWorkspaceAsync(WorkspaceName, CallSettings)
public virtual Task DeleteWorkspaceAsync(WorkspaceName name, CallSettings callSettings = null)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
WorkspaceName Required. The workspace resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkspaceName name = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]");
// Make the request
await dataformClient.DeleteWorkspaceAsync(name);
DeleteWorkspaceAsync(WorkspaceName, CancellationToken)
public virtual Task DeleteWorkspaceAsync(WorkspaceName name, CancellationToken cancellationToken)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
WorkspaceName Required. The workspace resource's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkspaceName name = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]");
// Make the request
await dataformClient.DeleteWorkspaceAsync(name);
DeleteWorkspaceAsync(string, CallSettings)
public virtual Task DeleteWorkspaceAsync(string name, CallSettings callSettings = null)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workspace resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workspaces/[WORKSPACE]";
// Make the request
await dataformClient.DeleteWorkspaceAsync(name);
DeleteWorkspaceAsync(string, CancellationToken)
public virtual Task DeleteWorkspaceAsync(string name, CancellationToken cancellationToken)
Deletes a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workspace resource's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workspaces/[WORKSPACE]";
// Make the request
await dataformClient.DeleteWorkspaceAsync(name);
FetchFileDiff(FetchFileDiffRequest, CallSettings)
public virtual FetchFileDiffResponse FetchFileDiff(FetchFileDiffRequest request, CallSettings callSettings = null)
Fetches Git diff for an uncommitted file in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
FetchFileDiffRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
FetchFileDiffResponse |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
FetchFileDiffRequest request = new FetchFileDiffRequest
{
WorkspaceAsWorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
Path = "",
};
// Make the request
FetchFileDiffResponse response = dataformClient.FetchFileDiff(request);
FetchFileDiffAsync(FetchFileDiffRequest, CallSettings)
public virtual Task<FetchFileDiffResponse> FetchFileDiffAsync(FetchFileDiffRequest request, CallSettings callSettings = null)
Fetches Git diff for an uncommitted file in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
FetchFileDiffRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskFetchFileDiffResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchFileDiffRequest request = new FetchFileDiffRequest
{
WorkspaceAsWorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
Path = "",
};
// Make the request
FetchFileDiffResponse response = await dataformClient.FetchFileDiffAsync(request);
FetchFileDiffAsync(FetchFileDiffRequest, CancellationToken)
public virtual Task<FetchFileDiffResponse> FetchFileDiffAsync(FetchFileDiffRequest request, CancellationToken cancellationToken)
Fetches Git diff for an uncommitted file in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
FetchFileDiffRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskFetchFileDiffResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchFileDiffRequest request = new FetchFileDiffRequest
{
WorkspaceAsWorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
Path = "",
};
// Make the request
FetchFileDiffResponse response = await dataformClient.FetchFileDiffAsync(request);
FetchFileGitStatuses(FetchFileGitStatusesRequest, CallSettings)
public virtual FetchFileGitStatusesResponse FetchFileGitStatuses(FetchFileGitStatusesRequest request, CallSettings callSettings = null)
Fetches Git statuses for the files in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
FetchFileGitStatusesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
FetchFileGitStatusesResponse |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
FetchFileGitStatusesRequest request = new FetchFileGitStatusesRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
FetchFileGitStatusesResponse response = dataformClient.FetchFileGitStatuses(request);
FetchFileGitStatusesAsync(FetchFileGitStatusesRequest, CallSettings)
public virtual Task<FetchFileGitStatusesResponse> FetchFileGitStatusesAsync(FetchFileGitStatusesRequest request, CallSettings callSettings = null)
Fetches Git statuses for the files in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
FetchFileGitStatusesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskFetchFileGitStatusesResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchFileGitStatusesRequest request = new FetchFileGitStatusesRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
FetchFileGitStatusesResponse response = await dataformClient.FetchFileGitStatusesAsync(request);
FetchFileGitStatusesAsync(FetchFileGitStatusesRequest, CancellationToken)
public virtual Task<FetchFileGitStatusesResponse> FetchFileGitStatusesAsync(FetchFileGitStatusesRequest request, CancellationToken cancellationToken)
Fetches Git statuses for the files in a Workspace.
Parameters | |
---|---|
Name | Description |
request |
FetchFileGitStatusesRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskFetchFileGitStatusesResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchFileGitStatusesRequest request = new FetchFileGitStatusesRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
FetchFileGitStatusesResponse response = await dataformClient.FetchFileGitStatusesAsync(request);
FetchGitAheadBehind(FetchGitAheadBehindRequest, CallSettings)
public virtual FetchGitAheadBehindResponse FetchGitAheadBehind(FetchGitAheadBehindRequest request, CallSettings callSettings = null)
Fetches Git ahead/behind against a remote branch.
Parameters | |
---|---|
Name | Description |
request |
FetchGitAheadBehindRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
FetchGitAheadBehindResponse |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
FetchGitAheadBehindRequest request = new FetchGitAheadBehindRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
RemoteBranch = "",
};
// Make the request
FetchGitAheadBehindResponse response = dataformClient.FetchGitAheadBehind(request);
FetchGitAheadBehindAsync(FetchGitAheadBehindRequest, CallSettings)
public virtual Task<FetchGitAheadBehindResponse> FetchGitAheadBehindAsync(FetchGitAheadBehindRequest request, CallSettings callSettings = null)
Fetches Git ahead/behind against a remote branch.
Parameters | |
---|---|
Name | Description |
request |
FetchGitAheadBehindRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskFetchGitAheadBehindResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchGitAheadBehindRequest request = new FetchGitAheadBehindRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
RemoteBranch = "",
};
// Make the request
FetchGitAheadBehindResponse response = await dataformClient.FetchGitAheadBehindAsync(request);
FetchGitAheadBehindAsync(FetchGitAheadBehindRequest, CancellationToken)
public virtual Task<FetchGitAheadBehindResponse> FetchGitAheadBehindAsync(FetchGitAheadBehindRequest request, CancellationToken cancellationToken)
Fetches Git ahead/behind against a remote branch.
Parameters | |
---|---|
Name | Description |
request |
FetchGitAheadBehindRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskFetchGitAheadBehindResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchGitAheadBehindRequest request = new FetchGitAheadBehindRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
RemoteBranch = "",
};
// Make the request
FetchGitAheadBehindResponse response = await dataformClient.FetchGitAheadBehindAsync(request);
FetchRemoteBranches(FetchRemoteBranchesRequest, CallSettings)
public virtual FetchRemoteBranchesResponse FetchRemoteBranches(FetchRemoteBranchesRequest request, CallSettings callSettings = null)
Fetches a Repository's remote branches.
Parameters | |
---|---|
Name | Description |
request |
FetchRemoteBranchesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
FetchRemoteBranchesResponse |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
FetchRemoteBranchesRequest request = new FetchRemoteBranchesRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
FetchRemoteBranchesResponse response = dataformClient.FetchRemoteBranches(request);
FetchRemoteBranchesAsync(FetchRemoteBranchesRequest, CallSettings)
public virtual Task<FetchRemoteBranchesResponse> FetchRemoteBranchesAsync(FetchRemoteBranchesRequest request, CallSettings callSettings = null)
Fetches a Repository's remote branches.
Parameters | |
---|---|
Name | Description |
request |
FetchRemoteBranchesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskFetchRemoteBranchesResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchRemoteBranchesRequest request = new FetchRemoteBranchesRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
FetchRemoteBranchesResponse response = await dataformClient.FetchRemoteBranchesAsync(request);
FetchRemoteBranchesAsync(FetchRemoteBranchesRequest, CancellationToken)
public virtual Task<FetchRemoteBranchesResponse> FetchRemoteBranchesAsync(FetchRemoteBranchesRequest request, CancellationToken cancellationToken)
Fetches a Repository's remote branches.
Parameters | |
---|---|
Name | Description |
request |
FetchRemoteBranchesRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskFetchRemoteBranchesResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchRemoteBranchesRequest request = new FetchRemoteBranchesRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
FetchRemoteBranchesResponse response = await dataformClient.FetchRemoteBranchesAsync(request);
FetchRepositoryHistory(FetchRepositoryHistoryRequest, CallSettings)
public virtual PagedEnumerable<FetchRepositoryHistoryResponse, CommitLogEntry> FetchRepositoryHistory(FetchRepositoryHistoryRequest request, CallSettings callSettings = null)
Fetches a Repository's history of commits. The Repository must not have a
value for git_remote_settings.url
.
Parameters | |
---|---|
Name | Description |
request |
FetchRepositoryHistoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableFetchRepositoryHistoryResponseCommitLogEntry |
A pageable sequence of CommitLogEntry resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
FetchRepositoryHistoryRequest request = new FetchRepositoryHistoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedEnumerable<FetchRepositoryHistoryResponse, CommitLogEntry> response = dataformClient.FetchRepositoryHistory(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (CommitLogEntry item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (FetchRepositoryHistoryResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CommitLogEntry item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CommitLogEntry> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CommitLogEntry item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
FetchRepositoryHistoryAsync(FetchRepositoryHistoryRequest, CallSettings)
public virtual PagedAsyncEnumerable<FetchRepositoryHistoryResponse, CommitLogEntry> FetchRepositoryHistoryAsync(FetchRepositoryHistoryRequest request, CallSettings callSettings = null)
Fetches a Repository's history of commits. The Repository must not have a
value for git_remote_settings.url
.
Parameters | |
---|---|
Name | Description |
request |
FetchRepositoryHistoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableFetchRepositoryHistoryResponseCommitLogEntry |
A pageable asynchronous sequence of CommitLogEntry resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
FetchRepositoryHistoryRequest request = new FetchRepositoryHistoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedAsyncEnumerable<FetchRepositoryHistoryResponse, CommitLogEntry> response = dataformClient.FetchRepositoryHistoryAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((CommitLogEntry item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((FetchRepositoryHistoryResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CommitLogEntry item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CommitLogEntry> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CommitLogEntry item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
GetCompilationResult(CompilationResultName, CallSettings)
public virtual CompilationResult GetCompilationResult(CompilationResultName name, CallSettings callSettings = null)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
name |
CompilationResultName Required. The compilation result's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
CompilationResult |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
CompilationResultName name = CompilationResultName.FromProjectLocationRepositoryCompilationResult("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]");
// Make the request
CompilationResult response = dataformClient.GetCompilationResult(name);
GetCompilationResult(GetCompilationResultRequest, CallSettings)
public virtual CompilationResult GetCompilationResult(GetCompilationResultRequest request, CallSettings callSettings = null)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
request |
GetCompilationResultRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
CompilationResult |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
GetCompilationResultRequest request = new GetCompilationResultRequest
{
CompilationResultName = CompilationResultName.FromProjectLocationRepositoryCompilationResult("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]"),
};
// Make the request
CompilationResult response = dataformClient.GetCompilationResult(request);
GetCompilationResult(string, CallSettings)
public virtual CompilationResult GetCompilationResult(string name, CallSettings callSettings = null)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
name |
string Required. The compilation result's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
CompilationResult |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/compilationResults/[COMPILATION_RESULT]";
// Make the request
CompilationResult response = dataformClient.GetCompilationResult(name);
GetCompilationResultAsync(CompilationResultName, CallSettings)
public virtual Task<CompilationResult> GetCompilationResultAsync(CompilationResultName name, CallSettings callSettings = null)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
name |
CompilationResultName Required. The compilation result's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CompilationResultName name = CompilationResultName.FromProjectLocationRepositoryCompilationResult("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]");
// Make the request
CompilationResult response = await dataformClient.GetCompilationResultAsync(name);
GetCompilationResultAsync(CompilationResultName, CancellationToken)
public virtual Task<CompilationResult> GetCompilationResultAsync(CompilationResultName name, CancellationToken cancellationToken)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
name |
CompilationResultName Required. The compilation result's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
CompilationResultName name = CompilationResultName.FromProjectLocationRepositoryCompilationResult("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]");
// Make the request
CompilationResult response = await dataformClient.GetCompilationResultAsync(name);
GetCompilationResultAsync(GetCompilationResultRequest, CallSettings)
public virtual Task<CompilationResult> GetCompilationResultAsync(GetCompilationResultRequest request, CallSettings callSettings = null)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
request |
GetCompilationResultRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetCompilationResultRequest request = new GetCompilationResultRequest
{
CompilationResultName = CompilationResultName.FromProjectLocationRepositoryCompilationResult("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]"),
};
// Make the request
CompilationResult response = await dataformClient.GetCompilationResultAsync(request);
GetCompilationResultAsync(GetCompilationResultRequest, CancellationToken)
public virtual Task<CompilationResult> GetCompilationResultAsync(GetCompilationResultRequest request, CancellationToken cancellationToken)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
request |
GetCompilationResultRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetCompilationResultRequest request = new GetCompilationResultRequest
{
CompilationResultName = CompilationResultName.FromProjectLocationRepositoryCompilationResult("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[COMPILATION_RESULT]"),
};
// Make the request
CompilationResult response = await dataformClient.GetCompilationResultAsync(request);
GetCompilationResultAsync(string, CallSettings)
public virtual Task<CompilationResult> GetCompilationResultAsync(string name, CallSettings callSettings = null)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
name |
string Required. The compilation result's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/compilationResults/[COMPILATION_RESULT]";
// Make the request
CompilationResult response = await dataformClient.GetCompilationResultAsync(name);
GetCompilationResultAsync(string, CancellationToken)
public virtual Task<CompilationResult> GetCompilationResultAsync(string name, CancellationToken cancellationToken)
Fetches a single CompilationResult.
Parameters | |
---|---|
Name | Description |
name |
string Required. The compilation result's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskCompilationResult |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/compilationResults/[COMPILATION_RESULT]";
// Make the request
CompilationResult response = await dataformClient.GetCompilationResultAsync(name);
GetReleaseConfig(GetReleaseConfigRequest, CallSettings)
public virtual ReleaseConfig GetReleaseConfig(GetReleaseConfigRequest request, CallSettings callSettings = null)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
request |
GetReleaseConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ReleaseConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
GetReleaseConfigRequest request = new GetReleaseConfigRequest
{
ReleaseConfigName = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]"),
};
// Make the request
ReleaseConfig response = dataformClient.GetReleaseConfig(request);
GetReleaseConfig(ReleaseConfigName, CallSettings)
public virtual ReleaseConfig GetReleaseConfig(ReleaseConfigName name, CallSettings callSettings = null)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
ReleaseConfigName Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ReleaseConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ReleaseConfigName name = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]");
// Make the request
ReleaseConfig response = dataformClient.GetReleaseConfig(name);
GetReleaseConfig(string, CallSettings)
public virtual ReleaseConfig GetReleaseConfig(string name, CallSettings callSettings = null)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
ReleaseConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/releaseConfigs/[RELEASE_CONFIG]";
// Make the request
ReleaseConfig response = dataformClient.GetReleaseConfig(name);
GetReleaseConfigAsync(GetReleaseConfigRequest, CallSettings)
public virtual Task<ReleaseConfig> GetReleaseConfigAsync(GetReleaseConfigRequest request, CallSettings callSettings = null)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
request |
GetReleaseConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetReleaseConfigRequest request = new GetReleaseConfigRequest
{
ReleaseConfigName = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]"),
};
// Make the request
ReleaseConfig response = await dataformClient.GetReleaseConfigAsync(request);
GetReleaseConfigAsync(GetReleaseConfigRequest, CancellationToken)
public virtual Task<ReleaseConfig> GetReleaseConfigAsync(GetReleaseConfigRequest request, CancellationToken cancellationToken)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
request |
GetReleaseConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetReleaseConfigRequest request = new GetReleaseConfigRequest
{
ReleaseConfigName = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]"),
};
// Make the request
ReleaseConfig response = await dataformClient.GetReleaseConfigAsync(request);
GetReleaseConfigAsync(ReleaseConfigName, CallSettings)
public virtual Task<ReleaseConfig> GetReleaseConfigAsync(ReleaseConfigName name, CallSettings callSettings = null)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
ReleaseConfigName Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ReleaseConfigName name = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]");
// Make the request
ReleaseConfig response = await dataformClient.GetReleaseConfigAsync(name);
GetReleaseConfigAsync(ReleaseConfigName, CancellationToken)
public virtual Task<ReleaseConfig> GetReleaseConfigAsync(ReleaseConfigName name, CancellationToken cancellationToken)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
ReleaseConfigName Required. The release config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ReleaseConfigName name = ReleaseConfigName.FromProjectLocationRepositoryReleaseConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[RELEASE_CONFIG]");
// Make the request
ReleaseConfig response = await dataformClient.GetReleaseConfigAsync(name);
GetReleaseConfigAsync(string, CallSettings)
public virtual Task<ReleaseConfig> GetReleaseConfigAsync(string name, CallSettings callSettings = null)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The release config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/releaseConfigs/[RELEASE_CONFIG]";
// Make the request
ReleaseConfig response = await dataformClient.GetReleaseConfigAsync(name);
GetReleaseConfigAsync(string, CancellationToken)
public virtual Task<ReleaseConfig> GetReleaseConfigAsync(string name, CancellationToken cancellationToken)
Fetches a single ReleaseConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The release config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskReleaseConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/releaseConfigs/[RELEASE_CONFIG]";
// Make the request
ReleaseConfig response = await dataformClient.GetReleaseConfigAsync(name);
GetRepository(GetRepositoryRequest, CallSettings)
public virtual Repository GetRepository(GetRepositoryRequest request, CallSettings callSettings = null)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
request |
GetRepositoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Repository |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
GetRepositoryRequest request = new GetRepositoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
Repository response = dataformClient.GetRepository(request);
GetRepository(RepositoryName, CallSettings)
public virtual Repository GetRepository(RepositoryName name, CallSettings callSettings = null)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
name |
RepositoryName Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Repository |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName name = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
Repository response = dataformClient.GetRepository(name);
GetRepository(string, CallSettings)
public virtual Repository GetRepository(string name, CallSettings callSettings = null)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
name |
string Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Repository |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
Repository response = dataformClient.GetRepository(name);
GetRepositoryAsync(GetRepositoryRequest, CallSettings)
public virtual Task<Repository> GetRepositoryAsync(GetRepositoryRequest request, CallSettings callSettings = null)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
request |
GetRepositoryRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetRepositoryRequest request = new GetRepositoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
Repository response = await dataformClient.GetRepositoryAsync(request);
GetRepositoryAsync(GetRepositoryRequest, CancellationToken)
public virtual Task<Repository> GetRepositoryAsync(GetRepositoryRequest request, CancellationToken cancellationToken)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
request |
GetRepositoryRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetRepositoryRequest request = new GetRepositoryRequest
{
RepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
Repository response = await dataformClient.GetRepositoryAsync(request);
GetRepositoryAsync(RepositoryName, CallSettings)
public virtual Task<Repository> GetRepositoryAsync(RepositoryName name, CallSettings callSettings = null)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
name |
RepositoryName Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName name = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
Repository response = await dataformClient.GetRepositoryAsync(name);
GetRepositoryAsync(RepositoryName, CancellationToken)
public virtual Task<Repository> GetRepositoryAsync(RepositoryName name, CancellationToken cancellationToken)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
name |
RepositoryName Required. The repository's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName name = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
Repository response = await dataformClient.GetRepositoryAsync(name);
GetRepositoryAsync(string, CallSettings)
public virtual Task<Repository> GetRepositoryAsync(string name, CallSettings callSettings = null)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
name |
string Required. The repository's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
Repository response = await dataformClient.GetRepositoryAsync(name);
GetRepositoryAsync(string, CancellationToken)
public virtual Task<Repository> GetRepositoryAsync(string name, CancellationToken cancellationToken)
Fetches a single Repository.
Parameters | |
---|---|
Name | Description |
name |
string Required. The repository's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRepository |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
Repository response = await dataformClient.GetRepositoryAsync(name);
GetWorkflowConfig(GetWorkflowConfigRequest, CallSettings)
public virtual WorkflowConfig GetWorkflowConfig(GetWorkflowConfigRequest request, CallSettings callSettings = null)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
GetWorkflowConfigRequest request = new GetWorkflowConfigRequest
{
WorkflowConfigName = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]"),
};
// Make the request
WorkflowConfig response = dataformClient.GetWorkflowConfig(request);
GetWorkflowConfig(WorkflowConfigName, CallSettings)
public virtual WorkflowConfig GetWorkflowConfig(WorkflowConfigName name, CallSettings callSettings = null)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
WorkflowConfigName Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
WorkflowConfigName name = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]");
// Make the request
WorkflowConfig response = dataformClient.GetWorkflowConfig(name);
GetWorkflowConfig(string, CallSettings)
public virtual WorkflowConfig GetWorkflowConfig(string name, CallSettings callSettings = null)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowConfig |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowConfigs/[WORKFLOW_CONFIG]";
// Make the request
WorkflowConfig response = dataformClient.GetWorkflowConfig(name);
GetWorkflowConfigAsync(GetWorkflowConfigRequest, CallSettings)
public virtual Task<WorkflowConfig> GetWorkflowConfigAsync(GetWorkflowConfigRequest request, CallSettings callSettings = null)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowConfigRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetWorkflowConfigRequest request = new GetWorkflowConfigRequest
{
WorkflowConfigName = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]"),
};
// Make the request
WorkflowConfig response = await dataformClient.GetWorkflowConfigAsync(request);
GetWorkflowConfigAsync(GetWorkflowConfigRequest, CancellationToken)
public virtual Task<WorkflowConfig> GetWorkflowConfigAsync(GetWorkflowConfigRequest request, CancellationToken cancellationToken)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetWorkflowConfigRequest request = new GetWorkflowConfigRequest
{
WorkflowConfigName = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]"),
};
// Make the request
WorkflowConfig response = await dataformClient.GetWorkflowConfigAsync(request);
GetWorkflowConfigAsync(WorkflowConfigName, CallSettings)
public virtual Task<WorkflowConfig> GetWorkflowConfigAsync(WorkflowConfigName name, CallSettings callSettings = null)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
WorkflowConfigName Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowConfigName name = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]");
// Make the request
WorkflowConfig response = await dataformClient.GetWorkflowConfigAsync(name);
GetWorkflowConfigAsync(WorkflowConfigName, CancellationToken)
public virtual Task<WorkflowConfig> GetWorkflowConfigAsync(WorkflowConfigName name, CancellationToken cancellationToken)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
WorkflowConfigName Required. The workflow config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowConfigName name = WorkflowConfigName.FromProjectLocationRepositoryWorkflowConfig("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_CONFIG]");
// Make the request
WorkflowConfig response = await dataformClient.GetWorkflowConfigAsync(name);
GetWorkflowConfigAsync(string, CallSettings)
public virtual Task<WorkflowConfig> GetWorkflowConfigAsync(string name, CallSettings callSettings = null)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow config's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowConfigs/[WORKFLOW_CONFIG]";
// Make the request
WorkflowConfig response = await dataformClient.GetWorkflowConfigAsync(name);
GetWorkflowConfigAsync(string, CancellationToken)
public virtual Task<WorkflowConfig> GetWorkflowConfigAsync(string name, CancellationToken cancellationToken)
Fetches a single WorkflowConfig.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow config's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowConfig |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowConfigs/[WORKFLOW_CONFIG]";
// Make the request
WorkflowConfig response = await dataformClient.GetWorkflowConfigAsync(name);
GetWorkflowInvocation(GetWorkflowInvocationRequest, CallSettings)
public virtual WorkflowInvocation GetWorkflowInvocation(GetWorkflowInvocationRequest request, CallSettings callSettings = null)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowInvocation |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
GetWorkflowInvocationRequest request = new GetWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
WorkflowInvocation response = dataformClient.GetWorkflowInvocation(request);
GetWorkflowInvocation(WorkflowInvocationName, CallSettings)
public virtual WorkflowInvocation GetWorkflowInvocation(WorkflowInvocationName name, CallSettings callSettings = null)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
WorkflowInvocationName Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowInvocation |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
WorkflowInvocationName name = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]");
// Make the request
WorkflowInvocation response = dataformClient.GetWorkflowInvocation(name);
GetWorkflowInvocation(string, CallSettings)
public virtual WorkflowInvocation GetWorkflowInvocation(string name, CallSettings callSettings = null)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
WorkflowInvocation |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowInvocations/[WORKFLOW_INVOCATION]";
// Make the request
WorkflowInvocation response = dataformClient.GetWorkflowInvocation(name);
GetWorkflowInvocationAsync(GetWorkflowInvocationRequest, CallSettings)
public virtual Task<WorkflowInvocation> GetWorkflowInvocationAsync(GetWorkflowInvocationRequest request, CallSettings callSettings = null)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetWorkflowInvocationRequest request = new GetWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
WorkflowInvocation response = await dataformClient.GetWorkflowInvocationAsync(request);
GetWorkflowInvocationAsync(GetWorkflowInvocationRequest, CancellationToken)
public virtual Task<WorkflowInvocation> GetWorkflowInvocationAsync(GetWorkflowInvocationRequest request, CancellationToken cancellationToken)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowInvocationRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetWorkflowInvocationRequest request = new GetWorkflowInvocationRequest
{
WorkflowInvocationName = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]"),
};
// Make the request
WorkflowInvocation response = await dataformClient.GetWorkflowInvocationAsync(request);
GetWorkflowInvocationAsync(WorkflowInvocationName, CallSettings)
public virtual Task<WorkflowInvocation> GetWorkflowInvocationAsync(WorkflowInvocationName name, CallSettings callSettings = null)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
WorkflowInvocationName Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowInvocationName name = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]");
// Make the request
WorkflowInvocation response = await dataformClient.GetWorkflowInvocationAsync(name);
GetWorkflowInvocationAsync(WorkflowInvocationName, CancellationToken)
public virtual Task<WorkflowInvocation> GetWorkflowInvocationAsync(WorkflowInvocationName name, CancellationToken cancellationToken)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
WorkflowInvocationName Required. The workflow invocation resource's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkflowInvocationName name = WorkflowInvocationName.FromProjectLocationRepositoryWorkflowInvocation("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKFLOW_INVOCATION]");
// Make the request
WorkflowInvocation response = await dataformClient.GetWorkflowInvocationAsync(name);
GetWorkflowInvocationAsync(string, CallSettings)
public virtual Task<WorkflowInvocation> GetWorkflowInvocationAsync(string name, CallSettings callSettings = null)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow invocation resource's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowInvocations/[WORKFLOW_INVOCATION]";
// Make the request
WorkflowInvocation response = await dataformClient.GetWorkflowInvocationAsync(name);
GetWorkflowInvocationAsync(string, CancellationToken)
public virtual Task<WorkflowInvocation> GetWorkflowInvocationAsync(string name, CancellationToken cancellationToken)
Fetches a single WorkflowInvocation.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workflow invocation resource's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkflowInvocation |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workflowInvocations/[WORKFLOW_INVOCATION]";
// Make the request
WorkflowInvocation response = await dataformClient.GetWorkflowInvocationAsync(name);
GetWorkspace(GetWorkspaceRequest, CallSettings)
public virtual Workspace GetWorkspace(GetWorkspaceRequest request, CallSettings callSettings = null)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
request |
GetWorkspaceRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Workspace |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
GetWorkspaceRequest request = new GetWorkspaceRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
Workspace response = dataformClient.GetWorkspace(request);
GetWorkspace(WorkspaceName, CallSettings)
public virtual Workspace GetWorkspace(WorkspaceName name, CallSettings callSettings = null)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
WorkspaceName Required. The workspace's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Workspace |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
WorkspaceName name = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]");
// Make the request
Workspace response = dataformClient.GetWorkspace(name);
GetWorkspace(string, CallSettings)
public virtual Workspace GetWorkspace(string name, CallSettings callSettings = null)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workspace's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Workspace |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workspaces/[WORKSPACE]";
// Make the request
Workspace response = dataformClient.GetWorkspace(name);
GetWorkspaceAsync(GetWorkspaceRequest, CallSettings)
public virtual Task<Workspace> GetWorkspaceAsync(GetWorkspaceRequest request, CallSettings callSettings = null)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
request |
GetWorkspaceRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetWorkspaceRequest request = new GetWorkspaceRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
Workspace response = await dataformClient.GetWorkspaceAsync(request);
GetWorkspaceAsync(GetWorkspaceRequest, CancellationToken)
public virtual Task<Workspace> GetWorkspaceAsync(GetWorkspaceRequest request, CancellationToken cancellationToken)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
request |
GetWorkspaceRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
GetWorkspaceRequest request = new GetWorkspaceRequest
{
WorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
Workspace response = await dataformClient.GetWorkspaceAsync(request);
GetWorkspaceAsync(WorkspaceName, CallSettings)
public virtual Task<Workspace> GetWorkspaceAsync(WorkspaceName name, CallSettings callSettings = null)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
WorkspaceName Required. The workspace's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkspaceName name = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]");
// Make the request
Workspace response = await dataformClient.GetWorkspaceAsync(name);
GetWorkspaceAsync(WorkspaceName, CancellationToken)
public virtual Task<Workspace> GetWorkspaceAsync(WorkspaceName name, CancellationToken cancellationToken)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
WorkspaceName Required. The workspace's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
WorkspaceName name = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]");
// Make the request
Workspace response = await dataformClient.GetWorkspaceAsync(name);
GetWorkspaceAsync(string, CallSettings)
public virtual Task<Workspace> GetWorkspaceAsync(string name, CallSettings callSettings = null)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workspace's name. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workspaces/[WORKSPACE]";
// Make the request
Workspace response = await dataformClient.GetWorkspaceAsync(name);
GetWorkspaceAsync(string, CancellationToken)
public virtual Task<Workspace> GetWorkspaceAsync(string name, CancellationToken cancellationToken)
Fetches a single Workspace.
Parameters | |
---|---|
Name | Description |
name |
string Required. The workspace's name. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskWorkspace |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]/workspaces/[WORKSPACE]";
// Make the request
Workspace response = await dataformClient.GetWorkspaceAsync(name);
InstallNpmPackages(InstallNpmPackagesRequest, CallSettings)
public virtual InstallNpmPackagesResponse InstallNpmPackages(InstallNpmPackagesRequest request, CallSettings callSettings = null)
Installs dependency NPM packages (inside a Workspace).
Parameters | |
---|---|
Name | Description |
request |
InstallNpmPackagesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
InstallNpmPackagesResponse |
The RPC response. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
InstallNpmPackagesRequest request = new InstallNpmPackagesRequest
{
WorkspaceAsWorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
InstallNpmPackagesResponse response = dataformClient.InstallNpmPackages(request);
InstallNpmPackagesAsync(InstallNpmPackagesRequest, CallSettings)
public virtual Task<InstallNpmPackagesResponse> InstallNpmPackagesAsync(InstallNpmPackagesRequest request, CallSettings callSettings = null)
Installs dependency NPM packages (inside a Workspace).
Parameters | |
---|---|
Name | Description |
request |
InstallNpmPackagesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskInstallNpmPackagesResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
InstallNpmPackagesRequest request = new InstallNpmPackagesRequest
{
WorkspaceAsWorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
InstallNpmPackagesResponse response = await dataformClient.InstallNpmPackagesAsync(request);
InstallNpmPackagesAsync(InstallNpmPackagesRequest, CancellationToken)
public virtual Task<InstallNpmPackagesResponse> InstallNpmPackagesAsync(InstallNpmPackagesRequest request, CancellationToken cancellationToken)
Installs dependency NPM packages (inside a Workspace).
Parameters | |
---|---|
Name | Description |
request |
InstallNpmPackagesRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInstallNpmPackagesResponse |
A Task containing the RPC response. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
InstallNpmPackagesRequest request = new InstallNpmPackagesRequest
{
WorkspaceAsWorkspaceName = WorkspaceName.FromProjectLocationRepositoryWorkspace("[PROJECT]", "[LOCATION]", "[REPOSITORY]", "[WORKSPACE]"),
};
// Make the request
InstallNpmPackagesResponse response = await dataformClient.InstallNpmPackagesAsync(request);
ListCompilationResults(ListCompilationResultsRequest, CallSettings)
public virtual PagedEnumerable<ListCompilationResultsResponse, CompilationResult> ListCompilationResults(ListCompilationResultsRequest request, CallSettings callSettings = null)
Lists CompilationResults in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
ListCompilationResultsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListCompilationResultsResponseCompilationResult |
A pageable sequence of CompilationResult resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ListCompilationResultsRequest request = new ListCompilationResultsRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedEnumerable<ListCompilationResultsResponse, CompilationResult> response = dataformClient.ListCompilationResults(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (CompilationResult item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListCompilationResultsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CompilationResult item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CompilationResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CompilationResult item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListCompilationResults(RepositoryName, string, int?, CallSettings)
public virtual PagedEnumerable<ListCompilationResultsResponse, CompilationResult> ListCompilationResults(RepositoryName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists CompilationResults in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to list compilation results. Must be in
the format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListCompilationResultsResponseCompilationResult |
A pageable sequence of CompilationResult resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
PagedEnumerable<ListCompilationResultsResponse, CompilationResult> response = dataformClient.ListCompilationResults(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (CompilationResult item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListCompilationResultsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CompilationResult item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CompilationResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CompilationResult item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListCompilationResults(string, string, int?, CallSettings)
public virtual PagedEnumerable<ListCompilationResultsResponse, CompilationResult> ListCompilationResults(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists CompilationResults in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to list compilation results. Must be in
the format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListCompilationResultsResponseCompilationResult |
A pageable sequence of CompilationResult resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
PagedEnumerable<ListCompilationResultsResponse, CompilationResult> response = dataformClient.ListCompilationResults(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (CompilationResult item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListCompilationResultsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CompilationResult item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CompilationResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CompilationResult item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListCompilationResultsAsync(ListCompilationResultsRequest, CallSettings)
public virtual PagedAsyncEnumerable<ListCompilationResultsResponse, CompilationResult> ListCompilationResultsAsync(ListCompilationResultsRequest request, CallSettings callSettings = null)
Lists CompilationResults in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
ListCompilationResultsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListCompilationResultsResponseCompilationResult |
A pageable asynchronous sequence of CompilationResult resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ListCompilationResultsRequest request = new ListCompilationResultsRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedAsyncEnumerable<ListCompilationResultsResponse, CompilationResult> response = dataformClient.ListCompilationResultsAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((CompilationResult item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListCompilationResultsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CompilationResult item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CompilationResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CompilationResult item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListCompilationResultsAsync(RepositoryName, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListCompilationResultsResponse, CompilationResult> ListCompilationResultsAsync(RepositoryName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists CompilationResults in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to list compilation results. Must be in
the format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListCompilationResultsResponseCompilationResult |
A pageable asynchronous sequence of CompilationResult resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
PagedAsyncEnumerable<ListCompilationResultsResponse, CompilationResult> response = dataformClient.ListCompilationResultsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((CompilationResult item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListCompilationResultsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CompilationResult item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CompilationResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CompilationResult item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListCompilationResultsAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListCompilationResultsResponse, CompilationResult> ListCompilationResultsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists CompilationResults in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to list compilation results. Must be in
the format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListCompilationResultsResponseCompilationResult |
A pageable asynchronous sequence of CompilationResult resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
PagedAsyncEnumerable<ListCompilationResultsResponse, CompilationResult> response = dataformClient.ListCompilationResultsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((CompilationResult item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListCompilationResultsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (CompilationResult item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<CompilationResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (CompilationResult item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListReleaseConfigs(ListReleaseConfigsRequest, CallSettings)
public virtual PagedEnumerable<ListReleaseConfigsResponse, ReleaseConfig> ListReleaseConfigs(ListReleaseConfigsRequest request, CallSettings callSettings = null)
Lists ReleaseConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
ListReleaseConfigsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListReleaseConfigsResponseReleaseConfig |
A pageable sequence of ReleaseConfig resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ListReleaseConfigsRequest request = new ListReleaseConfigsRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedEnumerable<ListReleaseConfigsResponse, ReleaseConfig> response = dataformClient.ListReleaseConfigs(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (ReleaseConfig item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListReleaseConfigsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ReleaseConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ReleaseConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ReleaseConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListReleaseConfigs(RepositoryName, string, int?, CallSettings)
public virtual PagedEnumerable<ListReleaseConfigsResponse, ReleaseConfig> ListReleaseConfigs(RepositoryName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists ReleaseConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to list release configs. Must be in the
format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListReleaseConfigsResponseReleaseConfig |
A pageable sequence of ReleaseConfig resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
PagedEnumerable<ListReleaseConfigsResponse, ReleaseConfig> response = dataformClient.ListReleaseConfigs(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (ReleaseConfig item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListReleaseConfigsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ReleaseConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ReleaseConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ReleaseConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListReleaseConfigs(string, string, int?, CallSettings)
public virtual PagedEnumerable<ListReleaseConfigsResponse, ReleaseConfig> ListReleaseConfigs(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists ReleaseConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to list release configs. Must be in the
format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListReleaseConfigsResponseReleaseConfig |
A pageable sequence of ReleaseConfig resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
PagedEnumerable<ListReleaseConfigsResponse, ReleaseConfig> response = dataformClient.ListReleaseConfigs(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (ReleaseConfig item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListReleaseConfigsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ReleaseConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ReleaseConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ReleaseConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListReleaseConfigsAsync(ListReleaseConfigsRequest, CallSettings)
public virtual PagedAsyncEnumerable<ListReleaseConfigsResponse, ReleaseConfig> ListReleaseConfigsAsync(ListReleaseConfigsRequest request, CallSettings callSettings = null)
Lists ReleaseConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
ListReleaseConfigsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListReleaseConfigsResponseReleaseConfig |
A pageable asynchronous sequence of ReleaseConfig resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ListReleaseConfigsRequest request = new ListReleaseConfigsRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedAsyncEnumerable<ListReleaseConfigsResponse, ReleaseConfig> response = dataformClient.ListReleaseConfigsAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ReleaseConfig item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListReleaseConfigsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ReleaseConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ReleaseConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ReleaseConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListReleaseConfigsAsync(RepositoryName, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListReleaseConfigsResponse, ReleaseConfig> ListReleaseConfigsAsync(RepositoryName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists ReleaseConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to list release configs. Must be in the
format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListReleaseConfigsResponseReleaseConfig |
A pageable asynchronous sequence of ReleaseConfig resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
RepositoryName parent = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]");
// Make the request
PagedAsyncEnumerable<ListReleaseConfigsResponse, ReleaseConfig> response = dataformClient.ListReleaseConfigsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ReleaseConfig item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListReleaseConfigsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ReleaseConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ReleaseConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ReleaseConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListReleaseConfigsAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListReleaseConfigsResponse, ReleaseConfig> ListReleaseConfigsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists ReleaseConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The repository in which to list release configs. Must be in the
format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListReleaseConfigsResponseReleaseConfig |
A pageable asynchronous sequence of ReleaseConfig resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/repositories/[REPOSITORY]";
// Make the request
PagedAsyncEnumerable<ListReleaseConfigsResponse, ReleaseConfig> response = dataformClient.ListReleaseConfigsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ReleaseConfig item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListReleaseConfigsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ReleaseConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ReleaseConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ReleaseConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListRepositories(LocationName, string, int?, CallSettings)
public virtual PagedEnumerable<ListRepositoriesResponse, Repository> ListRepositories(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Repositories in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. The location in which to list repositories. Must be in the format
|
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListRepositoriesResponseRepository |
A pageable sequence of Repository resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedEnumerable<ListRepositoriesResponse, Repository> response = dataformClient.ListRepositories(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (Repository item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListRepositoriesResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Repository item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Repository> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Repository item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListRepositories(ListRepositoriesRequest, CallSettings)
public virtual PagedEnumerable<ListRepositoriesResponse, Repository> ListRepositories(ListRepositoriesRequest request, CallSettings callSettings = null)
Lists Repositories in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
ListRepositoriesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListRepositoriesResponseRepository |
A pageable sequence of Repository resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ListRepositoriesRequest request = new ListRepositoriesRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
OrderBy = "",
Filter = "",
};
// Make the request
PagedEnumerable<ListRepositoriesResponse, Repository> response = dataformClient.ListRepositories(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (Repository item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListRepositoriesResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Repository item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Repository> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Repository item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListRepositories(string, string, int?, CallSettings)
public virtual PagedEnumerable<ListRepositoriesResponse, Repository> ListRepositories(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Repositories in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The location in which to list repositories. Must be in the format
|
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListRepositoriesResponseRepository |
A pageable sequence of Repository resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
// Make the request
PagedEnumerable<ListRepositoriesResponse, Repository> response = dataformClient.ListRepositories(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (Repository item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListRepositoriesResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Repository item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Repository> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Repository item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListRepositoriesAsync(LocationName, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListRepositoriesResponse, Repository> ListRepositoriesAsync(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Repositories in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. The location in which to list repositories. Must be in the format
|
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListRepositoriesResponseRepository |
A pageable asynchronous sequence of Repository resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListRepositoriesResponse, Repository> response = dataformClient.ListRepositoriesAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Repository item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListRepositoriesResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Repository item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Repository> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Repository item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListRepositoriesAsync(ListRepositoriesRequest, CallSettings)
public virtual PagedAsyncEnumerable<ListRepositoriesResponse, Repository> ListRepositoriesAsync(ListRepositoriesRequest request, CallSettings callSettings = null)
Lists Repositories in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
ListRepositoriesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListRepositoriesResponseRepository |
A pageable asynchronous sequence of Repository resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
ListRepositoriesRequest request = new ListRepositoriesRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
OrderBy = "",
Filter = "",
};
// Make the request
PagedAsyncEnumerable<ListRepositoriesResponse, Repository> response = dataformClient.ListRepositoriesAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Repository item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListRepositoriesResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Repository item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Repository> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Repository item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListRepositoriesAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListRepositoriesResponse, Repository> ListRepositoriesAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Repositories in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The location in which to list repositories. Must be in the format
|
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListRepositoriesResponseRepository |
A pageable asynchronous sequence of Repository resources. |
// Create client
DataformClient dataformClient = await DataformClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
// Make the request
PagedAsyncEnumerable<ListRepositoriesResponse, Repository> response = dataformClient.ListRepositoriesAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Repository item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListRepositoriesResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Repository item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Repository> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Repository item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListWorkflowConfigs(ListWorkflowConfigsRequest, CallSettings)
public virtual PagedEnumerable<ListWorkflowConfigsResponse, WorkflowConfig> ListWorkflowConfigs(ListWorkflowConfigsRequest request, CallSettings callSettings = null)
Lists WorkflowConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
request |
ListWorkflowConfigsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListWorkflowConfigsResponseWorkflowConfig |
A pageable sequence of WorkflowConfig resources. |
// Create client
DataformClient dataformClient = DataformClient.Create();
// Initialize request argument(s)
ListWorkflowConfigsRequest request = new ListWorkflowConfigsRequest
{
ParentAsRepositoryName = RepositoryName.FromProjectLocationRepository("[PROJECT]", "[LOCATION]", "[REPOSITORY]"),
};
// Make the request
PagedEnumerable<ListWorkflowConfigsResponse, WorkflowConfig> response = dataformClient.ListWorkflowConfigs(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (WorkflowConfig item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListWorkflowConfigsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (WorkflowConfig item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<WorkflowConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (WorkflowConfig item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListWorkflowConfigs(RepositoryName, string, int?, CallSettings)
public virtual PagedEnumerable<ListWorkflowConfigsResponse, WorkflowConfig> ListWorkflowConfigs(RepositoryName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists WorkflowConfigs in a given Repository.
Parameters | |
---|---|
Name | Description |
parent |
RepositoryName Required. The repository in which to list workflow configs. Must be in the
format |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
|