GetApp

Use this data source to retrieve the collaborators for a given repository.

Example Usage

using Pulumi;
using Okta = Pulumi.Okta;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Okta.App.GetApp.InvokeAsync(new Okta.App.GetAppArgs
        {
            Label = "Example App",
        }));
    }

}

Coming soon!

import pulumi
import pulumi_okta as okta

example = okta.app.get_app(label="Example App")
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = pulumi.output(okta.app.getApp({
    label: "Example App",
}, { async: true }));

Using GetApp

function getApp(args: GetAppArgs, opts?: InvokeOptions): Promise<GetAppResult>
function  get_app(active_only=None, id=None, label=None, label_prefix=None, opts=None)
func GetApp(ctx *Context, args *GetAppArgs, opts ...InvokeOption) (*GetAppResult, error)
public static class GetApp {
    public static Task<GetAppResult> InvokeAsync(GetAppArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

ActiveOnly bool

tells the provider to query for only ACTIVE applications.

Id string

id of application to retrieve, conflicts with label and label_prefix.

Label string

The label of the app to retrieve, conflicts with label_prefix and id.

LabelPrefix string

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

ActiveOnly bool

tells the provider to query for only ACTIVE applications.

Id string

id of application to retrieve, conflicts with label and label_prefix.

Label string

The label of the app to retrieve, conflicts with label_prefix and id.

LabelPrefix string

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

activeOnly boolean

tells the provider to query for only ACTIVE applications.

id string

id of application to retrieve, conflicts with label and label_prefix.

label string

The label of the app to retrieve, conflicts with label_prefix and id.

labelPrefix string

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

active_only bool

tells the provider to query for only ACTIVE applications.

id str

id of application to retrieve, conflicts with label and label_prefix.

label str

The label of the app to retrieve, conflicts with label_prefix and id.

label_prefix str

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

GetApp Result

The following output properties are available:

Description string

description of application.

Name string

name of application.

Status string

status of application.

ActiveOnly bool
Id string

id of application.

Label string

label of application.

LabelPrefix string
Description string

description of application.

Name string

name of application.

Status string

status of application.

ActiveOnly bool
Id string

id of application.

Label string

label of application.

LabelPrefix string
description string

description of application.

name string

name of application.

status string

status of application.

activeOnly boolean
id string

id of application.

label string

label of application.

labelPrefix string
description str

description of application.

name str

name of application.

status str

status of application.

active_only bool
id str

id of application.

label str

label of application.

label_prefix str

Package Details

Repository
https://github.com/pulumi/pulumi-okta
License
Apache-2.0
Notes
This Pulumi package is based on the okta Terraform Provider.