@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
52 lines • 2.07 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getInstanceParameterLogsOutput = exports.getInstanceParameterLogs = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of rds postgresql instance parameter logs
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const example = volcengine.rds_postgresql.getInstanceParameterLogs({
* endTime: "2025-12-15T23:59:59.999Z",
* instanceId: "postgres-72715e0d9f58",
* startTime: "2025-12-01T00:00:00.000Z",
* });
* ```
*/
function getInstanceParameterLogs(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:rds_postgresql/getInstanceParameterLogs:getInstanceParameterLogs", {
"endTime": args.endTime,
"instanceId": args.instanceId,
"outputFile": args.outputFile,
"startTime": args.startTime,
}, opts);
}
exports.getInstanceParameterLogs = getInstanceParameterLogs;
/**
* Use this data source to query detailed information of rds postgresql instance parameter logs
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const example = volcengine.rds_postgresql.getInstanceParameterLogs({
* endTime: "2025-12-15T23:59:59.999Z",
* instanceId: "postgres-72715e0d9f58",
* startTime: "2025-12-01T00:00:00.000Z",
* });
* ```
*/
function getInstanceParameterLogsOutput(args, opts) {
return pulumi.output(args).apply((a) => getInstanceParameterLogs(a, opts));
}
exports.getInstanceParameterLogsOutput = getInstanceParameterLogsOutput;
//# sourceMappingURL=getInstanceParameterLogs.js.map