FileBlockingProfile resource
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
{
Action = "string",
Applications = new[]
{
"string",
},
Direction = "string",
FileTypes = new[]
{
"string",
},
Name = "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{
Action: pulumi.String("string"),
Applications: pulumi.StringArray{
pulumi.String("string"),
},
Direction: pulumi.String("string"),
FileTypes: pulumi.StringArray{
pulumi.String("string"),
},
Name: 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()
.action("string")
.applications("string")
.direction("string")
.fileTypes("string")
.name("string")
.build())
.snippet("string")
.build());
file_blocking_profile_resource = scm.FileBlockingProfile("fileBlockingProfileResource",
description="string",
device="string",
folder="string",
name="string",
rules=[{
"action": "string",
"applications": ["string"],
"direction": "string",
"file_types": ["string"],
"name": "string",
}],
snippet="string")
const fileBlockingProfileResource = new scm.FileBlockingProfile("fileBlockingProfileResource", {
description: "string",
device: "string",
folder: "string",
name: "string",
rules: [{
action: "string",
applications: ["string"],
direction: "string",
fileTypes: ["string"],
name: "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FileBlockingProfile 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
- Name string
- The name of the file blocking profile
- Rules
List<File
Blocking Profile Rule> - A list of file blocking rules
- Snippet string
- The snippet in which the resource is defined
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the file blocking profile
- Rules
[]File
Blocking Profile Rule Args - A list of file blocking rules
- Snippet string
- The snippet in which the resource is defined
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- The name of the file blocking profile
- rules
List<File
Blocking Profile Rule> - A list of file blocking rules
- snippet String
- The snippet in which the resource is defined
- description string
- Description
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- name string
- The name of the file blocking profile
- rules
File
Blocking Profile Rule[] - A list of file blocking rules
- snippet string
- The snippet in which the resource is defined
- description str
- Description
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- name str
- The name of the file blocking profile
- rules
Sequence[File
Blocking Profile Rule Args] - A list of file blocking rules
- snippet str
- The snippet in which the resource is defined
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- The name of the file blocking profile
- rules List<Property Map>
- A list of file blocking rules
- snippet String
- The snippet in which the resource is defined
Outputs
All input properties are implicitly available as output properties. Additionally, the FileBlockingProfile resource produces the following output properties:
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) -> FileBlockingProfilefunc 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)resources: _: type: scm:FileBlockingProfile 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.
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the file blocking profile
- Rules
List<File
Blocking Profile Rule> - A list of file blocking rules
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the file blocking profile
- Rules
[]File
Blocking Profile Rule Args - A list of file blocking rules
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- The name of the file blocking profile
- rules
List<File
Blocking Profile Rule> - A list of file blocking rules
- snippet String
- The snippet in which the resource is defined
- tfid String
- description string
- Description
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- name string
- The name of the file blocking profile
- rules
File
Blocking Profile Rule[] - A list of file blocking rules
- snippet string
- The snippet in which the resource is defined
- tfid string
- description str
- Description
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- name str
- The name of the file blocking profile
- rules
Sequence[File
Blocking Profile Rule Args] - A list of file blocking rules
- snippet str
- The snippet in which the resource is defined
- tfid str
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- The name of the file blocking profile
- rules List<Property Map>
- A list of file blocking rules
- snippet String
- The snippet in which the resource is defined
- tfid String
Supporting Types
FileBlockingProfileRule, FileBlockingProfileRuleArgs
- Action string
- The action to take when the rule match criteria is met
- Applications List<string>
- The application transferring the files (App-ID naming)
- Direction string
- The direction of the file transfer
- File
Types List<string> - The file type
- Name string
- The name of the file blocking rule
- Action string
- The action to take when the rule match criteria is met
- Applications []string
- The application transferring the files (App-ID naming)
- Direction string
- The direction of the file transfer
- File
Types []string - The file type
- Name string
- The name of the file blocking rule
- action String
- The action to take when the rule match criteria is met
- applications List<String>
- The application transferring the files (App-ID naming)
- direction String
- The direction of the file transfer
- file
Types List<String> - The file type
- name String
- The name of the file blocking rule
- action string
- The action to take when the rule match criteria is met
- applications string[]
- The application transferring the files (App-ID naming)
- direction string
- The direction of the file transfer
- file
Types string[] - The file type
- name string
- The name of the file blocking rule
- action str
- The action to take when the rule match criteria is met
- applications Sequence[str]
- The application transferring the files (App-ID naming)
- direction str
- The direction of the file transfer
- file_
types Sequence[str] - The file type
- name str
- The name of the file blocking rule
- action String
- The action to take when the rule match criteria is met
- applications List<String>
- The application transferring the files (App-ID naming)
- direction String
- The direction of the file transfer
- file
Types List<String> - The file type
- name String
- The name of the file blocking rule
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
