ibm.OnboardingProduct
Explore with Pulumi AI
Note - Intended for internal use only. This resource is strictly experimental and subject to change without notice.
Create, update, and delete onboarding_products with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const onboardingProductInstance = new ibm.OnboardingProduct("onboardingProductInstance", {
primaryContact: {
email: "email",
name: "name",
},
support: {
escalationContacts: [{
email: "email",
name: "name",
role: "role",
}],
},
type: "service",
});
import pulumi
import pulumi_ibm as ibm
onboarding_product_instance = ibm.OnboardingProduct("onboardingProductInstance",
primary_contact={
"email": "email",
"name": "name",
},
support={
"escalation_contacts": [{
"email": "email",
"name": "name",
"role": "role",
}],
},
type="service")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewOnboardingProduct(ctx, "onboardingProductInstance", &ibm.OnboardingProductArgs{
PrimaryContact: &ibm.OnboardingProductPrimaryContactArgs{
Email: pulumi.String("email"),
Name: pulumi.String("name"),
},
Support: &ibm.OnboardingProductSupportArgs{
EscalationContacts: ibm.OnboardingProductSupportEscalationContactArray{
&ibm.OnboardingProductSupportEscalationContactArgs{
Email: pulumi.String("email"),
Name: pulumi.String("name"),
Role: pulumi.String("role"),
},
},
},
Type: pulumi.String("service"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var onboardingProductInstance = new Ibm.OnboardingProduct("onboardingProductInstance", new()
{
PrimaryContact = new Ibm.Inputs.OnboardingProductPrimaryContactArgs
{
Email = "email",
Name = "name",
},
Support = new Ibm.Inputs.OnboardingProductSupportArgs
{
EscalationContacts = new[]
{
new Ibm.Inputs.OnboardingProductSupportEscalationContactArgs
{
Email = "email",
Name = "name",
Role = "role",
},
},
},
Type = "service",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.OnboardingProduct;
import com.pulumi.ibm.OnboardingProductArgs;
import com.pulumi.ibm.inputs.OnboardingProductPrimaryContactArgs;
import com.pulumi.ibm.inputs.OnboardingProductSupportArgs;
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 onboardingProductInstance = new OnboardingProduct("onboardingProductInstance", OnboardingProductArgs.builder()
.primaryContact(OnboardingProductPrimaryContactArgs.builder()
.email("email")
.name("name")
.build())
.support(OnboardingProductSupportArgs.builder()
.escalationContacts(OnboardingProductSupportEscalationContactArgs.builder()
.email("email")
.name("name")
.role("role")
.build())
.build())
.type("service")
.build());
}
}
resources:
onboardingProductInstance:
type: ibm:OnboardingProduct
properties:
primaryContact:
email: email
name: name
support:
escalationContacts:
- email: email
name: name
role: role
type: service
Create OnboardingProduct Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OnboardingProduct(name: string, args: OnboardingProductArgs, opts?: CustomResourceOptions);
@overload
def OnboardingProduct(resource_name: str,
args: OnboardingProductArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OnboardingProduct(resource_name: str,
opts: Optional[ResourceOptions] = None,
primary_contact: Optional[OnboardingProductPrimaryContactArgs] = None,
type: Optional[str] = None,
eccn_number: Optional[str] = None,
ero_class: Optional[str] = None,
onboarding_product_id: Optional[str] = None,
support: Optional[OnboardingProductSupportArgs] = None,
tax_assessment: Optional[str] = None,
unspsc: Optional[float] = None)
func NewOnboardingProduct(ctx *Context, name string, args OnboardingProductArgs, opts ...ResourceOption) (*OnboardingProduct, error)
public OnboardingProduct(string name, OnboardingProductArgs args, CustomResourceOptions? opts = null)
public OnboardingProduct(String name, OnboardingProductArgs args)
public OnboardingProduct(String name, OnboardingProductArgs args, CustomResourceOptions options)
type: ibm:OnboardingProduct
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 OnboardingProductArgs
- 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 OnboardingProductArgs
- 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 OnboardingProductArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OnboardingProductArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OnboardingProductArgs
- 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 onboardingProductResource = new Ibm.OnboardingProduct("onboardingProductResource", new()
{
PrimaryContact = new Ibm.Inputs.OnboardingProductPrimaryContactArgs
{
Email = "string",
Name = "string",
},
Type = "string",
EccnNumber = "string",
EroClass = "string",
OnboardingProductId = "string",
Support = new Ibm.Inputs.OnboardingProductSupportArgs
{
EscalationContacts = new[]
{
new Ibm.Inputs.OnboardingProductSupportEscalationContactArgs
{
Email = "string",
Name = "string",
Role = "string",
},
},
},
TaxAssessment = "string",
Unspsc = 0,
});
example, err := ibm.NewOnboardingProduct(ctx, "onboardingProductResource", &ibm.OnboardingProductArgs{
PrimaryContact: &ibm.OnboardingProductPrimaryContactArgs{
Email: pulumi.String("string"),
Name: pulumi.String("string"),
},
Type: pulumi.String("string"),
EccnNumber: pulumi.String("string"),
EroClass: pulumi.String("string"),
OnboardingProductId: pulumi.String("string"),
Support: &ibm.OnboardingProductSupportArgs{
EscalationContacts: ibm.OnboardingProductSupportEscalationContactArray{
&ibm.OnboardingProductSupportEscalationContactArgs{
Email: pulumi.String("string"),
Name: pulumi.String("string"),
Role: pulumi.String("string"),
},
},
},
TaxAssessment: pulumi.String("string"),
Unspsc: pulumi.Float64(0),
})
var onboardingProductResource = new OnboardingProduct("onboardingProductResource", OnboardingProductArgs.builder()
.primaryContact(OnboardingProductPrimaryContactArgs.builder()
.email("string")
.name("string")
.build())
.type("string")
.eccnNumber("string")
.eroClass("string")
.onboardingProductId("string")
.support(OnboardingProductSupportArgs.builder()
.escalationContacts(OnboardingProductSupportEscalationContactArgs.builder()
.email("string")
.name("string")
.role("string")
.build())
.build())
.taxAssessment("string")
.unspsc(0)
.build());
onboarding_product_resource = ibm.OnboardingProduct("onboardingProductResource",
primary_contact={
"email": "string",
"name": "string",
},
type="string",
eccn_number="string",
ero_class="string",
onboarding_product_id="string",
support={
"escalation_contacts": [{
"email": "string",
"name": "string",
"role": "string",
}],
},
tax_assessment="string",
unspsc=0)
const onboardingProductResource = new ibm.OnboardingProduct("onboardingProductResource", {
primaryContact: {
email: "string",
name: "string",
},
type: "string",
eccnNumber: "string",
eroClass: "string",
onboardingProductId: "string",
support: {
escalationContacts: [{
email: "string",
name: "string",
role: "string",
}],
},
taxAssessment: "string",
unspsc: 0,
});
type: ibm:OnboardingProduct
properties:
eccnNumber: string
eroClass: string
onboardingProductId: string
primaryContact:
email: string
name: string
support:
escalationContacts:
- email: string
name: string
role: string
taxAssessment: string
type: string
unspsc: 0
OnboardingProduct 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 OnboardingProduct resource accepts the following input properties:
- Primary
Contact OnboardingProduct Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- Type string
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- Eccn
Number string - The Export Control Classification Number of your product.
- Ero
Class string - The ERO class of your product.
- Onboarding
Product stringId - The unique identifier of the onboarding_product.
- Support
Onboarding
Product Support - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- Tax
Assessment string - The tax assessment type of your product.
- Unspsc double
- The United Nations Standard Products and Services Code of your product.
- Primary
Contact OnboardingProduct Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- Type string
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- Eccn
Number string - The Export Control Classification Number of your product.
- Ero
Class string - The ERO class of your product.
- Onboarding
Product stringId - The unique identifier of the onboarding_product.
- Support
Onboarding
Product Support Args - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- Tax
Assessment string - The tax assessment type of your product.
- Unspsc float64
- The United Nations Standard Products and Services Code of your product.
- primary
Contact OnboardingProduct Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- type String
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- eccn
Number String - The Export Control Classification Number of your product.
- ero
Class String - The ERO class of your product.
- onboarding
Product StringId - The unique identifier of the onboarding_product.
- support
Onboarding
Product Support - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax
Assessment String - The tax assessment type of your product.
- unspsc Double
- The United Nations Standard Products and Services Code of your product.
- primary
Contact OnboardingProduct Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- type string
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- eccn
Number string - The Export Control Classification Number of your product.
- ero
Class string - The ERO class of your product.
- onboarding
Product stringId - The unique identifier of the onboarding_product.
- support
Onboarding
Product Support - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax
Assessment string - The tax assessment type of your product.
- unspsc number
- The United Nations Standard Products and Services Code of your product.
- primary_
contact OnboardingProduct Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- type str
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- eccn_
number str - The Export Control Classification Number of your product.
- ero_
class str - The ERO class of your product.
- onboarding_
product_ strid - The unique identifier of the onboarding_product.
- support
Onboarding
Product Support Args - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax_
assessment str - The tax assessment type of your product.
- unspsc float
- The United Nations Standard Products and Services Code of your product.
- primary
Contact Property Map - The primary contact for your product. Nested schema for primary_contact:
- type String
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- eccn
Number String - The Export Control Classification Number of your product.
- ero
Class String - The ERO class of your product.
- onboarding
Product StringId - The unique identifier of the onboarding_product.
- support Property Map
- The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax
Assessment String - The tax assessment type of your product.
- unspsc Number
- The United Nations Standard Products and Services Code of your product.
Outputs
All input properties are implicitly available as output properties. Additionally, the OnboardingProduct resource produces the following output properties:
- Account
Id string - (String) The IBM Cloud account ID of the provider.
- Approver
Resource stringId - (String) The ID of the approval workflow of your product.
- Global
Catalog stringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Iam
Registration stringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Catalog stringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Private
Catalog stringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Staging
Global stringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Account
Id string - (String) The IBM Cloud account ID of the provider.
- Approver
Resource stringId - (String) The ID of the approval workflow of your product.
- Global
Catalog stringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Iam
Registration stringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Catalog stringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Private
Catalog stringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Staging
Global stringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- account
Id String - (String) The IBM Cloud account ID of the provider.
- approver
Resource StringId - (String) The ID of the approval workflow of your product.
- global
Catalog StringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam
Registration StringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- private
Catalog StringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private
Catalog StringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging
Global StringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- account
Id string - (String) The IBM Cloud account ID of the provider.
- approver
Resource stringId - (String) The ID of the approval workflow of your product.
- global
Catalog stringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam
Registration stringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- private
Catalog stringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private
Catalog stringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging
Global stringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- account_
id str - (String) The IBM Cloud account ID of the provider.
- approver_
resource_ strid - (String) The ID of the approval workflow of your product.
- global_
catalog_ stroffering_ id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam_
registration_ strid - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- id str
- The provider-assigned unique ID for this managed resource.
- private_
catalog_ strid - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private_
catalog_ stroffering_ id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging_
global_ strcatalog_ offering_ id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- account
Id String - (String) The IBM Cloud account ID of the provider.
- approver
Resource StringId - (String) The ID of the approval workflow of your product.
- global
Catalog StringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam
Registration StringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- private
Catalog StringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private
Catalog StringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging
Global StringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
Look up Existing OnboardingProduct Resource
Get an existing OnboardingProduct 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?: OnboardingProductState, opts?: CustomResourceOptions): OnboardingProduct
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
approver_resource_id: Optional[str] = None,
eccn_number: Optional[str] = None,
ero_class: Optional[str] = None,
global_catalog_offering_id: Optional[str] = None,
iam_registration_id: Optional[str] = None,
onboarding_product_id: Optional[str] = None,
primary_contact: Optional[OnboardingProductPrimaryContactArgs] = None,
private_catalog_id: Optional[str] = None,
private_catalog_offering_id: Optional[str] = None,
staging_global_catalog_offering_id: Optional[str] = None,
support: Optional[OnboardingProductSupportArgs] = None,
tax_assessment: Optional[str] = None,
type: Optional[str] = None,
unspsc: Optional[float] = None) -> OnboardingProduct
func GetOnboardingProduct(ctx *Context, name string, id IDInput, state *OnboardingProductState, opts ...ResourceOption) (*OnboardingProduct, error)
public static OnboardingProduct Get(string name, Input<string> id, OnboardingProductState? state, CustomResourceOptions? opts = null)
public static OnboardingProduct get(String name, Output<String> id, OnboardingProductState state, CustomResourceOptions options)
resources: _: type: ibm:OnboardingProduct 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.
- Account
Id string - (String) The IBM Cloud account ID of the provider.
- Approver
Resource stringId - (String) The ID of the approval workflow of your product.
- Eccn
Number string - The Export Control Classification Number of your product.
- Ero
Class string - The ERO class of your product.
- Global
Catalog stringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Iam
Registration stringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- Onboarding
Product stringId - The unique identifier of the onboarding_product.
- Primary
Contact OnboardingProduct Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- Private
Catalog stringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Private
Catalog stringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Staging
Global stringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Support
Onboarding
Product Support - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- Tax
Assessment string - The tax assessment type of your product.
- Type string
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- Unspsc double
- The United Nations Standard Products and Services Code of your product.
- Account
Id string - (String) The IBM Cloud account ID of the provider.
- Approver
Resource stringId - (String) The ID of the approval workflow of your product.
- Eccn
Number string - The Export Control Classification Number of your product.
- Ero
Class string - The ERO class of your product.
- Global
Catalog stringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Iam
Registration stringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- Onboarding
Product stringId - The unique identifier of the onboarding_product.
- Primary
Contact OnboardingProduct Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- Private
Catalog stringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Private
Catalog stringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- Staging
Global stringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- Support
Onboarding
Product Support Args - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- Tax
Assessment string - The tax assessment type of your product.
- Type string
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- Unspsc float64
- The United Nations Standard Products and Services Code of your product.
- account
Id String - (String) The IBM Cloud account ID of the provider.
- approver
Resource StringId - (String) The ID of the approval workflow of your product.
- eccn
Number String - The Export Control Classification Number of your product.
- ero
Class String - The ERO class of your product.
- global
Catalog StringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam
Registration StringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- onboarding
Product StringId - The unique identifier of the onboarding_product.
- primary
Contact OnboardingProduct Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- private
Catalog StringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private
Catalog StringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging
Global StringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- support
Onboarding
Product Support - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax
Assessment String - The tax assessment type of your product.
- type String
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- unspsc Double
- The United Nations Standard Products and Services Code of your product.
- account
Id string - (String) The IBM Cloud account ID of the provider.
- approver
Resource stringId - (String) The ID of the approval workflow of your product.
- eccn
Number string - The Export Control Classification Number of your product.
- ero
Class string - The ERO class of your product.
- global
Catalog stringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam
Registration stringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- onboarding
Product stringId - The unique identifier of the onboarding_product.
- primary
Contact OnboardingProduct Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- private
Catalog stringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private
Catalog stringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging
Global stringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- support
Onboarding
Product Support - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax
Assessment string - The tax assessment type of your product.
- type string
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- unspsc number
- The United Nations Standard Products and Services Code of your product.
- account_
id str - (String) The IBM Cloud account ID of the provider.
- approver_
resource_ strid - (String) The ID of the approval workflow of your product.
- eccn_
number str - The Export Control Classification Number of your product.
- ero_
class str - The ERO class of your product.
- global_
catalog_ stroffering_ id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam_
registration_ strid - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- onboarding_
product_ strid - The unique identifier of the onboarding_product.
- primary_
contact OnboardingProduct Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- private_
catalog_ strid - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private_
catalog_ stroffering_ id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging_
global_ strcatalog_ offering_ id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- support
Onboarding
Product Support Args - The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax_
assessment str - The tax assessment type of your product.
- type str
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- unspsc float
- The United Nations Standard Products and Services Code of your product.
- account
Id String - (String) The IBM Cloud account ID of the provider.
- approver
Resource StringId - (String) The ID of the approval workflow of your product.
- eccn
Number String - The Export Control Classification Number of your product.
- ero
Class String - The ERO class of your product.
- global
Catalog StringOffering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- iam
Registration StringId - (String) IAM registration identifier.
- Constraints: The maximum length is
512
characters. The minimum length is2
characters. The value must match regular expression/^\\S*$/
.
- Constraints: The maximum length is
- onboarding
Product StringId - The unique identifier of the onboarding_product.
- primary
Contact Property Map - The primary contact for your product. Nested schema for primary_contact:
- private
Catalog StringId - (String) The ID of the private catalog that contains the product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- private
Catalog StringOffering Id - (String) The ID of the linked private catalog product. Only applicable for software type products.
- Constraints: The value must match regular expression
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
.
- Constraints: The value must match regular expression
- staging
Global StringCatalog Offering Id - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression
/^\\S*$/
.
- Constraints: The value must match regular expression
- support Property Map
- The support information that is not displayed in the catalog, but available in ServiceNow. Nested schema for support:
- tax
Assessment String - The tax assessment type of your product.
- type String
- The type of the product.
- Constraints: Allowable values are:
software
,service
,professional_service
.
- Constraints: Allowable values are:
- unspsc Number
- The United Nations Standard Products and Services Code of your product.
Supporting Types
OnboardingProductPrimaryContact, OnboardingProductPrimaryContactArgs
- Email string
- The email address of the primary contact for your product.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^\\S+@\\S+$/
.
- Constraints: The maximum length is
- Name string
- The name of the primary contact for your product.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- Email string
- The email address of the primary contact for your product.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^\\S+@\\S+$/
.
- Constraints: The maximum length is
- Name string
- The name of the primary contact for your product.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- email String
- The email address of the primary contact for your product.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^\\S+@\\S+$/
.
- Constraints: The maximum length is
- name String
- The name of the primary contact for your product.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- email string
- The email address of the primary contact for your product.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^\\S+@\\S+$/
.
- Constraints: The maximum length is
- name string
- The name of the primary contact for your product.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- email str
- The email address of the primary contact for your product.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^\\S+@\\S+$/
.
- Constraints: The maximum length is
- name str
- The name of the primary contact for your product.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- email String
- The email address of the primary contact for your product.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^\\S+@\\S+$/
.
- Constraints: The maximum length is
- name String
- The name of the primary contact for your product.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
OnboardingProductSupport, OnboardingProductSupportArgs
- Escalation
Contacts List<OnboardingProduct Support Escalation Contact> - The list of contacts in case of support escalations.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for escalation_contacts:
- Constraints: The maximum length is
- Escalation
Contacts []OnboardingProduct Support Escalation Contact - The list of contacts in case of support escalations.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for escalation_contacts:
- Constraints: The maximum length is
- escalation
Contacts List<OnboardingProduct Support Escalation Contact> - The list of contacts in case of support escalations.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for escalation_contacts:
- Constraints: The maximum length is
- escalation
Contacts OnboardingProduct Support Escalation Contact[] - The list of contacts in case of support escalations.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for escalation_contacts:
- Constraints: The maximum length is
- escalation_
contacts Sequence[OnboardingProduct Support Escalation Contact] - The list of contacts in case of support escalations.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for escalation_contacts:
- Constraints: The maximum length is
- escalation
Contacts List<Property Map> - The list of contacts in case of support escalations.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for escalation_contacts:
- Constraints: The maximum length is
OnboardingProductSupportEscalationContact, OnboardingProductSupportEscalationContactArgs
Import
You can import the ibm_onboarding_product
resource by using id
. The ID of a product in Partner Center - Sell.
Syntax
```sh $ pulumi import ibm:index/onboardingProduct:OnboardingProduct onboarding_product id; ```
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.