azure-native.logic.WorkflowAccessKey
Explore with Pulumi AI
Azure REST API version: 2015-02-01-preview. Prior API version in Azure Native 1.x: 2015-02-01-preview.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:logic:WorkflowAccessKey myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys/{accessKeyName} 
Create WorkflowAccessKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowAccessKey(name: string, args: WorkflowAccessKeyArgs, opts?: CustomResourceOptions);@overload
def WorkflowAccessKey(resource_name: str,
                      args: WorkflowAccessKeyArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def WorkflowAccessKey(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      workflow_name: Optional[str] = None,
                      access_key_name: Optional[str] = None,
                      id: Optional[str] = None,
                      not_after: Optional[str] = None,
                      not_before: Optional[str] = None)func NewWorkflowAccessKey(ctx *Context, name string, args WorkflowAccessKeyArgs, opts ...ResourceOption) (*WorkflowAccessKey, error)public WorkflowAccessKey(string name, WorkflowAccessKeyArgs args, CustomResourceOptions? opts = null)
public WorkflowAccessKey(String name, WorkflowAccessKeyArgs args)
public WorkflowAccessKey(String name, WorkflowAccessKeyArgs args, CustomResourceOptions options)
type: azure-native:logic:WorkflowAccessKey
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 WorkflowAccessKeyArgs
- 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 WorkflowAccessKeyArgs
- 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 WorkflowAccessKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkflowAccessKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkflowAccessKeyArgs
- 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 workflowAccessKeyResource = new AzureNative.Logic.WorkflowAccessKey("workflowAccessKeyResource", new()
{
    ResourceGroupName = "string",
    WorkflowName = "string",
    AccessKeyName = "string",
    Id = "string",
    NotAfter = "string",
    NotBefore = "string",
});
example, err := logic.NewWorkflowAccessKey(ctx, "workflowAccessKeyResource", &logic.WorkflowAccessKeyArgs{
	ResourceGroupName: pulumi.String("string"),
	WorkflowName:      pulumi.String("string"),
	AccessKeyName:     pulumi.String("string"),
	Id:                pulumi.String("string"),
	NotAfter:          pulumi.String("string"),
	NotBefore:         pulumi.String("string"),
})
var workflowAccessKeyResource = new WorkflowAccessKey("workflowAccessKeyResource", WorkflowAccessKeyArgs.builder()
    .resourceGroupName("string")
    .workflowName("string")
    .accessKeyName("string")
    .id("string")
    .notAfter("string")
    .notBefore("string")
    .build());
workflow_access_key_resource = azure_native.logic.WorkflowAccessKey("workflowAccessKeyResource",
    resource_group_name="string",
    workflow_name="string",
    access_key_name="string",
    id="string",
    not_after="string",
    not_before="string")
const workflowAccessKeyResource = new azure_native.logic.WorkflowAccessKey("workflowAccessKeyResource", {
    resourceGroupName: "string",
    workflowName: "string",
    accessKeyName: "string",
    id: "string",
    notAfter: "string",
    notBefore: "string",
});
type: azure-native:logic:WorkflowAccessKey
properties:
    accessKeyName: string
    id: string
    notAfter: string
    notBefore: string
    resourceGroupName: string
    workflowName: string
WorkflowAccessKey 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 WorkflowAccessKey resource accepts the following input properties:
- ResourceGroup stringName 
- The resource group name.
- WorkflowName string
- The workflow name.
- AccessKey stringName 
- The workflow access key name.
- Id string
- Gets or sets the resource id.
- NotAfter string
- Gets or sets the not-after time.
- NotBefore string
- Gets or sets the not-before time.
- ResourceGroup stringName 
- The resource group name.
- WorkflowName string
- The workflow name.
- AccessKey stringName 
- The workflow access key name.
- Id string
- Gets or sets the resource id.
- NotAfter string
- Gets or sets the not-after time.
- NotBefore string
- Gets or sets the not-before time.
- resourceGroup StringName 
- The resource group name.
- workflowName String
- The workflow name.
- accessKey StringName 
- The workflow access key name.
- id String
- Gets or sets the resource id.
- notAfter String
- Gets or sets the not-after time.
- notBefore String
- Gets or sets the not-before time.
- resourceGroup stringName 
- The resource group name.
- workflowName string
- The workflow name.
- accessKey stringName 
- The workflow access key name.
- id string
- Gets or sets the resource id.
- notAfter string
- Gets or sets the not-after time.
- notBefore string
- Gets or sets the not-before time.
- resource_group_ strname 
- The resource group name.
- workflow_name str
- The workflow name.
- access_key_ strname 
- The workflow access key name.
- id str
- Gets or sets the resource id.
- not_after str
- Gets or sets the not-after time.
- not_before str
- Gets or sets the not-before time.
- resourceGroup StringName 
- The resource group name.
- workflowName String
- The workflow name.
- accessKey StringName 
- The workflow access key name.
- id String
- Gets or sets the resource id.
- notAfter String
- Gets or sets the not-after time.
- notBefore String
- Gets or sets the not-before time.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowAccessKey resource produces the following output properties:
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0