@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.91 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List sensitive environment variables of Job execution.
*
* Uses Azure REST API version 2024-05-01-preview.
*/
export declare function listJobExecutionEnvSecrets(args: ListJobExecutionEnvSecretsArgs, opts?: pulumi.InvokeOptions): Promise<ListJobExecutionEnvSecretsResult>;
export interface ListJobExecutionEnvSecretsArgs {
/**
* The name of the Job execution.
*/
jobExecutionName: string;
/**
* The name of the Job resource.
*/
jobName: string;
/**
* The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
resourceGroupName: string;
/**
* The name of the Service resource.
*/
serviceName: string;
}
/**
* Secret environment variable collection.
*/
export interface ListJobExecutionEnvSecretsResult {
/**
* Collection of resources.
*/
readonly value: outputs.appplatform.SecretResponse[];
}
/**
* List sensitive environment variables of Job execution.
*
* Uses Azure REST API version 2024-05-01-preview.
*/
export declare function listJobExecutionEnvSecretsOutput(args: ListJobExecutionEnvSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListJobExecutionEnvSecretsResult>;
export interface ListJobExecutionEnvSecretsOutputArgs {
/**
* The name of the Job execution.
*/
jobExecutionName: pulumi.Input<string>;
/**
* The name of the Job resource.
*/
jobName: pulumi.Input<string>;
/**
* The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the Service resource.
*/
serviceName: pulumi.Input<string>;
}