Show / Hide Table of Contents

Class 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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
Provision
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.F5BigIP.Sys
Assembly: Pulumi.F5BigIP.dll
Syntax
public class Provision : CustomResource

Constructors

View Source

Provision(String, ProvisionArgs, CustomResourceOptions)

Create a Provision resource with the given unique name, arguments, and options.

Declaration
public Provision(string name, ProvisionArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

ProvisionArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

CpuRatio

cpu Ratio

Declaration
public Output<int?> CpuRatio { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

DiskRatio

disk Ratio

Declaration
public Output<int?> DiskRatio { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

FullPath

path

Declaration
public Output<string> FullPath { get; }
Property Value
Type Description
Output<System.String>
View Source

Level

what level nominal or dedicated

Declaration
public Output<string> Level { get; }
Property Value
Type Description
Output<System.String>
View Source

MemoryRatio

memory Ratio

Declaration
public Output<int?> MemoryRatio { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

Name

Name of the module to be provisioned

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, ProvisionState, CustomResourceOptions)

Get an existing Provision resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static Provision Get(string name, Input<string> id, ProvisionState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

ProvisionState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
Provision
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.