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.64 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List sensitive environment variables of the Job. * * Uses Azure REST API version 2024-05-01-preview. */ export declare function listJobEnvSecrets(args: ListJobEnvSecretsArgs, opts?: pulumi.InvokeOptions): Promise<ListJobEnvSecretsResult>; export interface ListJobEnvSecretsArgs { /** * 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 ListJobEnvSecretsResult { /** * Collection of resources. */ readonly value: outputs.appplatform.SecretResponse[]; } /** * List sensitive environment variables of the Job. * * Uses Azure REST API version 2024-05-01-preview. */ export declare function listJobEnvSecretsOutput(args: ListJobEnvSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListJobEnvSecretsResult>; export interface ListJobEnvSecretsOutputArgs { /** * 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>; }