commercetools.Channel
Explore with Pulumi AI
Channels represent a source or destination of different entities. They can be used to model warehouses or stores.
See also the Channels API Documentation
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as commercetools from "@pulumi/commercetools";
const my_channel = new commercetools.Channel("my-channel", {
description: {
"nl-NL": "Channel",
},
key: "my-channel-key",
name: {
"nl-NL": "Channel",
},
roles: ["ProductDistribution"],
});
import pulumi
import pulumi_commercetools as commercetools
my_channel = commercetools.Channel("my-channel",
description={
"nl-NL": "Channel",
},
key="my-channel-key",
name={
"nl-NL": "Channel",
},
roles=["ProductDistribution"])
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.NewChannel(ctx, "my-channel", &commercetools.ChannelArgs{
Description: pulumi.StringMap{
"nl-NL": pulumi.String("Channel"),
},
Key: pulumi.String("my-channel-key"),
Name: pulumi.StringMap{
"nl-NL": pulumi.String("Channel"),
},
Roles: pulumi.StringArray{
pulumi.String("ProductDistribution"),
},
})
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 my_channel = new Commercetools.Channel("my-channel", new()
{
Description =
{
{ "nl-NL", "Channel" },
},
Key = "my-channel-key",
Name =
{
{ "nl-NL", "Channel" },
},
Roles = new[]
{
"ProductDistribution",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.commercetools.Channel;
import com.pulumi.commercetools.ChannelArgs;
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_channel = new Channel("my-channel", ChannelArgs.builder()
.description(Map.of("nl-NL", "Channel"))
.key("my-channel-key")
.name(Map.of("nl-NL", "Channel"))
.roles("ProductDistribution")
.build());
}
}
resources:
my-channel:
type: commercetools:Channel
properties:
description:
nl-NL: Channel
key: my-channel-key
name:
nl-NL: Channel
roles:
- ProductDistribution
Create Channel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Channel(name: string, args: ChannelArgs, opts?: CustomResourceOptions);
@overload
def Channel(resource_name: str,
args: ChannelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Channel(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
address: Optional[ChannelAddressArgs] = None,
channel_id: Optional[str] = None,
custom: Optional[ChannelCustomArgs] = None,
description: Optional[Mapping[str, str]] = None,
geolocation: Optional[ChannelGeolocationArgs] = None,
name: Optional[Mapping[str, str]] = None)
func NewChannel(ctx *Context, name string, args ChannelArgs, opts ...ResourceOption) (*Channel, error)
public Channel(string name, ChannelArgs args, CustomResourceOptions? opts = null)
public Channel(String name, ChannelArgs args)
public Channel(String name, ChannelArgs args, CustomResourceOptions options)
type: commercetools:Channel
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 ChannelArgs
- 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 ChannelArgs
- 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 ChannelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChannelArgs
- 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 channelResource = new Commercetools.Channel("channelResource", new()
{
Key = "string",
Roles = new[]
{
"string",
},
Address = new Commercetools.Inputs.ChannelAddressArgs
{
Country = "string",
Id = "string",
StreetName = "string",
Building = "string",
City = "string",
Company = "string",
AdditionalStreetInfo = "string",
Department = "string",
Email = "string",
ExternalId = "string",
Fax = "string",
Title = "string",
Apartment = "string",
Mobile = "string",
LastName = "string",
Key = "string",
Phone = "string",
PoBox = "string",
PostalCode = "string",
Region = "string",
Salutation = "string",
State = "string",
AdditionalAddressInfo = "string",
StreetNumber = "string",
FirstName = "string",
},
ChannelId = "string",
Custom = new Commercetools.Inputs.ChannelCustomArgs
{
TypeId = "string",
Fields =
{
{ "string", "string" },
},
},
Description =
{
{ "string", "string" },
},
Geolocation = new Commercetools.Inputs.ChannelGeolocationArgs
{
Coordinates = new[]
{
0,
},
},
Name =
{
{ "string", "string" },
},
});
example, err := commercetools.NewChannel(ctx, "channelResource", &commercetools.ChannelArgs{
Key: pulumi.String("string"),
Roles: pulumi.StringArray{
pulumi.String("string"),
},
Address: &.ChannelAddressArgs{
Country: pulumi.String("string"),
Id: pulumi.String("string"),
StreetName: pulumi.String("string"),
Building: pulumi.String("string"),
City: pulumi.String("string"),
Company: pulumi.String("string"),
AdditionalStreetInfo: pulumi.String("string"),
Department: pulumi.String("string"),
Email: pulumi.String("string"),
ExternalId: pulumi.String("string"),
Fax: pulumi.String("string"),
Title: pulumi.String("string"),
Apartment: pulumi.String("string"),
Mobile: pulumi.String("string"),
LastName: pulumi.String("string"),
Key: pulumi.String("string"),
Phone: pulumi.String("string"),
PoBox: pulumi.String("string"),
PostalCode: pulumi.String("string"),
Region: pulumi.String("string"),
Salutation: pulumi.String("string"),
State: pulumi.String("string"),
AdditionalAddressInfo: pulumi.String("string"),
StreetNumber: pulumi.String("string"),
FirstName: pulumi.String("string"),
},
ChannelId: pulumi.String("string"),
Custom: &.ChannelCustomArgs{
TypeId: pulumi.String("string"),
Fields: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Description: pulumi.StringMap{
"string": pulumi.String("string"),
},
Geolocation: &.ChannelGeolocationArgs{
Coordinates: pulumi.Float64Array{
pulumi.Float64(0),
},
},
Name: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var channelResource = new Channel("channelResource", ChannelArgs.builder()
.key("string")
.roles("string")
.address(ChannelAddressArgs.builder()
.country("string")
.id("string")
.streetName("string")
.building("string")
.city("string")
.company("string")
.additionalStreetInfo("string")
.department("string")
.email("string")
.externalId("string")
.fax("string")
.title("string")
.apartment("string")
.mobile("string")
.lastName("string")
.key("string")
.phone("string")
.poBox("string")
.postalCode("string")
.region("string")
.salutation("string")
.state("string")
.additionalAddressInfo("string")
.streetNumber("string")
.firstName("string")
.build())
.channelId("string")
.custom(ChannelCustomArgs.builder()
.typeId("string")
.fields(Map.of("string", "string"))
.build())
.description(Map.of("string", "string"))
.geolocation(ChannelGeolocationArgs.builder()
.coordinates(0)
.build())
.name(Map.of("string", "string"))
.build());
channel_resource = commercetools.Channel("channelResource",
key="string",
roles=["string"],
address={
"country": "string",
"id": "string",
"street_name": "string",
"building": "string",
"city": "string",
"company": "string",
"additional_street_info": "string",
"department": "string",
"email": "string",
"external_id": "string",
"fax": "string",
"title": "string",
"apartment": "string",
"mobile": "string",
"last_name": "string",
"key": "string",
"phone": "string",
"po_box": "string",
"postal_code": "string",
"region": "string",
"salutation": "string",
"state": "string",
"additional_address_info": "string",
"street_number": "string",
"first_name": "string",
},
channel_id="string",
custom={
"type_id": "string",
"fields": {
"string": "string",
},
},
description={
"string": "string",
},
geolocation={
"coordinates": [0],
},
name={
"string": "string",
})
const channelResource = new commercetools.Channel("channelResource", {
key: "string",
roles: ["string"],
address: {
country: "string",
id: "string",
streetName: "string",
building: "string",
city: "string",
company: "string",
additionalStreetInfo: "string",
department: "string",
email: "string",
externalId: "string",
fax: "string",
title: "string",
apartment: "string",
mobile: "string",
lastName: "string",
key: "string",
phone: "string",
poBox: "string",
postalCode: "string",
region: "string",
salutation: "string",
state: "string",
additionalAddressInfo: "string",
streetNumber: "string",
firstName: "string",
},
channelId: "string",
custom: {
typeId: "string",
fields: {
string: "string",
},
},
description: {
string: "string",
},
geolocation: {
coordinates: [0],
},
name: {
string: "string",
},
});
type: commercetools:Channel
properties:
address:
additionalAddressInfo: string
additionalStreetInfo: string
apartment: string
building: string
city: string
company: string
country: string
department: string
email: string
externalId: string
fax: string
firstName: string
id: string
key: string
lastName: string
mobile: string
phone: string
poBox: string
postalCode: string
region: string
salutation: string
state: string
streetName: string
streetNumber: string
title: string
channelId: string
custom:
fields:
string: string
typeId: string
description:
string: string
geolocation:
coordinates:
- 0
key: string
name:
string: string
roles:
- string
Channel 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 Channel resource accepts the following input properties:
- Key string
- Any arbitrary string key that uniquely identifies this channel within the project
- Roles List<string>
- The roles of this channel. Each channel must have at least one role
- Address
Channel
Address - Channel
Id string - The ID of this resource.
- Custom
Channel
Custom - Description Dictionary<string, string>
- LocalizedString
- Geolocation
Channel
Geolocation - Name Dictionary<string, string>
- LocalizedString
- Key string
- Any arbitrary string key that uniquely identifies this channel within the project
- Roles []string
- The roles of this channel. Each channel must have at least one role
- Address
Channel
Address Args - Channel
Id string - The ID of this resource.
- Custom
Channel
Custom Args - Description map[string]string
- LocalizedString
- Geolocation
Channel
Geolocation Args - Name map[string]string
- LocalizedString
- key String
- Any arbitrary string key that uniquely identifies this channel within the project
- roles List<String>
- The roles of this channel. Each channel must have at least one role
- address
Channel
Address - channel
Id String - The ID of this resource.
- custom
Channel
Custom - description Map<String,String>
- LocalizedString
- geolocation
Channel
Geolocation - name Map<String,String>
- LocalizedString
- key string
- Any arbitrary string key that uniquely identifies this channel within the project
- roles string[]
- The roles of this channel. Each channel must have at least one role
- address
Channel
Address - channel
Id string - The ID of this resource.
- custom
Channel
Custom - description {[key: string]: string}
- LocalizedString
- geolocation
Channel
Geolocation - name {[key: string]: string}
- LocalizedString
- key str
- Any arbitrary string key that uniquely identifies this channel within the project
- roles Sequence[str]
- The roles of this channel. Each channel must have at least one role
- address
Channel
Address Args - channel_
id str - The ID of this resource.
- custom
Channel
Custom Args - description Mapping[str, str]
- LocalizedString
- geolocation
Channel
Geolocation Args - name Mapping[str, str]
- LocalizedString
- key String
- Any arbitrary string key that uniquely identifies this channel within the project
- roles List<String>
- The roles of this channel. Each channel must have at least one role
- address Property Map
- channel
Id String - The ID of this resource.
- custom Property Map
- description Map<String>
- LocalizedString
- geolocation Property Map
- name Map<String>
- LocalizedString
Outputs
All input properties are implicitly available as output properties. Additionally, the Channel resource produces the following output properties:
Look up Existing Channel Resource
Get an existing Channel 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?: ChannelState, opts?: CustomResourceOptions): Channel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[ChannelAddressArgs] = None,
channel_id: Optional[str] = None,
custom: Optional[ChannelCustomArgs] = None,
description: Optional[Mapping[str, str]] = None,
geolocation: Optional[ChannelGeolocationArgs] = None,
key: Optional[str] = None,
name: Optional[Mapping[str, str]] = None,
roles: Optional[Sequence[str]] = None,
version: Optional[float] = None) -> Channel
func GetChannel(ctx *Context, name string, id IDInput, state *ChannelState, opts ...ResourceOption) (*Channel, error)
public static Channel Get(string name, Input<string> id, ChannelState? state, CustomResourceOptions? opts = null)
public static Channel get(String name, Output<String> id, ChannelState state, CustomResourceOptions options)
resources: _: type: commercetools:Channel 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.
- Address
Channel
Address - Channel
Id string - The ID of this resource.
- Custom
Channel
Custom - Description Dictionary<string, string>
- LocalizedString
- Geolocation
Channel
Geolocation - Key string
- Any arbitrary string key that uniquely identifies this channel within the project
- Name Dictionary<string, string>
- LocalizedString
- Roles List<string>
- The roles of this channel. Each channel must have at least one role
- Version double
- Address
Channel
Address Args - Channel
Id string - The ID of this resource.
- Custom
Channel
Custom Args - Description map[string]string
- LocalizedString
- Geolocation
Channel
Geolocation Args - Key string
- Any arbitrary string key that uniquely identifies this channel within the project
- Name map[string]string
- LocalizedString
- Roles []string
- The roles of this channel. Each channel must have at least one role
- Version float64
- address
Channel
Address - channel
Id String - The ID of this resource.
- custom
Channel
Custom - description Map<String,String>
- LocalizedString
- geolocation
Channel
Geolocation - key String
- Any arbitrary string key that uniquely identifies this channel within the project
- name Map<String,String>
- LocalizedString
- roles List<String>
- The roles of this channel. Each channel must have at least one role
- version Double
- address
Channel
Address - channel
Id string - The ID of this resource.
- custom
Channel
Custom - description {[key: string]: string}
- LocalizedString
- geolocation
Channel
Geolocation - key string
- Any arbitrary string key that uniquely identifies this channel within the project
- name {[key: string]: string}
- LocalizedString
- roles string[]
- The roles of this channel. Each channel must have at least one role
- version number
- address
Channel
Address Args - channel_
id str - The ID of this resource.
- custom
Channel
Custom Args - description Mapping[str, str]
- LocalizedString
- geolocation
Channel
Geolocation Args - key str
- Any arbitrary string key that uniquely identifies this channel within the project
- name Mapping[str, str]
- LocalizedString
- roles Sequence[str]
- The roles of this channel. Each channel must have at least one role
- version float
- address Property Map
- channel
Id String - The ID of this resource.
- custom Property Map
- description Map<String>
- LocalizedString
- geolocation Property Map
- key String
- Any arbitrary string key that uniquely identifies this channel within the project
- name Map<String>
- LocalizedString
- roles List<String>
- The roles of this channel. Each channel must have at least one role
- version Number
Supporting Types
ChannelAddress, ChannelAddressArgs
- Country string
- Additional
Address stringInfo - Additional
Street stringInfo - Apartment string
- Building string
- City string
- Company string
- Department string
- Email string
- External
Id string - Fax string
- First
Name string - Id string
- Key string
- Last
Name string - Mobile string
- Phone string
- Po
Box string - Postal
Code string - Region string
- Salutation string
- State string
- Street
Name string - Street
Number string - Title string
- Country string
- Additional
Address stringInfo - Additional
Street stringInfo - Apartment string
- Building string
- City string
- Company string
- Department string
- Email string
- External
Id string - Fax string
- First
Name string - Id string
- Key string
- Last
Name string - Mobile string
- Phone string
- Po
Box string - Postal
Code string - Region string
- Salutation string
- State string
- Street
Name string - Street
Number string - Title string
- country String
- additional
Address StringInfo - additional
Street StringInfo - apartment String
- building String
- city String
- company String
- department String
- email String
- external
Id String - fax String
- first
Name String - id String
- key String
- last
Name String - mobile String
- phone String
- po
Box String - postal
Code String - region String
- salutation String
- state String
- street
Name String - street
Number String - title String
- country string
- additional
Address stringInfo - additional
Street stringInfo - apartment string
- building string
- city string
- company string
- department string
- email string
- external
Id string - fax string
- first
Name string - id string
- key string
- last
Name string - mobile string
- phone string
- po
Box string - postal
Code string - region string
- salutation string
- state string
- street
Name string - street
Number string - title string
- country str
- additional_
address_ strinfo - additional_
street_ strinfo - apartment str
- building str
- city str
- company str
- department str
- email str
- external_
id str - fax str
- first_
name str - id str
- key str
- last_
name str - mobile str
- phone str
- po_
box str - postal_
code str - region str
- salutation str
- state str
- street_
name str - street_
number str - title str
- country String
- additional
Address StringInfo - additional
Street StringInfo - apartment String
- building String
- city String
- company String
- department String
- email String
- external
Id String - fax String
- first
Name String - id String
- key String
- last
Name String - mobile String
- phone String
- po
Box String - postal
Code String - region String
- salutation String
- state String
- street
Name String - street
Number String - title String
ChannelCustom, ChannelCustomArgs
ChannelGeolocation, ChannelGeolocationArgs
- Coordinates List<double>
- Coordinates []float64
- coordinates List<Double>
- coordinates number[]
- coordinates Sequence[float]
- coordinates List<Number>
Package Details
- Repository
- commercetools labd/terraform-provider-commercetools
- License
- Notes
- This Pulumi package is based on the
commercetools
Terraform Provider.