@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.64 kB
TypeScript
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>;
}