Release Channel Setting Binding
The resource for managing ReleaseChannel setting bindings for Admin Control. To get more information about ReleaseChannelSettingBinding, see:
How-to Guides
Example Usage
Gemini Release Channel Setting Binding Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const basic = new gcp.gemini.ReleaseChannelSetting("basic", {
releaseChannelSettingId: "ls-tf1",
location: "global",
labels: {
my_key: "my_value",
},
releaseChannel: "EXPERIMENTAL",
});
const example = new gcp.gemini.ReleaseChannelSettingBinding("example", {
releaseChannelSettingId: basic.releaseChannelSettingId,
settingBindingId: "ls-tf1b1",
location: "global",
target: "projects/980109375338",
});
import pulumi
import pulumi_gcp as gcp
basic = gcp.gemini.ReleaseChannelSetting("basic",
release_channel_setting_id="ls-tf1",
location="global",
labels={
"my_key": "my_value",
},
release_channel="EXPERIMENTAL")
example = gcp.gemini.ReleaseChannelSettingBinding("example",
release_channel_setting_id=basic.release_channel_setting_id,
setting_binding_id="ls-tf1b1",
location="global",
target="projects/980109375338")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var basic = new Gcp.Gemini.ReleaseChannelSetting("basic", new()
{
ReleaseChannelSettingId = "ls-tf1",
Location = "global",
Labels =
{
{ "my_key", "my_value" },
},
ReleaseChannel = "EXPERIMENTAL",
});
var example = new Gcp.Gemini.ReleaseChannelSettingBinding("example", new()
{
ReleaseChannelSettingId = basic.ReleaseChannelSettingId,
SettingBindingId = "ls-tf1b1",
Location = "global",
Target = "projects/980109375338",
});
});
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 {
basic, err := gemini.NewReleaseChannelSetting(ctx, "basic", &gemini.ReleaseChannelSettingArgs{
ReleaseChannelSettingId: pulumi.String("ls-tf1"),
Location: pulumi.String("global"),
Labels: pulumi.StringMap{
"my_key": pulumi.String("my_value"),
},
ReleaseChannel: pulumi.String("EXPERIMENTAL"),
})
if err != nil {
return err
}
_, err = gemini.NewReleaseChannelSettingBinding(ctx, "example", &gemini.ReleaseChannelSettingBindingArgs{
ReleaseChannelSettingId: basic.ReleaseChannelSettingId,
SettingBindingId: pulumi.String("ls-tf1b1"),
Location: pulumi.String("global"),
Target: pulumi.String("projects/980109375338"),
})
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 com.pulumi.gcp.gemini.ReleaseChannelSettingBinding;
import com.pulumi.gcp.gemini.ReleaseChannelSettingBindingArgs;
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 basic = new ReleaseChannelSetting("basic", ReleaseChannelSettingArgs.builder()
.releaseChannelSettingId("ls-tf1")
.location("global")
.labels(Map.of("my_key", "my_value"))
.releaseChannel("EXPERIMENTAL")
.build());
var example = new ReleaseChannelSettingBinding("example", ReleaseChannelSettingBindingArgs.builder()
.releaseChannelSettingId(basic.releaseChannelSettingId())
.settingBindingId("ls-tf1b1")
.location("global")
.target("projects/980109375338")
.build());
}
}
resources:
basic:
type: gcp:gemini:ReleaseChannelSetting
properties:
releaseChannelSettingId: ls-tf1
location: global
labels:
my_key: my_value
releaseChannel: EXPERIMENTAL
example:
type: gcp:gemini:ReleaseChannelSettingBinding
properties:
releaseChannelSettingId: ${basic.releaseChannelSettingId}
settingBindingId: ls-tf1b1
location: global
target: projects/980109375338
Import
ReleaseChannelSettingBinding can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/releaseChannelSettings/{{release_channel_setting_id}}/settingBindings/{{setting_binding_id}}
{{project}}/{{location}}/{{release_channel_setting_id}}/{{setting_binding_id}}
{{location}}/{{release_channel_setting_id}}/{{setting_binding_id}}
When using thepulumi import
command, ReleaseChannelSettingBinding can be imported using one of the formats above. For example:
$ pulumi import gcp:gemini/releaseChannelSettingBinding:ReleaseChannelSettingBinding default projects/{{project}}/locations/{{location}}/releaseChannelSettings/{{release_channel_setting_id}}/settingBindings/{{setting_binding_id}}
$ pulumi import gcp:gemini/releaseChannelSettingBinding:ReleaseChannelSettingBinding default {{project}}/{{location}}/{{release_channel_setting_id}}/{{setting_binding_id}}
$ pulumi import gcp:gemini/releaseChannelSettingBinding:ReleaseChannelSettingBinding default {{location}}/{{release_channel_setting_id}}/{{setting_binding_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.
Resource ID segment making up resource name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
Id of the setting binding.
Update time stamp.