File tree Expand file tree Collapse file tree
src/Configuration/src/CloudFoundry/ServiceBindings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,16 +10,53 @@ namespace Steeltoe.Configuration.CloudFoundry.ServiceBindings;
1010[ Flags ]
1111public enum CloudFoundryServiceBrokerTypes
1212{
13+ /// <summary>
14+ /// Don't use any of the built-in brokers.
15+ /// </summary>
1316 None = 0x0 ,
1417
18+ /// <summary>
19+ /// Use the built-in brokers for Netflix Eureka.
20+ /// </summary>
1521 Eureka = 0x1 ,
22+
23+ /// <summary>
24+ /// Use the built-in brokers for JWT and OpenID Connect.
25+ /// </summary>
1626 Identity = 0x2 ,
27+
28+ /// <summary>
29+ /// Use the built-in brokers for MongoDB.
30+ /// </summary>
1731 MongoDb = 0x4 ,
32+
33+ /// <summary>
34+ /// Use the built-in brokers for MySQL.
35+ /// </summary>
1836 MySql = 0x8 ,
37+
38+ /// <summary>
39+ /// Use the built-in brokers for PostgreSQL.
40+ /// </summary>
1941 PostgreSql = 0x10 ,
42+
43+ /// <summary>
44+ /// Use the built-in brokers for RabbitMQ.
45+ /// </summary>
2046 RabbitMQ = 0x20 ,
47+
48+ /// <summary>
49+ /// Use the built-in brokers for Redis/Valkey.
50+ /// </summary>
2151 Redis = 0x40 ,
52+
53+ /// <summary>
54+ /// Use the built-in brokers for Microsoft SQL Server.
55+ /// </summary>
2256 SqlServer = 0x80 ,
2357
58+ /// <summary>
59+ /// Use all built-in brokers.
60+ /// </summary>
2461 All = Eureka | Identity | MongoDb | MySql | PostgreSql | RabbitMQ | Redis | SqlServer
2562}
You can’t perform that action at this time.
0 commit comments