Google Cloud Classic v8.3.1 published on Wednesday, Sep 25, 2024 by Pulumi
gcp.container.getAttachedVersions
Explore with Pulumi AI
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/v8/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:
getAttachedVersions Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- Project string
- Valid
Versions 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
- Valid
Versions []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
- valid
Versions 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
- valid
Versions 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
- valid
Versions 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.