@pulumi/digitalocean 4.37.0 → 4.37.1
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/package.json +3 -3
- package/types/output.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/digitalocean",
|
|
3
|
-
"version": "4.37.
|
|
3
|
+
"version": "4.37.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing DigitalOcean cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"build": "tsc"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pulumi/pulumi": "^3.
|
|
16
|
+
"@pulumi/pulumi": "^3.142.0",
|
|
17
17
|
"builtin-modules": "3.0.0",
|
|
18
18
|
"read-package-tree": "^5.2.1",
|
|
19
19
|
"resolve": "^1.7.1"
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "digitalocean",
|
|
28
|
-
"version": "4.37.
|
|
28
|
+
"version": "4.37.1"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -3445,12 +3445,17 @@ export interface GetDatabaseClusterMaintenanceWindow {
|
|
|
3445
3445
|
}
|
|
3446
3446
|
export interface GetDatabaseUserSetting {
|
|
3447
3447
|
acls?: outputs.GetDatabaseUserSettingAcl[];
|
|
3448
|
+
opensearchAcls?: outputs.GetDatabaseUserSettingOpensearchAcl[];
|
|
3448
3449
|
}
|
|
3449
3450
|
export interface GetDatabaseUserSettingAcl {
|
|
3450
3451
|
id: string;
|
|
3451
3452
|
permission: string;
|
|
3452
3453
|
topic: string;
|
|
3453
3454
|
}
|
|
3455
|
+
export interface GetDatabaseUserSettingOpensearchAcl {
|
|
3456
|
+
index: string;
|
|
3457
|
+
permission: string;
|
|
3458
|
+
}
|
|
3454
3459
|
export interface GetDomainsDomain {
|
|
3455
3460
|
/**
|
|
3456
3461
|
* (Required) The name of the domain.
|