F5 Programmability Training > Class 1: Introduction to Automation & Orchestration > Module 1: Imperative Automation with the BIG-IP iControl REST API Source | Edit on

Lab 1.7: Build a Basic LTM Config using REST Transactions

digraph breadcrumb { rankdir="LR" ranksep=.4 node [fontsize=10,style="rounded,filled",shape=box,color=gray72,margin="0.05,0.05",height=0.1] fontsize = 10 labeljust="l" subgraph cluster_provider { style = "rounded,filled" color = lightgrey height = .75 label = "BIG-IP" basics [label="REST Basics",color="palegreen"] authentication [label="Authentication",color="palegreen"] globalsettings [label="Global Settings",color="palegreen"] networking [label="Networking",color="palegreen"] clustering [label="Clustering",color="palegreen"] transactions [label="Transactions",color="steelblue1"] basics -> authentication -> globalsettings -> networking -> clustering -> transactions } }

In this lab we will build a basic LTM Config using iControl REST API Transactions.

Task 1 - Create a Transaction

Transactions are very useful in cases where you would like to have discrete REST operations to act as a batch operation. As a result, the nature of a transaction is that either all the operations succeed or none of them do (all-or-nothing). This is very useful when we are creating a configuration that is linked together because it allows roll back of operations in case one fails. All the commands issued are queued one after the other in the transaction. We will also review how to change the order of a queued command or remove a single command from the queued list before committing.

Note

Transactions are essential to ensure that an Imperative process is Atomic in nature.

Warning

Transactions have a default timeout of 120 seconds. Taking longer than the timeout period to execute a transaction will result in automatic deletion of the transaction. To avoid having to redo the steps in this task, please first read through the steps below and execute each of them in a timely manner.

Perform the following steps to complete this task:

  1. Expand the Lab 1.7 - Build a Basic LTM Config using Transactions folder in the Postman collection:

    lab-7-1

  2. Click the Step 1: Create a Transaction request. Examine the URL and JSON Body. We will send a POST to the /mgmt/tm/transaction endpoint with an empty JSON body to create a new transaction.

    lab-7-2

  3. Click the Send button to send the request. Examine the response and find the transId attribute. Additionally, notice that there are timeouts for both the submission of the transaction and how long it would take to execute. Please be aware that upon exceeding the timeoutSeconds period, the transId will be silently removed:

    lab-7-3

    The transId value has been automatically populated for you in the bigip_transaction_id environment variable:

    lab-7-4

  4. Click the Step 2: Add to Transaction: Create a HTTP Monitor request in the folder. This request is similar to a non-transaction enabled request in terms of the POST request method, URI and JSON body. The difference is that, a header named X-F5-REST-Coordination-Id with the value of the transId attribute is added to the transaction:

    lab-7-5

  5. Click the Send button and examine the response.

  6. Examine and click Send on Steps 3-6 in the folder.

  7. Click Step 7: View the Transaction Queue. Examine the request type and URI and click Send. This request allows you to see the current list of ordered commands in the transaction.

Task 2 - Modify a Transaction

  1. Click the Step 8: View Queued Command 4 from Transaction request in the folder. Examine the request method and URI. We will GET command number 4 from the transaction queue.

    lab-7-7

  2. Click the Step 9: Change Eval Order 4 -> 1 request in the folder. Examine the request method, URI, JSON body, then click Send. We will PATCH our transaction resource and change the value of the evalOrder attribute from 4 to 1 to move to the first position of the transaction queue:

    lab-7-8

    Note

    Requests in the ordered transaction queue must obey the order of operations present in the underlying BIG-IP system.

    Warning

    When sending the Header X-F5-REST-Coordination-Id, the system assumes that you want to ADD an entry in the transaction queue. You MUST remove this header if you want to issue any other transaction queue changes (such as deleting an entry from the queue, changing the order, or committing a transaction). If you fail to remove the header, the system will respond with a 400 HTTP error code with the following error text:

    "message": "Transaction XXXXX operation .... is not allowed to be added to transaction."

  3. Click the Step 10: View the Transaction Queue Changes request in the folder. Verify that command number 4 has moved into position 1 and the order of all other commands has been updated accordingly.

Task 3 - Commit a Transaction

  1. Click the Step 11: Commit the Transaction request in the folder. Examine the request type, URI and JSON body. We will PATCH our transaction resource and change the value of the state attribute to submit the transaction:

    lab-7-6

  2. Click the Send button and examine the response. The state may already be COMPLETED, however, it’s a good practice to explicitly check for this.

  3. Click the Step 12: View the Transaction Status request in the folder and click the Send button. Verify that the state of the transaction is COMPLETED

  4. You can verify the configuration was created on the BIG-IP device via the BIG-IP A GUI at https://10.1.1.10

  5. Verify that the virtual server works by opening http://10.1.20.120 in Chrome web browser