Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add return_fields parmeter to the configuration_item_info module #208

Conversation

toni-moreno
Copy link
Contributor

@toni-moreno toni-moreno commented Aug 26, 2022

SUMMARY

add return_fields parmeter to the configuration_item_info module, needed for choose only needed information It will speed considerably the response. and the returned data to process. It will be needed to build data maintentance proceses with heavily loaded classes.

Implements #100

ISSUE TYPE
  • Feature Pull Request
COMPONENT NAME

configuration_item_info

ADDITIONAL INFORMATION

Consider a data process to update info only some ci's with operational_status="opeational" , you need first query the complete class and after do something in a loop with the sys_id of each CI.

    - name: get info
      servicenow.itsm.configuration_item_info:
        sys_class_name: cmdb_ci_appl_ora_tns
        return_fields:
          - name
          - sys_id
          - operational_status
      register: result

    - name: Debug info
      debug:
        var: result

Time taken to execute this playbook with "return_fields" : 4.405 seconds

Time taken to execute this playbook without "return_fields" : 11.94 seconds ( only with 6 ci's !!!)

we can guess what will happend when exected this query on a class with 100K registers.

result with return_fields

{
        "changed": false,
        "failed": false,
        "records": [
            {
                "name": "AAACDB3-PDB21-OTHER2",
                "operational_status": "operational",
                "sys_id": "68520d8197651110968b74400153af66"
            },
            {
                "name": "AAACDB2-PDB22-KKNEW",
                "operational_status": "operational",
                "sys_id": "6a29040107a01110befff6fd7c1ed070"
            },
            {
                "name": "AAACDB1-PDB11-ABEL",
                "operational_status": "operational",
                "sys_id": "9bb1fee807241110befff6fd7c1ed089"
            },
            {
                "name": "AAACDB2-PDB22-TEST1",
                "operational_status": "operational",
                "sys_id": "d16a945e07815110befff6fd7c1ed0a4"
            },
            {
                "name": "AAACDB3-PDB21-OTHER",
                "operational_status": "operational",
                "sys_id": "f16a945e07815110befff6fd7c1ed0a7"
            },
            {
                "name": "AAACDB1-PDB12-TEST2",
                "operational_status": "operational",
                "sys_id": "fac2be2c07241110befff6fd7c1ed0a9"
            }
        ]
    }

result without return_fields

        "changed": false,
        "failed": false,
        "records": [
            {
                "asset": "",
                "asset_tag": "",
                "assigned": "",
                "assigned_to": "",
                "assignment_group": "",
                "attachments": [],
                "attestation_score": "",
                "attested": "false",
                "attested_by": "",
                "attested_date": "",
                "attributes": "",
                "business_unit": "",
                "can_print": "false",
                "category": "",
                "change_control": "",
                "checked_in": "",
                "checked_out": "",
                "cl_port": "",
                "classifier": "",
                "comments": "",
                "company": "",
                "config_directory": "",
                "config_file": "",
                "correlation_id": "",
                "cost": "",
                "cost_cc": "USD",
                "cost_center": "",
                "delivery_date": "",
                "department": "",
                "discovery_source": "",
                "dns_domain": "",
                "due": "",
                "due_in": "",
                "duplicate_of": "",
                "edition": "",
                "environment": "",
                "fault_count": "0",
                "first_discovered": "",
                "fqdn": "",
                "gl_account": "",
                "install_date": "",
                "install_directory": "",
                "install_status": "installed",
                "invoice_number": "",
                "ip_address": "",
                "is_clustered": "false",
                "justification": "",
                "last_discovered": "",
                "lease_id": "",
                "life_cycle_stage": "",
                "life_cycle_stage_status": "",
                "location": "",
                "mac_address": "",
                "maintenance_schedule": "",
                "managed_by": "",
                "managed_by_group": "",
                "manufacturer": "",
                "model_id": "",
                "model_number": "",
                "monitor": "false",
                "name": "AAACDB3-PDB21-OTHER2",
                "operational_status": "operational",
                "order_date": "",
                "owned_by": "",
                "pid": "",
                "po_number": "",
                "purchase_date": "",
                "rp_command_hash": "",
                "rp_key_parameters_hash": "",
                "running_process": "",
                "running_process_command": "",
                "running_process_key_parameters": "",
                "schedule": "",
                "serial_number": "",
                "short_description": "",
                "skip_sync": "false",
                "start_date": "",
                "subcategory": "",
                "support_group": "",
                "supported_by": "",
                "sys_class_name": "cmdb_ci_appl_ora_tns",
                "sys_class_path": "/!!/!(/!|",
                "sys_created_by": "admin",
                "sys_created_on": "2022-08-24 12:52:05",
                "sys_domain": "global",
                "sys_domain_path": "/",
                "sys_id": "68520d8197651110968b74400153af66",
                "sys_mod_count": "0",
                "sys_tags": "",
                "sys_updated_by": "admin",
                "sys_updated_on": "2022-08-24 12:52:05",
                "tcp_port": "",
                "u_tns_content": "AAACDB3-PDB21-OTHER2.WORLD=\n  (DESCRIPTION=\n    (ADDRESS=\n      (COMMUNITY=tcp.world)\n      (PROTOCOL=TCP)\n      (HOST=localhost)\n      (PORT=23)\n    )\n    (CONNECT_DATA=\n      (SID=TEST1)\n    )\n  )\n",
                "unverified": "false",
                "used_for": "Production",
                "vendor": "",
                "version": "",
                "warranty_expiration": ""
            },
            {
                "asset": "",
                "asset_tag": "",
                "assigned": "",
                "assigned_to": "",
                "assignment_group": "",
                "attachments": [],
                "attestation_score": "",
                "attested": "false",
                "attested_by": "",
                "attested_date": "",
                "attributes": "",
                "business_unit": "",
                "can_print": "false",
                "category": "",
                "change_control": "",
                "checked_in": "",
                "checked_out": "",
                "cl_port": "",
                "classifier": "",
                "comments": "",
                "company": "",
                "config_directory": "",
                "config_file": "",
                "correlation_id": "",
                "cost": "",
                "cost_cc": "USD",
                "cost_center": "",
                "delivery_date": "",
                "department": "",
                "discovery_source": "",
                "dns_domain": "",
                "due": "",
                "due_in": "",
                "duplicate_of": "",
                "edition": "",
                "environment": "",
                "fault_count": "0",
                "first_discovered": "",
                "fqdn": "",
                "gl_account": "",
                "install_date": "",
                "install_directory": "",
                "install_status": "installed",
                "invoice_number": "",
                "ip_address": "",
                "is_clustered": "false",
                "justification": "",
                "last_discovered": "",
                "lease_id": "",
                "life_cycle_stage": "",
                "life_cycle_stage_status": "",
                "location": "",
                "mac_address": "",
                "maintenance_schedule": "",
                "managed_by": "",
                "managed_by_group": "",
                "manufacturer": "",
                "model_id": "",
                "model_number": "",
                "monitor": "false",
                "name": "AAACDB2-PDB22-KKNEW",
                "operational_status": "operational",
                "order_date": "",
                "owned_by": "",
                "pid": "",
                "po_number": "",
                "purchase_date": "",
                "rp_command_hash": "",
                "rp_key_parameters_hash": "",
                "running_process": "",
                "running_process_command": "",
                "running_process_key_parameters": "",
                "schedule": "",
                "serial_number": "",
                "short_description": "",
                "skip_sync": "false",
                "start_date": "",
                "subcategory": "",
                "support_group": "",
                "supported_by": "",
                "sys_class_name": "cmdb_ci_appl_ora_tns",
                "sys_class_path": "/!!/!(/!|",
                "sys_created_by": "admin",
                "sys_created_on": "2022-07-05 15:39:46",
                "sys_domain": "global",
                "sys_domain_path": "/",
                "sys_id": "6a29040107a01110befff6fd7c1ed070",
                "sys_mod_count": "14",
                "sys_tags": "",
                "sys_updated_by": "admin",
                "sys_updated_on": "2022-08-03 13:24:15",
                "tcp_port": "",
                "u_tns_content": "AAACDB2-PDB22-KKNEW.WORLD=\n  (DESCRIPTION=\n    (ADDRESS=\n      (COMMUNITY=tcp.world)\n      (PROTOCOL=TCP)\n      (HOST=localhost)\n      (PORT=23)\n    )\n    (CONNECT_DATA=\n      (SID=TEST1)\n    )\n  )\n",
                "unverified": "false",
                "used_for": "Production",
                "vendor": "",
                "version": "aSDf",
                "warranty_expiration": ""
            },
            {
                "asset": "",
                "asset_tag": "",
                "assigned": "",
                "assigned_to": "",
                "assignment_group": "",
                "attachments": [],
                "attestation_score": "",
                "attested": "false",
                "attested_by": "",
                "attested_date": "",
                "attributes": "",
                "business_unit": "",
                "can_print": "false",
                "category": "",
                "change_control": "",
                "checked_in": "",
                "checked_out": "",
                "cl_port": "",
                "classifier": "",
                "comments": "",
                "company": "",
                "config_directory": "",
                "config_file": "",
                "correlation_id": "",
                "cost": "",
                "cost_cc": "USD",
                "cost_center": "",
                "delivery_date": "",
                "department": "",
                "discovery_source": "",
                "dns_domain": "",
                "due": "",
                "due_in": "",
                "duplicate_of": "",
                "edition": "",
                "environment": "",
                "fault_count": "0",
                "first_discovered": "",
                "fqdn": "",
                "gl_account": "",
                "install_date": "",
                "install_directory": "",
                "install_status": "installed",
                "invoice_number": "",
                "ip_address": "",
                "is_clustered": "false",
                "justification": "",
                "last_discovered": "",
                "lease_id": "",
                "life_cycle_stage": "",
                "life_cycle_stage_status": "",
                "location": "",
                "mac_address": "",
                "maintenance_schedule": "",
                "managed_by": "",
                "managed_by_group": "",
                "manufacturer": "",
                "model_id": "",
                "model_number": "",
                "monitor": "false",
                "name": "AAACDB1-PDB11-ABEL",
                "operational_status": "operational",
                "order_date": "",
                "owned_by": "",
                "pid": "",
                "po_number": "",
                "purchase_date": "",
                "rp_command_hash": "",
                "rp_key_parameters_hash": "",
                "running_process": "",
                "running_process_command": "",
                "running_process_key_parameters": "",
                "schedule": "",
                "serial_number": "",
                "short_description": "",
                "skip_sync": "false",
                "start_date": "",
                "subcategory": "",
                "support_group": "",
                "supported_by": "",
                "sys_class_name": "cmdb_ci_appl_ora_tns",
                "sys_class_path": "/!!/!(/!|",
                "sys_created_by": "admin",
                "sys_created_on": "2022-07-04 14:39:08",
                "sys_domain": "global",
                "sys_domain_path": "/",
                "sys_id": "9bb1fee807241110befff6fd7c1ed089",
                "sys_mod_count": "27",
                "sys_tags": "",
                "sys_updated_by": "admin",
                "sys_updated_on": "2022-08-24 09:33:37",
                "tcp_port": "",
                "u_tns_content": "AAACDB1-PDB11-ABEL.WORLD=\n  (DESCRIPTION=\n    (ADDRESS=\n      (COMMUNITY=tcp.world)\n      (PROTOCOL=TCP)\n      (HOST=localhost)\n      (PORT=22)\n    )\n    (CONNECT_DATA=\n      (SID=TEST1)\n    )\n  )\n",
                "unverified": "false",
                "used_for": "Production",
                "vendor": "",
                "version": "aa",
                "warranty_expiration": ""
            },
            {
                "asset": "",
                "asset_tag": "",
                "assigned": "",
                "assigned_to": "",
                "assignment_group": "",
                "attachments": [],
                "attestation_score": "",
                "attested": "false",
                "attested_by": "",
                "attested_date": "",
                "attributes": "",
                "business_unit": "",
                "can_print": "false",
                "category": "",
                "change_control": "",
                "checked_in": "",
                "checked_out": "",
                "cl_port": "",
                "classifier": "",
                "comments": "",
                "company": "",
                "config_directory": "",
                "config_file": "",
                "correlation_id": "",
                "cost": "",
                "cost_cc": "USD",
                "cost_center": "",
                "delivery_date": "",
                "department": "",
                "discovery_source": "",
                "dns_domain": "",
                "due": "",
                "due_in": "",
                "duplicate_of": "",
                "edition": "",
                "environment": "",
                "fault_count": "0",
                "first_discovered": "",
                "fqdn": "",
                "gl_account": "",
                "install_date": "",
                "install_directory": "",
                "install_status": "installed",
                "invoice_number": "",
                "ip_address": "",
                "is_clustered": "false",
                "justification": "",
                "last_discovered": "",
                "lease_id": "",
                "life_cycle_stage": "",
                "life_cycle_stage_status": "",
                "location": "",
                "mac_address": "",
                "maintenance_schedule": "",
                "managed_by": "",
                "managed_by_group": "",
                "manufacturer": "",
                "model_id": "",
                "model_number": "",
                "monitor": "false",
                "name": "AAACDB2-PDB22-TEST1",
                "operational_status": "operational",
                "order_date": "",
                "owned_by": "",
                "pid": "",
                "po_number": "",
                "purchase_date": "",
                "rp_command_hash": "",
                "rp_key_parameters_hash": "",
                "running_process": "",
                "running_process_command": "",
                "running_process_key_parameters": "",
                "schedule": "",
                "serial_number": "",
                "short_description": "",
                "skip_sync": "false",
                "start_date": "",
                "subcategory": "",
                "support_group": "",
                "supported_by": "",
                "sys_class_name": "cmdb_ci_appl_ora_tns",
                "sys_class_path": "/!!/!(/!|",
                "sys_created_by": "admin",
                "sys_created_on": "2022-08-03 10:38:40",
                "sys_domain": "global",
                "sys_domain_path": "/",
                "sys_id": "d16a945e07815110befff6fd7c1ed0a4",
                "sys_mod_count": "1",
                "sys_tags": "",
                "sys_updated_by": "admin",
                "sys_updated_on": "2022-08-03 12:25:13",
                "tcp_port": "",
                "u_tns_content": "AAACDB2-PDB22-TEST1.WORLD=\n  (DESCRIPTION=\n    (ADDRESS=\n      (COMMUNITY=tcp.world)\n      (PROTOCOL=TCP)\n      (HOST=localhost)\n      (PORT=23)\n    )\n    (CONNECT_DATA=\n      (SID=TEST1)\n    )\n  )\n",
                "unverified": "false",
                "used_for": "Production",
                "vendor": "",
                "version": "",
                "warranty_expiration": ""
            },
            {
                "asset": "",
                "asset_tag": "",
                "assigned": "",
                "assigned_to": "",
                "assignment_group": "",
                "attachments": [],
                "attestation_score": "",
                "attested": "false",
                "attested_by": "",
                "attested_date": "",
                "attributes": "",
                "business_unit": "",
                "can_print": "false",
                "category": "",
                "change_control": "",
                "checked_in": "",
                "checked_out": "",
                "cl_port": "",
                "classifier": "",
                "comments": "",
                "company": "",
                "config_directory": "",
                "config_file": "",
                "correlation_id": "",
                "cost": "",
                "cost_cc": "USD",
                "cost_center": "",
                "delivery_date": "",
                "department": "",
                "discovery_source": "",
                "dns_domain": "",
                "due": "",
                "due_in": "",
                "duplicate_of": "",
                "edition": "",
                "environment": "",
                "fault_count": "0",
                "first_discovered": "",
                "fqdn": "",
                "gl_account": "",
                "install_date": "",
                "install_directory": "",
                "install_status": "installed",
                "invoice_number": "",
                "ip_address": "",
                "is_clustered": "false",
                "justification": "",
                "last_discovered": "",
                "lease_id": "",
                "life_cycle_stage": "",
                "life_cycle_stage_status": "",
                "location": "",
                "mac_address": "",
                "maintenance_schedule": "",
                "managed_by": "",
                "managed_by_group": "",
                "manufacturer": "",
                "model_id": "",
                "model_number": "",
                "monitor": "false",
                "name": "AAACDB3-PDB21-OTHER",
                "operational_status": "operational",
                "order_date": "",
                "owned_by": "",
                "pid": "",
                "po_number": "",
                "purchase_date": "",
                "rp_command_hash": "",
                "rp_key_parameters_hash": "",
                "running_process": "",
                "running_process_command": "",
                "running_process_key_parameters": "",
                "schedule": "",
                "serial_number": "",
                "short_description": "",
                "skip_sync": "false",
                "start_date": "",
                "subcategory": "",
                "support_group": "",
                "supported_by": "",
                "sys_class_name": "cmdb_ci_appl_ora_tns",
                "sys_class_path": "/!!/!(/!|",
                "sys_created_by": "admin",
                "sys_created_on": "2022-08-03 10:38:42",
                "sys_domain": "global",
                "sys_domain_path": "/",
                "sys_id": "f16a945e07815110befff6fd7c1ed0a7",
                "sys_mod_count": "1",
                "sys_tags": "",
                "sys_updated_by": "admin",
                "sys_updated_on": "2022-08-03 12:25:15",
                "tcp_port": "",
                "u_tns_content": "AAACDB3-PDB21-OTHER.WORLD=\n  (DESCRIPTION=\n    (ADDRESS=\n      (COMMUNITY=tcp.world)\n      (PROTOCOL=TCP)\n      (HOST=localhost)\n      (PORT=23)\n    )\n    (CONNECT_DATA=\n      (SID=TEST1)\n    )\n  )\n",
                "unverified": "false",
                "used_for": "Production",
                "vendor": "",
                "version": "",
                "warranty_expiration": ""
            },
            {
                "asset": "",
                "asset_tag": "",
                "assigned": "",
                "assigned_to": "",
                "assignment_group": "",
                "attachments": [],
                "attestation_score": "",
                "attested": "false",
                "attested_by": "",
                "attested_date": "",
                "attributes": "",
                "business_unit": "",
                "can_print": "false",
                "category": "",
                "change_control": "",
                "checked_in": "",
                "checked_out": "",
                "cl_port": "",
                "classifier": "",
                "comments": "",
                "company": "",
                "config_directory": "",
                "config_file": "",
                "correlation_id": "",
                "cost": "",
                "cost_cc": "USD",
                "cost_center": "",
                "delivery_date": "",
                "department": "",
                "discovery_source": "",
                "dns_domain": "",
                "due": "",
                "due_in": "",
                "duplicate_of": "",
                "edition": "",
                "environment": "",
                "fault_count": "0",
                "first_discovered": "",
                "fqdn": "",
                "gl_account": "",
                "install_date": "",
                "install_directory": "",
                "install_status": "installed",
                "invoice_number": "",
                "ip_address": "",
                "is_clustered": "false",
                "justification": "",
                "last_discovered": "",
                "lease_id": "",
                "life_cycle_stage": "",
                "life_cycle_stage_status": "",
                "location": "",
                "mac_address": "",
                "maintenance_schedule": "",
                "managed_by": "",
                "managed_by_group": "",
                "manufacturer": "",
                "model_id": "",
                "model_number": "",
                "monitor": "false",
                "name": "AAACDB1-PDB12-TEST2",
                "operational_status": "operational",
                "order_date": "",
                "owned_by": "",
                "pid": "",
                "po_number": "",
                "purchase_date": "",
                "rp_command_hash": "",
                "rp_key_parameters_hash": "",
                "running_process": "",
                "running_process_command": "",
                "running_process_key_parameters": "",
                "schedule": "",
                "serial_number": "",
                "short_description": "",
                "skip_sync": "false",
                "start_date": "",
                "subcategory": "",
                "support_group": "",
                "supported_by": "",
                "sys_class_name": "cmdb_ci_appl_ora_tns",
                "sys_class_path": "/!!/!(/!|",
                "sys_created_by": "admin",
                "sys_created_on": "2022-07-04 14:43:45",
                "sys_domain": "global",
                "sys_domain_path": "/",
                "sys_id": "fac2be2c07241110befff6fd7c1ed0a9",
                "sys_mod_count": "14",
                "sys_tags": "",
                "sys_updated_by": "admin",
                "sys_updated_on": "2022-08-03 13:24:13",
                "tcp_port": "",
                "u_tns_content": "AAACDB1-PDB12-TEST2.WORLD=\n (DESCRIPTION_LIST=\n  (LOAD_BALANCE=off)\n  (FAILOVER=on)\n  (DESCRIPTION=\n   (CONNECT_TIMEOUT=5)\n   (RETRY_COUNT=3)\n   (RETRY_DELAY=1)\n   (TRANSPORT_CONNECT_TIMEOUT=3)\n   (ADDRESS_LIST=\n    (LOAD_BALANCE=on)\n  (ADDRESS=\n   (PROTOCOL=TCP)\n   (HOST=localhost)(PORT=21)))\n   (CONNECT_DATA=(SERVICE_NAME=FIN01_P_AP))\n   )\n   (DESCRIPTION=\n    (CONNECT_TIMEOUT=5)\n  (RETRY_COUNT=3)\n  (RETRY_DELAY=1)\n  (TRANSPORT_CONNECT_TIMEOUT=3)\n  (ADDRESS_LIST=\n   (LOAD_BALANCE=on)\n   (ADDRESS=\n    (PROTOCOL=TCP)\n    (HOST=localhost)(PORT=22)))\n    (CONNECT_DATA=(SERVICE_NAME=FIN01_P_AP))\n   )\n   (DESCRIPTION=\n    (CONNECT_TIMEOUT=5)\n  (RETRY_COUNT=3)\n  (RETRY_DELAY=1)\n  (TRANSPORT_CONNECT_TIMEOUT=3)\n  (ADDRESS_LIST=\n   (LOAD_BALANCE=on)\n   (ADDRESS=\n    (PROTOCOL=TCP)\n    (HOST=localhost)(PORT=23)))\n    (CONNECT_DATA=(SERVICE_NAME=FIN01_P_AP))\n   )\n )\n",
                "unverified": "false",
                "used_for": "Production",
                "vendor": "",
                "version": "v1",
                "warranty_expiration": ""
            }
        ]
    }

