Class 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",
});
}
}
Inherited Members
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
Assembly: Pulumi.F5BigIP.dll
Syntax
public class Do : CustomResource
Constructors
View SourceDo(String, DoArgs, CustomResourceOptions)
Create a Do resource with the given unique name, arguments, and options.
Declaration
public Do(string name, DoArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| DoArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceDoJson
Name of the of the Declarative DO JSON file
Declaration
public Output<string> DoJson { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
TenantName
unique identifier for DO resource
Declaration
public Output<string> TenantName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, DoState, CustomResourceOptions)
Get an existing Do resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static Do Get(string name, Input<string> id, DoState 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. |
| DoState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| Do |