1. Packages
  2. Rootly
  3. API Docs
  4. getCustomField
Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly

rootly.getCustomField

Explore with Pulumi AI

Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly

DEPRECATED: Please use form_field data source instead.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rootly = Pulumi.Rootly;

return await Deployment.RunAsync(() => 
{
    var my_custom_field = Rootly.GetCustomField.Invoke(new()
    {
        Slug = "my-custom-field",
    });

});
Copy
package main

import (
	"github.com/pulumi/pulumi-rootly/sdk/go/rootly"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := rootly.LookupCustomField(ctx, &rootly.LookupCustomFieldArgs{
			Slug: pulumi.StringRef("my-custom-field"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rootly.RootlyFunctions;
import com.pulumi.rootly.inputs.GetCustomFieldArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var my-custom-field = RootlyFunctions.getCustomField(GetCustomFieldArgs.builder()
            .slug("my-custom-field")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as rootly from "@pulumi/rootly";

const my-custom-field = rootly.getCustomField({
    slug: "my-custom-field",
});
Copy
import pulumi
import pulumi_rootly as rootly

my_custom_field = rootly.get_custom_field(slug="my-custom-field")
Copy
variables:
  my-custom-field:
    fn::invoke:
      Function: rootly:getCustomField
      Arguments:
        slug: my-custom-field
Copy

Using getCustomField

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getCustomField(args: GetCustomFieldArgs, opts?: InvokeOptions): Promise<GetCustomFieldResult>
function getCustomFieldOutput(args: GetCustomFieldOutputArgs, opts?: InvokeOptions): Output<GetCustomFieldResult>
Copy
def get_custom_field(created_at: Optional[Mapping[str, Any]] = None,
                     enabled: Optional[bool] = None,
                     kind: Optional[str] = None,
                     label: Optional[str] = None,
                     slug: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetCustomFieldResult
def get_custom_field_output(created_at: Optional[pulumi.Input[Mapping[str, Any]]] = None,
                     enabled: Optional[pulumi.Input[bool]] = None,
                     kind: Optional[pulumi.Input[str]] = None,
                     label: Optional[pulumi.Input[str]] = None,
                     slug: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetCustomFieldResult]
Copy
func LookupCustomField(ctx *Context, args *LookupCustomFieldArgs, opts ...InvokeOption) (*LookupCustomFieldResult, error)
func LookupCustomFieldOutput(ctx *Context, args *LookupCustomFieldOutputArgs, opts ...InvokeOption) LookupCustomFieldResultOutput
Copy

> Note: This function is named LookupCustomField in the Go SDK.

public static class GetCustomField 
{
    public static Task<GetCustomFieldResult> InvokeAsync(GetCustomFieldArgs args, InvokeOptions? opts = null)
    public static Output<GetCustomFieldResult> Invoke(GetCustomFieldInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetCustomFieldResult> getCustomField(GetCustomFieldArgs args, InvokeOptions options)
public static Output<GetCustomFieldResult> getCustomField(GetCustomFieldArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: rootly:index/getCustomField:getCustomField
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CreatedAt Dictionary<string, object>
Filter by date range using 'lt' and 'gt'.
Enabled bool
Kind string
Label string
Slug string
CreatedAt map[string]interface{}
Filter by date range using 'lt' and 'gt'.
Enabled bool
Kind string
Label string
Slug string
createdAt Map<String,Object>
Filter by date range using 'lt' and 'gt'.
enabled Boolean
kind String
label String
slug String
createdAt {[key: string]: any}
Filter by date range using 'lt' and 'gt'.
enabled boolean
kind string
label string
slug string
created_at Mapping[str, Any]
Filter by date range using 'lt' and 'gt'.
enabled bool
kind str
label str
slug str
createdAt Map<Any>
Filter by date range using 'lt' and 'gt'.
enabled Boolean
kind String
label String
slug String

getCustomField Result

The following output properties are available:

Id string
The ID of this resource.
Kind string
Label string
Slug string
CreatedAt Dictionary<string, object>
Filter by date range using 'lt' and 'gt'.
Enabled bool
Id string
The ID of this resource.
Kind string
Label string
Slug string
CreatedAt map[string]interface{}
Filter by date range using 'lt' and 'gt'.
Enabled bool
id String
The ID of this resource.
kind String
label String
slug String
createdAt Map<String,Object>
Filter by date range using 'lt' and 'gt'.
enabled Boolean
id string
The ID of this resource.
kind string
label string
slug string
createdAt {[key: string]: any}
Filter by date range using 'lt' and 'gt'.
enabled boolean
id str
The ID of this resource.
kind str
label str
slug str
created_at Mapping[str, Any]
Filter by date range using 'lt' and 'gt'.
enabled bool
id String
The ID of this resource.
kind String
label String
slug String
createdAt Map<Any>
Filter by date range using 'lt' and 'gt'.
enabled Boolean

Package Details

Repository
rootly rootlyhq/pulumi-rootly
License
Apache-2.0
Notes
This Pulumi package is based on the rootly Terraform Provider.
Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly