1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. UrlCategory
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    UrlCategory resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Creates a custom URL Category object.
    //
    const example = new scm.UrlCategory("example", {
        folder: "Shared",
        name: "example_url_category",
        description: "Test URL Category for create API",
        lists: [
            "example.com",
            "test-create.com",
        ],
        type: "URL List",
    });
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Creates a custom URL Category object.
    #
    example = scm.UrlCategory("example",
        folder="Shared",
        name="example_url_category",
        description="Test URL Category for create API",
        lists=[
            "example.com",
            "test-create.com",
        ],
        type="URL List")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Creates a custom URL Category object.
    		_, err := scm.NewUrlCategory(ctx, "example", &scm.UrlCategoryArgs{
    			Folder:      pulumi.String("Shared"),
    			Name:        pulumi.String("example_url_category"),
    			Description: pulumi.String("Test URL Category for create API"),
    			Lists: pulumi.StringArray{
    				pulumi.String("example.com"),
    				pulumi.String("test-create.com"),
    			},
    			Type: pulumi.String("URL List"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Creates a custom URL Category object.
        //
        var example = new Scm.UrlCategory("example", new()
        {
            Folder = "Shared",
            Name = "example_url_category",
            Description = "Test URL Category for create API",
            Lists = new[]
            {
                "example.com",
                "test-create.com",
            },
            Type = "URL List",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.UrlCategory;
    import com.pulumi.scm.UrlCategoryArgs;
    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) {
            //
            // Creates a custom URL Category object.
            //
            var example = new UrlCategory("example", UrlCategoryArgs.builder()
                .folder("Shared")
                .name("example_url_category")
                .description("Test URL Category for create API")
                .lists(            
                    "example.com",
                    "test-create.com")
                .type("URL List")
                .build());
    
        }
    }
    
    resources:
      #
      # Creates a custom URL Category object.
      #
      example:
        type: scm:UrlCategory
        properties:
          folder: Shared
          name: example_url_category
          description: Test URL Category for create API
          lists:
            - example.com
            - test-create.com
          type: URL List
    

    Create UrlCategory Resource

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

    Constructor syntax

    new UrlCategory(name: string, args?: UrlCategoryArgs, opts?: CustomResourceOptions);
    @overload
    def UrlCategory(resource_name: str,
                    args: Optional[UrlCategoryArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def UrlCategory(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    description: Optional[str] = None,
                    device: Optional[str] = None,
                    folder: Optional[str] = None,
                    lists: Optional[Sequence[str]] = None,
                    name: Optional[str] = None,
                    snippet: Optional[str] = None,
                    type: Optional[str] = None)
    func NewUrlCategory(ctx *Context, name string, args *UrlCategoryArgs, opts ...ResourceOption) (*UrlCategory, error)
    public UrlCategory(string name, UrlCategoryArgs? args = null, CustomResourceOptions? opts = null)
    public UrlCategory(String name, UrlCategoryArgs args)
    public UrlCategory(String name, UrlCategoryArgs args, CustomResourceOptions options)
    
    type: scm:UrlCategory
    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 UrlCategoryArgs
    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 UrlCategoryArgs
    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 UrlCategoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UrlCategoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UrlCategoryArgs
    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 urlCategoryResource = new Scm.UrlCategory("urlCategoryResource", new()
    {
        Description = "string",
        Device = "string",
        Folder = "string",
        Lists = new[]
        {
            "string",
        },
        Name = "string",
        Snippet = "string",
        Type = "string",
    });
    
    example, err := scm.NewUrlCategory(ctx, "urlCategoryResource", &scm.UrlCategoryArgs{
    	Description: pulumi.String("string"),
    	Device:      pulumi.String("string"),
    	Folder:      pulumi.String("string"),
    	Lists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    	Type:    pulumi.String("string"),
    })
    
    var urlCategoryResource = new UrlCategory("urlCategoryResource", UrlCategoryArgs.builder()
        .description("string")
        .device("string")
        .folder("string")
        .lists("string")
        .name("string")
        .snippet("string")
        .type("string")
        .build());
    
    url_category_resource = scm.UrlCategory("urlCategoryResource",
        description="string",
        device="string",
        folder="string",
        lists=["string"],
        name="string",
        snippet="string",
        type="string")
    
    const urlCategoryResource = new scm.UrlCategory("urlCategoryResource", {
        description: "string",
        device: "string",
        folder: "string",
        lists: ["string"],
        name: "string",
        snippet: "string",
        type: "string",
    });
    
    type: scm:UrlCategory
    properties:
        description: string
        device: string
        folder: string
        lists:
            - string
        name: string
        snippet: string
        type: string
    

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

    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Lists List<string>
    List
    Name string
    Name
    Snippet string
    The snippet in which the resource is defined
    Type string
    Type
    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Lists []string
    List
    Name string
    Name
    Snippet string
    The snippet in which the resource is defined
    Type string
    Type
    description String
    Description
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    lists List<String>
    List
    name String
    Name
    snippet String
    The snippet in which the resource is defined
    type String
    Type
    description string
    Description
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    lists string[]
    List
    name string
    Name
    snippet string
    The snippet in which the resource is defined
    type string
    Type
    description str
    Description
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    lists Sequence[str]
    List
    name str
    Name
    snippet str
    The snippet in which the resource is defined
    type str
    Type
    description String
    Description
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    lists List<String>
    List
    name String
    Name
    snippet String
    The snippet in which the resource is defined
    type String
    Type

    Outputs

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

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

    Look up Existing UrlCategory Resource

    Get an existing UrlCategory 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?: UrlCategoryState, opts?: CustomResourceOptions): UrlCategory
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            lists: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            type: Optional[str] = None) -> UrlCategory
    func GetUrlCategory(ctx *Context, name string, id IDInput, state *UrlCategoryState, opts ...ResourceOption) (*UrlCategory, error)
    public static UrlCategory Get(string name, Input<string> id, UrlCategoryState? state, CustomResourceOptions? opts = null)
    public static UrlCategory get(String name, Output<String> id, UrlCategoryState state, CustomResourceOptions options)
    resources:  _:    type: scm:UrlCategory    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
    Description
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Lists List<string>
    List
    Name string
    Name
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Type string
    Type
    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Lists []string
    List
    Name string
    Name
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Type string
    Type
    description String
    Description
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    lists List<String>
    List
    name String
    Name
    snippet String
    The snippet in which the resource is defined
    tfid String
    type String
    Type
    description string
    Description
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    lists string[]
    List
    name string
    Name
    snippet string
    The snippet in which the resource is defined
    tfid string
    type string
    Type
    description str
    Description
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    lists Sequence[str]
    List
    name str
    Name
    snippet str
    The snippet in which the resource is defined
    tfid str
    type str
    Type
    description String
    Description
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    lists List<String>
    List
    name String
    Name
    snippet String
    The snippet in which the resource is defined
    tfid String
    type String
    Type

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate