1. Packages
  2. Ibm Provider
  3. API Docs
  4. CisBotManagement
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.CisBotManagement

Explore with Pulumi AI

Create CisBotManagement Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CisBotManagement(name: string, args: CisBotManagementArgs, opts?: CustomResourceOptions);
@overload
def CisBotManagement(resource_name: str,
                     args: CisBotManagementArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def CisBotManagement(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     cis_id: Optional[str] = None,
                     domain_id: Optional[str] = None,
                     cis_bot_management_id: Optional[str] = None)
func NewCisBotManagement(ctx *Context, name string, args CisBotManagementArgs, opts ...ResourceOption) (*CisBotManagement, error)
public CisBotManagement(string name, CisBotManagementArgs args, CustomResourceOptions? opts = null)
public CisBotManagement(String name, CisBotManagementArgs args)
public CisBotManagement(String name, CisBotManagementArgs args, CustomResourceOptions options)
type: ibm:CisBotManagement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CisBotManagementArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CisBotManagementArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CisBotManagementArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CisBotManagementArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CisBotManagementArgs
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 cisBotManagementResource = new Ibm.CisBotManagement("cisBotManagementResource", new()
{
    CisId = "string",
    DomainId = "string",
    CisBotManagementId = "string",
});
Copy
example, err := ibm.NewCisBotManagement(ctx, "cisBotManagementResource", &ibm.CisBotManagementArgs{
CisId: pulumi.String("string"),
DomainId: pulumi.String("string"),
CisBotManagementId: pulumi.String("string"),
})
Copy
var cisBotManagementResource = new CisBotManagement("cisBotManagementResource", CisBotManagementArgs.builder()
    .cisId("string")
    .domainId("string")
    .cisBotManagementId("string")
    .build());
Copy
cis_bot_management_resource = ibm.CisBotManagement("cisBotManagementResource",
    cis_id="string",
    domain_id="string",
    cis_bot_management_id="string")
Copy
const cisBotManagementResource = new ibm.CisBotManagement("cisBotManagementResource", {
    cisId: "string",
    domainId: "string",
    cisBotManagementId: "string",
});
Copy
type: ibm:CisBotManagement
properties:
    cisBotManagementId: string
    cisId: string
    domainId: string
Copy

CisBotManagement 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 CisBotManagement resource accepts the following input properties:

CisId This property is required. string
CIS instance crn
DomainId This property is required. string
Associated CIS domain
CisBotManagementId string
CisId This property is required. string
CIS instance crn
DomainId This property is required. string
Associated CIS domain
CisBotManagementId string
cisId This property is required. String
CIS instance crn
domainId This property is required. String
Associated CIS domain
cisBotManagementId String
cisId This property is required. string
CIS instance crn
domainId This property is required. string
Associated CIS domain
cisBotManagementId string
cis_id This property is required. str
CIS instance crn
domain_id This property is required. str
Associated CIS domain
cis_bot_management_id str
cisId This property is required. String
CIS instance crn
domainId This property is required. String
Associated CIS domain
cisBotManagementId String

Outputs

All input properties are implicitly available as output properties. Additionally, the CisBotManagement resource produces the following output properties:

AuthIdLogging string
Auth ID Logging
EnableJs string
Enable JS
FightMode string
Fight Mode
Id string
The provider-assigned unique ID for this managed resource.
SessionScore string
Session Score
UseLatestModel string
Use Latest Model
AuthIdLogging string
Auth ID Logging
EnableJs string
Enable JS
FightMode string
Fight Mode
Id string
The provider-assigned unique ID for this managed resource.
SessionScore string
Session Score
UseLatestModel string
Use Latest Model
authIdLogging String
Auth ID Logging
enableJs String
Enable JS
fightMode String
Fight Mode
id String
The provider-assigned unique ID for this managed resource.
sessionScore String
Session Score
useLatestModel String
Use Latest Model
authIdLogging string
Auth ID Logging
enableJs string
Enable JS
fightMode string
Fight Mode
id string
The provider-assigned unique ID for this managed resource.
sessionScore string
Session Score
useLatestModel string
Use Latest Model
auth_id_logging str
Auth ID Logging
enable_js str
Enable JS
fight_mode str
Fight Mode
id str
The provider-assigned unique ID for this managed resource.
session_score str
Session Score
use_latest_model str
Use Latest Model
authIdLogging String
Auth ID Logging
enableJs String
Enable JS
fightMode String
Fight Mode
id String
The provider-assigned unique ID for this managed resource.
sessionScore String
Session Score
useLatestModel String
Use Latest Model

Look up Existing CisBotManagement Resource

Get an existing CisBotManagement 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?: CisBotManagementState, opts?: CustomResourceOptions): CisBotManagement
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_id_logging: Optional[str] = None,
        cis_bot_management_id: Optional[str] = None,
        cis_id: Optional[str] = None,
        domain_id: Optional[str] = None,
        enable_js: Optional[str] = None,
        fight_mode: Optional[str] = None,
        session_score: Optional[str] = None,
        use_latest_model: Optional[str] = None) -> CisBotManagement
func GetCisBotManagement(ctx *Context, name string, id IDInput, state *CisBotManagementState, opts ...ResourceOption) (*CisBotManagement, error)
public static CisBotManagement Get(string name, Input<string> id, CisBotManagementState? state, CustomResourceOptions? opts = null)
public static CisBotManagement get(String name, Output<String> id, CisBotManagementState state, CustomResourceOptions options)
resources:  _:    type: ibm:CisBotManagement    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AuthIdLogging string
Auth ID Logging
CisBotManagementId string
CisId string
CIS instance crn
DomainId string
Associated CIS domain
EnableJs string
Enable JS
FightMode string
Fight Mode
SessionScore string
Session Score
UseLatestModel string
Use Latest Model
AuthIdLogging string
Auth ID Logging
CisBotManagementId string
CisId string
CIS instance crn
DomainId string
Associated CIS domain
EnableJs string
Enable JS
FightMode string
Fight Mode
SessionScore string
Session Score
UseLatestModel string
Use Latest Model
authIdLogging String
Auth ID Logging
cisBotManagementId String
cisId String
CIS instance crn
domainId String
Associated CIS domain
enableJs String
Enable JS
fightMode String
Fight Mode
sessionScore String
Session Score
useLatestModel String
Use Latest Model
authIdLogging string
Auth ID Logging
cisBotManagementId string
cisId string
CIS instance crn
domainId string
Associated CIS domain
enableJs string
Enable JS
fightMode string
Fight Mode
sessionScore string
Session Score
useLatestModel string
Use Latest Model
auth_id_logging str
Auth ID Logging
cis_bot_management_id str
cis_id str
CIS instance crn
domain_id str
Associated CIS domain
enable_js str
Enable JS
fight_mode str
Fight Mode
session_score str
Session Score
use_latest_model str
Use Latest Model
authIdLogging String
Auth ID Logging
cisBotManagementId String
cisId String
CIS instance crn
domainId String
Associated CIS domain
enableJs String
Enable JS
fightMode String
Fight Mode
sessionScore String
Session Score
useLatestModel String
Use Latest Model

Package Details

Repository
ibm ibm-cloud/terraform-provider-ibm
License
Notes
This Pulumi package is based on the ibm Terraform Provider.