sdwan.IpsSignatureListPolicyObject
Explore with Pulumi AI
This resource can manage a IPS Signature List Policy Object .
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.IpsSignatureListPolicyObject;
import com.pulumi.sdwan.IpsSignatureListPolicyObjectArgs;
import com.pulumi.sdwan.inputs.IpsSignatureListPolicyObjectEntryArgs;
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 IpsSignatureListPolicyObject("example", IpsSignatureListPolicyObjectArgs.builder()
.name("Example")
.entries(IpsSignatureListPolicyObjectEntryArgs.builder()
.generator_id(1111)
.signature_id(2222)
.build())
.build());
}
}
resources:
example:
type: sdwan:IpsSignatureListPolicyObject
properties:
name: Example
entries:
- generator_id: 1111
signature_id: 2222
Create IpsSignatureListPolicyObject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IpsSignatureListPolicyObject(name: string, args: IpsSignatureListPolicyObjectArgs, opts?: CustomResourceOptions);
@overload
def IpsSignatureListPolicyObject(resource_name: str,
args: IpsSignatureListPolicyObjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IpsSignatureListPolicyObject(resource_name: str,
opts: Optional[ResourceOptions] = None,
entries: Optional[Sequence[IpsSignatureListPolicyObjectEntryArgs]] = None,
name: Optional[str] = None)
func NewIpsSignatureListPolicyObject(ctx *Context, name string, args IpsSignatureListPolicyObjectArgs, opts ...ResourceOption) (*IpsSignatureListPolicyObject, error)
public IpsSignatureListPolicyObject(string name, IpsSignatureListPolicyObjectArgs args, CustomResourceOptions? opts = null)
public IpsSignatureListPolicyObject(String name, IpsSignatureListPolicyObjectArgs args)
public IpsSignatureListPolicyObject(String name, IpsSignatureListPolicyObjectArgs args, CustomResourceOptions options)
type: sdwan:IpsSignatureListPolicyObject
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 IpsSignatureListPolicyObjectArgs
- 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 IpsSignatureListPolicyObjectArgs
- 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 IpsSignatureListPolicyObjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IpsSignatureListPolicyObjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IpsSignatureListPolicyObjectArgs
- 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 ipsSignatureListPolicyObjectResource = new Sdwan.IpsSignatureListPolicyObject("ipsSignatureListPolicyObjectResource", new()
{
Entries = new[]
{
new Sdwan.Inputs.IpsSignatureListPolicyObjectEntryArgs
{
GeneratorId = 0,
SignatureId = 0,
},
},
Name = "string",
});
example, err := sdwan.NewIpsSignatureListPolicyObject(ctx, "ipsSignatureListPolicyObjectResource", &sdwan.IpsSignatureListPolicyObjectArgs{
Entries: sdwan.IpsSignatureListPolicyObjectEntryArray{
&sdwan.IpsSignatureListPolicyObjectEntryArgs{
GeneratorId: pulumi.Int(0),
SignatureId: pulumi.Int(0),
},
},
Name: pulumi.String("string"),
})
var ipsSignatureListPolicyObjectResource = new IpsSignatureListPolicyObject("ipsSignatureListPolicyObjectResource", IpsSignatureListPolicyObjectArgs.builder()
.entries(IpsSignatureListPolicyObjectEntryArgs.builder()
.generatorId(0)
.signatureId(0)
.build())
.name("string")
.build());
ips_signature_list_policy_object_resource = sdwan.IpsSignatureListPolicyObject("ipsSignatureListPolicyObjectResource",
entries=[sdwan.IpsSignatureListPolicyObjectEntryArgs(
generator_id=0,
signature_id=0,
)],
name="string")
const ipsSignatureListPolicyObjectResource = new sdwan.IpsSignatureListPolicyObject("ipsSignatureListPolicyObjectResource", {
entries: [{
generatorId: 0,
signatureId: 0,
}],
name: "string",
});
type: sdwan:IpsSignatureListPolicyObject
properties:
entries:
- generatorId: 0
signatureId: 0
name: string
IpsSignatureListPolicyObject 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 IpsSignatureListPolicyObject resource accepts the following input properties:
- Entries
List<Ips
Signature List Policy Object Entry> - List of entries
- Name string
- The name of the policy object
- Entries
[]Ips
Signature List Policy Object Entry Args - List of entries
- Name string
- The name of the policy object
- entries
List<Ips
Signature List Policy Object Entry> - List of entries
- name String
- The name of the policy object
- entries
Ips
Signature List Policy Object Entry[] - List of entries
- name string
- The name of the policy object
- entries
Sequence[Ips
Signature List Policy Object Entry Args] - List of entries
- name str
- The name of the policy object
- entries List<Property Map>
- List of entries
- name String
- The name of the policy object
Outputs
All input properties are implicitly available as output properties. Additionally, the IpsSignatureListPolicyObject resource produces the following output properties:
Look up Existing IpsSignatureListPolicyObject Resource
Get an existing IpsSignatureListPolicyObject 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?: IpsSignatureListPolicyObjectState, opts?: CustomResourceOptions): IpsSignatureListPolicyObject
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
entries: Optional[Sequence[IpsSignatureListPolicyObjectEntryArgs]] = None,
name: Optional[str] = None,
version: Optional[int] = None) -> IpsSignatureListPolicyObject
func GetIpsSignatureListPolicyObject(ctx *Context, name string, id IDInput, state *IpsSignatureListPolicyObjectState, opts ...ResourceOption) (*IpsSignatureListPolicyObject, error)
public static IpsSignatureListPolicyObject Get(string name, Input<string> id, IpsSignatureListPolicyObjectState? state, CustomResourceOptions? opts = null)
public static IpsSignatureListPolicyObject get(String name, Output<String> id, IpsSignatureListPolicyObjectState 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.
- Entries
List<Ips
Signature List Policy Object Entry> - List of entries
- Name string
- The name of the policy object
- Version int
- The version of the object
- Entries
[]Ips
Signature List Policy Object Entry Args - List of entries
- Name string
- The name of the policy object
- Version int
- The version of the object
- entries
List<Ips
Signature List Policy Object Entry> - List of entries
- name String
- The name of the policy object
- version Integer
- The version of the object
- entries
Ips
Signature List Policy Object Entry[] - List of entries
- name string
- The name of the policy object
- version number
- The version of the object
- entries
Sequence[Ips
Signature List Policy Object Entry Args] - List of entries
- name str
- The name of the policy object
- version int
- The version of the object
- entries List<Property Map>
- List of entries
- name String
- The name of the policy object
- version Number
- The version of the object
Supporting Types
IpsSignatureListPolicyObjectEntry, IpsSignatureListPolicyObjectEntryArgs
- Generator
Id int - Signature generator ID
- Range:
0
-4294967295
- Range:
- Signature
Id int - Signature ID
- Range:
0
-4294967295
- Range:
- Generator
Id int - Signature generator ID
- Range:
0
-4294967295
- Range:
- Signature
Id int - Signature ID
- Range:
0
-4294967295
- Range:
- generator
Id Integer - Signature generator ID
- Range:
0
-4294967295
- Range:
- signature
Id Integer - Signature ID
- Range:
0
-4294967295
- Range:
- generator
Id number - Signature generator ID
- Range:
0
-4294967295
- Range:
- signature
Id number - Signature ID
- Range:
0
-4294967295
- Range:
- generator_
id int - Signature generator ID
- Range:
0
-4294967295
- Range:
- signature_
id int - Signature ID
- Range:
0
-4294967295
- Range:
- generator
Id Number - Signature generator ID
- Range:
0
-4294967295
- Range:
- signature
Id Number - Signature ID
- Range:
0
-4294967295
- Range:
Import
$ pulumi import sdwan:index/ipsSignatureListPolicyObject:IpsSignatureListPolicyObject example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.