Release Channel Setting
The resource for managing ReleaseChannel settings for Admin Control.
Example Usage
Gemini Release Channel Setting Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.gemini.ReleaseChannelSetting("example", {
releaseChannelSettingId: "ls1-tf",
location: "global",
labels: {
my_key: "my_value",
},
releaseChannel: "EXPERIMENTAL",
});
import pulumi
import pulumi_gcp as gcp
example = gcp.gemini.ReleaseChannelSetting("example",
release_channel_setting_id="ls1-tf",
location="global",
labels={
"my_key": "my_value",
},
release_channel="EXPERIMENTAL")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Gemini.ReleaseChannelSetting("example", new()
{
ReleaseChannelSettingId = "ls1-tf",
Location = "global",
Labels =
{
{ "my_key", "my_value" },
},
ReleaseChannel = "EXPERIMENTAL",
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/gemini"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := gemini.NewReleaseChannelSetting(ctx, "example", &gemini.ReleaseChannelSettingArgs{
ReleaseChannelSettingId: pulumi.String("ls1-tf"),
Location: pulumi.String("global"),
Labels: pulumi.StringMap{
"my_key": pulumi.String("my_value"),
},
ReleaseChannel: pulumi.String("EXPERIMENTAL"),
})
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.gcp.gemini.ReleaseChannelSetting;
import com.pulumi.gcp.gemini.ReleaseChannelSettingArgs;
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) {
var example = new ReleaseChannelSetting("example", ReleaseChannelSettingArgs.builder()
.releaseChannelSettingId("ls1-tf")
.location("global")
.labels(Map.of("my_key", "my_value"))
.releaseChannel("EXPERIMENTAL")
.build());
}
}
resources:
example:
type: gcp:gemini:ReleaseChannelSetting
properties:
releaseChannelSettingId: ls1-tf
location: global
labels:
my_key: my_value
releaseChannel: EXPERIMENTAL
Import
ReleaseChannelSetting can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/releaseChannelSettings/{{release_channel_setting_id}}
{{project}}/{{location}}/{{release_channel_setting_id}}
{{location}}/{{release_channel_setting_id}}
When using thepulumi import
command, ReleaseChannelSetting can be imported using one of the formats above. For example:
$ pulumi import gcp:gemini/releaseChannelSetting:ReleaseChannelSetting default projects/{{project}}/locations/{{location}}/releaseChannelSettings/{{release_channel_setting_id}}
$ pulumi import gcp:gemini/releaseChannelSetting:ReleaseChannelSetting default {{project}}/{{location}}/{{release_channel_setting_id}}
$ pulumi import gcp:gemini/releaseChannelSetting:ReleaseChannelSetting default {{location}}/{{release_channel_setting_id}}
Properties
Create time stamp.
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
The combination of labels configured directly on the resource and default labels configured on the provider.
Release channel to be used. Possible values: STABLE EXPERIMENTAL
Id of the Release Channel Setting.
Update time stamp.