alicloud.tag.AssociatedRule
Explore with Pulumi AI
Provides a TAG Associated Rule resource.
For information about TAG Associated Rule and how to use it, see What is Associated Rule.
NOTE: Available since v1.244.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.tag.AssociatedRule("default", {
status: "Enable",
associatedSettingName: "rule:AttachEni-DetachEni-TagInstance:Ecs-Instance:Ecs-Eni",
tagKeys: ["user"],
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.tag.AssociatedRule("default",
status="Enable",
associated_setting_name="rule:AttachEni-DetachEni-TagInstance:Ecs-Instance:Ecs-Eni",
tag_keys=["user"])
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/tag"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := tag.NewAssociatedRule(ctx, "default", &tag.AssociatedRuleArgs{
Status: pulumi.String("Enable"),
AssociatedSettingName: pulumi.String("rule:AttachEni-DetachEni-TagInstance:Ecs-Instance:Ecs-Eni"),
TagKeys: pulumi.StringArray{
pulumi.String("user"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Tag.AssociatedRule("default", new()
{
Status = "Enable",
AssociatedSettingName = "rule:AttachEni-DetachEni-TagInstance:Ecs-Instance:Ecs-Eni",
TagKeys = new[]
{
"user",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.tag.AssociatedRule;
import com.pulumi.alicloud.tag.AssociatedRuleArgs;
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 config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new AssociatedRule("default", AssociatedRuleArgs.builder()
.status("Enable")
.associatedSettingName("rule:AttachEni-DetachEni-TagInstance:Ecs-Instance:Ecs-Eni")
.tagKeys("user")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:tag:AssociatedRule
properties:
status: Enable
associatedSettingName: rule:AttachEni-DetachEni-TagInstance:Ecs-Instance:Ecs-Eni
tagKeys:
- user
Create AssociatedRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AssociatedRule(name: string, args: AssociatedRuleArgs, opts?: CustomResourceOptions);
@overload
def AssociatedRule(resource_name: str,
args: AssociatedRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AssociatedRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
associated_setting_name: Optional[str] = None,
status: Optional[str] = None,
tag_keys: Optional[Sequence[str]] = None)
func NewAssociatedRule(ctx *Context, name string, args AssociatedRuleArgs, opts ...ResourceOption) (*AssociatedRule, error)
public AssociatedRule(string name, AssociatedRuleArgs args, CustomResourceOptions? opts = null)
public AssociatedRule(String name, AssociatedRuleArgs args)
public AssociatedRule(String name, AssociatedRuleArgs args, CustomResourceOptions options)
type: alicloud:tag:AssociatedRule
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 AssociatedRuleArgs
- 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 AssociatedRuleArgs
- 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 AssociatedRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AssociatedRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AssociatedRuleArgs
- 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 associatedRuleResource = new AliCloud.Tag.AssociatedRule("associatedRuleResource", new()
{
AssociatedSettingName = "string",
Status = "string",
TagKeys = new[]
{
"string",
},
});
example, err := tag.NewAssociatedRule(ctx, "associatedRuleResource", &tag.AssociatedRuleArgs{
AssociatedSettingName: pulumi.String("string"),
Status: pulumi.String("string"),
TagKeys: pulumi.StringArray{
pulumi.String("string"),
},
})
var associatedRuleResource = new AssociatedRule("associatedRuleResource", AssociatedRuleArgs.builder()
.associatedSettingName("string")
.status("string")
.tagKeys("string")
.build());
associated_rule_resource = alicloud.tag.AssociatedRule("associatedRuleResource",
associated_setting_name="string",
status="string",
tag_keys=["string"])
const associatedRuleResource = new alicloud.tag.AssociatedRule("associatedRuleResource", {
associatedSettingName: "string",
status: "string",
tagKeys: ["string"],
});
type: alicloud:tag:AssociatedRule
properties:
associatedSettingName: string
status: string
tagKeys:
- string
AssociatedRule 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 AssociatedRule resource accepts the following input properties:
- Associated
Setting stringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- Status string
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - Tag
Keys List<string> - List of tag keys for the associated resource tag rule.
- Associated
Setting stringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- Status string
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - Tag
Keys []string - List of tag keys for the associated resource tag rule.
- associated
Setting StringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status String
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag
Keys List<String> - List of tag keys for the associated resource tag rule.
- associated
Setting stringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status string
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag
Keys string[] - List of tag keys for the associated resource tag rule.
- associated_
setting_ strname - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status str
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag_
keys Sequence[str] - List of tag keys for the associated resource tag rule.
- associated
Setting StringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status String
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag
Keys List<String> - List of tag keys for the associated resource tag rule.
Outputs
All input properties are implicitly available as output properties. Additionally, the AssociatedRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AssociatedRule Resource
Get an existing AssociatedRule 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?: AssociatedRuleState, opts?: CustomResourceOptions): AssociatedRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
associated_setting_name: Optional[str] = None,
status: Optional[str] = None,
tag_keys: Optional[Sequence[str]] = None) -> AssociatedRule
func GetAssociatedRule(ctx *Context, name string, id IDInput, state *AssociatedRuleState, opts ...ResourceOption) (*AssociatedRule, error)
public static AssociatedRule Get(string name, Input<string> id, AssociatedRuleState? state, CustomResourceOptions? opts = null)
public static AssociatedRule get(String name, Output<String> id, AssociatedRuleState state, CustomResourceOptions options)
resources: _: type: alicloud:tag:AssociatedRule 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.
- Associated
Setting stringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- Status string
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - Tag
Keys List<string> - List of tag keys for the associated resource tag rule.
- Associated
Setting stringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- Status string
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - Tag
Keys []string - List of tag keys for the associated resource tag rule.
- associated
Setting StringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status String
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag
Keys List<String> - List of tag keys for the associated resource tag rule.
- associated
Setting stringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status string
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag
Keys string[] - List of tag keys for the associated resource tag rule.
- associated_
setting_ strname - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status str
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag_
keys Sequence[str] - List of tag keys for the associated resource tag rule.
- associated
Setting StringName - The setting name of the associated resource tag rule. For specific values, see the Rule Setting Name column in Resources that Support Associated Resource Tag Settings
- status String
- Whether to enable the associated resource tag rule. Valid values:
Enable
,Disable
. - tag
Keys List<String> - List of tag keys for the associated resource tag rule.
Import
TAG Associated Rule can be imported using the id, e.g.
$ pulumi import alicloud:tag/associatedRule:AssociatedRule example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.