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

60 lines (59 loc) 1.91 kB
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>; }