1. Packages
  2. Commercetools Provider
  3. API Docs
  4. ProductSelection
commercetools 1.19.2 published on Friday, Mar 7, 2025 by labd

commercetools.ProductSelection

Explore with Pulumi AI

commercetools logo
commercetools 1.19.2 published on Friday, Mar 7, 2025 by labd

    Product Selections can be used to manage individual assortments for different sales channels.See also the Product Selections API Documentation

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.commercetools.Type;
    import com.pulumi.commercetools.TypeArgs;
    import com.pulumi.commercetools.inputs.TypeFieldArgs;
    import com.pulumi.commercetools.inputs.TypeFieldTypeArgs;
    import com.pulumi.commercetools.ProductSelection;
    import com.pulumi.commercetools.ProductSelectionArgs;
    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 my_type = new Type("my-type", TypeArgs.builder()
                .key("my-type")
                .name(Map.ofEntries(
                    Map.entry("en", "My type"),
                    Map.entry("nl", "Mijn type")
                ))
                .resourceTypeIds("product-selection")
                .fields(TypeFieldArgs.builder()
                    .name("my-field")
                    .label(Map.ofEntries(
                        Map.entry("en", "My field"),
                        Map.entry("nl", "Mijn veld")
                    ))
                    .type(TypeFieldTypeArgs.builder()
                        .name("String")
                        .build())
                    .build())
                .build());
    
            var product_selection_us = new ProductSelection("product-selection-us", ProductSelectionArgs.builder()
                .key("product-selection-us")
                .name(Map.of("en", "US Product Selection"))
                .mode("Individual")
                .custom(ProductSelectionCustomArgs.builder()
                    .typeId(my_type.typeId())
                    .fields(Map.of("my-field", "my-value"))
                    .build())
                .build());
    
        }
    }
    
    resources:
      my-type:
        type: commercetools:Type
        properties:
          key: my-type
          name:
            en: My type
            nl: Mijn type
          resourceTypeIds:
            - product-selection
          fields:
            - name: my-field
              label:
                en: My field
                nl: Mijn veld
              type:
                name: String
      product-selection-us:
        type: commercetools:ProductSelection
        properties:
          key: product-selection-us
          name:
            en: US Product Selection
          mode: Individual
          custom:
            - typeId: ${["my-type"].typeId}
              fields:
                my-field: my-value
    

    Create ProductSelection Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProductSelection(name: string, args: ProductSelectionArgs, opts?: CustomResourceOptions);
    @overload
    def ProductSelection(resource_name: str,
                         args: ProductSelectionArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProductSelection(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         name: Optional[Mapping[str, str]] = None,
                         custom: Optional[ProductSelectionCustomArgs] = None,
                         key: Optional[str] = None,
                         mode: Optional[str] = None)
    func NewProductSelection(ctx *Context, name string, args ProductSelectionArgs, opts ...ResourceOption) (*ProductSelection, error)
    public ProductSelection(string name, ProductSelectionArgs args, CustomResourceOptions? opts = null)
    public ProductSelection(String name, ProductSelectionArgs args)
    public ProductSelection(String name, ProductSelectionArgs args, CustomResourceOptions options)
    
    type: commercetools:ProductSelection
    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 ProductSelectionArgs
    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 ProductSelectionArgs
    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 ProductSelectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProductSelectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProductSelectionArgs
    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 productSelectionResource = new Commercetools.ProductSelection("productSelectionResource", new()
    {
        Name = 
        {
            { "string", "string" },
        },
        Custom = new Commercetools.Inputs.ProductSelectionCustomArgs
        {
            Fields = 
            {
                { "string", "string" },
            },
            TypeId = "string",
        },
        Key = "string",
        Mode = "string",
    });
    
    example, err := commercetools.NewProductSelection(ctx, "productSelectionResource", &commercetools.ProductSelectionArgs{
    Name: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Custom: &.ProductSelectionCustomArgs{
    Fields: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    TypeId: pulumi.String("string"),
    },
    Key: pulumi.String("string"),
    Mode: pulumi.String("string"),
    })
    
    var productSelectionResource = new ProductSelection("productSelectionResource", ProductSelectionArgs.builder()
        .name(Map.of("string", "string"))
        .custom(ProductSelectionCustomArgs.builder()
            .fields(Map.of("string", "string"))
            .typeId("string")
            .build())
        .key("string")
        .mode("string")
        .build());
    
    product_selection_resource = commercetools.ProductSelection("productSelectionResource",
        name={
            "string": "string",
        },
        custom={
            "fields": {
                "string": "string",
            },
            "type_id": "string",
        },
        key="string",
        mode="string")
    
    const productSelectionResource = new commercetools.ProductSelection("productSelectionResource", {
        name: {
            string: "string",
        },
        custom: {
            fields: {
                string: "string",
            },
            typeId: "string",
        },
        key: "string",
        mode: "string",
    });
    
    type: commercetools:ProductSelection
    properties:
        custom:
            fields:
                string: string
            typeId: string
        key: string
        mode: string
        name:
            string: string
    

    ProductSelection 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 ProductSelection resource accepts the following input properties:

    Name Dictionary<string, string>
    Name of the ProductSelection.
    Custom ProductSelectionCustom
    Custom fields for this resource.
    Key string
    User-defined unique identifier of the ProductSelection.
    Mode string
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    Name map[string]string
    Name of the ProductSelection.
    Custom ProductSelectionCustomArgs
    Custom fields for this resource.
    Key string
    User-defined unique identifier of the ProductSelection.
    Mode string
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name Map<String,String>
    Name of the ProductSelection.
    custom ProductSelectionCustom
    Custom fields for this resource.
    key String
    User-defined unique identifier of the ProductSelection.
    mode String
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name {[key: string]: string}
    Name of the ProductSelection.
    custom ProductSelectionCustom
    Custom fields for this resource.
    key string
    User-defined unique identifier of the ProductSelection.
    mode string
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name Mapping[str, str]
    Name of the ProductSelection.
    custom ProductSelectionCustomArgs
    Custom fields for this resource.
    key str
    User-defined unique identifier of the ProductSelection.
    mode str
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name Map<String>
    Name of the ProductSelection.
    custom Property Map
    Custom fields for this resource.
    key String
    User-defined unique identifier of the ProductSelection.
    mode String
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Version double
    Current version of the ProductSelection.
    Id string
    The provider-assigned unique ID for this managed resource.
    Version float64
    Current version of the ProductSelection.
    id String
    The provider-assigned unique ID for this managed resource.
    version Double
    Current version of the ProductSelection.
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    Current version of the ProductSelection.
    id str
    The provider-assigned unique ID for this managed resource.
    version float
    Current version of the ProductSelection.
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    Current version of the ProductSelection.

    Look up Existing ProductSelection Resource

    Get an existing ProductSelection 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?: ProductSelectionState, opts?: CustomResourceOptions): ProductSelection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            custom: Optional[ProductSelectionCustomArgs] = None,
            key: Optional[str] = None,
            mode: Optional[str] = None,
            name: Optional[Mapping[str, str]] = None,
            version: Optional[float] = None) -> ProductSelection
    func GetProductSelection(ctx *Context, name string, id IDInput, state *ProductSelectionState, opts ...ResourceOption) (*ProductSelection, error)
    public static ProductSelection Get(string name, Input<string> id, ProductSelectionState? state, CustomResourceOptions? opts = null)
    public static ProductSelection get(String name, Output<String> id, ProductSelectionState state, CustomResourceOptions options)
    resources:  _:    type: commercetools:ProductSelection    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.
    The following state arguments are supported:
    Custom ProductSelectionCustom
    Custom fields for this resource.
    Key string
    User-defined unique identifier of the ProductSelection.
    Mode string
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    Name Dictionary<string, string>
    Name of the ProductSelection.
    Version double
    Current version of the ProductSelection.
    Custom ProductSelectionCustomArgs
    Custom fields for this resource.
    Key string
    User-defined unique identifier of the ProductSelection.
    Mode string
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    Name map[string]string
    Name of the ProductSelection.
    Version float64
    Current version of the ProductSelection.
    custom ProductSelectionCustom
    Custom fields for this resource.
    key String
    User-defined unique identifier of the ProductSelection.
    mode String
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name Map<String,String>
    Name of the ProductSelection.
    version Double
    Current version of the ProductSelection.
    custom ProductSelectionCustom
    Custom fields for this resource.
    key string
    User-defined unique identifier of the ProductSelection.
    mode string
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name {[key: string]: string}
    Name of the ProductSelection.
    version number
    Current version of the ProductSelection.
    custom ProductSelectionCustomArgs
    Custom fields for this resource.
    key str
    User-defined unique identifier of the ProductSelection.
    mode str
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name Mapping[str, str]
    Name of the ProductSelection.
    version float
    Current version of the ProductSelection.
    custom Property Map
    Custom fields for this resource.
    key String
    User-defined unique identifier of the ProductSelection.
    mode String
    Specifies in which way the Products are assigned to the ProductSelection.Currently, the only way of doing this is to specify each Product individually, either by including or excluding them explicitly.Default: Individual
    name Map<String>
    Name of the ProductSelection.
    version Number
    Current version of the ProductSelection.

    Supporting Types

    ProductSelectionCustom, ProductSelectionCustomArgs

    Fields Dictionary<string, string>
    CustomValue fields for this resource. Note that the values need to be provided as JSON encoded strings: my-value = jsonencode({"key": "value"})
    TypeId string
    The ID of the custom type to use for this resource.
    Fields map[string]string
    CustomValue fields for this resource. Note that the values need to be provided as JSON encoded strings: my-value = jsonencode({"key": "value"})
    TypeId string
    The ID of the custom type to use for this resource.
    fields Map<String,String>
    CustomValue fields for this resource. Note that the values need to be provided as JSON encoded strings: my-value = jsonencode({"key": "value"})
    typeId String
    The ID of the custom type to use for this resource.
    fields {[key: string]: string}
    CustomValue fields for this resource. Note that the values need to be provided as JSON encoded strings: my-value = jsonencode({"key": "value"})
    typeId string
    The ID of the custom type to use for this resource.
    fields Mapping[str, str]
    CustomValue fields for this resource. Note that the values need to be provided as JSON encoded strings: my-value = jsonencode({"key": "value"})
    type_id str
    The ID of the custom type to use for this resource.
    fields Map<String>
    CustomValue fields for this resource. Note that the values need to be provided as JSON encoded strings: my-value = jsonencode({"key": "value"})
    typeId String
    The ID of the custom type to use for this resource.

    Package Details

    Repository
    commercetools labd/terraform-provider-commercetools
    License
    Notes
    This Pulumi package is based on the commercetools Terraform Provider.
    commercetools logo
    commercetools 1.19.2 published on Friday, Mar 7, 2025 by labd