ibm.OnboardingCatalogDeployment
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_catalog_deployments with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const onboardingCatalogDeploymentInstance = new ibm.OnboardingCatalogDeployment("onboardingCatalogDeploymentInstance", {
    active: true,
    catalogPlanId: ibm_onboarding_catalog_plan.onboarding_catalog_plan_instance.onboarding_catalog_plan_id,
    catalogProductId: ibm_onboarding_catalog_product.onboarding_catalog_product_instance.onboarding_catalog_product_id,
    disabled: false,
    kind: "deployment",
    metadata: {
        rcCompatible: true,
        service: {
            rcProvisionable: true,
            iamCompatible: true,
            serviceKeySupported: true,
            parameters: [{
                displayname: "displayname",
                name: "name",
                type: "text",
                options: [{
                    displayname: "displayname",
                    value: "value",
                    i18n: {
                        en: {
                            displayname: "displayname",
                            description: "description",
                        },
                        de: {
                            displayname: "displayname",
                            description: "description",
                        },
                        es: {
                            displayname: "displayname",
                            description: "description",
                        },
                        fr: {
                            displayname: "displayname",
                            description: "description",
                        },
                        it: {
                            displayname: "displayname",
                            description: "description",
                        },
                        ja: {
                            displayname: "displayname",
                            description: "description",
                        },
                        ko: {
                            displayname: "displayname",
                            description: "description",
                        },
                        ptBr: {
                            displayname: "displayname",
                            description: "description",
                        },
                        zhTw: {
                            displayname: "displayname",
                            description: "description",
                        },
                        zhCn: {
                            displayname: "displayname",
                            description: "description",
                        },
                    },
                }],
                values: ["value"],
                layout: "layout",
                associations: {
                    key: "anything as a string",
                },
                validationUrl: "validation_url",
                optionsUrl: "options_url",
                invalidmessage: "invalidmessage",
                description: "description",
                required: true,
                pattern: "pattern",
                placeholder: "placeholder",
                readonly: true,
                hidden: true,
                i18n: {
                    en: {
                        displayname: "displayname",
                        description: "description",
                    },
                    de: {
                        displayname: "displayname",
                        description: "description",
                    },
                    es: {
                        displayname: "displayname",
                        description: "description",
                    },
                    fr: {
                        displayname: "displayname",
                        description: "description",
                    },
                    it: {
                        displayname: "displayname",
                        description: "description",
                    },
                    ja: {
                        displayname: "displayname",
                        description: "description",
                    },
                    ko: {
                        displayname: "displayname",
                        description: "description",
                    },
                    ptBr: {
                        displayname: "displayname",
                        description: "description",
                    },
                    zhTw: {
                        displayname: "displayname",
                        description: "description",
                    },
                    zhCn: {
                        displayname: "displayname",
                        description: "description",
                    },
                },
            }],
        },
        deployment: {
            broker: {
                name: "name",
                guid: "guid",
            },
            location: "location",
            locationUrl: "location_url",
            targetCrn: "target_crn",
        },
    },
    objectProvider: {
        name: "name",
        email: "email",
    },
    overviewUi: {
        en: {
            displayName: "display_name",
            description: "description",
            longDescription: "long_description",
        },
    },
    productId: ibm_onboarding_product.onboarding_product_instance.id,
});
import pulumi
import pulumi_ibm as ibm
onboarding_catalog_deployment_instance = ibm.OnboardingCatalogDeployment("onboardingCatalogDeploymentInstance",
    active=True,
    catalog_plan_id=ibm_onboarding_catalog_plan["onboarding_catalog_plan_instance"]["onboarding_catalog_plan_id"],
    catalog_product_id=ibm_onboarding_catalog_product["onboarding_catalog_product_instance"]["onboarding_catalog_product_id"],
    disabled=False,
    kind="deployment",
    metadata={
        "rc_compatible": True,
        "service": {
            "rc_provisionable": True,
            "iam_compatible": True,
            "service_key_supported": True,
            "parameters": [{
                "displayname": "displayname",
                "name": "name",
                "type": "text",
                "options": [{
                    "displayname": "displayname",
                    "value": "value",
                    "i18n": {
                        "en": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "de": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "es": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "fr": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "it": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "ja": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "ko": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "pt_br": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "zh_tw": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                        "zh_cn": {
                            "displayname": "displayname",
                            "description": "description",
                        },
                    },
                }],
                "values": ["value"],
                "layout": "layout",
                "associations": {
                    "key": "anything as a string",
                },
                "validation_url": "validation_url",
                "options_url": "options_url",
                "invalidmessage": "invalidmessage",
                "description": "description",
                "required": True,
                "pattern": "pattern",
                "placeholder": "placeholder",
                "readonly": True,
                "hidden": True,
                "i18n": {
                    "en": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "de": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "es": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "fr": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "it": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "ja": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "ko": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "pt_br": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "zh_tw": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                    "zh_cn": {
                        "displayname": "displayname",
                        "description": "description",
                    },
                },
            }],
        },
        "deployment": {
            "broker": {
                "name": "name",
                "guid": "guid",
            },
            "location": "location",
            "location_url": "location_url",
            "target_crn": "target_crn",
        },
    },
    object_provider={
        "name": "name",
        "email": "email",
    },
    overview_ui={
        "en": {
            "display_name": "display_name",
            "description": "description",
            "long_description": "long_description",
        },
    },
    product_id=ibm_onboarding_product["onboarding_product_instance"]["id"])
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.NewOnboardingCatalogDeployment(ctx, "onboardingCatalogDeploymentInstance", &ibm.OnboardingCatalogDeploymentArgs{
			Active:           pulumi.Bool(true),
			CatalogPlanId:    pulumi.Any(ibm_onboarding_catalog_plan.Onboarding_catalog_plan_instance.Onboarding_catalog_plan_id),
			CatalogProductId: pulumi.Any(ibm_onboarding_catalog_product.Onboarding_catalog_product_instance.Onboarding_catalog_product_id),
			Disabled:         pulumi.Bool(false),
			Kind:             pulumi.String("deployment"),
			Metadata: &ibm.OnboardingCatalogDeploymentMetadataArgs{
				RcCompatible: pulumi.Bool(true),
				Service: &ibm.OnboardingCatalogDeploymentMetadataServiceArgs{
					RcProvisionable:     pulumi.Bool(true),
					IamCompatible:       pulumi.Bool(true),
					ServiceKeySupported: pulumi.Bool(true),
					Parameters: ibm.OnboardingCatalogDeploymentMetadataServiceParameterArray{
						&ibm.OnboardingCatalogDeploymentMetadataServiceParameterArgs{
							Displayname: pulumi.String("displayname"),
							Name:        pulumi.String("name"),
							Type:        pulumi.String("text"),
							Options: ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionArray{
								&ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs{
									Displayname: pulumi.String("displayname"),
									Value:       pulumi.String("value"),
									I18n: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs{
										En: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										De: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										Es: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										Fr: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										It: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										Ja: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										Ko: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										PtBr: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										ZhTw: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
										ZhCn: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs{
											Displayname: pulumi.String("displayname"),
											Description: pulumi.String("description"),
										},
									},
								},
							},
							Values: pulumi.StringArray{
								pulumi.String("value"),
							},
							Layout: pulumi.String("layout"),
							Associations: pulumi.StringMap{
								"key": pulumi.String("anything as a string"),
							},
							ValidationUrl:  pulumi.String("validation_url"),
							OptionsUrl:     pulumi.String("options_url"),
							Invalidmessage: pulumi.String("invalidmessage"),
							Description:    pulumi.String("description"),
							Required:       pulumi.Bool(true),
							Pattern:        pulumi.String("pattern"),
							Placeholder:    pulumi.String("placeholder"),
							Readonly:       pulumi.Bool(true),
							Hidden:         pulumi.Bool(true),
							I18n: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs{
								En: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								De: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								Es: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								Fr: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								It: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								Ja: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								Ko: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								PtBr: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								ZhTw: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
								ZhCn: &ibm.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs{
									Displayname: pulumi.String("displayname"),
									Description: pulumi.String("description"),
								},
							},
						},
					},
				},
				Deployment: &ibm.OnboardingCatalogDeploymentMetadataDeploymentArgs{
					Broker: &ibm.OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs{
						Name: pulumi.String("name"),
						Guid: pulumi.String("guid"),
					},
					Location:    pulumi.String("location"),
					LocationUrl: pulumi.String("location_url"),
					TargetCrn:   pulumi.String("target_crn"),
				},
			},
			ObjectProvider: &ibm.OnboardingCatalogDeploymentObjectProviderArgs{
				Name:  pulumi.String("name"),
				Email: pulumi.String("email"),
			},
			OverviewUi: &ibm.OnboardingCatalogDeploymentOverviewUiArgs{
				En: &ibm.OnboardingCatalogDeploymentOverviewUiEnArgs{
					DisplayName:     pulumi.String("display_name"),
					Description:     pulumi.String("description"),
					LongDescription: pulumi.String("long_description"),
				},
			},
			ProductId: pulumi.Any(ibm_onboarding_product.Onboarding_product_instance.Id),
		})
		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 onboardingCatalogDeploymentInstance = new Ibm.OnboardingCatalogDeployment("onboardingCatalogDeploymentInstance", new()
    {
        Active = true,
        CatalogPlanId = ibm_onboarding_catalog_plan.Onboarding_catalog_plan_instance.Onboarding_catalog_plan_id,
        CatalogProductId = ibm_onboarding_catalog_product.Onboarding_catalog_product_instance.Onboarding_catalog_product_id,
        Disabled = false,
        Kind = "deployment",
        Metadata = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataArgs
        {
            RcCompatible = true,
            Service = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceArgs
            {
                RcProvisionable = true,
                IamCompatible = true,
                ServiceKeySupported = true,
                Parameters = new[]
                {
                    new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterArgs
                    {
                        Displayname = "displayname",
                        Name = "name",
                        Type = "text",
                        Options = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs
                            {
                                Displayname = "displayname",
                                Value = "value",
                                I18n = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs
                                {
                                    En = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    De = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    Es = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    Fr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    It = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    Ja = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    Ko = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    PtBr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    ZhTw = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                    ZhCn = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs
                                    {
                                        Displayname = "displayname",
                                        Description = "description",
                                    },
                                },
                            },
                        },
                        Values = new[]
                        {
                            "value",
                        },
                        Layout = "layout",
                        Associations = 
                        {
                            { "key", "anything as a string" },
                        },
                        ValidationUrl = "validation_url",
                        OptionsUrl = "options_url",
                        Invalidmessage = "invalidmessage",
                        Description = "description",
                        Required = true,
                        Pattern = "pattern",
                        Placeholder = "placeholder",
                        Readonly = true,
                        Hidden = true,
                        I18n = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs
                        {
                            En = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            De = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            Es = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            Fr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            It = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            Ja = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            Ko = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            PtBr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            ZhTw = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                            ZhCn = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs
                            {
                                Displayname = "displayname",
                                Description = "description",
                            },
                        },
                    },
                },
            },
            Deployment = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataDeploymentArgs
            {
                Broker = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs
                {
                    Name = "name",
                    Guid = "guid",
                },
                Location = "location",
                LocationUrl = "location_url",
                TargetCrn = "target_crn",
            },
        },
        ObjectProvider = new Ibm.Inputs.OnboardingCatalogDeploymentObjectProviderArgs
        {
            Name = "name",
            Email = "email",
        },
        OverviewUi = new Ibm.Inputs.OnboardingCatalogDeploymentOverviewUiArgs
        {
            En = new Ibm.Inputs.OnboardingCatalogDeploymentOverviewUiEnArgs
            {
                DisplayName = "display_name",
                Description = "description",
                LongDescription = "long_description",
            },
        },
        ProductId = ibm_onboarding_product.Onboarding_product_instance.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.OnboardingCatalogDeployment;
import com.pulumi.ibm.OnboardingCatalogDeploymentArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentMetadataArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentMetadataServiceArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentMetadataDeploymentArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentObjectProviderArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentOverviewUiArgs;
import com.pulumi.ibm.inputs.OnboardingCatalogDeploymentOverviewUiEnArgs;
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 onboardingCatalogDeploymentInstance = new OnboardingCatalogDeployment("onboardingCatalogDeploymentInstance", OnboardingCatalogDeploymentArgs.builder()
            .active(true)
            .catalogPlanId(ibm_onboarding_catalog_plan.onboarding_catalog_plan_instance().onboarding_catalog_plan_id())
            .catalogProductId(ibm_onboarding_catalog_product.onboarding_catalog_product_instance().onboarding_catalog_product_id())
            .disabled(false)
            .kind("deployment")
            .metadata(OnboardingCatalogDeploymentMetadataArgs.builder()
                .rcCompatible(true)
                .service(OnboardingCatalogDeploymentMetadataServiceArgs.builder()
                    .rcProvisionable(true)
                    .iamCompatible(true)
                    .serviceKeySupported(true)
                    .parameters(OnboardingCatalogDeploymentMetadataServiceParameterArgs.builder()
                        .displayname("displayname")
                        .name("name")
                        .type("text")
                        .options(OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs.builder()
                            .displayname("displayname")
                            .value("value")
                            .i18n(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs.builder()
                                .en(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .de(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .es(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .fr(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .it(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .ja(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .ko(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .ptBr(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .zhTw(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .zhCn(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .build())
                            .build())
                        .values("value")
                        .layout("layout")
                        .associations(Map.of("key", "anything as a string"))
                        .validationUrl("validation_url")
                        .optionsUrl("options_url")
                        .invalidmessage("invalidmessage")
                        .description("description")
                        .required(true)
                        .pattern("pattern")
                        .placeholder("placeholder")
                        .readonly(true)
                        .hidden(true)
                        .i18n(OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs.builder()
                            .en(OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .de(OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .es(OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .fr(OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .it(OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .ja(OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .ko(OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .ptBr(OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .zhTw(OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .zhCn(OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs.builder()
                                .displayname("displayname")
                                .description("description")
                                .build())
                            .build())
                        .build())
                    .build())
                .deployment(OnboardingCatalogDeploymentMetadataDeploymentArgs.builder()
                    .broker(OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs.builder()
                        .name("name")
                        .guid("guid")
                        .build())
                    .location("location")
                    .locationUrl("location_url")
                    .targetCrn("target_crn")
                    .build())
                .build())
            .objectProvider(OnboardingCatalogDeploymentObjectProviderArgs.builder()
                .name("name")
                .email("email")
                .build())
            .overviewUi(OnboardingCatalogDeploymentOverviewUiArgs.builder()
                .en(OnboardingCatalogDeploymentOverviewUiEnArgs.builder()
                    .displayName("display_name")
                    .description("description")
                    .longDescription("long_description")
                    .build())
                .build())
            .productId(ibm_onboarding_product.onboarding_product_instance().id())
            .build());
    }
}
resources:
  onboardingCatalogDeploymentInstance:
    type: ibm:OnboardingCatalogDeployment
    properties:
      active: true
      catalogPlanId: ${ibm_onboarding_catalog_plan.onboarding_catalog_plan_instance.onboarding_catalog_plan_id}
      catalogProductId: ${ibm_onboarding_catalog_product.onboarding_catalog_product_instance.onboarding_catalog_product_id}
      disabled: false
      kind: deployment
      metadata:
        rcCompatible: true
        service:
          rcProvisionable: true
          iamCompatible: true
          serviceKeySupported: true
          parameters:
            - displayname: displayname
              name: name
              type: text
              options:
                - displayname: displayname
                  value: value
                  i18n:
                    en:
                      displayname: displayname
                      description: description
                    de:
                      displayname: displayname
                      description: description
                    es:
                      displayname: displayname
                      description: description
                    fr:
                      displayname: displayname
                      description: description
                    it:
                      displayname: displayname
                      description: description
                    ja:
                      displayname: displayname
                      description: description
                    ko:
                      displayname: displayname
                      description: description
                    ptBr:
                      displayname: displayname
                      description: description
                    zhTw:
                      displayname: displayname
                      description: description
                    zhCn:
                      displayname: displayname
                      description: description
              values:
                - value
              layout: layout
              associations:
                key: anything as a string
              validationUrl: validation_url
              optionsUrl: options_url
              invalidmessage: invalidmessage
              description: description
              required: true
              pattern: pattern
              placeholder: placeholder
              readonly: true
              hidden: true
              i18n:
                en:
                  displayname: displayname
                  description: description
                de:
                  displayname: displayname
                  description: description
                es:
                  displayname: displayname
                  description: description
                fr:
                  displayname: displayname
                  description: description
                it:
                  displayname: displayname
                  description: description
                ja:
                  displayname: displayname
                  description: description
                ko:
                  displayname: displayname
                  description: description
                ptBr:
                  displayname: displayname
                  description: description
                zhTw:
                  displayname: displayname
                  description: description
                zhCn:
                  displayname: displayname
                  description: description
        deployment:
          broker:
            name: name
            guid: guid
          location: location
          locationUrl: location_url
          targetCrn: target_crn
      objectProvider:
        name: name
        email: email
      overviewUi:
        en:
          displayName: display_name
          description: description
          longDescription: long_description
      productId: ${ibm_onboarding_product.onboarding_product_instance.id}
Create OnboardingCatalogDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OnboardingCatalogDeployment(name: string, args: OnboardingCatalogDeploymentArgs, opts?: CustomResourceOptions);@overload
def OnboardingCatalogDeployment(resource_name: str,
                                args: OnboardingCatalogDeploymentArgs,
                                opts: Optional[ResourceOptions] = None)
@overload
def OnboardingCatalogDeployment(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                object_provider: Optional[OnboardingCatalogDeploymentObjectProviderArgs] = None,
                                product_id: Optional[str] = None,
                                catalog_product_id: Optional[str] = None,
                                disabled: Optional[bool] = None,
                                active: Optional[bool] = None,
                                kind: Optional[str] = None,
                                catalog_plan_id: Optional[str] = None,
                                env: Optional[str] = None,
                                object_id: Optional[str] = None,
                                metadata: Optional[OnboardingCatalogDeploymentMetadataArgs] = None,
                                onboarding_catalog_deployment_id: Optional[str] = None,
                                overview_ui: Optional[OnboardingCatalogDeploymentOverviewUiArgs] = None,
                                name: Optional[str] = None,
                                tags: Optional[Sequence[str]] = None)func NewOnboardingCatalogDeployment(ctx *Context, name string, args OnboardingCatalogDeploymentArgs, opts ...ResourceOption) (*OnboardingCatalogDeployment, error)public OnboardingCatalogDeployment(string name, OnboardingCatalogDeploymentArgs args, CustomResourceOptions? opts = null)
public OnboardingCatalogDeployment(String name, OnboardingCatalogDeploymentArgs args)
public OnboardingCatalogDeployment(String name, OnboardingCatalogDeploymentArgs args, CustomResourceOptions options)
type: ibm:OnboardingCatalogDeployment
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 OnboardingCatalogDeploymentArgs
 - 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 OnboardingCatalogDeploymentArgs
 - 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 OnboardingCatalogDeploymentArgs
 - The arguments to resource properties.
 - opts ResourceOption
 - Bag of options to control resource's behavior.
 
- name string
 - The unique name of the resource.
 - args OnboardingCatalogDeploymentArgs
 - The arguments to resource properties.
 - opts CustomResourceOptions
 - Bag of options to control resource's behavior.
 
- name String
 - The unique name of the resource.
 - args OnboardingCatalogDeploymentArgs
 - 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 onboardingCatalogDeploymentResource = new Ibm.OnboardingCatalogDeployment("onboardingCatalogDeploymentResource", new()
{
    ObjectProvider = new Ibm.Inputs.OnboardingCatalogDeploymentObjectProviderArgs
    {
        Email = "string",
        Name = "string",
    },
    ProductId = "string",
    CatalogProductId = "string",
    Disabled = false,
    Active = false,
    Kind = "string",
    CatalogPlanId = "string",
    Env = "string",
    ObjectId = "string",
    Metadata = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataArgs
    {
        Deployment = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataDeploymentArgs
        {
            Broker = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs
            {
                Guid = "string",
                Name = "string",
            },
            Location = "string",
            LocationUrl = "string",
            TargetCrn = "string",
        },
        RcCompatible = false,
        Service = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceArgs
        {
            Bindable = false,
            IamCompatible = false,
            Parameters = new[]
            {
                new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterArgs
                {
                    Associations = 
                    {
                        { "string", "string" },
                    },
                    Description = "string",
                    Displayname = "string",
                    Hidden = false,
                    I18n = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs
                    {
                        De = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        En = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        Es = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        Fr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        It = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        Ja = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        Ko = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        PtBr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        ZhCn = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                        ZhTw = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs
                        {
                            Description = "string",
                            Displayname = "string",
                        },
                    },
                    Invalidmessage = "string",
                    Layout = "string",
                    Name = "string",
                    Options = new[]
                    {
                        new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs
                        {
                            Displayname = "string",
                            I18n = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs
                            {
                                De = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                En = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                Es = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                Fr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                It = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                Ja = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                Ko = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                PtBr = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                ZhCn = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                                ZhTw = new Ibm.Inputs.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs
                                {
                                    Description = "string",
                                    Displayname = "string",
                                },
                            },
                            Value = "string",
                        },
                    },
                    OptionsUrl = "string",
                    Pattern = "string",
                    Placeholder = "string",
                    Readonly = false,
                    Required = false,
                    Type = "string",
                    ValidationUrl = "string",
                    Values = new[]
                    {
                        "string",
                    },
                },
            },
            PlanUpdateable = false,
            RcProvisionable = false,
            ServiceKeySupported = false,
            UniqueApiKey = false,
        },
    },
    OnboardingCatalogDeploymentId = "string",
    OverviewUi = new Ibm.Inputs.OnboardingCatalogDeploymentOverviewUiArgs
    {
        En = new Ibm.Inputs.OnboardingCatalogDeploymentOverviewUiEnArgs
        {
            Description = "string",
            DisplayName = "string",
            LongDescription = "string",
        },
    },
    Name = "string",
    Tags = new[]
    {
        "string",
    },
});
example, err := ibm.NewOnboardingCatalogDeployment(ctx, "onboardingCatalogDeploymentResource", &ibm.OnboardingCatalogDeploymentArgs{
ObjectProvider: &.OnboardingCatalogDeploymentObjectProviderArgs{
Email: pulumi.String("string"),
Name: pulumi.String("string"),
},
ProductId: pulumi.String("string"),
CatalogProductId: pulumi.String("string"),
Disabled: pulumi.Bool(false),
Active: pulumi.Bool(false),
Kind: pulumi.String("string"),
CatalogPlanId: pulumi.String("string"),
Env: pulumi.String("string"),
ObjectId: pulumi.String("string"),
Metadata: &.OnboardingCatalogDeploymentMetadataArgs{
Deployment: &.OnboardingCatalogDeploymentMetadataDeploymentArgs{
Broker: &.OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs{
Guid: pulumi.String("string"),
Name: pulumi.String("string"),
},
Location: pulumi.String("string"),
LocationUrl: pulumi.String("string"),
TargetCrn: pulumi.String("string"),
},
RcCompatible: pulumi.Bool(false),
Service: &.OnboardingCatalogDeploymentMetadataServiceArgs{
Bindable: pulumi.Bool(false),
IamCompatible: pulumi.Bool(false),
Parameters: .OnboardingCatalogDeploymentMetadataServiceParameterArray{
&.OnboardingCatalogDeploymentMetadataServiceParameterArgs{
Associations: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
Hidden: pulumi.Bool(false),
I18n: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs{
De: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
En: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Es: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Fr: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
It: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Ja: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Ko: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
PtBr: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
ZhCn: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
ZhTw: &.OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
},
Invalidmessage: pulumi.String("string"),
Layout: pulumi.String("string"),
Name: pulumi.String("string"),
Options: .OnboardingCatalogDeploymentMetadataServiceParameterOptionArray{
&.OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs{
Displayname: pulumi.String("string"),
I18n: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs{
De: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
En: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Es: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Fr: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
It: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Ja: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
Ko: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
PtBr: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
ZhCn: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
ZhTw: &.OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs{
Description: pulumi.String("string"),
Displayname: pulumi.String("string"),
},
},
Value: pulumi.String("string"),
},
},
OptionsUrl: pulumi.String("string"),
Pattern: pulumi.String("string"),
Placeholder: pulumi.String("string"),
Readonly: pulumi.Bool(false),
Required: pulumi.Bool(false),
Type: pulumi.String("string"),
ValidationUrl: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
PlanUpdateable: pulumi.Bool(false),
RcProvisionable: pulumi.Bool(false),
ServiceKeySupported: pulumi.Bool(false),
UniqueApiKey: pulumi.Bool(false),
},
},
OnboardingCatalogDeploymentId: pulumi.String("string"),
OverviewUi: &.OnboardingCatalogDeploymentOverviewUiArgs{
En: &.OnboardingCatalogDeploymentOverviewUiEnArgs{
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
LongDescription: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var onboardingCatalogDeploymentResource = new OnboardingCatalogDeployment("onboardingCatalogDeploymentResource", OnboardingCatalogDeploymentArgs.builder()
    .objectProvider(OnboardingCatalogDeploymentObjectProviderArgs.builder()
        .email("string")
        .name("string")
        .build())
    .productId("string")
    .catalogProductId("string")
    .disabled(false)
    .active(false)
    .kind("string")
    .catalogPlanId("string")
    .env("string")
    .objectId("string")
    .metadata(OnboardingCatalogDeploymentMetadataArgs.builder()
        .deployment(OnboardingCatalogDeploymentMetadataDeploymentArgs.builder()
            .broker(OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs.builder()
                .guid("string")
                .name("string")
                .build())
            .location("string")
            .locationUrl("string")
            .targetCrn("string")
            .build())
        .rcCompatible(false)
        .service(OnboardingCatalogDeploymentMetadataServiceArgs.builder()
            .bindable(false)
            .iamCompatible(false)
            .parameters(OnboardingCatalogDeploymentMetadataServiceParameterArgs.builder()
                .associations(Map.of("string", "string"))
                .description("string")
                .displayname("string")
                .hidden(false)
                .i18n(OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs.builder()
                    .de(OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .en(OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .es(OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .fr(OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .it(OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .ja(OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .ko(OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .ptBr(OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .zhCn(OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .zhTw(OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs.builder()
                        .description("string")
                        .displayname("string")
                        .build())
                    .build())
                .invalidmessage("string")
                .layout("string")
                .name("string")
                .options(OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs.builder()
                    .displayname("string")
                    .i18n(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs.builder()
                        .de(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .en(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .es(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .fr(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .it(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .ja(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .ko(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .ptBr(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .zhCn(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .zhTw(OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .build())
                    .value("string")
                    .build())
                .optionsUrl("string")
                .pattern("string")
                .placeholder("string")
                .readonly(false)
                .required(false)
                .type("string")
                .validationUrl("string")
                .values("string")
                .build())
            .planUpdateable(false)
            .rcProvisionable(false)
            .serviceKeySupported(false)
            .uniqueApiKey(false)
            .build())
        .build())
    .onboardingCatalogDeploymentId("string")
    .overviewUi(OnboardingCatalogDeploymentOverviewUiArgs.builder()
        .en(OnboardingCatalogDeploymentOverviewUiEnArgs.builder()
            .description("string")
            .displayName("string")
            .longDescription("string")
            .build())
        .build())
    .name("string")
    .tags("string")
    .build());
onboarding_catalog_deployment_resource = ibm.OnboardingCatalogDeployment("onboardingCatalogDeploymentResource",
    object_provider={
        "email": "string",
        "name": "string",
    },
    product_id="string",
    catalog_product_id="string",
    disabled=False,
    active=False,
    kind="string",
    catalog_plan_id="string",
    env="string",
    object_id="string",
    metadata={
        "deployment": {
            "broker": {
                "guid": "string",
                "name": "string",
            },
            "location": "string",
            "location_url": "string",
            "target_crn": "string",
        },
        "rc_compatible": False,
        "service": {
            "bindable": False,
            "iam_compatible": False,
            "parameters": [{
                "associations": {
                    "string": "string",
                },
                "description": "string",
                "displayname": "string",
                "hidden": False,
                "i18n": {
                    "de": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "en": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "es": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "fr": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "it": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "ja": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "ko": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "pt_br": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "zh_cn": {
                        "description": "string",
                        "displayname": "string",
                    },
                    "zh_tw": {
                        "description": "string",
                        "displayname": "string",
                    },
                },
                "invalidmessage": "string",
                "layout": "string",
                "name": "string",
                "options": [{
                    "displayname": "string",
                    "i18n": {
                        "de": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "en": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "es": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "fr": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "it": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "ja": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "ko": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "pt_br": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "zh_cn": {
                            "description": "string",
                            "displayname": "string",
                        },
                        "zh_tw": {
                            "description": "string",
                            "displayname": "string",
                        },
                    },
                    "value": "string",
                }],
                "options_url": "string",
                "pattern": "string",
                "placeholder": "string",
                "readonly": False,
                "required": False,
                "type": "string",
                "validation_url": "string",
                "values": ["string"],
            }],
            "plan_updateable": False,
            "rc_provisionable": False,
            "service_key_supported": False,
            "unique_api_key": False,
        },
    },
    onboarding_catalog_deployment_id="string",
    overview_ui={
        "en": {
            "description": "string",
            "display_name": "string",
            "long_description": "string",
        },
    },
    name="string",
    tags=["string"])
const onboardingCatalogDeploymentResource = new ibm.OnboardingCatalogDeployment("onboardingCatalogDeploymentResource", {
    objectProvider: {
        email: "string",
        name: "string",
    },
    productId: "string",
    catalogProductId: "string",
    disabled: false,
    active: false,
    kind: "string",
    catalogPlanId: "string",
    env: "string",
    objectId: "string",
    metadata: {
        deployment: {
            broker: {
                guid: "string",
                name: "string",
            },
            location: "string",
            locationUrl: "string",
            targetCrn: "string",
        },
        rcCompatible: false,
        service: {
            bindable: false,
            iamCompatible: false,
            parameters: [{
                associations: {
                    string: "string",
                },
                description: "string",
                displayname: "string",
                hidden: false,
                i18n: {
                    de: {
                        description: "string",
                        displayname: "string",
                    },
                    en: {
                        description: "string",
                        displayname: "string",
                    },
                    es: {
                        description: "string",
                        displayname: "string",
                    },
                    fr: {
                        description: "string",
                        displayname: "string",
                    },
                    it: {
                        description: "string",
                        displayname: "string",
                    },
                    ja: {
                        description: "string",
                        displayname: "string",
                    },
                    ko: {
                        description: "string",
                        displayname: "string",
                    },
                    ptBr: {
                        description: "string",
                        displayname: "string",
                    },
                    zhCn: {
                        description: "string",
                        displayname: "string",
                    },
                    zhTw: {
                        description: "string",
                        displayname: "string",
                    },
                },
                invalidmessage: "string",
                layout: "string",
                name: "string",
                options: [{
                    displayname: "string",
                    i18n: {
                        de: {
                            description: "string",
                            displayname: "string",
                        },
                        en: {
                            description: "string",
                            displayname: "string",
                        },
                        es: {
                            description: "string",
                            displayname: "string",
                        },
                        fr: {
                            description: "string",
                            displayname: "string",
                        },
                        it: {
                            description: "string",
                            displayname: "string",
                        },
                        ja: {
                            description: "string",
                            displayname: "string",
                        },
                        ko: {
                            description: "string",
                            displayname: "string",
                        },
                        ptBr: {
                            description: "string",
                            displayname: "string",
                        },
                        zhCn: {
                            description: "string",
                            displayname: "string",
                        },
                        zhTw: {
                            description: "string",
                            displayname: "string",
                        },
                    },
                    value: "string",
                }],
                optionsUrl: "string",
                pattern: "string",
                placeholder: "string",
                readonly: false,
                required: false,
                type: "string",
                validationUrl: "string",
                values: ["string"],
            }],
            planUpdateable: false,
            rcProvisionable: false,
            serviceKeySupported: false,
            uniqueApiKey: false,
        },
    },
    onboardingCatalogDeploymentId: "string",
    overviewUi: {
        en: {
            description: "string",
            displayName: "string",
            longDescription: "string",
        },
    },
    name: "string",
    tags: ["string"],
});
type: ibm:OnboardingCatalogDeployment
properties:
    active: false
    catalogPlanId: string
    catalogProductId: string
    disabled: false
    env: string
    kind: string
    metadata:
        deployment:
            broker:
                guid: string
                name: string
            location: string
            locationUrl: string
            targetCrn: string
        rcCompatible: false
        service:
            bindable: false
            iamCompatible: false
            parameters:
                - associations:
                    string: string
                  description: string
                  displayname: string
                  hidden: false
                  i18n:
                    de:
                        description: string
                        displayname: string
                    en:
                        description: string
                        displayname: string
                    es:
                        description: string
                        displayname: string
                    fr:
                        description: string
                        displayname: string
                    it:
                        description: string
                        displayname: string
                    ja:
                        description: string
                        displayname: string
                    ko:
                        description: string
                        displayname: string
                    ptBr:
                        description: string
                        displayname: string
                    zhCn:
                        description: string
                        displayname: string
                    zhTw:
                        description: string
                        displayname: string
                  invalidmessage: string
                  layout: string
                  name: string
                  options:
                    - displayname: string
                      i18n:
                        de:
                            description: string
                            displayname: string
                        en:
                            description: string
                            displayname: string
                        es:
                            description: string
                            displayname: string
                        fr:
                            description: string
                            displayname: string
                        it:
                            description: string
                            displayname: string
                        ja:
                            description: string
                            displayname: string
                        ko:
                            description: string
                            displayname: string
                        ptBr:
                            description: string
                            displayname: string
                        zhCn:
                            description: string
                            displayname: string
                        zhTw:
                            description: string
                            displayname: string
                      value: string
                  optionsUrl: string
                  pattern: string
                  placeholder: string
                  readonly: false
                  required: false
                  type: string
                  validationUrl: string
                  values:
                    - string
            planUpdateable: false
            rcProvisionable: false
            serviceKeySupported: false
            uniqueApiKey: false
    name: string
    objectId: string
    objectProvider:
        email: string
        name: string
    onboardingCatalogDeploymentId: string
    overviewUi:
        en:
            description: string
            displayName: string
            longDescription: string
    productId: string
    tags:
        - string
OnboardingCatalogDeployment 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 OnboardingCatalogDeployment resource accepts the following input properties:
- Active bool
 - Whether the service is active.
 - Catalog
Plan stringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Catalog
Product stringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Disabled bool
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - Kind string
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - Object
Provider OnboardingCatalog Deployment Object Provider  - The provider or owner of the product. Nested schema for object_provider:
 - Product
Id string - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - Env string
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - Metadata
Onboarding
Catalog Deployment Metadata  - Global catalog deployment metadata. Nested schema for metadata:
 - Name string
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Object
Id string - The desired ID of the global catalog object.
 - Onboarding
Catalog stringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - Overview
Ui OnboardingCatalog Deployment Overview Ui  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - List<string>
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 
- Active bool
 - Whether the service is active.
 - Catalog
Plan stringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Catalog
Product stringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Disabled bool
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - Kind string
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - Object
Provider OnboardingCatalog Deployment Object Provider Args  - The provider or owner of the product. Nested schema for object_provider:
 - Product
Id string - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - Env string
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - Metadata
Onboarding
Catalog Deployment Metadata Args  - Global catalog deployment metadata. Nested schema for metadata:
 - Name string
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Object
Id string - The desired ID of the global catalog object.
 - Onboarding
Catalog stringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - Overview
Ui OnboardingCatalog Deployment Overview Ui Args  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - []string
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 
- active Boolean
 - Whether the service is active.
 - catalog
Plan StringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog
Product StringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled Boolean
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - kind String
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - object
Provider OnboardingCatalog Deployment Object Provider  - The provider or owner of the product. Nested schema for object_provider:
 - product
Id String - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - env String
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - metadata
Onboarding
Catalog Deployment Metadata  - Global catalog deployment metadata. Nested schema for metadata:
 - name String
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object
Id String - The desired ID of the global catalog object.
 - onboarding
Catalog StringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - overview
Ui OnboardingCatalog Deployment Overview Ui  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - List<String>
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 
- active boolean
 - Whether the service is active.
 - catalog
Plan stringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog
Product stringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled boolean
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - kind string
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - object
Provider OnboardingCatalog Deployment Object Provider  - The provider or owner of the product. Nested schema for object_provider:
 - product
Id string - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - env string
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - metadata
Onboarding
Catalog Deployment Metadata  - Global catalog deployment metadata. Nested schema for metadata:
 - name string
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object
Id string - The desired ID of the global catalog object.
 - onboarding
Catalog stringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - overview
Ui OnboardingCatalog Deployment Overview Ui  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - string[]
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 
- active bool
 - Whether the service is active.
 - catalog_
plan_ strid  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog_
product_ strid  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled bool
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - kind str
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - object_
provider OnboardingCatalog Deployment Object Provider Args  - The provider or owner of the product. Nested schema for object_provider:
 - product_
id str - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - env str
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - metadata
Onboarding
Catalog Deployment Metadata Args  - Global catalog deployment metadata. Nested schema for metadata:
 - name str
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object_
id str - The desired ID of the global catalog object.
 - onboarding_
catalog_ strdeployment_ id  - The unique identifier of the onboarding_catalog_deployment.
 - overview_
ui OnboardingCatalog Deployment Overview Ui Args  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - Sequence[str]
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 
- active Boolean
 - Whether the service is active.
 - catalog
Plan StringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog
Product StringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled Boolean
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - kind String
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - object
Provider Property Map - The provider or owner of the product. Nested schema for object_provider:
 - product
Id String - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - env String
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - metadata Property Map
 - Global catalog deployment metadata. Nested schema for metadata:
 - name String
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object
Id String - The desired ID of the global catalog object.
 - onboarding
Catalog StringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - overview
Ui Property Map - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - List<String>
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 
Outputs
All input properties are implicitly available as output properties. Additionally, the OnboardingCatalogDeployment resource produces the following output properties:
- Catalog
Deployment stringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - List<string>
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Url string
 - (String) The global catalog URL of your product.
 
- Catalog
Deployment stringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - []string
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Url string
 - (String) The global catalog URL of your product.
 
- catalog
Deployment StringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - List<String>
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - id String
 - The provider-assigned unique ID for this managed resource.
 - url String
 - (String) The global catalog URL of your product.
 
- catalog
Deployment stringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - string[]
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - id string
 - The provider-assigned unique ID for this managed resource.
 - url string
 - (String) The global catalog URL of your product.
 
- catalog_
deployment_ strid  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Sequence[str]
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - id str
 - The provider-assigned unique ID for this managed resource.
 - url str
 - (String) The global catalog URL of your product.
 
- catalog
Deployment StringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - List<String>
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - id String
 - The provider-assigned unique ID for this managed resource.
 - url String
 - (String) The global catalog URL of your product.
 
Look up Existing OnboardingCatalogDeployment Resource
Get an existing OnboardingCatalogDeployment 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?: OnboardingCatalogDeploymentState, opts?: CustomResourceOptions): OnboardingCatalogDeployment@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        active: Optional[bool] = None,
        catalog_deployment_id: Optional[str] = None,
        catalog_plan_id: Optional[str] = None,
        catalog_product_id: Optional[str] = None,
        disabled: Optional[bool] = None,
        env: Optional[str] = None,
        geo_tags: Optional[Sequence[str]] = None,
        kind: Optional[str] = None,
        metadata: Optional[OnboardingCatalogDeploymentMetadataArgs] = None,
        name: Optional[str] = None,
        object_id: Optional[str] = None,
        object_provider: Optional[OnboardingCatalogDeploymentObjectProviderArgs] = None,
        onboarding_catalog_deployment_id: Optional[str] = None,
        overview_ui: Optional[OnboardingCatalogDeploymentOverviewUiArgs] = None,
        product_id: Optional[str] = None,
        tags: Optional[Sequence[str]] = None,
        url: Optional[str] = None) -> OnboardingCatalogDeploymentfunc GetOnboardingCatalogDeployment(ctx *Context, name string, id IDInput, state *OnboardingCatalogDeploymentState, opts ...ResourceOption) (*OnboardingCatalogDeployment, error)public static OnboardingCatalogDeployment Get(string name, Input<string> id, OnboardingCatalogDeploymentState? state, CustomResourceOptions? opts = null)public static OnboardingCatalogDeployment get(String name, Output<String> id, OnboardingCatalogDeploymentState state, CustomResourceOptions options)resources:  _:    type: ibm:OnboardingCatalogDeployment    get:      id: ${id}- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- resource_name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 
- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- Active bool
 - Whether the service is active.
 - Catalog
Deployment stringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Catalog
Plan stringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Catalog
Product stringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Disabled bool
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - Env string
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - List<string>
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - Kind string
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - Metadata
Onboarding
Catalog Deployment Metadata  - Global catalog deployment metadata. Nested schema for metadata:
 - Name string
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Object
Id string - The desired ID of the global catalog object.
 - Object
Provider OnboardingCatalog Deployment Object Provider  - The provider or owner of the product. Nested schema for object_provider:
 - Onboarding
Catalog stringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - Overview
Ui OnboardingCatalog Deployment Overview Ui  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - Product
Id string - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - List<string>
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - Url string
 - (String) The global catalog URL of your product.
 
- Active bool
 - Whether the service is active.
 - Catalog
Deployment stringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Catalog
Plan stringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Catalog
Product stringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - Disabled bool
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - Env string
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - []string
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - Kind string
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - Metadata
Onboarding
Catalog Deployment Metadata Args  - Global catalog deployment metadata. Nested schema for metadata:
 - Name string
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - Object
Id string - The desired ID of the global catalog object.
 - Object
Provider OnboardingCatalog Deployment Object Provider Args  - The provider or owner of the product. Nested schema for object_provider:
 - Onboarding
Catalog stringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - Overview
Ui OnboardingCatalog Deployment Overview Ui Args  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - Product
Id string - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - []string
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - Url string
 - (String) The global catalog URL of your product.
 
- active Boolean
 - Whether the service is active.
 - catalog
Deployment StringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - catalog
Plan StringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog
Product StringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled Boolean
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - env String
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - List<String>
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - kind String
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - metadata
Onboarding
Catalog Deployment Metadata  - Global catalog deployment metadata. Nested schema for metadata:
 - name String
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object
Id String - The desired ID of the global catalog object.
 - object
Provider OnboardingCatalog Deployment Object Provider  - The provider or owner of the product. Nested schema for object_provider:
 - onboarding
Catalog StringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - overview
Ui OnboardingCatalog Deployment Overview Ui  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - product
Id String - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - List<String>
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - url String
 - (String) The global catalog URL of your product.
 
- active boolean
 - Whether the service is active.
 - catalog
Deployment stringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - catalog
Plan stringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog
Product stringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled boolean
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - env string
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - string[]
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - kind string
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - metadata
Onboarding
Catalog Deployment Metadata  - Global catalog deployment metadata. Nested schema for metadata:
 - name string
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object
Id string - The desired ID of the global catalog object.
 - object
Provider OnboardingCatalog Deployment Object Provider  - The provider or owner of the product. Nested schema for object_provider:
 - onboarding
Catalog stringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - overview
Ui OnboardingCatalog Deployment Overview Ui  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - product
Id string - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - string[]
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - url string
 - (String) The global catalog URL of your product.
 
- active bool
 - Whether the service is active.
 - catalog_
deployment_ strid  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - catalog_
plan_ strid  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog_
product_ strid  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled bool
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - env str
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - Sequence[str]
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - kind str
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - metadata
Onboarding
Catalog Deployment Metadata Args  - Global catalog deployment metadata. Nested schema for metadata:
 - name str
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object_
id str - The desired ID of the global catalog object.
 - object_
provider OnboardingCatalog Deployment Object Provider Args  - The provider or owner of the product. Nested schema for object_provider:
 - onboarding_
catalog_ strdeployment_ id  - The unique identifier of the onboarding_catalog_deployment.
 - overview_
ui OnboardingCatalog Deployment Overview Ui Args  - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - product_
id str - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - Sequence[str]
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - url str
 - (String) The global catalog URL of your product.
 
- active Boolean
 - Whether the service is active.
 - catalog
Deployment StringId  - (String) The ID of a global catalog object.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - catalog
Plan StringId  - The unique ID of this global catalog plan.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - catalog
Product StringId  - The unique ID of this global catalog product.
- Constraints: The maximum length is 
128characters. The minimum length is1character. The value must match regular expression/^\\S*$/. 
 - Constraints: The maximum length is 
 - disabled Boolean
 - Determines the global visibility for the catalog entry, and its children. If it is not enabled, all plans are disabled.
 - env String
 - The environment to fetch this object from.
- Constraints: The maximum length is 
64characters. The minimum length is1character. The value must match regular expression/^[a-z_.-]+$/. 
 - Constraints: The maximum length is 
 - List<String>
 - (List)
- Constraints: The list items must match regular expression 
/./. The maximum length is1000items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - kind String
 - The kind of the global catalog object.
- Constraints: Allowable values are: 
deployment. 
 - Constraints: Allowable values are: 
 - metadata Property Map
 - Global catalog deployment metadata. Nested schema for metadata:
 - name String
 - The programmatic name of this deployment.
- Constraints: The value must match regular expression 
/^\\S*$/. 
 - Constraints: The value must match regular expression 
 - object
Id String - The desired ID of the global catalog object.
 - object
Provider Property Map - The provider or owner of the product. Nested schema for object_provider:
 - onboarding
Catalog StringDeployment Id  - The unique identifier of the onboarding_catalog_deployment.
 - overview
Ui Property Map - The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
 - product
Id String - The unique ID of the product.
- Constraints: The maximum length is 
71characters. The minimum length is71characters. The value must match regular expression/^[a-zA-Z0-9]{32}:o:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/. 
 - Constraints: The maximum length is 
 - List<String>
 - A list of tags that carry information about your product. These tags can be used to find your product in the IBM Cloud catalog.
- Constraints: The list items must match regular expression 
/^[a-z0-9\\-._]+$/. The maximum length is100items. The minimum length is0items. 
 - Constraints: The list items must match regular expression 
 - url String
 - (String) The global catalog URL of your product.
 
Supporting Types
OnboardingCatalogDeploymentMetadata, OnboardingCatalogDeploymentMetadataArgs        
- Deployment
Onboarding
Catalog Deployment Metadata Deployment  - The global catalog metadata of the deployment. Nested schema for deployment:
 - Rc
Compatible bool - Whether the object is compatible with the resource controller service.
 - Service
Onboarding
Catalog Deployment Metadata Service  - The global catalog metadata of the service. Nested schema for service:
 
- Deployment
Onboarding
Catalog Deployment Metadata Deployment  - The global catalog metadata of the deployment. Nested schema for deployment:
 - Rc
Compatible bool - Whether the object is compatible with the resource controller service.
 - Service
Onboarding
Catalog Deployment Metadata Service  - The global catalog metadata of the service. Nested schema for service:
 
- deployment
Onboarding
Catalog Deployment Metadata Deployment  - The global catalog metadata of the deployment. Nested schema for deployment:
 - rc
Compatible Boolean - Whether the object is compatible with the resource controller service.
 - service
Onboarding
Catalog Deployment Metadata Service  - The global catalog metadata of the service. Nested schema for service:
 
- deployment
Onboarding
Catalog Deployment Metadata Deployment  - The global catalog metadata of the deployment. Nested schema for deployment:
 - rc
Compatible boolean - Whether the object is compatible with the resource controller service.
 - service
Onboarding
Catalog Deployment Metadata Service  - The global catalog metadata of the service. Nested schema for service:
 
- deployment
Onboarding
Catalog Deployment Metadata Deployment  - The global catalog metadata of the deployment. Nested schema for deployment:
 - rc_
compatible bool - Whether the object is compatible with the resource controller service.
 - service
Onboarding
Catalog Deployment Metadata Service  - The global catalog metadata of the service. Nested schema for service:
 
- deployment Property Map
 - The global catalog metadata of the deployment. Nested schema for deployment:
 - rc
Compatible Boolean - Whether the object is compatible with the resource controller service.
 - service Property Map
 - The global catalog metadata of the service. Nested schema for service:
 
OnboardingCatalogDeploymentMetadataDeployment, OnboardingCatalogDeploymentMetadataDeploymentArgs          
- Broker
Onboarding
Catalog Deployment Metadata Deployment Broker  - The broker data connected to the deployment. Nested schema for broker:
 - Location string
 - The global catalog deployment location.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Location
Url string - The global catalog deployment URL of location.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - Target
Crn string - Region crn.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- Broker
Onboarding
Catalog Deployment Metadata Deployment Broker  - The broker data connected to the deployment. Nested schema for broker:
 - Location string
 - The global catalog deployment location.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Location
Url string - The global catalog deployment URL of location.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - Target
Crn string - Region crn.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- broker
Onboarding
Catalog Deployment Metadata Deployment Broker  - The broker data connected to the deployment. Nested schema for broker:
 - location String
 - The global catalog deployment location.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - location
Url String - The global catalog deployment URL of location.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - target
Crn String - Region crn.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- broker
Onboarding
Catalog Deployment Metadata Deployment Broker  - The broker data connected to the deployment. Nested schema for broker:
 - location string
 - The global catalog deployment location.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - location
Url string - The global catalog deployment URL of location.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - target
Crn string - Region crn.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- broker
Onboarding
Catalog Deployment Metadata Deployment Broker  - The broker data connected to the deployment. Nested schema for broker:
 - location str
 - The global catalog deployment location.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - location_
url str - The global catalog deployment URL of location.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - target_
crn str - Region crn.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- broker Property Map
 - The broker data connected to the deployment. Nested schema for broker:
 - location String
 - The global catalog deployment location.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - location
Url String - The global catalog deployment URL of location.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - target
Crn String - Region crn.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataDeploymentBroker, OnboardingCatalogDeploymentMetadataDeploymentBrokerArgs            
- Guid string
 - Crn or guid of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Name string
 - The name of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- Guid string
 - Crn or guid of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Name string
 - The name of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- guid String
 - Crn or guid of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name String
 - The name of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- guid string
 - Crn or guid of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name string
 - The name of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- guid str
 - Crn or guid of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name str
 - The name of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
- guid String
 - Crn or guid of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name String
 - The name of the resource broker.
- Constraints: The maximum length is 
2000characters. The minimum length is2characters. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataService, OnboardingCatalogDeploymentMetadataServiceArgs          
- Bindable bool
 - Deprecated. Controls the Connections tab on the Resource Details page.
 - Iam
Compatible bool - Whether the service is compatible with the IAM service.
 - Parameters
List<Onboarding
Catalog Deployment Metadata Service Parameter>  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for parameters: 
- Constraints: The maximum length is 
 - Plan
Updateable bool - Indicates plan update support and controls the Plan tab on the Resource Details page.
 - Rc
Provisionable bool - Whether the service is provisionable by the resource controller service.
 - Service
Key boolSupported  - Indicates service credentials support and controls the Service Credential tab on Resource Details page.
 - Unique
Api boolKey  - Indicates whether the deployment uses a unique API key or not.
 
- Bindable bool
 - Deprecated. Controls the Connections tab on the Resource Details page.
 - Iam
Compatible bool - Whether the service is compatible with the IAM service.
 - Parameters
[]Onboarding
Catalog Deployment Metadata Service Parameter  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for parameters: 
- Constraints: The maximum length is 
 - Plan
Updateable bool - Indicates plan update support and controls the Plan tab on the Resource Details page.
 - Rc
Provisionable bool - Whether the service is provisionable by the resource controller service.
 - Service
Key boolSupported  - Indicates service credentials support and controls the Service Credential tab on Resource Details page.
 - Unique
Api boolKey  - Indicates whether the deployment uses a unique API key or not.
 
- bindable Boolean
 - Deprecated. Controls the Connections tab on the Resource Details page.
 - iam
Compatible Boolean - Whether the service is compatible with the IAM service.
 - parameters
List<Onboarding
Catalog Deployment Metadata Service Parameter>  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for parameters: 
- Constraints: The maximum length is 
 - plan
Updateable Boolean - Indicates plan update support and controls the Plan tab on the Resource Details page.
 - rc
Provisionable Boolean - Whether the service is provisionable by the resource controller service.
 - service
Key BooleanSupported  - Indicates service credentials support and controls the Service Credential tab on Resource Details page.
 - unique
Api BooleanKey  - Indicates whether the deployment uses a unique API key or not.
 
- bindable boolean
 - Deprecated. Controls the Connections tab on the Resource Details page.
 - iam
Compatible boolean - Whether the service is compatible with the IAM service.
 - parameters
Onboarding
Catalog Deployment Metadata Service Parameter[]  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for parameters: 
- Constraints: The maximum length is 
 - plan
Updateable boolean - Indicates plan update support and controls the Plan tab on the Resource Details page.
 - rc
Provisionable boolean - Whether the service is provisionable by the resource controller service.
 - service
Key booleanSupported  - Indicates service credentials support and controls the Service Credential tab on Resource Details page.
 - unique
Api booleanKey  - Indicates whether the deployment uses a unique API key or not.
 
- bindable bool
 - Deprecated. Controls the Connections tab on the Resource Details page.
 - iam_
compatible bool - Whether the service is compatible with the IAM service.
 - parameters
Sequence[Onboarding
Catalog Deployment Metadata Service Parameter]  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for parameters: 
- Constraints: The maximum length is 
 - plan_
updateable bool - Indicates plan update support and controls the Plan tab on the Resource Details page.
 - rc_
provisionable bool - Whether the service is provisionable by the resource controller service.
 - service_
key_ boolsupported  - Indicates service credentials support and controls the Service Credential tab on Resource Details page.
 - unique_
api_ boolkey  - Indicates whether the deployment uses a unique API key or not.
 
- bindable Boolean
 - Deprecated. Controls the Connections tab on the Resource Details page.
 - iam
Compatible Boolean - Whether the service is compatible with the IAM service.
 - parameters List<Property Map>
 - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for parameters: 
- Constraints: The maximum length is 
 - plan
Updateable Boolean - Indicates plan update support and controls the Plan tab on the Resource Details page.
 - rc
Provisionable Boolean - Whether the service is provisionable by the resource controller service.
 - service
Key BooleanSupported  - Indicates service credentials support and controls the Service Credential tab on Resource Details page.
 - unique
Api BooleanKey  - Indicates whether the deployment uses a unique API key or not.
 
OnboardingCatalogDeploymentMetadataServiceParameter, OnboardingCatalogDeploymentMetadataServiceParameterArgs            
- Associations Dictionary<string, string>
 - A JSON structure to describe the interactions with pricing plans and/or other custom parameters.
 - Description string
 - The description of the parameter that is displayed to help users with the value of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Displayname string
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - bool
 - Indicates whether the custom parameters is hidden required or not.
 - I18n
Onboarding
Catalog Deployment Metadata Service Parameter I18n  - The description for the object. Nested schema for i18n:
 - Invalidmessage string
 - The message that appears when the content of the text box is invalid.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Layout string
 - Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Name string
 - The key of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Options
List<Onboarding
Catalog Deployment Metadata Service Parameter Option>  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for options: 
- Constraints: The maximum length is 
 - Options
Url string - The options URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - Pattern string
 - A regular expression that the value is checked against.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Placeholder string
 - The placeholder text for custom parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Readonly bool
 - A boolean value that indicates whether the value of the parameter is displayed only and cannot be changed by users. The default value is false.
 - Required bool
 - A boolean value that indicates whether the parameter must be entered in the IBM Cloud user interface.
 - Type string
 - The type of custom service parameters.
- Constraints: Allowable values are: 
text,textarea,dropdown,number,password,combo,checkbox,radio,multiselect,resource_group,vcenter_datastore,region,secret,cluster_namespace. 
 - Constraints: Allowable values are: 
 - Validation
Url string - The validation URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - Values List<string>
 - Constraints: The list items must match regular expression 
/^[ -~\\s]*$/. The maximum length is1000items. The minimum length is0items. 
- Constraints: The list items must match regular expression 
 
- Associations map[string]string
 - A JSON structure to describe the interactions with pricing plans and/or other custom parameters.
 - Description string
 - The description of the parameter that is displayed to help users with the value of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Displayname string
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - bool
 - Indicates whether the custom parameters is hidden required or not.
 - I18n
Onboarding
Catalog Deployment Metadata Service Parameter I18n  - The description for the object. Nested schema for i18n:
 - Invalidmessage string
 - The message that appears when the content of the text box is invalid.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Layout string
 - Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Name string
 - The key of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Options
[]Onboarding
Catalog Deployment Metadata Service Parameter Option  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for options: 
- Constraints: The maximum length is 
 - Options
Url string - The options URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - Pattern string
 - A regular expression that the value is checked against.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Placeholder string
 - The placeholder text for custom parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Readonly bool
 - A boolean value that indicates whether the value of the parameter is displayed only and cannot be changed by users. The default value is false.
 - Required bool
 - A boolean value that indicates whether the parameter must be entered in the IBM Cloud user interface.
 - Type string
 - The type of custom service parameters.
- Constraints: Allowable values are: 
text,textarea,dropdown,number,password,combo,checkbox,radio,multiselect,resource_group,vcenter_datastore,region,secret,cluster_namespace. 
 - Constraints: Allowable values are: 
 - Validation
Url string - The validation URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - Values []string
 - Constraints: The list items must match regular expression 
/^[ -~\\s]*$/. The maximum length is1000items. The minimum length is0items. 
- Constraints: The list items must match regular expression 
 
- associations Map<String,String>
 - A JSON structure to describe the interactions with pricing plans and/or other custom parameters.
 - description String
 - The description of the parameter that is displayed to help users with the value of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - displayname String
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Boolean
 - Indicates whether the custom parameters is hidden required or not.
 - i18n
Onboarding
Catalog Deployment Metadata Service Parameter I18n  - The description for the object. Nested schema for i18n:
 - invalidmessage String
 - The message that appears when the content of the text box is invalid.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - layout String
 - Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name String
 - The key of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - options
List<Onboarding
Catalog Deployment Metadata Service Parameter Option>  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for options: 
- Constraints: The maximum length is 
 - options
Url String - The options URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - pattern String
 - A regular expression that the value is checked against.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - placeholder String
 - The placeholder text for custom parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - readonly Boolean
 - A boolean value that indicates whether the value of the parameter is displayed only and cannot be changed by users. The default value is false.
 - required Boolean
 - A boolean value that indicates whether the parameter must be entered in the IBM Cloud user interface.
 - type String
 - The type of custom service parameters.
- Constraints: Allowable values are: 
text,textarea,dropdown,number,password,combo,checkbox,radio,multiselect,resource_group,vcenter_datastore,region,secret,cluster_namespace. 
 - Constraints: Allowable values are: 
 - validation
Url String - The validation URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - values List<String>
 - Constraints: The list items must match regular expression 
/^[ -~\\s]*$/. The maximum length is1000items. The minimum length is0items. 
- Constraints: The list items must match regular expression 
 
- associations {[key: string]: string}
 - A JSON structure to describe the interactions with pricing plans and/or other custom parameters.
 - description string
 - The description of the parameter that is displayed to help users with the value of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - displayname string
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - boolean
 - Indicates whether the custom parameters is hidden required or not.
 - i18n
Onboarding
Catalog Deployment Metadata Service Parameter I18n  - The description for the object. Nested schema for i18n:
 - invalidmessage string
 - The message that appears when the content of the text box is invalid.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - layout string
 - Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name string
 - The key of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - options
Onboarding
Catalog Deployment Metadata Service Parameter Option[]  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for options: 
- Constraints: The maximum length is 
 - options
Url string - The options URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - pattern string
 - A regular expression that the value is checked against.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - placeholder string
 - The placeholder text for custom parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - readonly boolean
 - A boolean value that indicates whether the value of the parameter is displayed only and cannot be changed by users. The default value is false.
 - required boolean
 - A boolean value that indicates whether the parameter must be entered in the IBM Cloud user interface.
 - type string
 - The type of custom service parameters.
- Constraints: Allowable values are: 
text,textarea,dropdown,number,password,combo,checkbox,radio,multiselect,resource_group,vcenter_datastore,region,secret,cluster_namespace. 
 - Constraints: Allowable values are: 
 - validation
Url string - The validation URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - values string[]
 - Constraints: The list items must match regular expression 
/^[ -~\\s]*$/. The maximum length is1000items. The minimum length is0items. 
- Constraints: The list items must match regular expression 
 
- associations Mapping[str, str]
 - A JSON structure to describe the interactions with pricing plans and/or other custom parameters.
 - description str
 - The description of the parameter that is displayed to help users with the value of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - displayname str
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - bool
 - Indicates whether the custom parameters is hidden required or not.
 - i18n
Onboarding
Catalog Deployment Metadata Service Parameter I18n  - The description for the object. Nested schema for i18n:
 - invalidmessage str
 - The message that appears when the content of the text box is invalid.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - layout str
 - Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name str
 - The key of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - options
Sequence[Onboarding
Catalog Deployment Metadata Service Parameter Option]  - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for options: 
- Constraints: The maximum length is 
 - options_
url str - The options URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - pattern str
 - A regular expression that the value is checked against.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - placeholder str
 - The placeholder text for custom parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - readonly bool
 - A boolean value that indicates whether the value of the parameter is displayed only and cannot be changed by users. The default value is false.
 - required bool
 - A boolean value that indicates whether the parameter must be entered in the IBM Cloud user interface.
 - type str
 - The type of custom service parameters.
- Constraints: Allowable values are: 
text,textarea,dropdown,number,password,combo,checkbox,radio,multiselect,resource_group,vcenter_datastore,region,secret,cluster_namespace. 
 - Constraints: Allowable values are: 
 - validation_
url str - The validation URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - values Sequence[str]
 - Constraints: The list items must match regular expression 
/^[ -~\\s]*$/. The maximum length is1000items. The minimum length is0items. 
- Constraints: The list items must match regular expression 
 
- associations Map<String>
 - A JSON structure to describe the interactions with pricing plans and/or other custom parameters.
 - description String
 - The description of the parameter that is displayed to help users with the value of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - displayname String
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - Boolean
 - Indicates whether the custom parameters is hidden required or not.
 - i18n Property Map
 - The description for the object. Nested schema for i18n:
 - invalidmessage String
 - The message that appears when the content of the text box is invalid.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - layout String
 - Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - name String
 - The key of the parameter.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - options List<Property Map>
 - Constraints: The maximum length is 
1000items. The minimum length is0items. Nested schema for options: 
- Constraints: The maximum length is 
 - options
Url String - The options URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - pattern String
 - A regular expression that the value is checked against.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - placeholder String
 - The placeholder text for custom parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - readonly Boolean
 - A boolean value that indicates whether the value of the parameter is displayed only and cannot be changed by users. The default value is false.
 - required Boolean
 - A boolean value that indicates whether the parameter must be entered in the IBM Cloud user interface.
 - type String
 - The type of custom service parameters.
- Constraints: Allowable values are: 
text,textarea,dropdown,number,password,combo,checkbox,radio,multiselect,resource_group,vcenter_datastore,region,secret,cluster_namespace. 
 - Constraints: Allowable values are: 
 - validation
Url String - The validation URL for custom service parameters.
- Constraints: The maximum length is 
2083characters. The minimum length is1character. The value must match regular expression/^(?!mailto:)(?:(?:http|https|ftp):\/\/)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(\/|\\?|#)[^\\s]*)?$/. 
 - Constraints: The maximum length is 
 - values List<String>
 - Constraints: The list items must match regular expression 
/^[ -~\\s]*$/. The maximum length is1000items. The minimum length is0items. 
- Constraints: The list items must match regular expression 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18n, OnboardingCatalogDeploymentMetadataServiceParameterI18nArgs              
- De
Onboarding
Catalog Deployment Metadata Service Parameter I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - En
Onboarding
Catalog Deployment Metadata Service Parameter I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - Es
Onboarding
Catalog Deployment Metadata Service Parameter I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - Fr
Onboarding
Catalog Deployment Metadata Service Parameter I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - It
Onboarding
Catalog Deployment Metadata Service Parameter I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - Ja
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - Ko
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - Pt
Br OnboardingCatalog Deployment Metadata Service Parameter I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - Zh
Cn OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - Zh
Tw OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- De
Onboarding
Catalog Deployment Metadata Service Parameter I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - En
Onboarding
Catalog Deployment Metadata Service Parameter I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - Es
Onboarding
Catalog Deployment Metadata Service Parameter I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - Fr
Onboarding
Catalog Deployment Metadata Service Parameter I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - It
Onboarding
Catalog Deployment Metadata Service Parameter I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - Ja
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - Ko
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - Pt
Br OnboardingCatalog Deployment Metadata Service Parameter I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - Zh
Cn OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - Zh
Tw OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de
Onboarding
Catalog Deployment Metadata Service Parameter I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - en
Onboarding
Catalog Deployment Metadata Service Parameter I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - es
Onboarding
Catalog Deployment Metadata Service Parameter I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - fr
Onboarding
Catalog Deployment Metadata Service Parameter I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - it
Onboarding
Catalog Deployment Metadata Service Parameter I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - ja
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt
Br OnboardingCatalog Deployment Metadata Service Parameter I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh
Cn OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh
Tw OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de
Onboarding
Catalog Deployment Metadata Service Parameter I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - en
Onboarding
Catalog Deployment Metadata Service Parameter I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - es
Onboarding
Catalog Deployment Metadata Service Parameter I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - fr
Onboarding
Catalog Deployment Metadata Service Parameter I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - it
Onboarding
Catalog Deployment Metadata Service Parameter I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - ja
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt
Br OnboardingCatalog Deployment Metadata Service Parameter I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh
Cn OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh
Tw OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de
Onboarding
Catalog Deployment Metadata Service Parameter I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - en
Onboarding
Catalog Deployment Metadata Service Parameter I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - es
Onboarding
Catalog Deployment Metadata Service Parameter I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - fr
Onboarding
Catalog Deployment Metadata Service Parameter I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - it
Onboarding
Catalog Deployment Metadata Service Parameter I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - ja
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko
Onboarding
Catalog Deployment Metadata Service Parameter I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt_
br OnboardingCatalog Deployment Metadata Service Parameter I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh_
cn OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh_
tw OnboardingCatalog Deployment Metadata Service Parameter I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de Property Map
 - The translations for custom service parameter display name and description. Nested schema for de:
 - en Property Map
 - The translations for custom service parameter display name and description. Nested schema for en:
 - es Property Map
 - The translations for custom service parameter display name and description. Nested schema for es:
 - fr Property Map
 - The translations for custom service parameter display name and description. Nested schema for fr:
 - it Property Map
 - The translations for custom service parameter display name and description. Nested schema for it:
 - ja Property Map
 - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko Property Map
 - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt
Br Property Map - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh
Cn Property Map - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh
Tw Property Map - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nDe, OnboardingCatalogDeploymentMetadataServiceParameterI18nDeArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nEn, OnboardingCatalogDeploymentMetadataServiceParameterI18nEnArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nEs, OnboardingCatalogDeploymentMetadataServiceParameterI18nEsArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nFr, OnboardingCatalogDeploymentMetadataServiceParameterI18nFrArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nIt, OnboardingCatalogDeploymentMetadataServiceParameterI18nItArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nJa, OnboardingCatalogDeploymentMetadataServiceParameterI18nJaArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nKo, OnboardingCatalogDeploymentMetadataServiceParameterI18nKoArgs                
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBr, OnboardingCatalogDeploymentMetadataServiceParameterI18nPtBrArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCn, OnboardingCatalogDeploymentMetadataServiceParameterI18nZhCnArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTw, OnboardingCatalogDeploymentMetadataServiceParameterI18nZhTwArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOption, OnboardingCatalogDeploymentMetadataServiceParameterOptionArgs              
- Displayname string
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - I18n
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n  - The description for the object. Nested schema for i18n:
 - Value string
 - The value for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Displayname string
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - I18n
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n  - The description for the object. Nested schema for i18n:
 - Value string
 - The value for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- displayname String
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - i18n
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n  - The description for the object. Nested schema for i18n:
 - value String
 - The value for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- displayname string
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - i18n
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n  - The description for the object. Nested schema for i18n:
 - value string
 - The value for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- displayname str
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - i18n
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n  - The description for the object. Nested schema for i18n:
 - value str
 - The value for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- displayname String
 - The display name for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/^[ -~\\s]*$/. 
 - Constraints: The maximum length is 
 - i18n Property Map
 - The description for the object. Nested schema for i18n:
 - value String
 - The value for custom service parameters.
- Constraints: The maximum length is 
2000characters. The minimum length is1character. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18n, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nArgs                
- De
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - En
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - Es
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - Fr
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - It
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - Ja
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - Ko
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - Pt
Br OnboardingCatalog Deployment Metadata Service Parameter Option I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - Zh
Cn OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - Zh
Tw OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- De
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - En
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - Es
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - Fr
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - It
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - Ja
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - Ko
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - Pt
Br OnboardingCatalog Deployment Metadata Service Parameter Option I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - Zh
Cn OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - Zh
Tw OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - en
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - es
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - fr
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - it
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - ja
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt
Br OnboardingCatalog Deployment Metadata Service Parameter Option I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh
Cn OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh
Tw OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - en
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - es
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - fr
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - it
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - ja
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt
Br OnboardingCatalog Deployment Metadata Service Parameter Option I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh
Cn OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh
Tw OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n De  - The translations for custom service parameter display name and description. Nested schema for de:
 - en
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n En  - The translations for custom service parameter display name and description. Nested schema for en:
 - es
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Es  - The translations for custom service parameter display name and description. Nested schema for es:
 - fr
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Fr  - The translations for custom service parameter display name and description. Nested schema for fr:
 - it
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n It  - The translations for custom service parameter display name and description. Nested schema for it:
 - ja
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ja  - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko
Onboarding
Catalog Deployment Metadata Service Parameter Option I18n Ko  - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt_
br OnboardingCatalog Deployment Metadata Service Parameter Option I18n Pt Br  - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh_
cn OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Cn  - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh_
tw OnboardingCatalog Deployment Metadata Service Parameter Option I18n Zh Tw  - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
- de Property Map
 - The translations for custom service parameter display name and description. Nested schema for de:
 - en Property Map
 - The translations for custom service parameter display name and description. Nested schema for en:
 - es Property Map
 - The translations for custom service parameter display name and description. Nested schema for es:
 - fr Property Map
 - The translations for custom service parameter display name and description. Nested schema for fr:
 - it Property Map
 - The translations for custom service parameter display name and description. Nested schema for it:
 - ja Property Map
 - The translations for custom service parameter display name and description. Nested schema for ja:
 - ko Property Map
 - The translations for custom service parameter display name and description. Nested schema for ko:
 - pt
Br Property Map - The translations for custom service parameter display name and description. Nested schema for pt_br:
 - zh
Cn Property Map - The translations for custom service parameter display name and description. Nested schema for zh_cn:
 - zh
Tw Property Map - The translations for custom service parameter display name and description. Nested schema for zh_tw:
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDe, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nDeArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEn, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEnArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEs, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nEsArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFr, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nFrArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nIt, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nItArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJa, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nJaArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKo, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nKoArgs                  
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBr, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nPtBrArgs                    
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCn, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhCnArgs                    
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTw, OnboardingCatalogDeploymentMetadataServiceParameterOptionI18nZhTwArgs                    
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- Description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - Displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description string
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname string
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description str
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname str
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
- description String
 - The translations for custom service parameter description.
- Constraints: The maximum length is 
20000characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 - displayname String
 - The translations for custom service parameter display name.
- Constraints: The maximum length is 
256characters. The minimum length is0characters. The value must match regular expression/./. 
 - Constraints: The maximum length is 
 
OnboardingCatalogDeploymentObjectProvider, OnboardingCatalogDeploymentObjectProviderArgs          
OnboardingCatalogDeploymentOverviewUi, OnboardingCatalogDeploymentOverviewUiArgs          
- En
Onboarding
Catalog Deployment Overview Ui En  - Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
 
- En
Onboarding
Catalog Deployment Overview Ui En  - Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
 
- en
Onboarding
Catalog Deployment Overview Ui En  - Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
 
- en
Onboarding
Catalog Deployment Overview Ui En  - Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
 
- en
Onboarding
Catalog Deployment Overview Ui En  - Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
 
- en Property Map
 - Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
 
OnboardingCatalogDeploymentOverviewUiEn, OnboardingCatalogDeploymentOverviewUiEnArgs            
- Description string
 - The short description of the product that is displayed in your catalog entry.
 - Display
Name string - The display name of the product.
 - Long
Description string - The detailed description of your product that is displayed at the beginning of your product page in the catalog. Markdown markup language is supported.
 
- Description string
 - The short description of the product that is displayed in your catalog entry.
 - Display
Name string - The display name of the product.
 - Long
Description string - The detailed description of your product that is displayed at the beginning of your product page in the catalog. Markdown markup language is supported.
 
- description String
 - The short description of the product that is displayed in your catalog entry.
 - display
Name String - The display name of the product.
 - long
Description String - The detailed description of your product that is displayed at the beginning of your product page in the catalog. Markdown markup language is supported.
 
- description string
 - The short description of the product that is displayed in your catalog entry.
 - display
Name string - The display name of the product.
 - long
Description string - The detailed description of your product that is displayed at the beginning of your product page in the catalog. Markdown markup language is supported.
 
- description str
 - The short description of the product that is displayed in your catalog entry.
 - display_
name str - The display name of the product.
 - long_
description str - The detailed description of your product that is displayed at the beginning of your product page in the catalog. Markdown markup language is supported.
 
- description String
 - The short description of the product that is displayed in your catalog entry.
 - display
Name String - The display name of the product.
 - long
Description String - The detailed description of your product that is displayed at the beginning of your product page in the catalog. Markdown markup language is supported.
 
Import
You can import the ibm_onboarding_catalog_deployment resource by using id.
The id property can be formed from product_id, catalog_product_id, catalog_plan_id, and catalog_deployment_id in the following format:
product_id/catalog_product_id/catalog_plan_id/catalog_deployment_id
product_id: A string. The unique ID of the product.catalog_product_id: A string. The unique ID of this global catalog product.catalog_plan_id: A string. The unique ID of this global catalog plan.catalog_deployment_id: A string. The ID of a global catalog object.
Syntax
```sh $ pulumi import ibm:index/onboardingCatalogDeployment:OnboardingCatalogDeployment onboarding_catalog_deployment product_id/catalog_product_id/catalog_plan_id/catalog_deployment_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 
ibmTerraform Provider.