1. Packages
  2. Strata Cloud Manager
  3. API Docs
  4. FileBlockingProfile
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

scm.FileBlockingProfile

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

    Retrieves a config item.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.FileBlockingProfile("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.FileBlockingProfile("example")
    
    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 {
    		_, err := scm.NewFileBlockingProfile(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Scm.FileBlockingProfile("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.FileBlockingProfile;
    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 example = new FileBlockingProfile("example");
    
        }
    }
    
    resources:
      example:
        type: scm:FileBlockingProfile
    

    Create FileBlockingProfile Resource

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

    Constructor syntax

    new FileBlockingProfile(name: string, args?: FileBlockingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def FileBlockingProfile(resource_name: str,
                            args: Optional[FileBlockingProfileArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def FileBlockingProfile(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            description: Optional[str] = None,
                            device: Optional[str] = None,
                            folder: Optional[str] = None,
                            name: Optional[str] = None,
                            rules: Optional[Sequence[FileBlockingProfileRuleArgs]] = None,
                            snippet: Optional[str] = None)
    func NewFileBlockingProfile(ctx *Context, name string, args *FileBlockingProfileArgs, opts ...ResourceOption) (*FileBlockingProfile, error)
    public FileBlockingProfile(string name, FileBlockingProfileArgs? args = null, CustomResourceOptions? opts = null)
    public FileBlockingProfile(String name, FileBlockingProfileArgs args)
    public FileBlockingProfile(String name, FileBlockingProfileArgs args, CustomResourceOptions options)
    
    type: scm:FileBlockingProfile
    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 FileBlockingProfileArgs
    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 FileBlockingProfileArgs
    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 FileBlockingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileBlockingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileBlockingProfileArgs
    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 fileBlockingProfileResource = new Scm.FileBlockingProfile("fileBlockingProfileResource", new()
    {
        Description = "string",
        Device = "string",
        Folder = "string",
        Name = "string",
        Rules = new[]
        {
            new Scm.Inputs.FileBlockingProfileRuleArgs
            {
                Applications = new[]
                {
                    "string",
                },
                FileTypes = new[]
                {
                    "string",
                },
                Name = "string",
                Action = "string",
                Direction = "string",
            },
        },
        Snippet = "string",
    });
    
    example, err := scm.NewFileBlockingProfile(ctx, "fileBlockingProfileResource", &scm.FileBlockingProfileArgs{
    	Description: pulumi.String("string"),
    	Device:      pulumi.String("string"),
    	Folder:      pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Rules: scm.FileBlockingProfileRuleArray{
    		&scm.FileBlockingProfileRuleArgs{
    			Applications: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			FileTypes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Name:      pulumi.String("string"),
    			Action:    pulumi.String("string"),
    			Direction: pulumi.String("string"),
    		},
    	},
    	Snippet: pulumi.String("string"),
    })
    
    var fileBlockingProfileResource = new FileBlockingProfile("fileBlockingProfileResource", FileBlockingProfileArgs.builder()
        .description("string")
        .device("string")
        .folder("string")
        .name("string")
        .rules(FileBlockingProfileRuleArgs.builder()
            .applications("string")
            .fileTypes("string")
            .name("string")
            .action("string")
            .direction("string")
            .build())
        .snippet("string")
        .build());
    
    file_blocking_profile_resource = scm.FileBlockingProfile("fileBlockingProfileResource",
        description="string",
        device="string",
        folder="string",
        name="string",
        rules=[scm.FileBlockingProfileRuleArgs(
            applications=["string"],
            file_types=["string"],
            name="string",
            action="string",
            direction="string",
        )],
        snippet="string")
    
    const fileBlockingProfileResource = new scm.FileBlockingProfile("fileBlockingProfileResource", {
        description: "string",
        device: "string",
        folder: "string",
        name: "string",
        rules: [{
            applications: ["string"],
            fileTypes: ["string"],
            name: "string",
            action: "string",
            direction: "string",
        }],
        snippet: "string",
    });
    
    type: scm:FileBlockingProfile
    properties:
        description: string
        device: string
        folder: string
        name: string
        rules:
            - action: string
              applications:
                - string
              direction: string
              fileTypes:
                - string
              name: string
        snippet: string
    

    FileBlockingProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The FileBlockingProfile resource accepts the following input properties:

    Description string
    The Description param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    The Name param.
    Rules List<FileBlockingProfileRule>
    The Rules param.
    Snippet string
    The Snippet param.
    Description string
    The Description param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    The Name param.
    Rules []FileBlockingProfileRuleArgs
    The Rules param.
    Snippet string
    The Snippet param.
    description String
    The Description param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    The Name param.
    rules List<FileBlockingProfileRule>
    The Rules param.
    snippet String
    The Snippet param.
    description string
    The Description param.
    device string
    The Device param.
    folder string
    The Folder param.
    name string
    The Name param.
    rules FileBlockingProfileRule[]
    The Rules param.
    snippet string
    The Snippet param.
    description str
    The Description param.
    device str
    The Device param.
    folder str
    The Folder param.
    name str
    The Name param.
    rules Sequence[FileBlockingProfileRuleArgs]
    The Rules param.
    snippet str
    The Snippet param.
    description String
    The Description param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    The Name param.
    rules List<Property Map>
    The Rules param.
    snippet String
    The Snippet param.

    Outputs

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

    Get an existing FileBlockingProfile 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?: FileBlockingProfileState, opts?: CustomResourceOptions): FileBlockingProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            rules: Optional[Sequence[FileBlockingProfileRuleArgs]] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> FileBlockingProfile
    func GetFileBlockingProfile(ctx *Context, name string, id IDInput, state *FileBlockingProfileState, opts ...ResourceOption) (*FileBlockingProfile, error)
    public static FileBlockingProfile Get(string name, Input<string> id, FileBlockingProfileState? state, CustomResourceOptions? opts = null)
    public static FileBlockingProfile get(String name, Output<String> id, FileBlockingProfileState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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
    The Description param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    The Name param.
    Rules List<FileBlockingProfileRule>
    The Rules param.
    Snippet string
    The Snippet param.
    Tfid string
    Description string
    The Description param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    The Name param.
    Rules []FileBlockingProfileRuleArgs
    The Rules param.
    Snippet string
    The Snippet param.
    Tfid string
    description String
    The Description param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    The Name param.
    rules List<FileBlockingProfileRule>
    The Rules param.
    snippet String
    The Snippet param.
    tfid String
    description string
    The Description param.
    device string
    The Device param.
    folder string
    The Folder param.
    name string
    The Name param.
    rules FileBlockingProfileRule[]
    The Rules param.
    snippet string
    The Snippet param.
    tfid string
    description str
    The Description param.
    device str
    The Device param.
    folder str
    The Folder param.
    name str
    The Name param.
    rules Sequence[FileBlockingProfileRuleArgs]
    The Rules param.
    snippet str
    The Snippet param.
    tfid str
    description String
    The Description param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    The Name param.
    rules List<Property Map>
    The Rules param.
    snippet String
    The Snippet param.
    tfid String

    Supporting Types

    FileBlockingProfileRule, FileBlockingProfileRuleArgs

    Applications List<string>
    The Applications param. List must contain at least 1 elements.
    FileTypes List<string>
    The FileTypes param. List must contain at least 1 elements.
    Name string
    The Name param.
    Action string
    The Action param. String must be one of these: "alert", "block", "continue". Default: "alert".
    Direction string
    The Direction param. String must be one of these: "download", "upload", "both". Default: "both".
    Applications []string
    The Applications param. List must contain at least 1 elements.
    FileTypes []string
    The FileTypes param. List must contain at least 1 elements.
    Name string
    The Name param.
    Action string
    The Action param. String must be one of these: "alert", "block", "continue". Default: "alert".
    Direction string
    The Direction param. String must be one of these: "download", "upload", "both". Default: "both".
    applications List<String>
    The Applications param. List must contain at least 1 elements.
    fileTypes List<String>
    The FileTypes param. List must contain at least 1 elements.
    name String
    The Name param.
    action String
    The Action param. String must be one of these: "alert", "block", "continue". Default: "alert".
    direction String
    The Direction param. String must be one of these: "download", "upload", "both". Default: "both".
    applications string[]
    The Applications param. List must contain at least 1 elements.
    fileTypes string[]
    The FileTypes param. List must contain at least 1 elements.
    name string
    The Name param.
    action string
    The Action param. String must be one of these: "alert", "block", "continue". Default: "alert".
    direction string
    The Direction param. String must be one of these: "download", "upload", "both". Default: "both".
    applications Sequence[str]
    The Applications param. List must contain at least 1 elements.
    file_types Sequence[str]
    The FileTypes param. List must contain at least 1 elements.
    name str
    The Name param.
    action str
    The Action param. String must be one of these: "alert", "block", "continue". Default: "alert".
    direction str
    The Direction param. String must be one of these: "download", "upload", "both". Default: "both".
    applications List<String>
    The Applications param. List must contain at least 1 elements.
    fileTypes List<String>
    The FileTypes param. List must contain at least 1 elements.
    name String
    The Name param.
    action String
    The Action param. String must be one of these: "alert", "block", "continue". Default: "alert".
    direction String
    The Direction param. String must be one of these: "download", "upload", "both". Default: "both".

    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.1.1 published on Friday, May 31, 2024 by Pulumi