Application resource
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
# Custom Application
scmMediaApp:
type: scm:Application
name: scm_media_app
properties:
folder: All
name: scm_media_app
description: Managed by Pulumi
category: media
subcategory: gaming
technology: client-server
risk: '4'
evasiveBehavior: true
pervasiveUse: true
consumeBigBandwidth: true
hasKnownVulnerability: true
proneToMisuse: true
# Custom Application with tweaked timeouts and additional settings
scmRiskyApp:
type: scm:Application
name: scm_risky_app
properties:
folder: All
name: scm_risky_app
description: Managed by Pulumi
category: media
subcategory: gaming
technology: client-server
risk: '4'
timeout: 3600
tcpTimeout: 3600
tcpHalfClosedTimeout: 60
tcpTimeWaitTimeout: 10
evasiveBehavior: true
pervasiveUse: true
consumeBigBandwidth: true
hasKnownVulnerability: true
proneToMisuse: true
tunnelOtherApplication: true
tunnelApplications: true
noAppidCaching: true
parentApp: bittorrent
# Custom Application based on Custom Signature
scmCustomApp:
type: scm:Application
name: scm_custom_app
properties:
folder: All
name: scm_custom_app
description: Managed by Pulumi
category: media
subcategory: gaming
technology: client-server
risk: '4'
signatures:
- name: Custom Signature
comment: Managed by Pulumi
scope: session
orderFree: false
andCondition:
- name: Example Condition
operator:
patternMatch:
context: file-data
pattern: ^malware$
Create Application Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);@overload
def Application(resource_name: str,
args: ApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Application(resource_name: str,
opts: Optional[ResourceOptions] = None,
category: Optional[str] = None,
risk: Optional[str] = None,
parent_app: Optional[str] = None,
tcp_half_closed_timeout: Optional[int] = None,
data_ident: Optional[bool] = None,
default: Optional[ApplicationDefaultArgs] = None,
description: Optional[str] = None,
device: Optional[str] = None,
evasive_behavior: Optional[bool] = None,
file_type_ident: Optional[bool] = None,
folder: Optional[str] = None,
has_known_vulnerability: Optional[bool] = None,
name: Optional[str] = None,
no_appid_caching: Optional[bool] = None,
able_to_transfer_file: Optional[bool] = None,
pervasive_use: Optional[bool] = None,
consume_big_bandwidth: Optional[bool] = None,
signatures: Optional[Sequence[ApplicationSignatureArgs]] = None,
prone_to_misuse: Optional[bool] = None,
snippet: Optional[str] = None,
subcategory: Optional[str] = None,
alg_disable_capability: Optional[str] = None,
tcp_time_wait_timeout: Optional[int] = None,
tcp_timeout: Optional[int] = None,
technology: Optional[str] = None,
timeout: Optional[int] = None,
tunnel_applications: Optional[bool] = None,
tunnel_other_application: Optional[bool] = None,
udp_timeout: Optional[int] = None,
used_by_malware: Optional[bool] = None,
virus_ident: Optional[bool] = None)func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
public Application(String name, ApplicationArgs args)
public Application(String name, ApplicationArgs args, CustomResourceOptions options)
type: scm:Application
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 ApplicationArgs
- 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 ApplicationArgs
- 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 ApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationArgs
- 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 applicationResource = new Scm.Application("applicationResource", new()
{
Category = "string",
Risk = "string",
ParentApp = "string",
TcpHalfClosedTimeout = 0,
DataIdent = false,
Default = new Scm.Inputs.ApplicationDefaultArgs
{
IdentByIcmp6Type = new Scm.Inputs.ApplicationDefaultIdentByIcmp6TypeArgs
{
Type = "string",
Code = "string",
},
IdentByIcmpType = new Scm.Inputs.ApplicationDefaultIdentByIcmpTypeArgs
{
Type = "string",
Code = "string",
},
IdentByIpProtocol = "string",
Ports = new[]
{
"string",
},
},
Description = "string",
Device = "string",
EvasiveBehavior = false,
FileTypeIdent = false,
Folder = "string",
HasKnownVulnerability = false,
Name = "string",
NoAppidCaching = false,
AbleToTransferFile = false,
PervasiveUse = false,
ConsumeBigBandwidth = false,
Signatures = new[]
{
new Scm.Inputs.ApplicationSignatureArgs
{
Name = "string",
AndConditions = new[]
{
new Scm.Inputs.ApplicationSignatureAndConditionArgs
{
Name = "string",
OrConditions = new[]
{
new Scm.Inputs.ApplicationSignatureAndConditionOrConditionArgs
{
Name = "string",
Operator = new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorArgs
{
EqualTo = new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorEqualToArgs
{
Context = "string",
Value = "string",
Mask = "string",
Position = "string",
},
GreaterThan = new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorGreaterThanArgs
{
Context = "string",
Value = 0,
Qualifiers = new[]
{
new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorGreaterThanQualifierArgs
{
Name = "string",
Value = "string",
},
},
},
LessThan = new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorLessThanArgs
{
Context = "string",
Value = 0,
Qualifiers = new[]
{
new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorLessThanQualifierArgs
{
Name = "string",
Value = "string",
},
},
},
PatternMatch = new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorPatternMatchArgs
{
Context = "string",
Pattern = "string",
Qualifiers = new[]
{
new Scm.Inputs.ApplicationSignatureAndConditionOrConditionOperatorPatternMatchQualifierArgs
{
Name = "string",
Value = "string",
},
},
},
},
},
},
},
},
Comment = "string",
OrderFree = false,
Scope = "string",
},
},
ProneToMisuse = false,
Snippet = "string",
Subcategory = "string",
AlgDisableCapability = "string",
TcpTimeWaitTimeout = 0,
TcpTimeout = 0,
Technology = "string",
Timeout = 0,
TunnelApplications = false,
TunnelOtherApplication = false,
UdpTimeout = 0,
UsedByMalware = false,
VirusIdent = false,
});
example, err := scm.NewApplication(ctx, "applicationResource", &scm.ApplicationArgs{
Category: pulumi.String("string"),
Risk: pulumi.String("string"),
ParentApp: pulumi.String("string"),
TcpHalfClosedTimeout: pulumi.Int(0),
DataIdent: pulumi.Bool(false),
Default: &scm.ApplicationDefaultArgs{
IdentByIcmp6Type: &scm.ApplicationDefaultIdentByIcmp6TypeArgs{
Type: pulumi.String("string"),
Code: pulumi.String("string"),
},
IdentByIcmpType: &scm.ApplicationDefaultIdentByIcmpTypeArgs{
Type: pulumi.String("string"),
Code: pulumi.String("string"),
},
IdentByIpProtocol: pulumi.String("string"),
Ports: pulumi.StringArray{
pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Device: pulumi.String("string"),
EvasiveBehavior: pulumi.Bool(false),
FileTypeIdent: pulumi.Bool(false),
Folder: pulumi.String("string"),
HasKnownVulnerability: pulumi.Bool(false),
Name: pulumi.String("string"),
NoAppidCaching: pulumi.Bool(false),
AbleToTransferFile: pulumi.Bool(false),
PervasiveUse: pulumi.Bool(false),
ConsumeBigBandwidth: pulumi.Bool(false),
Signatures: scm.ApplicationSignatureArray{
&scm.ApplicationSignatureArgs{
Name: pulumi.String("string"),
AndConditions: scm.ApplicationSignatureAndConditionArray{
&scm.ApplicationSignatureAndConditionArgs{
Name: pulumi.String("string"),
OrConditions: scm.ApplicationSignatureAndConditionOrConditionArray{
&scm.ApplicationSignatureAndConditionOrConditionArgs{
Name: pulumi.String("string"),
Operator: &scm.ApplicationSignatureAndConditionOrConditionOperatorArgs{
EqualTo: &scm.ApplicationSignatureAndConditionOrConditionOperatorEqualToArgs{
Context: pulumi.String("string"),
Value: pulumi.String("string"),
Mask: pulumi.String("string"),
Position: pulumi.String("string"),
},
GreaterThan: &scm.ApplicationSignatureAndConditionOrConditionOperatorGreaterThanArgs{
Context: pulumi.String("string"),
Value: pulumi.Int(0),
Qualifiers: scm.ApplicationSignatureAndConditionOrConditionOperatorGreaterThanQualifierArray{
&scm.ApplicationSignatureAndConditionOrConditionOperatorGreaterThanQualifierArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
LessThan: &scm.ApplicationSignatureAndConditionOrConditionOperatorLessThanArgs{
Context: pulumi.String("string"),
Value: pulumi.Int(0),
Qualifiers: scm.ApplicationSignatureAndConditionOrConditionOperatorLessThanQualifierArray{
&scm.ApplicationSignatureAndConditionOrConditionOperatorLessThanQualifierArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
PatternMatch: &scm.ApplicationSignatureAndConditionOrConditionOperatorPatternMatchArgs{
Context: pulumi.String("string"),
Pattern: pulumi.String("string"),
Qualifiers: scm.ApplicationSignatureAndConditionOrConditionOperatorPatternMatchQualifierArray{
&scm.ApplicationSignatureAndConditionOrConditionOperatorPatternMatchQualifierArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
},
},
},
},
Comment: pulumi.String("string"),
OrderFree: pulumi.Bool(false),
Scope: pulumi.String("string"),
},
},
ProneToMisuse: pulumi.Bool(false),
Snippet: pulumi.String("string"),
Subcategory: pulumi.String("string"),
AlgDisableCapability: pulumi.String("string"),
TcpTimeWaitTimeout: pulumi.Int(0),
TcpTimeout: pulumi.Int(0),
Technology: pulumi.String("string"),
Timeout: pulumi.Int(0),
TunnelApplications: pulumi.Bool(false),
TunnelOtherApplication: pulumi.Bool(false),
UdpTimeout: pulumi.Int(0),
UsedByMalware: pulumi.Bool(false),
VirusIdent: pulumi.Bool(false),
})
var applicationResource = new Application("applicationResource", ApplicationArgs.builder()
.category("string")
.risk("string")
.parentApp("string")
.tcpHalfClosedTimeout(0)
.dataIdent(false)
.default_(ApplicationDefaultArgs.builder()
.identByIcmp6Type(ApplicationDefaultIdentByIcmp6TypeArgs.builder()
.type("string")
.code("string")
.build())
.identByIcmpType(ApplicationDefaultIdentByIcmpTypeArgs.builder()
.type("string")
.code("string")
.build())
.identByIpProtocol("string")
.ports("string")
.build())
.description("string")
.device("string")
.evasiveBehavior(false)
.fileTypeIdent(false)
.folder("string")
.hasKnownVulnerability(false)
.name("string")
.noAppidCaching(false)
.ableToTransferFile(false)
.pervasiveUse(false)
.consumeBigBandwidth(false)
.signatures(ApplicationSignatureArgs.builder()
.name("string")
.andConditions(ApplicationSignatureAndConditionArgs.builder()
.name("string")
.orConditions(ApplicationSignatureAndConditionOrConditionArgs.builder()
.name("string")
.operator(ApplicationSignatureAndConditionOrConditionOperatorArgs.builder()
.equalTo(ApplicationSignatureAndConditionOrConditionOperatorEqualToArgs.builder()
.context("string")
.value("string")
.mask("string")
.position("string")
.build())
.greaterThan(ApplicationSignatureAndConditionOrConditionOperatorGreaterThanArgs.builder()
.context("string")
.value(0)
.qualifiers(ApplicationSignatureAndConditionOrConditionOperatorGreaterThanQualifierArgs.builder()
.name("string")
.value("string")
.build())
.build())
.lessThan(ApplicationSignatureAndConditionOrConditionOperatorLessThanArgs.builder()
.context("string")
.value(0)
.qualifiers(ApplicationSignatureAndConditionOrConditionOperatorLessThanQualifierArgs.builder()
.name("string")
.value("string")
.build())
.build())
.patternMatch(ApplicationSignatureAndConditionOrConditionOperatorPatternMatchArgs.builder()
.context("string")
.pattern("string")
.qualifiers(ApplicationSignatureAndConditionOrConditionOperatorPatternMatchQualifierArgs.builder()
.name("string")
.value("string")
.build())
.build())
.build())
.build())
.build())
.comment("string")
.orderFree(false)
.scope("string")
.build())
.proneToMisuse(false)
.snippet("string")
.subcategory("string")
.algDisableCapability("string")
.tcpTimeWaitTimeout(0)
.tcpTimeout(0)
.technology("string")
.timeout(0)
.tunnelApplications(false)
.tunnelOtherApplication(false)
.udpTimeout(0)
.usedByMalware(false)
.virusIdent(false)
.build());
application_resource = scm.Application("applicationResource",
category="string",
risk="string",
parent_app="string",
tcp_half_closed_timeout=0,
data_ident=False,
default={
"ident_by_icmp6_type": {
"type": "string",
"code": "string",
},
"ident_by_icmp_type": {
"type": "string",
"code": "string",
},
"ident_by_ip_protocol": "string",
"ports": ["string"],
},
description="string",
device="string",
evasive_behavior=False,
file_type_ident=False,
folder="string",
has_known_vulnerability=False,
name="string",
no_appid_caching=False,
able_to_transfer_file=False,
pervasive_use=False,
consume_big_bandwidth=False,
signatures=[{
"name": "string",
"and_conditions": [{
"name": "string",
"or_conditions": [{
"name": "string",
"operator": {
"equal_to": {
"context": "string",
"value": "string",
"mask": "string",
"position": "string",
},
"greater_than": {
"context": "string",
"value": 0,
"qualifiers": [{
"name": "string",
"value": "string",
}],
},
"less_than": {
"context": "string",
"value": 0,
"qualifiers": [{
"name": "string",
"value": "string",
}],
},
"pattern_match": {
"context": "string",
"pattern": "string",
"qualifiers": [{
"name": "string",
"value": "string",
}],
},
},
}],
}],
"comment": "string",
"order_free": False,
"scope": "string",
}],
prone_to_misuse=False,
snippet="string",
subcategory="string",
alg_disable_capability="string",
tcp_time_wait_timeout=0,
tcp_timeout=0,
technology="string",
timeout=0,
tunnel_applications=False,
tunnel_other_application=False,
udp_timeout=0,
used_by_malware=False,
virus_ident=False)
const applicationResource = new scm.Application("applicationResource", {
category: "string",
risk: "string",
parentApp: "string",
tcpHalfClosedTimeout: 0,
dataIdent: false,
"default": {
identByIcmp6Type: {
type: "string",
code: "string",
},
identByIcmpType: {
type: "string",
code: "string",
},
identByIpProtocol: "string",
ports: ["string"],
},
description: "string",
device: "string",
evasiveBehavior: false,
fileTypeIdent: false,
folder: "string",
hasKnownVulnerability: false,
name: "string",
noAppidCaching: false,
ableToTransferFile: false,
pervasiveUse: false,
consumeBigBandwidth: false,
signatures: [{
name: "string",
andConditions: [{
name: "string",
orConditions: [{
name: "string",
operator: {
equalTo: {
context: "string",
value: "string",
mask: "string",
position: "string",
},
greaterThan: {
context: "string",
value: 0,
qualifiers: [{
name: "string",
value: "string",
}],
},
lessThan: {
context: "string",
value: 0,
qualifiers: [{
name: "string",
value: "string",
}],
},
patternMatch: {
context: "string",
pattern: "string",
qualifiers: [{
name: "string",
value: "string",
}],
},
},
}],
}],
comment: "string",
orderFree: false,
scope: "string",
}],
proneToMisuse: false,
snippet: "string",
subcategory: "string",
algDisableCapability: "string",
tcpTimeWaitTimeout: 0,
tcpTimeout: 0,
technology: "string",
timeout: 0,
tunnelApplications: false,
tunnelOtherApplication: false,
udpTimeout: 0,
usedByMalware: false,
virusIdent: false,
});
type: scm:Application
properties:
ableToTransferFile: false
algDisableCapability: string
category: string
consumeBigBandwidth: false
dataIdent: false
default:
identByIcmp6Type:
code: string
type: string
identByIcmpType:
code: string
type: string
identByIpProtocol: string
ports:
- string
description: string
device: string
evasiveBehavior: false
fileTypeIdent: false
folder: string
hasKnownVulnerability: false
name: string
noAppidCaching: false
parentApp: string
pervasiveUse: false
proneToMisuse: false
risk: string
signatures:
- andConditions:
- name: string
orConditions:
- name: string
operator:
equalTo:
context: string
mask: string
position: string
value: string
greaterThan:
context: string
qualifiers:
- name: string
value: string
value: 0
lessThan:
context: string
qualifiers:
- name: string
value: string
value: 0
patternMatch:
context: string
pattern: string
qualifiers:
- name: string
value: string
comment: string
name: string
orderFree: false
scope: string
snippet: string
subcategory: string
tcpHalfClosedTimeout: 0
tcpTimeWaitTimeout: 0
tcpTimeout: 0
technology: string
timeout: 0
tunnelApplications: false
tunnelOtherApplication: false
udpTimeout: 0
usedByMalware: false
virusIdent: false
Application 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 Application resource accepts the following input properties:
- Category string
- Category
- Risk string
- Risk
- Able
To boolTransfer File - Able to transfer file
- Alg
Disable stringCapability - Alg disable capability
- Consume
Big boolBandwidth - Consume big bandwidth
- Data
Ident bool - Data ident
- Default
Application
Default - Default
- Description string
- Description
- Device string
- The device in which the resource is defined
- Evasive
Behavior bool - Evasive behavior
- File
Type boolIdent - File type ident
- Folder string
- The folder in which the resource is defined
- Has
Known boolVulnerability - Has known vulnerability
- Name string
- The name of the application
- No
Appid boolCaching - No appid caching
- Parent
App string - Parent app
- Pervasive
Use bool - Pervasive use
- Prone
To boolMisuse - Prone to misuse
- Signatures
List<Application
Signature> - Signature
- Snippet string
- The snippet in which the resource is defined
- Subcategory string
- Subcategory
- Tcp
Half intClosed Timeout - timeout for half-close session in seconds
- Tcp
Time intWait Timeout - timeout for session in time_wait state in seconds
- Tcp
Timeout int - timeout in seconds
- Technology string
- Technology
- Timeout int
- timeout in seconds
- Tunnel
Applications bool - Tunnel applications
- Tunnel
Other boolApplication - Tunnel other application
- Udp
Timeout int - timeout in seconds
- Used
By boolMalware - Used by malware
- Virus
Ident bool - Virus ident
- Category string
- Category
- Risk string
- Risk
- Able
To boolTransfer File - Able to transfer file
- Alg
Disable stringCapability - Alg disable capability
- Consume
Big boolBandwidth - Consume big bandwidth
- Data
Ident bool - Data ident
- Default
Application
Default Args - Default
- Description string
- Description
- Device string
- The device in which the resource is defined
- Evasive
Behavior bool - Evasive behavior
- File
Type boolIdent - File type ident
- Folder string
- The folder in which the resource is defined
- Has
Known boolVulnerability - Has known vulnerability
- Name string
- The name of the application
- No
Appid boolCaching - No appid caching
- Parent
App string - Parent app
- Pervasive
Use bool - Pervasive use
- Prone
To boolMisuse - Prone to misuse
- Signatures
[]Application
Signature Args - Signature
- Snippet string
- The snippet in which the resource is defined
- Subcategory string
- Subcategory
- Tcp
Half intClosed Timeout - timeout for half-close session in seconds
- Tcp
Time intWait Timeout - timeout for session in time_wait state in seconds
- Tcp
Timeout int - timeout in seconds
- Technology string
- Technology
- Timeout int
- timeout in seconds
- Tunnel
Applications bool - Tunnel applications
- Tunnel
Other boolApplication - Tunnel other application
- Udp
Timeout int - timeout in seconds
- Used
By boolMalware - Used by malware
- Virus
Ident bool - Virus ident
- category String
- Category
- risk String
- Risk
- able
To BooleanTransfer File - Able to transfer file
- alg
Disable StringCapability - Alg disable capability
- consume
Big BooleanBandwidth - Consume big bandwidth
- data
Ident Boolean - Data ident
- default_
Application
Default - Default
- description String
- Description
- device String
- The device in which the resource is defined
- evasive
Behavior Boolean - Evasive behavior
- file
Type BooleanIdent - File type ident
- folder String
- The folder in which the resource is defined
- has
Known BooleanVulnerability - Has known vulnerability
- name String
- The name of the application
- no
Appid BooleanCaching - No appid caching
- parent
App String - Parent app
- pervasive
Use Boolean - Pervasive use
- prone
To BooleanMisuse - Prone to misuse
- signatures
List<Application
Signature> - Signature
- snippet String
- The snippet in which the resource is defined
- subcategory String
- Subcategory
- tcp
Half IntegerClosed Timeout - timeout for half-close session in seconds
- tcp
Time IntegerWait Timeout - timeout for session in time_wait state in seconds
- tcp
Timeout Integer - timeout in seconds
- technology String
- Technology
- timeout Integer
- timeout in seconds
- tunnel
Applications Boolean - Tunnel applications
- tunnel
Other BooleanApplication - Tunnel other application
- udp
Timeout Integer - timeout in seconds
- used
By BooleanMalware - Used by malware
- virus
Ident Boolean - Virus ident
- category string
- Category
- risk string
- Risk
- able
To booleanTransfer File - Able to transfer file
- alg
Disable stringCapability - Alg disable capability
- consume
Big booleanBandwidth - Consume big bandwidth
- data
Ident boolean - Data ident
- default
Application
Default - Default
- description string
- Description
- device string
- The device in which the resource is defined
- evasive
Behavior boolean - Evasive behavior
- file
Type booleanIdent - File type ident
- folder string
- The folder in which the resource is defined
- has
Known booleanVulnerability - Has known vulnerability
- name string
- The name of the application
- no
Appid booleanCaching - No appid caching
- parent
App string - Parent app
- pervasive
Use boolean - Pervasive use
- prone
To booleanMisuse - Prone to misuse
- signatures
Application
Signature[] - Signature
- snippet string
- The snippet in which the resource is defined
- subcategory string
- Subcategory
- tcp
Half numberClosed Timeout - timeout for half-close session in seconds
- tcp
Time numberWait Timeout - timeout for session in time_wait state in seconds
- tcp
Timeout number - timeout in seconds
- technology string
- Technology
- timeout number
- timeout in seconds
- tunnel
Applications boolean - Tunnel applications
- tunnel
Other booleanApplication - Tunnel other application
- udp
Timeout number - timeout in seconds
- used
By booleanMalware - Used by malware
- virus
Ident boolean - Virus ident
- category str
- Category
- risk str
- Risk
- able_
to_ booltransfer_ file - Able to transfer file
- alg_
disable_ strcapability - Alg disable capability
- consume_
big_ boolbandwidth - Consume big bandwidth
- data_
ident bool - Data ident
- default
Application
Default Args - Default
- description str
- Description
- device str
- The device in which the resource is defined
- evasive_
behavior bool - Evasive behavior
- file_
type_ boolident - File type ident
- folder str
- The folder in which the resource is defined
- has_
known_ boolvulnerability - Has known vulnerability
- name str
- The name of the application
- no_
appid_ boolcaching - No appid caching
- parent_
app str - Parent app
- pervasive_
use bool - Pervasive use
- prone_
to_ boolmisuse - Prone to misuse
- signatures
Sequence[Application
Signature Args] - Signature
- snippet str
- The snippet in which the resource is defined
- subcategory str
- Subcategory
- tcp_
half_ intclosed_ timeout - timeout for half-close session in seconds
- tcp_
time_ intwait_ timeout - timeout for session in time_wait state in seconds
- tcp_
timeout int - timeout in seconds
- technology str
- Technology
- timeout int
- timeout in seconds
- tunnel_
applications bool - Tunnel applications
- tunnel_
other_ boolapplication - Tunnel other application
- udp_
timeout int - timeout in seconds
- used_
by_ boolmalware - Used by malware
- virus_
ident bool - Virus ident
- category String
- Category
- risk String
- Risk
- able
To BooleanTransfer File - Able to transfer file
- alg
Disable StringCapability - Alg disable capability
- consume
Big BooleanBandwidth - Consume big bandwidth
- data
Ident Boolean - Data ident
- default Property Map
- Default
- description String
- Description
- device String
- The device in which the resource is defined
- evasive
Behavior Boolean - Evasive behavior
- file
Type BooleanIdent - File type ident
- folder String
- The folder in which the resource is defined
- has
Known BooleanVulnerability - Has known vulnerability
- name String
- The name of the application
- no
Appid BooleanCaching - No appid caching
- parent
App String - Parent app
- pervasive
Use Boolean - Pervasive use
- prone
To BooleanMisuse - Prone to misuse
- signatures List<Property Map>
- Signature
- snippet String
- The snippet in which the resource is defined
- subcategory String
- Subcategory
- tcp
Half NumberClosed Timeout - timeout for half-close session in seconds
- tcp
Time NumberWait Timeout - timeout for session in time_wait state in seconds
- tcp
Timeout Number - timeout in seconds
- technology String
- Technology
- timeout Number
- timeout in seconds
- tunnel
Applications Boolean - Tunnel applications
- tunnel
Other BooleanApplication - Tunnel other application
- udp
Timeout Number - timeout in seconds
- used
By BooleanMalware - Used by malware
- virus
Ident Boolean - Virus ident
Outputs
All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:
Look up Existing Application Resource
Get an existing Application 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?: ApplicationState, opts?: CustomResourceOptions): Application@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
able_to_transfer_file: Optional[bool] = None,
alg_disable_capability: Optional[str] = None,
category: Optional[str] = None,
consume_big_bandwidth: Optional[bool] = None,
data_ident: Optional[bool] = None,
default: Optional[ApplicationDefaultArgs] = None,
description: Optional[str] = None,
device: Optional[str] = None,
evasive_behavior: Optional[bool] = None,
file_type_ident: Optional[bool] = None,
folder: Optional[str] = None,
has_known_vulnerability: Optional[bool] = None,
name: Optional[str] = None,
no_appid_caching: Optional[bool] = None,
parent_app: Optional[str] = None,
pervasive_use: Optional[bool] = None,
prone_to_misuse: Optional[bool] = None,
risk: Optional[str] = None,
signatures: Optional[Sequence[ApplicationSignatureArgs]] = None,
snippet: Optional[str] = None,
subcategory: Optional[str] = None,
tcp_half_closed_timeout: Optional[int] = None,
tcp_time_wait_timeout: Optional[int] = None,
tcp_timeout: Optional[int] = None,
technology: Optional[str] = None,
tfid: Optional[str] = None,
timeout: Optional[int] = None,
tunnel_applications: Optional[bool] = None,
tunnel_other_application: Optional[bool] = None,
udp_timeout: Optional[int] = None,
used_by_malware: Optional[bool] = None,
virus_ident: Optional[bool] = None) -> Applicationfunc GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)resources: _: type: scm:Application 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.
- Able
To boolTransfer File - Able to transfer file
- Alg
Disable stringCapability - Alg disable capability
- Category string
- Category
- Consume
Big boolBandwidth - Consume big bandwidth
- Data
Ident bool - Data ident
- Default
Application
Default - Default
- Description string
- Description
- Device string
- The device in which the resource is defined
- Evasive
Behavior bool - Evasive behavior
- File
Type boolIdent - File type ident
- Folder string
- The folder in which the resource is defined
- Has
Known boolVulnerability - Has known vulnerability
- Name string
- The name of the application
- No
Appid boolCaching - No appid caching
- Parent
App string - Parent app
- Pervasive
Use bool - Pervasive use
- Prone
To boolMisuse - Prone to misuse
- Risk string
- Risk
- Signatures
List<Application
Signature> - Signature
- Snippet string
- The snippet in which the resource is defined
- Subcategory string
- Subcategory
- Tcp
Half intClosed Timeout - timeout for half-close session in seconds
- Tcp
Time intWait Timeout - timeout for session in time_wait state in seconds
- Tcp
Timeout int - timeout in seconds
- Technology string
- Technology
- Tfid string
- Timeout int
- timeout in seconds
- Tunnel
Applications bool - Tunnel applications
- Tunnel
Other boolApplication - Tunnel other application
- Udp
Timeout int - timeout in seconds
- Used
By boolMalware - Used by malware
- Virus
Ident bool - Virus ident
- Able
To boolTransfer File - Able to transfer file
- Alg
Disable stringCapability - Alg disable capability
- Category string
- Category
- Consume
Big boolBandwidth - Consume big bandwidth
- Data
Ident bool - Data ident
- Default
Application
Default Args - Default
- Description string
- Description
- Device string
- The device in which the resource is defined
- Evasive
Behavior bool - Evasive behavior
- File
Type boolIdent - File type ident
- Folder string
- The folder in which the resource is defined
- Has
Known boolVulnerability - Has known vulnerability
- Name string
- The name of the application
- No
Appid boolCaching - No appid caching
- Parent
App string - Parent app
- Pervasive
Use bool - Pervasive use
- Prone
To boolMisuse - Prone to misuse
- Risk string
- Risk
- Signatures
[]Application
Signature Args - Signature
- Snippet string
- The snippet in which the resource is defined
- Subcategory string
- Subcategory
- Tcp
Half intClosed Timeout - timeout for half-close session in seconds
- Tcp
Time intWait Timeout - timeout for session in time_wait state in seconds
- Tcp
Timeout int - timeout in seconds
- Technology string
- Technology
- Tfid string
- Timeout int
- timeout in seconds
- Tunnel
Applications bool - Tunnel applications
- Tunnel
Other boolApplication - Tunnel other application
- Udp
Timeout int - timeout in seconds
- Used
By boolMalware - Used by malware
- Virus
Ident bool - Virus ident
- able
To BooleanTransfer File - Able to transfer file
- alg
Disable StringCapability - Alg disable capability
- category String
- Category
- consume
Big BooleanBandwidth - Consume big bandwidth
- data
Ident Boolean - Data ident
- default_
Application
Default - Default
- description String
- Description
- device String
- The device in which the resource is defined
- evasive
Behavior Boolean - Evasive behavior
- file
Type BooleanIdent - File type ident
- folder String
- The folder in which the resource is defined
- has
Known BooleanVulnerability - Has known vulnerability
- name String
- The name of the application
- no
Appid BooleanCaching - No appid caching
- parent
App String - Parent app
- pervasive
Use Boolean - Pervasive use
- prone
To BooleanMisuse - Prone to misuse
- risk String
- Risk
- signatures
List<Application
Signature> - Signature
- snippet String
- The snippet in which the resource is defined
- subcategory String
- Subcategory
- tcp
Half IntegerClosed Timeout - timeout for half-close session in seconds
- tcp
Time IntegerWait Timeout - timeout for session in time_wait state in seconds
- tcp
Timeout Integer - timeout in seconds
- technology String
- Technology
- tfid String
- timeout Integer
- timeout in seconds
- tunnel
Applications Boolean - Tunnel applications
- tunnel
Other BooleanApplication - Tunnel other application
- udp
Timeout Integer - timeout in seconds
- used
By BooleanMalware - Used by malware
- virus
Ident Boolean - Virus ident
- able
To booleanTransfer File - Able to transfer file
- alg
Disable stringCapability - Alg disable capability
- category string
- Category
- consume
Big booleanBandwidth - Consume big bandwidth
- data
Ident boolean - Data ident
- default
Application
Default - Default
- description string
- Description
- device string
- The device in which the resource is defined
- evasive
Behavior boolean - Evasive behavior
- file
Type booleanIdent - File type ident
- folder string
- The folder in which the resource is defined
- has
Known booleanVulnerability - Has known vulnerability
- name string
- The name of the application
- no
Appid booleanCaching - No appid caching
- parent
App string - Parent app
- pervasive
Use boolean - Pervasive use
- prone
To booleanMisuse - Prone to misuse
- risk string
- Risk
- signatures
Application
Signature[] - Signature
- snippet string
- The snippet in which the resource is defined
- subcategory string
- Subcategory
- tcp
Half numberClosed Timeout - timeout for half-close session in seconds
- tcp
Time numberWait Timeout - timeout for session in time_wait state in seconds
- tcp
Timeout number - timeout in seconds
- technology string
- Technology
- tfid string
- timeout number
- timeout in seconds
- tunnel
Applications boolean - Tunnel applications
- tunnel
Other booleanApplication - Tunnel other application
- udp
Timeout number - timeout in seconds
- used
By booleanMalware - Used by malware
- virus
Ident boolean - Virus ident
- able_
to_ booltransfer_ file - Able to transfer file
- alg_
disable_ strcapability - Alg disable capability
- category str
- Category
- consume_
big_ boolbandwidth - Consume big bandwidth
- data_
ident bool - Data ident
- default
Application
Default Args - Default
- description str
- Description
- device str
- The device in which the resource is defined
- evasive_
behavior bool - Evasive behavior
- file_
type_ boolident - File type ident
- folder str
- The folder in which the resource is defined
- has_
known_ boolvulnerability - Has known vulnerability
- name str
- The name of the application
- no_
appid_ boolcaching - No appid caching
- parent_
app str - Parent app
- pervasive_
use bool - Pervasive use
- prone_
to_ boolmisuse - Prone to misuse
- risk str
- Risk
- signatures
Sequence[Application
Signature Args] - Signature
- snippet str
- The snippet in which the resource is defined
- subcategory str
- Subcategory
- tcp_
half_ intclosed_ timeout - timeout for half-close session in seconds
- tcp_
time_ intwait_ timeout - timeout for session in time_wait state in seconds
- tcp_
timeout int - timeout in seconds
- technology str
- Technology
- tfid str
- timeout int
- timeout in seconds
- tunnel_
applications bool - Tunnel applications
- tunnel_
other_ boolapplication - Tunnel other application
- udp_
timeout int - timeout in seconds
- used_
by_ boolmalware - Used by malware
- virus_
ident bool - Virus ident
- able
To BooleanTransfer File - Able to transfer file
- alg
Disable StringCapability - Alg disable capability
- category String
- Category
- consume
Big BooleanBandwidth - Consume big bandwidth
- data
Ident Boolean - Data ident
- default Property Map
- Default
- description String
- Description
- device String
- The device in which the resource is defined
- evasive
Behavior Boolean - Evasive behavior
- file
Type BooleanIdent - File type ident
- folder String
- The folder in which the resource is defined
- has
Known BooleanVulnerability - Has known vulnerability
- name String
- The name of the application
- no
Appid BooleanCaching - No appid caching
- parent
App String - Parent app
- pervasive
Use Boolean - Pervasive use
- prone
To BooleanMisuse - Prone to misuse
- risk String
- Risk
- signatures List<Property Map>
- Signature
- snippet String
- The snippet in which the resource is defined
- subcategory String
- Subcategory
- tcp
Half NumberClosed Timeout - timeout for half-close session in seconds
- tcp
Time NumberWait Timeout - timeout for session in time_wait state in seconds
- tcp
Timeout Number - timeout in seconds
- technology String
- Technology
- tfid String
- timeout Number
- timeout in seconds
- tunnel
Applications Boolean - Tunnel applications
- tunnel
Other BooleanApplication - Tunnel other application
- udp
Timeout Number - timeout in seconds
- used
By BooleanMalware - Used by malware
- virus
Ident Boolean - Virus ident
Supporting Types
ApplicationDefault, ApplicationDefaultArgs
- Ident
By ApplicationIcmp6Type Default Ident By Icmp6Type - Ident by icmp6 type
- Ident
By ApplicationIcmp Type Default Ident By Icmp Type - Ident by icmp type
- Ident
By stringIp Protocol - Ident by ip protocol
- Ports List<string>
- Port
- Ident
By ApplicationIcmp6Type Default Ident By Icmp6Type - Ident by icmp6 type
- Ident
By ApplicationIcmp Type Default Ident By Icmp Type - Ident by icmp type
- Ident
By stringIp Protocol - Ident by ip protocol
- Ports []string
- Port
- ident
By ApplicationIcmp6Type Default Ident By Icmp6Type - Ident by icmp6 type
- ident
By ApplicationIcmp Type Default Ident By Icmp Type - Ident by icmp type
- ident
By StringIp Protocol - Ident by ip protocol
- ports List<String>
- Port
- ident
By ApplicationIcmp6Type Default Ident By Icmp6Type - Ident by icmp6 type
- ident
By ApplicationIcmp Type Default Ident By Icmp Type - Ident by icmp type
- ident
By stringIp Protocol - Ident by ip protocol
- ports string[]
- Port
- ident_
by_ Applicationicmp6_ type Default Ident By Icmp6Type - Ident by icmp6 type
- ident_
by_ Applicationicmp_ type Default Ident By Icmp Type - Ident by icmp type
- ident_
by_ strip_ protocol - Ident by ip protocol
- ports Sequence[str]
- Port
- ident
By Property MapIcmp6Type - Ident by icmp6 type
- ident
By Property MapIcmp Type - Ident by icmp type
- ident
By StringIp Protocol - Ident by ip protocol
- ports List<String>
- Port
ApplicationDefaultIdentByIcmp6Type, ApplicationDefaultIdentByIcmp6TypeArgs
ApplicationDefaultIdentByIcmpType, ApplicationDefaultIdentByIcmpTypeArgs
ApplicationSignature, ApplicationSignatureArgs
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- And
Conditions List<ApplicationSignature And Condition> - And condition
- Comment string
- Comment
- Order
Free bool - Order free
- Scope string
- Scope
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- And
Conditions []ApplicationSignature And Condition - And condition
- Comment string
- Comment
- Order
Free bool - Order free
- Scope string
- Scope
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]
- and
Conditions List<ApplicationSignature And Condition> - And condition
- comment String
- Comment
- order
Free Boolean - Order free
- scope String
- Scope
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- and
Conditions ApplicationSignature And Condition[] - And condition
- comment string
- Comment
- order
Free boolean - Order free
- scope string
- Scope
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]
- and_
conditions Sequence[ApplicationSignature And Condition] - And condition
- comment str
- Comment
- order_
free bool - Order free
- scope str
- Scope
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]
- and
Conditions List<Property Map> - And condition
- comment String
- Comment
- order
Free Boolean - Order free
- scope String
- Scope
ApplicationSignatureAndCondition, ApplicationSignatureAndConditionArgs
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- Or
Conditions List<ApplicationSignature And Condition Or Condition> - Or condition
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- Or
Conditions []ApplicationSignature And Condition Or Condition - Or condition
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]
- or
Conditions List<ApplicationSignature And Condition Or Condition> - Or condition
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- or
Conditions ApplicationSignature And Condition Or Condition[] - Or condition
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]
- or_
conditions Sequence[ApplicationSignature And Condition Or Condition] - Or condition
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]
- or
Conditions List<Property Map> - Or condition
ApplicationSignatureAndConditionOrCondition, ApplicationSignatureAndConditionOrConditionArgs
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- Operator
Application
Signature And Condition Or Condition Operator - Operator
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- Operator
Application
Signature And Condition Or Condition Operator - Operator
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]
- operator
Application
Signature And Condition Or Condition Operator - Operator
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]
- operator
Application
Signature And Condition Or Condition Operator - Operator
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]
- operator
Application
Signature And Condition Or Condition Operator - Operator
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]
- operator Property Map
- Operator
ApplicationSignatureAndConditionOrConditionOperator, ApplicationSignatureAndConditionOrConditionOperatorArgs
- Equal
To ApplicationSignature And Condition Or Condition Operator Equal To - Equal to
- Greater
Than ApplicationSignature And Condition Or Condition Operator Greater Than - Greater than
- Less
Than ApplicationSignature And Condition Or Condition Operator Less Than - Less than
- Pattern
Match ApplicationSignature And Condition Or Condition Operator Pattern Match - Pattern match
- Equal
To ApplicationSignature And Condition Or Condition Operator Equal To - Equal to
- Greater
Than ApplicationSignature And Condition Or Condition Operator Greater Than - Greater than
- Less
Than ApplicationSignature And Condition Or Condition Operator Less Than - Less than
- Pattern
Match ApplicationSignature And Condition Or Condition Operator Pattern Match - Pattern match
- equal
To ApplicationSignature And Condition Or Condition Operator Equal To - Equal to
- greater
Than ApplicationSignature And Condition Or Condition Operator Greater Than - Greater than
- less
Than ApplicationSignature And Condition Or Condition Operator Less Than - Less than
- pattern
Match ApplicationSignature And Condition Or Condition Operator Pattern Match - Pattern match
- equal
To ApplicationSignature And Condition Or Condition Operator Equal To - Equal to
- greater
Than ApplicationSignature And Condition Or Condition Operator Greater Than - Greater than
- less
Than ApplicationSignature And Condition Or Condition Operator Less Than - Less than
- pattern
Match ApplicationSignature And Condition Or Condition Operator Pattern Match - Pattern match
- equal_
to ApplicationSignature And Condition Or Condition Operator Equal To - Equal to
- greater_
than ApplicationSignature And Condition Or Condition Operator Greater Than - Greater than
- less_
than ApplicationSignature And Condition Or Condition Operator Less Than - Less than
- pattern_
match ApplicationSignature And Condition Or Condition Operator Pattern Match - Pattern match
- equal
To Property Map - Equal to
- greater
Than Property Map - Greater than
- less
Than Property Map - Less than
- pattern
Match Property Map - Pattern match
ApplicationSignatureAndConditionOrConditionOperatorEqualTo, ApplicationSignatureAndConditionOrConditionOperatorEqualToArgs
ApplicationSignatureAndConditionOrConditionOperatorGreaterThan, ApplicationSignatureAndConditionOrConditionOperatorGreaterThanArgs
- Context string
- Context
- Value int
- Value
- Qualifiers
List<Application
Signature And Condition Or Condition Operator Greater Than Qualifier> - Qualifier
- Context string
- Context
- Value int
- Value
- Qualifiers
[]Application
Signature And Condition Or Condition Operator Greater Than Qualifier - Qualifier
- context String
- Context
- value Integer
- Value
- qualifiers
List<Application
Signature And Condition Or Condition Operator Greater Than Qualifier> - Qualifier
- context string
- Context
- value number
- Value
- qualifiers
Application
Signature And Condition Or Condition Operator Greater Than Qualifier[] - Qualifier
- context str
- Context
- value int
- Value
- qualifiers
Sequence[Application
Signature And Condition Or Condition Operator Greater Than Qualifier] - Qualifier
- context String
- Context
- value Number
- Value
- qualifiers List<Property Map>
- Qualifier
ApplicationSignatureAndConditionOrConditionOperatorGreaterThanQualifier, ApplicationSignatureAndConditionOrConditionOperatorGreaterThanQualifierArgs
ApplicationSignatureAndConditionOrConditionOperatorLessThan, ApplicationSignatureAndConditionOrConditionOperatorLessThanArgs
- Context string
- Context
- Value int
- Value
- Qualifiers
List<Application
Signature And Condition Or Condition Operator Less Than Qualifier> - Qualifier
- Context string
- Context
- Value int
- Value
- Qualifiers
[]Application
Signature And Condition Or Condition Operator Less Than Qualifier - Qualifier
- context String
- Context
- value Integer
- Value
- qualifiers
List<Application
Signature And Condition Or Condition Operator Less Than Qualifier> - Qualifier
- context string
- Context
- value number
- Value
- qualifiers
Application
Signature And Condition Or Condition Operator Less Than Qualifier[] - Qualifier
- context str
- Context
- value int
- Value
- qualifiers
Sequence[Application
Signature And Condition Or Condition Operator Less Than Qualifier] - Qualifier
- context String
- Context
- value Number
- Value
- qualifiers List<Property Map>
- Qualifier
ApplicationSignatureAndConditionOrConditionOperatorLessThanQualifier, ApplicationSignatureAndConditionOrConditionOperatorLessThanQualifierArgs
ApplicationSignatureAndConditionOrConditionOperatorPatternMatch, ApplicationSignatureAndConditionOrConditionOperatorPatternMatchArgs
- Context string
- Context
- Pattern string
- Pattern
- Qualifiers
List<Application
Signature And Condition Or Condition Operator Pattern Match Qualifier> - Qualifier
- Context string
- Context
- Pattern string
- Pattern
- Qualifiers
[]Application
Signature And Condition Or Condition Operator Pattern Match Qualifier - Qualifier
- context String
- Context
- pattern String
- Pattern
- qualifiers
List<Application
Signature And Condition Or Condition Operator Pattern Match Qualifier> - Qualifier
- context string
- Context
- pattern string
- Pattern
- qualifiers
Application
Signature And Condition Or Condition Operator Pattern Match Qualifier[] - Qualifier
- context str
- Context
- pattern str
- Pattern
- qualifiers
Sequence[Application
Signature And Condition Or Condition Operator Pattern Match Qualifier] - Qualifier
- context String
- Context
- pattern String
- Pattern
- qualifiers List<Property Map>
- Qualifier
ApplicationSignatureAndConditionOrConditionOperatorPatternMatchQualifier, ApplicationSignatureAndConditionOrConditionOperatorPatternMatchQualifierArgs
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
