ibm.OnboardingRegistration
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_registrations with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const onboardingRegistrationInstance = new ibm.OnboardingRegistration("onboardingRegistrationInstance", {
accountId: "4a5c3c51b97a446fbb1d0e1ef089823b",
companyName: "Beautiful Company",
primaryContact: {
email: "email",
name: "name",
},
});
import pulumi
import pulumi_ibm as ibm
onboarding_registration_instance = ibm.OnboardingRegistration("onboardingRegistrationInstance",
account_id="4a5c3c51b97a446fbb1d0e1ef089823b",
company_name="Beautiful Company",
primary_contact={
"email": "email",
"name": "name",
})
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.NewOnboardingRegistration(ctx, "onboardingRegistrationInstance", &ibm.OnboardingRegistrationArgs{
AccountId: pulumi.String("4a5c3c51b97a446fbb1d0e1ef089823b"),
CompanyName: pulumi.String("Beautiful Company"),
PrimaryContact: &ibm.OnboardingRegistrationPrimaryContactArgs{
Email: pulumi.String("email"),
Name: pulumi.String("name"),
},
})
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 onboardingRegistrationInstance = new Ibm.OnboardingRegistration("onboardingRegistrationInstance", new()
{
AccountId = "4a5c3c51b97a446fbb1d0e1ef089823b",
CompanyName = "Beautiful Company",
PrimaryContact = new Ibm.Inputs.OnboardingRegistrationPrimaryContactArgs
{
Email = "email",
Name = "name",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.OnboardingRegistration;
import com.pulumi.ibm.OnboardingRegistrationArgs;
import com.pulumi.ibm.inputs.OnboardingRegistrationPrimaryContactArgs;
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 onboardingRegistrationInstance = new OnboardingRegistration("onboardingRegistrationInstance", OnboardingRegistrationArgs.builder()
.accountId("4a5c3c51b97a446fbb1d0e1ef089823b")
.companyName("Beautiful Company")
.primaryContact(OnboardingRegistrationPrimaryContactArgs.builder()
.email("email")
.name("name")
.build())
.build());
}
}
resources:
onboardingRegistrationInstance:
type: ibm:OnboardingRegistration
properties:
accountId: 4a5c3c51b97a446fbb1d0e1ef089823b
companyName: Beautiful Company
primaryContact:
email: email
name: name
Create OnboardingRegistration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OnboardingRegistration(name: string, args: OnboardingRegistrationArgs, opts?: CustomResourceOptions);
@overload
def OnboardingRegistration(resource_name: str,
args: OnboardingRegistrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OnboardingRegistration(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
company_name: Optional[str] = None,
primary_contact: Optional[OnboardingRegistrationPrimaryContactArgs] = None,
default_private_catalog_id: Optional[str] = None,
onboarding_registration_id: Optional[str] = None,
provider_access_group: Optional[str] = None)
func NewOnboardingRegistration(ctx *Context, name string, args OnboardingRegistrationArgs, opts ...ResourceOption) (*OnboardingRegistration, error)
public OnboardingRegistration(string name, OnboardingRegistrationArgs args, CustomResourceOptions? opts = null)
public OnboardingRegistration(String name, OnboardingRegistrationArgs args)
public OnboardingRegistration(String name, OnboardingRegistrationArgs args, CustomResourceOptions options)
type: ibm:OnboardingRegistration
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 OnboardingRegistrationArgs
- 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 OnboardingRegistrationArgs
- 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 OnboardingRegistrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OnboardingRegistrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OnboardingRegistrationArgs
- 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 onboardingRegistrationResource = new Ibm.OnboardingRegistration("onboardingRegistrationResource", new()
{
AccountId = "string",
CompanyName = "string",
PrimaryContact = new Ibm.Inputs.OnboardingRegistrationPrimaryContactArgs
{
Email = "string",
Name = "string",
},
DefaultPrivateCatalogId = "string",
OnboardingRegistrationId = "string",
ProviderAccessGroup = "string",
});
example, err := ibm.NewOnboardingRegistration(ctx, "onboardingRegistrationResource", &ibm.OnboardingRegistrationArgs{
AccountId: pulumi.String("string"),
CompanyName: pulumi.String("string"),
PrimaryContact: &ibm.OnboardingRegistrationPrimaryContactArgs{
Email: pulumi.String("string"),
Name: pulumi.String("string"),
},
DefaultPrivateCatalogId: pulumi.String("string"),
OnboardingRegistrationId: pulumi.String("string"),
ProviderAccessGroup: pulumi.String("string"),
})
var onboardingRegistrationResource = new OnboardingRegistration("onboardingRegistrationResource", OnboardingRegistrationArgs.builder()
.accountId("string")
.companyName("string")
.primaryContact(OnboardingRegistrationPrimaryContactArgs.builder()
.email("string")
.name("string")
.build())
.defaultPrivateCatalogId("string")
.onboardingRegistrationId("string")
.providerAccessGroup("string")
.build());
onboarding_registration_resource = ibm.OnboardingRegistration("onboardingRegistrationResource",
account_id="string",
company_name="string",
primary_contact={
"email": "string",
"name": "string",
},
default_private_catalog_id="string",
onboarding_registration_id="string",
provider_access_group="string")
const onboardingRegistrationResource = new ibm.OnboardingRegistration("onboardingRegistrationResource", {
accountId: "string",
companyName: "string",
primaryContact: {
email: "string",
name: "string",
},
defaultPrivateCatalogId: "string",
onboardingRegistrationId: "string",
providerAccessGroup: "string",
});
type: ibm:OnboardingRegistration
properties:
accountId: string
companyName: string
defaultPrivateCatalogId: string
onboardingRegistrationId: string
primaryContact:
email: string
name: string
providerAccessGroup: string
OnboardingRegistration 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 OnboardingRegistration resource accepts the following input properties:
- Account
Id string - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- Company
Name string - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- Primary
Contact OnboardingRegistration Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- Default
Private stringCatalog Id - The default private catalog in which products are created.
- 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
- Onboarding
Registration stringId - The unique identifier of the onboarding_registration.
- Provider
Access stringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- Account
Id string - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- Company
Name string - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- Primary
Contact OnboardingRegistration Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- Default
Private stringCatalog Id - The default private catalog in which products are created.
- 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
- Onboarding
Registration stringId - The unique identifier of the onboarding_registration.
- Provider
Access stringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- account
Id String - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company
Name String - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- primary
Contact OnboardingRegistration Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- default
Private StringCatalog Id - The default private catalog in which products are created.
- 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
- onboarding
Registration StringId - The unique identifier of the onboarding_registration.
- provider
Access StringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- account
Id string - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company
Name string - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- primary
Contact OnboardingRegistration Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- default
Private stringCatalog Id - The default private catalog in which products are created.
- 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
- onboarding
Registration stringId - The unique identifier of the onboarding_registration.
- provider
Access stringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- account_
id str - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company_
name str - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- primary_
contact OnboardingRegistration Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- default_
private_ strcatalog_ id - The default private catalog in which products are created.
- 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
- onboarding_
registration_ strid - The unique identifier of the onboarding_registration.
- provider_
access_ strgroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- account
Id String - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company
Name String - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- primary
Contact Property Map - The primary contact for your product. Nested schema for primary_contact:
- default
Private StringCatalog Id - The default private catalog in which products are created.
- 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
- onboarding
Registration StringId - The unique identifier of the onboarding_registration.
- provider
Access StringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
Outputs
All input properties are implicitly available as output properties. Additionally, the OnboardingRegistration resource produces the following output properties:
- created_
at str - (String) The time when the registration was created.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - (String) The time when the registration was updated.
Look up Existing OnboardingRegistration Resource
Get an existing OnboardingRegistration 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?: OnboardingRegistrationState, opts?: CustomResourceOptions): OnboardingRegistration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
company_name: Optional[str] = None,
created_at: Optional[str] = None,
default_private_catalog_id: Optional[str] = None,
onboarding_registration_id: Optional[str] = None,
primary_contact: Optional[OnboardingRegistrationPrimaryContactArgs] = None,
provider_access_group: Optional[str] = None,
updated_at: Optional[str] = None) -> OnboardingRegistration
func GetOnboardingRegistration(ctx *Context, name string, id IDInput, state *OnboardingRegistrationState, opts ...ResourceOption) (*OnboardingRegistration, error)
public static OnboardingRegistration Get(string name, Input<string> id, OnboardingRegistrationState? state, CustomResourceOptions? opts = null)
public static OnboardingRegistration get(String name, Output<String> id, OnboardingRegistrationState state, CustomResourceOptions options)
resources: _: type: ibm:OnboardingRegistration 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 - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- Company
Name string - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- Created
At string - (String) The time when the registration was created.
- Default
Private stringCatalog Id - The default private catalog in which products are created.
- 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
- Onboarding
Registration stringId - The unique identifier of the onboarding_registration.
- Primary
Contact OnboardingRegistration Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- Provider
Access stringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- Updated
At string - (String) The time when the registration was updated.
- Account
Id string - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- Company
Name string - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- Created
At string - (String) The time when the registration was created.
- Default
Private stringCatalog Id - The default private catalog in which products are created.
- 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
- Onboarding
Registration stringId - The unique identifier of the onboarding_registration.
- Primary
Contact OnboardingRegistration Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- Provider
Access stringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- Updated
At string - (String) The time when the registration was updated.
- account
Id String - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company
Name String - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- created
At String - (String) The time when the registration was created.
- default
Private StringCatalog Id - The default private catalog in which products are created.
- 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
- onboarding
Registration StringId - The unique identifier of the onboarding_registration.
- primary
Contact OnboardingRegistration Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- provider
Access StringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- updated
At String - (String) The time when the registration was updated.
- account
Id string - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company
Name string - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- created
At string - (String) The time when the registration was created.
- default
Private stringCatalog Id - The default private catalog in which products are created.
- 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
- onboarding
Registration stringId - The unique identifier of the onboarding_registration.
- primary
Contact OnboardingRegistration Primary Contact - The primary contact for your product. Nested schema for primary_contact:
- provider
Access stringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- updated
At string - (String) The time when the registration was updated.
- account_
id str - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company_
name str - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- created_
at str - (String) The time when the registration was created.
- default_
private_ strcatalog_ id - The default private catalog in which products are created.
- 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
- onboarding_
registration_ strid - The unique identifier of the onboarding_registration.
- primary_
contact OnboardingRegistration Primary Contact Args - The primary contact for your product. Nested schema for primary_contact:
- provider_
access_ strgroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- updated_
at str - (String) The time when the registration was updated.
- account
Id String - The ID of your account.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9]+$/
.
- Constraints: The maximum length is
- company
Name String - The name of your company that is displayed in the IBM Cloud catalog.
- Constraints: The maximum length is
64
characters. The minimum length is1
character.
- Constraints: The maximum length is
- created
At String - (String) The time when the registration was created.
- default
Private StringCatalog Id - The default private catalog in which products are created.
- 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
- onboarding
Registration StringId - The unique identifier of the onboarding_registration.
- primary
Contact Property Map - The primary contact for your product. Nested schema for primary_contact:
- provider
Access StringGroup - The onboarding access group for your team.
- Constraints: The maximum length is
50
characters. The minimum length is1
character. The value must match regular expression/^AccessGroupId-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
.
- Constraints: The maximum length is
- updated
At String - (String) The time when the registration was updated.
Supporting Types
OnboardingRegistrationPrimaryContact, OnboardingRegistrationPrimaryContactArgs
- 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
Import
You can import the ibm_onboarding_registration
resource by using id
. The ID of your registration, which is the same as your billing and metering (BSS) account ID.
Syntax
```sh $ pulumi import ibm:index/onboardingRegistration:OnboardingRegistration onboarding_registration 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.