Provision

f5bigip.sys.Provision provides details bout how to enable “ilx”, “asm” “apm” resource on BIG-IP

Example Usage

using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

class MyStack : Stack
{
    public MyStack()
    {
        var test_provision = new F5BigIP.Sys.Provision("test-provision", new F5BigIP.Sys.ProvisionArgs
        {
            CpuRatio = 0,
            DiskRatio = 0,
            FullPath = "asm",
            Level = "none",
            MemoryRatio = 0,
            Name = "TEST_ASM_PROVISION_NAME",
        });
    }

}

Coming soon!

import pulumi
import pulumi_f5bigip as f5bigip

test_provision = f5bigip.sys.Provision("test-provision",
    cpu_ratio=0,
    disk_ratio=0,
    full_path="asm",
    level="none",
    memory_ratio=0,
    name="TEST_ASM_PROVISION_NAME")
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const test_provision = new f5bigip.sys.Provision("test-provision", {
    cpuRatio: 0,
    diskRatio: 0,
    fullPath: "asm",
    level: "none",
    memoryRatio: 0,
    name: "TEST_ASM_PROVISION_NAME",
});

Create a Provision Resource

def Provision(resource_name, opts=None, cpu_ratio=None, disk_ratio=None, full_path=None, level=None, memory_ratio=None, name=None, __props__=None);
func NewProvision(ctx *Context, name string, args ProvisionArgs, opts ...ResourceOption) (*Provision, error)
public Provision(string name, ProvisionArgs args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args ProvisionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args ProvisionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ProvisionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

Provision Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The Provision resource accepts the following input properties:

Name string

Name of the module to be provisioned

CpuRatio int

cpu Ratio

DiskRatio int

disk Ratio

FullPath string

path

Level string

what level nominal or dedicated

MemoryRatio int

memory Ratio

Name string

Name of the module to be provisioned

CpuRatio int

cpu Ratio

DiskRatio int

disk Ratio

FullPath string

path

Level string

what level nominal or dedicated

MemoryRatio int

memory Ratio

name string

Name of the module to be provisioned

cpuRatio number

cpu Ratio

diskRatio number

disk Ratio

fullPath string

path

level string

what level nominal or dedicated

memoryRatio number

memory Ratio

name str

Name of the module to be provisioned

cpu_ratio float

cpu Ratio

disk_ratio float

disk Ratio

full_path str

path

level str

what level nominal or dedicated

memory_ratio float

memory Ratio

Outputs

All input properties are implicitly available as output properties. Additionally, the Provision 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing Provision Resource

Get an existing Provision 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?: ProvisionState, opts?: CustomResourceOptions): Provision
static get(resource_name, id, opts=None, cpu_ratio=None, disk_ratio=None, full_path=None, level=None, memory_ratio=None, name=None, __props__=None);
func GetProvision(ctx *Context, name string, id IDInput, state *ProvisionState, opts ...ResourceOption) (*Provision, error)
public static Provision Get(string name, Input<string> id, ProvisionState? state, CustomResourceOptions? opts = null)
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.

The following state arguments are supported:

CpuRatio int

cpu Ratio

DiskRatio int

disk Ratio

FullPath string

path

Level string

what level nominal or dedicated

MemoryRatio int

memory Ratio

Name string

Name of the module to be provisioned

CpuRatio int

cpu Ratio

DiskRatio int

disk Ratio

FullPath string

path

Level string

what level nominal or dedicated

MemoryRatio int

memory Ratio

Name string

Name of the module to be provisioned

cpuRatio number

cpu Ratio

diskRatio number

disk Ratio

fullPath string

path

level string

what level nominal or dedicated

memoryRatio number

memory Ratio

name string

Name of the module to be provisioned

cpu_ratio float

cpu Ratio

disk_ratio float

disk Ratio

full_path str

path

level str

what level nominal or dedicated

memory_ratio float

memory Ratio

name str

Name of the module to be provisioned

Package Details

Repository
https://github.com/pulumi/pulumi-f5bigip
License
Apache-2.0
Notes
This Pulumi package is based on the bigip Terraform Provider.