1. Packages
  2. Awx Provider
  3. API Docs
  4. WorkflowJobTemplateLaunch
awx 0.29.1 published on Monday, Apr 14, 2025 by denouche

awx.WorkflowJobTemplateLaunch

Explore with Pulumi AI

awx logo
awx 0.29.1 published on Monday, Apr 14, 2025 by denouche

    Create WorkflowJobTemplateLaunch Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WorkflowJobTemplateLaunch(name: string, args: WorkflowJobTemplateLaunchArgs, opts?: CustomResourceOptions);
    @overload
    def WorkflowJobTemplateLaunch(resource_name: str,
                                  args: WorkflowJobTemplateLaunchArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkflowJobTemplateLaunch(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  workflow_job_template_id: Optional[float] = None,
                                  extra_vars: Optional[str] = None,
                                  timeouts: Optional[WorkflowJobTemplateLaunchTimeoutsArgs] = None,
                                  wait_for_completion: Optional[bool] = None,
                                  workflow_job_template_launch_id: Optional[str] = None)
    func NewWorkflowJobTemplateLaunch(ctx *Context, name string, args WorkflowJobTemplateLaunchArgs, opts ...ResourceOption) (*WorkflowJobTemplateLaunch, error)
    public WorkflowJobTemplateLaunch(string name, WorkflowJobTemplateLaunchArgs args, CustomResourceOptions? opts = null)
    public WorkflowJobTemplateLaunch(String name, WorkflowJobTemplateLaunchArgs args)
    public WorkflowJobTemplateLaunch(String name, WorkflowJobTemplateLaunchArgs args, CustomResourceOptions options)
    
    type: awx:WorkflowJobTemplateLaunch
    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 WorkflowJobTemplateLaunchArgs
    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 WorkflowJobTemplateLaunchArgs
    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 WorkflowJobTemplateLaunchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowJobTemplateLaunchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowJobTemplateLaunchArgs
    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 workflowJobTemplateLaunchResource = new Awx.WorkflowJobTemplateLaunch("workflowJobTemplateLaunchResource", new()
    {
        WorkflowJobTemplateId = 0,
        ExtraVars = "string",
        Timeouts = new Awx.Inputs.WorkflowJobTemplateLaunchTimeoutsArgs
        {
            Create = "string",
        },
        WaitForCompletion = false,
        WorkflowJobTemplateLaunchId = "string",
    });
    
    example, err := awx.NewWorkflowJobTemplateLaunch(ctx, "workflowJobTemplateLaunchResource", &awx.WorkflowJobTemplateLaunchArgs{
    	WorkflowJobTemplateId: pulumi.Float64(0),
    	ExtraVars:             pulumi.String("string"),
    	Timeouts: &awx.WorkflowJobTemplateLaunchTimeoutsArgs{
    		Create: pulumi.String("string"),
    	},
    	WaitForCompletion:           pulumi.Bool(false),
    	WorkflowJobTemplateLaunchId: pulumi.String("string"),
    })
    
    var workflowJobTemplateLaunchResource = new WorkflowJobTemplateLaunch("workflowJobTemplateLaunchResource", WorkflowJobTemplateLaunchArgs.builder()
        .workflowJobTemplateId(0)
        .extraVars("string")
        .timeouts(WorkflowJobTemplateLaunchTimeoutsArgs.builder()
            .create("string")
            .build())
        .waitForCompletion(false)
        .workflowJobTemplateLaunchId("string")
        .build());
    
    workflow_job_template_launch_resource = awx.WorkflowJobTemplateLaunch("workflowJobTemplateLaunchResource",
        workflow_job_template_id=0,
        extra_vars="string",
        timeouts={
            "create": "string",
        },
        wait_for_completion=False,
        workflow_job_template_launch_id="string")
    
    const workflowJobTemplateLaunchResource = new awx.WorkflowJobTemplateLaunch("workflowJobTemplateLaunchResource", {
        workflowJobTemplateId: 0,
        extraVars: "string",
        timeouts: {
            create: "string",
        },
        waitForCompletion: false,
        workflowJobTemplateLaunchId: "string",
    });
    
    type: awx:WorkflowJobTemplateLaunch
    properties:
        extraVars: string
        timeouts:
            create: string
        waitForCompletion: false
        workflowJobTemplateId: 0
        workflowJobTemplateLaunchId: string
    

    WorkflowJobTemplateLaunch 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 WorkflowJobTemplateLaunch resource accepts the following input properties:

    WorkflowJobTemplateId double
    Workflow job template ID
    ExtraVars string
    Override workflow job template variables. YAML or JSON values are supported.
    Timeouts WorkflowJobTemplateLaunchTimeouts
    WaitForCompletion bool
    Resource creation will wait for workflow job completion.
    WorkflowJobTemplateLaunchId string
    WorkflowJobTemplateId float64
    Workflow job template ID
    ExtraVars string
    Override workflow job template variables. YAML or JSON values are supported.
    Timeouts WorkflowJobTemplateLaunchTimeoutsArgs
    WaitForCompletion bool
    Resource creation will wait for workflow job completion.
    WorkflowJobTemplateLaunchId string
    workflowJobTemplateId Double
    Workflow job template ID
    extraVars String
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts WorkflowJobTemplateLaunchTimeouts
    waitForCompletion Boolean
    Resource creation will wait for workflow job completion.
    workflowJobTemplateLaunchId String
    workflowJobTemplateId number
    Workflow job template ID
    extraVars string
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts WorkflowJobTemplateLaunchTimeouts
    waitForCompletion boolean
    Resource creation will wait for workflow job completion.
    workflowJobTemplateLaunchId string
    workflow_job_template_id float
    Workflow job template ID
    extra_vars str
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts WorkflowJobTemplateLaunchTimeoutsArgs
    wait_for_completion bool
    Resource creation will wait for workflow job completion.
    workflow_job_template_launch_id str
    workflowJobTemplateId Number
    Workflow job template ID
    extraVars String
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts Property Map
    waitForCompletion Boolean
    Resource creation will wait for workflow job completion.
    workflowJobTemplateLaunchId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkflowJobTemplateLaunch 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 WorkflowJobTemplateLaunch Resource

    Get an existing WorkflowJobTemplateLaunch 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?: WorkflowJobTemplateLaunchState, opts?: CustomResourceOptions): WorkflowJobTemplateLaunch
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            extra_vars: Optional[str] = None,
            timeouts: Optional[WorkflowJobTemplateLaunchTimeoutsArgs] = None,
            wait_for_completion: Optional[bool] = None,
            workflow_job_template_id: Optional[float] = None,
            workflow_job_template_launch_id: Optional[str] = None) -> WorkflowJobTemplateLaunch
    func GetWorkflowJobTemplateLaunch(ctx *Context, name string, id IDInput, state *WorkflowJobTemplateLaunchState, opts ...ResourceOption) (*WorkflowJobTemplateLaunch, error)
    public static WorkflowJobTemplateLaunch Get(string name, Input<string> id, WorkflowJobTemplateLaunchState? state, CustomResourceOptions? opts = null)
    public static WorkflowJobTemplateLaunch get(String name, Output<String> id, WorkflowJobTemplateLaunchState state, CustomResourceOptions options)
    resources:  _:    type: awx:WorkflowJobTemplateLaunch    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.
    The following state arguments are supported:
    ExtraVars string
    Override workflow job template variables. YAML or JSON values are supported.
    Timeouts WorkflowJobTemplateLaunchTimeouts
    WaitForCompletion bool
    Resource creation will wait for workflow job completion.
    WorkflowJobTemplateId double
    Workflow job template ID
    WorkflowJobTemplateLaunchId string
    ExtraVars string
    Override workflow job template variables. YAML or JSON values are supported.
    Timeouts WorkflowJobTemplateLaunchTimeoutsArgs
    WaitForCompletion bool
    Resource creation will wait for workflow job completion.
    WorkflowJobTemplateId float64
    Workflow job template ID
    WorkflowJobTemplateLaunchId string
    extraVars String
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts WorkflowJobTemplateLaunchTimeouts
    waitForCompletion Boolean
    Resource creation will wait for workflow job completion.
    workflowJobTemplateId Double
    Workflow job template ID
    workflowJobTemplateLaunchId String
    extraVars string
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts WorkflowJobTemplateLaunchTimeouts
    waitForCompletion boolean
    Resource creation will wait for workflow job completion.
    workflowJobTemplateId number
    Workflow job template ID
    workflowJobTemplateLaunchId string
    extra_vars str
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts WorkflowJobTemplateLaunchTimeoutsArgs
    wait_for_completion bool
    Resource creation will wait for workflow job completion.
    workflow_job_template_id float
    Workflow job template ID
    workflow_job_template_launch_id str
    extraVars String
    Override workflow job template variables. YAML or JSON values are supported.
    timeouts Property Map
    waitForCompletion Boolean
    Resource creation will wait for workflow job completion.
    workflowJobTemplateId Number
    Workflow job template ID
    workflowJobTemplateLaunchId String

    Supporting Types

    WorkflowJobTemplateLaunchTimeouts, WorkflowJobTemplateLaunchTimeoutsArgs

    Create string
    Create string
    create String
    create string
    create str
    create String

    Package Details

    Repository
    awx denouche/terraform-provider-awx
    License
    Notes
    This Pulumi package is based on the awx Terraform Provider.
    awx logo
    awx 0.29.1 published on Monday, Apr 14, 2025 by denouche