1. Packages
  2. Ibm Provider
  3. API Docs
  4. getAppidThemeText
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.getAppidThemeText

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Retrieve an IBM Cloud AppID Management Services theme text configuration. For more information, see customizing the login widget

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const text = ibm.getAppidThemeText({
        tenantId: _var.tenant_id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    text = ibm.get_appid_theme_text(tenant_id=var["tenant_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupAppidThemeText(ctx, &ibm.LookupAppidThemeTextArgs{
    			TenantId: _var.Tenant_id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var text = Ibm.GetAppidThemeText.Invoke(new()
        {
            TenantId = @var.Tenant_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetAppidThemeTextArgs;
    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 text = IbmFunctions.getAppidThemeText(GetAppidThemeTextArgs.builder()
                .tenantId(var_.tenant_id())
                .build());
    
        }
    }
    
    variables:
      text:
        fn::invoke:
          function: ibm:getAppidThemeText
          arguments:
            tenantId: ${var.tenant_id}
    

    Using getAppidThemeText

    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 getAppidThemeText(args: GetAppidThemeTextArgs, opts?: InvokeOptions): Promise<GetAppidThemeTextResult>
    function getAppidThemeTextOutput(args: GetAppidThemeTextOutputArgs, opts?: InvokeOptions): Output<GetAppidThemeTextResult>
    def get_appid_theme_text(id: Optional[str] = None,
                             tenant_id: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetAppidThemeTextResult
    def get_appid_theme_text_output(id: Optional[pulumi.Input[str]] = None,
                             tenant_id: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetAppidThemeTextResult]
    func LookupAppidThemeText(ctx *Context, args *LookupAppidThemeTextArgs, opts ...InvokeOption) (*LookupAppidThemeTextResult, error)
    func LookupAppidThemeTextOutput(ctx *Context, args *LookupAppidThemeTextOutputArgs, opts ...InvokeOption) LookupAppidThemeTextResultOutput

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

    public static class GetAppidThemeText 
    {
        public static Task<GetAppidThemeTextResult> InvokeAsync(GetAppidThemeTextArgs args, InvokeOptions? opts = null)
        public static Output<GetAppidThemeTextResult> Invoke(GetAppidThemeTextInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAppidThemeTextResult> getAppidThemeText(GetAppidThemeTextArgs args, InvokeOptions options)
    public static Output<GetAppidThemeTextResult> getAppidThemeText(GetAppidThemeTextArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getAppidThemeText:getAppidThemeText
      arguments:
        # arguments dictionary

    The following arguments are supported:

    TenantId string
    The AppID instance GUID
    Id string
    TenantId string
    The AppID instance GUID
    Id string
    tenantId String
    The AppID instance GUID
    id String
    tenantId string
    The AppID instance GUID
    id string
    tenant_id str
    The AppID instance GUID
    id str
    tenantId String
    The AppID instance GUID
    id String

    getAppidThemeText Result

    The following output properties are available:

    Footnote string
    (String) Footnote
    Id string
    TabTitle string
    (String) The tab name that will be displayed in the browser
    TenantId string
    Footnote string
    (String) Footnote
    Id string
    TabTitle string
    (String) The tab name that will be displayed in the browser
    TenantId string
    footnote String
    (String) Footnote
    id String
    tabTitle String
    (String) The tab name that will be displayed in the browser
    tenantId String
    footnote string
    (String) Footnote
    id string
    tabTitle string
    (String) The tab name that will be displayed in the browser
    tenantId string
    footnote str
    (String) Footnote
    id str
    tab_title str
    (String) The tab name that will be displayed in the browser
    tenant_id str
    footnote String
    (String) Footnote
    id String
    tabTitle String
    (String) The tab name that will be displayed in the browser
    tenantId String

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud