1. Packages
  2. Azure Native
  3. API Docs
  4. costmanagement
  5. Setting
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

azure-native.costmanagement.Setting

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

    State of the myscope setting. Azure REST API version: 2019-11-01. Prior API version in Azure Native 1.x: 2019-11-01.

    Example Usage

    CreateOrUpdateSetting

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var setting = new AzureNative.CostManagement.Setting("setting", new()
        {
            Cache = new[]
            {
                new AzureNative.CostManagement.Inputs.SettingsPropertiesCacheArgs
                {
                    Channel = "Modern",
                    Id = "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47",
                    Name = "72f988bf-86f1-41af-91ab-2d7cd011db47",
                    Parent = "/providers/Microsoft.Management/managementGroups/acm",
                    Status = "enabled",
                    Subchannel = "NotApplicable",
                },
            },
            Scope = "/subscriptions/00000000-0000-0000-0000-000000000000",
            SettingName = "myscope",
            StartOn = "LastUsed",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/costmanagement/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := costmanagement.NewSetting(ctx, "setting", &costmanagement.SettingArgs{
    			Cache: costmanagement.SettingsPropertiesCacheArray{
    				&costmanagement.SettingsPropertiesCacheArgs{
    					Channel:    pulumi.String("Modern"),
    					Id:         pulumi.String("/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47"),
    					Name:       pulumi.String("72f988bf-86f1-41af-91ab-2d7cd011db47"),
    					Parent:     pulumi.String("/providers/Microsoft.Management/managementGroups/acm"),
    					Status:     pulumi.String("enabled"),
    					Subchannel: pulumi.String("NotApplicable"),
    				},
    			},
    			Scope:       pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000"),
    			SettingName: pulumi.String("myscope"),
    			StartOn:     pulumi.String("LastUsed"),
    		})
    		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.azurenative.costmanagement.Setting;
    import com.pulumi.azurenative.costmanagement.SettingArgs;
    import com.pulumi.azurenative.costmanagement.inputs.SettingsPropertiesCacheArgs;
    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 setting = new Setting("setting", SettingArgs.builder()        
                .cache(SettingsPropertiesCacheArgs.builder()
                    .channel("Modern")
                    .id("/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47")
                    .name("72f988bf-86f1-41af-91ab-2d7cd011db47")
                    .parent("/providers/Microsoft.Management/managementGroups/acm")
                    .status("enabled")
                    .subchannel("NotApplicable")
                    .build())
                .scope("/subscriptions/00000000-0000-0000-0000-000000000000")
                .settingName("myscope")
                .startOn("LastUsed")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    setting = azure_native.costmanagement.Setting("setting",
        cache=[azure_native.costmanagement.SettingsPropertiesCacheArgs(
            channel="Modern",
            id="/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47",
            name="72f988bf-86f1-41af-91ab-2d7cd011db47",
            parent="/providers/Microsoft.Management/managementGroups/acm",
            status="enabled",
            subchannel="NotApplicable",
        )],
        scope="/subscriptions/00000000-0000-0000-0000-000000000000",
        setting_name="myscope",
        start_on="LastUsed")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const setting = new azure_native.costmanagement.Setting("setting", {
        cache: [{
            channel: "Modern",
            id: "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47",
            name: "72f988bf-86f1-41af-91ab-2d7cd011db47",
            parent: "/providers/Microsoft.Management/managementGroups/acm",
            status: "enabled",
            subchannel: "NotApplicable",
        }],
        scope: "/subscriptions/00000000-0000-0000-0000-000000000000",
        settingName: "myscope",
        startOn: "LastUsed",
    });
    
    resources:
      setting:
        type: azure-native:costmanagement:Setting
        properties:
          cache:
            - channel: Modern
              id: /providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47
              name: 72f988bf-86f1-41af-91ab-2d7cd011db47
              parent: /providers/Microsoft.Management/managementGroups/acm
              status: enabled
              subchannel: NotApplicable
          scope: /subscriptions/00000000-0000-0000-0000-000000000000
          settingName: myscope
          startOn: LastUsed
    

    Create Setting Resource

    new Setting(name: string, args: SettingArgs, opts?: CustomResourceOptions);
    @overload
    def Setting(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                cache: Optional[Sequence[SettingsPropertiesCacheArgs]] = None,
                scope: Optional[str] = None,
                setting_name: Optional[str] = None,
                start_on: Optional[str] = None)
    @overload
    def Setting(resource_name: str,
                args: SettingArgs,
                opts: Optional[ResourceOptions] = None)
    func NewSetting(ctx *Context, name string, args SettingArgs, opts ...ResourceOption) (*Setting, error)
    public Setting(string name, SettingArgs args, CustomResourceOptions? opts = null)
    public Setting(String name, SettingArgs args)
    public Setting(String name, SettingArgs args, CustomResourceOptions options)
    
    type: azure-native:costmanagement:Setting
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SettingArgs
    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 SettingArgs
    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 SettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SettingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Setting Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Setting resource accepts the following input properties:

    Scope string
    Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
    Cache List<Pulumi.AzureNative.CostManagement.Inputs.SettingsPropertiesCache>
    Array of scopes with additional details used by Cost Management in the Azure portal.
    SettingName string
    Name of the setting. Allowed values: myscope
    StartOn string
    Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
    Scope string
    Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
    Cache []SettingsPropertiesCacheArgs
    Array of scopes with additional details used by Cost Management in the Azure portal.
    SettingName string
    Name of the setting. Allowed values: myscope
    StartOn string
    Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
    scope String
    Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
    cache List<SettingsPropertiesCache>
    Array of scopes with additional details used by Cost Management in the Azure portal.
    settingName String
    Name of the setting. Allowed values: myscope
    startOn String
    Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
    scope string
    Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
    cache SettingsPropertiesCache[]
    Array of scopes with additional details used by Cost Management in the Azure portal.
    settingName string
    Name of the setting. Allowed values: myscope
    startOn string
    Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
    scope str
    Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
    cache Sequence[SettingsPropertiesCacheArgs]
    Array of scopes with additional details used by Cost Management in the Azure portal.
    setting_name str
    Name of the setting. Allowed values: myscope
    start_on str
    Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
    scope String
    Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
    cache List<Property Map>
    Array of scopes with additional details used by Cost Management in the Azure portal.
    settingName String
    Name of the setting. Allowed values: myscope
    startOn String
    Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Setting resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Resource kind.
    Name string
    Resource name.
    Type string
    Resource type.
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Resource kind.
    Name string
    Resource name.
    Type string
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Resource kind.
    name String
    Resource name.
    type String
    Resource type.
    id string
    The provider-assigned unique ID for this managed resource.
    kind string
    Resource kind.
    name string
    Resource name.
    type string
    Resource type.
    id str
    The provider-assigned unique ID for this managed resource.
    kind str
    Resource kind.
    name str
    Resource name.
    type str
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Resource kind.
    name String
    Resource name.
    type String
    Resource type.

    Supporting Types

    SettingsPropertiesCache, SettingsPropertiesCacheArgs

    Channel string
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    Id string
    Resource ID used by Resource Manager to uniquely identify the scope.
    Name string
    Display name for the scope.
    Subchannel string
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    Parent string
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    Status string
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    Channel string
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    Id string
    Resource ID used by Resource Manager to uniquely identify the scope.
    Name string
    Display name for the scope.
    Subchannel string
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    Parent string
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    Status string
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel String
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id String
    Resource ID used by Resource Manager to uniquely identify the scope.
    name String
    Display name for the scope.
    subchannel String
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent String
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status String
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel string
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id string
    Resource ID used by Resource Manager to uniquely identify the scope.
    name string
    Display name for the scope.
    subchannel string
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent string
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status string
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel str
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id str
    Resource ID used by Resource Manager to uniquely identify the scope.
    name str
    Display name for the scope.
    subchannel str
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent str
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status str
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel String
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id String
    Resource ID used by Resource Manager to uniquely identify the scope.
    name String
    Display name for the scope.
    subchannel String
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent String
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status String
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.

    SettingsPropertiesResponseCache, SettingsPropertiesResponseCacheArgs

    Channel string
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    Id string
    Resource ID used by Resource Manager to uniquely identify the scope.
    Name string
    Display name for the scope.
    Subchannel string
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    Parent string
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    Status string
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    Channel string
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    Id string
    Resource ID used by Resource Manager to uniquely identify the scope.
    Name string
    Display name for the scope.
    Subchannel string
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    Parent string
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    Status string
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel String
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id String
    Resource ID used by Resource Manager to uniquely identify the scope.
    name String
    Display name for the scope.
    subchannel String
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent String
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status String
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel string
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id string
    Resource ID used by Resource Manager to uniquely identify the scope.
    name string
    Display name for the scope.
    subchannel string
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent string
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status string
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel str
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id str
    Resource ID used by Resource Manager to uniquely identify the scope.
    name str
    Display name for the scope.
    subchannel str
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent str
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status str
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.
    channel String
    Indicates the account type. Allowed values include: EA, PAYG, Modern, Internal, Unknown.
    id String
    Resource ID used by Resource Manager to uniquely identify the scope.
    name String
    Display name for the scope.
    subchannel String
    Indicates the type of modern account. Allowed values include: Individual, Enterprise, Partner, Indirect, NotApplicable
    parent String
    Resource ID of the parent scope. For instance, subscription's resource ID for a resource group or a management group resource ID for a subscription.
    status String
    Indicates the status of the scope. Status only applies to subscriptions and billing accounts.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:costmanagement:Setting myscope /providers/Microsoft.CostManagement/settings/{settingName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi