f5bigip.Command
Explore with Pulumi AI
f5bigip.Command
Run TMSH commands on F5 devices
This resource is helpful to send TMSH command to an BIG-IP node and returns the results read from the device
Create Command Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Command(name: string, args: CommandArgs, opts?: CustomResourceOptions);
@overload
def Command(resource_name: str,
args: CommandArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Command(resource_name: str,
opts: Optional[ResourceOptions] = None,
commands: Optional[Sequence[str]] = None,
command_results: Optional[Sequence[str]] = None,
when: Optional[str] = None)
func NewCommand(ctx *Context, name string, args CommandArgs, opts ...ResourceOption) (*Command, error)
public Command(string name, CommandArgs args, CustomResourceOptions? opts = null)
public Command(String name, CommandArgs args)
public Command(String name, CommandArgs args, CustomResourceOptions options)
type: f5bigip:Command
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 CommandArgs
- 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 CommandArgs
- 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 CommandArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CommandArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CommandArgs
- 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 commandResource = new F5BigIP.Command("commandResource", new()
{
Commands = new[]
{
"string",
},
CommandResults = new[]
{
"string",
},
When = "string",
});
example, err := f5bigip.NewCommand(ctx, "commandResource", &f5bigip.CommandArgs{
Commands: pulumi.StringArray{
pulumi.String("string"),
},
CommandResults: pulumi.StringArray{
pulumi.String("string"),
},
When: pulumi.String("string"),
})
var commandResource = new Command("commandResource", CommandArgs.builder()
.commands("string")
.commandResults("string")
.when("string")
.build());
command_resource = f5bigip.Command("commandResource",
commands=["string"],
command_results=["string"],
when="string")
const commandResource = new f5bigip.Command("commandResource", {
commands: ["string"],
commandResults: ["string"],
when: "string",
});
type: f5bigip:Command
properties:
commandResults:
- string
commands:
- string
when: string
Command 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 Command resource accepts the following input properties:
- Commands List<string>
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- Command
Results List<string> - The resulting output from the
commands
executed - When string
- Commands []string
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- Command
Results []string - The resulting output from the
commands
executed - When string
- commands List<String>
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- command
Results List<String> - The resulting output from the
commands
executed - when String
- commands string[]
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- command
Results string[] - The resulting output from the
commands
executed - when string
- commands Sequence[str]
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- command_
results Sequence[str] - The resulting output from the
commands
executed - when str
- commands List<String>
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- command
Results List<String> - The resulting output from the
commands
executed - when String
Outputs
All input properties are implicitly available as output properties. Additionally, the Command resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Command Resource
Get an existing Command 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?: CommandState, opts?: CustomResourceOptions): Command
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
command_results: Optional[Sequence[str]] = None,
commands: Optional[Sequence[str]] = None,
when: Optional[str] = None) -> Command
func GetCommand(ctx *Context, name string, id IDInput, state *CommandState, opts ...ResourceOption) (*Command, error)
public static Command Get(string name, Input<string> id, CommandState? state, CustomResourceOptions? opts = null)
public static Command get(String name, Output<String> id, CommandState 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.
- Command
Results List<string> - The resulting output from the
commands
executed - Commands List<string>
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- When string
- Command
Results []string - The resulting output from the
commands
executed - Commands []string
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- When string
- command
Results List<String> - The resulting output from the
commands
executed - commands List<String>
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- when String
- command
Results string[] - The resulting output from the
commands
executed - commands string[]
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- when string
- command_
results Sequence[str] - The resulting output from the
commands
executed - commands Sequence[str]
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- when str
- command
Results List<String> - The resulting output from the
commands
executed - commands List<String>
- The commands to send to the remote BIG-IP device over the configured provider. The resulting output from the command is returned and added to
command_result
- when String
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.