UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

52 lines (51 loc) 1.45 kB
import * as pulumi from "@pulumi/pulumi"; /** * Lists secret keys. * * Uses Azure REST API version 2015-02-01-preview. */ export declare function listWorkflowAccessKeySecretKeys(args: ListWorkflowAccessKeySecretKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListWorkflowAccessKeySecretKeysResult>; export interface ListWorkflowAccessKeySecretKeysArgs { /** * The workflow access key name. */ accessKeyName: string; /** * The resource group name. */ resourceGroupName: string; /** * The workflow name. */ workflowName: string; } export interface ListWorkflowAccessKeySecretKeysResult { /** * Gets the primary secret key. */ readonly primarySecretKey: string; /** * Gets the secondary secret key. */ readonly secondarySecretKey: string; } /** * Lists secret keys. * * Uses Azure REST API version 2015-02-01-preview. */ export declare function listWorkflowAccessKeySecretKeysOutput(args: ListWorkflowAccessKeySecretKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWorkflowAccessKeySecretKeysResult>; export interface ListWorkflowAccessKeySecretKeysOutputArgs { /** * The workflow access key name. */ accessKeyName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; /** * The workflow name. */ workflowName: pulumi.Input<string>; }