@pierskarsenbarg/sdm 1.4.2 → 1.6.0

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.
Files changed (49) hide show
  1. package/account.d.ts +1 -1
  2. package/account.js +1 -1
  3. package/accountAttachment.d.ts +1 -1
  4. package/accountAttachment.js +1 -1
  5. package/getWorkflow.d.ts +131 -0
  6. package/getWorkflow.js +57 -0
  7. package/getWorkflow.js.map +1 -0
  8. package/getWorkflowApprover.d.ts +91 -0
  9. package/getWorkflowApprover.js +50 -0
  10. package/getWorkflowApprover.js.map +1 -0
  11. package/getWorkflowRole.d.ts +93 -0
  12. package/getWorkflowRole.js +52 -0
  13. package/getWorkflowRole.js.map +1 -0
  14. package/index.d.ts +18 -0
  15. package/index.js +25 -1
  16. package/index.js.map +1 -1
  17. package/node.d.ts +1 -1
  18. package/node.js +1 -1
  19. package/package.json +2 -3
  20. package/package.json.bak +1 -2
  21. package/peeringGroup.d.ts +1 -1
  22. package/peeringGroup.js +1 -1
  23. package/peeringGroupNode.d.ts +1 -1
  24. package/peeringGroupNode.js +1 -1
  25. package/peeringGroupPeer.d.ts +1 -1
  26. package/peeringGroupPeer.js +1 -1
  27. package/peeringGroupResource.d.ts +1 -1
  28. package/peeringGroupResource.js +1 -1
  29. package/remoteIdentity.d.ts +1 -1
  30. package/remoteIdentity.js +1 -1
  31. package/resource.d.ts +22 -40
  32. package/resource.js +5 -1
  33. package/resource.js.map +1 -1
  34. package/role.d.ts +1 -1
  35. package/role.js +1 -1
  36. package/secretStore.d.ts +1 -1
  37. package/secretStore.js +1 -1
  38. package/types/input.d.ts +147 -11
  39. package/types/output.d.ts +367 -27
  40. package/workflow.d.ts +148 -0
  41. package/workflow.js +99 -0
  42. package/workflow.js.map +1 -0
  43. package/workflowApprover.d.ts +83 -0
  44. package/workflowApprover.js +80 -0
  45. package/workflowApprover.js.map +1 -0
  46. package/workflowRole.d.ts +84 -0
  47. package/workflowRole.js +81 -0
  48. package/workflowRole.js.map +1 -0
  49. package/scripts/install-pulumi-plugin.js +0 -26
