@pulumi/azuredevops
Version:
A Pulumi package for creating and managing Azure DevOps.
32 lines • 1.55 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getServiceendpointGenericV2Output = exports.getServiceendpointGenericV2 = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Use this data source to access information about an existing Generic Service Endpoint (v2) within Azure DevOps.
*/
function getServiceendpointGenericV2(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("azuredevops:index/getServiceendpointGenericV2:getServiceendpointGenericV2", {
"id": args.id,
"name": args.name,
"projectId": args.projectId,
}, opts);
}
exports.getServiceendpointGenericV2 = getServiceendpointGenericV2;
/**
* Use this data source to access information about an existing Generic Service Endpoint (v2) within Azure DevOps.
*/
function getServiceendpointGenericV2Output(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("azuredevops:index/getServiceendpointGenericV2:getServiceendpointGenericV2", {
"id": args.id,
"name": args.name,
"projectId": args.projectId,
}, opts);
}
exports.getServiceendpointGenericV2Output = getServiceendpointGenericV2Output;
//# sourceMappingURL=getServiceendpointGenericV2.js.map