@pierskarsenbarg/sdm 1.23.0 → 1.24.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.
- package/getWorkflow.d.ts +24 -0
- package/getWorkflow.js +4 -0
- package/getWorkflow.js.map +1 -1
- package/package.json +1 -1
- package/resource.d.ts +30 -18
- package/resource.js +14 -0
- package/resource.js.map +1 -1
- package/types/input.d.ts +389 -0
- package/types/output.d.ts +991 -170
- package/workflow.d.ts +36 -0
- package/workflow.js +4 -0
- package/workflow.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -969,6 +969,58 @@ export interface ResourceAthena {
|
|
|
969
969
|
[key: string]: pulumi.Input<string>;
|
|
970
970
|
}>;
|
|
971
971
|
}
|
|
972
|
+
export interface ResourceAthenaIam {
|
|
973
|
+
/**
|
|
974
|
+
* 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.
|
|
975
|
+
*/
|
|
976
|
+
bindInterface?: pulumi.Input<string>;
|
|
977
|
+
/**
|
|
978
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
979
|
+
*/
|
|
980
|
+
egressFilter?: pulumi.Input<string>;
|
|
981
|
+
/**
|
|
982
|
+
* Unique human-readable name of the Resource.
|
|
983
|
+
*/
|
|
984
|
+
name: pulumi.Input<string>;
|
|
985
|
+
/**
|
|
986
|
+
* The AWS S3 output location.
|
|
987
|
+
*/
|
|
988
|
+
output: pulumi.Input<string>;
|
|
989
|
+
/**
|
|
990
|
+
* The local port used by clients to connect to this resource.
|
|
991
|
+
*/
|
|
992
|
+
portOverride?: pulumi.Input<number>;
|
|
993
|
+
/**
|
|
994
|
+
* ID of the proxy cluster for this resource, if any.
|
|
995
|
+
*/
|
|
996
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
997
|
+
/**
|
|
998
|
+
* The AWS region to connect to.
|
|
999
|
+
*/
|
|
1000
|
+
region?: pulumi.Input<string>;
|
|
1001
|
+
/**
|
|
1002
|
+
* The role to assume after logging in.
|
|
1003
|
+
*/
|
|
1004
|
+
roleArn?: pulumi.Input<string>;
|
|
1005
|
+
/**
|
|
1006
|
+
* The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
|
|
1007
|
+
*/
|
|
1008
|
+
roleExternalId?: pulumi.Input<string>;
|
|
1009
|
+
/**
|
|
1010
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
1011
|
+
*/
|
|
1012
|
+
secretStoreId?: pulumi.Input<string>;
|
|
1013
|
+
/**
|
|
1014
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1015
|
+
*/
|
|
1016
|
+
subdomain?: pulumi.Input<string>;
|
|
1017
|
+
/**
|
|
1018
|
+
* Tags is a map of key, value pairs.
|
|
1019
|
+
*/
|
|
1020
|
+
tags?: pulumi.Input<{
|
|
1021
|
+
[key: string]: pulumi.Input<string>;
|
|
1022
|
+
}>;
|
|
1023
|
+
}
|
|
972
1024
|
export interface ResourceAuroraMysql {
|
|
973
1025
|
/**
|
|
974
1026
|
* 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.
|
|
@@ -1033,6 +1085,66 @@ export interface ResourceAuroraMysql {
|
|
|
1033
1085
|
*/
|
|
1034
1086
|
username?: pulumi.Input<string>;
|
|
1035
1087
|
}
|
|
1088
|
+
export interface ResourceAuroraMysqlIam {
|
|
1089
|
+
/**
|
|
1090
|
+
* 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.
|
|
1091
|
+
*/
|
|
1092
|
+
bindInterface?: pulumi.Input<string>;
|
|
1093
|
+
/**
|
|
1094
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
1095
|
+
*/
|
|
1096
|
+
database?: pulumi.Input<string>;
|
|
1097
|
+
/**
|
|
1098
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
1099
|
+
*/
|
|
1100
|
+
egressFilter?: pulumi.Input<string>;
|
|
1101
|
+
/**
|
|
1102
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
1103
|
+
*/
|
|
1104
|
+
hostname: pulumi.Input<string>;
|
|
1105
|
+
/**
|
|
1106
|
+
* Unique human-readable name of the Resource.
|
|
1107
|
+
*/
|
|
1108
|
+
name: pulumi.Input<string>;
|
|
1109
|
+
/**
|
|
1110
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
1111
|
+
*/
|
|
1112
|
+
port?: pulumi.Input<number>;
|
|
1113
|
+
/**
|
|
1114
|
+
* The local port used by clients to connect to this resource.
|
|
1115
|
+
*/
|
|
1116
|
+
portOverride?: pulumi.Input<number>;
|
|
1117
|
+
/**
|
|
1118
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1119
|
+
*/
|
|
1120
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1121
|
+
/**
|
|
1122
|
+
* The AWS region to connect to.
|
|
1123
|
+
*/
|
|
1124
|
+
region: pulumi.Input<string>;
|
|
1125
|
+
/**
|
|
1126
|
+
* If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
|
1127
|
+
*/
|
|
1128
|
+
roleAssumptionArn?: pulumi.Input<string>;
|
|
1129
|
+
/**
|
|
1130
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
1131
|
+
*/
|
|
1132
|
+
secretStoreId?: pulumi.Input<string>;
|
|
1133
|
+
/**
|
|
1134
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1135
|
+
*/
|
|
1136
|
+
subdomain?: pulumi.Input<string>;
|
|
1137
|
+
/**
|
|
1138
|
+
* Tags is a map of key, value pairs.
|
|
1139
|
+
*/
|
|
1140
|
+
tags?: pulumi.Input<{
|
|
1141
|
+
[key: string]: pulumi.Input<string>;
|
|
1142
|
+
}>;
|
|
1143
|
+
/**
|
|
1144
|
+
* The username to authenticate with.
|
|
1145
|
+
*/
|
|
1146
|
+
username?: pulumi.Input<string>;
|
|
1147
|
+
}
|
|
1036
1148
|
export interface ResourceAuroraPostgres {
|
|
1037
1149
|
/**
|
|
1038
1150
|
* 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.
|
|
@@ -1851,6 +1963,175 @@ export interface ResourceCitus {
|
|
|
1851
1963
|
*/
|
|
1852
1964
|
username?: pulumi.Input<string>;
|
|
1853
1965
|
}
|
|
1966
|
+
export interface ResourceClickHouseHttp {
|
|
1967
|
+
/**
|
|
1968
|
+
* 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.
|
|
1969
|
+
*/
|
|
1970
|
+
bindInterface?: pulumi.Input<string>;
|
|
1971
|
+
/**
|
|
1972
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
1973
|
+
*/
|
|
1974
|
+
database?: pulumi.Input<string>;
|
|
1975
|
+
/**
|
|
1976
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
1977
|
+
*/
|
|
1978
|
+
egressFilter?: pulumi.Input<string>;
|
|
1979
|
+
/**
|
|
1980
|
+
* Unique human-readable name of the Resource.
|
|
1981
|
+
*/
|
|
1982
|
+
name: pulumi.Input<string>;
|
|
1983
|
+
/**
|
|
1984
|
+
* The password to authenticate with.
|
|
1985
|
+
*/
|
|
1986
|
+
password?: pulumi.Input<string>;
|
|
1987
|
+
/**
|
|
1988
|
+
* The local port used by clients to connect to this resource.
|
|
1989
|
+
*/
|
|
1990
|
+
portOverride?: pulumi.Input<number>;
|
|
1991
|
+
/**
|
|
1992
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1993
|
+
*/
|
|
1994
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1995
|
+
/**
|
|
1996
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
1997
|
+
*/
|
|
1998
|
+
secretStoreId?: pulumi.Input<string>;
|
|
1999
|
+
/**
|
|
2000
|
+
* Tags is a map of key, value pairs.
|
|
2001
|
+
*/
|
|
2002
|
+
tags?: pulumi.Input<{
|
|
2003
|
+
[key: string]: pulumi.Input<string>;
|
|
2004
|
+
}>;
|
|
2005
|
+
/**
|
|
2006
|
+
* The base address of your website without the path.
|
|
2007
|
+
* * kubernetes:
|
|
2008
|
+
*/
|
|
2009
|
+
url: pulumi.Input<string>;
|
|
2010
|
+
/**
|
|
2011
|
+
* The username to authenticate with.
|
|
2012
|
+
*/
|
|
2013
|
+
username?: pulumi.Input<string>;
|
|
2014
|
+
}
|
|
2015
|
+
export interface ResourceClickHouseMySql {
|
|
2016
|
+
/**
|
|
2017
|
+
* 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.
|
|
2018
|
+
*/
|
|
2019
|
+
bindInterface?: pulumi.Input<string>;
|
|
2020
|
+
/**
|
|
2021
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
2022
|
+
*/
|
|
2023
|
+
database?: pulumi.Input<string>;
|
|
2024
|
+
/**
|
|
2025
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2026
|
+
*/
|
|
2027
|
+
egressFilter?: pulumi.Input<string>;
|
|
2028
|
+
/**
|
|
2029
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
2030
|
+
*/
|
|
2031
|
+
hostname: pulumi.Input<string>;
|
|
2032
|
+
/**
|
|
2033
|
+
* Unique human-readable name of the Resource.
|
|
2034
|
+
*/
|
|
2035
|
+
name: pulumi.Input<string>;
|
|
2036
|
+
/**
|
|
2037
|
+
* The password to authenticate with.
|
|
2038
|
+
*/
|
|
2039
|
+
password?: pulumi.Input<string>;
|
|
2040
|
+
/**
|
|
2041
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
2042
|
+
*/
|
|
2043
|
+
port?: pulumi.Input<number>;
|
|
2044
|
+
/**
|
|
2045
|
+
* The local port used by clients to connect to this resource.
|
|
2046
|
+
*/
|
|
2047
|
+
portOverride?: pulumi.Input<number>;
|
|
2048
|
+
/**
|
|
2049
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2050
|
+
*/
|
|
2051
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2052
|
+
/**
|
|
2053
|
+
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
2054
|
+
*/
|
|
2055
|
+
requireNativeAuth?: pulumi.Input<boolean>;
|
|
2056
|
+
/**
|
|
2057
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
2058
|
+
*/
|
|
2059
|
+
secretStoreId?: pulumi.Input<string>;
|
|
2060
|
+
/**
|
|
2061
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2062
|
+
*/
|
|
2063
|
+
subdomain?: pulumi.Input<string>;
|
|
2064
|
+
/**
|
|
2065
|
+
* Tags is a map of key, value pairs.
|
|
2066
|
+
*/
|
|
2067
|
+
tags?: pulumi.Input<{
|
|
2068
|
+
[key: string]: pulumi.Input<string>;
|
|
2069
|
+
}>;
|
|
2070
|
+
/**
|
|
2071
|
+
* The username to authenticate with.
|
|
2072
|
+
*/
|
|
2073
|
+
username?: pulumi.Input<string>;
|
|
2074
|
+
}
|
|
2075
|
+
export interface ResourceClickHouseTcp {
|
|
2076
|
+
/**
|
|
2077
|
+
* 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.
|
|
2078
|
+
*/
|
|
2079
|
+
bindInterface?: pulumi.Input<string>;
|
|
2080
|
+
/**
|
|
2081
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
2082
|
+
*/
|
|
2083
|
+
database?: pulumi.Input<string>;
|
|
2084
|
+
/**
|
|
2085
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2086
|
+
*/
|
|
2087
|
+
egressFilter?: pulumi.Input<string>;
|
|
2088
|
+
/**
|
|
2089
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
2090
|
+
*/
|
|
2091
|
+
hostname: pulumi.Input<string>;
|
|
2092
|
+
/**
|
|
2093
|
+
* Unique human-readable name of the Resource.
|
|
2094
|
+
*/
|
|
2095
|
+
name: pulumi.Input<string>;
|
|
2096
|
+
/**
|
|
2097
|
+
* The password to authenticate with.
|
|
2098
|
+
*/
|
|
2099
|
+
password?: pulumi.Input<string>;
|
|
2100
|
+
/**
|
|
2101
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
2102
|
+
*/
|
|
2103
|
+
port: pulumi.Input<number>;
|
|
2104
|
+
/**
|
|
2105
|
+
* The local port used by clients to connect to this resource.
|
|
2106
|
+
*/
|
|
2107
|
+
portOverride?: pulumi.Input<number>;
|
|
2108
|
+
/**
|
|
2109
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2110
|
+
*/
|
|
2111
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2112
|
+
/**
|
|
2113
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
2114
|
+
*/
|
|
2115
|
+
secretStoreId?: pulumi.Input<string>;
|
|
2116
|
+
/**
|
|
2117
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2118
|
+
*/
|
|
2119
|
+
subdomain?: pulumi.Input<string>;
|
|
2120
|
+
/**
|
|
2121
|
+
* Tags is a map of key, value pairs.
|
|
2122
|
+
*/
|
|
2123
|
+
tags?: pulumi.Input<{
|
|
2124
|
+
[key: string]: pulumi.Input<string>;
|
|
2125
|
+
}>;
|
|
2126
|
+
/**
|
|
2127
|
+
* If set, TLS must be used to connect to this resource.
|
|
2128
|
+
*/
|
|
2129
|
+
tlsRequired?: pulumi.Input<boolean>;
|
|
2130
|
+
/**
|
|
2131
|
+
* The username to authenticate with.
|
|
2132
|
+
*/
|
|
2133
|
+
username?: pulumi.Input<string>;
|
|
2134
|
+
}
|
|
1854
2135
|
export interface ResourceClustrix {
|
|
1855
2136
|
/**
|
|
1856
2137
|
* 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.
|
|
@@ -2252,6 +2533,54 @@ export interface ResourceDocumentDbHost {
|
|
|
2252
2533
|
*/
|
|
2253
2534
|
username?: pulumi.Input<string>;
|
|
2254
2535
|
}
|
|
2536
|
+
export interface ResourceDocumentDbHostIam {
|
|
2537
|
+
/**
|
|
2538
|
+
* 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.
|
|
2539
|
+
*/
|
|
2540
|
+
bindInterface?: pulumi.Input<string>;
|
|
2541
|
+
/**
|
|
2542
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2543
|
+
*/
|
|
2544
|
+
egressFilter?: pulumi.Input<string>;
|
|
2545
|
+
/**
|
|
2546
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
2547
|
+
*/
|
|
2548
|
+
hostname: pulumi.Input<string>;
|
|
2549
|
+
/**
|
|
2550
|
+
* Unique human-readable name of the Resource.
|
|
2551
|
+
*/
|
|
2552
|
+
name: pulumi.Input<string>;
|
|
2553
|
+
/**
|
|
2554
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
2555
|
+
*/
|
|
2556
|
+
port?: pulumi.Input<number>;
|
|
2557
|
+
/**
|
|
2558
|
+
* The local port used by clients to connect to this resource.
|
|
2559
|
+
*/
|
|
2560
|
+
portOverride?: pulumi.Input<number>;
|
|
2561
|
+
/**
|
|
2562
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2563
|
+
*/
|
|
2564
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2565
|
+
/**
|
|
2566
|
+
* The AWS region to connect to.
|
|
2567
|
+
*/
|
|
2568
|
+
region: pulumi.Input<string>;
|
|
2569
|
+
/**
|
|
2570
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
2571
|
+
*/
|
|
2572
|
+
secretStoreId?: pulumi.Input<string>;
|
|
2573
|
+
/**
|
|
2574
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2575
|
+
*/
|
|
2576
|
+
subdomain?: pulumi.Input<string>;
|
|
2577
|
+
/**
|
|
2578
|
+
* Tags is a map of key, value pairs.
|
|
2579
|
+
*/
|
|
2580
|
+
tags?: pulumi.Input<{
|
|
2581
|
+
[key: string]: pulumi.Input<string>;
|
|
2582
|
+
}>;
|
|
2583
|
+
}
|
|
2255
2584
|
export interface ResourceDocumentDbReplicaSet {
|
|
2256
2585
|
/**
|
|
2257
2586
|
* The authentication database to use.
|
|
@@ -2424,6 +2753,58 @@ export interface ResourceDynamoDb {
|
|
|
2424
2753
|
[key: string]: pulumi.Input<string>;
|
|
2425
2754
|
}>;
|
|
2426
2755
|
}
|
|
2756
|
+
export interface ResourceDynamoDbiam {
|
|
2757
|
+
/**
|
|
2758
|
+
* 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.
|
|
2759
|
+
*/
|
|
2760
|
+
bindInterface?: pulumi.Input<string>;
|
|
2761
|
+
/**
|
|
2762
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2763
|
+
*/
|
|
2764
|
+
egressFilter?: pulumi.Input<string>;
|
|
2765
|
+
/**
|
|
2766
|
+
* The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
|
|
2767
|
+
*/
|
|
2768
|
+
endpoint: pulumi.Input<string>;
|
|
2769
|
+
/**
|
|
2770
|
+
* Unique human-readable name of the Resource.
|
|
2771
|
+
*/
|
|
2772
|
+
name: pulumi.Input<string>;
|
|
2773
|
+
/**
|
|
2774
|
+
* The local port used by clients to connect to this resource.
|
|
2775
|
+
*/
|
|
2776
|
+
portOverride?: pulumi.Input<number>;
|
|
2777
|
+
/**
|
|
2778
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2779
|
+
*/
|
|
2780
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2781
|
+
/**
|
|
2782
|
+
* The AWS region to connect to.
|
|
2783
|
+
*/
|
|
2784
|
+
region: pulumi.Input<string>;
|
|
2785
|
+
/**
|
|
2786
|
+
* The role to assume after logging in.
|
|
2787
|
+
*/
|
|
2788
|
+
roleArn?: pulumi.Input<string>;
|
|
2789
|
+
/**
|
|
2790
|
+
* The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
|
|
2791
|
+
*/
|
|
2792
|
+
roleExternalId?: pulumi.Input<string>;
|
|
2793
|
+
/**
|
|
2794
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
2795
|
+
*/
|
|
2796
|
+
secretStoreId?: pulumi.Input<string>;
|
|
2797
|
+
/**
|
|
2798
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2799
|
+
*/
|
|
2800
|
+
subdomain?: pulumi.Input<string>;
|
|
2801
|
+
/**
|
|
2802
|
+
* Tags is a map of key, value pairs.
|
|
2803
|
+
*/
|
|
2804
|
+
tags?: pulumi.Input<{
|
|
2805
|
+
[key: string]: pulumi.Input<string>;
|
|
2806
|
+
}>;
|
|
2807
|
+
}
|
|
2427
2808
|
export interface ResourceElastic {
|
|
2428
2809
|
/**
|
|
2429
2810
|
* 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.
|
|
@@ -2662,6 +3043,10 @@ export interface ResourceGcpwif {
|
|
|
2662
3043
|
* The local port used by clients to connect to this resource.
|
|
2663
3044
|
*/
|
|
2664
3045
|
portOverride?: pulumi.Input<number>;
|
|
3046
|
+
/**
|
|
3047
|
+
* When specified, all project scoped requests will use this Project ID, overriding the project ID specified by clients
|
|
3048
|
+
*/
|
|
3049
|
+
projectId?: pulumi.Input<string>;
|
|
2665
3050
|
/**
|
|
2666
3051
|
* ID of the proxy cluster for this resource, if any.
|
|
2667
3052
|
*/
|
|
@@ -4548,6 +4933,10 @@ export interface ResourceRdpCert {
|
|
|
4548
4933
|
* The ID of the identity set to use for identity connections.
|
|
4549
4934
|
*/
|
|
4550
4935
|
identitySetId?: pulumi.Input<string>;
|
|
4936
|
+
/**
|
|
4937
|
+
* When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
|
|
4938
|
+
*/
|
|
4939
|
+
lockRequired?: pulumi.Input<boolean>;
|
|
4551
4940
|
/**
|
|
4552
4941
|
* Unique human-readable name of the Resource.
|
|
4553
4942
|
*/
|