@softwarefactory-project-zuul
Copy link

Build succeeded.

✔️ build-ansible-collection SUCCESS in 3m 01s
✔️ ansible-test-sanity-docker-devel SUCCESS in 6m 52s (non-voting)
✔️ ansible-test-sanity-docker-milestone SUCCESS in 6m 39s
✔️ ansible-test-sanity-docker-stable-2.9 SUCCESS in 10m 50s
✔️ ansible-test-sanity-docker-stable-2.10 SUCCESS in 8m 00s
✔️ ansible-test-sanity-docker-stable-2.11 SUCCESS in 9m 45s
✔️ ansible-test-sanity-docker-stable-2.12 SUCCESS in 7m 09s
✔️ ansible-test-units-servicenow-itsm-python27 SUCCESS in 4m 29s
✔️ ansible-test-units-servicenow-itsm-python36 SUCCESS in 4m 38s
✔️ ansible-test-units-servicenow-itsm-python37 SUCCESS in 4m 39s
✔️ ansible-test-units-servicenow-itsm-python38 SUCCESS in 5m 08s
✔️ ansible-galaxy-importer SUCCESS in 3m 52s

@Akasurde Akasurde added this to the 2.1 milestone Aug 29, 2022
Copy link
Member

@Akasurde Akasurde left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please add tests and create a changelog fragment. See this fragment as an example?