package/types/input.d.ts CHANGED
@@ -865,7 +865,7 @@ export interface ResourceAuroraMysql {
865
865
  /**
866
866
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
867
867
  */
868
- database: pulumi.Input<string>;
868
+ database?: pulumi.Input<string>;
869
869
  /**
870
870
  * A filter applied to the routing logic to pin datasource to nodes.
871
871
  */
@@ -973,6 +973,66 @@ export interface ResourceAuroraPostgres {
973
973
  */
974
974
  username?: pulumi.Input<string>;
975
975
  }
976
+ export interface ResourceAuroraPostgresIam {
977
+ /**
978
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
979
+ */
980
+ bindInterface?: pulumi.Input<string>;
981
+ /**
982
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
983
+ */
984
+ database: pulumi.Input<string>;
985
+ /**
986
+ * A filter applied to the routing logic to pin datasource to nodes.
987
+ */
988
+ egressFilter?: pulumi.Input<string>;
989
+ /**
990
+ * The host to dial to initiate a connection from the egress node to this resource.
991
+ */
992
+ hostname: pulumi.Input<string>;
993
+ /**
994
+ * Unique human-readable name of the Resource.
995
+ */
996
+ name: pulumi.Input<string>;
997
+ /**
998
+ * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
999
+ */
1000
+ overrideDatabase?: pulumi.Input<boolean>;
1001
+ /**
1002
+ * The port to dial to initiate a connection from the egress node to this resource.
1003
+ */
1004
+ port?: pulumi.Input<number>;
1005
+ /**
1006
+ * The local port used by clients to connect to this resource.
1007
+ */
1008
+ portOverride?: pulumi.Input<number>;
1009
+ /**
1010
+ * The AWS region to connect to.
1011
+ */
1012
+ region: pulumi.Input<string>;
1013
+ /**
1014
+ * If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
1015
+ */
1016
+ roleAssumptionArn?: pulumi.Input<string>;
1017
+ /**
1018
+ * ID of the secret store containing credentials for this resource, if any.
1019
+ */
1020
+ secretStoreId?: pulumi.Input<string>;
1021
+ /**
1022
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1023
+ */
1024
+ subdomain?: pulumi.Input<string>;
1025
+ /**
1026
+ * Tags is a map of key, value pairs.
1027
+ */
1028
+ tags?: pulumi.Input<{
1029
+ [key: string]: pulumi.Input<string>;
1030
+ }>;
1031
+ /**
1032
+ * The username to authenticate with.
1033
+ */
1034
+ username?: pulumi.Input<string>;
1035
+ }
976
1036
  export interface ResourceAws {
977
1037
  /**
978
1038
  * The Access Key ID to use to authenticate.
@@ -1247,7 +1307,7 @@ export interface ResourceAzureMysql {
1247
1307
  /**
1248
1308
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
1249
1309
  */
1250
- database: pulumi.Input<string>;
1310
+ database?: pulumi.Input<string>;
1251
1311
  /**
1252
1312
  * A filter applied to the routing logic to pin datasource to nodes.
1253
1313
  */
@@ -1579,7 +1639,7 @@ export interface ResourceClustrix {
1579
1639
  /**
1580
1640
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
1581
1641
  */
1582
- database: pulumi.Input<string>;
1642
+ database?: pulumi.Input<string>;
1583
1643
  /**
1584
1644
  * A filter applied to the routing logic to pin datasource to nodes.
1585
1645
  */
@@ -2752,7 +2812,7 @@ export interface ResourceMaria {
2752
2812
  /**
2753
2813
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
2754
2814
  */
2755
- database: pulumi.Input<string>;
2815
+ database?: pulumi.Input<string>;
2756
2816
  /**
2757
2817
  * A filter applied to the routing logic to pin datasource to nodes.
2758
2818
  */
@@ -2852,7 +2912,7 @@ export interface ResourceMemsql {
2852
2912
  /**
2853
2913
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
2854
2914
  */
2855
- database: pulumi.Input<string>;
2915
+ database?: pulumi.Input<string>;
2856
2916
  /**
2857
2917
  * A filter applied to the routing logic to pin datasource to nodes.
2858
2918
  */
@@ -3220,7 +3280,7 @@ export interface ResourceMtlsMysql {
3220
3280
  /**
3221
3281
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
3222
3282
  */
3223
- database: pulumi.Input<string>;
3283
+ database?: pulumi.Input<string>;
3224
3284
  /**
3225
3285
  * A filter applied to the routing logic to pin datasource to nodes.
3226
3286
  */
@@ -3356,7 +3416,7 @@ export interface ResourceMysql {
3356
3416
  /**
3357
3417
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
3358
3418
  */
3359
- database: pulumi.Input<string>;
3419
+ database?: pulumi.Input<string>;
3360
3420
  /**
3361
3421
  * A filter applied to the routing logic to pin datasource to nodes.
3362
3422
  */
@@ -3785,6 +3845,10 @@ export interface ResourceRdp {
3785
3845
  * The host to dial to initiate a connection from the egress node to this resource.
3786
3846
  */
3787
3847
  hostname: pulumi.Input<string>;
3848
+ /**
3849
+ * When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
3850
+ */
3851
+ lockRequired?: pulumi.Input<boolean>;
3788
3852
  /**
3789
3853
  * Unique human-readable name of the Resource.
3790
3854
  */
@@ -3820,6 +3884,66 @@ export interface ResourceRdp {
3820
3884
  */
3821
3885
  username?: pulumi.Input<string>;
3822
3886
  }
3887
+ export interface ResourceRdsPostgresIam {
3888
+ /**
3889
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
3890
+ */
3891
+ bindInterface?: pulumi.Input<string>;
3892
+ /**
3893
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
3894
+ */
3895
+ database: pulumi.Input<string>;
3896
+ /**
3897
+ * A filter applied to the routing logic to pin datasource to nodes.
3898
+ */
3899
+ egressFilter?: pulumi.Input<string>;
3900
+ /**
3901
+ * The host to dial to initiate a connection from the egress node to this resource.
3902
+ */
3903
+ hostname: pulumi.Input<string>;
3904
+ /**
3905
+ * Unique human-readable name of the Resource.
3906
+ */
3907
+ name: pulumi.Input<string>;
3908
+ /**
3909
+ * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
3910
+ */
3911
+ overrideDatabase?: pulumi.Input<boolean>;
3912
+ /**
3913
+ * The port to dial to initiate a connection from the egress node to this resource.
3914
+ */
3915
+ port?: pulumi.Input<number>;
3916
+ /**
3917
+ * The local port used by clients to connect to this resource.
3918
+ */
3919
+ portOverride?: pulumi.Input<number>;
3920
+ /**
3921
+ * The AWS region to connect to.
3922
+ */
3923
+ region: pulumi.Input<string>;
3924
+ /**
3925
+ * If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
3926
+ */
3927
+ roleAssumptionArn?: pulumi.Input<string>;
3928
+ /**
3929
+ * ID of the secret store containing credentials for this resource, if any.
3930
+ */
3931
+ secretStoreId?: pulumi.Input<string>;
3932
+ /**
3933
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3934
+ */
3935
+ subdomain?: pulumi.Input<string>;
3936
+ /**
3937
+ * Tags is a map of key, value pairs.
3938
+ */
3939
+ tags?: pulumi.Input<{
3940
+ [key: string]: pulumi.Input<string>;
3941
+ }>;
3942
+ /**
3943
+ * The username to authenticate with.
3944
+ */
3945
+ username?: pulumi.Input<string>;
3946
+ }
3823
3947
  export interface ResourceRedis {
3824
3948
  /**
3825
3949
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
@@ -3936,7 +4060,7 @@ export interface ResourceSingleStore {
3936
4060
  /**
3937
4061
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
3938
4062
  */
3939
- database: pulumi.Input<string>;
4063
+ database?: pulumi.Input<string>;
3940
4064
  /**
3941
4065
  * A filter applied to the routing logic to pin datasource to nodes.
3942
4066
  */
@@ -4081,6 +4205,10 @@ export interface ResourceSnowsight {
4081
4205
  }>;
4082
4206
  }
4083
4207
  export interface ResourceSqlServer {
4208
+ /**
4209
+ * Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
4210
+ */
4211
+ allowDeprecatedEncryption?: pulumi.Input<boolean>;
4084
4212
  /**
4085
4213
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
4086
4214
  */
@@ -4088,7 +4216,7 @@ export interface ResourceSqlServer {
4088
4216
  /**
4089
4217
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
4090
4218
  */
4091
- database: pulumi.Input<string>;
4219
+ database?: pulumi.Input<string>;
4092
4220
  /**
4093
4221
  * A filter applied to the routing logic to pin datasource to nodes.
4094
4222
  */
@@ -4141,6 +4269,10 @@ export interface ResourceSqlServer {
4141
4269
  username?: pulumi.Input<string>;
4142
4270
  }
4143
4271
  export interface ResourceSqlServerAzureAd {
4272
+ /**
4273
+ * Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
4274
+ */
4275
+ allowDeprecatedEncryption?: pulumi.Input<boolean>;
4144
4276
  /**
4145
4277
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
4146
4278
  */
@@ -4152,7 +4284,7 @@ export interface ResourceSqlServerAzureAd {
4152
4284
  /**
4153
4285
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
4154
4286
  */
4155
- database: pulumi.Input<string>;
4287
+ database?: pulumi.Input<string>;
4156
4288
  /**
4157
4289
  * A filter applied to the routing logic to pin datasource to nodes.
4158
4290
  */
@@ -4206,6 +4338,10 @@ export interface ResourceSqlServerAzureAd {
4206
4338
  tenantId?: pulumi.Input<string>;
4207
4339
  }
4208
4340
  export interface ResourceSqlServerKerberosAd {
4341
+ /**
4342
+ * Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
4343
+ */
4344
+ allowDeprecatedEncryption?: pulumi.Input<boolean>;
4209
4345
  /**
4210
4346
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
4211
4347
  */
@@ -4213,7 +4349,7 @@ export interface ResourceSqlServerKerberosAd {
4213
4349
  /**
4214
4350
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
4215
4351
  */
4216
- database: pulumi.Input<string>;
4352
+ database?: pulumi.Input<string>;
4217
4353
  /**
4218
4354
  * A filter applied to the routing logic to pin datasource to nodes.
4219
4355
  */