fortimanager.ObjectCifsProfile
Explore with Pulumi AI
Configure CIFS profile.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
file_filter
:fortimanager_object_cifs_profile_filefilter
server_keytab
:fortimanager_object_cifs_profile_serverkeytab
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectCifsProfile("trname", {});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectCifsProfile("trname")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectCifsProfile(ctx, "trname", nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectCifsProfile("trname");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectCifsProfile;
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 trname = new ObjectCifsProfile("trname");
}
}
resources:
trname:
type: fortimanager:ObjectCifsProfile
Create ObjectCifsProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectCifsProfile(name: string, args?: ObjectCifsProfileArgs, opts?: CustomResourceOptions);
@overload
def ObjectCifsProfile(resource_name: str,
args: Optional[ObjectCifsProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectCifsProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
domain_controller: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
file_filter: Optional[ObjectCifsProfileFileFilterArgs] = None,
name: Optional[str] = None,
object_cifs_profile_id: Optional[str] = None,
scopetype: Optional[str] = None,
server_credential_type: Optional[str] = None,
server_keytabs: Optional[Sequence[ObjectCifsProfileServerKeytabArgs]] = None)
func NewObjectCifsProfile(ctx *Context, name string, args *ObjectCifsProfileArgs, opts ...ResourceOption) (*ObjectCifsProfile, error)
public ObjectCifsProfile(string name, ObjectCifsProfileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectCifsProfile(String name, ObjectCifsProfileArgs args)
public ObjectCifsProfile(String name, ObjectCifsProfileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectCifsProfile
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 ObjectCifsProfileArgs
- 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 ObjectCifsProfileArgs
- 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 ObjectCifsProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectCifsProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectCifsProfileArgs
- 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 objectCifsProfileResource = new Fortimanager.ObjectCifsProfile("objectCifsProfileResource", new()
{
Adom = "string",
DomainController = "string",
DynamicSortSubtable = "string",
FileFilter = new Fortimanager.Inputs.ObjectCifsProfileFileFilterArgs
{
Entries = new[]
{
new Fortimanager.Inputs.ObjectCifsProfileFileFilterEntryArgs
{
Action = "string",
Comment = "string",
Direction = "string",
FileType = "string",
Filter = "string",
Protocols = new[]
{
"string",
},
},
},
Log = "string",
Status = "string",
},
Name = "string",
ObjectCifsProfileId = "string",
Scopetype = "string",
ServerCredentialType = "string",
ServerKeytabs = new[]
{
new Fortimanager.Inputs.ObjectCifsProfileServerKeytabArgs
{
Keytab = "string",
Passwords = new[]
{
"string",
},
Principal = "string",
},
},
});
example, err := fortimanager.NewObjectCifsProfile(ctx, "objectCifsProfileResource", &fortimanager.ObjectCifsProfileArgs{
Adom: pulumi.String("string"),
DomainController: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
FileFilter: &.ObjectCifsProfileFileFilterArgs{
Entries: .ObjectCifsProfileFileFilterEntryArray{
&.ObjectCifsProfileFileFilterEntryArgs{
Action: pulumi.String("string"),
Comment: pulumi.String("string"),
Direction: pulumi.String("string"),
FileType: pulumi.String("string"),
Filter: pulumi.String("string"),
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Log: pulumi.String("string"),
Status: pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectCifsProfileId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ServerCredentialType: pulumi.String("string"),
ServerKeytabs: .ObjectCifsProfileServerKeytabArray{
&.ObjectCifsProfileServerKeytabArgs{
Keytab: pulumi.String("string"),
Passwords: pulumi.StringArray{
pulumi.String("string"),
},
Principal: pulumi.String("string"),
},
},
})
var objectCifsProfileResource = new ObjectCifsProfile("objectCifsProfileResource", ObjectCifsProfileArgs.builder()
.adom("string")
.domainController("string")
.dynamicSortSubtable("string")
.fileFilter(ObjectCifsProfileFileFilterArgs.builder()
.entries(ObjectCifsProfileFileFilterEntryArgs.builder()
.action("string")
.comment("string")
.direction("string")
.fileType("string")
.filter("string")
.protocols("string")
.build())
.log("string")
.status("string")
.build())
.name("string")
.objectCifsProfileId("string")
.scopetype("string")
.serverCredentialType("string")
.serverKeytabs(ObjectCifsProfileServerKeytabArgs.builder()
.keytab("string")
.passwords("string")
.principal("string")
.build())
.build());
object_cifs_profile_resource = fortimanager.ObjectCifsProfile("objectCifsProfileResource",
adom="string",
domain_controller="string",
dynamic_sort_subtable="string",
file_filter={
"entries": [{
"action": "string",
"comment": "string",
"direction": "string",
"file_type": "string",
"filter": "string",
"protocols": ["string"],
}],
"log": "string",
"status": "string",
},
name="string",
object_cifs_profile_id="string",
scopetype="string",
server_credential_type="string",
server_keytabs=[{
"keytab": "string",
"passwords": ["string"],
"principal": "string",
}])
const objectCifsProfileResource = new fortimanager.ObjectCifsProfile("objectCifsProfileResource", {
adom: "string",
domainController: "string",
dynamicSortSubtable: "string",
fileFilter: {
entries: [{
action: "string",
comment: "string",
direction: "string",
fileType: "string",
filter: "string",
protocols: ["string"],
}],
log: "string",
status: "string",
},
name: "string",
objectCifsProfileId: "string",
scopetype: "string",
serverCredentialType: "string",
serverKeytabs: [{
keytab: "string",
passwords: ["string"],
principal: "string",
}],
});
type: fortimanager:ObjectCifsProfile
properties:
adom: string
domainController: string
dynamicSortSubtable: string
fileFilter:
entries:
- action: string
comment: string
direction: string
fileType: string
filter: string
protocols:
- string
log: string
status: string
name: string
objectCifsProfileId: string
scopetype: string
serverCredentialType: string
serverKeytabs:
- keytab: string
passwords:
- string
principal: string
ObjectCifsProfile 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 ObjectCifsProfile resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain for which to decrypt CIFS traffic.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- File
Filter ObjectCifs Profile File Filter - File-Filter. The structure of
file_filter
block is documented below. - Name string
- Profile name.
- Object
Cifs stringProfile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Credential stringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - Server
Keytabs List<ObjectCifs Profile Server Keytab> - Server-Keytab. The structure of
server_keytab
block is documented below.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain for which to decrypt CIFS traffic.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- File
Filter ObjectCifs Profile File Filter Args - File-Filter. The structure of
file_filter
block is documented below. - Name string
- Profile name.
- Object
Cifs stringProfile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Credential stringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - Server
Keytabs []ObjectCifs Profile Server Keytab Args - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain for which to decrypt CIFS traffic.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file
Filter ObjectCifs Profile File Filter - File-Filter. The structure of
file_filter
block is documented below. - name String
- Profile name.
- object
Cifs StringProfile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Credential StringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server
Keytabs List<ObjectCifs Profile Server Keytab> - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller string - Domain for which to decrypt CIFS traffic.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file
Filter ObjectCifs Profile File Filter - File-Filter. The structure of
file_filter
block is documented below. - name string
- Profile name.
- object
Cifs stringProfile Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Credential stringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server
Keytabs ObjectCifs Profile Server Keytab[] - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain_
controller str - Domain for which to decrypt CIFS traffic.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file_
filter ObjectCifs Profile File Filter Args - File-Filter. The structure of
file_filter
block is documented below. - name str
- Profile name.
- object_
cifs_ strprofile_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server_
credential_ strtype - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server_
keytabs Sequence[ObjectCifs Profile Server Keytab Args] - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain for which to decrypt CIFS traffic.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file
Filter Property Map - File-Filter. The structure of
file_filter
block is documented below. - name String
- Profile name.
- object
Cifs StringProfile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Credential StringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server
Keytabs List<Property Map> - Server-Keytab. The structure of
server_keytab
block is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectCifsProfile 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 ObjectCifsProfile Resource
Get an existing ObjectCifsProfile 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?: ObjectCifsProfileState, opts?: CustomResourceOptions): ObjectCifsProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
domain_controller: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
file_filter: Optional[ObjectCifsProfileFileFilterArgs] = None,
name: Optional[str] = None,
object_cifs_profile_id: Optional[str] = None,
scopetype: Optional[str] = None,
server_credential_type: Optional[str] = None,
server_keytabs: Optional[Sequence[ObjectCifsProfileServerKeytabArgs]] = None) -> ObjectCifsProfile
func GetObjectCifsProfile(ctx *Context, name string, id IDInput, state *ObjectCifsProfileState, opts ...ResourceOption) (*ObjectCifsProfile, error)
public static ObjectCifsProfile Get(string name, Input<string> id, ObjectCifsProfileState? state, CustomResourceOptions? opts = null)
public static ObjectCifsProfile get(String name, Output<String> id, ObjectCifsProfileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectCifsProfile 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain for which to decrypt CIFS traffic.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- File
Filter ObjectCifs Profile File Filter - File-Filter. The structure of
file_filter
block is documented below. - Name string
- Profile name.
- Object
Cifs stringProfile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Credential stringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - Server
Keytabs List<ObjectCifs Profile Server Keytab> - Server-Keytab. The structure of
server_keytab
block is documented below.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain for which to decrypt CIFS traffic.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- File
Filter ObjectCifs Profile File Filter Args - File-Filter. The structure of
file_filter
block is documented below. - Name string
- Profile name.
- Object
Cifs stringProfile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Credential stringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - Server
Keytabs []ObjectCifs Profile Server Keytab Args - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain for which to decrypt CIFS traffic.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file
Filter ObjectCifs Profile File Filter - File-Filter. The structure of
file_filter
block is documented below. - name String
- Profile name.
- object
Cifs StringProfile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Credential StringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server
Keytabs List<ObjectCifs Profile Server Keytab> - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller string - Domain for which to decrypt CIFS traffic.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file
Filter ObjectCifs Profile File Filter - File-Filter. The structure of
file_filter
block is documented below. - name string
- Profile name.
- object
Cifs stringProfile Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Credential stringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server
Keytabs ObjectCifs Profile Server Keytab[] - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain_
controller str - Domain for which to decrypt CIFS traffic.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file_
filter ObjectCifs Profile File Filter Args - File-Filter. The structure of
file_filter
block is documented below. - name str
- Profile name.
- object_
cifs_ strprofile_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server_
credential_ strtype - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server_
keytabs Sequence[ObjectCifs Profile Server Keytab Args] - Server-Keytab. The structure of
server_keytab
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain for which to decrypt CIFS traffic.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- file
Filter Property Map - File-Filter. The structure of
file_filter
block is documented below. - name String
- Profile name.
- object
Cifs StringProfile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Credential StringType - CIFS server credential type. Valid values:
none
,credential-replication
,credential-keytab
. - server
Keytabs List<Property Map> - Server-Keytab. The structure of
server_keytab
block is documented below.
Supporting Types
ObjectCifsProfileFileFilter, ObjectCifsProfileFileFilterArgs
- Entries
List<Object
Cifs Profile File Filter Entry> - Entries. The structure of
entries
block is documented below. - Log string
- Enable/disable file filter logging. Valid values:
disable
,enable
. - Status string
- Enable/disable file filter. Valid values:
disable
,enable
.
- Entries
[]Object
Cifs Profile File Filter Entry - Entries. The structure of
entries
block is documented below. - Log string
- Enable/disable file filter logging. Valid values:
disable
,enable
. - Status string
- Enable/disable file filter. Valid values:
disable
,enable
.
- entries
List<Object
Cifs Profile File Filter Entry> - Entries. The structure of
entries
block is documented below. - log String
- Enable/disable file filter logging. Valid values:
disable
,enable
. - status String
- Enable/disable file filter. Valid values:
disable
,enable
.
- entries
Object
Cifs Profile File Filter Entry[] - Entries. The structure of
entries
block is documented below. - log string
- Enable/disable file filter logging. Valid values:
disable
,enable
. - status string
- Enable/disable file filter. Valid values:
disable
,enable
.
- entries
Sequence[Object
Cifs Profile File Filter Entry] - Entries. The structure of
entries
block is documented below. - log str
- Enable/disable file filter logging. Valid values:
disable
,enable
. - status str
- Enable/disable file filter. Valid values:
disable
,enable
.
- entries List<Property Map>
- Entries. The structure of
entries
block is documented below. - log String
- Enable/disable file filter logging. Valid values:
disable
,enable
. - status String
- Enable/disable file filter. Valid values:
disable
,enable
.
ObjectCifsProfileFileFilterEntry, ObjectCifsProfileFileFilterEntryArgs
- Action string
- Action taken for matched file. Valid values:
block
,log
. - Comment string
- Comment.
- Direction string
- Match files transmitted in the session's originating or reply direction. Valid values:
incoming
,outgoing
,any
. - File
Type string - Select file type.
- Filter string
- Add a file filter.
- Protocols List<string>
- Protocols to apply with. Valid values:
cifs
.
- Action string
- Action taken for matched file. Valid values:
block
,log
. - Comment string
- Comment.
- Direction string
- Match files transmitted in the session's originating or reply direction. Valid values:
incoming
,outgoing
,any
. - File
Type string - Select file type.
- Filter string
- Add a file filter.
- Protocols []string
- Protocols to apply with. Valid values:
cifs
.
- action String
- Action taken for matched file. Valid values:
block
,log
. - comment String
- Comment.
- direction String
- Match files transmitted in the session's originating or reply direction. Valid values:
incoming
,outgoing
,any
. - file
Type String - Select file type.
- filter String
- Add a file filter.
- protocols List<String>
- Protocols to apply with. Valid values:
cifs
.
- action string
- Action taken for matched file. Valid values:
block
,log
. - comment string
- Comment.
- direction string
- Match files transmitted in the session's originating or reply direction. Valid values:
incoming
,outgoing
,any
. - file
Type string - Select file type.
- filter string
- Add a file filter.
- protocols string[]
- Protocols to apply with. Valid values:
cifs
.
- action str
- Action taken for matched file. Valid values:
block
,log
. - comment str
- Comment.
- direction str
- Match files transmitted in the session's originating or reply direction. Valid values:
incoming
,outgoing
,any
. - file_
type str - Select file type.
- filter str
- Add a file filter.
- protocols Sequence[str]
- Protocols to apply with. Valid values:
cifs
.
- action String
- Action taken for matched file. Valid values:
block
,log
. - comment String
- Comment.
- direction String
- Match files transmitted in the session's originating or reply direction. Valid values:
incoming
,outgoing
,any
. - file
Type String - Select file type.
- filter String
- Add a file filter.
- protocols List<String>
- Protocols to apply with. Valid values:
cifs
.
ObjectCifsProfileServerKeytab, ObjectCifsProfileServerKeytabArgs
Import
ObjectCifs Profile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectCifsProfile:ObjectCifsProfile labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.