Commit 5effa7a5 authored by Daniel García's avatar Daniel García
Browse files

Update doc format

parent ddc06109
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -119,14 +119,14 @@ A NetApp development running as a Provider would typically follow this process s
      provider = CAPIFProviderConnector(config_file=utilities.get_config_file())
    ```

2. **Onboard the Provider:**
2. **Onboard the Provider:** \
    Register the provider with the CAPIF system to enable the publication of APIs:

    ```python
      provider.onboard_provider()
    ```

3. **Prepare API details:**
3. **Prepare API details:** \
   Locate the provider API details in the username folder. Choose the APF (Application Programming Function) and AEFs (Application Enabling Functions) identifiers, and fulfill the publish_req structure and the api_description_path:

<p align="center">
@@ -134,7 +134,7 @@ A NetApp development running as a Provider would typically follow this process s
  <img src="./doc/images/publish_req-example.png" alt="config-example"  width="400"/>
</p>

4. **Publish the services:**
4. **Publish the services:** \
   Use the publish_services() method to register the APIs with the CAPIF framework:

    ```python