1. Packages
  2. Packages
  3. Mso Provider
  4. API Docs
  5. SchemaTemplateDeployNdo
Viewing docs for mso 2.0.0
published on Friday, Apr 17, 2026 by ciscodevnet
Viewing docs for mso 2.0.0
published on Friday, Apr 17, 2026 by ciscodevnet

    Create SchemaTemplateDeployNdo Resource

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

    Constructor syntax

    new SchemaTemplateDeployNdo(name: string, args?: SchemaTemplateDeployNdoArgs, opts?: CustomResourceOptions);
    @overload
    def SchemaTemplateDeployNdo(resource_name: str,
                                args: Optional[SchemaTemplateDeployNdoArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def SchemaTemplateDeployNdo(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                force_apply: Optional[str] = None,
                                re_deploy: Optional[bool] = None,
                                schema_id: Optional[str] = None,
                                schema_template_deploy_ndo_id: Optional[str] = None,
                                site_ids: Optional[Sequence[str]] = None,
                                template_id: Optional[str] = None,
                                template_name: Optional[str] = None,
                                template_type: Optional[str] = None,
                                undeploy: Optional[bool] = None,
                                undeploy_on_destroy: Optional[bool] = None)
    func NewSchemaTemplateDeployNdo(ctx *Context, name string, args *SchemaTemplateDeployNdoArgs, opts ...ResourceOption) (*SchemaTemplateDeployNdo, error)
    public SchemaTemplateDeployNdo(string name, SchemaTemplateDeployNdoArgs? args = null, CustomResourceOptions? opts = null)
    public SchemaTemplateDeployNdo(String name, SchemaTemplateDeployNdoArgs args)
    public SchemaTemplateDeployNdo(String name, SchemaTemplateDeployNdoArgs args, CustomResourceOptions options)
    
    type: mso:SchemaTemplateDeployNdo
    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 SchemaTemplateDeployNdoArgs
    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 SchemaTemplateDeployNdoArgs
    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 SchemaTemplateDeployNdoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SchemaTemplateDeployNdoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SchemaTemplateDeployNdoArgs
    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 schemaTemplateDeployNdoResource = new Mso.SchemaTemplateDeployNdo("schemaTemplateDeployNdoResource", new()
    {
        ForceApply = "string",
        ReDeploy = false,
        SchemaId = "string",
        SchemaTemplateDeployNdoId = "string",
        SiteIds = new[]
        {
            "string",
        },
        TemplateId = "string",
        TemplateName = "string",
        TemplateType = "string",
        Undeploy = false,
        UndeployOnDestroy = false,
    });
    
    example, err := mso.NewSchemaTemplateDeployNdo(ctx, "schemaTemplateDeployNdoResource", &mso.SchemaTemplateDeployNdoArgs{
    	ForceApply:                pulumi.String("string"),
    	ReDeploy:                  pulumi.Bool(false),
    	SchemaId:                  pulumi.String("string"),
    	SchemaTemplateDeployNdoId: pulumi.String("string"),
    	SiteIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TemplateId:        pulumi.String("string"),
    	TemplateName:      pulumi.String("string"),
    	TemplateType:      pulumi.String("string"),
    	Undeploy:          pulumi.Bool(false),
    	UndeployOnDestroy: pulumi.Bool(false),
    })
    
    var schemaTemplateDeployNdoResource = new SchemaTemplateDeployNdo("schemaTemplateDeployNdoResource", SchemaTemplateDeployNdoArgs.builder()
        .forceApply("string")
        .reDeploy(false)
        .schemaId("string")
        .schemaTemplateDeployNdoId("string")
        .siteIds("string")
        .templateId("string")
        .templateName("string")
        .templateType("string")
        .undeploy(false)
        .undeployOnDestroy(false)
        .build());
    
    schema_template_deploy_ndo_resource = mso.SchemaTemplateDeployNdo("schemaTemplateDeployNdoResource",
        force_apply="string",
        re_deploy=False,
        schema_id="string",
        schema_template_deploy_ndo_id="string",
        site_ids=["string"],
        template_id="string",
        template_name="string",
        template_type="string",
        undeploy=False,
        undeploy_on_destroy=False)
    
    const schemaTemplateDeployNdoResource = new mso.SchemaTemplateDeployNdo("schemaTemplateDeployNdoResource", {
        forceApply: "string",
        reDeploy: false,
        schemaId: "string",
        schemaTemplateDeployNdoId: "string",
        siteIds: ["string"],
        templateId: "string",
        templateName: "string",
        templateType: "string",
        undeploy: false,
        undeployOnDestroy: false,
    });
    
    type: mso:SchemaTemplateDeployNdo
    properties:
        forceApply: string
        reDeploy: false
        schemaId: string
        schemaTemplateDeployNdoId: string
        siteIds:
            - string
        templateId: string
        templateName: string
        templateType: string
        undeploy: false
        undeployOnDestroy: false
    

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

    ForceApply string
    ReDeploy bool
    SchemaId string
    SchemaTemplateDeployNdoId string
    SiteIds List<string>
    List of site IDs where template is deployed.
    TemplateId string
    TemplateName string
    TemplateType string
    Undeploy bool
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    UndeployOnDestroy bool
    ForceApply string
    ReDeploy bool
    SchemaId string
    SchemaTemplateDeployNdoId string
    SiteIds []string
    List of site IDs where template is deployed.
    TemplateId string
    TemplateName string
    TemplateType string
    Undeploy bool
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    UndeployOnDestroy bool
    forceApply String
    reDeploy Boolean
    schemaId String
    schemaTemplateDeployNdoId String
    siteIds List<String>
    List of site IDs where template is deployed.
    templateId String
    templateName String
    templateType String
    undeploy Boolean
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeployOnDestroy Boolean
    forceApply string
    reDeploy boolean
    schemaId string
    schemaTemplateDeployNdoId string
    siteIds string[]
    List of site IDs where template is deployed.
    templateId string
    templateName string
    templateType string
    undeploy boolean
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeployOnDestroy boolean
    force_apply str
    re_deploy bool
    schema_id str
    schema_template_deploy_ndo_id str
    site_ids Sequence[str]
    List of site IDs where template is deployed.
    template_id str
    template_name str
    template_type str
    undeploy bool
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeploy_on_destroy bool
    forceApply String
    reDeploy Boolean
    schemaId String
    schemaTemplateDeployNdoId String
    siteIds List<String>
    List of site IDs where template is deployed.
    templateId String
    templateName String
    templateType String
    undeploy Boolean
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeployOnDestroy Boolean

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SchemaTemplateDeployNdo Resource

    Get an existing SchemaTemplateDeployNdo 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?: SchemaTemplateDeployNdoState, opts?: CustomResourceOptions): SchemaTemplateDeployNdo
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            force_apply: Optional[str] = None,
            re_deploy: Optional[bool] = None,
            schema_id: Optional[str] = None,
            schema_template_deploy_ndo_id: Optional[str] = None,
            site_ids: Optional[Sequence[str]] = None,
            template_id: Optional[str] = None,
            template_name: Optional[str] = None,
            template_type: Optional[str] = None,
            undeploy: Optional[bool] = None,
            undeploy_on_destroy: Optional[bool] = None) -> SchemaTemplateDeployNdo
    func GetSchemaTemplateDeployNdo(ctx *Context, name string, id IDInput, state *SchemaTemplateDeployNdoState, opts ...ResourceOption) (*SchemaTemplateDeployNdo, error)
    public static SchemaTemplateDeployNdo Get(string name, Input<string> id, SchemaTemplateDeployNdoState? state, CustomResourceOptions? opts = null)
    public static SchemaTemplateDeployNdo get(String name, Output<String> id, SchemaTemplateDeployNdoState state, CustomResourceOptions options)
    resources:  _:    type: mso:SchemaTemplateDeployNdo    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:
    ForceApply string
    ReDeploy bool
    SchemaId string
    SchemaTemplateDeployNdoId string
    SiteIds List<string>
    List of site IDs where template is deployed.
    TemplateId string
    TemplateName string
    TemplateType string
    Undeploy bool
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    UndeployOnDestroy bool
    ForceApply string
    ReDeploy bool
    SchemaId string
    SchemaTemplateDeployNdoId string
    SiteIds []string
    List of site IDs where template is deployed.
    TemplateId string
    TemplateName string
    TemplateType string
    Undeploy bool
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    UndeployOnDestroy bool
    forceApply String
    reDeploy Boolean
    schemaId String
    schemaTemplateDeployNdoId String
    siteIds List<String>
    List of site IDs where template is deployed.
    templateId String
    templateName String
    templateType String
    undeploy Boolean
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeployOnDestroy Boolean
    forceApply string
    reDeploy boolean
    schemaId string
    schemaTemplateDeployNdoId string
    siteIds string[]
    List of site IDs where template is deployed.
    templateId string
    templateName string
    templateType string
    undeploy boolean
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeployOnDestroy boolean
    force_apply str
    re_deploy bool
    schema_id str
    schema_template_deploy_ndo_id str
    site_ids Sequence[str]
    List of site IDs where template is deployed.
    template_id str
    template_name str
    template_type str
    undeploy bool
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeploy_on_destroy bool
    forceApply String
    reDeploy Boolean
    schemaId String
    schemaTemplateDeployNdoId String
    siteIds List<String>
    List of site IDs where template is deployed.
    templateId String
    templateName String
    templateType String
    undeploy Boolean
    Set to true to undeploy the template from select sites provided in 'site_ids' without destroying the resource.
    undeployOnDestroy Boolean

    Package Details

    Repository
    mso ciscodevnet/terraform-provider-mso
    License
    Notes
    This Pulumi package is based on the mso Terraform Provider.
    Viewing docs for mso 2.0.0
    published on Friday, Apr 17, 2026 by ciscodevnet
      Try Pulumi Cloud free. Your team will thank you.