commercetools.BusinessUnitCompany
Explore with Pulumi AI
Business Unit type to represent the top level of a business. Contains specific fields and values that differentiate a company from the generic business unit.
See also the Business Unit API Documentation User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
name
(String) The name of the company.
Create BusinessUnitCompany Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BusinessUnitCompany(name: string, args: BusinessUnitCompanyArgs, opts?: CustomResourceOptions);
@overload
def BusinessUnitCompany(resource_name: str,
args: BusinessUnitCompanyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BusinessUnitCompany(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
addresses: Optional[Sequence[BusinessUnitCompanyAddressArgs]] = None,
billing_address_keys: Optional[Sequence[str]] = None,
contact_email: Optional[str] = None,
custom: Optional[BusinessUnitCompanyCustomArgs] = None,
default_billing_address_key: Optional[str] = None,
default_shipping_address_key: Optional[str] = None,
name: Optional[str] = None,
shipping_address_keys: Optional[Sequence[str]] = None,
status: Optional[str] = None,
stores: Optional[Sequence[BusinessUnitCompanyStoreArgs]] = None)
func NewBusinessUnitCompany(ctx *Context, name string, args BusinessUnitCompanyArgs, opts ...ResourceOption) (*BusinessUnitCompany, error)
public BusinessUnitCompany(string name, BusinessUnitCompanyArgs args, CustomResourceOptions? opts = null)
public BusinessUnitCompany(String name, BusinessUnitCompanyArgs args)
public BusinessUnitCompany(String name, BusinessUnitCompanyArgs args, CustomResourceOptions options)
type: commercetools:BusinessUnitCompany
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 BusinessUnitCompanyArgs
- 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 BusinessUnitCompanyArgs
- 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 BusinessUnitCompanyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BusinessUnitCompanyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BusinessUnitCompanyArgs
- 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 businessUnitCompanyResource = new Commercetools.BusinessUnitCompany("businessUnitCompanyResource", new()
{
Key = "string",
Addresses = new[]
{
new Commercetools.Inputs.BusinessUnitCompanyAddressArgs
{
Country = "string",
Key = "string",
Id = "string",
Title = "string",
AdditionalAddressInfo = "string",
Company = "string",
Apartment = "string",
Department = "string",
Email = "string",
ExternalId = "string",
Fax = "string",
LastName = "string",
City = "string",
Building = "string",
FirstName = "string",
Mobile = "string",
Phone = "string",
PoBox = "string",
PostalCode = "string",
Region = "string",
Salutation = "string",
State = "string",
StreetName = "string",
StreetNumber = "string",
AdditionalStreetInfo = "string",
},
},
BillingAddressKeys = new[]
{
"string",
},
ContactEmail = "string",
Custom = new Commercetools.Inputs.BusinessUnitCompanyCustomArgs
{
Fields =
{
{ "string", "string" },
},
TypeId = "string",
},
DefaultBillingAddressKey = "string",
DefaultShippingAddressKey = "string",
Name = "string",
ShippingAddressKeys = new[]
{
"string",
},
Status = "string",
Stores = new[]
{
new Commercetools.Inputs.BusinessUnitCompanyStoreArgs
{
Key = "string",
},
},
});
example, err := commercetools.NewBusinessUnitCompany(ctx, "businessUnitCompanyResource", &commercetools.BusinessUnitCompanyArgs{
Key: pulumi.String("string"),
Addresses: .BusinessUnitCompanyAddressArray{
&.BusinessUnitCompanyAddressArgs{
Country: pulumi.String("string"),
Key: pulumi.String("string"),
Id: pulumi.String("string"),
Title: pulumi.String("string"),
AdditionalAddressInfo: pulumi.String("string"),
Company: pulumi.String("string"),
Apartment: pulumi.String("string"),
Department: pulumi.String("string"),
Email: pulumi.String("string"),
ExternalId: pulumi.String("string"),
Fax: pulumi.String("string"),
LastName: pulumi.String("string"),
City: pulumi.String("string"),
Building: pulumi.String("string"),
FirstName: pulumi.String("string"),
Mobile: 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"),
StreetName: pulumi.String("string"),
StreetNumber: pulumi.String("string"),
AdditionalStreetInfo: pulumi.String("string"),
},
},
BillingAddressKeys: pulumi.StringArray{
pulumi.String("string"),
},
ContactEmail: pulumi.String("string"),
Custom: &.BusinessUnitCompanyCustomArgs{
Fields: pulumi.StringMap{
"string": pulumi.String("string"),
},
TypeId: pulumi.String("string"),
},
DefaultBillingAddressKey: pulumi.String("string"),
DefaultShippingAddressKey: pulumi.String("string"),
Name: pulumi.String("string"),
ShippingAddressKeys: pulumi.StringArray{
pulumi.String("string"),
},
Status: pulumi.String("string"),
Stores: .BusinessUnitCompanyStoreArray{
&.BusinessUnitCompanyStoreArgs{
Key: pulumi.String("string"),
},
},
})
var businessUnitCompanyResource = new BusinessUnitCompany("businessUnitCompanyResource", BusinessUnitCompanyArgs.builder()
.key("string")
.addresses(BusinessUnitCompanyAddressArgs.builder()
.country("string")
.key("string")
.id("string")
.title("string")
.additionalAddressInfo("string")
.company("string")
.apartment("string")
.department("string")
.email("string")
.externalId("string")
.fax("string")
.lastName("string")
.city("string")
.building("string")
.firstName("string")
.mobile("string")
.phone("string")
.poBox("string")
.postalCode("string")
.region("string")
.salutation("string")
.state("string")
.streetName("string")
.streetNumber("string")
.additionalStreetInfo("string")
.build())
.billingAddressKeys("string")
.contactEmail("string")
.custom(BusinessUnitCompanyCustomArgs.builder()
.fields(Map.of("string", "string"))
.typeId("string")
.build())
.defaultBillingAddressKey("string")
.defaultShippingAddressKey("string")
.name("string")
.shippingAddressKeys("string")
.status("string")
.stores(BusinessUnitCompanyStoreArgs.builder()
.key("string")
.build())
.build());
business_unit_company_resource = commercetools.BusinessUnitCompany("businessUnitCompanyResource",
key="string",
addresses=[{
"country": "string",
"key": "string",
"id": "string",
"title": "string",
"additional_address_info": "string",
"company": "string",
"apartment": "string",
"department": "string",
"email": "string",
"external_id": "string",
"fax": "string",
"last_name": "string",
"city": "string",
"building": "string",
"first_name": "string",
"mobile": "string",
"phone": "string",
"po_box": "string",
"postal_code": "string",
"region": "string",
"salutation": "string",
"state": "string",
"street_name": "string",
"street_number": "string",
"additional_street_info": "string",
}],
billing_address_keys=["string"],
contact_email="string",
custom={
"fields": {
"string": "string",
},
"type_id": "string",
},
default_billing_address_key="string",
default_shipping_address_key="string",
name="string",
shipping_address_keys=["string"],
status="string",
stores=[{
"key": "string",
}])
const businessUnitCompanyResource = new commercetools.BusinessUnitCompany("businessUnitCompanyResource", {
key: "string",
addresses: [{
country: "string",
key: "string",
id: "string",
title: "string",
additionalAddressInfo: "string",
company: "string",
apartment: "string",
department: "string",
email: "string",
externalId: "string",
fax: "string",
lastName: "string",
city: "string",
building: "string",
firstName: "string",
mobile: "string",
phone: "string",
poBox: "string",
postalCode: "string",
region: "string",
salutation: "string",
state: "string",
streetName: "string",
streetNumber: "string",
additionalStreetInfo: "string",
}],
billingAddressKeys: ["string"],
contactEmail: "string",
custom: {
fields: {
string: "string",
},
typeId: "string",
},
defaultBillingAddressKey: "string",
defaultShippingAddressKey: "string",
name: "string",
shippingAddressKeys: ["string"],
status: "string",
stores: [{
key: "string",
}],
});
type: commercetools:BusinessUnitCompany
properties:
addresses:
- 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
billingAddressKeys:
- string
contactEmail: string
custom:
fields:
string: string
typeId: string
defaultBillingAddressKey: string
defaultShippingAddressKey: string
key: string
name: string
shippingAddressKeys:
- string
status: string
stores:
- key: string
BusinessUnitCompany 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 BusinessUnitCompany resource accepts the following input properties:
- Key string
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- Addresses
List<Business
Unit Company Address> - Addresses used by the Business Unit.
- Billing
Address List<string>Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- Contact
Email string - The email address of the company.
- Custom
Business
Unit Company Custom - Custom fields for this resource.
- Default
Billing stringAddress Key - Index of the entry in addresses to set as the default billing address.
- Default
Shipping stringAddress Key - Index of the entry in addresses to set as the default shipping address.
- Name string
- The name of the company.
- Shipping
Address List<string>Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- Status string
- The status of the company.
- Stores
List<Business
Unit Company Store> - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- Key string
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- Addresses
[]Business
Unit Company Address Args - Addresses used by the Business Unit.
- Billing
Address []stringKeys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- Contact
Email string - The email address of the company.
- Custom
Business
Unit Company Custom Args - Custom fields for this resource.
- Default
Billing stringAddress Key - Index of the entry in addresses to set as the default billing address.
- Default
Shipping stringAddress Key - Index of the entry in addresses to set as the default shipping address.
- Name string
- The name of the company.
- Shipping
Address []stringKeys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- Status string
- The status of the company.
- Stores
[]Business
Unit Company Store Args - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- key String
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- addresses
List<Business
Unit Company Address> - Addresses used by the Business Unit.
- billing
Address List<String>Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact
Email String - The email address of the company.
- custom
Business
Unit Company Custom - Custom fields for this resource.
- default
Billing StringAddress Key - Index of the entry in addresses to set as the default billing address.
- default
Shipping StringAddress Key - Index of the entry in addresses to set as the default shipping address.
- name String
- The name of the company.
- shipping
Address List<String>Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status String
- The status of the company.
- stores
List<Business
Unit Company Store> - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- key string
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- addresses
Business
Unit Company Address[] - Addresses used by the Business Unit.
- billing
Address string[]Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact
Email string - The email address of the company.
- custom
Business
Unit Company Custom - Custom fields for this resource.
- default
Billing stringAddress Key - Index of the entry in addresses to set as the default billing address.
- default
Shipping stringAddress Key - Index of the entry in addresses to set as the default shipping address.
- name string
- The name of the company.
- shipping
Address string[]Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status string
- The status of the company.
- stores
Business
Unit Company Store[] - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- key str
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- addresses
Sequence[Business
Unit Company Address Args] - Addresses used by the Business Unit.
- billing_
address_ Sequence[str]keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact_
email str - The email address of the company.
- custom
Business
Unit Company Custom Args - Custom fields for this resource.
- default_
billing_ straddress_ key - Index of the entry in addresses to set as the default billing address.
- default_
shipping_ straddress_ key - Index of the entry in addresses to set as the default shipping address.
- name str
- The name of the company.
- shipping_
address_ Sequence[str]keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status str
- The status of the company.
- stores
Sequence[Business
Unit Company Store Args] - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- key String
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- addresses List<Property Map>
- Addresses used by the Business Unit.
- billing
Address List<String>Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact
Email String - The email address of the company.
- custom Property Map
- Custom fields for this resource.
- default
Billing StringAddress Key - Index of the entry in addresses to set as the default billing address.
- default
Shipping StringAddress Key - Index of the entry in addresses to set as the default shipping address.
- name String
- The name of the company.
- shipping
Address List<String>Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status String
- The status of the company.
- stores List<Property Map>
- Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
Outputs
All input properties are implicitly available as output properties. Additionally, the BusinessUnitCompany resource produces the following output properties:
Look up Existing BusinessUnitCompany Resource
Get an existing BusinessUnitCompany 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?: BusinessUnitCompanyState, opts?: CustomResourceOptions): BusinessUnitCompany
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addresses: Optional[Sequence[BusinessUnitCompanyAddressArgs]] = None,
billing_address_keys: Optional[Sequence[str]] = None,
contact_email: Optional[str] = None,
custom: Optional[BusinessUnitCompanyCustomArgs] = None,
default_billing_address_key: Optional[str] = None,
default_shipping_address_key: Optional[str] = None,
key: Optional[str] = None,
name: Optional[str] = None,
shipping_address_keys: Optional[Sequence[str]] = None,
status: Optional[str] = None,
stores: Optional[Sequence[BusinessUnitCompanyStoreArgs]] = None,
version: Optional[float] = None) -> BusinessUnitCompany
func GetBusinessUnitCompany(ctx *Context, name string, id IDInput, state *BusinessUnitCompanyState, opts ...ResourceOption) (*BusinessUnitCompany, error)
public static BusinessUnitCompany Get(string name, Input<string> id, BusinessUnitCompanyState? state, CustomResourceOptions? opts = null)
public static BusinessUnitCompany get(String name, Output<String> id, BusinessUnitCompanyState state, CustomResourceOptions options)
resources: _: type: commercetools:BusinessUnitCompany 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.
- Addresses
List<Business
Unit Company Address> - Addresses used by the Business Unit.
- Billing
Address List<string>Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- Contact
Email string - The email address of the company.
- Custom
Business
Unit Company Custom - Custom fields for this resource.
- Default
Billing stringAddress Key - Index of the entry in addresses to set as the default billing address.
- Default
Shipping stringAddress Key - Index of the entry in addresses to set as the default shipping address.
- Key string
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- Name string
- The name of the company.
- Shipping
Address List<string>Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- Status string
- The status of the company.
- Stores
List<Business
Unit Company Store> - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- Version double
- The current version of the company.
- Addresses
[]Business
Unit Company Address Args - Addresses used by the Business Unit.
- Billing
Address []stringKeys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- Contact
Email string - The email address of the company.
- Custom
Business
Unit Company Custom Args - Custom fields for this resource.
- Default
Billing stringAddress Key - Index of the entry in addresses to set as the default billing address.
- Default
Shipping stringAddress Key - Index of the entry in addresses to set as the default shipping address.
- Key string
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- Name string
- The name of the company.
- Shipping
Address []stringKeys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- Status string
- The status of the company.
- Stores
[]Business
Unit Company Store Args - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- Version float64
- The current version of the company.
- addresses
List<Business
Unit Company Address> - Addresses used by the Business Unit.
- billing
Address List<String>Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact
Email String - The email address of the company.
- custom
Business
Unit Company Custom - Custom fields for this resource.
- default
Billing StringAddress Key - Index of the entry in addresses to set as the default billing address.
- default
Shipping StringAddress Key - Index of the entry in addresses to set as the default shipping address.
- key String
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- name String
- The name of the company.
- shipping
Address List<String>Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status String
- The status of the company.
- stores
List<Business
Unit Company Store> - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- version Double
- The current version of the company.
- addresses
Business
Unit Company Address[] - Addresses used by the Business Unit.
- billing
Address string[]Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact
Email string - The email address of the company.
- custom
Business
Unit Company Custom - Custom fields for this resource.
- default
Billing stringAddress Key - Index of the entry in addresses to set as the default billing address.
- default
Shipping stringAddress Key - Index of the entry in addresses to set as the default shipping address.
- key string
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- name string
- The name of the company.
- shipping
Address string[]Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status string
- The status of the company.
- stores
Business
Unit Company Store[] - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- version number
- The current version of the company.
- addresses
Sequence[Business
Unit Company Address Args] - Addresses used by the Business Unit.
- billing_
address_ Sequence[str]keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact_
email str - The email address of the company.
- custom
Business
Unit Company Custom Args - Custom fields for this resource.
- default_
billing_ straddress_ key - Index of the entry in addresses to set as the default billing address.
- default_
shipping_ straddress_ key - Index of the entry in addresses to set as the default shipping address.
- key str
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- name str
- The name of the company.
- shipping_
address_ Sequence[str]keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status str
- The status of the company.
- stores
Sequence[Business
Unit Company Store Args] - Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- version float
- The current version of the company.
- addresses List<Property Map>
- Addresses used by the Business Unit.
- billing
Address List<String>Keys - Indexes of entries in addresses to set as billing addresses. The billingAddressIds of the Customer will be replaced by these addresses.
- contact
Email String - The email address of the company.
- custom Property Map
- Custom fields for this resource.
- default
Billing StringAddress Key - Index of the entry in addresses to set as the default billing address.
- default
Shipping StringAddress Key - Index of the entry in addresses to set as the default shipping address.
- key String
- User-defined unique key for the company. Must be unique within the project. Updating this value is not supported.
- name String
- The name of the company.
- shipping
Address List<String>Keys - Indexes of entries in addresses to set as shipping addresses. The shippingAddressIds of the Customer will be replaced by these addresses.
- status String
- The status of the company.
- stores List<Property Map>
- Sets the Stores the Business Unit is associated with. If the Business Unit has Stores defined, then all of its Carts, Orders, Quotes, or Quote Requests must belong to one of the Business Unit's Stores. If the Business Unit has no Stores, then all of its Carts, Orders, Quotes, or Quote Requests must not belong to any Store.
- version Number
- The current version of the company.
Supporting Types
BusinessUnitCompanyAddress, BusinessUnitCompanyAddressArgs
- Country string
- Name of the country
- Key string
- User-defined identifier of the Address that must be unique when multiple addresses are referenced in BusinessUnits, Customers, and itemShippingAddresses (LineItem-specific addresses) of a Cart, Order, QuoteRequest, or Quote.
- Additional
Address stringInfo - Further information on the Address
- Additional
Street stringInfo - Further information on the street address
- Apartment string
- Name or number of the apartment
- Building string
- Name or number of the building
- City string
- Name of the city
- Company string
- Name of the company
- Department string
- Name of the department
- Email string
- Email address
- External
Id string - ID for the contact used in an external system
- Fax string
- Fax number
- First
Name string - First name of the contact
- Id string
- Unique identifier of the Address
- Last
Name string - Last name of the contact
- Mobile string
- Mobile phone number
- Phone string
- Phone number
- Po
Box string - Post office box number
- Postal
Code string - Postal code
- Region string
- Name of the region
- Salutation string
- Salutation of the contact, for example Ms., Mr.
- State string
- Name of the state
- Street
Name string - Name of the street
- Street
Number string - Street number
- Title string
- Title of the contact, for example Dr., Prof.
- Country string
- Name of the country
- Key string
- User-defined identifier of the Address that must be unique when multiple addresses are referenced in BusinessUnits, Customers, and itemShippingAddresses (LineItem-specific addresses) of a Cart, Order, QuoteRequest, or Quote.
- Additional
Address stringInfo - Further information on the Address
- Additional
Street stringInfo - Further information on the street address
- Apartment string
- Name or number of the apartment
- Building string
- Name or number of the building
- City string
- Name of the city
- Company string
- Name of the company
- Department string
- Name of the department
- Email string
- Email address
- External
Id string - ID for the contact used in an external system
- Fax string
- Fax number
- First
Name string - First name of the contact
- Id string
- Unique identifier of the Address
- Last
Name string - Last name of the contact
- Mobile string
- Mobile phone number
- Phone string
- Phone number
- Po
Box string - Post office box number
- Postal
Code string - Postal code
- Region string
- Name of the region
- Salutation string
- Salutation of the contact, for example Ms., Mr.
- State string
- Name of the state
- Street
Name string - Name of the street
- Street
Number string - Street number
- Title string
- Title of the contact, for example Dr., Prof.
- country String
- Name of the country
- key String
- User-defined identifier of the Address that must be unique when multiple addresses are referenced in BusinessUnits, Customers, and itemShippingAddresses (LineItem-specific addresses) of a Cart, Order, QuoteRequest, or Quote.
- additional
Address StringInfo - Further information on the Address
- additional
Street StringInfo - Further information on the street address
- apartment String
- Name or number of the apartment
- building String
- Name or number of the building
- city String
- Name of the city
- company String
- Name of the company
- department String
- Name of the department
- email String
- Email address
- external
Id String - ID for the contact used in an external system
- fax String
- Fax number
- first
Name String - First name of the contact
- id String
- Unique identifier of the Address
- last
Name String - Last name of the contact
- mobile String
- Mobile phone number
- phone String
- Phone number
- po
Box String - Post office box number
- postal
Code String - Postal code
- region String
- Name of the region
- salutation String
- Salutation of the contact, for example Ms., Mr.
- state String
- Name of the state
- street
Name String - Name of the street
- street
Number String - Street number
- title String
- Title of the contact, for example Dr., Prof.
- country string
- Name of the country
- key string
- User-defined identifier of the Address that must be unique when multiple addresses are referenced in BusinessUnits, Customers, and itemShippingAddresses (LineItem-specific addresses) of a Cart, Order, QuoteRequest, or Quote.
- additional
Address stringInfo - Further information on the Address
- additional
Street stringInfo - Further information on the street address
- apartment string
- Name or number of the apartment
- building string
- Name or number of the building
- city string
- Name of the city
- company string
- Name of the company
- department string
- Name of the department
- email string
- Email address
- external
Id string - ID for the contact used in an external system
- fax string
- Fax number
- first
Name string - First name of the contact
- id string
- Unique identifier of the Address
- last
Name string - Last name of the contact
- mobile string
- Mobile phone number
- phone string
- Phone number
- po
Box string - Post office box number
- postal
Code string - Postal code
- region string
- Name of the region
- salutation string
- Salutation of the contact, for example Ms., Mr.
- state string
- Name of the state
- street
Name string - Name of the street
- street
Number string - Street number
- title string
- Title of the contact, for example Dr., Prof.
- country str
- Name of the country
- key str
- User-defined identifier of the Address that must be unique when multiple addresses are referenced in BusinessUnits, Customers, and itemShippingAddresses (LineItem-specific addresses) of a Cart, Order, QuoteRequest, or Quote.
- additional_
address_ strinfo - Further information on the Address
- additional_
street_ strinfo - Further information on the street address
- apartment str
- Name or number of the apartment
- building str
- Name or number of the building
- city str
- Name of the city
- company str
- Name of the company
- department str
- Name of the department
- email str
- Email address
- external_
id str - ID for the contact used in an external system
- fax str
- Fax number
- first_
name str - First name of the contact
- id str
- Unique identifier of the Address
- last_
name str - Last name of the contact
- mobile str
- Mobile phone number
- phone str
- Phone number
- po_
box str - Post office box number
- postal_
code str - Postal code
- region str
- Name of the region
- salutation str
- Salutation of the contact, for example Ms., Mr.
- state str
- Name of the state
- street_
name str - Name of the street
- street_
number str - Street number
- title str
- Title of the contact, for example Dr., Prof.
- country String
- Name of the country
- key String
- User-defined identifier of the Address that must be unique when multiple addresses are referenced in BusinessUnits, Customers, and itemShippingAddresses (LineItem-specific addresses) of a Cart, Order, QuoteRequest, or Quote.
- additional
Address StringInfo - Further information on the Address
- additional
Street StringInfo - Further information on the street address
- apartment String
- Name or number of the apartment
- building String
- Name or number of the building
- city String
- Name of the city
- company String
- Name of the company
- department String
- Name of the department
- email String
- Email address
- external
Id String - ID for the contact used in an external system
- fax String
- Fax number
- first
Name String - First name of the contact
- id String
- Unique identifier of the Address
- last
Name String - Last name of the contact
- mobile String
- Mobile phone number
- phone String
- Phone number
- po
Box String - Post office box number
- postal
Code String - Postal code
- region String
- Name of the region
- salutation String
- Salutation of the contact, for example Ms., Mr.
- state String
- Name of the state
- street
Name String - Name of the street
- street
Number String - Street number
- title String
- Title of the contact, for example Dr., Prof.
BusinessUnitCompanyCustom, BusinessUnitCompanyCustomArgs
BusinessUnitCompanyStore, BusinessUnitCompanyStoreArgs
- Key string
- User-defined unique identifier of the Store
- Key string
- User-defined unique identifier of the Store
- key String
- User-defined unique identifier of the Store
- key string
- User-defined unique identifier of the Store
- key str
- User-defined unique identifier of the Store
- key String
- User-defined unique identifier of the Store
Package Details
- Repository
- commercetools labd/terraform-provider-commercetools
- License
- Notes
- This Pulumi package is based on the
commercetools
Terraform Provider.