Skip to content

Commit b091c05

Browse files
committed
Fixes
1 parent e3f3693 commit b091c05

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docs/src/main/asciidoc/adb.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
=== Using Autonomous Database
3131

3232
The starter automatically configures and registers an `AutonomousDb` bean in the Spring application context.
33-
The `AutonomousDb` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/adb/package-summary.html[Javadoc]) can be used to create an Autonomous Database, get details of an Autonomous Database,
33+
The `AutonomousDb` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/adb/package-summary.html[Javadoc]) can be used to create an Autonomous Database, get details of an Autonomous Database,
3434
delete an Autonomous Database and generate a wallet for an Autonomous Database.
3535

3636
[source,java]

docs/src/main/asciidoc/function.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
== Cloud Functions
66

77
https://docs.oracle.com/en-us/iaas/Content/Functions/Concepts/functionsoverview.htm[OCI Functions] is a fully managed, multi-tenant, highly scalable, on-demand, Functions-as-a-Service platform. It is built on enterprise-grade Oracle Cloud Infrastructure and powered by the Fn Project open source engine. Use OCI Functions when you want to focus on writing code to meet business needs. The Spring Cloud module for OCI Functions allows to invoke an OCI Function.
8-
A Spring Boot starter is provided to auto-configure the Function component.
8+
A Spring Boot starter is provided to autoconfigure the Function component.
99

1010
Maven coordinates:
1111

@@ -29,7 +29,7 @@ dependencies {
2929
=== Using Cloud Functions
3030

3131
The starter automatically configures and registers a `Function` bean in the Spring application context.
32-
The `Function` bean (link[Javadoc]) can be used to invoke a function with parameter inputs 'functionOcid' and 'endpoint'
32+
The `Function` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/function/package-summary.html[Javadoc]) can be used to invoke a function with parameter inputs 'functionOcid' and 'endpoint'
3333

3434
[source,java]
3535
----

docs/src/main/asciidoc/genai.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
=== Using Generative AI Chat
2929

3030
The starter configures and registers a `ChatModel` bean in the Spring application context.
31-
The `ChatModel` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/genai/package-summary.html[Javadoc]) can be used to interact with OCI Generative AI Chat Models.
31+
The `ChatModel` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/genai/package-summary.html[Javadoc]) can be used to interact with OCI Generative AI Chat Models.
3232

3333
[source,java]
3434
----
@@ -43,7 +43,7 @@ public void embed() {
4343
=== Using Generative AI Embedding
4444

4545
The starter configures and registers an `EmbeddingModel` bean in the Spring application context.
46-
The `EmbeddingModel` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/genai/package-summary.html[Javadoc]) can be used to create text embeddings using OCI Generative AI Embedding Models.
46+
The `EmbeddingModel` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/genai/package-summary.html[Javadoc]) can be used to create text embeddings using OCI Generative AI Embedding Models.
4747

4848
[source,java]
4949
----

docs/src/main/asciidoc/logging.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
=== Using Cloud Logging
3030

3131
The starter automatically configures and registers a `Logging` bean in the Spring application context.
32-
The `Logging` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/logging/package-summary.html[Javadoc]) can be used to ingest logs associated with a logId specified in the property `spring.cloud.oci.logging.logId` within the application configuration file
32+
The `Logging` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/logging/package-summary.html[Javadoc]) can be used to ingest logs associated with a logId specified in the property `spring.cloud.oci.logging.logId` within the application configuration file
3333

3434
[source,java]
3535
----

docs/src/main/asciidoc/notifications.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
=== Using Cloud Notifications
3030

3131
The starter automatically configures and registers a `Notification` bean in the Spring application context.
32-
The `Notification` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/notification/package-summary.html[Javadoc]) can be used to create a Topic, create, list, get a Subscription, and publish messages to the Subscriptions in a Topic.
32+
The `Notification` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/notification/package-summary.html[Javadoc]) can be used to create a Topic, create, list, get a Subscription, and publish messages to the Subscriptions in a Topic.
3333

3434
[source,java]
3535
----

docs/src/main/asciidoc/queues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
=== Using Cloud Queues
3030

3131
The starter automatically configures and registers a `Queue` bean in the Spring application context.
32-
The `Queue` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/queue/package-summary.html[Javadoc]) can be used to create a queue, get a queue, list queues, delete a queue, put messages, get messages, update messages and delete a message.
32+
The `Queue` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/queue/package-summary.html[Javadoc]) can be used to create a queue, get a queue, list queues, delete a queue, put messages, get messages, update messages and delete a message.
3333

3434
[source,java]
3535
----

docs/src/main/asciidoc/storage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
=== Using Cloud Storage
3030

3131
The starter automatically configures and registers a `Storage` bean in the Spring application context.
32-
The `Storage` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/storage/package-summary.html[Javadoc]) can be used to list, create, update or delete buckets and objects.
32+
The `Storage` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/storage/package-summary.html[Javadoc]) can be used to list, create, update or delete buckets and objects.
3333

3434
[source,java]
3535
----

docs/src/main/asciidoc/streaming.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
=== Using Cloud Streaming
3030

3131
The starter automatically configures and registers a `Streaming` bean in the Spring application context.
32-
The `Streaming` bean (https://oracle.github.io/spring-cloud-oci/1.1.0/javadocs/com/oracle/cloud/spring/streaming/package-summary.html[Javadoc]) can be used to create streamPool, stream in OCI and ingest and consume high-volume data streams with a streamId
32+
The `Streaming` bean (https://oracle.github.io/spring-cloud-oci/{project-version}/javadocs/com/oracle/cloud/spring/streaming/package-summary.html[Javadoc]) can be used to create streamPool, stream in OCI and ingest and consume high-volume data streams with a streamId
3333

3434
[source,java]
3535
----

docs/src/main/asciidoc/vault.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
https://docs.oracle.com/en-us/iaas/Content/KeyManagement/home.htm[Vault] can be used as a Spring property source for Vault secrets, and as an application bean for creating, updating, listing, and deleting secrets from a Vault.
88

9-
Maven coordinates, using <<getting-started.adoc#bill-of-materials, Spring Cloud OCI BOM>>:
9+
Maven coordinates:
1010

1111
[source,xml]
1212
----

0 commit comments

Comments
 (0)