@@ -148,42 +148,42 @@ abstract Builder setExecuteStreamingSqlRetrySettings(
148148 public abstract SpannerConfig build ();
149149 }
150150
151- /** Specifies the Cloud Spanner project ID */
151+ /** Specifies the Cloud Spanner project ID. */
152152 public SpannerConfig withProjectId (ValueProvider <String > projectId ) {
153153 return toBuilder ().setProjectId (projectId ).build ();
154154 }
155155
156- /** Specifies the Cloud Spanner project ID */
156+ /** Specifies the Cloud Spanner project ID. */
157157 public SpannerConfig withProjectId (String projectId ) {
158158 return withProjectId (ValueProvider .StaticValueProvider .of (projectId ));
159159 }
160160
161- /** Specifies the Cloud Spanner instance ID */
161+ /** Specifies the Cloud Spanner instance ID. */
162162 public SpannerConfig withInstanceId (ValueProvider <String > instanceId ) {
163163 return toBuilder ().setInstanceId (instanceId ).build ();
164164 }
165165
166- /** Specifies the Cloud Spanner instance ID */
166+ /** Specifies the Cloud Spanner instance ID. */
167167 public SpannerConfig withInstanceId (String instanceId ) {
168168 return withInstanceId (ValueProvider .StaticValueProvider .of (instanceId ));
169169 }
170170
171- /** Specifies the Cloud Spanner database ID */
171+ /** Specifies the Cloud Spanner database ID. */
172172 public SpannerConfig withDatabaseId (ValueProvider <String > databaseId ) {
173173 return toBuilder ().setDatabaseId (databaseId ).build ();
174174 }
175175
176- /** Specifies the Cloud Spanner database ID */
176+ /** Specifies the Cloud Spanner database ID. */
177177 public SpannerConfig withDatabaseId (String databaseId ) {
178178 return withDatabaseId (ValueProvider .StaticValueProvider .of (databaseId ));
179179 }
180180
181- /** Specifies the Cloud Spanner host */
181+ /** Specifies the Cloud Spanner host. */
182182 public SpannerConfig withHost (ValueProvider <String > host ) {
183183 return toBuilder ().setHost (host ).build ();
184184 }
185185
186- /** Specifies the Cloud Spanner host, when an emulator is used */
186+ /** Specifies the Cloud Spanner host, when an emulator is used. */
187187 public SpannerConfig withEmulatorHost (ValueProvider <String > emulatorHost ) {
188188 return toBuilder ().setEmulatorHost (emulatorHost ).build ();
189189 }
0 commit comments