diff --git a/Examples/Alias Record/README.md b/Examples/Alias Record/README.md index f896ed3c..4e749808 100644 --- a/Examples/Alias Record/README.md +++ b/Examples/Alias Record/README.md @@ -1,7 +1,7 @@ # **Example Alias Record Workflows** ## Add, Delete, and Update Alias Records -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** Configuration, View, Zone, Block, Network, and Host Record previously created in Address Manager
**Description/Example Usage:** The Alias (CNAME) Record requires a name, linked record zone, and a linked Host Record. Using the Alias Record workflow, you can add, delete, or update Alias (CNAME) Records in a zone. This workflow is ideal for self-service customers using the BlueCat Gateway user interface and for IPAM or DNS administrators to help reduce the repetition usually associated with daily record management. diff --git a/Examples/Alias Record/__init__.py b/Examples/Alias Record/__init__.py index 58a9a6b0..28607529 100644 --- a/Examples/Alias Record/__init__.py +++ b/Examples/Alias Record/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow diff --git a/Examples/Alias Record/add_alias_record/__init__.py b/Examples/Alias Record/add_alias_record/__init__.py index b73a2a16..c271cf4b 100644 --- a/Examples/Alias Record/add_alias_record/__init__.py +++ b/Examples/Alias Record/add_alias_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Alias Record/add_alias_record/add_alias_record_form.py b/Examples/Alias Record/add_alias_record/add_alias_record_form.py index ceb22fe8..c0d573b7 100644 --- a/Examples/Alias Record/add_alias_record/add_alias_record_form.py +++ b/Examples/Alias Record/add_alias_record/add_alias_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Alias Record/add_alias_record/add_alias_record_page.py b/Examples/Alias Record/add_alias_record/add_alias_record_page.py index 8e4bb9d8..6a1d3a2d 100644 --- a/Examples/Alias Record/add_alias_record/add_alias_record_page.py +++ b/Examples/Alias Record/add_alias_record/add_alias_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Alias Record/add_alias_record/css/add_alias_record_page.css b/Examples/Alias Record/add_alias_record/css/add_alias_record_page.css index 7246707c..f3eb396c 100644 --- a/Examples/Alias Record/add_alias_record/css/add_alias_record_page.css +++ b/Examples/Alias Record/add_alias_record/css/add_alias_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Alias Record/add_alias_record/js/add_alias_record_page.js b/Examples/Alias Record/add_alias_record/js/add_alias_record_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/Alias Record/add_alias_record/js/add_alias_record_page.js +++ b/Examples/Alias Record/add_alias_record/js/add_alias_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Alias Record/add_alias_record/templates/add_alias_record_page.html b/Examples/Alias Record/add_alias_record/templates/add_alias_record_page.html index d80cdf2d..e89c8f11 100644 --- a/Examples/Alias Record/add_alias_record/templates/add_alias_record_page.html +++ b/Examples/Alias Record/add_alias_record/templates/add_alias_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Alias Record/delete_alias_record/__init__.py b/Examples/Alias Record/delete_alias_record/__init__.py index 1bd6cfa9..101763e8 100644 --- a/Examples/Alias Record/delete_alias_record/__init__.py +++ b/Examples/Alias Record/delete_alias_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Alias Record/delete_alias_record/css/delete_alias_record_page.css b/Examples/Alias Record/delete_alias_record/css/delete_alias_record_page.css index 7246707c..f3eb396c 100644 --- a/Examples/Alias Record/delete_alias_record/css/delete_alias_record_page.css +++ b/Examples/Alias Record/delete_alias_record/css/delete_alias_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Alias Record/delete_alias_record/delete_alias_record_form.py b/Examples/Alias Record/delete_alias_record/delete_alias_record_form.py index aedee6fc..c83df5d5 100644 --- a/Examples/Alias Record/delete_alias_record/delete_alias_record_form.py +++ b/Examples/Alias Record/delete_alias_record/delete_alias_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Alias Record/delete_alias_record/delete_alias_record_page.py b/Examples/Alias Record/delete_alias_record/delete_alias_record_page.py index d738f3ec..2212b396 100644 --- a/Examples/Alias Record/delete_alias_record/delete_alias_record_page.py +++ b/Examples/Alias Record/delete_alias_record/delete_alias_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Alias Record/delete_alias_record/js/delete_alias_record_page.js b/Examples/Alias Record/delete_alias_record/js/delete_alias_record_page.js index eea82ee7..4065ac3d 100644 --- a/Examples/Alias Record/delete_alias_record/js/delete_alias_record_page.js +++ b/Examples/Alias Record/delete_alias_record/js/delete_alias_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Alias Record/delete_alias_record/templates/delete_alias_record_page.html b/Examples/Alias Record/delete_alias_record/templates/delete_alias_record_page.html index 288fa0a7..2ed1fc6b 100644 --- a/Examples/Alias Record/delete_alias_record/templates/delete_alias_record_page.html +++ b/Examples/Alias Record/delete_alias_record/templates/delete_alias_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Alias Record/update_alias_record/__init__.py b/Examples/Alias Record/update_alias_record/__init__.py index 9a000741..03f41b2a 100644 --- a/Examples/Alias Record/update_alias_record/__init__.py +++ b/Examples/Alias Record/update_alias_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Alias Record/update_alias_record/css/update_alias_record_page.css b/Examples/Alias Record/update_alias_record/css/update_alias_record_page.css index c150c076..d6aa978f 100644 --- a/Examples/Alias Record/update_alias_record/css/update_alias_record_page.css +++ b/Examples/Alias Record/update_alias_record/css/update_alias_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Alias Record/update_alias_record/js/update_alias_record_page.js b/Examples/Alias Record/update_alias_record/js/update_alias_record_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/Alias Record/update_alias_record/js/update_alias_record_page.js +++ b/Examples/Alias Record/update_alias_record/js/update_alias_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Alias Record/update_alias_record/templates/update_alias_record_page.html b/Examples/Alias Record/update_alias_record/templates/update_alias_record_page.html index 7272b561..604c6842 100644 --- a/Examples/Alias Record/update_alias_record/templates/update_alias_record_page.html +++ b/Examples/Alias Record/update_alias_record/templates/update_alias_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Alias Record/update_alias_record/update_alias_record_form.py b/Examples/Alias Record/update_alias_record/update_alias_record_form.py index 1fc4fdde..5f17ea5b 100644 --- a/Examples/Alias Record/update_alias_record/update_alias_record_form.py +++ b/Examples/Alias Record/update_alias_record/update_alias_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Alias Record/update_alias_record/update_alias_record_page.py b/Examples/Alias Record/update_alias_record/update_alias_record_page.py index 06cc7289..8fbc32d5 100644 --- a/Examples/Alias Record/update_alias_record/update_alias_record_page.py +++ b/Examples/Alias Record/update_alias_record/update_alias_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Deployment/__init__.py b/Examples/Deployment/__init__.py index 58a9a6b0..28607529 100644 --- a/Examples/Deployment/__init__.py +++ b/Examples/Deployment/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow diff --git a/Examples/Deployment/selective_deployment/README.md b/Examples/Deployment/selective_deployment/README.md index 83e470b7..5d5b17ca 100644 --- a/Examples/Deployment/selective_deployment/README.md +++ b/Examples/Deployment/selective_deployment/README.md @@ -1,7 +1,7 @@ # **Example Selective Deployment Workflow** ## Select a DNS record for deployment -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
### Dependencies diff --git a/Examples/Deployment/selective_deployment/Selective_Deployment.txt b/Examples/Deployment/selective_deployment/Selective_Deployment.txt index 2655a232..b5cf1d14 100644 --- a/Examples/Deployment/selective_deployment/Selective_Deployment.txt +++ b/Examples/Deployment/selective_deployment/Selective_Deployment.txt @@ -1,4 +1,4 @@ -BlueCat Gateway 24.2.0 +BlueCat Gateway 24.3.0 Example Selective deployment workflows Requirements: diff --git a/Examples/Deployment/selective_deployment/__init__.py b/Examples/Deployment/selective_deployment/__init__.py index 16f27206..3deb25b9 100644 --- a/Examples/Deployment/selective_deployment/__init__.py +++ b/Examples/Deployment/selective_deployment/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin diff --git a/Examples/Deployment/selective_deployment/component_logic.py b/Examples/Deployment/selective_deployment/component_logic.py index c0cea292..352018c8 100644 --- a/Examples/Deployment/selective_deployment/component_logic.py +++ b/Examples/Deployment/selective_deployment/component_logic.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """This file is responsible for populating the out put table in selective deploy""" diff --git a/Examples/Deployment/selective_deployment/css/selective_deployment_page.css b/Examples/Deployment/selective_deployment/css/selective_deployment_page.css index d12f5b58..075d77e1 100644 --- a/Examples/Deployment/selective_deployment/css/selective_deployment_page.css +++ b/Examples/Deployment/selective_deployment/css/selective_deployment_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Deployment/selective_deployment/js/selective_deployment_page.js b/Examples/Deployment/selective_deployment/js/selective_deployment_page.js index 40e56760..bfa80b0a 100644 --- a/Examples/Deployment/selective_deployment/js/selective_deployment_page.js +++ b/Examples/Deployment/selective_deployment/js/selective_deployment_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Deployment/selective_deployment/selective_deployment_form.py b/Examples/Deployment/selective_deployment/selective_deployment_form.py index 8e6307a3..6c2dfb8d 100644 --- a/Examples/Deployment/selective_deployment/selective_deployment_form.py +++ b/Examples/Deployment/selective_deployment/selective_deployment_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """this file is used to add different elements into the page""" diff --git a/Examples/Deployment/selective_deployment/selective_deployment_page.py b/Examples/Deployment/selective_deployment/selective_deployment_page.py index fe3d99f0..64271996 100644 --- a/Examples/Deployment/selective_deployment/selective_deployment_page.py +++ b/Examples/Deployment/selective_deployment/selective_deployment_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """this file is responsible to selective deploying certain dns records diff --git a/Examples/Deployment/selective_deployment/templates/selective_deployment_page.html b/Examples/Deployment/selective_deployment/templates/selective_deployment_page.html index b6b89c18..ef181540 100644 --- a/Examples/Deployment/selective_deployment/templates/selective_deployment_page.html +++ b/Examples/Deployment/selective_deployment/templates/selective_deployment_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Host Record/README.md b/Examples/Host Record/README.md index 027ed695..76676423 100644 --- a/Examples/Host Record/README.md +++ b/Examples/Host Record/README.md @@ -1,7 +1,7 @@ # **Example Host Record Workflows** ## Add, Delete, and Update Host Records -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** Configuration, View, Zone, Block, and Network previously created in Address Manager
**Description/Example Usage:** The Host (A) Record designates an IP address for a device. A new Host Record requires a name and an IP address. Using the Host Record workflow, you can add, delete, and update Host Records in a zone. This workflow is ideal for self-service customers using the BlueCat Gateway user interface and for IPAM or DNS administrators to help reduce the repetition usually associated with daily record management. diff --git a/Examples/Host Record/__init__.py b/Examples/Host Record/__init__.py index 58a9a6b0..28607529 100644 --- a/Examples/Host Record/__init__.py +++ b/Examples/Host Record/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow diff --git a/Examples/Host Record/add_host_record/__init__.py b/Examples/Host Record/add_host_record/__init__.py index 9be5d3ae..c572a6ae 100644 --- a/Examples/Host Record/add_host_record/__init__.py +++ b/Examples/Host Record/add_host_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Host Record/add_host_record/add_host_record_form.py b/Examples/Host Record/add_host_record/add_host_record_form.py index 855dce39..3dfaff8e 100644 --- a/Examples/Host Record/add_host_record/add_host_record_form.py +++ b/Examples/Host Record/add_host_record/add_host_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Host Record/add_host_record/add_host_record_page.py b/Examples/Host Record/add_host_record/add_host_record_page.py index 5b848b69..f55df8e3 100644 --- a/Examples/Host Record/add_host_record/add_host_record_page.py +++ b/Examples/Host Record/add_host_record/add_host_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Host Record/add_host_record/css/add_host_record_page.css b/Examples/Host Record/add_host_record/css/add_host_record_page.css index 7246707c..f3eb396c 100644 --- a/Examples/Host Record/add_host_record/css/add_host_record_page.css +++ b/Examples/Host Record/add_host_record/css/add_host_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Host Record/add_host_record/js/add_host_record_page.js b/Examples/Host Record/add_host_record/js/add_host_record_page.js index 0053dce9..36c66841 100644 --- a/Examples/Host Record/add_host_record/js/add_host_record_page.js +++ b/Examples/Host Record/add_host_record/js/add_host_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Host Record/add_host_record/templates/add_host_record_page.html b/Examples/Host Record/add_host_record/templates/add_host_record_page.html index 0f29f2c3..b2f26d4b 100644 --- a/Examples/Host Record/add_host_record/templates/add_host_record_page.html +++ b/Examples/Host Record/add_host_record/templates/add_host_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Host Record/delete_host_record/__init__.py b/Examples/Host Record/delete_host_record/__init__.py index 602a3eb6..51560f0b 100644 --- a/Examples/Host Record/delete_host_record/__init__.py +++ b/Examples/Host Record/delete_host_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Host Record/delete_host_record/css/delete_host_record_page.css b/Examples/Host Record/delete_host_record/css/delete_host_record_page.css index 7246707c..f3eb396c 100644 --- a/Examples/Host Record/delete_host_record/css/delete_host_record_page.css +++ b/Examples/Host Record/delete_host_record/css/delete_host_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Host Record/delete_host_record/delete_host_record_form.py b/Examples/Host Record/delete_host_record/delete_host_record_form.py index 4e9ec7ec..07837418 100644 --- a/Examples/Host Record/delete_host_record/delete_host_record_form.py +++ b/Examples/Host Record/delete_host_record/delete_host_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Host Record/delete_host_record/delete_host_record_page.py b/Examples/Host Record/delete_host_record/delete_host_record_page.py index 1a79ba4f..4fb70f5a 100644 --- a/Examples/Host Record/delete_host_record/delete_host_record_page.py +++ b/Examples/Host Record/delete_host_record/delete_host_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Host Record/delete_host_record/js/delete_host_record_page.js b/Examples/Host Record/delete_host_record/js/delete_host_record_page.js index 94b00f17..92d83a80 100644 --- a/Examples/Host Record/delete_host_record/js/delete_host_record_page.js +++ b/Examples/Host Record/delete_host_record/js/delete_host_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Host Record/delete_host_record/templates/delete_host_record_page.html b/Examples/Host Record/delete_host_record/templates/delete_host_record_page.html index 4a6eadf4..00a7f247 100644 --- a/Examples/Host Record/delete_host_record/templates/delete_host_record_page.html +++ b/Examples/Host Record/delete_host_record/templates/delete_host_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Host Record/update_host_record/__init__.py b/Examples/Host Record/update_host_record/__init__.py index 68b96f75..cfe11ac5 100644 --- a/Examples/Host Record/update_host_record/__init__.py +++ b/Examples/Host Record/update_host_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Host Record/update_host_record/css/update_host_record_page.css b/Examples/Host Record/update_host_record/css/update_host_record_page.css index 7246707c..f3eb396c 100644 --- a/Examples/Host Record/update_host_record/css/update_host_record_page.css +++ b/Examples/Host Record/update_host_record/css/update_host_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Host Record/update_host_record/js/update_host_record_page.js b/Examples/Host Record/update_host_record/js/update_host_record_page.js index 0242ea85..3c5159c4 100644 --- a/Examples/Host Record/update_host_record/js/update_host_record_page.js +++ b/Examples/Host Record/update_host_record/js/update_host_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Host Record/update_host_record/templates/update_host_record_page.html b/Examples/Host Record/update_host_record/templates/update_host_record_page.html index 6382895e..20c5da30 100644 --- a/Examples/Host Record/update_host_record/templates/update_host_record_page.html +++ b/Examples/Host Record/update_host_record/templates/update_host_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Host Record/update_host_record/update_host_record_form.py b/Examples/Host Record/update_host_record/update_host_record_form.py index 18b296df..2b656dd8 100644 --- a/Examples/Host Record/update_host_record/update_host_record_form.py +++ b/Examples/Host Record/update_host_record/update_host_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Host Record/update_host_record/update_host_record_page.py b/Examples/Host Record/update_host_record/update_host_record_page.py index 607b93e4..7b2499d2 100644 --- a/Examples/Host Record/update_host_record/update_host_record_page.py +++ b/Examples/Host Record/update_host_record/update_host_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/README.md b/Examples/IPv4 Address/README.md index d91388f5..79bf1ea5 100644 --- a/Examples/IPv4 Address/README.md +++ b/Examples/IPv4 Address/README.md @@ -1,7 +1,7 @@ # **Example IPv4 Address Workflows** ## Add DHCP and static IPv4 addresses, Delete, and Update IPv4 addresses -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** Configuration, View, Zone, Block, and Network previously created in Address Manager
**Description/Example Usage:** Using the IPv4 address workflow, you can add dynamic or static IPv4 addresses to a zone, and delete and update current IPv4 addresses in a zone. This workflow is ideal for self-service customers using the BlueCat Gateway user interface and for IPAM or DNS administrators to help reduce the repetition usually associated with daily record management. diff --git a/Examples/IPv4 Address/__init__.py b/Examples/IPv4 Address/__init__.py index 58a9a6b0..28607529 100644 --- a/Examples/IPv4 Address/__init__.py +++ b/Examples/IPv4 Address/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow diff --git a/Examples/IPv4 Address/add_dhcp_ip4_address/__init__.py b/Examples/IPv4 Address/add_dhcp_ip4_address/__init__.py index cdf53390..4aeb40eb 100644 --- a/Examples/IPv4 Address/add_dhcp_ip4_address/__init__.py +++ b/Examples/IPv4 Address/add_dhcp_ip4_address/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_form.py b/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_form.py index b6f38001..a51ae948 100644 --- a/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_form.py +++ b/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_page.py b/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_page.py index 1de2ce49..01f9f27c 100644 --- a/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_page.py +++ b/Examples/IPv4 Address/add_dhcp_ip4_address/add_dhcp_ip4_address_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/add_dhcp_ip4_address/css/add_dhcp_ip4_address_page.css b/Examples/IPv4 Address/add_dhcp_ip4_address/css/add_dhcp_ip4_address_page.css index 7246707c..f3eb396c 100644 --- a/Examples/IPv4 Address/add_dhcp_ip4_address/css/add_dhcp_ip4_address_page.css +++ b/Examples/IPv4 Address/add_dhcp_ip4_address/css/add_dhcp_ip4_address_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/IPv4 Address/add_dhcp_ip4_address/js/add_dhcp_ip4_address_page.js b/Examples/IPv4 Address/add_dhcp_ip4_address/js/add_dhcp_ip4_address_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/IPv4 Address/add_dhcp_ip4_address/js/add_dhcp_ip4_address_page.js +++ b/Examples/IPv4 Address/add_dhcp_ip4_address/js/add_dhcp_ip4_address_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/IPv4 Address/add_dhcp_ip4_address/templates/add_dhcp_ip4_address_page.html b/Examples/IPv4 Address/add_dhcp_ip4_address/templates/add_dhcp_ip4_address_page.html index 6d59a47d..3114cb0b 100644 --- a/Examples/IPv4 Address/add_dhcp_ip4_address/templates/add_dhcp_ip4_address_page.html +++ b/Examples/IPv4 Address/add_dhcp_ip4_address/templates/add_dhcp_ip4_address_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/IPv4 Address/add_static_ip4_address/__init__.py b/Examples/IPv4 Address/add_static_ip4_address/__init__.py index 38de060b..2805e7d0 100644 --- a/Examples/IPv4 Address/add_static_ip4_address/__init__.py +++ b/Examples/IPv4 Address/add_static_ip4_address/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_form.py b/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_form.py index 0a500d8a..70f89b10 100644 --- a/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_form.py +++ b/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_page.py b/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_page.py index 02e071be..36c7ac38 100644 --- a/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_page.py +++ b/Examples/IPv4 Address/add_static_ip4_address/add_static_ip4_address_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/add_static_ip4_address/css/add_static_ip4_address_page.css b/Examples/IPv4 Address/add_static_ip4_address/css/add_static_ip4_address_page.css index a834954a..d24fb7b0 100644 --- a/Examples/IPv4 Address/add_static_ip4_address/css/add_static_ip4_address_page.css +++ b/Examples/IPv4 Address/add_static_ip4_address/css/add_static_ip4_address_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/IPv4 Address/add_static_ip4_address/js/add_static_ip4_address_page.js b/Examples/IPv4 Address/add_static_ip4_address/js/add_static_ip4_address_page.js index 6f82deba..f6552ff9 100644 --- a/Examples/IPv4 Address/add_static_ip4_address/js/add_static_ip4_address_page.js +++ b/Examples/IPv4 Address/add_static_ip4_address/js/add_static_ip4_address_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/IPv4 Address/add_static_ip4_address/templates/add_static_ip4_address_page.html b/Examples/IPv4 Address/add_static_ip4_address/templates/add_static_ip4_address_page.html index 9858002c..25cc5146 100644 --- a/Examples/IPv4 Address/add_static_ip4_address/templates/add_static_ip4_address_page.html +++ b/Examples/IPv4 Address/add_static_ip4_address/templates/add_static_ip4_address_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/IPv4 Address/delete_ip4_address/__init__.py b/Examples/IPv4 Address/delete_ip4_address/__init__.py index 580d50b1..60e4ac53 100644 --- a/Examples/IPv4 Address/delete_ip4_address/__init__.py +++ b/Examples/IPv4 Address/delete_ip4_address/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/IPv4 Address/delete_ip4_address/css/delete_ip4_address_page.css b/Examples/IPv4 Address/delete_ip4_address/css/delete_ip4_address_page.css index 9dd71721..7258a28a 100644 --- a/Examples/IPv4 Address/delete_ip4_address/css/delete_ip4_address_page.css +++ b/Examples/IPv4 Address/delete_ip4_address/css/delete_ip4_address_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_form.py b/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_form.py index 8dfb50f8..914517bd 100644 --- a/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_form.py +++ b/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_page.py b/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_page.py index 69caf55e..1adfc42b 100644 --- a/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_page.py +++ b/Examples/IPv4 Address/delete_ip4_address/delete_ip4_address_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/delete_ip4_address/js/delete_ip4_address_page.js b/Examples/IPv4 Address/delete_ip4_address/js/delete_ip4_address_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/IPv4 Address/delete_ip4_address/js/delete_ip4_address_page.js +++ b/Examples/IPv4 Address/delete_ip4_address/js/delete_ip4_address_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/IPv4 Address/delete_ip4_address/templates/delete_ip4_address_page.html b/Examples/IPv4 Address/delete_ip4_address/templates/delete_ip4_address_page.html index 8ebc8de2..4ed0c700 100644 --- a/Examples/IPv4 Address/delete_ip4_address/templates/delete_ip4_address_page.html +++ b/Examples/IPv4 Address/delete_ip4_address/templates/delete_ip4_address_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/IPv4 Address/update_ip4_address/__init__.py b/Examples/IPv4 Address/update_ip4_address/__init__.py index aa7b0934..1f6d68e4 100644 --- a/Examples/IPv4 Address/update_ip4_address/__init__.py +++ b/Examples/IPv4 Address/update_ip4_address/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/IPv4 Address/update_ip4_address/css/update_ip4_address_page.css b/Examples/IPv4 Address/update_ip4_address/css/update_ip4_address_page.css index 7246707c..f3eb396c 100644 --- a/Examples/IPv4 Address/update_ip4_address/css/update_ip4_address_page.css +++ b/Examples/IPv4 Address/update_ip4_address/css/update_ip4_address_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/IPv4 Address/update_ip4_address/js/update_ip4_address_page.js b/Examples/IPv4 Address/update_ip4_address/js/update_ip4_address_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/IPv4 Address/update_ip4_address/js/update_ip4_address_page.js +++ b/Examples/IPv4 Address/update_ip4_address/js/update_ip4_address_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/IPv4 Address/update_ip4_address/templates/update_ip4_address_page.html b/Examples/IPv4 Address/update_ip4_address/templates/update_ip4_address_page.html index b818959f..f545dc3b 100644 --- a/Examples/IPv4 Address/update_ip4_address/templates/update_ip4_address_page.html +++ b/Examples/IPv4 Address/update_ip4_address/templates/update_ip4_address_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/IPv4 Address/update_ip4_address/update_ip4_address_form.py b/Examples/IPv4 Address/update_ip4_address/update_ip4_address_form.py index 96156770..d2d98009 100644 --- a/Examples/IPv4 Address/update_ip4_address/update_ip4_address_form.py +++ b/Examples/IPv4 Address/update_ip4_address/update_ip4_address_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/IPv4 Address/update_ip4_address/update_ip4_address_page.py b/Examples/IPv4 Address/update_ip4_address/update_ip4_address_page.py index 48a7c1f5..7a81f346 100644 --- a/Examples/IPv4 Address/update_ip4_address/update_ip4_address_page.py +++ b/Examples/IPv4 Address/update_ip4_address/update_ip4_address_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Text Record/README.md b/Examples/Text Record/README.md index 823a82ec..0cfa055f 100644 --- a/Examples/Text Record/README.md +++ b/Examples/Text Record/README.md @@ -1,7 +1,7 @@ # **Example Text Record Workflows** ## Add, Delete, and Update Text Records -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** Configuration, View, and Zone previously created in Address Manager
**Description/Example Usage:** The Text Record includes name and text information, and associates arbitrary text with a host name. In addition, the Text Record is used to support record types such as those used in Sender Policy Framework (SPF) e-mail validation. Using the Text Record workflow, you can add, delete, or update Text Records in a zone. This workflow is ideal for self-service customers using the BlueCat Gateway user interface and for IPAM or DNS administrators to help reduce the repetition usually associated with daily record management. diff --git a/Examples/Text Record/__init__.py b/Examples/Text Record/__init__.py index 58a9a6b0..28607529 100644 --- a/Examples/Text Record/__init__.py +++ b/Examples/Text Record/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow diff --git a/Examples/Text Record/add_text_record/__init__.py b/Examples/Text Record/add_text_record/__init__.py index b736afa8..872bbe0f 100644 --- a/Examples/Text Record/add_text_record/__init__.py +++ b/Examples/Text Record/add_text_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Text Record/add_text_record/add_text_record_form.py b/Examples/Text Record/add_text_record/add_text_record_form.py index 345d8501..2d7b8731 100644 --- a/Examples/Text Record/add_text_record/add_text_record_form.py +++ b/Examples/Text Record/add_text_record/add_text_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Text Record/add_text_record/add_text_record_page.py b/Examples/Text Record/add_text_record/add_text_record_page.py index 2b554962..3e98b9f4 100644 --- a/Examples/Text Record/add_text_record/add_text_record_page.py +++ b/Examples/Text Record/add_text_record/add_text_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Text Record/add_text_record/css/add_text_record_page.css b/Examples/Text Record/add_text_record/css/add_text_record_page.css index 7246707c..f3eb396c 100644 --- a/Examples/Text Record/add_text_record/css/add_text_record_page.css +++ b/Examples/Text Record/add_text_record/css/add_text_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Text Record/add_text_record/js/add_text_record_page.js b/Examples/Text Record/add_text_record/js/add_text_record_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/Text Record/add_text_record/js/add_text_record_page.js +++ b/Examples/Text Record/add_text_record/js/add_text_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Text Record/add_text_record/templates/add_text_record_page.html b/Examples/Text Record/add_text_record/templates/add_text_record_page.html index fe694d35..bdaf6b7a 100644 --- a/Examples/Text Record/add_text_record/templates/add_text_record_page.html +++ b/Examples/Text Record/add_text_record/templates/add_text_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Text Record/delete_text_record/__init__.py b/Examples/Text Record/delete_text_record/__init__.py index 0344f8a1..9766538c 100644 --- a/Examples/Text Record/delete_text_record/__init__.py +++ b/Examples/Text Record/delete_text_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Text Record/delete_text_record/css/delete_text_record_page.css b/Examples/Text Record/delete_text_record/css/delete_text_record_page.css index b3a2346d..b7a1ef88 100644 --- a/Examples/Text Record/delete_text_record/css/delete_text_record_page.css +++ b/Examples/Text Record/delete_text_record/css/delete_text_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Text Record/delete_text_record/delete_text_record_form.py b/Examples/Text Record/delete_text_record/delete_text_record_form.py index 17fbee11..8912cee8 100644 --- a/Examples/Text Record/delete_text_record/delete_text_record_form.py +++ b/Examples/Text Record/delete_text_record/delete_text_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Text Record/delete_text_record/delete_text_record_page.py b/Examples/Text Record/delete_text_record/delete_text_record_page.py index e2f1ea90..e419e457 100644 --- a/Examples/Text Record/delete_text_record/delete_text_record_page.py +++ b/Examples/Text Record/delete_text_record/delete_text_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Text Record/delete_text_record/js/delete_text_record_page.js b/Examples/Text Record/delete_text_record/js/delete_text_record_page.js index c6296c90..04b5e9ee 100644 --- a/Examples/Text Record/delete_text_record/js/delete_text_record_page.js +++ b/Examples/Text Record/delete_text_record/js/delete_text_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Text Record/delete_text_record/templates/delete_text_record_page.html b/Examples/Text Record/delete_text_record/templates/delete_text_record_page.html index 7f7e5790..7374694a 100644 --- a/Examples/Text Record/delete_text_record/templates/delete_text_record_page.html +++ b/Examples/Text Record/delete_text_record/templates/delete_text_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Text Record/update_text_record/__init__.py b/Examples/Text Record/update_text_record/__init__.py index 67d4dbff..e5b7cbf3 100644 --- a/Examples/Text Record/update_text_record/__init__.py +++ b/Examples/Text Record/update_text_record/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/Text Record/update_text_record/css/update_text_record_page.css b/Examples/Text Record/update_text_record/css/update_text_record_page.css index b3a2346d..b7a1ef88 100644 --- a/Examples/Text Record/update_text_record/css/update_text_record_page.css +++ b/Examples/Text Record/update_text_record/css/update_text_record_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/Text Record/update_text_record/js/update_text_record_page.js b/Examples/Text Record/update_text_record/js/update_text_record_page.js index 93f1607a..dfe18f15 100644 --- a/Examples/Text Record/update_text_record/js/update_text_record_page.js +++ b/Examples/Text Record/update_text_record/js/update_text_record_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/Text Record/update_text_record/templates/update_text_record_page.html b/Examples/Text Record/update_text_record/templates/update_text_record_page.html index d21f0f29..0dfd56c1 100644 --- a/Examples/Text Record/update_text_record/templates/update_text_record_page.html +++ b/Examples/Text Record/update_text_record/templates/update_text_record_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/Text Record/update_text_record/update_text_record_form.py b/Examples/Text Record/update_text_record/update_text_record_form.py index 8b1ea959..66f17089 100644 --- a/Examples/Text Record/update_text_record/update_text_record_form.py +++ b/Examples/Text Record/update_text_record/update_text_record_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/Text Record/update_text_record/update_text_record_page.py b/Examples/Text Record/update_text_record/update_text_record_page.py index 1ee6c955..5da08290 100644 --- a/Examples/Text Record/update_text_record/update_text_record_page.py +++ b/Examples/Text Record/update_text_record/update_text_record_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/UI Components/README.md b/Examples/UI Components/README.md index 58eabea0..7f44e31f 100644 --- a/Examples/UI Components/README.md +++ b/Examples/UI Components/README.md @@ -1,7 +1,7 @@ # **Example UI Table Component Workflows** ## Search for UI Table Components -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** None
**Description/Example Usage:** The UI Table Components workflow provides an example of generating a table of search results in a UI workflow. It returns an array of entities by searching for keywords associated with objects of a specified object type. You can search for an object type using a keyword. This workflow is intended for customers to familiarize themselves with how to build a table component in their UI workflows. diff --git a/Examples/UI Components/__init__.py b/Examples/UI Components/__init__.py index 58a9a6b0..28607529 100644 --- a/Examples/UI Components/__init__.py +++ b/Examples/UI Components/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow diff --git a/Examples/UI Components/table_component/__init__.py b/Examples/UI Components/table_component/__init__.py index 26916d41..6872778c 100644 --- a/Examples/UI Components/table_component/__init__.py +++ b/Examples/UI Components/table_component/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/UI Components/table_component/component_logic.py b/Examples/UI Components/table_component/component_logic.py index 3f555286..08eee99d 100644 --- a/Examples/UI Components/table_component/component_logic.py +++ b/Examples/UI Components/table_component/component_logic.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/UI Components/table_component/css/table_component_page.css b/Examples/UI Components/table_component/css/table_component_page.css index 75cb241b..dae19116 100644 --- a/Examples/UI Components/table_component/css/table_component_page.css +++ b/Examples/UI Components/table_component/css/table_component_page.css @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow */ diff --git a/Examples/UI Components/table_component/js/table_component_page.js b/Examples/UI Components/table_component/js/table_component_page.js index ca89345f..697c8006 100644 --- a/Examples/UI Components/table_component/js/table_component_page.js +++ b/Examples/UI Components/table_component/js/table_component_page.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Example Gateway workflow // JavaScript for your page goes in here. diff --git a/Examples/UI Components/table_component/table_component_form.py b/Examples/UI Components/table_component/table_component_form.py index 597e5fd1..1faaea05 100644 --- a/Examples/UI Components/table_component/table_component_form.py +++ b/Examples/UI Components/table_component/table_component_form.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/UI Components/table_component/table_component_page.py b/Examples/UI Components/table_component/table_component_page.py index e4ba49c4..08a20dc4 100644 --- a/Examples/UI Components/table_component/table_component_page.py +++ b/Examples/UI Components/table_component/table_component_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ diff --git a/Examples/UI Components/table_component/templates/table_component_page.html b/Examples/UI Components/table_component/templates/table_component_page.html index 2125c95e..43a6edf7 100644 --- a/Examples/UI Components/table_component/templates/table_component_page.html +++ b/Examples/UI Components/table_component/templates/table_component_page.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Example Gateway workflow --> diff --git a/Examples/__init__.py b/Examples/__init__.py index c662cd91..dc61b1d9 100644 --- a/Examples/__init__.py +++ b/Examples/__init__.py @@ -13,6 +13,6 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflows diff --git a/Examples/nav_zones/README.md b/Examples/nav_zones/README.md index 99b23fcb..6fbe5149 100644 --- a/Examples/nav_zones/README.md +++ b/Examples/nav_zones/README.md @@ -2,7 +2,7 @@ ## An example workflow using both REST v1 and REST v2 -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** Configuration, View, Zone, previously created in Address Manager
**Description/Example Usage:** This workflow demonstrates an example on how a workflow can work with both REST API v1 and REST API v2 when connected to different versions of Address Manager. It retrieves the configurations on an Address Manager and based on the selection it later retrieves the views and zones. diff --git a/Examples/nav_zones/__init__.py b/Examples/nav_zones/__init__.py index a81f1b86..82cb2180 100644 --- a/Examples/nav_zones/__init__.py +++ b/Examples/nav_zones/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Gateway workflow to demonstrate use of REST API v2 client. # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/nav_zones/js/nav_zones.js b/Examples/nav_zones/js/nav_zones.js index d3fef54c..9e8663f6 100644 --- a/Examples/nav_zones/js/nav_zones.js +++ b/Examples/nav_zones/js/nav_zones.js @@ -13,8 +13,8 @@ // limitations under the License. // // By: BlueCat Networks -// Date: 2024-04-30 -// Gateway Version: 24.2.0 +// Date: 2024-06-26 +// Gateway Version: 24.3.0 // Description: Gateway workflow to demonstrate use of REST API v2 client. // JavaScript for your page goes in here. diff --git a/Examples/nav_zones/nav_zones_page.py b/Examples/nav_zones/nav_zones_page.py index fa32bb91..0bc63d43 100644 --- a/Examples/nav_zones/nav_zones_page.py +++ b/Examples/nav_zones/nav_zones_page.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Gateway workflow to demonstrate use of REST API v2 client. """ diff --git a/Examples/nav_zones/templates/nav_zones.html b/Examples/nav_zones/templates/nav_zones.html index 52aff5c5..55f05e80 100644 --- a/Examples/nav_zones/templates/nav_zones.html +++ b/Examples/nav_zones/templates/nav_zones.html @@ -13,8 +13,8 @@ limitations under the License. By: BlueCat Networks -Date: 2024-04-30 -Gateway Version: 24.2.0 +Date: 2024-06-26 +Gateway Version: 24.3.0 Description: Gateway workflow to demonstrate use of REST API v2 client. --> diff --git a/Examples/rest_endpoints/README.md b/Examples/rest_endpoints/README.md index ae974dae..15c7b527 100644 --- a/Examples/rest_endpoints/README.md +++ b/Examples/rest_endpoints/README.md @@ -1,7 +1,7 @@ # **Example REST Workflows** ## Access Gateway through scripts -**BlueCat Gateway Version:** 24.2.0 or greater
+**BlueCat Gateway Version:** 24.3.0 or greater
**BAM version:** 9.4.0 or greater
**Dependencies:** None
**Description/Example Usage:** The Rest example workflow creates non-UI based workflows. You can use this workflow if you want to access Gateway through scripts instead of the UI. This workflow is intended for customers that primary need automated workflows that will integrate with third-party systems and as such will call Gateway endpoints to execute rest workflows. diff --git a/Examples/rest_endpoints/__init__.py b/Examples/rest_endpoints/__init__.py index f6f8a162..3de8356e 100644 --- a/Examples/rest_endpoints/__init__.py +++ b/Examples/rest_endpoints/__init__.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow # pylint: disable=redefined-builtin,missing-docstring diff --git a/Examples/rest_endpoints/rest_endpoints.py b/Examples/rest_endpoints/rest_endpoints.py index 76433960..e471173d 100644 --- a/Examples/rest_endpoints/rest_endpoints.py +++ b/Examples/rest_endpoints/rest_endpoints.py @@ -13,8 +13,8 @@ # limitations under the License. # # By: BlueCat Networks -# Date: 2024-04-30 -# Gateway Version: 24.2.0 +# Date: 2024-06-26 +# Gateway Version: 24.3.0 # Description: Example Gateway workflow """ @@ -110,3 +110,19 @@ def rest_test_no_auth(): """ # Permission check is not applicable here return jsonify({"answer": 42}) + + +# +# Example of an endpoint that tests autologin for both services. +# +@route(app, "/rest_endpoints/autologin") +@util.autologin(autologin_func) +@util.rest_exception_catcher +def rest_test_user_info(): + """ + Autologin for both services + + :return: + """ + # in this case it is always executed + return jsonify({"username": g.user.get_username()})