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"),
Timeout = 15,
});
}
}
Coming soon!
import pulumi
import pulumi_f5bigip as f5bigip
do_example = f5bigip.Do("do-example",
do_json=(lambda path: open(path).read())("example.json"),
timeout=15)
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
import * as fs from "fs";
const do_example = new f5bigip.Do("do-example", {
doJson: fs.readFileSync("example.json", "utf-8"),
timeout: 15,
});
Create a Do Resource
new Do(name: string, args: DoArgs, opts?: CustomResourceOptions);
def Do(resource_name: str, opts: Optional[ResourceOptions] = None, do_json: Optional[str] = None, tenant_name: Optional[str] = None, timeout: Optional[int] = None)
func NewDo(ctx *Context, name string, args DoArgs, opts ...ResourceOption) (*Do, error)
public Do(string name, DoArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args DoArgs
- 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 DoArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Do Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Do resource accepts the following input properties:
- Do
Json string Name of the of the Declarative DO JSON file
- Tenant
Name string unique identifier for DO resource
- Timeout int
DO json
- Do
Json string Name of the of the Declarative DO JSON file
- Tenant
Name string unique identifier for DO resource
- Timeout int
DO json
- do
Json string Name of the of the Declarative DO JSON file
- tenant
Name string unique identifier for DO resource
- timeout number
DO json
- do_
json str Name of the of the Declarative DO JSON file
- tenant_
name str unique identifier for DO resource
- timeout int
DO json
Outputs
All input properties are implicitly available as output properties. Additionally, the Do 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 Do Resource
Get an existing Do 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?: DoState, opts?: CustomResourceOptions): Do
@staticmethod
def get(resource_name: str, id: str, opts: Optional[ResourceOptions] = None, do_json: Optional[str] = None, tenant_name: Optional[str] = None, timeout: Optional[int] = None) -> Do
func GetDo(ctx *Context, name string, id IDInput, state *DoState, opts ...ResourceOption) (*Do, error)
public static Do Get(string name, Input<string> id, DoState? 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:
- Do
Json string Name of the of the Declarative DO JSON file
- Tenant
Name string unique identifier for DO resource
- Timeout int
DO json
- Do
Json string Name of the of the Declarative DO JSON file
- Tenant
Name string unique identifier for DO resource
- Timeout int
DO json
- do
Json string Name of the of the Declarative DO JSON file
- tenant
Name string unique identifier for DO resource
- timeout number
DO json
- do_
json str Name of the of the Declarative DO JSON file
- tenant_
name str unique identifier for DO resource
- timeout int
DO json
Package Details
- Repository
- https://github.com/pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.