Namespace Pulumi.F5BigIP
Classes
As3
f5bigip..As3 provides details about bigip as3 resource
This resource is helpful to configure as3 declarative JSON on BIG-IP.
As3Args
As3State
Config
Do
f5bigip..Do provides details about bigip do resource
This resource is helpful to configure do declarative JSON on BIG-IP.
Example Usage
using System.IO;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var do_example = new F5BigIP.Do("do-example", new F5BigIP.DoArgs
{
DoJson = File.ReadAllText("example.json"),
TenantName = "sample_test1",
});
}
}
DoArgs
DoState
Provider
The provider type for the bigip package. By default, resources use package-wide configuration
settings, however an explicit Provider instance may be created and passed during resource
construction to achieve fine-grained programmatic control over provider settings. See the
documentation for more information.