gitlab.getClusterAgents
Explore with Pulumi AI
The gitlab.getClusterAgents
data source allows details of GitLab Agents for Kubernetes in a project.
Requires at least GitLab 14.10
Upstream API: GitLab REST API docs
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using GitLab = Pulumi.GitLab;
return await Deployment.RunAsync(() =>
{
var agents = GitLab.GetClusterAgents.Invoke(new()
{
Project = "12345",
});
});
package main
import (
"github.com/pulumi/pulumi-gitlab/sdk/v6/go/gitlab"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := gitlab.GetClusterAgents(ctx, &gitlab.GetClusterAgentsArgs{
Project: "12345",
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gitlab.GitlabFunctions;
import com.pulumi.gitlab.inputs.GetClusterAgentsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var agents = GitlabFunctions.getClusterAgents(GetClusterAgentsArgs.builder()
.project("12345")
.build());
}
}
import pulumi
import pulumi_gitlab as gitlab
agents = gitlab.get_cluster_agents(project="12345")
import * as pulumi from "@pulumi/pulumi";
import * as gitlab from "@pulumi/gitlab";
const agents = gitlab.getClusterAgents({
project: "12345",
});
variables:
agents:
fn::invoke:
Function: gitlab:getClusterAgents
Arguments:
project: '12345'
Using getClusterAgents
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getClusterAgents(args: GetClusterAgentsArgs, opts?: InvokeOptions): Promise<GetClusterAgentsResult>
function getClusterAgentsOutput(args: GetClusterAgentsOutputArgs, opts?: InvokeOptions): Output<GetClusterAgentsResult>
def get_cluster_agents(project: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetClusterAgentsResult
def get_cluster_agents_output(project: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetClusterAgentsResult]
func GetClusterAgents(ctx *Context, args *GetClusterAgentsArgs, opts ...InvokeOption) (*GetClusterAgentsResult, error)
func GetClusterAgentsOutput(ctx *Context, args *GetClusterAgentsOutputArgs, opts ...InvokeOption) GetClusterAgentsResultOutput
> Note: This function is named GetClusterAgents
in the Go SDK.
public static class GetClusterAgents
{
public static Task<GetClusterAgentsResult> InvokeAsync(GetClusterAgentsArgs args, InvokeOptions? opts = null)
public static Output<GetClusterAgentsResult> Invoke(GetClusterAgentsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetClusterAgentsResult> getClusterAgents(GetClusterAgentsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: gitlab:index/getClusterAgents:getClusterAgents
arguments:
# arguments dictionary
The following arguments are supported:
- Project string
The ID or full path of the project owned by the authenticated user.
- Project string
The ID or full path of the project owned by the authenticated user.
- project String
The ID or full path of the project owned by the authenticated user.
- project string
The ID or full path of the project owned by the authenticated user.
- project str
The ID or full path of the project owned by the authenticated user.
- project String
The ID or full path of the project owned by the authenticated user.
getClusterAgents Result
The following output properties are available:
- Cluster
Agents List<Pulumi.Git Lab. Outputs. Get Cluster Agents Cluster Agent> List of the registered agents.
- Id string
The provider-assigned unique ID for this managed resource.
- Project string
The ID or full path of the project owned by the authenticated user.
- Cluster
Agents []GetCluster Agents Cluster Agent List of the registered agents.
- Id string
The provider-assigned unique ID for this managed resource.
- Project string
The ID or full path of the project owned by the authenticated user.
- cluster
Agents List<GetCluster Agents Cluster Agent> List of the registered agents.
- id String
The provider-assigned unique ID for this managed resource.
- project String
The ID or full path of the project owned by the authenticated user.
- cluster
Agents GetCluster Agents Cluster Agent[] List of the registered agents.
- id string
The provider-assigned unique ID for this managed resource.
- project string
The ID or full path of the project owned by the authenticated user.
- cluster_
agents Sequence[GetCluster Agents Cluster Agent] List of the registered agents.
- id str
The provider-assigned unique ID for this managed resource.
- project str
The ID or full path of the project owned by the authenticated user.
- cluster
Agents List<Property Map> List of the registered agents.
- id String
The provider-assigned unique ID for this managed resource.
- project String
The ID or full path of the project owned by the authenticated user.
Supporting Types
GetClusterAgentsClusterAgent
- Agent
Id int - Created
At string - Created
By intUser Id - Name string
- Project string
The ID or full path of the project owned by the authenticated user.
- Agent
Id int - Created
At string - Created
By intUser Id - Name string
- Project string
The ID or full path of the project owned by the authenticated user.
- agent
Id Integer - created
At String - created
By IntegerUser Id - name String
- project String
The ID or full path of the project owned by the authenticated user.
- agent
Id number - created
At string - created
By numberUser Id - name string
- project string
The ID or full path of the project owned by the authenticated user.
- agent_
id int - created_
at str - created_
by_ intuser_ id - name str
- project str
The ID or full path of the project owned by the authenticated user.
- agent
Id Number - created
At String - created
By NumberUser Id - name String
- project String
The ID or full path of the project owned by the authenticated user.
Package Details
- Repository
- GitLab pulumi/pulumi-gitlab
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
gitlab
Terraform Provider.