1. Packages
  2. Ibm Provider
  3. API Docs
  4. OnboardingCatalogProduct
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.OnboardingCatalogProduct

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Note - Intended for internal use only. This resource is strictly experimental and subject to change without notice.

    Create, update, and delete onboarding_catalog_products with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const onboardingCatalogProductInstance = new ibm.OnboardingCatalogProduct("onboardingCatalogProductInstance", {
        active: true,
        disabled: false,
        images: {
            image: "image",
        },
        kind: "service",
        metadata: {
            rcCompatible: true,
            ui: {
                strings: {
                    en: {
                        bullets: [{
                            description: "description",
                            title: "title",
                        }],
                        media: [{
                            caption: "caption",
                            thumbnail: "thumbnail",
                            type: "image",
                            url: "url",
                        }],
                        navigationItems: [{
                            id: "id",
                            url: "url",
                            label: "label",
                        }],
                    },
                },
                urls: {
                    docUrl: "doc_url",
                    apidocsUrl: "apidocs_url",
                    termsUrl: "terms_url",
                    instructionsUrl: "instructions_url",
                    catalogDetailsUrl: "catalog_details_url",
                    customCreatePageUrl: "custom_create_page_url",
                    dashboard: "dashboard",
                },
                hidden: true,
                sideBySideIndex: 1,
                embeddableDashboard: "embeddable_dashboard",
                accessibleDuringProvision: true,
                primaryOfferingId: "primary_offering_id",
            },
            service: {
                rcProvisionable: true,
                iamCompatible: true,
                serviceKeySupported: true,
                uniqueApiKey: true,
                asyncProvisioningSupported: true,
                asyncUnprovisioningSupported: true,
                customCreatePageHybridEnabled: 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",
                        },
                    },
                }],
            },
            other: {
                pc: {
                    support: {
                        url: "url",
                        statusUrl: "status_url",
                        locations: ["locations"],
                        languages: ["languages"],
                        process: "process",
                        processI18n: {
                            key: "inner",
                        },
                        supportType: "community",
                        supportEscalation: {
                            contact: "contact",
                            escalationWaitTime: {
                                value: 1,
                                type: "type",
                            },
                            responseWaitTime: {
                                value: 1,
                                type: "type",
                            },
                        },
                        supportDetails: [{
                            type: "support_site",
                            contact: "contact",
                            responseWaitTime: {
                                value: 1,
                                type: "type",
                            },
                            availability: {
                                times: [{
                                    day: 1,
                                    startTime: "start_time",
                                    endTime: "end_time",
                                }],
                                timezone: "timezone",
                                alwaysAvailable: true,
                            },
                        }],
                    },
                },
                composite: {
                    compositeKind: "service",
                    compositeTag: "composite_tag",
                    childrens: [{
                        kind: "service",
                        name: "name",
                    }],
                },
            },
        },
        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_product_instance = ibm.OnboardingCatalogProduct("onboardingCatalogProductInstance",
        active=True,
        disabled=False,
        images={
            "image": "image",
        },
        kind="service",
        metadata={
            "rc_compatible": True,
            "ui": {
                "strings": {
                    "en": {
                        "bullets": [{
                            "description": "description",
                            "title": "title",
                        }],
                        "media": [{
                            "caption": "caption",
                            "thumbnail": "thumbnail",
                            "type": "image",
                            "url": "url",
                        }],
                        "navigation_items": [{
                            "id": "id",
                            "url": "url",
                            "label": "label",
                        }],
                    },
                },
                "urls": {
                    "doc_url": "doc_url",
                    "apidocs_url": "apidocs_url",
                    "terms_url": "terms_url",
                    "instructions_url": "instructions_url",
                    "catalog_details_url": "catalog_details_url",
                    "custom_create_page_url": "custom_create_page_url",
                    "dashboard": "dashboard",
                },
                "hidden": True,
                "side_by_side_index": 1,
                "embeddable_dashboard": "embeddable_dashboard",
                "accessible_during_provision": True,
                "primary_offering_id": "primary_offering_id",
            },
            "service": {
                "rc_provisionable": True,
                "iam_compatible": True,
                "service_key_supported": True,
                "unique_api_key": True,
                "async_provisioning_supported": True,
                "async_unprovisioning_supported": True,
                "custom_create_page_hybrid_enabled": 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",
                        },
                    },
                }],
            },
            "other": {
                "pc": {
                    "support": {
                        "url": "url",
                        "status_url": "status_url",
                        "locations": ["locations"],
                        "languages": ["languages"],
                        "process": "process",
                        "process_i18n": {
                            "key": "inner",
                        },
                        "support_type": "community",
                        "support_escalation": {
                            "contact": "contact",
                            "escalation_wait_time": {
                                "value": 1,
                                "type": "type",
                            },
                            "response_wait_time": {
                                "value": 1,
                                "type": "type",
                            },
                        },
                        "support_details": [{
                            "type": "support_site",
                            "contact": "contact",
                            "response_wait_time": {
                                "value": 1,
                                "type": "type",
                            },
                            "availability": {
                                "times": [{
                                    "day": 1,
                                    "start_time": "start_time",
                                    "end_time": "end_time",
                                }],
                                "timezone": "timezone",
                                "always_available": True,
                            },
                        }],
                    },
                },
                "composite": {
                    "composite_kind": "service",
                    "composite_tag": "composite_tag",
                    "childrens": [{
                        "kind": "service",
                        "name": "name",
                    }],
                },
            },
        },
        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.NewOnboardingCatalogProduct(ctx, "onboardingCatalogProductInstance", &ibm.OnboardingCatalogProductArgs{
    			Active:   pulumi.Bool(true),
    			Disabled: pulumi.Bool(false),
    			Images: &ibm.OnboardingCatalogProductImagesArgs{
    				Image: pulumi.String("image"),
    			},
    			Kind: pulumi.String("service"),
    			Metadata: &ibm.OnboardingCatalogProductMetadataArgs{
    				RcCompatible: pulumi.Bool(true),
    				Ui: &ibm.OnboardingCatalogProductMetadataUiArgs{
    					Strings: &ibm.OnboardingCatalogProductMetadataUiStringsArgs{
    						En: &ibm.OnboardingCatalogProductMetadataUiStringsEnArgs{
    							Bullets: ibm.OnboardingCatalogProductMetadataUiStringsEnBulletArray{
    								&ibm.OnboardingCatalogProductMetadataUiStringsEnBulletArgs{
    									Description: pulumi.String("description"),
    									Title:       pulumi.String("title"),
    								},
    							},
    							Media: ibm.OnboardingCatalogProductMetadataUiStringsEnMediaArray{
    								&ibm.OnboardingCatalogProductMetadataUiStringsEnMediaArgs{
    									Caption:   pulumi.String("caption"),
    									Thumbnail: pulumi.String("thumbnail"),
    									Type:      pulumi.String("image"),
    									Url:       pulumi.String("url"),
    								},
    							},
    							NavigationItems: ibm.OnboardingCatalogProductMetadataUiStringsEnNavigationItemArray{
    								&ibm.OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs{
    									Id:    pulumi.String("id"),
    									Url:   pulumi.String("url"),
    									Label: pulumi.String("label"),
    								},
    							},
    						},
    					},
    					Urls: &ibm.OnboardingCatalogProductMetadataUiUrlsArgs{
    						DocUrl:              pulumi.String("doc_url"),
    						ApidocsUrl:          pulumi.String("apidocs_url"),
    						TermsUrl:            pulumi.String("terms_url"),
    						InstructionsUrl:     pulumi.String("instructions_url"),
    						CatalogDetailsUrl:   pulumi.String("catalog_details_url"),
    						CustomCreatePageUrl: pulumi.String("custom_create_page_url"),
    						Dashboard:           pulumi.String("dashboard"),
    					},
    					Hidden:                    pulumi.Bool(true),
    					SideBySideIndex:           pulumi.Float64(1),
    					EmbeddableDashboard:       pulumi.String("embeddable_dashboard"),
    					AccessibleDuringProvision: pulumi.Bool(true),
    					PrimaryOfferingId:         pulumi.String("primary_offering_id"),
    				},
    				Service: &ibm.OnboardingCatalogProductMetadataServiceArgs{
    					RcProvisionable:               pulumi.Bool(true),
    					IamCompatible:                 pulumi.Bool(true),
    					ServiceKeySupported:           pulumi.Bool(true),
    					UniqueApiKey:                  pulumi.Bool(true),
    					AsyncProvisioningSupported:    pulumi.Bool(true),
    					AsyncUnprovisioningSupported:  pulumi.Bool(true),
    					CustomCreatePageHybridEnabled: pulumi.Bool(true),
    					Parameters: ibm.OnboardingCatalogProductMetadataServiceParameterArray{
    						&ibm.OnboardingCatalogProductMetadataServiceParameterArgs{
    							Displayname: pulumi.String("displayname"),
    							Name:        pulumi.String("name"),
    							Type:        pulumi.String("text"),
    							Options: ibm.OnboardingCatalogProductMetadataServiceParameterOptionArray{
    								&ibm.OnboardingCatalogProductMetadataServiceParameterOptionArgs{
    									Displayname: pulumi.String("displayname"),
    									Value:       pulumi.String("value"),
    									I18n: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs{
    										En: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										De: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										Es: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										Fr: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										It: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										Ja: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										Ko: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										PtBr: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										ZhTw: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs{
    											Displayname: pulumi.String("displayname"),
    											Description: pulumi.String("description"),
    										},
    										ZhCn: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs{
    											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.OnboardingCatalogProductMetadataServiceParameterI18nArgs{
    								En: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nEnArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								De: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nDeArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								Es: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nEsArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								Fr: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nFrArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								It: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nItArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								Ja: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nJaArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								Ko: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nKoArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								PtBr: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								ZhTw: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    								ZhCn: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs{
    									Displayname: pulumi.String("displayname"),
    									Description: pulumi.String("description"),
    								},
    							},
    						},
    					},
    				},
    				Other: &ibm.OnboardingCatalogProductMetadataOtherArgs{
    					Pc: &ibm.OnboardingCatalogProductMetadataOtherPcArgs{
    						Support: &ibm.OnboardingCatalogProductMetadataOtherPcSupportArgs{
    							Url:       pulumi.String("url"),
    							StatusUrl: pulumi.String("status_url"),
    							Locations: pulumi.StringArray{
    								pulumi.String("locations"),
    							},
    							Languages: pulumi.StringArray{
    								pulumi.String("languages"),
    							},
    							Process: pulumi.String("process"),
    							ProcessI18n: pulumi.StringMap{
    								"key": pulumi.String("inner"),
    							},
    							SupportType: pulumi.String("community"),
    							SupportEscalation: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs{
    								Contact: pulumi.String("contact"),
    								EscalationWaitTime: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs{
    									Value: pulumi.Float64(1),
    									Type:  pulumi.String("type"),
    								},
    								ResponseWaitTime: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs{
    									Value: pulumi.Float64(1),
    									Type:  pulumi.String("type"),
    								},
    							},
    							SupportDetails: ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArray{
    								&ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs{
    									Type:    pulumi.String("support_site"),
    									Contact: pulumi.String("contact"),
    									ResponseWaitTime: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs{
    										Value: pulumi.Float64(1),
    										Type:  pulumi.String("type"),
    									},
    									Availability: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs{
    										Times: ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArray{
    											&ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs{
    												Day:       pulumi.Float64(1),
    												StartTime: pulumi.String("start_time"),
    												EndTime:   pulumi.String("end_time"),
    											},
    										},
    										Timezone:        pulumi.String("timezone"),
    										AlwaysAvailable: pulumi.Bool(true),
    									},
    								},
    							},
    						},
    					},
    					Composite: &ibm.OnboardingCatalogProductMetadataOtherCompositeArgs{
    						CompositeKind: pulumi.String("service"),
    						CompositeTag:  pulumi.String("composite_tag"),
    						Childrens: ibm.OnboardingCatalogProductMetadataOtherCompositeChildrenArray{
    							&ibm.OnboardingCatalogProductMetadataOtherCompositeChildrenArgs{
    								Kind: pulumi.String("service"),
    								Name: pulumi.String("name"),
    							},
    						},
    					},
    				},
    			},
    			ObjectProvider: &ibm.OnboardingCatalogProductObjectProviderArgs{
    				Name:  pulumi.String("name"),
    				Email: pulumi.String("email"),
    			},
    			OverviewUi: &ibm.OnboardingCatalogProductOverviewUiArgs{
    				En: &ibm.OnboardingCatalogProductOverviewUiEnArgs{
    					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 onboardingCatalogProductInstance = new Ibm.OnboardingCatalogProduct("onboardingCatalogProductInstance", new()
        {
            Active = true,
            Disabled = false,
            Images = new Ibm.Inputs.OnboardingCatalogProductImagesArgs
            {
                Image = "image",
            },
            Kind = "service",
            Metadata = new Ibm.Inputs.OnboardingCatalogProductMetadataArgs
            {
                RcCompatible = true,
                Ui = new Ibm.Inputs.OnboardingCatalogProductMetadataUiArgs
                {
                    Strings = new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsArgs
                    {
                        En = new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnArgs
                        {
                            Bullets = new[]
                            {
                                new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnBulletArgs
                                {
                                    Description = "description",
                                    Title = "title",
                                },
                            },
                            Media = new[]
                            {
                                new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnMediaArgs
                                {
                                    Caption = "caption",
                                    Thumbnail = "thumbnail",
                                    Type = "image",
                                    Url = "url",
                                },
                            },
                            NavigationItems = new[]
                            {
                                new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs
                                {
                                    Id = "id",
                                    Url = "url",
                                    Label = "label",
                                },
                            },
                        },
                    },
                    Urls = new Ibm.Inputs.OnboardingCatalogProductMetadataUiUrlsArgs
                    {
                        DocUrl = "doc_url",
                        ApidocsUrl = "apidocs_url",
                        TermsUrl = "terms_url",
                        InstructionsUrl = "instructions_url",
                        CatalogDetailsUrl = "catalog_details_url",
                        CustomCreatePageUrl = "custom_create_page_url",
                        Dashboard = "dashboard",
                    },
                    Hidden = true,
                    SideBySideIndex = 1,
                    EmbeddableDashboard = "embeddable_dashboard",
                    AccessibleDuringProvision = true,
                    PrimaryOfferingId = "primary_offering_id",
                },
                Service = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceArgs
                {
                    RcProvisionable = true,
                    IamCompatible = true,
                    ServiceKeySupported = true,
                    UniqueApiKey = true,
                    AsyncProvisioningSupported = true,
                    AsyncUnprovisioningSupported = true,
                    CustomCreatePageHybridEnabled = true,
                    Parameters = new[]
                    {
                        new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterArgs
                        {
                            Displayname = "displayname",
                            Name = "name",
                            Type = "text",
                            Options = new[]
                            {
                                new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionArgs
                                {
                                    Displayname = "displayname",
                                    Value = "value",
                                    I18n = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs
                                    {
                                        En = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        De = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        Es = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        Fr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        It = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        Ja = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        Ko = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        PtBr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        ZhTw = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs
                                        {
                                            Displayname = "displayname",
                                            Description = "description",
                                        },
                                        ZhCn = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs
                                        {
                                            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.OnboardingCatalogProductMetadataServiceParameterI18nArgs
                            {
                                En = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nEnArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                De = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nDeArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                Es = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nEsArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                Fr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nFrArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                It = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nItArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                Ja = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nJaArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                Ko = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nKoArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                PtBr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                ZhTw = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                                ZhCn = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs
                                {
                                    Displayname = "displayname",
                                    Description = "description",
                                },
                            },
                        },
                    },
                },
                Other = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherArgs
                {
                    Pc = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcArgs
                    {
                        Support = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportArgs
                        {
                            Url = "url",
                            StatusUrl = "status_url",
                            Locations = new[]
                            {
                                "locations",
                            },
                            Languages = new[]
                            {
                                "languages",
                            },
                            Process = "process",
                            ProcessI18n = 
                            {
                                { "key", "inner" },
                            },
                            SupportType = "community",
                            SupportEscalation = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs
                            {
                                Contact = "contact",
                                EscalationWaitTime = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs
                                {
                                    Value = 1,
                                    Type = "type",
                                },
                                ResponseWaitTime = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs
                                {
                                    Value = 1,
                                    Type = "type",
                                },
                            },
                            SupportDetails = new[]
                            {
                                new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs
                                {
                                    Type = "support_site",
                                    Contact = "contact",
                                    ResponseWaitTime = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs
                                    {
                                        Value = 1,
                                        Type = "type",
                                    },
                                    Availability = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs
                                    {
                                        Times = new[]
                                        {
                                            new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs
                                            {
                                                Day = 1,
                                                StartTime = "start_time",
                                                EndTime = "end_time",
                                            },
                                        },
                                        Timezone = "timezone",
                                        AlwaysAvailable = true,
                                    },
                                },
                            },
                        },
                    },
                    Composite = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherCompositeArgs
                    {
                        CompositeKind = "service",
                        CompositeTag = "composite_tag",
                        Childrens = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogProductMetadataOtherCompositeChildrenArgs
                            {
                                Kind = "service",
                                Name = "name",
                            },
                        },
                    },
                },
            },
            ObjectProvider = new Ibm.Inputs.OnboardingCatalogProductObjectProviderArgs
            {
                Name = "name",
                Email = "email",
            },
            OverviewUi = new Ibm.Inputs.OnboardingCatalogProductOverviewUiArgs
            {
                En = new Ibm.Inputs.OnboardingCatalogProductOverviewUiEnArgs
                {
                    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.OnboardingCatalogProduct;
    import com.pulumi.ibm.OnboardingCatalogProductArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductImagesArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataUiArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataUiStringsArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataUiStringsEnArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataUiUrlsArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataServiceArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherPcArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherPcSupportArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductMetadataOtherCompositeArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductObjectProviderArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductOverviewUiArgs;
    import com.pulumi.ibm.inputs.OnboardingCatalogProductOverviewUiEnArgs;
    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 onboardingCatalogProductInstance = new OnboardingCatalogProduct("onboardingCatalogProductInstance", OnboardingCatalogProductArgs.builder()
                .active(true)
                .disabled(false)
                .images(OnboardingCatalogProductImagesArgs.builder()
                    .image("image")
                    .build())
                .kind("service")
                .metadata(OnboardingCatalogProductMetadataArgs.builder()
                    .rcCompatible(true)
                    .ui(OnboardingCatalogProductMetadataUiArgs.builder()
                        .strings(OnboardingCatalogProductMetadataUiStringsArgs.builder()
                            .en(OnboardingCatalogProductMetadataUiStringsEnArgs.builder()
                                .bullets(OnboardingCatalogProductMetadataUiStringsEnBulletArgs.builder()
                                    .description("description")
                                    .title("title")
                                    .build())
                                .media(OnboardingCatalogProductMetadataUiStringsEnMediaArgs.builder()
                                    .caption("caption")
                                    .thumbnail("thumbnail")
                                    .type("image")
                                    .url("url")
                                    .build())
                                .navigationItems(OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs.builder()
                                    .id("id")
                                    .url("url")
                                    .label("label")
                                    .build())
                                .build())
                            .build())
                        .urls(OnboardingCatalogProductMetadataUiUrlsArgs.builder()
                            .docUrl("doc_url")
                            .apidocsUrl("apidocs_url")
                            .termsUrl("terms_url")
                            .instructionsUrl("instructions_url")
                            .catalogDetailsUrl("catalog_details_url")
                            .customCreatePageUrl("custom_create_page_url")
                            .dashboard("dashboard")
                            .build())
                        .hidden(true)
                        .sideBySideIndex(1)
                        .embeddableDashboard("embeddable_dashboard")
                        .accessibleDuringProvision(true)
                        .primaryOfferingId("primary_offering_id")
                        .build())
                    .service(OnboardingCatalogProductMetadataServiceArgs.builder()
                        .rcProvisionable(true)
                        .iamCompatible(true)
                        .serviceKeySupported(true)
                        .uniqueApiKey(true)
                        .asyncProvisioningSupported(true)
                        .asyncUnprovisioningSupported(true)
                        .customCreatePageHybridEnabled(true)
                        .parameters(OnboardingCatalogProductMetadataServiceParameterArgs.builder()
                            .displayname("displayname")
                            .name("name")
                            .type("text")
                            .options(OnboardingCatalogProductMetadataServiceParameterOptionArgs.builder()
                                .displayname("displayname")
                                .value("value")
                                .i18n(OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs.builder()
                                    .en(OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .de(OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .es(OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .fr(OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .it(OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .ja(OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .ko(OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .ptBr(OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .zhTw(OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs.builder()
                                        .displayname("displayname")
                                        .description("description")
                                        .build())
                                    .zhCn(OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs.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(OnboardingCatalogProductMetadataServiceParameterI18nArgs.builder()
                                .en(OnboardingCatalogProductMetadataServiceParameterI18nEnArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .de(OnboardingCatalogProductMetadataServiceParameterI18nDeArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .es(OnboardingCatalogProductMetadataServiceParameterI18nEsArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .fr(OnboardingCatalogProductMetadataServiceParameterI18nFrArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .it(OnboardingCatalogProductMetadataServiceParameterI18nItArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .ja(OnboardingCatalogProductMetadataServiceParameterI18nJaArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .ko(OnboardingCatalogProductMetadataServiceParameterI18nKoArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .ptBr(OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .zhTw(OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .zhCn(OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs.builder()
                                    .displayname("displayname")
                                    .description("description")
                                    .build())
                                .build())
                            .build())
                        .build())
                    .other(OnboardingCatalogProductMetadataOtherArgs.builder()
                        .pc(OnboardingCatalogProductMetadataOtherPcArgs.builder()
                            .support(OnboardingCatalogProductMetadataOtherPcSupportArgs.builder()
                                .url("url")
                                .statusUrl("status_url")
                                .locations("locations")
                                .languages("languages")
                                .process("process")
                                .processI18n(Map.of("key", "inner"))
                                .supportType("community")
                                .supportEscalation(OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs.builder()
                                    .contact("contact")
                                    .escalationWaitTime(OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs.builder()
                                        .value(1)
                                        .type("type")
                                        .build())
                                    .responseWaitTime(OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs.builder()
                                        .value(1)
                                        .type("type")
                                        .build())
                                    .build())
                                .supportDetails(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs.builder()
                                    .type("support_site")
                                    .contact("contact")
                                    .responseWaitTime(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs.builder()
                                        .value(1)
                                        .type("type")
                                        .build())
                                    .availability(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs.builder()
                                        .times(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs.builder()
                                            .day(1)
                                            .startTime("start_time")
                                            .endTime("end_time")
                                            .build())
                                        .timezone("timezone")
                                        .alwaysAvailable(true)
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .composite(OnboardingCatalogProductMetadataOtherCompositeArgs.builder()
                            .compositeKind("service")
                            .compositeTag("composite_tag")
                            .childrens(OnboardingCatalogProductMetadataOtherCompositeChildrenArgs.builder()
                                .kind("service")
                                .name("name")
                                .build())
                            .build())
                        .build())
                    .build())
                .objectProvider(OnboardingCatalogProductObjectProviderArgs.builder()
                    .name("name")
                    .email("email")
                    .build())
                .overviewUi(OnboardingCatalogProductOverviewUiArgs.builder()
                    .en(OnboardingCatalogProductOverviewUiEnArgs.builder()
                        .displayName("display_name")
                        .description("description")
                        .longDescription("long_description")
                        .build())
                    .build())
                .productId(ibm_onboarding_product.onboarding_product_instance().id())
                .build());
    
        }
    }
    
    resources:
      onboardingCatalogProductInstance:
        type: ibm:OnboardingCatalogProduct
        properties:
          active: true
          disabled: false
          images:
            image: image
          kind: service
          metadata:
            rcCompatible: true
            ui:
              strings:
                en:
                  bullets:
                    - description: description
                      title: title
                  media:
                    - caption: caption
                      thumbnail: thumbnail
                      type: image
                      url: url
                  navigationItems:
                    - id: id
                      url: url
                      label: label
              urls:
                docUrl: doc_url
                apidocsUrl: apidocs_url
                termsUrl: terms_url
                instructionsUrl: instructions_url
                catalogDetailsUrl: catalog_details_url
                customCreatePageUrl: custom_create_page_url
                dashboard: dashboard
              hidden: true
              sideBySideIndex: 1
              embeddableDashboard: embeddable_dashboard
              accessibleDuringProvision: true
              primaryOfferingId: primary_offering_id
            service:
              rcProvisionable: true
              iamCompatible: true
              serviceKeySupported: true
              uniqueApiKey: true
              asyncProvisioningSupported: true
              asyncUnprovisioningSupported: true
              customCreatePageHybridEnabled: 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
            other:
              pc:
                support:
                  url: url
                  statusUrl: status_url
                  locations:
                    - locations
                  languages:
                    - languages
                  process: process
                  processI18n:
                    key: inner
                  supportType: community
                  supportEscalation:
                    contact: contact
                    escalationWaitTime:
                      value: 1
                      type: type
                    responseWaitTime:
                      value: 1
                      type: type
                  supportDetails:
                    - type: support_site
                      contact: contact
                      responseWaitTime:
                        value: 1
                        type: type
                      availability:
                        times:
                          - day: 1
                            startTime: start_time
                            endTime: end_time
                        timezone: timezone
                        alwaysAvailable: true
              composite:
                compositeKind: service
                compositeTag: composite_tag
                childrens:
                  - kind: service
                    name: name
          objectProvider:
            name: name
            email: email
          overviewUi:
            en:
              displayName: display_name
              description: description
              longDescription: long_description
          productId: ${ibm_onboarding_product.onboarding_product_instance.id}
    

    Create OnboardingCatalogProduct Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OnboardingCatalogProduct(name: string, args: OnboardingCatalogProductArgs, opts?: CustomResourceOptions);
    @overload
    def OnboardingCatalogProduct(resource_name: str,
                                 args: OnboardingCatalogProductArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def OnboardingCatalogProduct(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 active: Optional[bool] = None,
                                 disabled: Optional[bool] = None,
                                 tags: Optional[Sequence[str]] = None,
                                 product_id: Optional[str] = None,
                                 kind: Optional[str] = None,
                                 object_provider: Optional[OnboardingCatalogProductObjectProviderArgs] = None,
                                 name: Optional[str] = None,
                                 object_id: Optional[str] = None,
                                 metadata: Optional[OnboardingCatalogProductMetadataArgs] = None,
                                 onboarding_catalog_product_id: Optional[str] = None,
                                 overview_ui: Optional[OnboardingCatalogProductOverviewUiArgs] = None,
                                 images: Optional[OnboardingCatalogProductImagesArgs] = None,
                                 env: Optional[str] = None)
    func NewOnboardingCatalogProduct(ctx *Context, name string, args OnboardingCatalogProductArgs, opts ...ResourceOption) (*OnboardingCatalogProduct, error)
    public OnboardingCatalogProduct(string name, OnboardingCatalogProductArgs args, CustomResourceOptions? opts = null)
    public OnboardingCatalogProduct(String name, OnboardingCatalogProductArgs args)
    public OnboardingCatalogProduct(String name, OnboardingCatalogProductArgs args, CustomResourceOptions options)
    
    type: ibm:OnboardingCatalogProduct
    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 OnboardingCatalogProductArgs
    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 OnboardingCatalogProductArgs
    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 OnboardingCatalogProductArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OnboardingCatalogProductArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OnboardingCatalogProductArgs
    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 onboardingCatalogProductResource = new Ibm.OnboardingCatalogProduct("onboardingCatalogProductResource", new()
    {
        Active = false,
        Disabled = false,
        Tags = new[]
        {
            "string",
        },
        ProductId = "string",
        Kind = "string",
        ObjectProvider = new Ibm.Inputs.OnboardingCatalogProductObjectProviderArgs
        {
            Email = "string",
            Name = "string",
        },
        Name = "string",
        ObjectId = "string",
        Metadata = new Ibm.Inputs.OnboardingCatalogProductMetadataArgs
        {
            Other = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherArgs
            {
                Composite = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherCompositeArgs
                {
                    Childrens = new[]
                    {
                        new Ibm.Inputs.OnboardingCatalogProductMetadataOtherCompositeChildrenArgs
                        {
                            Kind = "string",
                            Name = "string",
                        },
                    },
                    CompositeKind = "string",
                    CompositeTag = "string",
                },
                Pc = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcArgs
                {
                    Support = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportArgs
                    {
                        Languages = new[]
                        {
                            "string",
                        },
                        Locations = new[]
                        {
                            "string",
                        },
                        Process = "string",
                        ProcessI18n = 
                        {
                            { "string", "string" },
                        },
                        StatusUrl = "string",
                        SupportDetails = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs
                            {
                                Availability = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs
                                {
                                    AlwaysAvailable = false,
                                    Times = new[]
                                    {
                                        new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs
                                        {
                                            Day = 0,
                                            EndTime = "string",
                                            StartTime = "string",
                                        },
                                    },
                                    Timezone = "string",
                                },
                                Contact = "string",
                                ResponseWaitTime = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs
                                {
                                    Type = "string",
                                    Value = 0,
                                },
                                Type = "string",
                            },
                        },
                        SupportEscalation = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs
                        {
                            Contact = "string",
                            EscalationWaitTime = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs
                            {
                                Type = "string",
                                Value = 0,
                            },
                            ResponseWaitTime = new Ibm.Inputs.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs
                            {
                                Type = "string",
                                Value = 0,
                            },
                        },
                        SupportType = "string",
                        Url = "string",
                    },
                },
            },
            RcCompatible = false,
            Service = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceArgs
            {
                AsyncProvisioningSupported = false,
                AsyncUnprovisioningSupported = false,
                Bindable = false,
                CustomCreatePageHybridEnabled = false,
                IamCompatible = false,
                Parameters = new[]
                {
                    new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterArgs
                    {
                        Associations = 
                        {
                            { "string", "string" },
                        },
                        Description = "string",
                        Displayname = "string",
                        Hidden = false,
                        I18n = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nArgs
                        {
                            De = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nDeArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            En = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nEnArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            Es = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nEsArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            Fr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nFrArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            It = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nItArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            Ja = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nJaArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            Ko = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nKoArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            PtBr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            ZhCn = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                            ZhTw = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs
                            {
                                Description = "string",
                                Displayname = "string",
                            },
                        },
                        Invalidmessage = "string",
                        Layout = "string",
                        Name = "string",
                        Options = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionArgs
                            {
                                Displayname = "string",
                                I18n = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs
                                {
                                    De = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    En = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    Es = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    Fr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    It = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    Ja = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    Ko = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    PtBr = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    ZhCn = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs
                                    {
                                        Description = "string",
                                        Displayname = "string",
                                    },
                                    ZhTw = new Ibm.Inputs.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs
                                    {
                                        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,
            },
            Ui = new Ibm.Inputs.OnboardingCatalogProductMetadataUiArgs
            {
                AccessibleDuringProvision = false,
                EmbeddableDashboard = "string",
                Hidden = false,
                PrimaryOfferingId = "string",
                SideBySideIndex = 0,
                Strings = new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsArgs
                {
                    En = new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnArgs
                    {
                        Bullets = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnBulletArgs
                            {
                                Description = "string",
                                Title = "string",
                            },
                        },
                        Media = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnMediaArgs
                            {
                                Caption = "string",
                                Type = "string",
                                Url = "string",
                                Thumbnail = "string",
                            },
                        },
                        NavigationItems = new[]
                        {
                            new Ibm.Inputs.OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs
                            {
                                Id = "string",
                                Label = "string",
                                Url = "string",
                            },
                        },
                    },
                },
                Urls = new Ibm.Inputs.OnboardingCatalogProductMetadataUiUrlsArgs
                {
                    ApidocsUrl = "string",
                    CatalogDetailsUrl = "string",
                    CustomCreatePageUrl = "string",
                    Dashboard = "string",
                    DocUrl = "string",
                    InstructionsUrl = "string",
                    TermsUrl = "string",
                },
            },
        },
        OnboardingCatalogProductId = "string",
        OverviewUi = new Ibm.Inputs.OnboardingCatalogProductOverviewUiArgs
        {
            En = new Ibm.Inputs.OnboardingCatalogProductOverviewUiEnArgs
            {
                Description = "string",
                DisplayName = "string",
                LongDescription = "string",
            },
        },
        Images = new Ibm.Inputs.OnboardingCatalogProductImagesArgs
        {
            Image = "string",
        },
        Env = "string",
    });
    
    example, err := ibm.NewOnboardingCatalogProduct(ctx, "onboardingCatalogProductResource", &ibm.OnboardingCatalogProductArgs{
    	Active:   pulumi.Bool(false),
    	Disabled: pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ProductId: pulumi.String("string"),
    	Kind:      pulumi.String("string"),
    	ObjectProvider: &ibm.OnboardingCatalogProductObjectProviderArgs{
    		Email: pulumi.String("string"),
    		Name:  pulumi.String("string"),
    	},
    	Name:     pulumi.String("string"),
    	ObjectId: pulumi.String("string"),
    	Metadata: &ibm.OnboardingCatalogProductMetadataArgs{
    		Other: &ibm.OnboardingCatalogProductMetadataOtherArgs{
    			Composite: &ibm.OnboardingCatalogProductMetadataOtherCompositeArgs{
    				Childrens: ibm.OnboardingCatalogProductMetadataOtherCompositeChildrenArray{
    					&ibm.OnboardingCatalogProductMetadataOtherCompositeChildrenArgs{
    						Kind: pulumi.String("string"),
    						Name: pulumi.String("string"),
    					},
    				},
    				CompositeKind: pulumi.String("string"),
    				CompositeTag:  pulumi.String("string"),
    			},
    			Pc: &ibm.OnboardingCatalogProductMetadataOtherPcArgs{
    				Support: &ibm.OnboardingCatalogProductMetadataOtherPcSupportArgs{
    					Languages: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Locations: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Process: pulumi.String("string"),
    					ProcessI18n: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    					StatusUrl: pulumi.String("string"),
    					SupportDetails: ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArray{
    						&ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs{
    							Availability: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs{
    								AlwaysAvailable: pulumi.Bool(false),
    								Times: ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArray{
    									&ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs{
    										Day:       pulumi.Float64(0),
    										EndTime:   pulumi.String("string"),
    										StartTime: pulumi.String("string"),
    									},
    								},
    								Timezone: pulumi.String("string"),
    							},
    							Contact: pulumi.String("string"),
    							ResponseWaitTime: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs{
    								Type:  pulumi.String("string"),
    								Value: pulumi.Float64(0),
    							},
    							Type: pulumi.String("string"),
    						},
    					},
    					SupportEscalation: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs{
    						Contact: pulumi.String("string"),
    						EscalationWaitTime: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs{
    							Type:  pulumi.String("string"),
    							Value: pulumi.Float64(0),
    						},
    						ResponseWaitTime: &ibm.OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs{
    							Type:  pulumi.String("string"),
    							Value: pulumi.Float64(0),
    						},
    					},
    					SupportType: pulumi.String("string"),
    					Url:         pulumi.String("string"),
    				},
    			},
    		},
    		RcCompatible: pulumi.Bool(false),
    		Service: &ibm.OnboardingCatalogProductMetadataServiceArgs{
    			AsyncProvisioningSupported:    pulumi.Bool(false),
    			AsyncUnprovisioningSupported:  pulumi.Bool(false),
    			Bindable:                      pulumi.Bool(false),
    			CustomCreatePageHybridEnabled: pulumi.Bool(false),
    			IamCompatible:                 pulumi.Bool(false),
    			Parameters: ibm.OnboardingCatalogProductMetadataServiceParameterArray{
    				&ibm.OnboardingCatalogProductMetadataServiceParameterArgs{
    					Associations: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    					Description: pulumi.String("string"),
    					Displayname: pulumi.String("string"),
    					Hidden:      pulumi.Bool(false),
    					I18n: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nArgs{
    						De: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nDeArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						En: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nEnArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						Es: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nEsArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						Fr: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nFrArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						It: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nItArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						Ja: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nJaArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						Ko: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nKoArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						PtBr: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						ZhCn: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    						ZhTw: &ibm.OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs{
    							Description: pulumi.String("string"),
    							Displayname: pulumi.String("string"),
    						},
    					},
    					Invalidmessage: pulumi.String("string"),
    					Layout:         pulumi.String("string"),
    					Name:           pulumi.String("string"),
    					Options: ibm.OnboardingCatalogProductMetadataServiceParameterOptionArray{
    						&ibm.OnboardingCatalogProductMetadataServiceParameterOptionArgs{
    							Displayname: pulumi.String("string"),
    							I18n: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs{
    								De: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								En: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								Es: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								Fr: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								It: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								Ja: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								Ko: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								PtBr: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								ZhCn: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs{
    									Description: pulumi.String("string"),
    									Displayname: pulumi.String("string"),
    								},
    								ZhTw: &ibm.OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs{
    									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),
    		},
    		Ui: &ibm.OnboardingCatalogProductMetadataUiArgs{
    			AccessibleDuringProvision: pulumi.Bool(false),
    			EmbeddableDashboard:       pulumi.String("string"),
    			Hidden:                    pulumi.Bool(false),
    			PrimaryOfferingId:         pulumi.String("string"),
    			SideBySideIndex:           pulumi.Float64(0),
    			Strings: &ibm.OnboardingCatalogProductMetadataUiStringsArgs{
    				En: &ibm.OnboardingCatalogProductMetadataUiStringsEnArgs{
    					Bullets: ibm.OnboardingCatalogProductMetadataUiStringsEnBulletArray{
    						&ibm.OnboardingCatalogProductMetadataUiStringsEnBulletArgs{
    							Description: pulumi.String("string"),
    							Title:       pulumi.String("string"),
    						},
    					},
    					Media: ibm.OnboardingCatalogProductMetadataUiStringsEnMediaArray{
    						&ibm.OnboardingCatalogProductMetadataUiStringsEnMediaArgs{
    							Caption:   pulumi.String("string"),
    							Type:      pulumi.String("string"),
    							Url:       pulumi.String("string"),
    							Thumbnail: pulumi.String("string"),
    						},
    					},
    					NavigationItems: ibm.OnboardingCatalogProductMetadataUiStringsEnNavigationItemArray{
    						&ibm.OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs{
    							Id:    pulumi.String("string"),
    							Label: pulumi.String("string"),
    							Url:   pulumi.String("string"),
    						},
    					},
    				},
    			},
    			Urls: &ibm.OnboardingCatalogProductMetadataUiUrlsArgs{
    				ApidocsUrl:          pulumi.String("string"),
    				CatalogDetailsUrl:   pulumi.String("string"),
    				CustomCreatePageUrl: pulumi.String("string"),
    				Dashboard:           pulumi.String("string"),
    				DocUrl:              pulumi.String("string"),
    				InstructionsUrl:     pulumi.String("string"),
    				TermsUrl:            pulumi.String("string"),
    			},
    		},
    	},
    	OnboardingCatalogProductId: pulumi.String("string"),
    	OverviewUi: &ibm.OnboardingCatalogProductOverviewUiArgs{
    		En: &ibm.OnboardingCatalogProductOverviewUiEnArgs{
    			Description:     pulumi.String("string"),
    			DisplayName:     pulumi.String("string"),
    			LongDescription: pulumi.String("string"),
    		},
    	},
    	Images: &ibm.OnboardingCatalogProductImagesArgs{
    		Image: pulumi.String("string"),
    	},
    	Env: pulumi.String("string"),
    })
    
    var onboardingCatalogProductResource = new OnboardingCatalogProduct("onboardingCatalogProductResource", OnboardingCatalogProductArgs.builder()
        .active(false)
        .disabled(false)
        .tags("string")
        .productId("string")
        .kind("string")
        .objectProvider(OnboardingCatalogProductObjectProviderArgs.builder()
            .email("string")
            .name("string")
            .build())
        .name("string")
        .objectId("string")
        .metadata(OnboardingCatalogProductMetadataArgs.builder()
            .other(OnboardingCatalogProductMetadataOtherArgs.builder()
                .composite(OnboardingCatalogProductMetadataOtherCompositeArgs.builder()
                    .childrens(OnboardingCatalogProductMetadataOtherCompositeChildrenArgs.builder()
                        .kind("string")
                        .name("string")
                        .build())
                    .compositeKind("string")
                    .compositeTag("string")
                    .build())
                .pc(OnboardingCatalogProductMetadataOtherPcArgs.builder()
                    .support(OnboardingCatalogProductMetadataOtherPcSupportArgs.builder()
                        .languages("string")
                        .locations("string")
                        .process("string")
                        .processI18n(Map.of("string", "string"))
                        .statusUrl("string")
                        .supportDetails(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs.builder()
                            .availability(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs.builder()
                                .alwaysAvailable(false)
                                .times(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs.builder()
                                    .day(0)
                                    .endTime("string")
                                    .startTime("string")
                                    .build())
                                .timezone("string")
                                .build())
                            .contact("string")
                            .responseWaitTime(OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs.builder()
                                .type("string")
                                .value(0)
                                .build())
                            .type("string")
                            .build())
                        .supportEscalation(OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs.builder()
                            .contact("string")
                            .escalationWaitTime(OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs.builder()
                                .type("string")
                                .value(0)
                                .build())
                            .responseWaitTime(OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs.builder()
                                .type("string")
                                .value(0)
                                .build())
                            .build())
                        .supportType("string")
                        .url("string")
                        .build())
                    .build())
                .build())
            .rcCompatible(false)
            .service(OnboardingCatalogProductMetadataServiceArgs.builder()
                .asyncProvisioningSupported(false)
                .asyncUnprovisioningSupported(false)
                .bindable(false)
                .customCreatePageHybridEnabled(false)
                .iamCompatible(false)
                .parameters(OnboardingCatalogProductMetadataServiceParameterArgs.builder()
                    .associations(Map.of("string", "string"))
                    .description("string")
                    .displayname("string")
                    .hidden(false)
                    .i18n(OnboardingCatalogProductMetadataServiceParameterI18nArgs.builder()
                        .de(OnboardingCatalogProductMetadataServiceParameterI18nDeArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .en(OnboardingCatalogProductMetadataServiceParameterI18nEnArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .es(OnboardingCatalogProductMetadataServiceParameterI18nEsArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .fr(OnboardingCatalogProductMetadataServiceParameterI18nFrArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .it(OnboardingCatalogProductMetadataServiceParameterI18nItArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .ja(OnboardingCatalogProductMetadataServiceParameterI18nJaArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .ko(OnboardingCatalogProductMetadataServiceParameterI18nKoArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .ptBr(OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .zhCn(OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .zhTw(OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs.builder()
                            .description("string")
                            .displayname("string")
                            .build())
                        .build())
                    .invalidmessage("string")
                    .layout("string")
                    .name("string")
                    .options(OnboardingCatalogProductMetadataServiceParameterOptionArgs.builder()
                        .displayname("string")
                        .i18n(OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs.builder()
                            .de(OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .en(OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .es(OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .fr(OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .it(OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .ja(OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .ko(OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .ptBr(OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .zhCn(OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs.builder()
                                .description("string")
                                .displayname("string")
                                .build())
                            .zhTw(OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs.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())
            .ui(OnboardingCatalogProductMetadataUiArgs.builder()
                .accessibleDuringProvision(false)
                .embeddableDashboard("string")
                .hidden(false)
                .primaryOfferingId("string")
                .sideBySideIndex(0)
                .strings(OnboardingCatalogProductMetadataUiStringsArgs.builder()
                    .en(OnboardingCatalogProductMetadataUiStringsEnArgs.builder()
                        .bullets(OnboardingCatalogProductMetadataUiStringsEnBulletArgs.builder()
                            .description("string")
                            .title("string")
                            .build())
                        .media(OnboardingCatalogProductMetadataUiStringsEnMediaArgs.builder()
                            .caption("string")
                            .type("string")
                            .url("string")
                            .thumbnail("string")
                            .build())
                        .navigationItems(OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs.builder()
                            .id("string")
                            .label("string")
                            .url("string")
                            .build())
                        .build())
                    .build())
                .urls(OnboardingCatalogProductMetadataUiUrlsArgs.builder()
                    .apidocsUrl("string")
                    .catalogDetailsUrl("string")
                    .customCreatePageUrl("string")
                    .dashboard("string")
                    .docUrl("string")
                    .instructionsUrl("string")
                    .termsUrl("string")
                    .build())
                .build())
            .build())
        .onboardingCatalogProductId("string")
        .overviewUi(OnboardingCatalogProductOverviewUiArgs.builder()
            .en(OnboardingCatalogProductOverviewUiEnArgs.builder()
                .description("string")
                .displayName("string")
                .longDescription("string")
                .build())
            .build())
        .images(OnboardingCatalogProductImagesArgs.builder()
            .image("string")
            .build())
        .env("string")
        .build());
    
    onboarding_catalog_product_resource = ibm.OnboardingCatalogProduct("onboardingCatalogProductResource",
        active=False,
        disabled=False,
        tags=["string"],
        product_id="string",
        kind="string",
        object_provider={
            "email": "string",
            "name": "string",
        },
        name="string",
        object_id="string",
        metadata={
            "other": {
                "composite": {
                    "childrens": [{
                        "kind": "string",
                        "name": "string",
                    }],
                    "composite_kind": "string",
                    "composite_tag": "string",
                },
                "pc": {
                    "support": {
                        "languages": ["string"],
                        "locations": ["string"],
                        "process": "string",
                        "process_i18n": {
                            "string": "string",
                        },
                        "status_url": "string",
                        "support_details": [{
                            "availability": {
                                "always_available": False,
                                "times": [{
                                    "day": 0,
                                    "end_time": "string",
                                    "start_time": "string",
                                }],
                                "timezone": "string",
                            },
                            "contact": "string",
                            "response_wait_time": {
                                "type": "string",
                                "value": 0,
                            },
                            "type": "string",
                        }],
                        "support_escalation": {
                            "contact": "string",
                            "escalation_wait_time": {
                                "type": "string",
                                "value": 0,
                            },
                            "response_wait_time": {
                                "type": "string",
                                "value": 0,
                            },
                        },
                        "support_type": "string",
                        "url": "string",
                    },
                },
            },
            "rc_compatible": False,
            "service": {
                "async_provisioning_supported": False,
                "async_unprovisioning_supported": False,
                "bindable": False,
                "custom_create_page_hybrid_enabled": 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,
            },
            "ui": {
                "accessible_during_provision": False,
                "embeddable_dashboard": "string",
                "hidden": False,
                "primary_offering_id": "string",
                "side_by_side_index": 0,
                "strings": {
                    "en": {
                        "bullets": [{
                            "description": "string",
                            "title": "string",
                        }],
                        "media": [{
                            "caption": "string",
                            "type": "string",
                            "url": "string",
                            "thumbnail": "string",
                        }],
                        "navigation_items": [{
                            "id": "string",
                            "label": "string",
                            "url": "string",
                        }],
                    },
                },
                "urls": {
                    "apidocs_url": "string",
                    "catalog_details_url": "string",
                    "custom_create_page_url": "string",
                    "dashboard": "string",
                    "doc_url": "string",
                    "instructions_url": "string",
                    "terms_url": "string",
                },
            },
        },
        onboarding_catalog_product_id="string",
        overview_ui={
            "en": {
                "description": "string",
                "display_name": "string",
                "long_description": "string",
            },
        },
        images={
            "image": "string",
        },
        env="string")
    
    const onboardingCatalogProductResource = new ibm.OnboardingCatalogProduct("onboardingCatalogProductResource", {
        active: false,
        disabled: false,
        tags: ["string"],
        productId: "string",
        kind: "string",
        objectProvider: {
            email: "string",
            name: "string",
        },
        name: "string",
        objectId: "string",
        metadata: {
            other: {
                composite: {
                    childrens: [{
                        kind: "string",
                        name: "string",
                    }],
                    compositeKind: "string",
                    compositeTag: "string",
                },
                pc: {
                    support: {
                        languages: ["string"],
                        locations: ["string"],
                        process: "string",
                        processI18n: {
                            string: "string",
                        },
                        statusUrl: "string",
                        supportDetails: [{
                            availability: {
                                alwaysAvailable: false,
                                times: [{
                                    day: 0,
                                    endTime: "string",
                                    startTime: "string",
                                }],
                                timezone: "string",
                            },
                            contact: "string",
                            responseWaitTime: {
                                type: "string",
                                value: 0,
                            },
                            type: "string",
                        }],
                        supportEscalation: {
                            contact: "string",
                            escalationWaitTime: {
                                type: "string",
                                value: 0,
                            },
                            responseWaitTime: {
                                type: "string",
                                value: 0,
                            },
                        },
                        supportType: "string",
                        url: "string",
                    },
                },
            },
            rcCompatible: false,
            service: {
                asyncProvisioningSupported: false,
                asyncUnprovisioningSupported: false,
                bindable: false,
                customCreatePageHybridEnabled: 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,
            },
            ui: {
                accessibleDuringProvision: false,
                embeddableDashboard: "string",
                hidden: false,
                primaryOfferingId: "string",
                sideBySideIndex: 0,
                strings: {
                    en: {
                        bullets: [{
                            description: "string",
                            title: "string",
                        }],
                        media: [{
                            caption: "string",
                            type: "string",
                            url: "string",
                            thumbnail: "string",
                        }],
                        navigationItems: [{
                            id: "string",
                            label: "string",
                            url: "string",
                        }],
                    },
                },
                urls: {
                    apidocsUrl: "string",
                    catalogDetailsUrl: "string",
                    customCreatePageUrl: "string",
                    dashboard: "string",
                    docUrl: "string",
                    instructionsUrl: "string",
                    termsUrl: "string",
                },
            },
        },
        onboardingCatalogProductId: "string",
        overviewUi: {
            en: {
                description: "string",
                displayName: "string",
                longDescription: "string",
            },
        },
        images: {
            image: "string",
        },
        env: "string",
    });
    
    type: ibm:OnboardingCatalogProduct
    properties:
        active: false
        disabled: false
        env: string
        images:
            image: string
        kind: string
        metadata:
            other:
                composite:
                    childrens:
                        - kind: string
                          name: string
                    compositeKind: string
                    compositeTag: string
                pc:
                    support:
                        languages:
                            - string
                        locations:
                            - string
                        process: string
                        processI18n:
                            string: string
                        statusUrl: string
                        supportDetails:
                            - availability:
                                alwaysAvailable: false
                                times:
                                    - day: 0
                                      endTime: string
                                      startTime: string
                                timezone: string
                              contact: string
                              responseWaitTime:
                                type: string
                                value: 0
                              type: string
                        supportEscalation:
                            contact: string
                            escalationWaitTime:
                                type: string
                                value: 0
                            responseWaitTime:
                                type: string
                                value: 0
                        supportType: string
                        url: string
            rcCompatible: false
            service:
                asyncProvisioningSupported: false
                asyncUnprovisioningSupported: false
                bindable: false
                customCreatePageHybridEnabled: 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
            ui:
                accessibleDuringProvision: false
                embeddableDashboard: string
                hidden: false
                primaryOfferingId: string
                sideBySideIndex: 0
                strings:
                    en:
                        bullets:
                            - description: string
                              title: string
                        media:
                            - caption: string
                              thumbnail: string
                              type: string
                              url: string
                        navigationItems:
                            - id: string
                              label: string
                              url: string
                urls:
                    apidocsUrl: string
                    catalogDetailsUrl: string
                    customCreatePageUrl: string
                    dashboard: string
                    docUrl: string
                    instructionsUrl: string
                    termsUrl: string
        name: string
        objectId: string
        objectProvider:
            email: string
            name: string
        onboardingCatalogProductId: string
        overviewUi:
            en:
                description: string
                displayName: string
                longDescription: string
        productId: string
        tags:
            - string
    

    OnboardingCatalogProduct 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 OnboardingCatalogProduct resource accepts the following input properties:

    Active bool
    Whether the service is active.
    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: service, platform_service, iaas, composite.
    ObjectProvider OnboardingCatalogProductObjectProvider
    The provider or owner of the product. Nested schema for object_provider:
    ProductId string
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    Tags 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 is 100 items. The minimum length is 0 items.
    Env string
    The environment to fetch this object from.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    Images OnboardingCatalogProductImages
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    Metadata OnboardingCatalogProductMetadata
    The global catalog service metadata object. Nested schema for metadata:
    Name string
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    ObjectId string
    The desired ID of the global catalog object.
    OnboardingCatalogProductId string
    The unique identifier of the onboarding_catalog_product.
    OverviewUi OnboardingCatalogProductOverviewUi
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    Active bool
    Whether the service is active.
    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: service, platform_service, iaas, composite.
    ObjectProvider OnboardingCatalogProductObjectProviderArgs
    The provider or owner of the product. Nested schema for object_provider:
    ProductId string
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    Tags []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 is 100 items. The minimum length is 0 items.
    Env string
    The environment to fetch this object from.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    Images OnboardingCatalogProductImagesArgs
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    Metadata OnboardingCatalogProductMetadataArgs
    The global catalog service metadata object. Nested schema for metadata:
    Name string
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    ObjectId string
    The desired ID of the global catalog object.
    OnboardingCatalogProductId string
    The unique identifier of the onboarding_catalog_product.
    OverviewUi OnboardingCatalogProductOverviewUiArgs
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    active Boolean
    Whether the service is active.
    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: service, platform_service, iaas, composite.
    objectProvider OnboardingCatalogProductObjectProvider
    The provider or owner of the product. Nested schema for object_provider:
    productId String
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    env String
    The environment to fetch this object from.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    images OnboardingCatalogProductImages
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    metadata OnboardingCatalogProductMetadata
    The global catalog service metadata object. Nested schema for metadata:
    name String
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    objectId String
    The desired ID of the global catalog object.
    onboardingCatalogProductId String
    The unique identifier of the onboarding_catalog_product.
    overviewUi OnboardingCatalogProductOverviewUi
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    active boolean
    Whether the service is active.
    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: service, platform_service, iaas, composite.
    objectProvider OnboardingCatalogProductObjectProvider
    The provider or owner of the product. Nested schema for object_provider:
    productId string
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    env string
    The environment to fetch this object from.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    images OnboardingCatalogProductImages
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    metadata OnboardingCatalogProductMetadata
    The global catalog service metadata object. Nested schema for metadata:
    name string
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    objectId string
    The desired ID of the global catalog object.
    onboardingCatalogProductId string
    The unique identifier of the onboarding_catalog_product.
    overviewUi OnboardingCatalogProductOverviewUi
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    active bool
    Whether the service is active.
    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: service, platform_service, iaas, composite.
    object_provider OnboardingCatalogProductObjectProviderArgs
    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 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    env str
    The environment to fetch this object from.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    images OnboardingCatalogProductImagesArgs
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    metadata OnboardingCatalogProductMetadataArgs
    The global catalog service metadata object. Nested schema for metadata:
    name str
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    object_id str
    The desired ID of the global catalog object.
    onboarding_catalog_product_id str
    The unique identifier of the onboarding_catalog_product.
    overview_ui OnboardingCatalogProductOverviewUiArgs
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    active Boolean
    Whether the service is active.
    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: service, platform_service, iaas, composite.
    objectProvider Property Map
    The provider or owner of the product. Nested schema for object_provider:
    productId String
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    env String
    The environment to fetch this object from.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    images Property Map
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    metadata Property Map
    The global catalog service metadata object. Nested schema for metadata:
    name String
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    objectId String
    The desired ID of the global catalog object.
    onboardingCatalogProductId String
    The unique identifier of the onboarding_catalog_product.
    overviewUi Property Map
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OnboardingCatalogProduct resource produces the following output properties:

    CatalogProductId string
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    GeoTags List<string>
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    Group bool
    (Boolean) Flag for group tile legacy service.
    Id string
    The provider-assigned unique ID for this managed resource.
    PricingTags List<string>
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    Url string
    (String) The global catalog URL of your product.
    CatalogProductId string
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    GeoTags []string
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    Group bool
    (Boolean) Flag for group tile legacy service.
    Id string
    The provider-assigned unique ID for this managed resource.
    PricingTags []string
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    Url string
    (String) The global catalog URL of your product.
    catalogProductId String
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    geoTags List<String>
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group Boolean
    (Boolean) Flag for group tile legacy service.
    id String
    The provider-assigned unique ID for this managed resource.
    pricingTags List<String>
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    url String
    (String) The global catalog URL of your product.
    catalogProductId string
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    geoTags string[]
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group boolean
    (Boolean) Flag for group tile legacy service.
    id string
    The provider-assigned unique ID for this managed resource.
    pricingTags string[]
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    url string
    (String) The global catalog URL of your product.
    catalog_product_id str
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    geo_tags Sequence[str]
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group bool
    (Boolean) Flag for group tile legacy service.
    id str
    The provider-assigned unique ID for this managed resource.
    pricing_tags Sequence[str]
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    url str
    (String) The global catalog URL of your product.
    catalogProductId String
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    geoTags List<String>
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group Boolean
    (Boolean) Flag for group tile legacy service.
    id String
    The provider-assigned unique ID for this managed resource.
    pricingTags List<String>
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    url String
    (String) The global catalog URL of your product.

    Look up Existing OnboardingCatalogProduct Resource

    Get an existing OnboardingCatalogProduct 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?: OnboardingCatalogProductState, opts?: CustomResourceOptions): OnboardingCatalogProduct
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            active: Optional[bool] = None,
            catalog_product_id: Optional[str] = None,
            disabled: Optional[bool] = None,
            env: Optional[str] = None,
            geo_tags: Optional[Sequence[str]] = None,
            group: Optional[bool] = None,
            images: Optional[OnboardingCatalogProductImagesArgs] = None,
            kind: Optional[str] = None,
            metadata: Optional[OnboardingCatalogProductMetadataArgs] = None,
            name: Optional[str] = None,
            object_id: Optional[str] = None,
            object_provider: Optional[OnboardingCatalogProductObjectProviderArgs] = None,
            onboarding_catalog_product_id: Optional[str] = None,
            overview_ui: Optional[OnboardingCatalogProductOverviewUiArgs] = None,
            pricing_tags: Optional[Sequence[str]] = None,
            product_id: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            url: Optional[str] = None) -> OnboardingCatalogProduct
    func GetOnboardingCatalogProduct(ctx *Context, name string, id IDInput, state *OnboardingCatalogProductState, opts ...ResourceOption) (*OnboardingCatalogProduct, error)
    public static OnboardingCatalogProduct Get(string name, Input<string> id, OnboardingCatalogProductState? state, CustomResourceOptions? opts = null)
    public static OnboardingCatalogProduct get(String name, Output<String> id, OnboardingCatalogProductState state, CustomResourceOptions options)
    resources:  _:    type: ibm:OnboardingCatalogProduct    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.
    The following state arguments are supported:
    Active bool
    Whether the service is active.
    CatalogProductId string
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    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 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    GeoTags List<string>
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    Group bool
    (Boolean) Flag for group tile legacy service.
    Images OnboardingCatalogProductImages
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    Kind string
    The kind of the global catalog object.

    • Constraints: Allowable values are: service, platform_service, iaas, composite.
    Metadata OnboardingCatalogProductMetadata
    The global catalog service metadata object. Nested schema for metadata:
    Name string
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    ObjectId string
    The desired ID of the global catalog object.
    ObjectProvider OnboardingCatalogProductObjectProvider
    The provider or owner of the product. Nested schema for object_provider:
    OnboardingCatalogProductId string
    The unique identifier of the onboarding_catalog_product.
    OverviewUi OnboardingCatalogProductOverviewUi
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    PricingTags List<string>
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    ProductId string
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    Tags 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 is 100 items. The minimum length is 0 items.
    Url string
    (String) The global catalog URL of your product.
    Active bool
    Whether the service is active.
    CatalogProductId string
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    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 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    GeoTags []string
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    Group bool
    (Boolean) Flag for group tile legacy service.
    Images OnboardingCatalogProductImagesArgs
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    Kind string
    The kind of the global catalog object.

    • Constraints: Allowable values are: service, platform_service, iaas, composite.
    Metadata OnboardingCatalogProductMetadataArgs
    The global catalog service metadata object. Nested schema for metadata:
    Name string
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    ObjectId string
    The desired ID of the global catalog object.
    ObjectProvider OnboardingCatalogProductObjectProviderArgs
    The provider or owner of the product. Nested schema for object_provider:
    OnboardingCatalogProductId string
    The unique identifier of the onboarding_catalog_product.
    OverviewUi OnboardingCatalogProductOverviewUiArgs
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    PricingTags []string
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    ProductId string
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    Tags []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 is 100 items. The minimum length is 0 items.
    Url string
    (String) The global catalog URL of your product.
    active Boolean
    Whether the service is active.
    catalogProductId String
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    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 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    geoTags List<String>
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group Boolean
    (Boolean) Flag for group tile legacy service.
    images OnboardingCatalogProductImages
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    kind String
    The kind of the global catalog object.

    • Constraints: Allowable values are: service, platform_service, iaas, composite.
    metadata OnboardingCatalogProductMetadata
    The global catalog service metadata object. Nested schema for metadata:
    name String
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    objectId String
    The desired ID of the global catalog object.
    objectProvider OnboardingCatalogProductObjectProvider
    The provider or owner of the product. Nested schema for object_provider:
    onboardingCatalogProductId String
    The unique identifier of the onboarding_catalog_product.
    overviewUi OnboardingCatalogProductOverviewUi
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    pricingTags List<String>
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    productId String
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    url String
    (String) The global catalog URL of your product.
    active boolean
    Whether the service is active.
    catalogProductId string
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    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 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    geoTags string[]
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group boolean
    (Boolean) Flag for group tile legacy service.
    images OnboardingCatalogProductImages
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    kind string
    The kind of the global catalog object.

    • Constraints: Allowable values are: service, platform_service, iaas, composite.
    metadata OnboardingCatalogProductMetadata
    The global catalog service metadata object. Nested schema for metadata:
    name string
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    objectId string
    The desired ID of the global catalog object.
    objectProvider OnboardingCatalogProductObjectProvider
    The provider or owner of the product. Nested schema for object_provider:
    onboardingCatalogProductId string
    The unique identifier of the onboarding_catalog_product.
    overviewUi OnboardingCatalogProductOverviewUi
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    pricingTags string[]
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    productId string
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    url string
    (String) The global catalog URL of your product.
    active bool
    Whether the service is active.
    catalog_product_id str
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    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 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    geo_tags Sequence[str]
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group bool
    (Boolean) Flag for group tile legacy service.
    images OnboardingCatalogProductImagesArgs
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    kind str
    The kind of the global catalog object.

    • Constraints: Allowable values are: service, platform_service, iaas, composite.
    metadata OnboardingCatalogProductMetadataArgs
    The global catalog service metadata object. Nested schema for metadata:
    name str
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    object_id str
    The desired ID of the global catalog object.
    object_provider OnboardingCatalogProductObjectProviderArgs
    The provider or owner of the product. Nested schema for object_provider:
    onboarding_catalog_product_id str
    The unique identifier of the onboarding_catalog_product.
    overview_ui OnboardingCatalogProductOverviewUiArgs
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    pricing_tags Sequence[str]
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    product_id str
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    url str
    (String) The global catalog URL of your product.
    active Boolean
    Whether the service is active.
    catalogProductId String
    (String) The ID of a global catalog object.

    • Constraints: The value must match regular expression /^\\S*$/.
    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 64 characters. The minimum length is 1 character. The value must match regular expression /^[a-z_.-]+$/.
    geoTags List<String>
    (List)

    • Constraints: The list items must match regular expression /./. The maximum length is 1000 items. The minimum length is 0 items.
    group Boolean
    (Boolean) Flag for group tile legacy service.
    images Property Map
    Images from the global catalog entry that help illustrate the service. Nested schema for images:
    kind String
    The kind of the global catalog object.

    • Constraints: Allowable values are: service, platform_service, iaas, composite.
    metadata Property Map
    The global catalog service metadata object. Nested schema for metadata:
    name String
    The programmatic name of this product.

    • Constraints: The value must match regular expression /^\\S*$/.
    objectId String
    The desired ID of the global catalog object.
    objectProvider Property Map
    The provider or owner of the product. Nested schema for object_provider:
    onboardingCatalogProductId String
    The unique identifier of the onboarding_catalog_product.
    overviewUi Property Map
    The object that contains the service details from the Overview page in global catalog. Nested schema for overview_ui:
    pricingTags List<String>
    (List) A list of tags that carry information about the pricing information of your product.

    • Constraints: The list items must match regular expression /^[a-z0-9\\-._]+$/. The maximum length is 100 items. The minimum length is 0 items.
    productId String
    The unique ID of the product.

    • Constraints: The maximum length is 71 characters. The minimum length is 71 characters. 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}$/.
    tags 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 is 100 items. The minimum length is 0 items.
    url String
    (String) The global catalog URL of your product.

    Supporting Types

    OnboardingCatalogProductImages, OnboardingCatalogProductImagesArgs

    Image string
    The URL for your product logo.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    Image string
    The URL for your product logo.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    image String
    The URL for your product logo.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    image string
    The URL for your product logo.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    image str
    The URL for your product logo.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    image String
    The URL for your product logo.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.

    OnboardingCatalogProductMetadata, OnboardingCatalogProductMetadataArgs

    Other OnboardingCatalogProductMetadataOther
    The additional metadata of the service in global catalog. Nested schema for other:
    RcCompatible bool
    Whether the object is compatible with the resource controller service.
    Service OnboardingCatalogProductMetadataService
    The global catalog metadata of the service. Nested schema for service:
    Ui OnboardingCatalogProductMetadataUi
    The UI metadata of this service. Nested schema for ui:
    Other OnboardingCatalogProductMetadataOther
    The additional metadata of the service in global catalog. Nested schema for other:
    RcCompatible bool
    Whether the object is compatible with the resource controller service.
    Service OnboardingCatalogProductMetadataService
    The global catalog metadata of the service. Nested schema for service:
    Ui OnboardingCatalogProductMetadataUi
    The UI metadata of this service. Nested schema for ui:
    other OnboardingCatalogProductMetadataOther
    The additional metadata of the service in global catalog. Nested schema for other:
    rcCompatible Boolean
    Whether the object is compatible with the resource controller service.
    service OnboardingCatalogProductMetadataService
    The global catalog metadata of the service. Nested schema for service:
    ui OnboardingCatalogProductMetadataUi
    The UI metadata of this service. Nested schema for ui:
    other OnboardingCatalogProductMetadataOther
    The additional metadata of the service in global catalog. Nested schema for other:
    rcCompatible boolean
    Whether the object is compatible with the resource controller service.
    service OnboardingCatalogProductMetadataService
    The global catalog metadata of the service. Nested schema for service:
    ui OnboardingCatalogProductMetadataUi
    The UI metadata of this service. Nested schema for ui:
    other OnboardingCatalogProductMetadataOther
    The additional metadata of the service in global catalog. Nested schema for other:
    rc_compatible bool
    Whether the object is compatible with the resource controller service.
    service OnboardingCatalogProductMetadataService
    The global catalog metadata of the service. Nested schema for service:
    ui OnboardingCatalogProductMetadataUi
    The UI metadata of this service. Nested schema for ui:
    other Property Map
    The additional metadata of the service in global catalog. Nested schema for other:
    rcCompatible 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:
    ui Property Map
    The UI metadata of this service. Nested schema for ui:

    OnboardingCatalogProductMetadataOther, OnboardingCatalogProductMetadataOtherArgs

    Composite OnboardingCatalogProductMetadataOtherComposite
    Optional metadata of the service defining it as a composite. Nested schema for composite:
    Pc OnboardingCatalogProductMetadataOtherPc
    The metadata of the service owned and managed by Partner Center - Sell. Nested schema for pc:
    Composite OnboardingCatalogProductMetadataOtherComposite
    Optional metadata of the service defining it as a composite. Nested schema for composite:
    Pc OnboardingCatalogProductMetadataOtherPc
    The metadata of the service owned and managed by Partner Center - Sell. Nested schema for pc:
    composite OnboardingCatalogProductMetadataOtherComposite
    Optional metadata of the service defining it as a composite. Nested schema for composite:
    pc OnboardingCatalogProductMetadataOtherPc
    The metadata of the service owned and managed by Partner Center - Sell. Nested schema for pc:
    composite OnboardingCatalogProductMetadataOtherComposite
    Optional metadata of the service defining it as a composite. Nested schema for composite:
    pc OnboardingCatalogProductMetadataOtherPc
    The metadata of the service owned and managed by Partner Center - Sell. Nested schema for pc:
    composite OnboardingCatalogProductMetadataOtherComposite
    Optional metadata of the service defining it as a composite. Nested schema for composite:
    pc OnboardingCatalogProductMetadataOtherPc
    The metadata of the service owned and managed by Partner Center - Sell. Nested schema for pc:
    composite Property Map
    Optional metadata of the service defining it as a composite. Nested schema for composite:
    pc Property Map
    The metadata of the service owned and managed by Partner Center - Sell. Nested schema for pc:

    OnboardingCatalogProductMetadataOtherComposite, OnboardingCatalogProductMetadataOtherCompositeArgs

    Childrens List<OnboardingCatalogProductMetadataOtherCompositeChildren>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for children:
    CompositeKind string
    The type of the composite service.

    • Constraints: Allowable values are: service, platform_service.
    CompositeTag string
    The tag used for the composite parent and its children.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^[ -~\\s]*$/.
    Childrens []OnboardingCatalogProductMetadataOtherCompositeChildren
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for children:
    CompositeKind string
    The type of the composite service.

    • Constraints: Allowable values are: service, platform_service.
    CompositeTag string
    The tag used for the composite parent and its children.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^[ -~\\s]*$/.
    childrens List<OnboardingCatalogProductMetadataOtherCompositeChildren>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for children:
    compositeKind String
    The type of the composite service.

    • Constraints: Allowable values are: service, platform_service.
    compositeTag String
    The tag used for the composite parent and its children.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^[ -~\\s]*$/.
    childrens OnboardingCatalogProductMetadataOtherCompositeChildren[]
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for children:
    compositeKind string
    The type of the composite service.

    • Constraints: Allowable values are: service, platform_service.
    compositeTag string
    The tag used for the composite parent and its children.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^[ -~\\s]*$/.
    childrens Sequence[OnboardingCatalogProductMetadataOtherCompositeChildren]
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for children:
    composite_kind str
    The type of the composite service.

    • Constraints: Allowable values are: service, platform_service.
    composite_tag str
    The tag used for the composite parent and its children.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^[ -~\\s]*$/.
    childrens List<Property Map>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for children:
    compositeKind String
    The type of the composite service.

    • Constraints: Allowable values are: service, platform_service.
    compositeTag String
    The tag used for the composite parent and its children.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^[ -~\\s]*$/.

    OnboardingCatalogProductMetadataOtherCompositeChildren, OnboardingCatalogProductMetadataOtherCompositeChildrenArgs

    Kind string
    The type of the composite child.

    • Constraints: Allowable values are: service, platform_service.
    Name string
    The name of the composite child.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^\\S*$/.
    Kind string
    The type of the composite child.

    • Constraints: Allowable values are: service, platform_service.
    Name string
    The name of the composite child.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^\\S*$/.
    kind String
    The type of the composite child.

    • Constraints: Allowable values are: service, platform_service.
    name String
    The name of the composite child.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^\\S*$/.
    kind string
    The type of the composite child.

    • Constraints: Allowable values are: service, platform_service.
    name string
    The name of the composite child.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^\\S*$/.
    kind str
    The type of the composite child.

    • Constraints: Allowable values are: service, platform_service.
    name str
    The name of the composite child.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^\\S*$/.
    kind String
    The type of the composite child.

    • Constraints: Allowable values are: service, platform_service.
    name String
    The name of the composite child.

    • Constraints: The maximum length is 100 characters. The minimum length is 2 characters. The value must match regular expression /^\\S*$/.

    OnboardingCatalogProductMetadataOtherPc, OnboardingCatalogProductMetadataOtherPcArgs

    Support OnboardingCatalogProductMetadataOtherPcSupport
    The support metadata of the service. Nested schema for support:
    Support OnboardingCatalogProductMetadataOtherPcSupport
    The support metadata of the service. Nested schema for support:
    support OnboardingCatalogProductMetadataOtherPcSupport
    The support metadata of the service. Nested schema for support:
    support OnboardingCatalogProductMetadataOtherPcSupport
    The support metadata of the service. Nested schema for support:
    support OnboardingCatalogProductMetadataOtherPcSupport
    The support metadata of the service. Nested schema for support:
    support Property Map
    The support metadata of the service. Nested schema for support:

    OnboardingCatalogProductMetadataOtherPcSupport, OnboardingCatalogProductMetadataOtherPcSupportArgs

    Languages List<string>
    The languages in which support is available.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    Locations List<string>
    The countries in which your support is available. Provide a list of country codes.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    Process string
    The description of your support process.

    • Constraints: The maximum length is 1500 characters. The minimum length is 0 characters.
    ProcessI18n Dictionary<string, string>
    The description of your support process.
    StatusUrl string
    The URL where the status of your service is available.
    SupportDetails List<OnboardingCatalogProductMetadataOtherPcSupportSupportDetail>
    The support options for the service.

    • Constraints: The maximum length is 6 items. The minimum length is 0 items. Nested schema for support_details:
    SupportEscalation OnboardingCatalogProductMetadataOtherPcSupportSupportEscalation
    The details of the support escalation process. Nested schema for support_escalation:
    SupportType string
    The type of support provided.

    • Constraints: Allowable values are: community, third_party, ibm, ibm_cloud.
    Url string
    The support site URL where the support for your service is available.
    Languages []string
    The languages in which support is available.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    Locations []string
    The countries in which your support is available. Provide a list of country codes.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    Process string
    The description of your support process.

    • Constraints: The maximum length is 1500 characters. The minimum length is 0 characters.
    ProcessI18n map[string]string
    The description of your support process.
    StatusUrl string
    The URL where the status of your service is available.
    SupportDetails []OnboardingCatalogProductMetadataOtherPcSupportSupportDetail
    The support options for the service.

    • Constraints: The maximum length is 6 items. The minimum length is 0 items. Nested schema for support_details:
    SupportEscalation OnboardingCatalogProductMetadataOtherPcSupportSupportEscalation
    The details of the support escalation process. Nested schema for support_escalation:
    SupportType string
    The type of support provided.

    • Constraints: Allowable values are: community, third_party, ibm, ibm_cloud.
    Url string
    The support site URL where the support for your service is available.
    languages List<String>
    The languages in which support is available.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    locations List<String>
    The countries in which your support is available. Provide a list of country codes.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    process String
    The description of your support process.

    • Constraints: The maximum length is 1500 characters. The minimum length is 0 characters.
    processI18n Map<String,String>
    The description of your support process.
    statusUrl String
    The URL where the status of your service is available.
    supportDetails List<OnboardingCatalogProductMetadataOtherPcSupportSupportDetail>
    The support options for the service.

    • Constraints: The maximum length is 6 items. The minimum length is 0 items. Nested schema for support_details:
    supportEscalation OnboardingCatalogProductMetadataOtherPcSupportSupportEscalation
    The details of the support escalation process. Nested schema for support_escalation:
    supportType String
    The type of support provided.

    • Constraints: Allowable values are: community, third_party, ibm, ibm_cloud.
    url String
    The support site URL where the support for your service is available.
    languages string[]
    The languages in which support is available.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    locations string[]
    The countries in which your support is available. Provide a list of country codes.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    process string
    The description of your support process.

    • Constraints: The maximum length is 1500 characters. The minimum length is 0 characters.
    processI18n {[key: string]: string}
    The description of your support process.
    statusUrl string
    The URL where the status of your service is available.
    supportDetails OnboardingCatalogProductMetadataOtherPcSupportSupportDetail[]
    The support options for the service.

    • Constraints: The maximum length is 6 items. The minimum length is 0 items. Nested schema for support_details:
    supportEscalation OnboardingCatalogProductMetadataOtherPcSupportSupportEscalation
    The details of the support escalation process. Nested schema for support_escalation:
    supportType string
    The type of support provided.

    • Constraints: Allowable values are: community, third_party, ibm, ibm_cloud.
    url string
    The support site URL where the support for your service is available.
    languages Sequence[str]
    The languages in which support is available.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    locations Sequence[str]
    The countries in which your support is available. Provide a list of country codes.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    process str
    The description of your support process.

    • Constraints: The maximum length is 1500 characters. The minimum length is 0 characters.
    process_i18n Mapping[str, str]
    The description of your support process.
    status_url str
    The URL where the status of your service is available.
    support_details Sequence[OnboardingCatalogProductMetadataOtherPcSupportSupportDetail]
    The support options for the service.

    • Constraints: The maximum length is 6 items. The minimum length is 0 items. Nested schema for support_details:
    support_escalation OnboardingCatalogProductMetadataOtherPcSupportSupportEscalation
    The details of the support escalation process. Nested schema for support_escalation:
    support_type str
    The type of support provided.

    • Constraints: Allowable values are: community, third_party, ibm, ibm_cloud.
    url str
    The support site URL where the support for your service is available.
    languages List<String>
    The languages in which support is available.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    locations List<String>
    The countries in which your support is available. Provide a list of country codes.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items.
    process String
    The description of your support process.

    • Constraints: The maximum length is 1500 characters. The minimum length is 0 characters.
    processI18n Map<String>
    The description of your support process.
    statusUrl String
    The URL where the status of your service is available.
    supportDetails List<Property Map>
    The support options for the service.

    • Constraints: The maximum length is 6 items. The minimum length is 0 items. Nested schema for support_details:
    supportEscalation Property Map
    The details of the support escalation process. Nested schema for support_escalation:
    supportType String
    The type of support provided.

    • Constraints: Allowable values are: community, third_party, ibm, ibm_cloud.
    url String
    The support site URL where the support for your service is available.

    OnboardingCatalogProductMetadataOtherPcSupportSupportDetail, OnboardingCatalogProductMetadataOtherPcSupportSupportDetailArgs

    Availability OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailability
    The time period during which support is available for the service. Nested schema for availability:
    Contact string
    The contact information for this support channel.
    ResponseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    Type string
    The type of support for this support channel.

    • Constraints: Allowable values are: support_site, email, chat, slack, phone, other.
    Availability OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailability
    The time period during which support is available for the service. Nested schema for availability:
    Contact string
    The contact information for this support channel.
    ResponseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    Type string
    The type of support for this support channel.

    • Constraints: Allowable values are: support_site, email, chat, slack, phone, other.
    availability OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailability
    The time period during which support is available for the service. Nested schema for availability:
    contact String
    The contact information for this support channel.
    responseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    type String
    The type of support for this support channel.

    • Constraints: Allowable values are: support_site, email, chat, slack, phone, other.
    availability OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailability
    The time period during which support is available for the service. Nested schema for availability:
    contact string
    The contact information for this support channel.
    responseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    type string
    The type of support for this support channel.

    • Constraints: Allowable values are: support_site, email, chat, slack, phone, other.
    availability OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailability
    The time period during which support is available for the service. Nested schema for availability:
    contact str
    The contact information for this support channel.
    response_wait_time OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    type str
    The type of support for this support channel.

    • Constraints: Allowable values are: support_site, email, chat, slack, phone, other.
    availability Property Map
    The time period during which support is available for the service. Nested schema for availability:
    contact String
    The contact information for this support channel.
    responseWaitTime Property Map
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    type String
    The type of support for this support channel.

    • Constraints: Allowable values are: support_site, email, chat, slack, phone, other.

    OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailability, OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityArgs

    AlwaysAvailable bool
    Whether the support for the service is always available.
    Times List<OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTime>
    The support hours available for the service.

    • Constraints: The maximum length is 7 items. The minimum length is 0 items. Nested schema for times:
    Timezone string
    The timezones in which support is available. Only relevant if always_available is set to false.
    AlwaysAvailable bool
    Whether the support for the service is always available.
    Times []OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTime
    The support hours available for the service.

    • Constraints: The maximum length is 7 items. The minimum length is 0 items. Nested schema for times:
    Timezone string
    The timezones in which support is available. Only relevant if always_available is set to false.
    alwaysAvailable Boolean
    Whether the support for the service is always available.
    times List<OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTime>
    The support hours available for the service.

    • Constraints: The maximum length is 7 items. The minimum length is 0 items. Nested schema for times:
    timezone String
    The timezones in which support is available. Only relevant if always_available is set to false.
    alwaysAvailable boolean
    Whether the support for the service is always available.
    times OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTime[]
    The support hours available for the service.

    • Constraints: The maximum length is 7 items. The minimum length is 0 items. Nested schema for times:
    timezone string
    The timezones in which support is available. Only relevant if always_available is set to false.
    always_available bool
    Whether the support for the service is always available.
    times Sequence[OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTime]
    The support hours available for the service.

    • Constraints: The maximum length is 7 items. The minimum length is 0 items. Nested schema for times:
    timezone str
    The timezones in which support is available. Only relevant if always_available is set to false.
    alwaysAvailable Boolean
    Whether the support for the service is always available.
    times List<Property Map>
    The support hours available for the service.

    • Constraints: The maximum length is 7 items. The minimum length is 0 items. Nested schema for times:
    timezone String
    The timezones in which support is available. Only relevant if always_available is set to false.

    OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTime, OnboardingCatalogProductMetadataOtherPcSupportSupportDetailAvailabilityTimeArgs

    Day double
    The number of days in a week when support is available for the service.
    EndTime string
    The time in the day when support ends for the service.
    StartTime string
    The time in the day when support starts for the service.
    Day float64
    The number of days in a week when support is available for the service.
    EndTime string
    The time in the day when support ends for the service.
    StartTime string
    The time in the day when support starts for the service.
    day Double
    The number of days in a week when support is available for the service.
    endTime String
    The time in the day when support ends for the service.
    startTime String
    The time in the day when support starts for the service.
    day number
    The number of days in a week when support is available for the service.
    endTime string
    The time in the day when support ends for the service.
    startTime string
    The time in the day when support starts for the service.
    day float
    The number of days in a week when support is available for the service.
    end_time str
    The time in the day when support ends for the service.
    start_time str
    The time in the day when support starts for the service.
    day Number
    The number of days in a week when support is available for the service.
    endTime String
    The time in the day when support ends for the service.
    startTime String
    The time in the day when support starts for the service.

    OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTime, OnboardingCatalogProductMetadataOtherPcSupportSupportDetailResponseWaitTimeArgs

    Type string
    The unit of the time.
    Value double
    The number of time units.
    Type string
    The unit of the time.
    Value float64
    The number of time units.
    type String
    The unit of the time.
    value Double
    The number of time units.
    type string
    The unit of the time.
    value number
    The number of time units.
    type str
    The unit of the time.
    value float
    The number of time units.
    type String
    The unit of the time.
    value Number
    The number of time units.

    OnboardingCatalogProductMetadataOtherPcSupportSupportEscalation, OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationArgs

    Contact string
    The support contact information of the escalation team.
    EscalationWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTime
    The time interval of providing support in units and values. Nested schema for escalation_wait_time:
    ResponseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    Contact string
    The support contact information of the escalation team.
    EscalationWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTime
    The time interval of providing support in units and values. Nested schema for escalation_wait_time:
    ResponseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    contact String
    The support contact information of the escalation team.
    escalationWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTime
    The time interval of providing support in units and values. Nested schema for escalation_wait_time:
    responseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    contact string
    The support contact information of the escalation team.
    escalationWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTime
    The time interval of providing support in units and values. Nested schema for escalation_wait_time:
    responseWaitTime OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    contact str
    The support contact information of the escalation team.
    escalation_wait_time OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTime
    The time interval of providing support in units and values. Nested schema for escalation_wait_time:
    response_wait_time OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTime
    The time interval of providing support in units and values. Nested schema for response_wait_time:
    contact String
    The support contact information of the escalation team.
    escalationWaitTime Property Map
    The time interval of providing support in units and values. Nested schema for escalation_wait_time:
    responseWaitTime Property Map
    The time interval of providing support in units and values. Nested schema for response_wait_time:

    OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTime, OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationEscalationWaitTimeArgs

    Type string
    The unit of the time.
    Value double
    The number of time units.
    Type string
    The unit of the time.
    Value float64
    The number of time units.
    type String
    The unit of the time.
    value Double
    The number of time units.
    type string
    The unit of the time.
    value number
    The number of time units.
    type str
    The unit of the time.
    value float
    The number of time units.
    type String
    The unit of the time.
    value Number
    The number of time units.

    OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTime, OnboardingCatalogProductMetadataOtherPcSupportSupportEscalationResponseWaitTimeArgs

    Type string
    The unit of the time.
    Value double
    The number of time units.
    Type string
    The unit of the time.
    Value float64
    The number of time units.
    type String
    The unit of the time.
    value Double
    The number of time units.
    type string
    The unit of the time.
    value number
    The number of time units.
    type str
    The unit of the time.
    value float
    The number of time units.
    type String
    The unit of the time.
    value Number
    The number of time units.

    OnboardingCatalogProductMetadataService, OnboardingCatalogProductMetadataServiceArgs

    AsyncProvisioningSupported bool
    Used by catalog to tell if it is an async provisioning service or not.
    AsyncUnprovisioningSupported bool
    Used by catalog to tell if it is an async unprovisioning service or not.
    Bindable bool
    Deprecated. Controls the Connections tab on the Resource Details page.
    CustomCreatePageHybridEnabled bool
    Controls if custom create page hybrid is enabled or not. Use of this flag is no longer recommended.
    IamCompatible bool
    Whether the service is compatible with the IAM service.
    Parameters List<OnboardingCatalogProductMetadataServiceParameter>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for parameters:
    PlanUpdateable bool
    Indicates plan update support and controls the Plan tab on the Resource Details page.
    RcProvisionable bool
    Whether the service is provisionable by the resource controller service.
    ServiceKeySupported bool
    Indicates service credentials support and controls the Service Credential tab on Resource Details page.
    UniqueApiKey bool
    Indicates whether the deployment uses a unique API key or not.
    AsyncProvisioningSupported bool
    Used by catalog to tell if it is an async provisioning service or not.
    AsyncUnprovisioningSupported bool
    Used by catalog to tell if it is an async unprovisioning service or not.
    Bindable bool
    Deprecated. Controls the Connections tab on the Resource Details page.
    CustomCreatePageHybridEnabled bool
    Controls if custom create page hybrid is enabled or not. Use of this flag is no longer recommended.
    IamCompatible bool
    Whether the service is compatible with the IAM service.
    Parameters []OnboardingCatalogProductMetadataServiceParameter
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for parameters:
    PlanUpdateable bool
    Indicates plan update support and controls the Plan tab on the Resource Details page.
    RcProvisionable bool
    Whether the service is provisionable by the resource controller service.
    ServiceKeySupported bool
    Indicates service credentials support and controls the Service Credential tab on Resource Details page.
    UniqueApiKey bool
    Indicates whether the deployment uses a unique API key or not.
    asyncProvisioningSupported Boolean
    Used by catalog to tell if it is an async provisioning service or not.
    asyncUnprovisioningSupported Boolean
    Used by catalog to tell if it is an async unprovisioning service or not.
    bindable Boolean
    Deprecated. Controls the Connections tab on the Resource Details page.
    customCreatePageHybridEnabled Boolean
    Controls if custom create page hybrid is enabled or not. Use of this flag is no longer recommended.
    iamCompatible Boolean
    Whether the service is compatible with the IAM service.
    parameters List<OnboardingCatalogProductMetadataServiceParameter>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for parameters:
    planUpdateable Boolean
    Indicates plan update support and controls the Plan tab on the Resource Details page.
    rcProvisionable Boolean
    Whether the service is provisionable by the resource controller service.
    serviceKeySupported Boolean
    Indicates service credentials support and controls the Service Credential tab on Resource Details page.
    uniqueApiKey Boolean
    Indicates whether the deployment uses a unique API key or not.
    asyncProvisioningSupported boolean
    Used by catalog to tell if it is an async provisioning service or not.
    asyncUnprovisioningSupported boolean
    Used by catalog to tell if it is an async unprovisioning service or not.
    bindable boolean
    Deprecated. Controls the Connections tab on the Resource Details page.
    customCreatePageHybridEnabled boolean
    Controls if custom create page hybrid is enabled or not. Use of this flag is no longer recommended.
    iamCompatible boolean
    Whether the service is compatible with the IAM service.
    parameters OnboardingCatalogProductMetadataServiceParameter[]
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for parameters:
    planUpdateable boolean
    Indicates plan update support and controls the Plan tab on the Resource Details page.
    rcProvisionable boolean
    Whether the service is provisionable by the resource controller service.
    serviceKeySupported boolean
    Indicates service credentials support and controls the Service Credential tab on Resource Details page.
    uniqueApiKey boolean
    Indicates whether the deployment uses a unique API key or not.
    async_provisioning_supported bool
    Used by catalog to tell if it is an async provisioning service or not.
    async_unprovisioning_supported bool
    Used by catalog to tell if it is an async unprovisioning service or not.
    bindable bool
    Deprecated. Controls the Connections tab on the Resource Details page.
    custom_create_page_hybrid_enabled bool
    Controls if custom create page hybrid is enabled or not. Use of this flag is no longer recommended.
    iam_compatible bool
    Whether the service is compatible with the IAM service.
    parameters Sequence[OnboardingCatalogProductMetadataServiceParameter]
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for parameters:
    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_supported bool
    Indicates service credentials support and controls the Service Credential tab on Resource Details page.
    unique_api_key bool
    Indicates whether the deployment uses a unique API key or not.
    asyncProvisioningSupported Boolean
    Used by catalog to tell if it is an async provisioning service or not.
    asyncUnprovisioningSupported Boolean
    Used by catalog to tell if it is an async unprovisioning service or not.
    bindable Boolean
    Deprecated. Controls the Connections tab on the Resource Details page.
    customCreatePageHybridEnabled Boolean
    Controls if custom create page hybrid is enabled or not. Use of this flag is no longer recommended.
    iamCompatible Boolean
    Whether the service is compatible with the IAM service.
    parameters List<Property Map>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for parameters:
    planUpdateable Boolean
    Indicates plan update support and controls the Plan tab on the Resource Details page.
    rcProvisionable Boolean
    Whether the service is provisionable by the resource controller service.
    serviceKeySupported Boolean
    Indicates service credentials support and controls the Service Credential tab on Resource Details page.
    uniqueApiKey Boolean
    Indicates whether the deployment uses a unique API key or not.

    OnboardingCatalogProductMetadataServiceParameter, OnboardingCatalogProductMetadataServiceParameterArgs

    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Displayname string
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Hidden bool
    Indicates whether the custom parameters is hidden required or not.
    I18n OnboardingCatalogProductMetadataServiceParameterI18n
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Layout string
    Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Name string
    The key of the parameter.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Options List<OnboardingCatalogProductMetadataServiceParameterOption>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for options:
    OptionsUrl string
    The options URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    Pattern string
    A regular expression that the value is checked against.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    Placeholder string
    The placeholder text for custom parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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.
    ValidationUrl string
    The validation URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    Values List<string>
    • Constraints: The list items must match regular expression /^[ -~\\s]*$/. The maximum length is 1000 items. The minimum length is 0 items.
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Displayname string
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Hidden bool
    Indicates whether the custom parameters is hidden required or not.
    I18n OnboardingCatalogProductMetadataServiceParameterI18n
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Layout string
    Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Name string
    The key of the parameter.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    Options []OnboardingCatalogProductMetadataServiceParameterOption
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for options:
    OptionsUrl string
    The options URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    Pattern string
    A regular expression that the value is checked against.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    Placeholder string
    The placeholder text for custom parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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.
    ValidationUrl string
    The validation URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    Values []string
    • Constraints: The list items must match regular expression /^[ -~\\s]*$/. The maximum length is 1000 items. The minimum length is 0 items.
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    displayname String
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    hidden Boolean
    Indicates whether the custom parameters is hidden required or not.
    i18n OnboardingCatalogProductMetadataServiceParameterI18n
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    layout String
    Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    name String
    The key of the parameter.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    options List<OnboardingCatalogProductMetadataServiceParameterOption>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for options:
    optionsUrl String
    The options URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    pattern String
    A regular expression that the value is checked against.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    placeholder String
    The placeholder text for custom parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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.
    validationUrl String
    The validation URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    values List<String>
    • Constraints: The list items must match regular expression /^[ -~\\s]*$/. The maximum length is 1000 items. The minimum length is 0 items.
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    displayname string
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    hidden boolean
    Indicates whether the custom parameters is hidden required or not.
    i18n OnboardingCatalogProductMetadataServiceParameterI18n
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    layout string
    Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    name string
    The key of the parameter.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    options OnboardingCatalogProductMetadataServiceParameterOption[]
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for options:
    optionsUrl string
    The options URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    pattern string
    A regular expression that the value is checked against.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    placeholder string
    The placeholder text for custom parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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.
    validationUrl string
    The validation URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    values string[]
    • Constraints: The list items must match regular expression /^[ -~\\s]*$/. The maximum length is 1000 items. The minimum length is 0 items.
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    displayname str
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    hidden bool
    Indicates whether the custom parameters is hidden required or not.
    i18n OnboardingCatalogProductMetadataServiceParameterI18n
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    layout str
    Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    name str
    The key of the parameter.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    options Sequence[OnboardingCatalogProductMetadataServiceParameterOption]
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for options:
    options_url str
    The options URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    pattern str
    A regular expression that the value is checked against.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    placeholder str
    The placeholder text for custom parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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.
    validation_url str
    The validation URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    values Sequence[str]
    • Constraints: The list items must match regular expression /^[ -~\\s]*$/. The maximum length is 1000 items. The minimum length is 0 items.
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    displayname String
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    hidden 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 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    layout String
    Specifies the layout of check box or radio input types. When unspecified, the default layout is horizontal.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    name String
    The key of the parameter.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    options List<Property Map>
    • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for options:
    optionsUrl String
    The options URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    pattern String
    A regular expression that the value is checked against.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    placeholder String
    The placeholder text for custom parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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.
    validationUrl String
    The validation URL for custom service parameters.

    • Constraints: The maximum length is 2083 characters. The minimum length is 1 character. 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]*)?$/.
    values List<String>
    • Constraints: The list items must match regular expression /^[ -~\\s]*$/. The maximum length is 1000 items. The minimum length is 0 items.

    OnboardingCatalogProductMetadataServiceParameterI18n, OnboardingCatalogProductMetadataServiceParameterI18nArgs

    De OnboardingCatalogProductMetadataServiceParameterI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    En OnboardingCatalogProductMetadataServiceParameterI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    Es OnboardingCatalogProductMetadataServiceParameterI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    Fr OnboardingCatalogProductMetadataServiceParameterI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    It OnboardingCatalogProductMetadataServiceParameterI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    Ja OnboardingCatalogProductMetadataServiceParameterI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    Ko OnboardingCatalogProductMetadataServiceParameterI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    PtBr OnboardingCatalogProductMetadataServiceParameterI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    ZhCn OnboardingCatalogProductMetadataServiceParameterI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    ZhTw OnboardingCatalogProductMetadataServiceParameterI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    De OnboardingCatalogProductMetadataServiceParameterI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    En OnboardingCatalogProductMetadataServiceParameterI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    Es OnboardingCatalogProductMetadataServiceParameterI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    Fr OnboardingCatalogProductMetadataServiceParameterI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    It OnboardingCatalogProductMetadataServiceParameterI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    Ja OnboardingCatalogProductMetadataServiceParameterI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    Ko OnboardingCatalogProductMetadataServiceParameterI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    PtBr OnboardingCatalogProductMetadataServiceParameterI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    ZhCn OnboardingCatalogProductMetadataServiceParameterI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    ZhTw OnboardingCatalogProductMetadataServiceParameterI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    de OnboardingCatalogProductMetadataServiceParameterI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    en OnboardingCatalogProductMetadataServiceParameterI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    es OnboardingCatalogProductMetadataServiceParameterI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    fr OnboardingCatalogProductMetadataServiceParameterI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    it OnboardingCatalogProductMetadataServiceParameterI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    ja OnboardingCatalogProductMetadataServiceParameterI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    ko OnboardingCatalogProductMetadataServiceParameterI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    ptBr OnboardingCatalogProductMetadataServiceParameterI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zhCn OnboardingCatalogProductMetadataServiceParameterI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zhTw OnboardingCatalogProductMetadataServiceParameterI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    de OnboardingCatalogProductMetadataServiceParameterI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    en OnboardingCatalogProductMetadataServiceParameterI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    es OnboardingCatalogProductMetadataServiceParameterI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    fr OnboardingCatalogProductMetadataServiceParameterI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    it OnboardingCatalogProductMetadataServiceParameterI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    ja OnboardingCatalogProductMetadataServiceParameterI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    ko OnboardingCatalogProductMetadataServiceParameterI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    ptBr OnboardingCatalogProductMetadataServiceParameterI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zhCn OnboardingCatalogProductMetadataServiceParameterI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zhTw OnboardingCatalogProductMetadataServiceParameterI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    de OnboardingCatalogProductMetadataServiceParameterI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    en OnboardingCatalogProductMetadataServiceParameterI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    es OnboardingCatalogProductMetadataServiceParameterI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    fr OnboardingCatalogProductMetadataServiceParameterI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    it OnboardingCatalogProductMetadataServiceParameterI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    ja OnboardingCatalogProductMetadataServiceParameterI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    ko OnboardingCatalogProductMetadataServiceParameterI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    pt_br OnboardingCatalogProductMetadataServiceParameterI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zh_cn OnboardingCatalogProductMetadataServiceParameterI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zh_tw OnboardingCatalogProductMetadataServiceParameterI18nZhTw
    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:
    ptBr Property Map
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zhCn Property Map
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zhTw Property Map
    The translations for custom service parameter display name and description. Nested schema for zh_tw:

    OnboardingCatalogProductMetadataServiceParameterI18nDe, OnboardingCatalogProductMetadataServiceParameterI18nDeArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nEn, OnboardingCatalogProductMetadataServiceParameterI18nEnArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nEs, OnboardingCatalogProductMetadataServiceParameterI18nEsArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nFr, OnboardingCatalogProductMetadataServiceParameterI18nFrArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nIt, OnboardingCatalogProductMetadataServiceParameterI18nItArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nJa, OnboardingCatalogProductMetadataServiceParameterI18nJaArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nKo, OnboardingCatalogProductMetadataServiceParameterI18nKoArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nPtBr, OnboardingCatalogProductMetadataServiceParameterI18nPtBrArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nZhCn, OnboardingCatalogProductMetadataServiceParameterI18nZhCnArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterI18nZhTw, OnboardingCatalogProductMetadataServiceParameterI18nZhTwArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOption, OnboardingCatalogProductMetadataServiceParameterOptionArgs

    Displayname string
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    I18n OnboardingCatalogProductMetadataServiceParameterOptionI18n
    The description for the object. Nested schema for i18n:
    Value string
    The value for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    Displayname string
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    I18n OnboardingCatalogProductMetadataServiceParameterOptionI18n
    The description for the object. Nested schema for i18n:
    Value string
    The value for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    displayname String
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    i18n OnboardingCatalogProductMetadataServiceParameterOptionI18n
    The description for the object. Nested schema for i18n:
    value String
    The value for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    displayname string
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    i18n OnboardingCatalogProductMetadataServiceParameterOptionI18n
    The description for the object. Nested schema for i18n:
    value string
    The value for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    displayname str
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    i18n OnboardingCatalogProductMetadataServiceParameterOptionI18n
    The description for the object. Nested schema for i18n:
    value str
    The value for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /./.
    displayname String
    The display name for custom service parameters.

    • Constraints: The maximum length is 2000 characters. The minimum length is 1 character. The value must match regular expression /^[ -~\\s]*$/.
    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 2000 characters. The minimum length is 1 character. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18n, OnboardingCatalogProductMetadataServiceParameterOptionI18nArgs

    De OnboardingCatalogProductMetadataServiceParameterOptionI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    En OnboardingCatalogProductMetadataServiceParameterOptionI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    Es OnboardingCatalogProductMetadataServiceParameterOptionI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    Fr OnboardingCatalogProductMetadataServiceParameterOptionI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    It OnboardingCatalogProductMetadataServiceParameterOptionI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    Ja OnboardingCatalogProductMetadataServiceParameterOptionI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    Ko OnboardingCatalogProductMetadataServiceParameterOptionI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    PtBr OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    ZhCn OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    ZhTw OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    De OnboardingCatalogProductMetadataServiceParameterOptionI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    En OnboardingCatalogProductMetadataServiceParameterOptionI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    Es OnboardingCatalogProductMetadataServiceParameterOptionI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    Fr OnboardingCatalogProductMetadataServiceParameterOptionI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    It OnboardingCatalogProductMetadataServiceParameterOptionI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    Ja OnboardingCatalogProductMetadataServiceParameterOptionI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    Ko OnboardingCatalogProductMetadataServiceParameterOptionI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    PtBr OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    ZhCn OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    ZhTw OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    de OnboardingCatalogProductMetadataServiceParameterOptionI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    en OnboardingCatalogProductMetadataServiceParameterOptionI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    es OnboardingCatalogProductMetadataServiceParameterOptionI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    fr OnboardingCatalogProductMetadataServiceParameterOptionI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    it OnboardingCatalogProductMetadataServiceParameterOptionI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    ja OnboardingCatalogProductMetadataServiceParameterOptionI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    ko OnboardingCatalogProductMetadataServiceParameterOptionI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    ptBr OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zhCn OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zhTw OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    de OnboardingCatalogProductMetadataServiceParameterOptionI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    en OnboardingCatalogProductMetadataServiceParameterOptionI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    es OnboardingCatalogProductMetadataServiceParameterOptionI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    fr OnboardingCatalogProductMetadataServiceParameterOptionI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    it OnboardingCatalogProductMetadataServiceParameterOptionI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    ja OnboardingCatalogProductMetadataServiceParameterOptionI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    ko OnboardingCatalogProductMetadataServiceParameterOptionI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    ptBr OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zhCn OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zhTw OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTw
    The translations for custom service parameter display name and description. Nested schema for zh_tw:
    de OnboardingCatalogProductMetadataServiceParameterOptionI18nDe
    The translations for custom service parameter display name and description. Nested schema for de:
    en OnboardingCatalogProductMetadataServiceParameterOptionI18nEn
    The translations for custom service parameter display name and description. Nested schema for en:
    es OnboardingCatalogProductMetadataServiceParameterOptionI18nEs
    The translations for custom service parameter display name and description. Nested schema for es:
    fr OnboardingCatalogProductMetadataServiceParameterOptionI18nFr
    The translations for custom service parameter display name and description. Nested schema for fr:
    it OnboardingCatalogProductMetadataServiceParameterOptionI18nIt
    The translations for custom service parameter display name and description. Nested schema for it:
    ja OnboardingCatalogProductMetadataServiceParameterOptionI18nJa
    The translations for custom service parameter display name and description. Nested schema for ja:
    ko OnboardingCatalogProductMetadataServiceParameterOptionI18nKo
    The translations for custom service parameter display name and description. Nested schema for ko:
    pt_br OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBr
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zh_cn OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCn
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zh_tw OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTw
    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:
    ptBr Property Map
    The translations for custom service parameter display name and description. Nested schema for pt_br:
    zhCn Property Map
    The translations for custom service parameter display name and description. Nested schema for zh_cn:
    zhTw Property Map
    The translations for custom service parameter display name and description. Nested schema for zh_tw:

    OnboardingCatalogProductMetadataServiceParameterOptionI18nDe, OnboardingCatalogProductMetadataServiceParameterOptionI18nDeArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nEn, OnboardingCatalogProductMetadataServiceParameterOptionI18nEnArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nEs, OnboardingCatalogProductMetadataServiceParameterOptionI18nEsArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nFr, OnboardingCatalogProductMetadataServiceParameterOptionI18nFrArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nIt, OnboardingCatalogProductMetadataServiceParameterOptionI18nItArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nJa, OnboardingCatalogProductMetadataServiceParameterOptionI18nJaArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nKo, OnboardingCatalogProductMetadataServiceParameterOptionI18nKoArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBr, OnboardingCatalogProductMetadataServiceParameterOptionI18nPtBrArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCn, OnboardingCatalogProductMetadataServiceParameterOptionI18nZhCnArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTw, OnboardingCatalogProductMetadataServiceParameterOptionI18nZhTwArgs

    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description string
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname string
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description str
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname str
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    description String
    The translations for custom service parameter description.

    • Constraints: The maximum length is 20000 characters. The minimum length is 0 characters. The value must match regular expression /./.
    displayname String
    The translations for custom service parameter display name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataUi, OnboardingCatalogProductMetadataUiArgs

    AccessibleDuringProvision bool
    if your service is accessible during provisioning.
    EmbeddableDashboard string
    Send the service details page, skipping the service details page, go directly to the dashboard, known values launch, drilldown.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Hidden bool
    Whether the object is hidden from the consumption catalog.
    PrimaryOfferingId string
    In case of group tile, primary used by legacy IAS service.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    SideBySideIndex double
    When the objects are listed side-by-side, this value controls the ordering.
    Strings OnboardingCatalogProductMetadataUiStrings
    The data strings. Nested schema for strings:
    Urls OnboardingCatalogProductMetadataUiUrls
    Metadata with URLs related to a service. Nested schema for urls:
    AccessibleDuringProvision bool
    if your service is accessible during provisioning.
    EmbeddableDashboard string
    Send the service details page, skipping the service details page, go directly to the dashboard, known values launch, drilldown.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Hidden bool
    Whether the object is hidden from the consumption catalog.
    PrimaryOfferingId string
    In case of group tile, primary used by legacy IAS service.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    SideBySideIndex float64
    When the objects are listed side-by-side, this value controls the ordering.
    Strings OnboardingCatalogProductMetadataUiStrings
    The data strings. Nested schema for strings:
    Urls OnboardingCatalogProductMetadataUiUrls
    Metadata with URLs related to a service. Nested schema for urls:
    accessibleDuringProvision Boolean
    if your service is accessible during provisioning.
    embeddableDashboard String
    Send the service details page, skipping the service details page, go directly to the dashboard, known values launch, drilldown.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    hidden Boolean
    Whether the object is hidden from the consumption catalog.
    primaryOfferingId String
    In case of group tile, primary used by legacy IAS service.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    sideBySideIndex Double
    When the objects are listed side-by-side, this value controls the ordering.
    strings OnboardingCatalogProductMetadataUiStrings
    The data strings. Nested schema for strings:
    urls OnboardingCatalogProductMetadataUiUrls
    Metadata with URLs related to a service. Nested schema for urls:
    accessibleDuringProvision boolean
    if your service is accessible during provisioning.
    embeddableDashboard string
    Send the service details page, skipping the service details page, go directly to the dashboard, known values launch, drilldown.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    hidden boolean
    Whether the object is hidden from the consumption catalog.
    primaryOfferingId string
    In case of group tile, primary used by legacy IAS service.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    sideBySideIndex number
    When the objects are listed side-by-side, this value controls the ordering.
    strings OnboardingCatalogProductMetadataUiStrings
    The data strings. Nested schema for strings:
    urls OnboardingCatalogProductMetadataUiUrls
    Metadata with URLs related to a service. Nested schema for urls:
    accessible_during_provision bool
    if your service is accessible during provisioning.
    embeddable_dashboard str
    Send the service details page, skipping the service details page, go directly to the dashboard, known values launch, drilldown.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    hidden bool
    Whether the object is hidden from the consumption catalog.
    primary_offering_id str
    In case of group tile, primary used by legacy IAS service.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    side_by_side_index float
    When the objects are listed side-by-side, this value controls the ordering.
    strings OnboardingCatalogProductMetadataUiStrings
    The data strings. Nested schema for strings:
    urls OnboardingCatalogProductMetadataUiUrls
    Metadata with URLs related to a service. Nested schema for urls:
    accessibleDuringProvision Boolean
    if your service is accessible during provisioning.
    embeddableDashboard String
    Send the service details page, skipping the service details page, go directly to the dashboard, known values launch, drilldown.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    hidden Boolean
    Whether the object is hidden from the consumption catalog.
    primaryOfferingId String
    In case of group tile, primary used by legacy IAS service.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    sideBySideIndex Number
    When the objects are listed side-by-side, this value controls the ordering.
    strings Property Map
    The data strings. Nested schema for strings:
    urls Property Map
    Metadata with URLs related to a service. Nested schema for urls:

    OnboardingCatalogProductMetadataUiStrings, OnboardingCatalogProductMetadataUiStringsArgs

    En OnboardingCatalogProductMetadataUiStringsEn
    Translated content of additional information about the service. Nested schema for en:
    En OnboardingCatalogProductMetadataUiStringsEn
    Translated content of additional information about the service. Nested schema for en:
    en OnboardingCatalogProductMetadataUiStringsEn
    Translated content of additional information about the service. Nested schema for en:
    en OnboardingCatalogProductMetadataUiStringsEn
    Translated content of additional information about the service. Nested schema for en:
    en OnboardingCatalogProductMetadataUiStringsEn
    Translated content of additional information about the service. Nested schema for en:
    en Property Map
    Translated content of additional information about the service. Nested schema for en:

    OnboardingCatalogProductMetadataUiStringsEn, OnboardingCatalogProductMetadataUiStringsEnArgs

    Bullets List<OnboardingCatalogProductMetadataUiStringsEnBullet>
    The list of features that highlights your product's attributes and benefits for users.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for bullets:
    Media List<OnboardingCatalogProductMetadataUiStringsEnMedia>
    The list of supporting media for this product.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for media:
    NavigationItems List<OnboardingCatalogProductMetadataUiStringsEnNavigationItem>
    List of custom navigation panel.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for navigation_items:
    Bullets []OnboardingCatalogProductMetadataUiStringsEnBullet
    The list of features that highlights your product's attributes and benefits for users.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for bullets:
    Media []OnboardingCatalogProductMetadataUiStringsEnMedia
    The list of supporting media for this product.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for media:
    NavigationItems []OnboardingCatalogProductMetadataUiStringsEnNavigationItem
    List of custom navigation panel.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for navigation_items:
    bullets List<OnboardingCatalogProductMetadataUiStringsEnBullet>
    The list of features that highlights your product's attributes and benefits for users.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for bullets:
    media List<OnboardingCatalogProductMetadataUiStringsEnMedia>
    The list of supporting media for this product.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for media:
    navigationItems List<OnboardingCatalogProductMetadataUiStringsEnNavigationItem>
    List of custom navigation panel.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for navigation_items:
    bullets OnboardingCatalogProductMetadataUiStringsEnBullet[]
    The list of features that highlights your product's attributes and benefits for users.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for bullets:
    media OnboardingCatalogProductMetadataUiStringsEnMedia[]
    The list of supporting media for this product.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for media:
    navigationItems OnboardingCatalogProductMetadataUiStringsEnNavigationItem[]
    List of custom navigation panel.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for navigation_items:
    bullets Sequence[OnboardingCatalogProductMetadataUiStringsEnBullet]
    The list of features that highlights your product's attributes and benefits for users.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for bullets:
    media Sequence[OnboardingCatalogProductMetadataUiStringsEnMedia]
    The list of supporting media for this product.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for media:
    navigation_items Sequence[OnboardingCatalogProductMetadataUiStringsEnNavigationItem]
    List of custom navigation panel.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for navigation_items:
    bullets List<Property Map>
    The list of features that highlights your product's attributes and benefits for users.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for bullets:
    media List<Property Map>
    The list of supporting media for this product.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for media:
    navigationItems List<Property Map>
    List of custom navigation panel.

    • Constraints: The maximum length is 100 items. The minimum length is 0 items. Nested schema for navigation_items:

    OnboardingCatalogProductMetadataUiStringsEnBullet, OnboardingCatalogProductMetadataUiStringsEnBulletArgs

    Description string
    The description about the features of the product.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    Title string
    The descriptive title for the feature.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    Description string
    The description about the features of the product.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    Title string
    The descriptive title for the feature.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    description String
    The description about the features of the product.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    title String
    The descriptive title for the feature.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    description string
    The description about the features of the product.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    title string
    The descriptive title for the feature.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    description str
    The description about the features of the product.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    title str
    The descriptive title for the feature.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    description String
    The description about the features of the product.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    title String
    The descriptive title for the feature.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.

    OnboardingCatalogProductMetadataUiStringsEnMedia, OnboardingCatalogProductMetadataUiStringsEnMediaArgs

    Caption string
    Provide a descriptive caption that indicates what the media illustrates. This caption is displayed in the catalog.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    Type string
    The type of the media.

    • Constraints: Allowable values are: image, youtube, video_mp_4, video_webm.
    Url string
    The URL that links to the media that shows off the product.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    Thumbnail string
    The reduced-size version of your images and videos.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    Caption string
    Provide a descriptive caption that indicates what the media illustrates. This caption is displayed in the catalog.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    Type string
    The type of the media.

    • Constraints: Allowable values are: image, youtube, video_mp_4, video_webm.
    Url string
    The URL that links to the media that shows off the product.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    Thumbnail string
    The reduced-size version of your images and videos.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    caption String
    Provide a descriptive caption that indicates what the media illustrates. This caption is displayed in the catalog.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    type String
    The type of the media.

    • Constraints: Allowable values are: image, youtube, video_mp_4, video_webm.
    url String
    The URL that links to the media that shows off the product.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    thumbnail String
    The reduced-size version of your images and videos.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    caption string
    Provide a descriptive caption that indicates what the media illustrates. This caption is displayed in the catalog.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    type string
    The type of the media.

    • Constraints: Allowable values are: image, youtube, video_mp_4, video_webm.
    url string
    The URL that links to the media that shows off the product.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    thumbnail string
    The reduced-size version of your images and videos.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    caption str
    Provide a descriptive caption that indicates what the media illustrates. This caption is displayed in the catalog.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    type str
    The type of the media.

    • Constraints: Allowable values are: image, youtube, video_mp_4, video_webm.
    url str
    The URL that links to the media that shows off the product.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    thumbnail str
    The reduced-size version of your images and videos.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    caption String
    Provide a descriptive caption that indicates what the media illustrates. This caption is displayed in the catalog.

    • Constraints: The maximum length is 2000 characters. The minimum length is 0 characters. The value must match regular expression /^[ -~\\s]*$/.
    type String
    The type of the media.

    • Constraints: Allowable values are: image, youtube, video_mp_4, video_webm.
    url String
    The URL that links to the media that shows off the product.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    thumbnail String
    The reduced-size version of your images and videos.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.

    OnboardingCatalogProductMetadataUiStringsEnNavigationItem, OnboardingCatalogProductMetadataUiStringsEnNavigationItemArgs

    Id string
    Id of custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Label string
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Url string
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Id string
    Id of custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Label string
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    Url string
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    id String
    Id of custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    label String
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    url String
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    id string
    Id of custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    label string
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    url string
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    id str
    Id of custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    label str
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    url str
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    id String
    Id of custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    label String
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.
    url String
    Url for custom navigation panel.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /./.

    OnboardingCatalogProductMetadataUiUrls, OnboardingCatalogProductMetadataUiUrlsArgs

    ApidocsUrl string
    The URL for your product's API documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    CatalogDetailsUrl string
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    CustomCreatePageUrl string
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    Dashboard string
    Controls if your service has a custom dashboard or Resource Detail page.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    DocUrl string
    The URL for your product's documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    InstructionsUrl string
    Controls the Getting Started tab on the Resource Details page. Setting it the content is loaded from the specified URL.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    TermsUrl string
    The URL for your product's end user license agreement.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    ApidocsUrl string
    The URL for your product's API documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    CatalogDetailsUrl string
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    CustomCreatePageUrl string
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    Dashboard string
    Controls if your service has a custom dashboard or Resource Detail page.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    DocUrl string
    The URL for your product's documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    InstructionsUrl string
    Controls the Getting Started tab on the Resource Details page. Setting it the content is loaded from the specified URL.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    TermsUrl string
    The URL for your product's end user license agreement.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    apidocsUrl String
    The URL for your product's API documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    catalogDetailsUrl String
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    customCreatePageUrl String
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    dashboard String
    Controls if your service has a custom dashboard or Resource Detail page.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    docUrl String
    The URL for your product's documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    instructionsUrl String
    Controls the Getting Started tab on the Resource Details page. Setting it the content is loaded from the specified URL.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    termsUrl String
    The URL for your product's end user license agreement.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    apidocsUrl string
    The URL for your product's API documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    catalogDetailsUrl string
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    customCreatePageUrl string
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    dashboard string
    Controls if your service has a custom dashboard or Resource Detail page.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    docUrl string
    The URL for your product's documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    instructionsUrl string
    Controls the Getting Started tab on the Resource Details page. Setting it the content is loaded from the specified URL.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    termsUrl string
    The URL for your product's end user license agreement.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    apidocs_url str
    The URL for your product's API documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    catalog_details_url str
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    custom_create_page_url str
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    dashboard str
    Controls if your service has a custom dashboard or Resource Detail page.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    doc_url str
    The URL for your product's documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    instructions_url str
    Controls the Getting Started tab on the Resource Details page. Setting it the content is loaded from the specified URL.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    terms_url str
    The URL for your product's end user license agreement.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    apidocsUrl String
    The URL for your product's API documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    catalogDetailsUrl String
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    customCreatePageUrl String
    Controls the Provisioning page URL, if set the assumption is that this URL is the provisioning URL for your service.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    dashboard String
    Controls if your service has a custom dashboard or Resource Detail page.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    docUrl String
    The URL for your product's documentation.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    instructionsUrl String
    Controls the Getting Started tab on the Resource Details page. Setting it the content is loaded from the specified URL.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.
    termsUrl String
    The URL for your product's end user license agreement.

    • Constraints: The maximum length is 2083 characters. The minimum length is 0 characters.

    OnboardingCatalogProductObjectProvider, OnboardingCatalogProductObjectProviderArgs

    Email string
    The email address of the provider.
    Name string
    The name of the provider.
    Email string
    The email address of the provider.
    Name string
    The name of the provider.
    email String
    The email address of the provider.
    name String
    The name of the provider.
    email string
    The email address of the provider.
    name string
    The name of the provider.
    email str
    The email address of the provider.
    name str
    The name of the provider.
    email String
    The email address of the provider.
    name String
    The name of the provider.

    OnboardingCatalogProductOverviewUi, OnboardingCatalogProductOverviewUiArgs

    En OnboardingCatalogProductOverviewUiEn
    Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
    En OnboardingCatalogProductOverviewUiEn
    Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
    en OnboardingCatalogProductOverviewUiEn
    Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
    en OnboardingCatalogProductOverviewUiEn
    Translated details about the service, for example, display name, short description, and long description. Nested schema for en:
    en OnboardingCatalogProductOverviewUiEn
    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:

    OnboardingCatalogProductOverviewUiEn, OnboardingCatalogProductOverviewUiEnArgs

    Description string
    The short description of the product that is displayed in your catalog entry.
    DisplayName string
    The display name of the product.
    LongDescription 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.
    DisplayName string
    The display name of the product.
    LongDescription 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.
    displayName String
    The display name of the product.
    longDescription 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.
    displayName string
    The display name of the product.
    longDescription 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.
    displayName String
    The display name of the product.
    longDescription 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_product resource by using id.

    The id property can be formed from product_id, and catalog_product_id in the following format:

    
    	product_id/catalog_product_id;
    
    
    • product_id: A string. The unique ID of the product.

    • catalog_product_id: A string. The ID of a global catalog object.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/onboardingCatalogProduct:OnboardingCatalogProduct onboarding_catalog_product product_id/catalog_product_id;
    ```
    
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud