1. Packages
  2. Mso Provider
  3. API Docs
  4. SchemaTemplateAnp
mso 1.4.0 published on Monday, Apr 14, 2025 by ciscodevnet

mso.SchemaTemplateAnp

Explore with Pulumi AI

mso logo
mso 1.4.0 published on Monday, Apr 14, 2025 by ciscodevnet

    Create SchemaTemplateAnp Resource

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

    Constructor syntax

    new SchemaTemplateAnp(name: string, args: SchemaTemplateAnpArgs, opts?: CustomResourceOptions);
    @overload
    def SchemaTemplateAnp(resource_name: str,
                          args: SchemaTemplateAnpArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SchemaTemplateAnp(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          display_name: Optional[str] = None,
                          schema_id: Optional[str] = None,
                          template: Optional[str] = None,
                          description: Optional[str] = None,
                          name: Optional[str] = None,
                          schema_template_anp_id: Optional[str] = None)
    func NewSchemaTemplateAnp(ctx *Context, name string, args SchemaTemplateAnpArgs, opts ...ResourceOption) (*SchemaTemplateAnp, error)
    public SchemaTemplateAnp(string name, SchemaTemplateAnpArgs args, CustomResourceOptions? opts = null)
    public SchemaTemplateAnp(String name, SchemaTemplateAnpArgs args)
    public SchemaTemplateAnp(String name, SchemaTemplateAnpArgs args, CustomResourceOptions options)
    
    type: mso:SchemaTemplateAnp
    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 SchemaTemplateAnpArgs
    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 SchemaTemplateAnpArgs
    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 SchemaTemplateAnpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SchemaTemplateAnpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SchemaTemplateAnpArgs
    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 schemaTemplateAnpResource = new Mso.SchemaTemplateAnp("schemaTemplateAnpResource", new()
    {
        DisplayName = "string",
        SchemaId = "string",
        Template = "string",
        Description = "string",
        Name = "string",
        SchemaTemplateAnpId = "string",
    });
    
    example, err := mso.NewSchemaTemplateAnp(ctx, "schemaTemplateAnpResource", &mso.SchemaTemplateAnpArgs{
    	DisplayName:         pulumi.String("string"),
    	SchemaId:            pulumi.String("string"),
    	Template:            pulumi.String("string"),
    	Description:         pulumi.String("string"),
    	Name:                pulumi.String("string"),
    	SchemaTemplateAnpId: pulumi.String("string"),
    })
    
    var schemaTemplateAnpResource = new SchemaTemplateAnp("schemaTemplateAnpResource", SchemaTemplateAnpArgs.builder()
        .displayName("string")
        .schemaId("string")
        .template("string")
        .description("string")
        .name("string")
        .schemaTemplateAnpId("string")
        .build());
    
    schema_template_anp_resource = mso.SchemaTemplateAnp("schemaTemplateAnpResource",
        display_name="string",
        schema_id="string",
        template="string",
        description="string",
        name="string",
        schema_template_anp_id="string")
    
    const schemaTemplateAnpResource = new mso.SchemaTemplateAnp("schemaTemplateAnpResource", {
        displayName: "string",
        schemaId: "string",
        template: "string",
        description: "string",
        name: "string",
        schemaTemplateAnpId: "string",
    });
    
    type: mso:SchemaTemplateAnp
    properties:
        description: string
        displayName: string
        name: string
        schemaId: string
        schemaTemplateAnpId: string
        template: string
    

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

    DisplayName string
    SchemaId string
    Template string
    Description string
    Name string
    SchemaTemplateAnpId string
    DisplayName string
    SchemaId string
    Template string
    Description string
    Name string
    SchemaTemplateAnpId string
    displayName String
    schemaId String
    template String
    description String
    name String
    schemaTemplateAnpId String
    displayName string
    schemaId string
    template string
    description string
    name string
    schemaTemplateAnpId string
    displayName String
    schemaId String
    template String
    description String
    name String
    schemaTemplateAnpId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SchemaTemplateAnp 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 SchemaTemplateAnp Resource

    Get an existing SchemaTemplateAnp 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?: SchemaTemplateAnpState, opts?: CustomResourceOptions): SchemaTemplateAnp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            name: Optional[str] = None,
            schema_id: Optional[str] = None,
            schema_template_anp_id: Optional[str] = None,
            template: Optional[str] = None) -> SchemaTemplateAnp
    func GetSchemaTemplateAnp(ctx *Context, name string, id IDInput, state *SchemaTemplateAnpState, opts ...ResourceOption) (*SchemaTemplateAnp, error)
    public static SchemaTemplateAnp Get(string name, Input<string> id, SchemaTemplateAnpState? state, CustomResourceOptions? opts = null)
    public static SchemaTemplateAnp get(String name, Output<String> id, SchemaTemplateAnpState state, CustomResourceOptions options)
    resources:  _:    type: mso:SchemaTemplateAnp    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:
    Description string
    DisplayName string
    Name string
    SchemaId string
    SchemaTemplateAnpId string
    Template string
    Description string
    DisplayName string
    Name string
    SchemaId string
    SchemaTemplateAnpId string
    Template string
    description String
    displayName String
    name String
    schemaId String
    schemaTemplateAnpId String
    template String
    description string
    displayName string
    name string
    schemaId string
    schemaTemplateAnpId string
    template string
    description String
    displayName String
    name String
    schemaId String
    schemaTemplateAnpId String
    template String

    Package Details

    Repository
    mso ciscodevnet/terraform-provider-mso
    License
    Notes
    This Pulumi package is based on the mso Terraform Provider.
    mso logo
    mso 1.4.0 published on Monday, Apr 14, 2025 by ciscodevnet