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

67 lines (66 loc) 1.74 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a job collection. * * Uses Azure REST API version 2016-03-01. */ export declare function getJobCollection(args: GetJobCollectionArgs, opts?: pulumi.InvokeOptions): Promise<GetJobCollectionResult>; export interface GetJobCollectionArgs { /** * The job collection name. */ jobCollectionName: string; /** * The resource group name. */ resourceGroupName: string; } export interface GetJobCollectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Gets the job collection resource identifier. */ readonly id: string; /** * Gets or sets the storage account location. */ readonly location?: string; /** * Gets or sets the job collection resource name. */ readonly name?: string; /** * Gets or sets the job collection properties. */ readonly properties: outputs.scheduler.JobCollectionPropertiesResponse; /** * Gets or sets the tags. */ readonly tags?: { [key: string]: string; }; /** * Gets the job collection resource type. */ readonly type: string; } /** * Gets a job collection. * * Uses Azure REST API version 2016-03-01. */ export declare function getJobCollectionOutput(args: GetJobCollectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetJobCollectionResult>; export interface GetJobCollectionOutputArgs { /** * The job collection name. */ jobCollectionName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }