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
The WorkflowAccessKey resource accepts the following input properties:
- Resource
Group stringName - The resource group name.
- Workflow
Name string - The workflow name.
- Access
Key stringName - The workflow access key name.
- Id string
- Gets or sets the resource id.
- Not
After string - Gets or sets the not-after time.
- Not
Before string - Gets or sets the not-before time.
- Resource
Group stringName - The resource group name.
- Workflow
Name string - The workflow name.
- Access
Key stringName - The workflow access key name.
- Id string
- Gets or sets the resource id.
- Not
After string - Gets or sets the not-after time.
- Not
Before string - Gets or sets the not-before time.
- resource
Group StringName - The resource group name.
- workflow
Name String - The workflow name.
- access
Key StringName - The workflow access key name.
- id String
- Gets or sets the resource id.
- not
After String - Gets or sets the not-after time.
- not
Before String - Gets or sets the not-before time.
- resource
Group stringName - The resource group name.
- workflow
Name string - The workflow name.
- access
Key stringName - The workflow access key name.
- id string
- Gets or sets the resource id.
- not
After string - Gets or sets the not-after time.
- not
Before 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.
- resource
Group StringName - The resource group name.
- workflow
Name String - The workflow name.
- access
Key StringName - The workflow access key name.
- id String
- Gets or sets the resource id.
- not
After String - Gets or sets the not-after time.
- not
Before 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