ibm.AppidActionUrl
Explore with Pulumi AI
Create, update, or delete an IBM Cloud AppID Management Services Action URL.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const url = new ibm.AppidActionUrl("url", {
tenantId: _var.tenant_id,
action: "on_user_verified",
});
import pulumi
import pulumi_ibm as ibm
url = ibm.AppidActionUrl("url",
tenant_id=var["tenant_id"],
action="on_user_verified")
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.NewAppidActionUrl(ctx, "url", &ibm.AppidActionUrlArgs{
TenantId: pulumi.Any(_var.Tenant_id),
Action: pulumi.String("on_user_verified"),
})
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 url = new Ibm.AppidActionUrl("url", new()
{
TenantId = @var.Tenant_id,
Action = "on_user_verified",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.AppidActionUrl;
import com.pulumi.ibm.AppidActionUrlArgs;
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) {
var url = new AppidActionUrl("url", AppidActionUrlArgs.builder()
.tenantId(var_.tenant_id())
.action("on_user_verified")
.build());
}
}
resources:
url:
type: ibm:AppidActionUrl
properties:
tenantId: ${var.tenant_id}
action: on_user_verified
Create AppidActionUrl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppidActionUrl(name: string, args: AppidActionUrlArgs, opts?: CustomResourceOptions);
@overload
def AppidActionUrl(resource_name: str,
args: AppidActionUrlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppidActionUrl(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
tenant_id: Optional[str] = None,
url: Optional[str] = None,
appid_action_url_id: Optional[str] = None)
func NewAppidActionUrl(ctx *Context, name string, args AppidActionUrlArgs, opts ...ResourceOption) (*AppidActionUrl, error)
public AppidActionUrl(string name, AppidActionUrlArgs args, CustomResourceOptions? opts = null)
public AppidActionUrl(String name, AppidActionUrlArgs args)
public AppidActionUrl(String name, AppidActionUrlArgs args, CustomResourceOptions options)
type: ibm:AppidActionUrl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AppidActionUrlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AppidActionUrlArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AppidActionUrlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppidActionUrlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppidActionUrlArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var appidActionUrlResource = new Ibm.AppidActionUrl("appidActionUrlResource", new()
{
Action = "string",
TenantId = "string",
Url = "string",
AppidActionUrlId = "string",
});
example, err := ibm.NewAppidActionUrl(ctx, "appidActionUrlResource", &ibm.AppidActionUrlArgs{
Action: pulumi.String("string"),
TenantId: pulumi.String("string"),
Url: pulumi.String("string"),
AppidActionUrlId: pulumi.String("string"),
})
var appidActionUrlResource = new AppidActionUrl("appidActionUrlResource", AppidActionUrlArgs.builder()
.action("string")
.tenantId("string")
.url("string")
.appidActionUrlId("string")
.build());
appid_action_url_resource = ibm.AppidActionUrl("appidActionUrlResource",
action="string",
tenant_id="string",
url="string",
appid_action_url_id="string")
const appidActionUrlResource = new ibm.AppidActionUrl("appidActionUrlResource", {
action: "string",
tenantId: "string",
url: "string",
appidActionUrlId: "string",
});
type: ibm:AppidActionUrl
properties:
action: string
appidActionUrlId: string
tenantId: string
url: string
AppidActionUrl Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AppidActionUrl resource accepts the following input properties:
- Action string
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - Tenant
Id string - The AppID instance GUID
- Url string
- The action URL
- Appid
Action stringUrl Id
- Action string
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - Tenant
Id string - The AppID instance GUID
- Url string
- The action URL
- Appid
Action stringUrl Id
- action String
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - tenant
Id String - The AppID instance GUID
- url String
- The action URL
- appid
Action StringUrl Id
- action string
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - tenant
Id string - The AppID instance GUID
- url string
- The action URL
- appid
Action stringUrl Id
- action str
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - tenant_
id str - The AppID instance GUID
- url str
- The action URL
- appid_
action_ strurl_ id
- action String
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - tenant
Id String - The AppID instance GUID
- url String
- The action URL
- appid
Action StringUrl Id
Outputs
All input properties are implicitly available as output properties. Additionally, the AppidActionUrl resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AppidActionUrl Resource
Get an existing AppidActionUrl resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AppidActionUrlState, opts?: CustomResourceOptions): AppidActionUrl
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
appid_action_url_id: Optional[str] = None,
tenant_id: Optional[str] = None,
url: Optional[str] = None) -> AppidActionUrl
func GetAppidActionUrl(ctx *Context, name string, id IDInput, state *AppidActionUrlState, opts ...ResourceOption) (*AppidActionUrl, error)
public static AppidActionUrl Get(string name, Input<string> id, AppidActionUrlState? state, CustomResourceOptions? opts = null)
public static AppidActionUrl get(String name, Output<String> id, AppidActionUrlState state, CustomResourceOptions options)
resources: _: type: ibm:AppidActionUrl get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action string
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - Appid
Action stringUrl Id - Tenant
Id string - The AppID instance GUID
- Url string
- The action URL
- Action string
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - Appid
Action stringUrl Id - Tenant
Id string - The AppID instance GUID
- Url string
- The action URL
- action String
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - appid
Action StringUrl Id - tenant
Id String - The AppID instance GUID
- url String
- The action URL
- action string
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - appid
Action stringUrl Id - tenant
Id string - The AppID instance GUID
- url string
- The action URL
- action str
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - appid_
action_ strurl_ id - tenant_
id str - The AppID instance GUID
- url str
- The action URL
- action String
- The type of the action:
on_user_verified
- the URL of your custom user verified page,on_reset_password
- the URL of your custom reset password page - appid
Action StringUrl Id - tenant
Id String - The AppID instance GUID
- url String
- The action URL
Import
The ibm_appid_action_url
resource can be imported by using the AppID tenant ID and action type string.
Syntax
bash
$ pulumi import ibm:index/appidActionUrl:AppidActionUrl url <tenant_id>/<action_type>
Example
bash
$ pulumi import ibm:index/appidActionUrl:AppidActionUrl url 5fa344a8-d361-4bc2-9051-58ca253f4b2b/on_reset_password
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.