<update> element

The <update> element contains the <parameter> and <attributes> elements in a PUT request.

Contained by:

Contains:

The <update> element must contain one <attributes> element and can contain one or more child <parameter> elements. A PUT request can contain only one <update> element.

Example

The following example updates the BAS Transaction definition with name ABCD to have values shutdown="DISABLED", isolate="YES", and dynamic="NO".
PUT http://exampledomain.com:12345/CICSSystemManagement/CICSDefinitionalTransaction/<CONTEXT>/?CRITERIA=NAME%3DABCD

   <request>
      <update>
         <attributes shutdown="DISABLED" isolate="YES" dynamic="NO" /> 
      </update>
   </request>
The following example updates the description of the CSD resource with name ABCD in group GROUP2.
PUT http://exampledomain.com:12345/CICSSystemManagement/<RESOURCE NAME>/<CONTEXT>/<SCOPE>/?CRITERIA=NAME%3DABCD&PARAMETER=CSDGROUP%28GROUP2%29

   <request>
      <update>
         <parameter name="CSD"/>
         <attributes description="updated"/> 
      </update>
   </request>