@pulumi/azure-native 2.11.0 → 2.11.1-alpha.1697052021
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dbformysql/v20171201/configuration.d.ts +85 -0
- package/dbformysql/v20171201/configuration.js +81 -0
- package/dbformysql/v20171201/database.d.ts +69 -0
- package/dbformysql/v20171201/database.js +73 -0
- package/dbformysql/v20171201/firewallRule.d.ts +69 -0
- package/dbformysql/v20171201/firewallRule.js +79 -0
- package/dbformysql/v20171201/getConfiguration.d.ts +78 -0
- package/dbformysql/v20171201/getConfiguration.js +27 -0
- package/dbformysql/v20171201/getDatabase.d.ts +62 -0
- package/dbformysql/v20171201/getDatabase.js +27 -0
- package/dbformysql/v20171201/getFirewallRule.d.ts +62 -0
- package/dbformysql/v20171201/getFirewallRule.js +27 -0
- package/dbformysql/v20171201/getServerAdministrator.d.ts +62 -0
- package/dbformysql/v20171201/getServerAdministrator.js +26 -0
- package/dbformysql/v20171201/getVirtualNetworkRule.d.ts +66 -0
- package/dbformysql/v20171201/getVirtualNetworkRule.js +27 -0
- package/dbformysql/v20171201/index.d.ts +30 -0
- package/dbformysql/v20171201/index.js +37 -2
- package/dbformysql/v20171201/serverAdministrator.d.ts +82 -0
- package/dbformysql/v20171201/serverAdministrator.js +88 -0
- package/dbformysql/v20171201/virtualNetworkRule.d.ts +73 -0
- package/dbformysql/v20171201/virtualNetworkRule.js +78 -0
- package/dbforpostgresql/v20171201/configuration.d.ts +85 -0
- package/dbforpostgresql/v20171201/configuration.js +81 -0
- package/dbforpostgresql/v20171201/database.d.ts +69 -0
- package/dbforpostgresql/v20171201/database.js +73 -0
- package/dbforpostgresql/v20171201/firewallRule.d.ts +69 -0
- package/dbforpostgresql/v20171201/firewallRule.js +79 -0
- package/dbforpostgresql/v20171201/getConfiguration.d.ts +78 -0
- package/dbforpostgresql/v20171201/getConfiguration.js +27 -0
- package/dbforpostgresql/v20171201/getDatabase.d.ts +62 -0
- package/dbforpostgresql/v20171201/getDatabase.js +27 -0
- package/dbforpostgresql/v20171201/getFirewallRule.d.ts +62 -0
- package/dbforpostgresql/v20171201/getFirewallRule.js +27 -0
- package/dbforpostgresql/v20171201/getServerAdministrator.d.ts +62 -0
- package/dbforpostgresql/v20171201/getServerAdministrator.js +26 -0
- package/dbforpostgresql/v20171201/getServerSecurityAlertPolicy.d.ts +82 -0
- package/dbforpostgresql/v20171201/getServerSecurityAlertPolicy.js +27 -0
- package/dbforpostgresql/v20171201/getVirtualNetworkRule.d.ts +66 -0
- package/dbforpostgresql/v20171201/getVirtualNetworkRule.js +27 -0
- package/dbforpostgresql/v20171201/index.d.ts +36 -0
- package/dbforpostgresql/v20171201/index.js +44 -2
- package/dbforpostgresql/v20171201/serverAdministrator.d.ts +82 -0
- package/dbforpostgresql/v20171201/serverAdministrator.js +88 -0
- package/dbforpostgresql/v20171201/serverSecurityAlertPolicy.d.ts +110 -0
- package/dbforpostgresql/v20171201/serverSecurityAlertPolicy.js +86 -0
- package/dbforpostgresql/v20171201/virtualNetworkRule.d.ts +73 -0
- package/dbforpostgresql/v20171201/virtualNetworkRule.js +78 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/types/enums/dbformysql/v20171201/index.d.ts +7 -0
- package/types/enums/dbformysql/v20171201/index.js +5 -2
- package/types/enums/dbforpostgresql/v20171201/index.d.ts +15 -0
- package/types/enums/dbforpostgresql/v20171201/index.js +9 -2
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Gets information about a configuration of server.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationResult>;
|
|
6
|
+
export interface GetConfigurationArgs {
|
|
7
|
+
/**
|
|
8
|
+
* The name of the server configuration.
|
|
9
|
+
*/
|
|
10
|
+
configurationName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the resource group. The name is case insensitive.
|
|
13
|
+
*/
|
|
14
|
+
resourceGroupName: string;
|
|
15
|
+
/**
|
|
16
|
+
* The name of the server.
|
|
17
|
+
*/
|
|
18
|
+
serverName: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Represents a Configuration.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetConfigurationResult {
|
|
24
|
+
/**
|
|
25
|
+
* Allowed values of the configuration.
|
|
26
|
+
*/
|
|
27
|
+
readonly allowedValues: string;
|
|
28
|
+
/**
|
|
29
|
+
* Data type of the configuration.
|
|
30
|
+
*/
|
|
31
|
+
readonly dataType: string;
|
|
32
|
+
/**
|
|
33
|
+
* Default value of the configuration.
|
|
34
|
+
*/
|
|
35
|
+
readonly defaultValue: string;
|
|
36
|
+
/**
|
|
37
|
+
* Description of the configuration.
|
|
38
|
+
*/
|
|
39
|
+
readonly description: string;
|
|
40
|
+
/**
|
|
41
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
42
|
+
*/
|
|
43
|
+
readonly id: string;
|
|
44
|
+
/**
|
|
45
|
+
* The name of the resource
|
|
46
|
+
*/
|
|
47
|
+
readonly name: string;
|
|
48
|
+
/**
|
|
49
|
+
* Source of the configuration.
|
|
50
|
+
*/
|
|
51
|
+
readonly source?: string;
|
|
52
|
+
/**
|
|
53
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
54
|
+
*/
|
|
55
|
+
readonly type: string;
|
|
56
|
+
/**
|
|
57
|
+
* Value of the configuration.
|
|
58
|
+
*/
|
|
59
|
+
readonly value?: string;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Gets information about a configuration of server.
|
|
63
|
+
*/
|
|
64
|
+
export declare function getConfigurationOutput(args: GetConfigurationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetConfigurationResult>;
|
|
65
|
+
export interface GetConfigurationOutputArgs {
|
|
66
|
+
/**
|
|
67
|
+
* The name of the server configuration.
|
|
68
|
+
*/
|
|
69
|
+
configurationName: pulumi.Input<string>;
|
|
70
|
+
/**
|
|
71
|
+
* The name of the resource group. The name is case insensitive.
|
|
72
|
+
*/
|
|
73
|
+
resourceGroupName: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The name of the server.
|
|
76
|
+
*/
|
|
77
|
+
serverName: pulumi.Input<string>;
|
|
78
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getConfigurationOutput = exports.getConfiguration = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets information about a configuration of server.
|
|
10
|
+
*/
|
|
11
|
+
function getConfiguration(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:dbforpostgresql/v20171201:getConfiguration", {
|
|
14
|
+
"configurationName": args.configurationName,
|
|
15
|
+
"resourceGroupName": args.resourceGroupName,
|
|
16
|
+
"serverName": args.serverName,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getConfiguration = getConfiguration;
|
|
20
|
+
/**
|
|
21
|
+
* Gets information about a configuration of server.
|
|
22
|
+
*/
|
|
23
|
+
function getConfigurationOutput(args, opts) {
|
|
24
|
+
return pulumi.output(args).apply((a) => getConfiguration(a, opts));
|
|
25
|
+
}
|
|
26
|
+
exports.getConfigurationOutput = getConfigurationOutput;
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Q29uZmlndXJhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2RiZm9ycG9zdGdyZXNxbC92MjAxNzEyMDEvZ2V0Q29uZmlndXJhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsc0VBQXNFO0FBQ3RFLGlGQUFpRjs7O0FBRWpGLHlDQUF5QztBQUN6Qyw2Q0FBNkM7QUFFN0M7O0dBRUc7QUFDSCxTQUFnQixnQkFBZ0IsQ0FBQyxJQUEwQixFQUFFLElBQTJCO0lBRXBGLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLHlEQUF5RCxFQUFFO1FBQ3BGLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxZQUFZLEVBQUUsSUFBSSxDQUFDLFVBQVU7S0FDaEMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFSRCw0Q0FRQztBQTBERDs7R0FFRztBQUNILFNBQWdCLHNCQUFzQixDQUFDLElBQWdDLEVBQUUsSUFBMkI7SUFDaEcsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQU0sRUFBRSxFQUFFLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUE7QUFDM0UsQ0FBQztBQUZELHdEQUVDIn0=
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Gets information about a database.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getDatabase(args: GetDatabaseArgs, opts?: pulumi.InvokeOptions): Promise<GetDatabaseResult>;
|
|
6
|
+
export interface GetDatabaseArgs {
|
|
7
|
+
/**
|
|
8
|
+
* The name of the database.
|
|
9
|
+
*/
|
|
10
|
+
databaseName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the resource group. The name is case insensitive.
|
|
13
|
+
*/
|
|
14
|
+
resourceGroupName: string;
|
|
15
|
+
/**
|
|
16
|
+
* The name of the server.
|
|
17
|
+
*/
|
|
18
|
+
serverName: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Represents a Database.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetDatabaseResult {
|
|
24
|
+
/**
|
|
25
|
+
* The charset of the database.
|
|
26
|
+
*/
|
|
27
|
+
readonly charset?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The collation of the database.
|
|
30
|
+
*/
|
|
31
|
+
readonly collation?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
34
|
+
*/
|
|
35
|
+
readonly id: string;
|
|
36
|
+
/**
|
|
37
|
+
* The name of the resource
|
|
38
|
+
*/
|
|
39
|
+
readonly name: string;
|
|
40
|
+
/**
|
|
41
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
42
|
+
*/
|
|
43
|
+
readonly type: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Gets information about a database.
|
|
47
|
+
*/
|
|
48
|
+
export declare function getDatabaseOutput(args: GetDatabaseOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDatabaseResult>;
|
|
49
|
+
export interface GetDatabaseOutputArgs {
|
|
50
|
+
/**
|
|
51
|
+
* The name of the database.
|
|
52
|
+
*/
|
|
53
|
+
databaseName: pulumi.Input<string>;
|
|
54
|
+
/**
|
|
55
|
+
* The name of the resource group. The name is case insensitive.
|
|
56
|
+
*/
|
|
57
|
+
resourceGroupName: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The name of the server.
|
|
60
|
+
*/
|
|
61
|
+
serverName: pulumi.Input<string>;
|
|
62
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getDatabaseOutput = exports.getDatabase = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets information about a database.
|
|
10
|
+
*/
|
|
11
|
+
function getDatabase(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:dbforpostgresql/v20171201:getDatabase", {
|
|
14
|
+
"databaseName": args.databaseName,
|
|
15
|
+
"resourceGroupName": args.resourceGroupName,
|
|
16
|
+
"serverName": args.serverName,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getDatabase = getDatabase;
|
|
20
|
+
/**
|
|
21
|
+
* Gets information about a database.
|
|
22
|
+
*/
|
|
23
|
+
function getDatabaseOutput(args, opts) {
|
|
24
|
+
return pulumi.output(args).apply((a) => getDatabase(a, opts));
|
|
25
|
+
}
|
|
26
|
+
exports.getDatabaseOutput = getDatabaseOutput;
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0RGF0YWJhc2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9kYmZvcnBvc3RncmVzcWwvdjIwMTcxMjAxL2dldERhdGFiYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7QUFFakYseUNBQXlDO0FBQ3pDLDZDQUE2QztBQUU3Qzs7R0FFRztBQUNILFNBQWdCLFdBQVcsQ0FBQyxJQUFxQixFQUFFLElBQTJCO0lBRTFFLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLG9EQUFvRCxFQUFFO1FBQy9FLGNBQWMsRUFBRSxJQUFJLENBQUMsWUFBWTtRQUNqQyxtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLFlBQVksRUFBRSxJQUFJLENBQUMsVUFBVTtLQUNoQyxFQUFFLElBQUksQ0FBQyxDQUFDO0FBQ2IsQ0FBQztBQVJELGtDQVFDO0FBMENEOztHQUVHO0FBQ0gsU0FBZ0IsaUJBQWlCLENBQUMsSUFBMkIsRUFBRSxJQUEyQjtJQUN0RixPQUFPLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBTSxFQUFFLEVBQUUsQ0FBQyxXQUFXLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUE7QUFDdEUsQ0FBQztBQUZELDhDQUVDIn0=
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Gets information about a server firewall rule.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getFirewallRule(args: GetFirewallRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetFirewallRuleResult>;
|
|
6
|
+
export interface GetFirewallRuleArgs {
|
|
7
|
+
/**
|
|
8
|
+
* The name of the server firewall rule.
|
|
9
|
+
*/
|
|
10
|
+
firewallRuleName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the resource group. The name is case insensitive.
|
|
13
|
+
*/
|
|
14
|
+
resourceGroupName: string;
|
|
15
|
+
/**
|
|
16
|
+
* The name of the server.
|
|
17
|
+
*/
|
|
18
|
+
serverName: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Represents a server firewall rule.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetFirewallRuleResult {
|
|
24
|
+
/**
|
|
25
|
+
* The end IP address of the server firewall rule. Must be IPv4 format.
|
|
26
|
+
*/
|
|
27
|
+
readonly endIpAddress: string;
|
|
28
|
+
/**
|
|
29
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
30
|
+
*/
|
|
31
|
+
readonly id: string;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the resource
|
|
34
|
+
*/
|
|
35
|
+
readonly name: string;
|
|
36
|
+
/**
|
|
37
|
+
* The start IP address of the server firewall rule. Must be IPv4 format.
|
|
38
|
+
*/
|
|
39
|
+
readonly startIpAddress: string;
|
|
40
|
+
/**
|
|
41
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
42
|
+
*/
|
|
43
|
+
readonly type: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Gets information about a server firewall rule.
|
|
47
|
+
*/
|
|
48
|
+
export declare function getFirewallRuleOutput(args: GetFirewallRuleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFirewallRuleResult>;
|
|
49
|
+
export interface GetFirewallRuleOutputArgs {
|
|
50
|
+
/**
|
|
51
|
+
* The name of the server firewall rule.
|
|
52
|
+
*/
|
|
53
|
+
firewallRuleName: pulumi.Input<string>;
|
|
54
|
+
/**
|
|
55
|
+
* The name of the resource group. The name is case insensitive.
|
|
56
|
+
*/
|
|
57
|
+
resourceGroupName: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The name of the server.
|
|
60
|
+
*/
|
|
61
|
+
serverName: pulumi.Input<string>;
|
|
62
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getFirewallRuleOutput = exports.getFirewallRule = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets information about a server firewall rule.
|
|
10
|
+
*/
|
|
11
|
+
function getFirewallRule(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:dbforpostgresql/v20171201:getFirewallRule", {
|
|
14
|
+
"firewallRuleName": args.firewallRuleName,
|
|
15
|
+
"resourceGroupName": args.resourceGroupName,
|
|
16
|
+
"serverName": args.serverName,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getFirewallRule = getFirewallRule;
|
|
20
|
+
/**
|
|
21
|
+
* Gets information about a server firewall rule.
|
|
22
|
+
*/
|
|
23
|
+
function getFirewallRuleOutput(args, opts) {
|
|
24
|
+
return pulumi.output(args).apply((a) => getFirewallRule(a, opts));
|
|
25
|
+
}
|
|
26
|
+
exports.getFirewallRuleOutput = getFirewallRuleOutput;
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0RmlyZXdhbGxSdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vZGJmb3Jwb3N0Z3Jlc3FsL3YyMDE3MTIwMS9nZXRGaXJld2FsbFJ1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHNFQUFzRTtBQUN0RSxpRkFBaUY7OztBQUVqRix5Q0FBeUM7QUFDekMsNkNBQTZDO0FBRTdDOztHQUVHO0FBQ0gsU0FBZ0IsZUFBZSxDQUFDLElBQXlCLEVBQUUsSUFBMkI7SUFFbEYsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3pFLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsd0RBQXdELEVBQUU7UUFDbkYsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGdCQUFnQjtRQUN6QyxtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLFlBQVksRUFBRSxJQUFJLENBQUMsVUFBVTtLQUNoQyxFQUFFLElBQUksQ0FBQyxDQUFDO0FBQ2IsQ0FBQztBQVJELDBDQVFDO0FBMENEOztHQUVHO0FBQ0gsU0FBZ0IscUJBQXFCLENBQUMsSUFBK0IsRUFBRSxJQUEyQjtJQUM5RixPQUFPLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBTSxFQUFFLEVBQUUsQ0FBQyxlQUFlLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUE7QUFDMUUsQ0FBQztBQUZELHNEQUVDIn0=
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Gets information about a AAD server administrator.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getServerAdministrator(args: GetServerAdministratorArgs, opts?: pulumi.InvokeOptions): Promise<GetServerAdministratorResult>;
|
|
6
|
+
export interface GetServerAdministratorArgs {
|
|
7
|
+
/**
|
|
8
|
+
* The name of the resource group. The name is case insensitive.
|
|
9
|
+
*/
|
|
10
|
+
resourceGroupName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the server.
|
|
13
|
+
*/
|
|
14
|
+
serverName: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Represents a and external administrator to be created.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetServerAdministratorResult {
|
|
20
|
+
/**
|
|
21
|
+
* The type of administrator.
|
|
22
|
+
*/
|
|
23
|
+
readonly administratorType: string;
|
|
24
|
+
/**
|
|
25
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
26
|
+
*/
|
|
27
|
+
readonly id: string;
|
|
28
|
+
/**
|
|
29
|
+
* The server administrator login account name.
|
|
30
|
+
*/
|
|
31
|
+
readonly login: string;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the resource
|
|
34
|
+
*/
|
|
35
|
+
readonly name: string;
|
|
36
|
+
/**
|
|
37
|
+
* The server administrator Sid (Secure ID).
|
|
38
|
+
*/
|
|
39
|
+
readonly sid: string;
|
|
40
|
+
/**
|
|
41
|
+
* The server Active Directory Administrator tenant id.
|
|
42
|
+
*/
|
|
43
|
+
readonly tenantId: string;
|
|
44
|
+
/**
|
|
45
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
46
|
+
*/
|
|
47
|
+
readonly type: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Gets information about a AAD server administrator.
|
|
51
|
+
*/
|
|
52
|
+
export declare function getServerAdministratorOutput(args: GetServerAdministratorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetServerAdministratorResult>;
|
|
53
|
+
export interface GetServerAdministratorOutputArgs {
|
|
54
|
+
/**
|
|
55
|
+
* The name of the resource group. The name is case insensitive.
|
|
56
|
+
*/
|
|
57
|
+
resourceGroupName: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The name of the server.
|
|
60
|
+
*/
|
|
61
|
+
serverName: pulumi.Input<string>;
|
|
62
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getServerAdministratorOutput = exports.getServerAdministrator = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets information about a AAD server administrator.
|
|
10
|
+
*/
|
|
11
|
+
function getServerAdministrator(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:dbforpostgresql/v20171201:getServerAdministrator", {
|
|
14
|
+
"resourceGroupName": args.resourceGroupName,
|
|
15
|
+
"serverName": args.serverName,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getServerAdministrator = getServerAdministrator;
|
|
19
|
+
/**
|
|
20
|
+
* Gets information about a AAD server administrator.
|
|
21
|
+
*/
|
|
22
|
+
function getServerAdministratorOutput(args, opts) {
|
|
23
|
+
return pulumi.output(args).apply((a) => getServerAdministrator(a, opts));
|
|
24
|
+
}
|
|
25
|
+
exports.getServerAdministratorOutput = getServerAdministratorOutput;
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0U2VydmVyQWRtaW5pc3RyYXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2RiZm9ycG9zdGdyZXNxbC92MjAxNzEyMDEvZ2V0U2VydmVyQWRtaW5pc3RyYXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsc0VBQXNFO0FBQ3RFLGlGQUFpRjs7O0FBRWpGLHlDQUF5QztBQUN6Qyw2Q0FBNkM7QUFFN0M7O0dBRUc7QUFDSCxTQUFnQixzQkFBc0IsQ0FBQyxJQUFnQyxFQUFFLElBQTJCO0lBRWhHLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLCtEQUErRCxFQUFFO1FBQzFGLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsWUFBWSxFQUFFLElBQUksQ0FBQyxVQUFVO0tBQ2hDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUEQsd0RBT0M7QUE4Q0Q7O0dBRUc7QUFDSCxTQUFnQiw0QkFBNEIsQ0FBQyxJQUFzQyxFQUFFLElBQTJCO0lBQzVHLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLHNCQUFzQixDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFBO0FBQ2pGLENBQUM7QUFGRCxvRUFFQyJ9
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Get a server's security alert policy.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getServerSecurityAlertPolicy(args: GetServerSecurityAlertPolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetServerSecurityAlertPolicyResult>;
|
|
6
|
+
export interface GetServerSecurityAlertPolicyArgs {
|
|
7
|
+
/**
|
|
8
|
+
* The name of the resource group. The name is case insensitive.
|
|
9
|
+
*/
|
|
10
|
+
resourceGroupName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the security alert policy.
|
|
13
|
+
*/
|
|
14
|
+
securityAlertPolicyName: string;
|
|
15
|
+
/**
|
|
16
|
+
* The name of the server.
|
|
17
|
+
*/
|
|
18
|
+
serverName: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* A server security alert policy.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetServerSecurityAlertPolicyResult {
|
|
24
|
+
/**
|
|
25
|
+
* Specifies an array of alerts that are disabled. Allowed values are: Sql_Injection, Sql_Injection_Vulnerability, Access_Anomaly
|
|
26
|
+
*/
|
|
27
|
+
readonly disabledAlerts?: string[];
|
|
28
|
+
/**
|
|
29
|
+
* Specifies that the alert is sent to the account administrators.
|
|
30
|
+
*/
|
|
31
|
+
readonly emailAccountAdmins?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Specifies an array of e-mail addresses to which the alert is sent.
|
|
34
|
+
*/
|
|
35
|
+
readonly emailAddresses?: string[];
|
|
36
|
+
/**
|
|
37
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
/**
|
|
41
|
+
* The name of the resource
|
|
42
|
+
*/
|
|
43
|
+
readonly name: string;
|
|
44
|
+
/**
|
|
45
|
+
* Specifies the number of days to keep in the Threat Detection audit logs.
|
|
46
|
+
*/
|
|
47
|
+
readonly retentionDays?: number;
|
|
48
|
+
/**
|
|
49
|
+
* Specifies the state of the policy, whether it is enabled or disabled.
|
|
50
|
+
*/
|
|
51
|
+
readonly state: string;
|
|
52
|
+
/**
|
|
53
|
+
* Specifies the identifier key of the Threat Detection audit storage account.
|
|
54
|
+
*/
|
|
55
|
+
readonly storageAccountAccessKey?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.
|
|
58
|
+
*/
|
|
59
|
+
readonly storageEndpoint?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
62
|
+
*/
|
|
63
|
+
readonly type: string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Get a server's security alert policy.
|
|
67
|
+
*/
|
|
68
|
+
export declare function getServerSecurityAlertPolicyOutput(args: GetServerSecurityAlertPolicyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetServerSecurityAlertPolicyResult>;
|
|
69
|
+
export interface GetServerSecurityAlertPolicyOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* The name of the resource group. The name is case insensitive.
|
|
72
|
+
*/
|
|
73
|
+
resourceGroupName: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The name of the security alert policy.
|
|
76
|
+
*/
|
|
77
|
+
securityAlertPolicyName: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* The name of the server.
|
|
80
|
+
*/
|
|
81
|
+
serverName: pulumi.Input<string>;
|
|
82
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getServerSecurityAlertPolicyOutput = exports.getServerSecurityAlertPolicy = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Get a server's security alert policy.
|
|
10
|
+
*/
|
|
11
|
+
function getServerSecurityAlertPolicy(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:dbforpostgresql/v20171201:getServerSecurityAlertPolicy", {
|
|
14
|
+
"resourceGroupName": args.resourceGroupName,
|
|
15
|
+
"securityAlertPolicyName": args.securityAlertPolicyName,
|
|
16
|
+
"serverName": args.serverName,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getServerSecurityAlertPolicy = getServerSecurityAlertPolicy;
|
|
20
|
+
/**
|
|
21
|
+
* Get a server's security alert policy.
|
|
22
|
+
*/
|
|
23
|
+
function getServerSecurityAlertPolicyOutput(args, opts) {
|
|
24
|
+
return pulumi.output(args).apply((a) => getServerSecurityAlertPolicy(a, opts));
|
|
25
|
+
}
|
|
26
|
+
exports.getServerSecurityAlertPolicyOutput = getServerSecurityAlertPolicyOutput;
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0U2VydmVyU2VjdXJpdHlBbGVydFBvbGljeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2RiZm9ycG9zdGdyZXNxbC92MjAxNzEyMDEvZ2V0U2VydmVyU2VjdXJpdHlBbGVydFBvbGljeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsc0VBQXNFO0FBQ3RFLGlGQUFpRjs7O0FBRWpGLHlDQUF5QztBQUN6Qyw2Q0FBNkM7QUFFN0M7O0dBRUc7QUFDSCxTQUFnQiw0QkFBNEIsQ0FBQyxJQUFzQyxFQUFFLElBQTJCO0lBRTVHLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLHFFQUFxRSxFQUFFO1FBQ2hHLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MseUJBQXlCLEVBQUUsSUFBSSxDQUFDLHVCQUF1QjtRQUN2RCxZQUFZLEVBQUUsSUFBSSxDQUFDLFVBQVU7S0FDaEMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFSRCxvRUFRQztBQThERDs7R0FFRztBQUNILFNBQWdCLGtDQUFrQyxDQUFDLElBQTRDLEVBQUUsSUFBMkI7SUFDeEgsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQU0sRUFBRSxFQUFFLENBQUMsNEJBQTRCLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUE7QUFDdkYsQ0FBQztBQUZELGdGQUVDIn0=
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Gets a virtual network rule.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getVirtualNetworkRule(args: GetVirtualNetworkRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetVirtualNetworkRuleResult>;
|
|
6
|
+
export interface GetVirtualNetworkRuleArgs {
|
|
7
|
+
/**
|
|
8
|
+
* The name of the resource group. The name is case insensitive.
|
|
9
|
+
*/
|
|
10
|
+
resourceGroupName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the server.
|
|
13
|
+
*/
|
|
14
|
+
serverName: string;
|
|
15
|
+
/**
|
|
16
|
+
* The name of the virtual network rule.
|
|
17
|
+
*/
|
|
18
|
+
virtualNetworkRuleName: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* A virtual network rule.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetVirtualNetworkRuleResult {
|
|
24
|
+
/**
|
|
25
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
26
|
+
*/
|
|
27
|
+
readonly id: string;
|
|
28
|
+
/**
|
|
29
|
+
* Create firewall rule before the virtual network has vnet service endpoint enabled.
|
|
30
|
+
*/
|
|
31
|
+
readonly ignoreMissingVnetServiceEndpoint?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the resource
|
|
34
|
+
*/
|
|
35
|
+
readonly name: string;
|
|
36
|
+
/**
|
|
37
|
+
* Virtual Network Rule State
|
|
38
|
+
*/
|
|
39
|
+
readonly state: string;
|
|
40
|
+
/**
|
|
41
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
42
|
+
*/
|
|
43
|
+
readonly type: string;
|
|
44
|
+
/**
|
|
45
|
+
* The ARM resource id of the virtual network subnet.
|
|
46
|
+
*/
|
|
47
|
+
readonly virtualNetworkSubnetId: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Gets a virtual network rule.
|
|
51
|
+
*/
|
|
52
|
+
export declare function getVirtualNetworkRuleOutput(args: GetVirtualNetworkRuleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVirtualNetworkRuleResult>;
|
|
53
|
+
export interface GetVirtualNetworkRuleOutputArgs {
|
|
54
|
+
/**
|
|
55
|
+
* The name of the resource group. The name is case insensitive.
|
|
56
|
+
*/
|
|
57
|
+
resourceGroupName: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The name of the server.
|
|
60
|
+
*/
|
|
61
|
+
serverName: pulumi.Input<string>;
|
|
62
|
+
/**
|
|
63
|
+
* The name of the virtual network rule.
|
|
64
|
+
*/
|
|
65
|
+
virtualNetworkRuleName: pulumi.Input<string>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getVirtualNetworkRuleOutput = exports.getVirtualNetworkRule = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets a virtual network rule.
|
|
10
|
+
*/
|
|
11
|
+
function getVirtualNetworkRule(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:dbforpostgresql/v20171201:getVirtualNetworkRule", {
|
|
14
|
+
"resourceGroupName": args.resourceGroupName,
|
|
15
|
+
"serverName": args.serverName,
|
|
16
|
+
"virtualNetworkRuleName": args.virtualNetworkRuleName,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getVirtualNetworkRule = getVirtualNetworkRule;
|
|
20
|
+
/**
|
|
21
|
+
* Gets a virtual network rule.
|
|
22
|
+
*/
|
|
23
|
+
function getVirtualNetworkRuleOutput(args, opts) {
|
|
24
|
+
return pulumi.output(args).apply((a) => getVirtualNetworkRule(a, opts));
|
|
25
|
+
}
|
|
26
|
+
exports.getVirtualNetworkRuleOutput = getVirtualNetworkRuleOutput;
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0VmlydHVhbE5ldHdvcmtSdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vZGJmb3Jwb3N0Z3Jlc3FsL3YyMDE3MTIwMS9nZXRWaXJ0dWFsTmV0d29ya1J1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHNFQUFzRTtBQUN0RSxpRkFBaUY7OztBQUVqRix5Q0FBeUM7QUFDekMsNkNBQTZDO0FBRTdDOztHQUVHO0FBQ0gsU0FBZ0IscUJBQXFCLENBQUMsSUFBK0IsRUFBRSxJQUEyQjtJQUU5RixJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLENBQUM7SUFDekUsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyw4REFBOEQsRUFBRTtRQUN6RixtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLFlBQVksRUFBRSxJQUFJLENBQUMsVUFBVTtRQUM3Qix3QkFBd0IsRUFBRSxJQUFJLENBQUMsc0JBQXNCO0tBQ3hELEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUkQsc0RBUUM7QUE4Q0Q7O0dBRUc7QUFDSCxTQUFnQiwyQkFBMkIsQ0FBQyxJQUFxQyxFQUFFLElBQTJCO0lBQzFHLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLHFCQUFxQixDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFBO0FBQ2hGLENBQUM7QUFGRCxrRUFFQyJ9
|
|
@@ -1,7 +1,43 @@
|
|
|
1
|
+
export { ConfigurationArgs } from "./configuration";
|
|
2
|
+
export type Configuration = import("./configuration").Configuration;
|
|
3
|
+
export declare const Configuration: typeof import("./configuration").Configuration;
|
|
4
|
+
export { DatabaseArgs } from "./database";
|
|
5
|
+
export type Database = import("./database").Database;
|
|
6
|
+
export declare const Database: typeof import("./database").Database;
|
|
7
|
+
export { FirewallRuleArgs } from "./firewallRule";
|
|
8
|
+
export type FirewallRule = import("./firewallRule").FirewallRule;
|
|
9
|
+
export declare const FirewallRule: typeof import("./firewallRule").FirewallRule;
|
|
10
|
+
export { GetConfigurationArgs, GetConfigurationResult, GetConfigurationOutputArgs } from "./getConfiguration";
|
|
11
|
+
export declare const getConfiguration: typeof import("./getConfiguration").getConfiguration;
|
|
12
|
+
export declare const getConfigurationOutput: typeof import("./getConfiguration").getConfigurationOutput;
|
|
13
|
+
export { GetDatabaseArgs, GetDatabaseResult, GetDatabaseOutputArgs } from "./getDatabase";
|
|
14
|
+
export declare const getDatabase: typeof import("./getDatabase").getDatabase;
|
|
15
|
+
export declare const getDatabaseOutput: typeof import("./getDatabase").getDatabaseOutput;
|
|
16
|
+
export { GetFirewallRuleArgs, GetFirewallRuleResult, GetFirewallRuleOutputArgs } from "./getFirewallRule";
|
|
17
|
+
export declare const getFirewallRule: typeof import("./getFirewallRule").getFirewallRule;
|
|
18
|
+
export declare const getFirewallRuleOutput: typeof import("./getFirewallRule").getFirewallRuleOutput;
|
|
1
19
|
export { GetServerArgs, GetServerResult, GetServerOutputArgs } from "./getServer";
|
|
2
20
|
export declare const getServer: typeof import("./getServer").getServer;
|
|
3
21
|
export declare const getServerOutput: typeof import("./getServer").getServerOutput;
|
|
22
|
+
export { GetServerAdministratorArgs, GetServerAdministratorResult, GetServerAdministratorOutputArgs } from "./getServerAdministrator";
|
|
23
|
+
export declare const getServerAdministrator: typeof import("./getServerAdministrator").getServerAdministrator;
|
|
24
|
+
export declare const getServerAdministratorOutput: typeof import("./getServerAdministrator").getServerAdministratorOutput;
|
|
25
|
+
export { GetServerSecurityAlertPolicyArgs, GetServerSecurityAlertPolicyResult, GetServerSecurityAlertPolicyOutputArgs } from "./getServerSecurityAlertPolicy";
|
|
26
|
+
export declare const getServerSecurityAlertPolicy: typeof import("./getServerSecurityAlertPolicy").getServerSecurityAlertPolicy;
|
|
27
|
+
export declare const getServerSecurityAlertPolicyOutput: typeof import("./getServerSecurityAlertPolicy").getServerSecurityAlertPolicyOutput;
|
|
28
|
+
export { GetVirtualNetworkRuleArgs, GetVirtualNetworkRuleResult, GetVirtualNetworkRuleOutputArgs } from "./getVirtualNetworkRule";
|
|
29
|
+
export declare const getVirtualNetworkRule: typeof import("./getVirtualNetworkRule").getVirtualNetworkRule;
|
|
30
|
+
export declare const getVirtualNetworkRuleOutput: typeof import("./getVirtualNetworkRule").getVirtualNetworkRuleOutput;
|
|
4
31
|
export { ServerArgs } from "./server";
|
|
5
32
|
export type Server = import("./server").Server;
|
|
6
33
|
export declare const Server: typeof import("./server").Server;
|
|
34
|
+
export { ServerAdministratorArgs } from "./serverAdministrator";
|
|
35
|
+
export type ServerAdministrator = import("./serverAdministrator").ServerAdministrator;
|
|
36
|
+
export declare const ServerAdministrator: typeof import("./serverAdministrator").ServerAdministrator;
|
|
37
|
+
export { ServerSecurityAlertPolicyArgs } from "./serverSecurityAlertPolicy";
|
|
38
|
+
export type ServerSecurityAlertPolicy = import("./serverSecurityAlertPolicy").ServerSecurityAlertPolicy;
|
|
39
|
+
export declare const ServerSecurityAlertPolicy: typeof import("./serverSecurityAlertPolicy").ServerSecurityAlertPolicy;
|
|
40
|
+
export { VirtualNetworkRuleArgs } from "./virtualNetworkRule";
|
|
41
|
+
export type VirtualNetworkRule = import("./virtualNetworkRule").VirtualNetworkRule;
|
|
42
|
+
export declare const VirtualNetworkRule: typeof import("./virtualNetworkRule").VirtualNetworkRule;
|
|
7
43
|
export * from "../../types/enums/dbforpostgresql/v20171201";
|