Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi
scm.AuthenticationRule
Explore with Pulumi AI
Retrieves a config item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = new scm.AuthenticationRule("example", {});
import pulumi
import pulumi_scm as scm
example = scm.AuthenticationRule("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.NewAuthenticationRule(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.AuthenticationRule("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.AuthenticationRule;
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 AuthenticationRule("example");
}
}
resources:
example:
type: scm:AuthenticationRule
Create AuthenticationRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthenticationRule(name: string, args?: AuthenticationRuleArgs, opts?: CustomResourceOptions);
@overload
def AuthenticationRule(resource_name: str,
args: Optional[AuthenticationRuleArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AuthenticationRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
authentication_enforcement: Optional[str] = None,
categories: Optional[Sequence[str]] = None,
description: Optional[str] = None,
destination_hips: Optional[Sequence[str]] = None,
destinations: Optional[Sequence[str]] = None,
device: Optional[str] = None,
disabled: Optional[bool] = None,
folder: Optional[str] = None,
froms: Optional[Sequence[str]] = None,
group_tag: Optional[str] = None,
hip_profiles: Optional[Sequence[str]] = None,
log_authentication_timeout: Optional[bool] = None,
log_setting: Optional[str] = None,
name: Optional[str] = None,
negate_destination: Optional[bool] = None,
negate_source: Optional[bool] = None,
position: Optional[str] = None,
services: Optional[Sequence[str]] = None,
snippet: Optional[str] = None,
source_hips: Optional[Sequence[str]] = None,
source_users: Optional[Sequence[str]] = None,
sources: Optional[Sequence[str]] = None,
tags: Optional[Sequence[str]] = None,
timeout: Optional[int] = None,
tos: Optional[Sequence[str]] = None)
func NewAuthenticationRule(ctx *Context, name string, args *AuthenticationRuleArgs, opts ...ResourceOption) (*AuthenticationRule, error)
public AuthenticationRule(string name, AuthenticationRuleArgs? args = null, CustomResourceOptions? opts = null)
public AuthenticationRule(String name, AuthenticationRuleArgs args)
public AuthenticationRule(String name, AuthenticationRuleArgs args, CustomResourceOptions options)
type: scm:AuthenticationRule
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 AuthenticationRuleArgs
- 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 AuthenticationRuleArgs
- 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 AuthenticationRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthenticationRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthenticationRuleArgs
- 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 authenticationRuleResource = new Scm.AuthenticationRule("authenticationRuleResource", new()
{
AuthenticationEnforcement = "string",
Categories = new[]
{
"string",
},
Description = "string",
DestinationHips = new[]
{
"string",
},
Destinations = new[]
{
"string",
},
Device = "string",
Disabled = false,
Folder = "string",
Froms = new[]
{
"string",
},
GroupTag = "string",
HipProfiles = new[]
{
"string",
},
LogAuthenticationTimeout = false,
LogSetting = "string",
Name = "string",
NegateDestination = false,
NegateSource = false,
Position = "string",
Services = new[]
{
"string",
},
Snippet = "string",
SourceHips = new[]
{
"string",
},
SourceUsers = new[]
{
"string",
},
Sources = new[]
{
"string",
},
Tags = new[]
{
"string",
},
Timeout = 0,
Tos = new[]
{
"string",
},
});
example, err := scm.NewAuthenticationRule(ctx, "authenticationRuleResource", &scm.AuthenticationRuleArgs{
AuthenticationEnforcement: pulumi.String("string"),
Categories: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DestinationHips: pulumi.StringArray{
pulumi.String("string"),
},
Destinations: pulumi.StringArray{
pulumi.String("string"),
},
Device: pulumi.String("string"),
Disabled: pulumi.Bool(false),
Folder: pulumi.String("string"),
Froms: pulumi.StringArray{
pulumi.String("string"),
},
GroupTag: pulumi.String("string"),
HipProfiles: pulumi.StringArray{
pulumi.String("string"),
},
LogAuthenticationTimeout: pulumi.Bool(false),
LogSetting: pulumi.String("string"),
Name: pulumi.String("string"),
NegateDestination: pulumi.Bool(false),
NegateSource: pulumi.Bool(false),
Position: pulumi.String("string"),
Services: pulumi.StringArray{
pulumi.String("string"),
},
Snippet: pulumi.String("string"),
SourceHips: pulumi.StringArray{
pulumi.String("string"),
},
SourceUsers: pulumi.StringArray{
pulumi.String("string"),
},
Sources: pulumi.StringArray{
pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Timeout: pulumi.Int(0),
Tos: pulumi.StringArray{
pulumi.String("string"),
},
})
var authenticationRuleResource = new AuthenticationRule("authenticationRuleResource", AuthenticationRuleArgs.builder()
.authenticationEnforcement("string")
.categories("string")
.description("string")
.destinationHips("string")
.destinations("string")
.device("string")
.disabled(false)
.folder("string")
.froms("string")
.groupTag("string")
.hipProfiles("string")
.logAuthenticationTimeout(false)
.logSetting("string")
.name("string")
.negateDestination(false)
.negateSource(false)
.position("string")
.services("string")
.snippet("string")
.sourceHips("string")
.sourceUsers("string")
.sources("string")
.tags("string")
.timeout(0)
.tos("string")
.build());
authentication_rule_resource = scm.AuthenticationRule("authenticationRuleResource",
authentication_enforcement="string",
categories=["string"],
description="string",
destination_hips=["string"],
destinations=["string"],
device="string",
disabled=False,
folder="string",
froms=["string"],
group_tag="string",
hip_profiles=["string"],
log_authentication_timeout=False,
log_setting="string",
name="string",
negate_destination=False,
negate_source=False,
position="string",
services=["string"],
snippet="string",
source_hips=["string"],
source_users=["string"],
sources=["string"],
tags=["string"],
timeout=0,
tos=["string"])
const authenticationRuleResource = new scm.AuthenticationRule("authenticationRuleResource", {
authenticationEnforcement: "string",
categories: ["string"],
description: "string",
destinationHips: ["string"],
destinations: ["string"],
device: "string",
disabled: false,
folder: "string",
froms: ["string"],
groupTag: "string",
hipProfiles: ["string"],
logAuthenticationTimeout: false,
logSetting: "string",
name: "string",
negateDestination: false,
negateSource: false,
position: "string",
services: ["string"],
snippet: "string",
sourceHips: ["string"],
sourceUsers: ["string"],
sources: ["string"],
tags: ["string"],
timeout: 0,
tos: ["string"],
});
type: scm:AuthenticationRule
properties:
authenticationEnforcement: string
categories:
- string
description: string
destinationHips:
- string
destinations:
- string
device: string
disabled: false
folder: string
froms:
- string
groupTag: string
hipProfiles:
- string
logAuthenticationTimeout: false
logSetting: string
name: string
negateDestination: false
negateSource: false
position: string
services:
- string
snippet: string
sourceHips:
- string
sourceUsers:
- string
sources:
- string
tags:
- string
timeout: 0
tos:
- string
AuthenticationRule 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 AuthenticationRule resource accepts the following input properties:
- Authentication
Enforcement string - the authentication profile name to apply to authentication rule.
- Categories List<string>
- The Categories param.
- Description string
- The Description param.
- Destination
Hips List<string> - The DestinationHips param.
- Destinations List<string>
- The Destinations param.
- Device string
- The Device param.
- Disabled bool
- The Disabled param. Default:
false
. - Folder string
- The Folder param.
- Froms List<string>
- The Froms param.
- Group
Tag string - The GroupTag param.
- Hip
Profiles List<string> - The HipProfiles param.
- Log
Authentication boolTimeout - The LogAuthenticationTimeout param. Default:
false
. - Log
Setting string - The LogSetting param.
- Name string
- The Name param.
- Negate
Destination bool - The NegateDestination param. Default:
false
. - Negate
Source bool - The NegateSource param. Default:
false
. - Position string
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - Services List<string>
- The Services param.
- Snippet string
- The Snippet param.
- Source
Hips List<string> - The SourceHips param.
- Source
Users List<string> - The SourceUsers param.
- Sources List<string>
- The Sources param.
- List<string>
- The Tags param.
- Timeout int
- The Timeout param. Value must be between 1 and 1440.
- Tos List<string>
- The Tos param.
- Authentication
Enforcement string - the authentication profile name to apply to authentication rule.
- Categories []string
- The Categories param.
- Description string
- The Description param.
- Destination
Hips []string - The DestinationHips param.
- Destinations []string
- The Destinations param.
- Device string
- The Device param.
- Disabled bool
- The Disabled param. Default:
false
. - Folder string
- The Folder param.
- Froms []string
- The Froms param.
- Group
Tag string - The GroupTag param.
- Hip
Profiles []string - The HipProfiles param.
- Log
Authentication boolTimeout - The LogAuthenticationTimeout param. Default:
false
. - Log
Setting string - The LogSetting param.
- Name string
- The Name param.
- Negate
Destination bool - The NegateDestination param. Default:
false
. - Negate
Source bool - The NegateSource param. Default:
false
. - Position string
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - Services []string
- The Services param.
- Snippet string
- The Snippet param.
- Source
Hips []string - The SourceHips param.
- Source
Users []string - The SourceUsers param.
- Sources []string
- The Sources param.
- []string
- The Tags param.
- Timeout int
- The Timeout param. Value must be between 1 and 1440.
- Tos []string
- The Tos param.
- authentication
Enforcement String - the authentication profile name to apply to authentication rule.
- categories List<String>
- The Categories param.
- description String
- The Description param.
- destination
Hips List<String> - The DestinationHips param.
- destinations List<String>
- The Destinations param.
- device String
- The Device param.
- disabled Boolean
- The Disabled param. Default:
false
. - folder String
- The Folder param.
- froms List<String>
- The Froms param.
- group
Tag String - The GroupTag param.
- hip
Profiles List<String> - The HipProfiles param.
- log
Authentication BooleanTimeout - The LogAuthenticationTimeout param. Default:
false
. - log
Setting String - The LogSetting param.
- name String
- The Name param.
- negate
Destination Boolean - The NegateDestination param. Default:
false
. - negate
Source Boolean - The NegateSource param. Default:
false
. - position String
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services List<String>
- The Services param.
- snippet String
- The Snippet param.
- source
Hips List<String> - The SourceHips param.
- source
Users List<String> - The SourceUsers param.
- sources List<String>
- The Sources param.
- List<String>
- The Tags param.
- timeout Integer
- The Timeout param. Value must be between 1 and 1440.
- tos List<String>
- The Tos param.
- authentication
Enforcement string - the authentication profile name to apply to authentication rule.
- categories string[]
- The Categories param.
- description string
- The Description param.
- destination
Hips string[] - The DestinationHips param.
- destinations string[]
- The Destinations param.
- device string
- The Device param.
- disabled boolean
- The Disabled param. Default:
false
. - folder string
- The Folder param.
- froms string[]
- The Froms param.
- group
Tag string - The GroupTag param.
- hip
Profiles string[] - The HipProfiles param.
- log
Authentication booleanTimeout - The LogAuthenticationTimeout param. Default:
false
. - log
Setting string - The LogSetting param.
- name string
- The Name param.
- negate
Destination boolean - The NegateDestination param. Default:
false
. - negate
Source boolean - The NegateSource param. Default:
false
. - position string
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services string[]
- The Services param.
- snippet string
- The Snippet param.
- source
Hips string[] - The SourceHips param.
- source
Users string[] - The SourceUsers param.
- sources string[]
- The Sources param.
- string[]
- The Tags param.
- timeout number
- The Timeout param. Value must be between 1 and 1440.
- tos string[]
- The Tos param.
- authentication_
enforcement str - the authentication profile name to apply to authentication rule.
- categories Sequence[str]
- The Categories param.
- description str
- The Description param.
- destination_
hips Sequence[str] - The DestinationHips param.
- destinations Sequence[str]
- The Destinations param.
- device str
- The Device param.
- disabled bool
- The Disabled param. Default:
false
. - folder str
- The Folder param.
- froms Sequence[str]
- The Froms param.
- group_
tag str - The GroupTag param.
- hip_
profiles Sequence[str] - The HipProfiles param.
- log_
authentication_ booltimeout - The LogAuthenticationTimeout param. Default:
false
. - log_
setting str - The LogSetting param.
- name str
- The Name param.
- negate_
destination bool - The NegateDestination param. Default:
false
. - negate_
source bool - The NegateSource param. Default:
false
. - position str
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services Sequence[str]
- The Services param.
- snippet str
- The Snippet param.
- source_
hips Sequence[str] - The SourceHips param.
- source_
users Sequence[str] - The SourceUsers param.
- sources Sequence[str]
- The Sources param.
- Sequence[str]
- The Tags param.
- timeout int
- The Timeout param. Value must be between 1 and 1440.
- tos Sequence[str]
- The Tos param.
- authentication
Enforcement String - the authentication profile name to apply to authentication rule.
- categories List<String>
- The Categories param.
- description String
- The Description param.
- destination
Hips List<String> - The DestinationHips param.
- destinations List<String>
- The Destinations param.
- device String
- The Device param.
- disabled Boolean
- The Disabled param. Default:
false
. - folder String
- The Folder param.
- froms List<String>
- The Froms param.
- group
Tag String - The GroupTag param.
- hip
Profiles List<String> - The HipProfiles param.
- log
Authentication BooleanTimeout - The LogAuthenticationTimeout param. Default:
false
. - log
Setting String - The LogSetting param.
- name String
- The Name param.
- negate
Destination Boolean - The NegateDestination param. Default:
false
. - negate
Source Boolean - The NegateSource param. Default:
false
. - position String
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services List<String>
- The Services param.
- snippet String
- The Snippet param.
- source
Hips List<String> - The SourceHips param.
- source
Users List<String> - The SourceUsers param.
- sources List<String>
- The Sources param.
- List<String>
- The Tags param.
- timeout Number
- The Timeout param. Value must be between 1 and 1440.
- tos List<String>
- The Tos param.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthenticationRule resource produces the following output properties:
Look up Existing AuthenticationRule Resource
Get an existing AuthenticationRule 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?: AuthenticationRuleState, opts?: CustomResourceOptions): AuthenticationRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication_enforcement: Optional[str] = None,
categories: Optional[Sequence[str]] = None,
description: Optional[str] = None,
destination_hips: Optional[Sequence[str]] = None,
destinations: Optional[Sequence[str]] = None,
device: Optional[str] = None,
disabled: Optional[bool] = None,
folder: Optional[str] = None,
froms: Optional[Sequence[str]] = None,
group_tag: Optional[str] = None,
hip_profiles: Optional[Sequence[str]] = None,
log_authentication_timeout: Optional[bool] = None,
log_setting: Optional[str] = None,
name: Optional[str] = None,
negate_destination: Optional[bool] = None,
negate_source: Optional[bool] = None,
position: Optional[str] = None,
services: Optional[Sequence[str]] = None,
snippet: Optional[str] = None,
source_hips: Optional[Sequence[str]] = None,
source_users: Optional[Sequence[str]] = None,
sources: Optional[Sequence[str]] = None,
tags: Optional[Sequence[str]] = None,
tfid: Optional[str] = None,
timeout: Optional[int] = None,
tos: Optional[Sequence[str]] = None) -> AuthenticationRule
func GetAuthenticationRule(ctx *Context, name string, id IDInput, state *AuthenticationRuleState, opts ...ResourceOption) (*AuthenticationRule, error)
public static AuthenticationRule Get(string name, Input<string> id, AuthenticationRuleState? state, CustomResourceOptions? opts = null)
public static AuthenticationRule get(String name, Output<String> id, AuthenticationRuleState 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.
- Authentication
Enforcement string - the authentication profile name to apply to authentication rule.
- Categories List<string>
- The Categories param.
- Description string
- The Description param.
- Destination
Hips List<string> - The DestinationHips param.
- Destinations List<string>
- The Destinations param.
- Device string
- The Device param.
- Disabled bool
- The Disabled param. Default:
false
. - Folder string
- The Folder param.
- Froms List<string>
- The Froms param.
- Group
Tag string - The GroupTag param.
- Hip
Profiles List<string> - The HipProfiles param.
- Log
Authentication boolTimeout - The LogAuthenticationTimeout param. Default:
false
. - Log
Setting string - The LogSetting param.
- Name string
- The Name param.
- Negate
Destination bool - The NegateDestination param. Default:
false
. - Negate
Source bool - The NegateSource param. Default:
false
. - Position string
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - Services List<string>
- The Services param.
- Snippet string
- The Snippet param.
- Source
Hips List<string> - The SourceHips param.
- Source
Users List<string> - The SourceUsers param.
- Sources List<string>
- The Sources param.
- List<string>
- The Tags param.
- Tfid string
- Timeout int
- The Timeout param. Value must be between 1 and 1440.
- Tos List<string>
- The Tos param.
- Authentication
Enforcement string - the authentication profile name to apply to authentication rule.
- Categories []string
- The Categories param.
- Description string
- The Description param.
- Destination
Hips []string - The DestinationHips param.
- Destinations []string
- The Destinations param.
- Device string
- The Device param.
- Disabled bool
- The Disabled param. Default:
false
. - Folder string
- The Folder param.
- Froms []string
- The Froms param.
- Group
Tag string - The GroupTag param.
- Hip
Profiles []string - The HipProfiles param.
- Log
Authentication boolTimeout - The LogAuthenticationTimeout param. Default:
false
. - Log
Setting string - The LogSetting param.
- Name string
- The Name param.
- Negate
Destination bool - The NegateDestination param. Default:
false
. - Negate
Source bool - The NegateSource param. Default:
false
. - Position string
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - Services []string
- The Services param.
- Snippet string
- The Snippet param.
- Source
Hips []string - The SourceHips param.
- Source
Users []string - The SourceUsers param.
- Sources []string
- The Sources param.
- []string
- The Tags param.
- Tfid string
- Timeout int
- The Timeout param. Value must be between 1 and 1440.
- Tos []string
- The Tos param.
- authentication
Enforcement String - the authentication profile name to apply to authentication rule.
- categories List<String>
- The Categories param.
- description String
- The Description param.
- destination
Hips List<String> - The DestinationHips param.
- destinations List<String>
- The Destinations param.
- device String
- The Device param.
- disabled Boolean
- The Disabled param. Default:
false
. - folder String
- The Folder param.
- froms List<String>
- The Froms param.
- group
Tag String - The GroupTag param.
- hip
Profiles List<String> - The HipProfiles param.
- log
Authentication BooleanTimeout - The LogAuthenticationTimeout param. Default:
false
. - log
Setting String - The LogSetting param.
- name String
- The Name param.
- negate
Destination Boolean - The NegateDestination param. Default:
false
. - negate
Source Boolean - The NegateSource param. Default:
false
. - position String
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services List<String>
- The Services param.
- snippet String
- The Snippet param.
- source
Hips List<String> - The SourceHips param.
- source
Users List<String> - The SourceUsers param.
- sources List<String>
- The Sources param.
- List<String>
- The Tags param.
- tfid String
- timeout Integer
- The Timeout param. Value must be between 1 and 1440.
- tos List<String>
- The Tos param.
- authentication
Enforcement string - the authentication profile name to apply to authentication rule.
- categories string[]
- The Categories param.
- description string
- The Description param.
- destination
Hips string[] - The DestinationHips param.
- destinations string[]
- The Destinations param.
- device string
- The Device param.
- disabled boolean
- The Disabled param. Default:
false
. - folder string
- The Folder param.
- froms string[]
- The Froms param.
- group
Tag string - The GroupTag param.
- hip
Profiles string[] - The HipProfiles param.
- log
Authentication booleanTimeout - The LogAuthenticationTimeout param. Default:
false
. - log
Setting string - The LogSetting param.
- name string
- The Name param.
- negate
Destination boolean - The NegateDestination param. Default:
false
. - negate
Source boolean - The NegateSource param. Default:
false
. - position string
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services string[]
- The Services param.
- snippet string
- The Snippet param.
- source
Hips string[] - The SourceHips param.
- source
Users string[] - The SourceUsers param.
- sources string[]
- The Sources param.
- string[]
- The Tags param.
- tfid string
- timeout number
- The Timeout param. Value must be between 1 and 1440.
- tos string[]
- The Tos param.
- authentication_
enforcement str - the authentication profile name to apply to authentication rule.
- categories Sequence[str]
- The Categories param.
- description str
- The Description param.
- destination_
hips Sequence[str] - The DestinationHips param.
- destinations Sequence[str]
- The Destinations param.
- device str
- The Device param.
- disabled bool
- The Disabled param. Default:
false
. - folder str
- The Folder param.
- froms Sequence[str]
- The Froms param.
- group_
tag str - The GroupTag param.
- hip_
profiles Sequence[str] - The HipProfiles param.
- log_
authentication_ booltimeout - The LogAuthenticationTimeout param. Default:
false
. - log_
setting str - The LogSetting param.
- name str
- The Name param.
- negate_
destination bool - The NegateDestination param. Default:
false
. - negate_
source bool - The NegateSource param. Default:
false
. - position str
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services Sequence[str]
- The Services param.
- snippet str
- The Snippet param.
- source_
hips Sequence[str] - The SourceHips param.
- source_
users Sequence[str] - The SourceUsers param.
- sources Sequence[str]
- The Sources param.
- Sequence[str]
- The Tags param.
- tfid str
- timeout int
- The Timeout param. Value must be between 1 and 1440.
- tos Sequence[str]
- The Tos param.
- authentication
Enforcement String - the authentication profile name to apply to authentication rule.
- categories List<String>
- The Categories param.
- description String
- The Description param.
- destination
Hips List<String> - The DestinationHips param.
- destinations List<String>
- The Destinations param.
- device String
- The Device param.
- disabled Boolean
- The Disabled param. Default:
false
. - folder String
- The Folder param.
- froms List<String>
- The Froms param.
- group
Tag String - The GroupTag param.
- hip
Profiles List<String> - The HipProfiles param.
- log
Authentication BooleanTimeout - The LogAuthenticationTimeout param. Default:
false
. - log
Setting String - The LogSetting param.
- name String
- The Name param.
- negate
Destination Boolean - The NegateDestination param. Default:
false
. - negate
Source Boolean - The NegateSource param. Default:
false
. - position String
- The Position param. String must be one of these:
"pre"
,"post"
. Default:"pre"
. - services List<String>
- The Services param.
- snippet String
- The Snippet param.
- source
Hips List<String> - The SourceHips param.
- source
Users List<String> - The SourceUsers param.
- sources List<String>
- The Sources param.
- List<String>
- The Tags param.
- tfid String
- timeout Number
- The Timeout param. Value must be between 1 and 1440.
- tos List<String>
- The Tos param.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.