Akamai v7.2.0 published on Friday, May 31, 2024 by Pulumi
akamai.BotmanCustomBotCategory
Explore with Pulumi AI
Create BotmanCustomBotCategory Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BotmanCustomBotCategory(name: string, args: BotmanCustomBotCategoryArgs, opts?: CustomResourceOptions);
@overload
def BotmanCustomBotCategory(resource_name: str,
args: BotmanCustomBotCategoryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BotmanCustomBotCategory(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[int] = None,
custom_bot_category: Optional[str] = None)
func NewBotmanCustomBotCategory(ctx *Context, name string, args BotmanCustomBotCategoryArgs, opts ...ResourceOption) (*BotmanCustomBotCategory, error)
public BotmanCustomBotCategory(string name, BotmanCustomBotCategoryArgs args, CustomResourceOptions? opts = null)
public BotmanCustomBotCategory(String name, BotmanCustomBotCategoryArgs args)
public BotmanCustomBotCategory(String name, BotmanCustomBotCategoryArgs args, CustomResourceOptions options)
type: akamai:BotmanCustomBotCategory
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 BotmanCustomBotCategoryArgs
- 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 BotmanCustomBotCategoryArgs
- 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 BotmanCustomBotCategoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BotmanCustomBotCategoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BotmanCustomBotCategoryArgs
- 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 botmanCustomBotCategoryResource = new Akamai.BotmanCustomBotCategory("botmanCustomBotCategoryResource", new()
{
ConfigId = 0,
CustomBotCategory = "string",
});
example, err := akamai.NewBotmanCustomBotCategory(ctx, "botmanCustomBotCategoryResource", &akamai.BotmanCustomBotCategoryArgs{
ConfigId: pulumi.Int(0),
CustomBotCategory: pulumi.String("string"),
})
var botmanCustomBotCategoryResource = new BotmanCustomBotCategory("botmanCustomBotCategoryResource", BotmanCustomBotCategoryArgs.builder()
.configId(0)
.customBotCategory("string")
.build());
botman_custom_bot_category_resource = akamai.BotmanCustomBotCategory("botmanCustomBotCategoryResource",
config_id=0,
custom_bot_category="string")
const botmanCustomBotCategoryResource = new akamai.BotmanCustomBotCategory("botmanCustomBotCategoryResource", {
configId: 0,
customBotCategory: "string",
});
type: akamai:BotmanCustomBotCategory
properties:
configId: 0
customBotCategory: string
BotmanCustomBotCategory 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 BotmanCustomBotCategory resource accepts the following input properties:
- Config
Id int - Custom
Bot stringCategory
- Config
Id int - Custom
Bot stringCategory
- config
Id Integer - custom
Bot StringCategory
- config
Id number - custom
Bot stringCategory
- config_
id int - custom_
bot_ strcategory
- config
Id Number - custom
Bot StringCategory
Outputs
All input properties are implicitly available as output properties. Additionally, the BotmanCustomBotCategory resource produces the following output properties:
- Category
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Category
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- category
Id String - id String
- The provider-assigned unique ID for this managed resource.
- category
Id string - id string
- The provider-assigned unique ID for this managed resource.
- category_
id str - id str
- The provider-assigned unique ID for this managed resource.
- category
Id String - id String
- The provider-assigned unique ID for this managed resource.
Look up Existing BotmanCustomBotCategory Resource
Get an existing BotmanCustomBotCategory 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?: BotmanCustomBotCategoryState, opts?: CustomResourceOptions): BotmanCustomBotCategory
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
category_id: Optional[str] = None,
config_id: Optional[int] = None,
custom_bot_category: Optional[str] = None) -> BotmanCustomBotCategory
func GetBotmanCustomBotCategory(ctx *Context, name string, id IDInput, state *BotmanCustomBotCategoryState, opts ...ResourceOption) (*BotmanCustomBotCategory, error)
public static BotmanCustomBotCategory Get(string name, Input<string> id, BotmanCustomBotCategoryState? state, CustomResourceOptions? opts = null)
public static BotmanCustomBotCategory get(String name, Output<String> id, BotmanCustomBotCategoryState 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.
- Category
Id string - Config
Id int - Custom
Bot stringCategory
- Category
Id string - Config
Id int - Custom
Bot stringCategory
- category
Id String - config
Id Integer - custom
Bot StringCategory
- category
Id string - config
Id number - custom
Bot stringCategory
- category_
id str - config_
id int - custom_
bot_ strcategory
- category
Id String - config
Id Number - custom
Bot StringCategory
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.