|
63 | 63 | "level": "error"
|
64 | 64 | }
|
65 | 65 | },
|
66 |
| - { |
67 |
| - "name": "spring.couchbase.bootstrap-hosts", |
68 |
| - "type": "java.util.List<java.lang.String>", |
69 |
| - "description": "Couchbase nodes (host or IP address) to bootstrap from.", |
70 |
| - "deprecation": { |
71 |
| - "replacement": "spring.couchbase.connection-string", |
72 |
| - "level": "error" |
73 |
| - } |
74 |
| - }, |
75 |
| - { |
76 |
| - "name": "spring.couchbase.bucket.name", |
77 |
| - "type": "java.lang.String", |
78 |
| - "description": "Name of the bucket to connect to.", |
79 |
| - "deprecation": { |
80 |
| - "reason": "A bucket is no longer auto-configured.", |
81 |
| - "level": "error" |
82 |
| - } |
83 |
| - }, |
84 |
| - { |
85 |
| - "name": "spring.couchbase.bucket.password", |
86 |
| - "type": "java.lang.String", |
87 |
| - "description": "Password of the bucket.", |
88 |
| - "deprecation": { |
89 |
| - "reason": "A bucket is no longer auto-configured.", |
90 |
| - "level": "error" |
91 |
| - } |
92 |
| - }, |
93 |
| - { |
94 |
| - "name": "spring.couchbase.env.bootstrap.http-direct-port", |
95 |
| - "type": "java.lang.Integer", |
96 |
| - "description": "Port for the HTTP bootstrap.", |
97 |
| - "deprecation": { |
98 |
| - "level": "error" |
99 |
| - } |
100 |
| - }, |
101 |
| - { |
102 |
| - "name": "spring.couchbase.env.bootstrap.http-ssl-port", |
103 |
| - "type": "java.lang.Integer", |
104 |
| - "description": "Port for the HTTPS bootstrap.", |
105 |
| - "deprecation": { |
106 |
| - "level": "error" |
107 |
| - } |
108 |
| - }, |
109 |
| - { |
110 |
| - "name": "spring.couchbase.env.endpoints.key-value", |
111 |
| - "type": "java.lang.Integer", |
112 |
| - "description": "Number of sockets per node against the key/value service.", |
113 |
| - "deprecation": { |
114 |
| - "level": "error" |
115 |
| - } |
116 |
| - }, |
117 |
| - { |
118 |
| - "name": "spring.couchbase.env.endpoints.query", |
119 |
| - "type": "java.lang.Integer", |
120 |
| - "description": "Number of sockets per node against the query (N1QL) service.", |
121 |
| - "deprecation": { |
122 |
| - "level": "error" |
123 |
| - } |
124 |
| - }, |
125 |
| - { |
126 |
| - "name": "spring.couchbase.env.endpoints.queryservice.max-endpoints", |
127 |
| - "type": "java.lang.Integer", |
128 |
| - "description": "Maximum number of sockets per node.", |
129 |
| - "deprecation": { |
130 |
| - "replacement": "spring.couchbase.env.io.max-endpoints", |
131 |
| - "level": "error" |
132 |
| - } |
133 |
| - }, |
134 |
| - { |
135 |
| - "name": "spring.couchbase.env.endpoints.queryservice.min-endpoints", |
136 |
| - "type": "java.lang.Integer", |
137 |
| - "description": "Minimum number of sockets per node.", |
138 |
| - "deprecation": { |
139 |
| - "replacement": "spring.couchbase.env.io.min-endpoints", |
140 |
| - "level": "error" |
141 |
| - } |
142 |
| - }, |
143 |
| - { |
144 |
| - "name": "spring.couchbase.env.endpoints.view", |
145 |
| - "type": "java.lang.Integer", |
146 |
| - "description": "Number of sockets per node against the view service.", |
147 |
| - "deprecation": { |
148 |
| - "level": "error" |
149 |
| - } |
150 |
| - }, |
151 |
| - { |
152 |
| - "name": "spring.couchbase.env.endpoints.viewservice.max-endpoints", |
153 |
| - "type": "java.lang.Integer", |
154 |
| - "description": "Maximum number of sockets per node.", |
155 |
| - "deprecation": { |
156 |
| - "replacement": "spring.couchbase.env.io.max-endpoints", |
157 |
| - "level": "error" |
158 |
| - } |
159 |
| - }, |
160 |
| - { |
161 |
| - "name": "spring.couchbase.env.endpoints.viewservice.min-endpoints", |
162 |
| - "type": "java.lang.Integer", |
163 |
| - "description": "Minimum number of sockets per node.", |
164 |
| - "deprecation": { |
165 |
| - "replacement": "spring.couchbase.env.io.min-endpoints", |
166 |
| - "level": "error" |
167 |
| - } |
168 |
| - }, |
169 |
| - { |
170 |
| - "name": "spring.couchbase.env.ssl.key-store", |
171 |
| - "type": "java.lang.String", |
172 |
| - "description": "Path to the JVM key store that holds the certificates.", |
173 |
| - "deprecation": { |
174 |
| - "replacement": "spring.couchbase.env.ssl.bundle", |
175 |
| - "level": "error", |
176 |
| - "since": "3.1.0" |
177 |
| - } |
178 |
| - }, |
179 |
| - { |
180 |
| - "name": "spring.couchbase.env.ssl.key-store-password", |
181 |
| - "type": "java.lang.String", |
182 |
| - "description": "Password used to access the key store.", |
183 |
| - "deprecation": { |
184 |
| - "replacement": "spring.couchbase.env.ssl.bundle", |
185 |
| - "level": "error", |
186 |
| - "since": "3.1.0" |
187 |
| - } |
188 |
| - }, |
189 |
| - { |
190 |
| - "name": "spring.couchbase.env.timeouts.socket-connect", |
191 |
| - "type": "java.time.Duration", |
192 |
| - "description": "Socket connect connections timeout.", |
193 |
| - "deprecation": { |
194 |
| - "level": "error" |
195 |
| - } |
196 |
| - }, |
197 | 66 | {
|
198 | 67 | "name": "spring.dao.exceptiontranslation.enabled",
|
199 | 68 | "type": "java.lang.Boolean",
|
|
0 commit comments