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