plugins/modules/configuration_item_info.py Outdated Show resolved Hide resolved
plugins/modules/configuration_item_info.py Outdated Show resolved Hide resolved
plugins/modules/configuration_item_info.py Outdated Show resolved Hide resolved
plugins/modules/configuration_item_info.py Outdated Show resolved Hide resolved
@Akasurde Akasurde added the type/enhancement New feature or request label Feb 17, 2024
@Akasurde Akasurde force-pushed the add_return_fields_to_configuration_item_info branch from 62a799f to 36f0eca Compare February 20, 2024 18:09
* Allow user to specify return fields for the specifed configuration item
  info

Signed-off-by: Toni Moreno Giménez <[email protected]>
Signed-off-by: Abhijeet Kasurde <[email protected]>
@Akasurde Akasurde force-pushed the add_return_fields_to_configuration_item_info branch from 36f0eca to ce1aacf Compare February 20, 2024 18:15
@Akasurde Akasurde requested review from mhjacks, tupyy and Akasurde and removed request for juremedvesek February 20, 2024 18:17
@tupyy
Copy link
Contributor

tupyy commented Feb 21, 2024

/lgtm

@Akasurde Akasurde removed this from the 2.1 milestone Feb 21, 2024
@Akasurde Akasurde merged commit 401531f into ansible-collections:main Feb 21, 2024
28 checks passed
tupyy added a commit to tupyy/servicenow.itsm that referenced this pull request Feb 23, 2024
This commit adds integration tests for PR#208.
tupyy added a commit to tupyy/servicenow.itsm that referenced this pull request Feb 23, 2024
This commit adds integration tests for PR#208.
Akasurde pushed a commit that referenced this pull request Feb 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants