gcp.gemini.ReleaseChannelSettingBinding
Explore with Pulumi AI
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")
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
})
}
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 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
Create ReleaseChannelSettingBinding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReleaseChannelSettingBinding(name: string, args: ReleaseChannelSettingBindingArgs, opts?: CustomResourceOptions);
@overload
def ReleaseChannelSettingBinding(resource_name: str,
args: ReleaseChannelSettingBindingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ReleaseChannelSettingBinding(resource_name: str,
opts: Optional[ResourceOptions] = None,
release_channel_setting_id: Optional[str] = None,
setting_binding_id: Optional[str] = None,
target: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
product: Optional[str] = None,
project: Optional[str] = None)
func NewReleaseChannelSettingBinding(ctx *Context, name string, args ReleaseChannelSettingBindingArgs, opts ...ResourceOption) (*ReleaseChannelSettingBinding, error)
public ReleaseChannelSettingBinding(string name, ReleaseChannelSettingBindingArgs args, CustomResourceOptions? opts = null)
public ReleaseChannelSettingBinding(String name, ReleaseChannelSettingBindingArgs args)
public ReleaseChannelSettingBinding(String name, ReleaseChannelSettingBindingArgs args, CustomResourceOptions options)
type: gcp:gemini:ReleaseChannelSettingBinding
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ReleaseChannelSettingBindingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ReleaseChannelSettingBindingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ReleaseChannelSettingBindingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReleaseChannelSettingBindingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReleaseChannelSettingBindingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var releaseChannelSettingBindingResource = new Gcp.Gemini.ReleaseChannelSettingBinding("releaseChannelSettingBindingResource", new()
{
ReleaseChannelSettingId = "string",
SettingBindingId = "string",
Target = "string",
Labels =
{
{ "string", "string" },
},
Location = "string",
Product = "string",
Project = "string",
});
example, err := gemini.NewReleaseChannelSettingBinding(ctx, "releaseChannelSettingBindingResource", &gemini.ReleaseChannelSettingBindingArgs{
ReleaseChannelSettingId: pulumi.String("string"),
SettingBindingId: pulumi.String("string"),
Target: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
Product: pulumi.String("string"),
Project: pulumi.String("string"),
})
var releaseChannelSettingBindingResource = new ReleaseChannelSettingBinding("releaseChannelSettingBindingResource", ReleaseChannelSettingBindingArgs.builder()
.releaseChannelSettingId("string")
.settingBindingId("string")
.target("string")
.labels(Map.of("string", "string"))
.location("string")
.product("string")
.project("string")
.build());
release_channel_setting_binding_resource = gcp.gemini.ReleaseChannelSettingBinding("releaseChannelSettingBindingResource",
release_channel_setting_id="string",
setting_binding_id="string",
target="string",
labels={
"string": "string",
},
location="string",
product="string",
project="string")
const releaseChannelSettingBindingResource = new gcp.gemini.ReleaseChannelSettingBinding("releaseChannelSettingBindingResource", {
releaseChannelSettingId: "string",
settingBindingId: "string",
target: "string",
labels: {
string: "string",
},
location: "string",
product: "string",
project: "string",
});
type: gcp:gemini:ReleaseChannelSettingBinding
properties:
labels:
string: string
location: string
product: string
project: string
releaseChannelSettingId: string
settingBindingId: string
target: string
ReleaseChannelSettingBinding Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ReleaseChannelSettingBinding resource accepts the following input properties:
- Release
Channel stringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Setting
Binding stringId - Id of the setting binding.
- Target string
- Target of the binding.
- Labels Dictionary<string, string>
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - Location string
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Product string
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Release
Channel stringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Setting
Binding stringId - Id of the setting binding.
- Target string
- Target of the binding.
- Labels map[string]string
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - Location string
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Product string
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- release
Channel StringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting
Binding StringId - Id of the setting binding.
- target String
- Target of the binding.
- labels Map<String,String>
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location String
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - product String
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- release
Channel stringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting
Binding stringId - Id of the setting binding.
- target string
- Target of the binding.
- labels {[key: string]: string}
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location string
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - product string
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- release_
channel_ strsetting_ id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting_
binding_ strid - Id of the setting binding.
- target str
- Target of the binding.
- labels Mapping[str, str]
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location str
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - product str
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- release
Channel StringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting
Binding StringId - Id of the setting binding.
- target String
- Target of the binding.
- labels Map<String>
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location String
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - product String
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the ReleaseChannelSettingBinding resource produces the following output properties:
- Create
Time string - Create time stamp.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - Update time stamp.
- Create
Time string - Create time stamp.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - Update time stamp.
- create
Time String - Create time stamp.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - Update time stamp.
- create
Time string - Create time stamp.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time string - Update time stamp.
- create_
time str - Create time stamp.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- update_
time str - Update time stamp.
- create
Time String - Create time stamp.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - Update time stamp.
Look up Existing ReleaseChannelSettingBinding Resource
Get an existing ReleaseChannelSettingBinding resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ReleaseChannelSettingBindingState, opts?: CustomResourceOptions): ReleaseChannelSettingBinding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
product: Optional[str] = None,
project: Optional[str] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
release_channel_setting_id: Optional[str] = None,
setting_binding_id: Optional[str] = None,
target: Optional[str] = None,
update_time: Optional[str] = None) -> ReleaseChannelSettingBinding
func GetReleaseChannelSettingBinding(ctx *Context, name string, id IDInput, state *ReleaseChannelSettingBindingState, opts ...ResourceOption) (*ReleaseChannelSettingBinding, error)
public static ReleaseChannelSettingBinding Get(string name, Input<string> id, ReleaseChannelSettingBindingState? state, CustomResourceOptions? opts = null)
public static ReleaseChannelSettingBinding get(String name, Output<String> id, ReleaseChannelSettingBindingState state, CustomResourceOptions options)
resources: _: type: gcp:gemini:ReleaseChannelSettingBinding get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - Create time stamp.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels Dictionary<string, string>
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - Location string
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Name string
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- Product string
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Release
Channel stringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Setting
Binding stringId - Id of the setting binding.
- Target string
- Target of the binding.
- Update
Time string - Update time stamp.
- Create
Time string - Create time stamp.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels map[string]string
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - Location string
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Name string
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- Product string
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Release
Channel stringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Setting
Binding stringId - Id of the setting binding.
- Target string
- Target of the binding.
- Update
Time string - Update time stamp.
- create
Time String - Create time stamp.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String,String>
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location String
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name String
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- product String
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- release
Channel StringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting
Binding StringId - Id of the setting binding.
- target String
- Target of the binding.
- update
Time String - Update time stamp.
- create
Time string - Create time stamp.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels {[key: string]: string}
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location string
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name string
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- product string
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- release
Channel stringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting
Binding stringId - Id of the setting binding.
- target string
- Target of the binding.
- update
Time string - Update time stamp.
- create_
time str - Create time stamp.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Mapping[str, str]
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location str
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name str
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- product str
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- release_
channel_ strsetting_ id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting_
binding_ strid - Id of the setting binding.
- target str
- Target of the binding.
- update_
time str - Update time stamp.
- create
Time String - Create time stamp.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String>
- Labels as key value pairs.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effective_labels
for all of the labels present on the resource. - location String
- Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name String
- Identifier. Name of the resource. Format:projects/{project}/locations/{location}/releaseChannelSettings/{setting}/settingBindings/{setting_binding}
- product String
- Product type of the setting binding.
Possible values are:
GEMINI_CLOUD_ASSIST
,GEMINI_CODE_ASSIST
. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- release
Channel StringSetting Id - Resource ID segment making up resource
name
. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - setting
Binding StringId - Id of the setting binding.
- target String
- Target of the binding.
- update
Time String - Update time stamp.
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 the pulumi 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}}
To learn more about importing existing cloud resources, see Importing resources.
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.