ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud
ibm.getAppidIdpGoogle
Explore with Pulumi AI
Retrieve information about an IBM Cloud AppID Google IDP. For more information, see App ID social identity providers
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const gg = ibm.getAppidIdpGoogle({
tenantId: _var.tenant_id,
});
import pulumi
import pulumi_ibm as ibm
gg = ibm.get_appid_idp_google(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.LookupAppidIdpGoogle(ctx, &ibm.LookupAppidIdpGoogleArgs{
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 gg = Ibm.GetAppidIdpGoogle.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.GetAppidIdpGoogleArgs;
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 gg = IbmFunctions.getAppidIdpGoogle(GetAppidIdpGoogleArgs.builder()
.tenantId(var_.tenant_id())
.build());
}
}
variables:
gg:
fn::invoke:
function: ibm:getAppidIdpGoogle
arguments:
tenantId: ${var.tenant_id}
Using getAppidIdpGoogle
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 getAppidIdpGoogle(args: GetAppidIdpGoogleArgs, opts?: InvokeOptions): Promise<GetAppidIdpGoogleResult>
function getAppidIdpGoogleOutput(args: GetAppidIdpGoogleOutputArgs, opts?: InvokeOptions): Output<GetAppidIdpGoogleResult>
def get_appid_idp_google(id: Optional[str] = None,
tenant_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAppidIdpGoogleResult
def get_appid_idp_google_output(id: Optional[pulumi.Input[str]] = None,
tenant_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAppidIdpGoogleResult]
func LookupAppidIdpGoogle(ctx *Context, args *LookupAppidIdpGoogleArgs, opts ...InvokeOption) (*LookupAppidIdpGoogleResult, error)
func LookupAppidIdpGoogleOutput(ctx *Context, args *LookupAppidIdpGoogleOutputArgs, opts ...InvokeOption) LookupAppidIdpGoogleResultOutput
> Note: This function is named LookupAppidIdpGoogle
in the Go SDK.
public static class GetAppidIdpGoogle
{
public static Task<GetAppidIdpGoogleResult> InvokeAsync(GetAppidIdpGoogleArgs args, InvokeOptions? opts = null)
public static Output<GetAppidIdpGoogleResult> Invoke(GetAppidIdpGoogleInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAppidIdpGoogleResult> getAppidIdpGoogle(GetAppidIdpGoogleArgs args, InvokeOptions options)
public static Output<GetAppidIdpGoogleResult> getAppidIdpGoogle(GetAppidIdpGoogleArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getAppidIdpGoogle:getAppidIdpGoogle
arguments:
# arguments dictionary
The following arguments are supported:
getAppidIdpGoogle Result
The following output properties are available:
- Configs
List<Get
Appid Idp Google Config> - (List of Object, Max: 1) current Google IDP configuration if active
- Id string
- Is
Active bool - (String)
true
if Google IDP is active - Redirect
Url string - (String) Paste the URI into the Authorized redirect URIs field in the Google Developer Console
- Tenant
Id string
- Configs
[]Get
Appid Idp Google Config - (List of Object, Max: 1) current Google IDP configuration if active
- Id string
- Is
Active bool - (String)
true
if Google IDP is active - Redirect
Url string - (String) Paste the URI into the Authorized redirect URIs field in the Google Developer Console
- Tenant
Id string
- configs
List<Get
Appid Idp Google Config> - (List of Object, Max: 1) current Google IDP configuration if active
- id String
- is
Active Boolean - (String)
true
if Google IDP is active - redirect
Url String - (String) Paste the URI into the Authorized redirect URIs field in the Google Developer Console
- tenant
Id String
- configs
Get
Appid Idp Google Config[] - (List of Object, Max: 1) current Google IDP configuration if active
- id string
- is
Active boolean - (String)
true
if Google IDP is active - redirect
Url string - (String) Paste the URI into the Authorized redirect URIs field in the Google Developer Console
- tenant
Id string
- configs
Sequence[Get
Appid Idp Google Config] - (List of Object, Max: 1) current Google IDP configuration if active
- id str
- is_
active bool - (String)
true
if Google IDP is active - redirect_
url str - (String) Paste the URI into the Authorized redirect URIs field in the Google Developer Console
- tenant_
id str
- configs List<Property Map>
- (List of Object, Max: 1) current Google IDP configuration if active
- id String
- is
Active Boolean - (String)
true
if Google IDP is active - redirect
Url String - (String) Paste the URI into the Authorized redirect URIs field in the Google Developer Console
- tenant
Id String
Supporting Types
GetAppidIdpGoogleConfig
- Application
Id string - (String) Google application ID
- Application
Secret string - (String) Google application secret
- Application
Id string - (String) Google application ID
- Application
Secret string - (String) Google application secret
- application
Id String - (String) Google application ID
- application
Secret String - (String) Google application secret
- application
Id string - (String) Google application ID
- application
Secret string - (String) Google application secret
- application_
id str - (String) Google application ID
- application_
secret str - (String) Google application secret
- application
Id String - (String) Google application ID
- application
Secret String - (String) Google application secret
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.