@@ -137,12 +137,7 @@ null, p_action varchar2 default 'create', p_ocid varchar2 default null)`
137137 - ` p_ocid ` - the ocid of the object to be updated.
138138 - ` p_body ` - the JSON CLOB body for the instance update request.
139139 - Return Value: The response from the API as a CLOB.
140- 5 . ` IOT_OBJECTS.instance_get_content(p_ocid varchar2) return clob; `
141- - Description: Calls REST API to retrieve the content from an instance.
142- - Parameters:
143- - ` p_ocid ` - the ocid of the instance to retrieve the content.
144- - Return Value: The response from the API as a CLOB.
145- 6 . `IOT_OBJECTS.model_api_body(p_iot_domain_ocid varchar2 default null,
140+ 5 . `IOT_OBJECTS.model_api_body(p_iot_domain_ocid varchar2 default null,
146141p_description varchar2 default null, p_display_name varchar2, p_context
147142varchar2, p_contents clob, p_freeform_tags clob default null, p_dtdl_id
148143varchar2 default null, p_ocid varchar2 default null)`
@@ -157,7 +152,7 @@ varchar2 default null, p_ocid varchar2 default null)`
157152 - ` p_dtdl_id ` - the DTDL ID (optional).
158153 - ` p_ocid ` - ocid of object when updating or deleting.
159154 - Return Value: A JSON CLOB representing the model API body.
160- 7 . `IOT_OBJECTS.model_cli(p_iot_domain_ocid varchar2 default null,
155+ 6 . `IOT_OBJECTS.model_cli(p_iot_domain_ocid varchar2 default null,
161156p_description varchar2 default null, p_display_name varchar2, p_context
162157varchar2, p_contents clob, p_freeform_tags clob default null, p_dtdl_id
163158varchar2 default null, p_action varchar2 default 'create', p_ocid varchar2
@@ -174,18 +169,18 @@ default null)`
174169 - ` p_action ` - operation preformed 'create' or 'update'.
175170 - ` p_ocid ` - ocid of object when updating or deleting.
176171 - Return Value: A CLOB representing the CLI command.
177- 8 . ` IOT_OBJECTS.create_model(p_body clob) `
172+ 7 . ` IOT_OBJECTS.create_model(p_body clob) `
178173 - Description: Calls the REST API to create a digital twin model.
179174 - Parameters:
180175 - ` p_body ` - the JSON CLOB body for the model creation request.
181176 - Return Value: The response from the API as a CLOB.
182- 9 . ` IOT_OBJECTS.update_model(p_ocid varchar2, p_body clob) return clob; `
177+ 8 . ` IOT_OBJECTS.update_model(p_ocid varchar2, p_body clob) return clob; `
183178 - Description: Calls the REST API to update a digital twin model.
184179 - Parameters:
185180 - ` p_ocid ` - the ocid of the object to be updated.
186181 - ` p_body ` - the JSON CLOB body for the model update request.
187182 - Return Value: The response from the API as a CLOB.
188- 10 . `IOT_OBJECTS.adapter_api_body(p_iot_domain_ocid varchar2 default null,
183+ 9 . `IOT_OBJECTS.adapter_api_body(p_iot_domain_ocid varchar2 default null,
189184p_dt_model_ocid varchar2, p_display_name varchar2, p_description varchar2
190185default null`
191186 - Description: Constructs a JSON API payload for digital twin adapter
@@ -196,7 +191,7 @@ default null`
196191 - ` p_display_name ` - the display name.
197192 - ` p_description ` - the description (optional).
198193 - Return Value: A JSON CLOB representing the adapter API body.
199- 11 . `IOT_OBJECTS.adapter_cli(p_iot_domain_ocid varchar2 default null,
194+ 10 . `IOT_OBJECTS.adapter_cli(p_iot_domain_ocid varchar2 default null,
200195p_dt_model_ocid varchar2, p_display_name varchar2, p_description varchar2
201196default null, p_action varchar2 default 'create', p_ocid varchar2 default
202197null)`
@@ -209,18 +204,18 @@ null)`
209204 - ` p_action ` - operation preformed 'create', 'update', or 'delete'.
210205 - ` p_ocid ` - ocid of object when updating or deleting.
211206 - Return Value: A CLOB representing the CLI command.
212- 12 . ` IOT_OBJECTS.create_adapter(p_body clob) `
207+ 11 . ` IOT_OBJECTS.create_adapter(p_body clob) `
213208 - Description: Calls the REST API to create a digital twin adapter.
214209 - Parameters:
215210 - ` p_body ` - the JSON CLOB body for the adapter creation request.
216211 - Return Value: The response from the API as a CLOB.
217- 13 . ` IOT_OBJECTS.update_adapter(p_ocid varchar2, p_body clob) return clob; `
212+ 12 . ` IOT_OBJECTS.update_adapter(p_ocid varchar2, p_body clob) return clob; `
218213 - Description: Calls the REST API to update a digital twin adapter.
219214 - Parameters:
220215 - ` p_ocid ` - the ocid of the object to be updated.
221216 - ` p_body ` - the JSON CLOB body for the adapter update request.
222217 - Return Value: The response from the API as a CLOB.
223- 14 . ` IOT_OBJECTS.delete_object(p_object_ocid varchar2) `
218+ 13 . ` IOT_OBJECTS.delete_object(p_object_ocid varchar2) `
224219 - Description: Calls the REST API to delete a digital twin object.
225220 - Parameters:
226221 - ` p_object_ocid ` - the OCID of the object to be deleted.
0 commit comments