1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. container
  5. getAttachedVersions
Google Cloud Classic v7.20.0 published on Wednesday, Apr 24, 2024 by Pulumi

gcp.container.getAttachedVersions

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.20.0 published on Wednesday, Apr 24, 2024 by Pulumi

    Provides access to available platform versions in a location for a given project.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const uswest = gcp.container.getAttachedVersions({
        location: "us-west1",
        project: "my-project",
    });
    export const firstAvailableVersion = versions.validVersions[0];
    
    import pulumi
    import pulumi_gcp as gcp
    
    uswest = gcp.container.get_attached_versions(location="us-west1",
        project="my-project")
    pulumi.export("firstAvailableVersion", versions["validVersions"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/container"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := container.GetAttachedVersions(ctx, &container.GetAttachedVersionsArgs{
    			Location: "us-west1",
    			Project:  "my-project",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("firstAvailableVersion", versions.ValidVersions[0])
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var uswest = Gcp.Container.GetAttachedVersions.Invoke(new()
        {
            Location = "us-west1",
            Project = "my-project",
        });
    
        return new Dictionary<string, object?>
        {
            ["firstAvailableVersion"] = versions.ValidVersions[0],
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.container.ContainerFunctions;
    import com.pulumi.gcp.container.inputs.GetAttachedVersionsArgs;
    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 uswest = ContainerFunctions.getAttachedVersions(GetAttachedVersionsArgs.builder()
                .location("us-west1")
                .project("my-project")
                .build());
    
            ctx.export("firstAvailableVersion", versions.validVersions()[0]);
        }
    }
    
    variables:
      uswest:
        fn::invoke:
          Function: gcp:container:getAttachedVersions
          Arguments:
            location: us-west1
            project: my-project
    outputs:
      firstAvailableVersion: ${versions.validVersions[0]}
    

    Using getAttachedVersions

    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 getAttachedVersions(args: GetAttachedVersionsArgs, opts?: InvokeOptions): Promise<GetAttachedVersionsResult>
    function getAttachedVersionsOutput(args: GetAttachedVersionsOutputArgs, opts?: InvokeOptions): Output<GetAttachedVersionsResult>
    def get_attached_versions(location: Optional[str] = None,
                              project: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetAttachedVersionsResult
    def get_attached_versions_output(location: Optional[pulumi.Input[str]] = None,
                              project: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetAttachedVersionsResult]
    func GetAttachedVersions(ctx *Context, args *GetAttachedVersionsArgs, opts ...InvokeOption) (*GetAttachedVersionsResult, error)
    func GetAttachedVersionsOutput(ctx *Context, args *GetAttachedVersionsOutputArgs, opts ...InvokeOption) GetAttachedVersionsResultOutput

    > Note: This function is named GetAttachedVersions in the Go SDK.

    public static class GetAttachedVersions 
    {
        public static Task<GetAttachedVersionsResult> InvokeAsync(GetAttachedVersionsArgs args, InvokeOptions? opts = null)
        public static Output<GetAttachedVersionsResult> Invoke(GetAttachedVersionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAttachedVersionsResult> getAttachedVersions(GetAttachedVersionsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: gcp:container/getAttachedVersions:getAttachedVersions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Location string
    The location to list versions for.
    Project string
    ID of the project to list available platform versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.
    Location string
    The location to list versions for.
    Project string
    ID of the project to list available platform versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.
    location String
    The location to list versions for.
    project String
    ID of the project to list available platform versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.
    location string
    The location to list versions for.
    project string
    ID of the project to list available platform versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.
    location str
    The location to list versions for.
    project str
    ID of the project to list available platform versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.
    location String
    The location to list versions for.
    project String
    ID of the project to list available platform versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.

    getAttachedVersions Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Project string
    ValidVersions List<string>
    A list of versions available for use with this project and location.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Project string
    ValidVersions []string
    A list of versions available for use with this project and location.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    project String
    validVersions List<String>
    A list of versions available for use with this project and location.
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    project string
    validVersions string[]
    A list of versions available for use with this project and location.
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    project str
    valid_versions Sequence[str]
    A list of versions available for use with this project and location.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    project String
    validVersions List<String>
    A list of versions available for use with this project and location.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.20.0 published on Wednesday, Apr 24, 2024 by Pulumi