commercetools.ShippingMethod
Explore with Pulumi AI
With Shipping Methods you can specify which shipping services you want to provide to your customers for deliveries to different areas of the world at rates you can define.
See also the Shipping Methods API Documentation
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as commercetools from "@pulumi/commercetools";
const some_tax_category = new commercetools.TaxCategory("some-tax-category", {
key: "some-tax-category-key",
description: "test category",
});
const standard = new commercetools.ShippingMethod("standard", {
key: "standard-key",
description: "Standard tax category",
isDefault: true,
taxCategoryId: some_tax_category.taxCategoryId,
predicate: "1 = 1",
});
import pulumi
import pulumi_commercetools as commercetools
some_tax_category = commercetools.TaxCategory("some-tax-category",
key="some-tax-category-key",
description="test category")
standard = commercetools.ShippingMethod("standard",
key="standard-key",
description="Standard tax category",
is_default=True,
tax_category_id=some_tax_category.tax_category_id,
predicate="1 = 1")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/commercetools/commercetools"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := commercetools.NewTaxCategory(ctx, "some-tax-category", &commercetools.TaxCategoryArgs{
Key: pulumi.String("some-tax-category-key"),
Description: pulumi.String("test category"),
})
if err != nil {
return err
}
_, err = commercetools.NewShippingMethod(ctx, "standard", &commercetools.ShippingMethodArgs{
Key: pulumi.String("standard-key"),
Description: pulumi.String("Standard tax category"),
IsDefault: pulumi.Bool(true),
TaxCategoryId: some_tax_category.TaxCategoryId,
Predicate: pulumi.String("1 = 1"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Commercetools = Pulumi.Commercetools;
return await Deployment.RunAsync(() =>
{
var some_tax_category = new Commercetools.TaxCategory("some-tax-category", new()
{
Key = "some-tax-category-key",
Description = "test category",
});
var standard = new Commercetools.ShippingMethod("standard", new()
{
Key = "standard-key",
Description = "Standard tax category",
IsDefault = true,
TaxCategoryId = some_tax_category.TaxCategoryId,
Predicate = "1 = 1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.commercetools.TaxCategory;
import com.pulumi.commercetools.TaxCategoryArgs;
import com.pulumi.commercetools.ShippingMethod;
import com.pulumi.commercetools.ShippingMethodArgs;
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 some_tax_category = new TaxCategory("some-tax-category", TaxCategoryArgs.builder()
.key("some-tax-category-key")
.description("test category")
.build());
var standard = new ShippingMethod("standard", ShippingMethodArgs.builder()
.key("standard-key")
.description("Standard tax category")
.isDefault(true)
.taxCategoryId(some_tax_category.taxCategoryId())
.predicate("1 = 1")
.build());
}
}
resources:
some-tax-category:
type: commercetools:TaxCategory
properties:
key: some-tax-category-key
description: test category
standard:
type: commercetools:ShippingMethod
properties:
key: standard-key
description: Standard tax category
isDefault: true
taxCategoryId: ${["some-tax-category"].taxCategoryId}
predicate: 1 = 1
Create ShippingMethod Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ShippingMethod(name: string, args: ShippingMethodArgs, opts?: CustomResourceOptions);
@overload
def ShippingMethod(resource_name: str,
args: ShippingMethodArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ShippingMethod(resource_name: str,
opts: Optional[ResourceOptions] = None,
tax_category_id: Optional[str] = None,
active: Optional[bool] = None,
custom: Optional[ShippingMethodCustomArgs] = None,
description: Optional[str] = None,
is_default: Optional[bool] = None,
key: Optional[str] = None,
localized_description: Optional[Mapping[str, str]] = None,
localized_name: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
predicate: Optional[str] = None,
shipping_method_id: Optional[str] = None)
func NewShippingMethod(ctx *Context, name string, args ShippingMethodArgs, opts ...ResourceOption) (*ShippingMethod, error)
public ShippingMethod(string name, ShippingMethodArgs args, CustomResourceOptions? opts = null)
public ShippingMethod(String name, ShippingMethodArgs args)
public ShippingMethod(String name, ShippingMethodArgs args, CustomResourceOptions options)
type: commercetools:ShippingMethod
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 ShippingMethodArgs
- 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 ShippingMethodArgs
- 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 ShippingMethodArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ShippingMethodArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ShippingMethodArgs
- 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 shippingMethodResource = new Commercetools.ShippingMethod("shippingMethodResource", new()
{
TaxCategoryId = "string",
Active = false,
Custom = new Commercetools.Inputs.ShippingMethodCustomArgs
{
TypeId = "string",
Fields =
{
{ "string", "string" },
},
},
Description = "string",
IsDefault = false,
Key = "string",
LocalizedDescription =
{
{ "string", "string" },
},
LocalizedName =
{
{ "string", "string" },
},
Name = "string",
Predicate = "string",
ShippingMethodId = "string",
});
example, err := commercetools.NewShippingMethod(ctx, "shippingMethodResource", &commercetools.ShippingMethodArgs{
TaxCategoryId: pulumi.String("string"),
Active: pulumi.Bool(false),
Custom: &.ShippingMethodCustomArgs{
TypeId: pulumi.String("string"),
Fields: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Description: pulumi.String("string"),
IsDefault: pulumi.Bool(false),
Key: pulumi.String("string"),
LocalizedDescription: pulumi.StringMap{
"string": pulumi.String("string"),
},
LocalizedName: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Predicate: pulumi.String("string"),
ShippingMethodId: pulumi.String("string"),
})
var shippingMethodResource = new ShippingMethod("shippingMethodResource", ShippingMethodArgs.builder()
.taxCategoryId("string")
.active(false)
.custom(ShippingMethodCustomArgs.builder()
.typeId("string")
.fields(Map.of("string", "string"))
.build())
.description("string")
.isDefault(false)
.key("string")
.localizedDescription(Map.of("string", "string"))
.localizedName(Map.of("string", "string"))
.name("string")
.predicate("string")
.shippingMethodId("string")
.build());
shipping_method_resource = commercetools.ShippingMethod("shippingMethodResource",
tax_category_id="string",
active=False,
custom={
"type_id": "string",
"fields": {
"string": "string",
},
},
description="string",
is_default=False,
key="string",
localized_description={
"string": "string",
},
localized_name={
"string": "string",
},
name="string",
predicate="string",
shipping_method_id="string")
const shippingMethodResource = new commercetools.ShippingMethod("shippingMethodResource", {
taxCategoryId: "string",
active: false,
custom: {
typeId: "string",
fields: {
string: "string",
},
},
description: "string",
isDefault: false,
key: "string",
localizedDescription: {
string: "string",
},
localizedName: {
string: "string",
},
name: "string",
predicate: "string",
shippingMethodId: "string",
});
type: commercetools:ShippingMethod
properties:
active: false
custom:
fields:
string: string
typeId: string
description: string
isDefault: false
key: string
localizedDescription:
string: string
localizedName:
string: string
name: string
predicate: string
shippingMethodId: string
taxCategoryId: string
ShippingMethod 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 ShippingMethod resource accepts the following input properties:
- Tax
Category stringId - ID of a Tax Category
- Active bool
- Activate or deactivate a shipping method. Default is active.
- Custom
Shipping
Method Custom - Description string
- Is
Default bool - One shipping method in a project can be default
- Key string
- User-specific unique identifier for the shipping method
- Localized
Description Dictionary<string, string> - LocalizedString
- Localized
Name Dictionary<string, string> - LocalizedString
- Name string
- Predicate string
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- Shipping
Method stringId - The ID of this resource.
- Tax
Category stringId - ID of a Tax Category
- Active bool
- Activate or deactivate a shipping method. Default is active.
- Custom
Shipping
Method Custom Args - Description string
- Is
Default bool - One shipping method in a project can be default
- Key string
- User-specific unique identifier for the shipping method
- Localized
Description map[string]string - LocalizedString
- Localized
Name map[string]string - LocalizedString
- Name string
- Predicate string
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- Shipping
Method stringId - The ID of this resource.
- tax
Category StringId - ID of a Tax Category
- active Boolean
- Activate or deactivate a shipping method. Default is active.
- custom
Shipping
Method Custom - description String
- is
Default Boolean - One shipping method in a project can be default
- key String
- User-specific unique identifier for the shipping method
- localized
Description Map<String,String> - LocalizedString
- localized
Name Map<String,String> - LocalizedString
- name String
- predicate String
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping
Method StringId - The ID of this resource.
- tax
Category stringId - ID of a Tax Category
- active boolean
- Activate or deactivate a shipping method. Default is active.
- custom
Shipping
Method Custom - description string
- is
Default boolean - One shipping method in a project can be default
- key string
- User-specific unique identifier for the shipping method
- localized
Description {[key: string]: string} - LocalizedString
- localized
Name {[key: string]: string} - LocalizedString
- name string
- predicate string
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping
Method stringId - The ID of this resource.
- tax_
category_ strid - ID of a Tax Category
- active bool
- Activate or deactivate a shipping method. Default is active.
- custom
Shipping
Method Custom Args - description str
- is_
default bool - One shipping method in a project can be default
- key str
- User-specific unique identifier for the shipping method
- localized_
description Mapping[str, str] - LocalizedString
- localized_
name Mapping[str, str] - LocalizedString
- name str
- predicate str
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping_
method_ strid - The ID of this resource.
- tax
Category StringId - ID of a Tax Category
- active Boolean
- Activate or deactivate a shipping method. Default is active.
- custom Property Map
- description String
- is
Default Boolean - One shipping method in a project can be default
- key String
- User-specific unique identifier for the shipping method
- localized
Description Map<String> - LocalizedString
- localized
Name Map<String> - LocalizedString
- name String
- predicate String
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping
Method StringId - The ID of this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ShippingMethod resource produces the following output properties:
Look up Existing ShippingMethod Resource
Get an existing ShippingMethod 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?: ShippingMethodState, opts?: CustomResourceOptions): ShippingMethod
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
custom: Optional[ShippingMethodCustomArgs] = None,
description: Optional[str] = None,
is_default: Optional[bool] = None,
key: Optional[str] = None,
localized_description: Optional[Mapping[str, str]] = None,
localized_name: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
predicate: Optional[str] = None,
shipping_method_id: Optional[str] = None,
tax_category_id: Optional[str] = None,
version: Optional[float] = None) -> ShippingMethod
func GetShippingMethod(ctx *Context, name string, id IDInput, state *ShippingMethodState, opts ...ResourceOption) (*ShippingMethod, error)
public static ShippingMethod Get(string name, Input<string> id, ShippingMethodState? state, CustomResourceOptions? opts = null)
public static ShippingMethod get(String name, Output<String> id, ShippingMethodState state, CustomResourceOptions options)
resources: _: type: commercetools:ShippingMethod 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.
- Active bool
- Activate or deactivate a shipping method. Default is active.
- Custom
Shipping
Method Custom - Description string
- Is
Default bool - One shipping method in a project can be default
- Key string
- User-specific unique identifier for the shipping method
- Localized
Description Dictionary<string, string> - LocalizedString
- Localized
Name Dictionary<string, string> - LocalizedString
- Name string
- Predicate string
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- Shipping
Method stringId - The ID of this resource.
- Tax
Category stringId - ID of a Tax Category
- Version double
- Active bool
- Activate or deactivate a shipping method. Default is active.
- Custom
Shipping
Method Custom Args - Description string
- Is
Default bool - One shipping method in a project can be default
- Key string
- User-specific unique identifier for the shipping method
- Localized
Description map[string]string - LocalizedString
- Localized
Name map[string]string - LocalizedString
- Name string
- Predicate string
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- Shipping
Method stringId - The ID of this resource.
- Tax
Category stringId - ID of a Tax Category
- Version float64
- active Boolean
- Activate or deactivate a shipping method. Default is active.
- custom
Shipping
Method Custom - description String
- is
Default Boolean - One shipping method in a project can be default
- key String
- User-specific unique identifier for the shipping method
- localized
Description Map<String,String> - LocalizedString
- localized
Name Map<String,String> - LocalizedString
- name String
- predicate String
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping
Method StringId - The ID of this resource.
- tax
Category StringId - ID of a Tax Category
- version Double
- active boolean
- Activate or deactivate a shipping method. Default is active.
- custom
Shipping
Method Custom - description string
- is
Default boolean - One shipping method in a project can be default
- key string
- User-specific unique identifier for the shipping method
- localized
Description {[key: string]: string} - LocalizedString
- localized
Name {[key: string]: string} - LocalizedString
- name string
- predicate string
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping
Method stringId - The ID of this resource.
- tax
Category stringId - ID of a Tax Category
- version number
- active bool
- Activate or deactivate a shipping method. Default is active.
- custom
Shipping
Method Custom Args - description str
- is_
default bool - One shipping method in a project can be default
- key str
- User-specific unique identifier for the shipping method
- localized_
description Mapping[str, str] - LocalizedString
- localized_
name Mapping[str, str] - LocalizedString
- name str
- predicate str
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping_
method_ strid - The ID of this resource.
- tax_
category_ strid - ID of a Tax Category
- version float
- active Boolean
- Activate or deactivate a shipping method. Default is active.
- custom Property Map
- description String
- is
Default Boolean - One shipping method in a project can be default
- key String
- User-specific unique identifier for the shipping method
- localized
Description Map<String> - LocalizedString
- localized
Name Map<String> - LocalizedString
- name String
- predicate String
- A Cart predicate which can be used to more precisely select a shipping method for a cart
- shipping
Method StringId - The ID of this resource.
- tax
Category StringId - ID of a Tax Category
- version Number
Supporting Types
ShippingMethodCustom, ShippingMethodCustomArgs
Package Details
- Repository
- commercetools labd/terraform-provider-commercetools
- License
- Notes
- This Pulumi package is based on the
commercetools
Terraform Provider.