diff --git a/README.md b/README.md index 1fd2c6d2..ac248e0e 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,23 @@ hostname: "netbox.corp.lan" api_token: "aaabbbccc111222333" use_https: true ssl_verify: true +default_fail_non_2xx: false # Optional: when true, actions fail on non-2xx NetBox responses by default ``` After editing, run `sudo st2ctl reload --register-configs` to ensure your configuration is loaded. +### Controlling action failure on non-2xx responses + +By default, NetBox actions in this pack **do not** fail when NetBox returns a non-2xx HTTP status unless the `fail_non_2xx` action parameter is explicitly set to `true`. + +- The pack configuration option `default_fail_non_2xx` controls the **default** behavior for all NetBox HTTP actions: + - If `default_fail_non_2xx` is `false` or omitted (the default), actions will only fail on non-2xx responses when `fail_non_2xx=true` is explicitly set on the action invocation. + - If `default_fail_non_2xx` is `true`, actions will fail on non-2xx responses **by default**, unless explicitly overridden. +- The per-action parameter `fail_non_2xx` always takes precedence over the pack config: + - `fail_non_2xx=true` forces the action to fail on non-2xx responses, regardless of `default_fail_non_2xx`. + - `fail_non_2xx=false` forces the action **not** to fail on non-2xx responses, even if `default_fail_non_2xx` is `true`. + ## Actions There are more than 290 actions in this pack. Each maps to a particular NetBox API endpoint. diff --git a/actions/delete.circuits.circuit_group_assignments.yaml b/actions/delete.circuits.circuit_group_assignments.yaml index 0300af1c..4c96b9f7 100644 --- a/actions/delete.circuits.circuit_group_assignments.yaml +++ b/actions/delete.circuits.circuit_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.circuit_groups.yaml b/actions/delete.circuits.circuit_groups.yaml index c2f0b804..95c4be36 100644 --- a/actions/delete.circuits.circuit_groups.yaml +++ b/actions/delete.circuits.circuit_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.circuit_terminations.yaml b/actions/delete.circuits.circuit_terminations.yaml index 5ad5e8bc..4a3a9fa2 100644 --- a/actions/delete.circuits.circuit_terminations.yaml +++ b/actions/delete.circuits.circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.circuit_types.yaml b/actions/delete.circuits.circuit_types.yaml index 1206e016..a7640a5e 100644 --- a/actions/delete.circuits.circuit_types.yaml +++ b/actions/delete.circuits.circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.circuits.yaml b/actions/delete.circuits.circuits.yaml index d7e33de5..5e48d84e 100644 --- a/actions/delete.circuits.circuits.yaml +++ b/actions/delete.circuits.circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.provider_accounts.yaml b/actions/delete.circuits.provider_accounts.yaml index b008c94f..445071b0 100644 --- a/actions/delete.circuits.provider_accounts.yaml +++ b/actions/delete.circuits.provider_accounts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.provider_networks.yaml b/actions/delete.circuits.provider_networks.yaml index a3d2b72d..7722130f 100644 --- a/actions/delete.circuits.provider_networks.yaml +++ b/actions/delete.circuits.provider_networks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.providers.yaml b/actions/delete.circuits.providers.yaml index fa3d6d93..3d61da1a 100644 --- a/actions/delete.circuits.providers.yaml +++ b/actions/delete.circuits.providers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.virtual_circuit_terminations.yaml b/actions/delete.circuits.virtual_circuit_terminations.yaml index 0c029fa7..3c079a5a 100644 --- a/actions/delete.circuits.virtual_circuit_terminations.yaml +++ b/actions/delete.circuits.virtual_circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.virtual_circuit_types.yaml b/actions/delete.circuits.virtual_circuit_types.yaml index 3ad57666..69a9959a 100644 --- a/actions/delete.circuits.virtual_circuit_types.yaml +++ b/actions/delete.circuits.virtual_circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.circuits.virtual_circuits.yaml b/actions/delete.circuits.virtual_circuits.yaml index 72b2576c..c6edd05a 100644 --- a/actions/delete.circuits.virtual_circuits.yaml +++ b/actions/delete.circuits.virtual_circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.core.data_sources.yaml b/actions/delete.core.data_sources.yaml index 88fbc90f..d0daf9aa 100644 --- a/actions/delete.core.data_sources.yaml +++ b/actions/delete.core.data_sources.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.cable_terminations.yaml b/actions/delete.dcim.cable_terminations.yaml index be827ebe..eb2e4f92 100644 --- a/actions/delete.dcim.cable_terminations.yaml +++ b/actions/delete.dcim.cable_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.cables.yaml b/actions/delete.dcim.cables.yaml index ce78d6ce..f1b7beef 100644 --- a/actions/delete.dcim.cables.yaml +++ b/actions/delete.dcim.cables.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.console_port_templates.yaml b/actions/delete.dcim.console_port_templates.yaml index 1379c3f5..8a879de7 100644 --- a/actions/delete.dcim.console_port_templates.yaml +++ b/actions/delete.dcim.console_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.console_ports.yaml b/actions/delete.dcim.console_ports.yaml index 78390e26..fd838cc4 100644 --- a/actions/delete.dcim.console_ports.yaml +++ b/actions/delete.dcim.console_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.console_server_port_templates.yaml b/actions/delete.dcim.console_server_port_templates.yaml index 029481ff..0c12fa9a 100644 --- a/actions/delete.dcim.console_server_port_templates.yaml +++ b/actions/delete.dcim.console_server_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.console_server_ports.yaml b/actions/delete.dcim.console_server_ports.yaml index a8535cc5..f60ab148 100644 --- a/actions/delete.dcim.console_server_ports.yaml +++ b/actions/delete.dcim.console_server_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.device_bay_templates.yaml b/actions/delete.dcim.device_bay_templates.yaml index 33c25b1a..3882e638 100644 --- a/actions/delete.dcim.device_bay_templates.yaml +++ b/actions/delete.dcim.device_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.device_bays.yaml b/actions/delete.dcim.device_bays.yaml index 466c90e8..d0ffb1f2 100644 --- a/actions/delete.dcim.device_bays.yaml +++ b/actions/delete.dcim.device_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.device_roles.yaml b/actions/delete.dcim.device_roles.yaml index 9b232fda..1132a223 100644 --- a/actions/delete.dcim.device_roles.yaml +++ b/actions/delete.dcim.device_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.device_types.yaml b/actions/delete.dcim.device_types.yaml index e997090a..fe125de4 100644 --- a/actions/delete.dcim.device_types.yaml +++ b/actions/delete.dcim.device_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.devices.yaml b/actions/delete.dcim.devices.yaml index 76389daa..ad1e681a 100644 --- a/actions/delete.dcim.devices.yaml +++ b/actions/delete.dcim.devices.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.front_port_templates.yaml b/actions/delete.dcim.front_port_templates.yaml index d30bd825..e742781d 100644 --- a/actions/delete.dcim.front_port_templates.yaml +++ b/actions/delete.dcim.front_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.front_ports.yaml b/actions/delete.dcim.front_ports.yaml index 0a5045ff..7f807aba 100644 --- a/actions/delete.dcim.front_ports.yaml +++ b/actions/delete.dcim.front_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.interface_templates.yaml b/actions/delete.dcim.interface_templates.yaml index dee9164f..bb40655b 100644 --- a/actions/delete.dcim.interface_templates.yaml +++ b/actions/delete.dcim.interface_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.interfaces.yaml b/actions/delete.dcim.interfaces.yaml index 0a4093b3..21479925 100644 --- a/actions/delete.dcim.interfaces.yaml +++ b/actions/delete.dcim.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.inventory_item_roles.yaml b/actions/delete.dcim.inventory_item_roles.yaml index e77e4d0f..d02b2efd 100644 --- a/actions/delete.dcim.inventory_item_roles.yaml +++ b/actions/delete.dcim.inventory_item_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.inventory_item_templates.yaml b/actions/delete.dcim.inventory_item_templates.yaml index 5fc651eb..3beb6537 100644 --- a/actions/delete.dcim.inventory_item_templates.yaml +++ b/actions/delete.dcim.inventory_item_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.inventory_items.yaml b/actions/delete.dcim.inventory_items.yaml index b6fb786d..9c454ee7 100644 --- a/actions/delete.dcim.inventory_items.yaml +++ b/actions/delete.dcim.inventory_items.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.locations.yaml b/actions/delete.dcim.locations.yaml index 3d14cbc6..d89cd9a9 100644 --- a/actions/delete.dcim.locations.yaml +++ b/actions/delete.dcim.locations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.mac_addresses.yaml b/actions/delete.dcim.mac_addresses.yaml index e09c0673..bce0635d 100644 --- a/actions/delete.dcim.mac_addresses.yaml +++ b/actions/delete.dcim.mac_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.manufacturers.yaml b/actions/delete.dcim.manufacturers.yaml index 291cc394..31a7c9de 100644 --- a/actions/delete.dcim.manufacturers.yaml +++ b/actions/delete.dcim.manufacturers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.module_bay_templates.yaml b/actions/delete.dcim.module_bay_templates.yaml index 37f441dc..79849f08 100644 --- a/actions/delete.dcim.module_bay_templates.yaml +++ b/actions/delete.dcim.module_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.module_bays.yaml b/actions/delete.dcim.module_bays.yaml index 25229d4f..d14cfb80 100644 --- a/actions/delete.dcim.module_bays.yaml +++ b/actions/delete.dcim.module_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.module_type_profiles.yaml b/actions/delete.dcim.module_type_profiles.yaml index 10be6122..383a078d 100644 --- a/actions/delete.dcim.module_type_profiles.yaml +++ b/actions/delete.dcim.module_type_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.module_types.yaml b/actions/delete.dcim.module_types.yaml index 8dfd0658..6eefc206 100644 --- a/actions/delete.dcim.module_types.yaml +++ b/actions/delete.dcim.module_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.modules.yaml b/actions/delete.dcim.modules.yaml index 6c85e597..e5b8487b 100644 --- a/actions/delete.dcim.modules.yaml +++ b/actions/delete.dcim.modules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.platforms.yaml b/actions/delete.dcim.platforms.yaml index 6ce9c2c7..d4353ebb 100644 --- a/actions/delete.dcim.platforms.yaml +++ b/actions/delete.dcim.platforms.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.power_feeds.yaml b/actions/delete.dcim.power_feeds.yaml index 145c9173..5f08c062 100644 --- a/actions/delete.dcim.power_feeds.yaml +++ b/actions/delete.dcim.power_feeds.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.power_outlet_templates.yaml b/actions/delete.dcim.power_outlet_templates.yaml index 21d39050..5bbb5082 100644 --- a/actions/delete.dcim.power_outlet_templates.yaml +++ b/actions/delete.dcim.power_outlet_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.power_outlets.yaml b/actions/delete.dcim.power_outlets.yaml index 62d0c972..ad017919 100644 --- a/actions/delete.dcim.power_outlets.yaml +++ b/actions/delete.dcim.power_outlets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.power_panels.yaml b/actions/delete.dcim.power_panels.yaml index 2b980a32..99a4f405 100644 --- a/actions/delete.dcim.power_panels.yaml +++ b/actions/delete.dcim.power_panels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.power_port_templates.yaml b/actions/delete.dcim.power_port_templates.yaml index 70e42d5f..d80f79e8 100644 --- a/actions/delete.dcim.power_port_templates.yaml +++ b/actions/delete.dcim.power_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.power_ports.yaml b/actions/delete.dcim.power_ports.yaml index 83ce5933..5eabd801 100644 --- a/actions/delete.dcim.power_ports.yaml +++ b/actions/delete.dcim.power_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.rack_reservations.yaml b/actions/delete.dcim.rack_reservations.yaml index 7ed93c3c..dabacc33 100644 --- a/actions/delete.dcim.rack_reservations.yaml +++ b/actions/delete.dcim.rack_reservations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.rack_roles.yaml b/actions/delete.dcim.rack_roles.yaml index 4b5e6053..2c31d0f4 100644 --- a/actions/delete.dcim.rack_roles.yaml +++ b/actions/delete.dcim.rack_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.rack_types.yaml b/actions/delete.dcim.rack_types.yaml index f80fa3ba..d9ac8d76 100644 --- a/actions/delete.dcim.rack_types.yaml +++ b/actions/delete.dcim.rack_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.racks.yaml b/actions/delete.dcim.racks.yaml index 3d1e11df..9f8c7a10 100644 --- a/actions/delete.dcim.racks.yaml +++ b/actions/delete.dcim.racks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.rear_port_templates.yaml b/actions/delete.dcim.rear_port_templates.yaml index 9ee89950..0b35a40f 100644 --- a/actions/delete.dcim.rear_port_templates.yaml +++ b/actions/delete.dcim.rear_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.rear_ports.yaml b/actions/delete.dcim.rear_ports.yaml index 4e04029c..ab3a3bcd 100644 --- a/actions/delete.dcim.rear_ports.yaml +++ b/actions/delete.dcim.rear_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.regions.yaml b/actions/delete.dcim.regions.yaml index e168a19e..4825983b 100644 --- a/actions/delete.dcim.regions.yaml +++ b/actions/delete.dcim.regions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.site_groups.yaml b/actions/delete.dcim.site_groups.yaml index 6814bd83..4b3f565d 100644 --- a/actions/delete.dcim.site_groups.yaml +++ b/actions/delete.dcim.site_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.sites.yaml b/actions/delete.dcim.sites.yaml index 5692faa6..1ff01761 100644 --- a/actions/delete.dcim.sites.yaml +++ b/actions/delete.dcim.sites.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.virtual_chassis.yaml b/actions/delete.dcim.virtual_chassis.yaml index c241c626..a000138b 100644 --- a/actions/delete.dcim.virtual_chassis.yaml +++ b/actions/delete.dcim.virtual_chassis.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.dcim.virtual_device_contexts.yaml b/actions/delete.dcim.virtual_device_contexts.yaml index 51497a44..3aefab15 100644 --- a/actions/delete.dcim.virtual_device_contexts.yaml +++ b/actions/delete.dcim.virtual_device_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.bookmarks.yaml b/actions/delete.extras.bookmarks.yaml index 34f23c21..e30d637b 100644 --- a/actions/delete.extras.bookmarks.yaml +++ b/actions/delete.extras.bookmarks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.config_contexts.yaml b/actions/delete.extras.config_contexts.yaml index 302e745b..39758ac0 100644 --- a/actions/delete.extras.config_contexts.yaml +++ b/actions/delete.extras.config_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.config_templates.yaml b/actions/delete.extras.config_templates.yaml index 1a15d66b..4e5a6f5e 100644 --- a/actions/delete.extras.config_templates.yaml +++ b/actions/delete.extras.config_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.custom_field_choice_sets.yaml b/actions/delete.extras.custom_field_choice_sets.yaml index c516e065..b6c62a95 100644 --- a/actions/delete.extras.custom_field_choice_sets.yaml +++ b/actions/delete.extras.custom_field_choice_sets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.custom_fields.yaml b/actions/delete.extras.custom_fields.yaml index 35f7f198..0a74331b 100644 --- a/actions/delete.extras.custom_fields.yaml +++ b/actions/delete.extras.custom_fields.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.custom_links.yaml b/actions/delete.extras.custom_links.yaml index 207598d9..7c9e0610 100644 --- a/actions/delete.extras.custom_links.yaml +++ b/actions/delete.extras.custom_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.dashboard.yaml b/actions/delete.extras.dashboard.yaml index 186a9cb3..f6911a35 100644 --- a/actions/delete.extras.dashboard.yaml +++ b/actions/delete.extras.dashboard.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.event_rules.yaml b/actions/delete.extras.event_rules.yaml index b09bf507..95a140fe 100644 --- a/actions/delete.extras.event_rules.yaml +++ b/actions/delete.extras.event_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.export_templates.yaml b/actions/delete.extras.export_templates.yaml index b7fed3ed..0765b38c 100644 --- a/actions/delete.extras.export_templates.yaml +++ b/actions/delete.extras.export_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.image_attachments.yaml b/actions/delete.extras.image_attachments.yaml index dc6e77fd..91101551 100644 --- a/actions/delete.extras.image_attachments.yaml +++ b/actions/delete.extras.image_attachments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.journal_entries.yaml b/actions/delete.extras.journal_entries.yaml index e1f69a8e..855f25a9 100644 --- a/actions/delete.extras.journal_entries.yaml +++ b/actions/delete.extras.journal_entries.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.notification_groups.yaml b/actions/delete.extras.notification_groups.yaml index aae8693e..e5f71405 100644 --- a/actions/delete.extras.notification_groups.yaml +++ b/actions/delete.extras.notification_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.notifications.yaml b/actions/delete.extras.notifications.yaml index 5b04a618..62148f70 100644 --- a/actions/delete.extras.notifications.yaml +++ b/actions/delete.extras.notifications.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.saved_filters.yaml b/actions/delete.extras.saved_filters.yaml index c6e0f21d..4eeabcba 100644 --- a/actions/delete.extras.saved_filters.yaml +++ b/actions/delete.extras.saved_filters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.scripts.yaml b/actions/delete.extras.scripts.yaml index ca2e6294..a3ec7744 100644 --- a/actions/delete.extras.scripts.yaml +++ b/actions/delete.extras.scripts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.subscriptions.yaml b/actions/delete.extras.subscriptions.yaml index 58a1d2ac..a6547085 100644 --- a/actions/delete.extras.subscriptions.yaml +++ b/actions/delete.extras.subscriptions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.table_configs.yaml b/actions/delete.extras.table_configs.yaml index 235a0692..41d7d90a 100644 --- a/actions/delete.extras.table_configs.yaml +++ b/actions/delete.extras.table_configs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.tags.yaml b/actions/delete.extras.tags.yaml index 416b2913..22255a10 100644 --- a/actions/delete.extras.tags.yaml +++ b/actions/delete.extras.tags.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.extras.webhooks.yaml b/actions/delete.extras.webhooks.yaml index 47021617..30760acf 100644 --- a/actions/delete.extras.webhooks.yaml +++ b/actions/delete.extras.webhooks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.aggregates.yaml b/actions/delete.ipam.aggregates.yaml index ce3eeb2e..7303df91 100644 --- a/actions/delete.ipam.aggregates.yaml +++ b/actions/delete.ipam.aggregates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.asn_ranges.yaml b/actions/delete.ipam.asn_ranges.yaml index 80e15796..630fc5ec 100644 --- a/actions/delete.ipam.asn_ranges.yaml +++ b/actions/delete.ipam.asn_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.asns.yaml b/actions/delete.ipam.asns.yaml index 3b4dd763..6e6a5317 100644 --- a/actions/delete.ipam.asns.yaml +++ b/actions/delete.ipam.asns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.fhrp_group_assignments.yaml b/actions/delete.ipam.fhrp_group_assignments.yaml index f7854c2a..8a80b82e 100644 --- a/actions/delete.ipam.fhrp_group_assignments.yaml +++ b/actions/delete.ipam.fhrp_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.fhrp_groups.yaml b/actions/delete.ipam.fhrp_groups.yaml index 6073c6ee..b1532519 100644 --- a/actions/delete.ipam.fhrp_groups.yaml +++ b/actions/delete.ipam.fhrp_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.ip_addresses.yaml b/actions/delete.ipam.ip_addresses.yaml index d8c88652..17ef8155 100644 --- a/actions/delete.ipam.ip_addresses.yaml +++ b/actions/delete.ipam.ip_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.ip_ranges.yaml b/actions/delete.ipam.ip_ranges.yaml index f7ca1fad..f38c81dc 100644 --- a/actions/delete.ipam.ip_ranges.yaml +++ b/actions/delete.ipam.ip_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.prefixes.yaml b/actions/delete.ipam.prefixes.yaml index b08da8a9..34d3e2ad 100644 --- a/actions/delete.ipam.prefixes.yaml +++ b/actions/delete.ipam.prefixes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.rirs.yaml b/actions/delete.ipam.rirs.yaml index 7ed53b63..3242ab98 100644 --- a/actions/delete.ipam.rirs.yaml +++ b/actions/delete.ipam.rirs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.roles.yaml b/actions/delete.ipam.roles.yaml index 650e09ae..d6382d62 100644 --- a/actions/delete.ipam.roles.yaml +++ b/actions/delete.ipam.roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.route_targets.yaml b/actions/delete.ipam.route_targets.yaml index 80104620..cef24168 100644 --- a/actions/delete.ipam.route_targets.yaml +++ b/actions/delete.ipam.route_targets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.service_templates.yaml b/actions/delete.ipam.service_templates.yaml index 3b175f77..8978e5b2 100644 --- a/actions/delete.ipam.service_templates.yaml +++ b/actions/delete.ipam.service_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.services.yaml b/actions/delete.ipam.services.yaml index d33c32c9..1d73a1cf 100644 --- a/actions/delete.ipam.services.yaml +++ b/actions/delete.ipam.services.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.vlan_groups.yaml b/actions/delete.ipam.vlan_groups.yaml index d32f0ee2..46864dbc 100644 --- a/actions/delete.ipam.vlan_groups.yaml +++ b/actions/delete.ipam.vlan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.vlan_translation_policies.yaml b/actions/delete.ipam.vlan_translation_policies.yaml index 4cc6d470..20126404 100644 --- a/actions/delete.ipam.vlan_translation_policies.yaml +++ b/actions/delete.ipam.vlan_translation_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.vlan_translation_rules.yaml b/actions/delete.ipam.vlan_translation_rules.yaml index fb3ea25c..7d042906 100644 --- a/actions/delete.ipam.vlan_translation_rules.yaml +++ b/actions/delete.ipam.vlan_translation_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.vlans.yaml b/actions/delete.ipam.vlans.yaml index 328d2f76..50a654ed 100644 --- a/actions/delete.ipam.vlans.yaml +++ b/actions/delete.ipam.vlans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.ipam.vrfs.yaml b/actions/delete.ipam.vrfs.yaml index 6b40fabd..efe7ed01 100644 --- a/actions/delete.ipam.vrfs.yaml +++ b/actions/delete.ipam.vrfs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.tenancy.contact_assignments.yaml b/actions/delete.tenancy.contact_assignments.yaml index 8b38e098..d1be8ee2 100644 --- a/actions/delete.tenancy.contact_assignments.yaml +++ b/actions/delete.tenancy.contact_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.tenancy.contact_groups.yaml b/actions/delete.tenancy.contact_groups.yaml index 7234571e..02cc615a 100644 --- a/actions/delete.tenancy.contact_groups.yaml +++ b/actions/delete.tenancy.contact_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.tenancy.contact_roles.yaml b/actions/delete.tenancy.contact_roles.yaml index c73f820d..802517da 100644 --- a/actions/delete.tenancy.contact_roles.yaml +++ b/actions/delete.tenancy.contact_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.tenancy.contacts.yaml b/actions/delete.tenancy.contacts.yaml index b80b7e50..3d4550ca 100644 --- a/actions/delete.tenancy.contacts.yaml +++ b/actions/delete.tenancy.contacts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.tenancy.tenant_groups.yaml b/actions/delete.tenancy.tenant_groups.yaml index 5be23668..01606b14 100644 --- a/actions/delete.tenancy.tenant_groups.yaml +++ b/actions/delete.tenancy.tenant_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.tenancy.tenants.yaml b/actions/delete.tenancy.tenants.yaml index 0fd57d94..e142c7c6 100644 --- a/actions/delete.tenancy.tenants.yaml +++ b/actions/delete.tenancy.tenants.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.users.groups.yaml b/actions/delete.users.groups.yaml index c36858b6..85e16317 100644 --- a/actions/delete.users.groups.yaml +++ b/actions/delete.users.groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.users.permissions.yaml b/actions/delete.users.permissions.yaml index d1b017df..571d4846 100644 --- a/actions/delete.users.permissions.yaml +++ b/actions/delete.users.permissions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.users.tokens.yaml b/actions/delete.users.tokens.yaml index 8aea8357..fa723416 100644 --- a/actions/delete.users.tokens.yaml +++ b/actions/delete.users.tokens.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.users.users.yaml b/actions/delete.users.users.yaml index 2ac84bab..7ad5d81a 100644 --- a/actions/delete.users.users.yaml +++ b/actions/delete.users.users.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.virtualization.cluster_groups.yaml b/actions/delete.virtualization.cluster_groups.yaml index 0f2d14f8..76ece7bd 100644 --- a/actions/delete.virtualization.cluster_groups.yaml +++ b/actions/delete.virtualization.cluster_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.virtualization.cluster_types.yaml b/actions/delete.virtualization.cluster_types.yaml index e84fc4ea..ce243bfb 100644 --- a/actions/delete.virtualization.cluster_types.yaml +++ b/actions/delete.virtualization.cluster_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.virtualization.clusters.yaml b/actions/delete.virtualization.clusters.yaml index 97886ce9..c9723d44 100644 --- a/actions/delete.virtualization.clusters.yaml +++ b/actions/delete.virtualization.clusters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.virtualization.interfaces.yaml b/actions/delete.virtualization.interfaces.yaml index 254b3c20..76589a30 100644 --- a/actions/delete.virtualization.interfaces.yaml +++ b/actions/delete.virtualization.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.virtualization.virtual_disks.yaml b/actions/delete.virtualization.virtual_disks.yaml index d27e47ef..56b5d2eb 100644 --- a/actions/delete.virtualization.virtual_disks.yaml +++ b/actions/delete.virtualization.virtual_disks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.virtualization.virtual_machines.yaml b/actions/delete.virtualization.virtual_machines.yaml index 3ca59faa..101052fe 100644 --- a/actions/delete.virtualization.virtual_machines.yaml +++ b/actions/delete.virtualization.virtual_machines.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.ike_policies.yaml b/actions/delete.vpn.ike_policies.yaml index 8da93cd7..834a2c09 100644 --- a/actions/delete.vpn.ike_policies.yaml +++ b/actions/delete.vpn.ike_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.ike_proposals.yaml b/actions/delete.vpn.ike_proposals.yaml index 0c9e5d2d..1f7f25b2 100644 --- a/actions/delete.vpn.ike_proposals.yaml +++ b/actions/delete.vpn.ike_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.ipsec_policies.yaml b/actions/delete.vpn.ipsec_policies.yaml index 1abe18e9..0abf6b81 100644 --- a/actions/delete.vpn.ipsec_policies.yaml +++ b/actions/delete.vpn.ipsec_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.ipsec_profiles.yaml b/actions/delete.vpn.ipsec_profiles.yaml index 768e48f0..5e7f8c35 100644 --- a/actions/delete.vpn.ipsec_profiles.yaml +++ b/actions/delete.vpn.ipsec_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.ipsec_proposals.yaml b/actions/delete.vpn.ipsec_proposals.yaml index 49a6461d..717eeac9 100644 --- a/actions/delete.vpn.ipsec_proposals.yaml +++ b/actions/delete.vpn.ipsec_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.l2vpn_terminations.yaml b/actions/delete.vpn.l2vpn_terminations.yaml index 4ee91059..4ae5761d 100644 --- a/actions/delete.vpn.l2vpn_terminations.yaml +++ b/actions/delete.vpn.l2vpn_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.l2vpns.yaml b/actions/delete.vpn.l2vpns.yaml index 329df741..5988e5ce 100644 --- a/actions/delete.vpn.l2vpns.yaml +++ b/actions/delete.vpn.l2vpns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.tunnel_groups.yaml b/actions/delete.vpn.tunnel_groups.yaml index 551bbe7d..bf47431f 100644 --- a/actions/delete.vpn.tunnel_groups.yaml +++ b/actions/delete.vpn.tunnel_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.tunnel_terminations.yaml b/actions/delete.vpn.tunnel_terminations.yaml index 98e3097a..184e5977 100644 --- a/actions/delete.vpn.tunnel_terminations.yaml +++ b/actions/delete.vpn.tunnel_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.vpn.tunnels.yaml b/actions/delete.vpn.tunnels.yaml index 69ce372f..32851ff4 100644 --- a/actions/delete.vpn.tunnels.yaml +++ b/actions/delete.vpn.tunnels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.wireless.wireless_lan_groups.yaml b/actions/delete.wireless.wireless_lan_groups.yaml index 25473cf8..fbeaa968 100644 --- a/actions/delete.wireless.wireless_lan_groups.yaml +++ b/actions/delete.wireless.wireless_lan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.wireless.wireless_lans.yaml b/actions/delete.wireless.wireless_lans.yaml index 5266e29a..9c870715 100644 --- a/actions/delete.wireless.wireless_lans.yaml +++ b/actions/delete.wireless.wireless_lans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/delete.wireless.wireless_links.yaml b/actions/delete.wireless.wireless_links.yaml index 4c4ced39..5850b628 100644 --- a/actions/delete.wireless.wireless_links.yaml +++ b/actions/delete.wireless.wireless_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.circuits.circuit_group_assignments.yaml b/actions/get.circuits.circuit_group_assignments.yaml index bd52d681..6a804c22 100644 --- a/actions/get.circuits.circuit_group_assignments.yaml +++ b/actions/get.circuits.circuit_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. circuit: diff --git a/actions/get.circuits.circuit_groups.yaml b/actions/get.circuits.circuit_groups.yaml index 31d95005..2b6b40ab 100644 --- a/actions/get.circuits.circuit_groups.yaml +++ b/actions/get.circuits.circuit_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.circuits.circuit_terminations.paths.yaml b/actions/get.circuits.circuit_terminations.paths.yaml index 8c88f7e8..8aad1b2a 100644 --- a/actions/get.circuits.circuit_terminations.paths.yaml +++ b/actions/get.circuits.circuit_terminations.paths.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.circuits.circuit_terminations.yaml b/actions/get.circuits.circuit_terminations.yaml index ebf840cc..a8bfd8d9 100644 --- a/actions/get.circuits.circuit_terminations.yaml +++ b/actions/get.circuits.circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable_end: diff --git a/actions/get.circuits.circuit_types.yaml b/actions/get.circuits.circuit_types.yaml index 23f84689..02b24151 100644 --- a/actions/get.circuits.circuit_types.yaml +++ b/actions/get.circuits.circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.circuits.circuits.yaml b/actions/get.circuits.circuits.yaml index f96a7810..b97c4dd6 100644 --- a/actions/get.circuits.circuits.yaml +++ b/actions/get.circuits.circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/get.circuits.provider_accounts.yaml b/actions/get.circuits.provider_accounts.yaml index cf0668fe..45f02b16 100644 --- a/actions/get.circuits.provider_accounts.yaml +++ b/actions/get.circuits.provider_accounts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. account: diff --git a/actions/get.circuits.provider_networks.yaml b/actions/get.circuits.provider_networks.yaml index 20645325..d5b319cb 100644 --- a/actions/get.circuits.provider_networks.yaml +++ b/actions/get.circuits.provider_networks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.circuits.providers.yaml b/actions/get.circuits.providers.yaml index 04221d04..09995595 100644 --- a/actions/get.circuits.providers.yaml +++ b/actions/get.circuits.providers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asn: diff --git a/actions/get.circuits.virtual_circuit_terminations.paths.yaml b/actions/get.circuits.virtual_circuit_terminations.paths.yaml index 06ae8106..bdd96e37 100644 --- a/actions/get.circuits.virtual_circuit_terminations.paths.yaml +++ b/actions/get.circuits.virtual_circuit_terminations.paths.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.circuits.virtual_circuit_terminations.yaml b/actions/get.circuits.virtual_circuit_terminations.yaml index 28ccfdb4..801a8c8d 100644 --- a/actions/get.circuits.virtual_circuit_terminations.yaml +++ b/actions/get.circuits.virtual_circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.circuits.virtual_circuit_types.yaml b/actions/get.circuits.virtual_circuit_types.yaml index 4d37f69a..b67592a0 100644 --- a/actions/get.circuits.virtual_circuit_types.yaml +++ b/actions/get.circuits.virtual_circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.circuits.virtual_circuits.yaml b/actions/get.circuits.virtual_circuits.yaml index f4ab0679..7938d40e 100644 --- a/actions/get.circuits.virtual_circuits.yaml +++ b/actions/get.circuits.virtual_circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/get.core.data_files.yaml b/actions/get.core.data_files.yaml index 9724b7ee..58e605dc 100644 --- a/actions/get.core.data_files.yaml +++ b/actions/get.core.data_files.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.core.data_sources.yaml b/actions/get.core.data_sources.yaml index 0930eb24..7f31accb 100644 --- a/actions/get.core.data_sources.yaml +++ b/actions/get.core.data_sources.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.core.jobs.yaml b/actions/get.core.jobs.yaml index 704be785..c43dcb14 100644 --- a/actions/get.core.jobs.yaml +++ b/actions/get.core.jobs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. completed: diff --git a/actions/get.core.object_changes.yaml b/actions/get.core.object_changes.yaml index f0eb0a74..eb893d53 100644 --- a/actions/get.core.object_changes.yaml +++ b/actions/get.core.object_changes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. action: diff --git a/actions/get.dcim.cable_terminations.yaml b/actions/get.dcim.cable_terminations.yaml index 861f5e1c..c75b82e9 100644 --- a/actions/get.dcim.cable_terminations.yaml +++ b/actions/get.dcim.cable_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable: diff --git a/actions/get.dcim.cables.yaml b/actions/get.dcim.cables.yaml index 81a7cf99..96131997 100644 --- a/actions/get.dcim.cables.yaml +++ b/actions/get.dcim.cables.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. circuittermination_id: diff --git a/actions/get.dcim.connected_device.yaml b/actions/get.dcim.connected_device.yaml index d4f4d53c..7c229acf 100644 --- a/actions/get.dcim.connected_device.yaml +++ b/actions/get.dcim.connected_device.yaml @@ -23,7 +23,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. peer_device: diff --git a/actions/get.dcim.console_port_templates.yaml b/actions/get.dcim.console_port_templates.yaml index 9ffba8f9..7293b1fa 100644 --- a/actions/get.dcim.console_port_templates.yaml +++ b/actions/get.dcim.console_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.console_ports.trace.yaml b/actions/get.dcim.console_ports.trace.yaml index 28038927..2a9113a5 100644 --- a/actions/get.dcim.console_ports.trace.yaml +++ b/actions/get.dcim.console_ports.trace.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.console_ports.yaml b/actions/get.dcim.console_ports.yaml index ba553cd4..38cd3fc2 100644 --- a/actions/get.dcim.console_ports.yaml +++ b/actions/get.dcim.console_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable_end: diff --git a/actions/get.dcim.console_server_port_templates.yaml b/actions/get.dcim.console_server_port_templates.yaml index d1f28b36..962ec868 100644 --- a/actions/get.dcim.console_server_port_templates.yaml +++ b/actions/get.dcim.console_server_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.console_server_ports.trace.yaml b/actions/get.dcim.console_server_ports.trace.yaml index c1a4db9f..f5d3c7c3 100644 --- a/actions/get.dcim.console_server_ports.trace.yaml +++ b/actions/get.dcim.console_server_ports.trace.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.console_server_ports.yaml b/actions/get.dcim.console_server_ports.yaml index ffc96ce3..fb2b1620 100644 --- a/actions/get.dcim.console_server_ports.yaml +++ b/actions/get.dcim.console_server_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable_end: diff --git a/actions/get.dcim.device_bay_templates.yaml b/actions/get.dcim.device_bay_templates.yaml index 7f3fad0c..cf7391a2 100644 --- a/actions/get.dcim.device_bay_templates.yaml +++ b/actions/get.dcim.device_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.device_bays.yaml b/actions/get.dcim.device_bays.yaml index 508af49b..6eaa618a 100644 --- a/actions/get.dcim.device_bays.yaml +++ b/actions/get.dcim.device_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.device_roles.yaml b/actions/get.dcim.device_roles.yaml index 0d090002..d6abcfbf 100644 --- a/actions/get.dcim.device_roles.yaml +++ b/actions/get.dcim.device_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.dcim.device_types.yaml b/actions/get.dcim.device_types.yaml index e26b7038..860b96da 100644 --- a/actions/get.dcim.device_types.yaml +++ b/actions/get.dcim.device_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. airflow: diff --git a/actions/get.dcim.devices.yaml b/actions/get.dcim.devices.yaml index 2355c788..791afeaf 100644 --- a/actions/get.dcim.devices.yaml +++ b/actions/get.dcim.devices.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. airflow: diff --git a/actions/get.dcim.front_port_templates.yaml b/actions/get.dcim.front_port_templates.yaml index 62f9c187..6bc6994b 100644 --- a/actions/get.dcim.front_port_templates.yaml +++ b/actions/get.dcim.front_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.dcim.front_ports.paths.yaml b/actions/get.dcim.front_ports.paths.yaml index 905984a6..a776c103 100644 --- a/actions/get.dcim.front_ports.paths.yaml +++ b/actions/get.dcim.front_ports.paths.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.front_ports.yaml b/actions/get.dcim.front_ports.yaml index f0c3f5ea..7edfe15e 100644 --- a/actions/get.dcim.front_ports.yaml +++ b/actions/get.dcim.front_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable_end: diff --git a/actions/get.dcim.interface_templates.yaml b/actions/get.dcim.interface_templates.yaml index 2d26c748..04bb1765 100644 --- a/actions/get.dcim.interface_templates.yaml +++ b/actions/get.dcim.interface_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. bridge_id: diff --git a/actions/get.dcim.interfaces.trace.yaml b/actions/get.dcim.interfaces.trace.yaml index ab3ca51e..e70174df 100644 --- a/actions/get.dcim.interfaces.trace.yaml +++ b/actions/get.dcim.interfaces.trace.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.interfaces.yaml b/actions/get.dcim.interfaces.yaml index e88887b1..a12d9103 100644 --- a/actions/get.dcim.interfaces.yaml +++ b/actions/get.dcim.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. bridge_id: diff --git a/actions/get.dcim.inventory_item_roles.yaml b/actions/get.dcim.inventory_item_roles.yaml index e52cd094..21ef6f94 100644 --- a/actions/get.dcim.inventory_item_roles.yaml +++ b/actions/get.dcim.inventory_item_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.dcim.inventory_item_templates.yaml b/actions/get.dcim.inventory_item_templates.yaml index 38ca4ff2..b22a903b 100644 --- a/actions/get.dcim.inventory_item_templates.yaml +++ b/actions/get.dcim.inventory_item_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. component_id: diff --git a/actions/get.dcim.inventory_items.yaml b/actions/get.dcim.inventory_items.yaml index 1c7f2691..43d66f67 100644 --- a/actions/get.dcim.inventory_items.yaml +++ b/actions/get.dcim.inventory_items.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asset_tag: diff --git a/actions/get.dcim.locations.yaml b/actions/get.dcim.locations.yaml index 91c57f2c..4b374cb7 100644 --- a/actions/get.dcim.locations.yaml +++ b/actions/get.dcim.locations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.dcim.mac_addresses.yaml b/actions/get.dcim.mac_addresses.yaml index af466a42..94d70f7f 100644 --- a/actions/get.dcim.mac_addresses.yaml +++ b/actions/get.dcim.mac_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. assigned_object_id: diff --git a/actions/get.dcim.manufacturers.yaml b/actions/get.dcim.manufacturers.yaml index baffed5f..cf6a4db8 100644 --- a/actions/get.dcim.manufacturers.yaml +++ b/actions/get.dcim.manufacturers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.dcim.module_bay_templates.yaml b/actions/get.dcim.module_bay_templates.yaml index a037b3c6..514064e8 100644 --- a/actions/get.dcim.module_bay_templates.yaml +++ b/actions/get.dcim.module_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.module_bays.yaml b/actions/get.dcim.module_bays.yaml index 716905c1..483e9c3c 100644 --- a/actions/get.dcim.module_bays.yaml +++ b/actions/get.dcim.module_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.module_type_profiles.yaml b/actions/get.dcim.module_type_profiles.yaml index 5d8501e0..a519429d 100644 --- a/actions/get.dcim.module_type_profiles.yaml +++ b/actions/get.dcim.module_type_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.module_types.yaml b/actions/get.dcim.module_types.yaml index 957ac7b5..8ec8b53b 100644 --- a/actions/get.dcim.module_types.yaml +++ b/actions/get.dcim.module_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. airflow: diff --git a/actions/get.dcim.modules.yaml b/actions/get.dcim.modules.yaml index c5b05e2e..f1967f1d 100644 --- a/actions/get.dcim.modules.yaml +++ b/actions/get.dcim.modules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asset_tag: diff --git a/actions/get.dcim.platforms.yaml b/actions/get.dcim.platforms.yaml index d0fd71f2..a49eecc8 100644 --- a/actions/get.dcim.platforms.yaml +++ b/actions/get.dcim.platforms.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. available_for_device_type: diff --git a/actions/get.dcim.power_feeds.trace.yaml b/actions/get.dcim.power_feeds.trace.yaml index e31a0722..2dc51504 100644 --- a/actions/get.dcim.power_feeds.trace.yaml +++ b/actions/get.dcim.power_feeds.trace.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.power_feeds.yaml b/actions/get.dcim.power_feeds.yaml index b2943722..46a6614d 100644 --- a/actions/get.dcim.power_feeds.yaml +++ b/actions/get.dcim.power_feeds.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. amperage: diff --git a/actions/get.dcim.power_outlet_templates.yaml b/actions/get.dcim.power_outlet_templates.yaml index 14c015a8..165d3069 100644 --- a/actions/get.dcim.power_outlet_templates.yaml +++ b/actions/get.dcim.power_outlet_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.power_outlets.trace.yaml b/actions/get.dcim.power_outlets.trace.yaml index 4d70b14b..980d9cba 100644 --- a/actions/get.dcim.power_outlets.trace.yaml +++ b/actions/get.dcim.power_outlets.trace.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.power_outlets.yaml b/actions/get.dcim.power_outlets.yaml index f582f496..f171f7ce 100644 --- a/actions/get.dcim.power_outlets.yaml +++ b/actions/get.dcim.power_outlets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable_end: diff --git a/actions/get.dcim.power_panels.yaml b/actions/get.dcim.power_panels.yaml index a1c3d34f..17b958fc 100644 --- a/actions/get.dcim.power_panels.yaml +++ b/actions/get.dcim.power_panels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.dcim.power_port_templates.yaml b/actions/get.dcim.power_port_templates.yaml index beb12361..af1432d3 100644 --- a/actions/get.dcim.power_port_templates.yaml +++ b/actions/get.dcim.power_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. allocated_draw: diff --git a/actions/get.dcim.power_ports.trace.yaml b/actions/get.dcim.power_ports.trace.yaml index 8c2fcfec..d9369903 100644 --- a/actions/get.dcim.power_ports.trace.yaml +++ b/actions/get.dcim.power_ports.trace.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.power_ports.yaml b/actions/get.dcim.power_ports.yaml index 13c99b5a..666e5402 100644 --- a/actions/get.dcim.power_ports.yaml +++ b/actions/get.dcim.power_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. allocated_draw: diff --git a/actions/get.dcim.rack_reservations.yaml b/actions/get.dcim.rack_reservations.yaml index 756af5a9..9f8e92f8 100644 --- a/actions/get.dcim.rack_reservations.yaml +++ b/actions/get.dcim.rack_reservations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.rack_roles.yaml b/actions/get.dcim.rack_roles.yaml index 95e6b2e5..565fec7d 100644 --- a/actions/get.dcim.rack_roles.yaml +++ b/actions/get.dcim.rack_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.dcim.rack_types.yaml b/actions/get.dcim.rack_types.yaml index 79a7dbd6..7b2abd1d 100644 --- a/actions/get.dcim.rack_types.yaml +++ b/actions/get.dcim.rack_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.racks.elevation.yaml b/actions/get.dcim.racks.elevation.yaml index e28528bf..6641464f 100644 --- a/actions/get.dcim.racks.elevation.yaml +++ b/actions/get.dcim.racks.elevation.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.racks.yaml b/actions/get.dcim.racks.yaml index 1445deb1..a02e6106 100644 --- a/actions/get.dcim.racks.yaml +++ b/actions/get.dcim.racks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. airflow: diff --git a/actions/get.dcim.rear_port_templates.yaml b/actions/get.dcim.rear_port_templates.yaml index e5897e3d..5655f2cf 100644 --- a/actions/get.dcim.rear_port_templates.yaml +++ b/actions/get.dcim.rear_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.dcim.rear_ports.paths.yaml b/actions/get.dcim.rear_ports.paths.yaml index 02daf3eb..31721e62 100644 --- a/actions/get.dcim.rear_ports.paths.yaml +++ b/actions/get.dcim.rear_ports.paths.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.dcim.rear_ports.yaml b/actions/get.dcim.rear_ports.yaml index 7771a1e1..31748b0c 100644 --- a/actions/get.dcim.rear_ports.yaml +++ b/actions/get.dcim.rear_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable_end: diff --git a/actions/get.dcim.regions.yaml b/actions/get.dcim.regions.yaml index 36d27b3b..adb53f43 100644 --- a/actions/get.dcim.regions.yaml +++ b/actions/get.dcim.regions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.dcim.site_groups.yaml b/actions/get.dcim.site_groups.yaml index 71d06e49..f9e946d8 100644 --- a/actions/get.dcim.site_groups.yaml +++ b/actions/get.dcim.site_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.dcim.sites.yaml b/actions/get.dcim.sites.yaml index f31ecce9..30890fec 100644 --- a/actions/get.dcim.sites.yaml +++ b/actions/get.dcim.sites.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asn: diff --git a/actions/get.dcim.virtual_chassis.yaml b/actions/get.dcim.virtual_chassis.yaml index 839dd2e3..0bf79290 100644 --- a/actions/get.dcim.virtual_chassis.yaml +++ b/actions/get.dcim.virtual_chassis.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.dcim.virtual_device_contexts.yaml b/actions/get.dcim.virtual_device_contexts.yaml index 319d2a34..c210c109 100644 --- a/actions/get.dcim.virtual_device_contexts.yaml +++ b/actions/get.dcim.virtual_device_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.extras.bookmarks.yaml b/actions/get.extras.bookmarks.yaml index 8ac3c58d..53988a52 100644 --- a/actions/get.extras.bookmarks.yaml +++ b/actions/get.extras.bookmarks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.extras.config_contexts.yaml b/actions/get.extras.config_contexts.yaml index 24f790c8..9d248b04 100644 --- a/actions/get.extras.config_contexts.yaml +++ b/actions/get.extras.config_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. auto_sync_enabled: diff --git a/actions/get.extras.config_templates.yaml b/actions/get.extras.config_templates.yaml index ec1b0426..b4cd7caf 100644 --- a/actions/get.extras.config_templates.yaml +++ b/actions/get.extras.config_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. as_attachment: diff --git a/actions/get.extras.custom_field_choice_sets.choices.yaml b/actions/get.extras.custom_field_choice_sets.choices.yaml index 714bcffc..5957058c 100644 --- a/actions/get.extras.custom_field_choice_sets.choices.yaml +++ b/actions/get.extras.custom_field_choice_sets.choices.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.extras.custom_field_choice_sets.yaml b/actions/get.extras.custom_field_choice_sets.yaml index 6b328b13..9000b33c 100644 --- a/actions/get.extras.custom_field_choice_sets.yaml +++ b/actions/get.extras.custom_field_choice_sets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. base_choices: diff --git a/actions/get.extras.custom_fields.yaml b/actions/get.extras.custom_fields.yaml index a0ea7f2e..43e2798b 100644 --- a/actions/get.extras.custom_fields.yaml +++ b/actions/get.extras.custom_fields.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. choice_set: diff --git a/actions/get.extras.custom_links.yaml b/actions/get.extras.custom_links.yaml index 49a1bd20..95209bc7 100644 --- a/actions/get.extras.custom_links.yaml +++ b/actions/get.extras.custom_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. button_class: diff --git a/actions/get.extras.event_rules.yaml b/actions/get.extras.event_rules.yaml index f9b3ac1a..7581a746 100644 --- a/actions/get.extras.event_rules.yaml +++ b/actions/get.extras.event_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. action_object_id: diff --git a/actions/get.extras.export_templates.yaml b/actions/get.extras.export_templates.yaml index ad50fd10..bfe6a5aa 100644 --- a/actions/get.extras.export_templates.yaml +++ b/actions/get.extras.export_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. as_attachment: diff --git a/actions/get.extras.image_attachments.yaml b/actions/get.extras.image_attachments.yaml index 43d3a35a..9a8c5d36 100644 --- a/actions/get.extras.image_attachments.yaml +++ b/actions/get.extras.image_attachments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.extras.journal_entries.yaml b/actions/get.extras.journal_entries.yaml index f30f6761..3c1b129d 100644 --- a/actions/get.extras.journal_entries.yaml +++ b/actions/get.extras.journal_entries.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. assigned_object_id: diff --git a/actions/get.extras.notification_groups.yaml b/actions/get.extras.notification_groups.yaml index 0a7000ce..391c44b2 100644 --- a/actions/get.extras.notification_groups.yaml +++ b/actions/get.extras.notification_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. limit: diff --git a/actions/get.extras.notifications.yaml b/actions/get.extras.notifications.yaml index 7b54b104..119e779a 100644 --- a/actions/get.extras.notifications.yaml +++ b/actions/get.extras.notifications.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. limit: diff --git a/actions/get.extras.object_types.yaml b/actions/get.extras.object_types.yaml index 3857aaf8..b22e680c 100644 --- a/actions/get.extras.object_types.yaml +++ b/actions/get.extras.object_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. app_label: diff --git a/actions/get.extras.saved_filters.yaml b/actions/get.extras.saved_filters.yaml index a068dd0a..85fd6e65 100644 --- a/actions/get.extras.saved_filters.yaml +++ b/actions/get.extras.saved_filters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.extras.scripts.yaml b/actions/get.extras.scripts.yaml index 90debc97..7aadfb61 100644 --- a/actions/get.extras.scripts.yaml +++ b/actions/get.extras.scripts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.extras.subscriptions.yaml b/actions/get.extras.subscriptions.yaml index 3761e86d..cdcafa0b 100644 --- a/actions/get.extras.subscriptions.yaml +++ b/actions/get.extras.subscriptions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. limit: diff --git a/actions/get.extras.table_configs.yaml b/actions/get.extras.table_configs.yaml index f81f8ee1..4055df91 100644 --- a/actions/get.extras.table_configs.yaml +++ b/actions/get.extras.table_configs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.extras.tagged_objects.yaml b/actions/get.extras.tagged_objects.yaml index 06c9f2d3..2d74f038 100644 --- a/actions/get.extras.tagged_objects.yaml +++ b/actions/get.extras.tagged_objects.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.extras.tags.yaml b/actions/get.extras.tags.yaml index 8c4f73a0..67c19d05 100644 --- a/actions/get.extras.tags.yaml +++ b/actions/get.extras.tags.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. color: diff --git a/actions/get.extras.webhooks.yaml b/actions/get.extras.webhooks.yaml index c857c7db..f01d331c 100644 --- a/actions/get.extras.webhooks.yaml +++ b/actions/get.extras.webhooks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ca_file_path: diff --git a/actions/get.ipam.aggregates.yaml b/actions/get.ipam.aggregates.yaml index 4942cbd7..6956e510 100644 --- a/actions/get.ipam.aggregates.yaml +++ b/actions/get.ipam.aggregates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.ipam.asn_ranges.available_asns.yaml b/actions/get.ipam.asn_ranges.available_asns.yaml index ab217f1d..be0c8362 100644 --- a/actions/get.ipam.asn_ranges.available_asns.yaml +++ b/actions/get.ipam.asn_ranges.available_asns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.ipam.asn_ranges.yaml b/actions/get.ipam.asn_ranges.yaml index a597abd0..0d2ebe1e 100644 --- a/actions/get.ipam.asn_ranges.yaml +++ b/actions/get.ipam.asn_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.asns.yaml b/actions/get.ipam.asns.yaml index 9c369ad1..c4c75ede 100644 --- a/actions/get.ipam.asns.yaml +++ b/actions/get.ipam.asns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asn: diff --git a/actions/get.ipam.fhrp_group_assignments.yaml b/actions/get.ipam.fhrp_group_assignments.yaml index b436b781..a5f8fe42 100644 --- a/actions/get.ipam.fhrp_group_assignments.yaml +++ b/actions/get.ipam.fhrp_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.fhrp_groups.yaml b/actions/get.ipam.fhrp_groups.yaml index a9ef8bfa..7a9b8f30 100644 --- a/actions/get.ipam.fhrp_groups.yaml +++ b/actions/get.ipam.fhrp_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. auth_key: diff --git a/actions/get.ipam.ip_addresses.yaml b/actions/get.ipam.ip_addresses.yaml index e16a3955..abb7ee8f 100644 --- a/actions/get.ipam.ip_addresses.yaml +++ b/actions/get.ipam.ip_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. address: diff --git a/actions/get.ipam.ip_ranges.available_ips.yaml b/actions/get.ipam.ip_ranges.available_ips.yaml index 83f2471b..4b31904a 100644 --- a/actions/get.ipam.ip_ranges.available_ips.yaml +++ b/actions/get.ipam.ip_ranges.available_ips.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.ipam.ip_ranges.yaml b/actions/get.ipam.ip_ranges.yaml index 930741f9..bd9602b0 100644 --- a/actions/get.ipam.ip_ranges.yaml +++ b/actions/get.ipam.ip_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.ipam.prefixes.available_ips.yaml b/actions/get.ipam.prefixes.available_ips.yaml index 371d02ea..501a54e4 100644 --- a/actions/get.ipam.prefixes.available_ips.yaml +++ b/actions/get.ipam.prefixes.available_ips.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.ipam.prefixes.available_prefixes.yaml b/actions/get.ipam.prefixes.available_prefixes.yaml index db63b66a..9de0c32b 100644 --- a/actions/get.ipam.prefixes.available_prefixes.yaml +++ b/actions/get.ipam.prefixes.available_prefixes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.ipam.prefixes.yaml b/actions/get.ipam.prefixes.yaml index 0d080a47..fb461de3 100644 --- a/actions/get.ipam.prefixes.yaml +++ b/actions/get.ipam.prefixes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. children: diff --git a/actions/get.ipam.rirs.yaml b/actions/get.ipam.rirs.yaml index 12fc621a..052f1eea 100644 --- a/actions/get.ipam.rirs.yaml +++ b/actions/get.ipam.rirs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.roles.yaml b/actions/get.ipam.roles.yaml index 98ce002c..d6084482 100644 --- a/actions/get.ipam.roles.yaml +++ b/actions/get.ipam.roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.route_targets.yaml b/actions/get.ipam.route_targets.yaml index ad6d8173..1e7f61c0 100644 --- a/actions/get.ipam.route_targets.yaml +++ b/actions/get.ipam.route_targets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.service_templates.yaml b/actions/get.ipam.service_templates.yaml index 4dccc488..6d01c371 100644 --- a/actions/get.ipam.service_templates.yaml +++ b/actions/get.ipam.service_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.services.yaml b/actions/get.ipam.services.yaml index ab81488c..4859cfa5 100644 --- a/actions/get.ipam.services.yaml +++ b/actions/get.ipam.services.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.ipam.vlan_groups.available_vlans.yaml b/actions/get.ipam.vlan_groups.available_vlans.yaml index cd6e0ea1..cabc3d56 100644 --- a/actions/get.ipam.vlan_groups.available_vlans.yaml +++ b/actions/get.ipam.vlan_groups.available_vlans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. id: diff --git a/actions/get.ipam.vlan_groups.yaml b/actions/get.ipam.vlan_groups.yaml index 2e58da8e..9d731a7d 100644 --- a/actions/get.ipam.vlan_groups.yaml +++ b/actions/get.ipam.vlan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cluster: diff --git a/actions/get.ipam.vlan_translation_policies.yaml b/actions/get.ipam.vlan_translation_policies.yaml index 84e6f565..65c7a674 100644 --- a/actions/get.ipam.vlan_translation_policies.yaml +++ b/actions/get.ipam.vlan_translation_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.vlan_translation_rules.yaml b/actions/get.ipam.vlan_translation_rules.yaml index 2bbc568b..6a303e39 100644 --- a/actions/get.ipam.vlan_translation_rules.yaml +++ b/actions/get.ipam.vlan_translation_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.ipam.vlans.yaml b/actions/get.ipam.vlans.yaml index f054f714..00187d32 100644 --- a/actions/get.ipam.vlans.yaml +++ b/actions/get.ipam.vlans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. available_at_site: diff --git a/actions/get.ipam.vrfs.yaml b/actions/get.ipam.vrfs.yaml index 5d34be75..8dae71fb 100644 --- a/actions/get.ipam.vrfs.yaml +++ b/actions/get.ipam.vrfs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.tenancy.contact_assignments.yaml b/actions/get.tenancy.contact_assignments.yaml index f8e5b80f..bdac88d8 100644 --- a/actions/get.tenancy.contact_assignments.yaml +++ b/actions/get.tenancy.contact_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact_id: diff --git a/actions/get.tenancy.contact_groups.yaml b/actions/get.tenancy.contact_groups.yaml index 62999413..cdf8cf3b 100644 --- a/actions/get.tenancy.contact_groups.yaml +++ b/actions/get.tenancy.contact_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.tenancy.contact_roles.yaml b/actions/get.tenancy.contact_roles.yaml index 4e9491d8..894713be 100644 --- a/actions/get.tenancy.contact_roles.yaml +++ b/actions/get.tenancy.contact_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.tenancy.contacts.yaml b/actions/get.tenancy.contacts.yaml index 31b5d77f..620f57ac 100644 --- a/actions/get.tenancy.contacts.yaml +++ b/actions/get.tenancy.contacts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. address: diff --git a/actions/get.tenancy.tenant_groups.yaml b/actions/get.tenancy.tenant_groups.yaml index 765d9c0e..f960e85c 100644 --- a/actions/get.tenancy.tenant_groups.yaml +++ b/actions/get.tenancy.tenant_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.tenancy.tenants.yaml b/actions/get.tenancy.tenants.yaml index 80625e6f..a3ccf9c7 100644 --- a/actions/get.tenancy.tenants.yaml +++ b/actions/get.tenancy.tenants.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.users.groups.yaml b/actions/get.users.groups.yaml index 70fbfa75..a06c8d81 100644 --- a/actions/get.users.groups.yaml +++ b/actions/get.users.groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. description: diff --git a/actions/get.users.permissions.yaml b/actions/get.users.permissions.yaml index e238e425..88231d48 100644 --- a/actions/get.users.permissions.yaml +++ b/actions/get.users.permissions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. can_add: diff --git a/actions/get.users.tokens.yaml b/actions/get.users.tokens.yaml index 2a1a6db5..3ab4d39c 100644 --- a/actions/get.users.tokens.yaml +++ b/actions/get.users.tokens.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.users.users.yaml b/actions/get.users.users.yaml index 1f96632e..9e6c3f2f 100644 --- a/actions/get.users.users.yaml +++ b/actions/get.users.users.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. date_joined: diff --git a/actions/get.virtualization.cluster_groups.yaml b/actions/get.virtualization.cluster_groups.yaml index 1e88401a..fb5873de 100644 --- a/actions/get.virtualization.cluster_groups.yaml +++ b/actions/get.virtualization.cluster_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.virtualization.cluster_types.yaml b/actions/get.virtualization.cluster_types.yaml index 26c74eab..0840d7d5 100644 --- a/actions/get.virtualization.cluster_types.yaml +++ b/actions/get.virtualization.cluster_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.virtualization.clusters.yaml b/actions/get.virtualization.clusters.yaml index 1efc4c2c..110ac72f 100644 --- a/actions/get.virtualization.clusters.yaml +++ b/actions/get.virtualization.clusters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.virtualization.interfaces.yaml b/actions/get.virtualization.interfaces.yaml index 2a2b1b6e..f1bc05bf 100644 --- a/actions/get.virtualization.interfaces.yaml +++ b/actions/get.virtualization.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. bridge_id: diff --git a/actions/get.virtualization.virtual_disks.yaml b/actions/get.virtualization.virtual_disks.yaml index adee9811..9253945d 100644 --- a/actions/get.virtualization.virtual_disks.yaml +++ b/actions/get.virtualization.virtual_disks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.virtualization.virtual_machines.yaml b/actions/get.virtualization.virtual_machines.yaml index f2b9f1ae..778be18e 100644 --- a/actions/get.virtualization.virtual_machines.yaml +++ b/actions/get.virtualization.virtual_machines.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cluster: diff --git a/actions/get.vpn.ike_policies.yaml b/actions/get.vpn.ike_policies.yaml index a32b532d..256363b9 100644 --- a/actions/get.vpn.ike_policies.yaml +++ b/actions/get.vpn.ike_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.vpn.ike_proposals.yaml b/actions/get.vpn.ike_proposals.yaml index 4f822b6b..020983f2 100644 --- a/actions/get.vpn.ike_proposals.yaml +++ b/actions/get.vpn.ike_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. authentication_algorithm: diff --git a/actions/get.vpn.ipsec_policies.yaml b/actions/get.vpn.ipsec_policies.yaml index 3bc139af..f256553a 100644 --- a/actions/get.vpn.ipsec_policies.yaml +++ b/actions/get.vpn.ipsec_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.vpn.ipsec_profiles.yaml b/actions/get.vpn.ipsec_profiles.yaml index 2d679d3e..6fdd03eb 100644 --- a/actions/get.vpn.ipsec_profiles.yaml +++ b/actions/get.vpn.ipsec_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.vpn.ipsec_proposals.yaml b/actions/get.vpn.ipsec_proposals.yaml index 8043576f..aa746674 100644 --- a/actions/get.vpn.ipsec_proposals.yaml +++ b/actions/get.vpn.ipsec_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. authentication_algorithm: diff --git a/actions/get.vpn.l2vpn_terminations.yaml b/actions/get.vpn.l2vpn_terminations.yaml index ec41d16f..1fc0b76c 100644 --- a/actions/get.vpn.l2vpn_terminations.yaml +++ b/actions/get.vpn.l2vpn_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. assigned_object_id: diff --git a/actions/get.vpn.l2vpns.yaml b/actions/get.vpn.l2vpns.yaml index 5920ed16..03b3e0bd 100644 --- a/actions/get.vpn.l2vpns.yaml +++ b/actions/get.vpn.l2vpns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.vpn.tunnel_groups.yaml b/actions/get.vpn.tunnel_groups.yaml index 0dc15b3d..7801fe7e 100644 --- a/actions/get.vpn.tunnel_groups.yaml +++ b/actions/get.vpn.tunnel_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.vpn.tunnel_terminations.yaml b/actions/get.vpn.tunnel_terminations.yaml index f5ab6e56..5bfb0ea6 100644 --- a/actions/get.vpn.tunnel_terminations.yaml +++ b/actions/get.vpn.tunnel_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. created: diff --git a/actions/get.vpn.tunnels.yaml b/actions/get.vpn.tunnels.yaml index 43128ace..13405ec9 100644 --- a/actions/get.vpn.tunnels.yaml +++ b/actions/get.vpn.tunnels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. contact: diff --git a/actions/get.wireless.wireless_lan_groups.yaml b/actions/get.wireless.wireless_lan_groups.yaml index 7cfed65a..8f756c63 100644 --- a/actions/get.wireless.wireless_lan_groups.yaml +++ b/actions/get.wireless.wireless_lan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ancestor: diff --git a/actions/get.wireless.wireless_lans.yaml b/actions/get.wireless.wireless_lans.yaml index f523ac79..e577961b 100644 --- a/actions/get.wireless.wireless_lans.yaml +++ b/actions/get.wireless.wireless_lans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. auth_cipher: diff --git a/actions/get.wireless.wireless_links.yaml b/actions/get.wireless.wireless_links.yaml index da9062ce..764f4739 100644 --- a/actions/get.wireless.wireless_links.yaml +++ b/actions/get.wireless.wireless_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. auth_cipher: diff --git a/actions/patch.circuits.circuit_group_assignments.yaml b/actions/patch.circuits.circuit_group_assignments.yaml index 6c6714ae..5c62df08 100644 --- a/actions/patch.circuits.circuit_group_assignments.yaml +++ b/actions/patch.circuits.circuit_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. group: diff --git a/actions/patch.circuits.circuit_groups.yaml b/actions/patch.circuits.circuit_groups.yaml index e0f379cc..3aa1e67f 100644 --- a/actions/patch.circuits.circuit_groups.yaml +++ b/actions/patch.circuits.circuit_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.circuits.circuit_terminations.yaml b/actions/patch.circuits.circuit_terminations.yaml index f0c82229..093a556c 100644 --- a/actions/patch.circuits.circuit_terminations.yaml +++ b/actions/patch.circuits.circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. circuit: diff --git a/actions/patch.circuits.circuit_types.yaml b/actions/patch.circuits.circuit_types.yaml index 38d3d0e4..9f0e1c41 100644 --- a/actions/patch.circuits.circuit_types.yaml +++ b/actions/patch.circuits.circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.circuits.circuits.yaml b/actions/patch.circuits.circuits.yaml index ef04b8bf..d28343d4 100644 --- a/actions/patch.circuits.circuits.yaml +++ b/actions/patch.circuits.circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/patch.circuits.provider_accounts.yaml b/actions/patch.circuits.provider_accounts.yaml index 56d81f29..01e508f6 100644 --- a/actions/patch.circuits.provider_accounts.yaml +++ b/actions/patch.circuits.provider_accounts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. provider: diff --git a/actions/patch.circuits.provider_networks.yaml b/actions/patch.circuits.provider_networks.yaml index e67ffe9a..0b0f0695 100644 --- a/actions/patch.circuits.provider_networks.yaml +++ b/actions/patch.circuits.provider_networks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. provider: diff --git a/actions/patch.circuits.providers.yaml b/actions/patch.circuits.providers.yaml index 2ad9c9a9..70f2dd1e 100644 --- a/actions/patch.circuits.providers.yaml +++ b/actions/patch.circuits.providers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.circuits.virtual_circuit_terminations.yaml b/actions/patch.circuits.virtual_circuit_terminations.yaml index 13d8d475..8dabbe80 100644 --- a/actions/patch.circuits.virtual_circuit_terminations.yaml +++ b/actions/patch.circuits.virtual_circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_circuit: diff --git a/actions/patch.circuits.virtual_circuit_types.yaml b/actions/patch.circuits.virtual_circuit_types.yaml index d352fde8..29fca1af 100644 --- a/actions/patch.circuits.virtual_circuit_types.yaml +++ b/actions/patch.circuits.virtual_circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.circuits.virtual_circuits.yaml b/actions/patch.circuits.virtual_circuits.yaml index 29239d4c..ddece16a 100644 --- a/actions/patch.circuits.virtual_circuits.yaml +++ b/actions/patch.circuits.virtual_circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/patch.core.data_sources.yaml b/actions/patch.core.data_sources.yaml index cd9362c6..0b1cb25e 100644 --- a/actions/patch.core.data_sources.yaml +++ b/actions/patch.core.data_sources.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.cable_terminations.yaml b/actions/patch.dcim.cable_terminations.yaml index 1c0c8c5b..b320f11b 100644 --- a/actions/patch.dcim.cable_terminations.yaml +++ b/actions/patch.dcim.cable_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable: diff --git a/actions/patch.dcim.cables.yaml b/actions/patch.dcim.cables.yaml index b5c4e11d..78a6ee2a 100644 --- a/actions/patch.dcim.cables.yaml +++ b/actions/patch.dcim.cables.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. type: diff --git a/actions/patch.dcim.console_port_templates.yaml b/actions/patch.dcim.console_port_templates.yaml index 6f7f7c13..c2eb1f83 100644 --- a/actions/patch.dcim.console_port_templates.yaml +++ b/actions/patch.dcim.console_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.console_ports.yaml b/actions/patch.dcim.console_ports.yaml index 409fb9f4..8c5bf55e 100644 --- a/actions/patch.dcim.console_ports.yaml +++ b/actions/patch.dcim.console_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.console_server_port_templates.yaml b/actions/patch.dcim.console_server_port_templates.yaml index bed4de64..390245f7 100644 --- a/actions/patch.dcim.console_server_port_templates.yaml +++ b/actions/patch.dcim.console_server_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.console_server_ports.yaml b/actions/patch.dcim.console_server_ports.yaml index 7209ea24..b36279df 100644 --- a/actions/patch.dcim.console_server_ports.yaml +++ b/actions/patch.dcim.console_server_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.device_bay_templates.yaml b/actions/patch.dcim.device_bay_templates.yaml index 861fbc3d..0b1100d7 100644 --- a/actions/patch.dcim.device_bay_templates.yaml +++ b/actions/patch.dcim.device_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.device_bays.yaml b/actions/patch.dcim.device_bays.yaml index 864c2ee2..70729adb 100644 --- a/actions/patch.dcim.device_bays.yaml +++ b/actions/patch.dcim.device_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.device_roles.yaml b/actions/patch.dcim.device_roles.yaml index 8fde48c1..c47b8723 100644 --- a/actions/patch.dcim.device_roles.yaml +++ b/actions/patch.dcim.device_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.device_types.yaml b/actions/patch.dcim.device_types.yaml index 48e0b05a..0f761326 100644 --- a/actions/patch.dcim.device_types.yaml +++ b/actions/patch.dcim.device_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. manufacturer: diff --git a/actions/patch.dcim.devices.yaml b/actions/patch.dcim.devices.yaml index 58266aea..b6f4273f 100644 --- a/actions/patch.dcim.devices.yaml +++ b/actions/patch.dcim.devices.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.front_port_templates.yaml b/actions/patch.dcim.front_port_templates.yaml index 8ccebb79..ecd29725 100644 --- a/actions/patch.dcim.front_port_templates.yaml +++ b/actions/patch.dcim.front_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.front_ports.yaml b/actions/patch.dcim.front_ports.yaml index 2fcf4926..c1bb63a3 100644 --- a/actions/patch.dcim.front_ports.yaml +++ b/actions/patch.dcim.front_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.interface_templates.yaml b/actions/patch.dcim.interface_templates.yaml index 22901350..988b18b0 100644 --- a/actions/patch.dcim.interface_templates.yaml +++ b/actions/patch.dcim.interface_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.interfaces.yaml b/actions/patch.dcim.interfaces.yaml index 0732e152..a630b5d2 100644 --- a/actions/patch.dcim.interfaces.yaml +++ b/actions/patch.dcim.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.inventory_item_roles.yaml b/actions/patch.dcim.inventory_item_roles.yaml index 405c276b..5c84c843 100644 --- a/actions/patch.dcim.inventory_item_roles.yaml +++ b/actions/patch.dcim.inventory_item_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.inventory_item_templates.yaml b/actions/patch.dcim.inventory_item_templates.yaml index 71e4133c..e30f2c46 100644 --- a/actions/patch.dcim.inventory_item_templates.yaml +++ b/actions/patch.dcim.inventory_item_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.inventory_items.yaml b/actions/patch.dcim.inventory_items.yaml index 0c2721f0..739f2974 100644 --- a/actions/patch.dcim.inventory_items.yaml +++ b/actions/patch.dcim.inventory_items.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.locations.yaml b/actions/patch.dcim.locations.yaml index d658909e..9577c32f 100644 --- a/actions/patch.dcim.locations.yaml +++ b/actions/patch.dcim.locations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.mac_addresses.yaml b/actions/patch.dcim.mac_addresses.yaml index d0fe20f9..67405f89 100644 --- a/actions/patch.dcim.mac_addresses.yaml +++ b/actions/patch.dcim.mac_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. mac_address: diff --git a/actions/patch.dcim.manufacturers.yaml b/actions/patch.dcim.manufacturers.yaml index c7d7737e..66a600cd 100644 --- a/actions/patch.dcim.manufacturers.yaml +++ b/actions/patch.dcim.manufacturers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.module_bay_templates.yaml b/actions/patch.dcim.module_bay_templates.yaml index a8bf6465..c218e2d8 100644 --- a/actions/patch.dcim.module_bay_templates.yaml +++ b/actions/patch.dcim.module_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.module_bays.yaml b/actions/patch.dcim.module_bays.yaml index f37eb056..e1883f19 100644 --- a/actions/patch.dcim.module_bays.yaml +++ b/actions/patch.dcim.module_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.module_type_profiles.yaml b/actions/patch.dcim.module_type_profiles.yaml index 31eb5c23..3d24583a 100644 --- a/actions/patch.dcim.module_type_profiles.yaml +++ b/actions/patch.dcim.module_type_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.module_types.yaml b/actions/patch.dcim.module_types.yaml index 29bb0b27..70531f56 100644 --- a/actions/patch.dcim.module_types.yaml +++ b/actions/patch.dcim.module_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. profile: diff --git a/actions/patch.dcim.modules.yaml b/actions/patch.dcim.modules.yaml index 9db51964..2cc1e819 100644 --- a/actions/patch.dcim.modules.yaml +++ b/actions/patch.dcim.modules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.platforms.yaml b/actions/patch.dcim.platforms.yaml index 5bda2365..8d232b3c 100644 --- a/actions/patch.dcim.platforms.yaml +++ b/actions/patch.dcim.platforms.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.power_feeds.yaml b/actions/patch.dcim.power_feeds.yaml index dd5f1e03..578360eb 100644 --- a/actions/patch.dcim.power_feeds.yaml +++ b/actions/patch.dcim.power_feeds.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. power_panel: diff --git a/actions/patch.dcim.power_outlet_templates.yaml b/actions/patch.dcim.power_outlet_templates.yaml index 4d669ba7..36ab58e7 100644 --- a/actions/patch.dcim.power_outlet_templates.yaml +++ b/actions/patch.dcim.power_outlet_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.power_outlets.yaml b/actions/patch.dcim.power_outlets.yaml index 8fcf0582..8bd268cd 100644 --- a/actions/patch.dcim.power_outlets.yaml +++ b/actions/patch.dcim.power_outlets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.power_panels.yaml b/actions/patch.dcim.power_panels.yaml index ce93b455..642fd782 100644 --- a/actions/patch.dcim.power_panels.yaml +++ b/actions/patch.dcim.power_panels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. site: diff --git a/actions/patch.dcim.power_port_templates.yaml b/actions/patch.dcim.power_port_templates.yaml index a9d2b572..877ddfdc 100644 --- a/actions/patch.dcim.power_port_templates.yaml +++ b/actions/patch.dcim.power_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.power_ports.yaml b/actions/patch.dcim.power_ports.yaml index bc53f39d..f6e41dc2 100644 --- a/actions/patch.dcim.power_ports.yaml +++ b/actions/patch.dcim.power_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.rack_reservations.yaml b/actions/patch.dcim.rack_reservations.yaml index 2b898964..5fcfd0a2 100644 --- a/actions/patch.dcim.rack_reservations.yaml +++ b/actions/patch.dcim.rack_reservations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. rack: diff --git a/actions/patch.dcim.rack_roles.yaml b/actions/patch.dcim.rack_roles.yaml index ba18e119..3de20325 100644 --- a/actions/patch.dcim.rack_roles.yaml +++ b/actions/patch.dcim.rack_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.rack_types.yaml b/actions/patch.dcim.rack_types.yaml index 9f4f9b8e..5d69ba30 100644 --- a/actions/patch.dcim.rack_types.yaml +++ b/actions/patch.dcim.rack_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. manufacturer: diff --git a/actions/patch.dcim.racks.yaml b/actions/patch.dcim.racks.yaml index bf607dfb..5ba870c2 100644 --- a/actions/patch.dcim.racks.yaml +++ b/actions/patch.dcim.racks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.rear_port_templates.yaml b/actions/patch.dcim.rear_port_templates.yaml index 0b86e509..4590fd32 100644 --- a/actions/patch.dcim.rear_port_templates.yaml +++ b/actions/patch.dcim.rear_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/patch.dcim.rear_ports.yaml b/actions/patch.dcim.rear_ports.yaml index c20e20e1..c3dfbbc3 100644 --- a/actions/patch.dcim.rear_ports.yaml +++ b/actions/patch.dcim.rear_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/patch.dcim.regions.yaml b/actions/patch.dcim.regions.yaml index 2c8f80ad..515fe130 100644 --- a/actions/patch.dcim.regions.yaml +++ b/actions/patch.dcim.regions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.site_groups.yaml b/actions/patch.dcim.site_groups.yaml index 54caecad..26191c1b 100644 --- a/actions/patch.dcim.site_groups.yaml +++ b/actions/patch.dcim.site_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.sites.yaml b/actions/patch.dcim.sites.yaml index 89af31fb..eb48eb49 100644 --- a/actions/patch.dcim.sites.yaml +++ b/actions/patch.dcim.sites.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.virtual_chassis.yaml b/actions/patch.dcim.virtual_chassis.yaml index 474e1eac..8ea0b0e6 100644 --- a/actions/patch.dcim.virtual_chassis.yaml +++ b/actions/patch.dcim.virtual_chassis.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.dcim.virtual_device_contexts.yaml b/actions/patch.dcim.virtual_device_contexts.yaml index fb3fc53c..f6f890fc 100644 --- a/actions/patch.dcim.virtual_device_contexts.yaml +++ b/actions/patch.dcim.virtual_device_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.extras.bookmarks.yaml b/actions/patch.extras.bookmarks.yaml index 631b7fdb..c1a3b53a 100644 --- a/actions/patch.extras.bookmarks.yaml +++ b/actions/patch.extras.bookmarks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/patch.extras.config_contexts.yaml b/actions/patch.extras.config_contexts.yaml index 59f1f69c..57edeaba 100644 --- a/actions/patch.extras.config_contexts.yaml +++ b/actions/patch.extras.config_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.extras.config_templates.yaml b/actions/patch.extras.config_templates.yaml index 8477dfc4..bcb433bb 100644 --- a/actions/patch.extras.config_templates.yaml +++ b/actions/patch.extras.config_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.extras.custom_field_choice_sets.yaml b/actions/patch.extras.custom_field_choice_sets.yaml index a76b2303..2c2e0699 100644 --- a/actions/patch.extras.custom_field_choice_sets.yaml +++ b/actions/patch.extras.custom_field_choice_sets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.extras.custom_fields.yaml b/actions/patch.extras.custom_fields.yaml index b3eafd5f..8953aace 100644 --- a/actions/patch.extras.custom_fields.yaml +++ b/actions/patch.extras.custom_fields.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/patch.extras.custom_links.yaml b/actions/patch.extras.custom_links.yaml index ccbfd185..c0bf1299 100644 --- a/actions/patch.extras.custom_links.yaml +++ b/actions/patch.extras.custom_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/patch.extras.dashboard.yaml b/actions/patch.extras.dashboard.yaml index 497e29c1..23dbdd3e 100644 --- a/actions/patch.extras.dashboard.yaml +++ b/actions/patch.extras.dashboard.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. layout: diff --git a/actions/patch.extras.event_rules.yaml b/actions/patch.extras.event_rules.yaml index b4f2d961..9f3cc697 100644 --- a/actions/patch.extras.event_rules.yaml +++ b/actions/patch.extras.event_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/patch.extras.export_templates.yaml b/actions/patch.extras.export_templates.yaml index 275b5035..139eedc9 100644 --- a/actions/patch.extras.export_templates.yaml +++ b/actions/patch.extras.export_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/patch.extras.image_attachments.yaml b/actions/patch.extras.image_attachments.yaml index b458e853..c969576d 100644 --- a/actions/patch.extras.image_attachments.yaml +++ b/actions/patch.extras.image_attachments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/patch.extras.journal_entries.yaml b/actions/patch.extras.journal_entries.yaml index f4f3a6d2..af29651e 100644 --- a/actions/patch.extras.journal_entries.yaml +++ b/actions/patch.extras.journal_entries.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. assigned_object_type: diff --git a/actions/patch.extras.notification_groups.yaml b/actions/patch.extras.notification_groups.yaml index 48b0e5c2..85454639 100644 --- a/actions/patch.extras.notification_groups.yaml +++ b/actions/patch.extras.notification_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.extras.notifications.yaml b/actions/patch.extras.notifications.yaml index 289bf22c..decf98f2 100644 --- a/actions/patch.extras.notifications.yaml +++ b/actions/patch.extras.notifications.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/patch.extras.saved_filters.yaml b/actions/patch.extras.saved_filters.yaml index 1cc46c74..b51adbaa 100644 --- a/actions/patch.extras.saved_filters.yaml +++ b/actions/patch.extras.saved_filters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/patch.extras.scripts.yaml b/actions/patch.extras.scripts.yaml index d1a159dc..817ef13a 100644 --- a/actions/patch.extras.scripts.yaml +++ b/actions/patch.extras.scripts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. data: diff --git a/actions/patch.extras.subscriptions.yaml b/actions/patch.extras.subscriptions.yaml index 53acdffb..f6413562 100644 --- a/actions/patch.extras.subscriptions.yaml +++ b/actions/patch.extras.subscriptions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/patch.extras.table_configs.yaml b/actions/patch.extras.table_configs.yaml index 760a79fb..cd2350bb 100644 --- a/actions/patch.extras.table_configs.yaml +++ b/actions/patch.extras.table_configs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/patch.extras.tags.yaml b/actions/patch.extras.tags.yaml index 8431ccb4..f78f7369 100644 --- a/actions/patch.extras.tags.yaml +++ b/actions/patch.extras.tags.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.extras.webhooks.yaml b/actions/patch.extras.webhooks.yaml index d55a4e3d..e7b9185e 100644 --- a/actions/patch.extras.webhooks.yaml +++ b/actions/patch.extras.webhooks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.aggregates.yaml b/actions/patch.ipam.aggregates.yaml index 98ce9439..0565ddd8 100644 --- a/actions/patch.ipam.aggregates.yaml +++ b/actions/patch.ipam.aggregates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. prefix: diff --git a/actions/patch.ipam.asn_ranges.yaml b/actions/patch.ipam.asn_ranges.yaml index 58e3ec0d..38343dcf 100644 --- a/actions/patch.ipam.asn_ranges.yaml +++ b/actions/patch.ipam.asn_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.asns.yaml b/actions/patch.ipam.asns.yaml index cc5c6da4..77d09870 100644 --- a/actions/patch.ipam.asns.yaml +++ b/actions/patch.ipam.asns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asn: diff --git a/actions/patch.ipam.fhrp_group_assignments.yaml b/actions/patch.ipam.fhrp_group_assignments.yaml index 0d2d3305..a96666b5 100644 --- a/actions/patch.ipam.fhrp_group_assignments.yaml +++ b/actions/patch.ipam.fhrp_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. group: diff --git a/actions/patch.ipam.fhrp_groups.yaml b/actions/patch.ipam.fhrp_groups.yaml index 3c6466a8..7f19c425 100644 --- a/actions/patch.ipam.fhrp_groups.yaml +++ b/actions/patch.ipam.fhrp_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.ip_addresses.yaml b/actions/patch.ipam.ip_addresses.yaml index ad4b153c..01ea6db0 100644 --- a/actions/patch.ipam.ip_addresses.yaml +++ b/actions/patch.ipam.ip_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. address: diff --git a/actions/patch.ipam.ip_ranges.yaml b/actions/patch.ipam.ip_ranges.yaml index f216b009..b28cfc11 100644 --- a/actions/patch.ipam.ip_ranges.yaml +++ b/actions/patch.ipam.ip_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. start_address: diff --git a/actions/patch.ipam.prefixes.yaml b/actions/patch.ipam.prefixes.yaml index bfb5b8d8..2fe21374 100644 --- a/actions/patch.ipam.prefixes.yaml +++ b/actions/patch.ipam.prefixes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. prefix: diff --git a/actions/patch.ipam.rirs.yaml b/actions/patch.ipam.rirs.yaml index 71cd72eb..2d603534 100644 --- a/actions/patch.ipam.rirs.yaml +++ b/actions/patch.ipam.rirs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.roles.yaml b/actions/patch.ipam.roles.yaml index aff795ef..d5e4b021 100644 --- a/actions/patch.ipam.roles.yaml +++ b/actions/patch.ipam.roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.route_targets.yaml b/actions/patch.ipam.route_targets.yaml index 7c2ab4f1..969d0bfd 100644 --- a/actions/patch.ipam.route_targets.yaml +++ b/actions/patch.ipam.route_targets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.service_templates.yaml b/actions/patch.ipam.service_templates.yaml index d073ce1b..568cc632 100644 --- a/actions/patch.ipam.service_templates.yaml +++ b/actions/patch.ipam.service_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.services.yaml b/actions/patch.ipam.services.yaml index d9abe664..e3728d94 100644 --- a/actions/patch.ipam.services.yaml +++ b/actions/patch.ipam.services.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. parent_object_type: diff --git a/actions/patch.ipam.vlan_groups.yaml b/actions/patch.ipam.vlan_groups.yaml index acee22a1..fa54ed7e 100644 --- a/actions/patch.ipam.vlan_groups.yaml +++ b/actions/patch.ipam.vlan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.vlan_translation_policies.yaml b/actions/patch.ipam.vlan_translation_policies.yaml index 0ec87071..d0a48eca 100644 --- a/actions/patch.ipam.vlan_translation_policies.yaml +++ b/actions/patch.ipam.vlan_translation_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.ipam.vlan_translation_rules.yaml b/actions/patch.ipam.vlan_translation_rules.yaml index abbd3987..a8a933bf 100644 --- a/actions/patch.ipam.vlan_translation_rules.yaml +++ b/actions/patch.ipam.vlan_translation_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. policy: diff --git a/actions/patch.ipam.vlans.yaml b/actions/patch.ipam.vlans.yaml index 2d93a4ef..521fb252 100644 --- a/actions/patch.ipam.vlans.yaml +++ b/actions/patch.ipam.vlans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. site: diff --git a/actions/patch.ipam.vrfs.yaml b/actions/patch.ipam.vrfs.yaml index 30c6c7e0..3007ef6d 100644 --- a/actions/patch.ipam.vrfs.yaml +++ b/actions/patch.ipam.vrfs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.tenancy.contact_assignments.yaml b/actions/patch.tenancy.contact_assignments.yaml index 353cc65a..c546342b 100644 --- a/actions/patch.tenancy.contact_assignments.yaml +++ b/actions/patch.tenancy.contact_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/patch.tenancy.contact_groups.yaml b/actions/patch.tenancy.contact_groups.yaml index fde7c4fa..342b2384 100644 --- a/actions/patch.tenancy.contact_groups.yaml +++ b/actions/patch.tenancy.contact_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.tenancy.contact_roles.yaml b/actions/patch.tenancy.contact_roles.yaml index 9f2c7964..0fc900b2 100644 --- a/actions/patch.tenancy.contact_roles.yaml +++ b/actions/patch.tenancy.contact_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.tenancy.contacts.yaml b/actions/patch.tenancy.contacts.yaml index be5e3606..52fe90e9 100644 --- a/actions/patch.tenancy.contacts.yaml +++ b/actions/patch.tenancy.contacts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. groups: diff --git a/actions/patch.tenancy.tenant_groups.yaml b/actions/patch.tenancy.tenant_groups.yaml index e3081c3a..cda00b46 100644 --- a/actions/patch.tenancy.tenant_groups.yaml +++ b/actions/patch.tenancy.tenant_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.tenancy.tenants.yaml b/actions/patch.tenancy.tenants.yaml index c6f1a226..5f705652 100644 --- a/actions/patch.tenancy.tenants.yaml +++ b/actions/patch.tenancy.tenants.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.users.groups.yaml b/actions/patch.users.groups.yaml index 46228b86..435167fc 100644 --- a/actions/patch.users.groups.yaml +++ b/actions/patch.users.groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.users.permissions.yaml b/actions/patch.users.permissions.yaml index 7fbce2c2..de81daef 100644 --- a/actions/patch.users.permissions.yaml +++ b/actions/patch.users.permissions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.users.tokens.yaml b/actions/patch.users.tokens.yaml index f3e82b25..0df019b8 100644 --- a/actions/patch.users.tokens.yaml +++ b/actions/patch.users.tokens.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. user: diff --git a/actions/patch.users.users.yaml b/actions/patch.users.users.yaml index a8662264..db893dea 100644 --- a/actions/patch.users.users.yaml +++ b/actions/patch.users.users.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. username: diff --git a/actions/patch.virtualization.cluster_groups.yaml b/actions/patch.virtualization.cluster_groups.yaml index a9c1dec4..48c8e9de 100644 --- a/actions/patch.virtualization.cluster_groups.yaml +++ b/actions/patch.virtualization.cluster_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.virtualization.cluster_types.yaml b/actions/patch.virtualization.cluster_types.yaml index fd27606f..02924030 100644 --- a/actions/patch.virtualization.cluster_types.yaml +++ b/actions/patch.virtualization.cluster_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.virtualization.clusters.yaml b/actions/patch.virtualization.clusters.yaml index e0b34abf..929f4bde 100644 --- a/actions/patch.virtualization.clusters.yaml +++ b/actions/patch.virtualization.clusters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.virtualization.interfaces.yaml b/actions/patch.virtualization.interfaces.yaml index 7caca2c8..4f71c9dc 100644 --- a/actions/patch.virtualization.interfaces.yaml +++ b/actions/patch.virtualization.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_machine: diff --git a/actions/patch.virtualization.virtual_disks.yaml b/actions/patch.virtualization.virtual_disks.yaml index 48627792..c23b6aa6 100644 --- a/actions/patch.virtualization.virtual_disks.yaml +++ b/actions/patch.virtualization.virtual_disks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_machine: diff --git a/actions/patch.virtualization.virtual_machines.yaml b/actions/patch.virtualization.virtual_machines.yaml index 5a190e02..be678a76 100644 --- a/actions/patch.virtualization.virtual_machines.yaml +++ b/actions/patch.virtualization.virtual_machines.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.ike_policies.yaml b/actions/patch.vpn.ike_policies.yaml index 35a05744..2f61e374 100644 --- a/actions/patch.vpn.ike_policies.yaml +++ b/actions/patch.vpn.ike_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.ike_proposals.yaml b/actions/patch.vpn.ike_proposals.yaml index e7da3c40..ae976e67 100644 --- a/actions/patch.vpn.ike_proposals.yaml +++ b/actions/patch.vpn.ike_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.ipsec_policies.yaml b/actions/patch.vpn.ipsec_policies.yaml index 0f75140a..0a7925d2 100644 --- a/actions/patch.vpn.ipsec_policies.yaml +++ b/actions/patch.vpn.ipsec_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.ipsec_profiles.yaml b/actions/patch.vpn.ipsec_profiles.yaml index e8fa2069..0265d7ad 100644 --- a/actions/patch.vpn.ipsec_profiles.yaml +++ b/actions/patch.vpn.ipsec_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.ipsec_proposals.yaml b/actions/patch.vpn.ipsec_proposals.yaml index 7f5c8cda..f2892cb1 100644 --- a/actions/patch.vpn.ipsec_proposals.yaml +++ b/actions/patch.vpn.ipsec_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.l2vpn_terminations.yaml b/actions/patch.vpn.l2vpn_terminations.yaml index bb5a8475..7e38124b 100644 --- a/actions/patch.vpn.l2vpn_terminations.yaml +++ b/actions/patch.vpn.l2vpn_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. l2vpn: diff --git a/actions/patch.vpn.l2vpns.yaml b/actions/patch.vpn.l2vpns.yaml index 8e3a9117..39b9e420 100644 --- a/actions/patch.vpn.l2vpns.yaml +++ b/actions/patch.vpn.l2vpns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. identifier: diff --git a/actions/patch.vpn.tunnel_groups.yaml b/actions/patch.vpn.tunnel_groups.yaml index 727fc11a..31c9a164 100644 --- a/actions/patch.vpn.tunnel_groups.yaml +++ b/actions/patch.vpn.tunnel_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.vpn.tunnel_terminations.yaml b/actions/patch.vpn.tunnel_terminations.yaml index 53015af9..288d331a 100644 --- a/actions/patch.vpn.tunnel_terminations.yaml +++ b/actions/patch.vpn.tunnel_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. tunnel: diff --git a/actions/patch.vpn.tunnels.yaml b/actions/patch.vpn.tunnels.yaml index e9d6f85b..b9cbf719 100644 --- a/actions/patch.vpn.tunnels.yaml +++ b/actions/patch.vpn.tunnels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.wireless.wireless_lan_groups.yaml b/actions/patch.wireless.wireless_lan_groups.yaml index d0f27528..b31f9842 100644 --- a/actions/patch.wireless.wireless_lan_groups.yaml +++ b/actions/patch.wireless.wireless_lan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/patch.wireless.wireless_lans.yaml b/actions/patch.wireless.wireless_lans.yaml index 7b64f6ae..74e9290a 100644 --- a/actions/patch.wireless.wireless_lans.yaml +++ b/actions/patch.wireless.wireless_lans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ssid: diff --git a/actions/patch.wireless.wireless_links.yaml b/actions/patch.wireless.wireless_links.yaml index 787acdba..d0458aab 100644 --- a/actions/patch.wireless.wireless_links.yaml +++ b/actions/patch.wireless.wireless_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. interface_a: diff --git a/actions/post.circuits.circuit_group_assignments.yaml b/actions/post.circuits.circuit_group_assignments.yaml index 889ac284..c2196349 100644 --- a/actions/post.circuits.circuit_group_assignments.yaml +++ b/actions/post.circuits.circuit_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. group: diff --git a/actions/post.circuits.circuit_groups.yaml b/actions/post.circuits.circuit_groups.yaml index f7528c5c..b227a70a 100644 --- a/actions/post.circuits.circuit_groups.yaml +++ b/actions/post.circuits.circuit_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.circuits.circuit_terminations.yaml b/actions/post.circuits.circuit_terminations.yaml index 5e4a7ffe..54718c66 100644 --- a/actions/post.circuits.circuit_terminations.yaml +++ b/actions/post.circuits.circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. circuit: diff --git a/actions/post.circuits.circuit_types.yaml b/actions/post.circuits.circuit_types.yaml index 91fa3b59..aea9a818 100644 --- a/actions/post.circuits.circuit_types.yaml +++ b/actions/post.circuits.circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.circuits.circuits.yaml b/actions/post.circuits.circuits.yaml index a3834bb4..400bee60 100644 --- a/actions/post.circuits.circuits.yaml +++ b/actions/post.circuits.circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/post.circuits.provider_accounts.yaml b/actions/post.circuits.provider_accounts.yaml index 3495ea5e..16839155 100644 --- a/actions/post.circuits.provider_accounts.yaml +++ b/actions/post.circuits.provider_accounts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. provider: diff --git a/actions/post.circuits.provider_networks.yaml b/actions/post.circuits.provider_networks.yaml index 759eef55..c52d6833 100644 --- a/actions/post.circuits.provider_networks.yaml +++ b/actions/post.circuits.provider_networks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. provider: diff --git a/actions/post.circuits.providers.yaml b/actions/post.circuits.providers.yaml index 7d201260..59ad77c2 100644 --- a/actions/post.circuits.providers.yaml +++ b/actions/post.circuits.providers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.circuits.virtual_circuit_terminations.yaml b/actions/post.circuits.virtual_circuit_terminations.yaml index f140cba4..f1a451ad 100644 --- a/actions/post.circuits.virtual_circuit_terminations.yaml +++ b/actions/post.circuits.virtual_circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_circuit: diff --git a/actions/post.circuits.virtual_circuit_types.yaml b/actions/post.circuits.virtual_circuit_types.yaml index 229e4f60..22ec6eb2 100644 --- a/actions/post.circuits.virtual_circuit_types.yaml +++ b/actions/post.circuits.virtual_circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.circuits.virtual_circuits.yaml b/actions/post.circuits.virtual_circuits.yaml index 4b6f4d71..3a96b7e6 100644 --- a/actions/post.circuits.virtual_circuits.yaml +++ b/actions/post.circuits.virtual_circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/post.core.data_sources.yaml b/actions/post.core.data_sources.yaml index cd19a80e..08aab609 100644 --- a/actions/post.core.data_sources.yaml +++ b/actions/post.core.data_sources.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.cable_terminations.yaml b/actions/post.dcim.cable_terminations.yaml index 99a9c202..5ff32cd1 100644 --- a/actions/post.dcim.cable_terminations.yaml +++ b/actions/post.dcim.cable_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable: diff --git a/actions/post.dcim.cables.yaml b/actions/post.dcim.cables.yaml index 1bfbd95e..211bfe98 100644 --- a/actions/post.dcim.cables.yaml +++ b/actions/post.dcim.cables.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. type: diff --git a/actions/post.dcim.console_port_templates.yaml b/actions/post.dcim.console_port_templates.yaml index ec552b6a..4e0a94eb 100644 --- a/actions/post.dcim.console_port_templates.yaml +++ b/actions/post.dcim.console_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.console_ports.yaml b/actions/post.dcim.console_ports.yaml index f7ac6413..f448b49b 100644 --- a/actions/post.dcim.console_ports.yaml +++ b/actions/post.dcim.console_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.console_server_port_templates.yaml b/actions/post.dcim.console_server_port_templates.yaml index 1eb8a1b6..d2f343a6 100644 --- a/actions/post.dcim.console_server_port_templates.yaml +++ b/actions/post.dcim.console_server_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.console_server_ports.yaml b/actions/post.dcim.console_server_ports.yaml index 8fb76304..6b389302 100644 --- a/actions/post.dcim.console_server_ports.yaml +++ b/actions/post.dcim.console_server_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.device_bay_templates.yaml b/actions/post.dcim.device_bay_templates.yaml index 30232923..d8f56310 100644 --- a/actions/post.dcim.device_bay_templates.yaml +++ b/actions/post.dcim.device_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.device_bays.yaml b/actions/post.dcim.device_bays.yaml index 024ee94e..eff7ccd4 100644 --- a/actions/post.dcim.device_bays.yaml +++ b/actions/post.dcim.device_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.device_roles.yaml b/actions/post.dcim.device_roles.yaml index d7e3eb80..0e960bf1 100644 --- a/actions/post.dcim.device_roles.yaml +++ b/actions/post.dcim.device_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.device_types.yaml b/actions/post.dcim.device_types.yaml index 1e325126..66e0737b 100644 --- a/actions/post.dcim.device_types.yaml +++ b/actions/post.dcim.device_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. manufacturer: diff --git a/actions/post.dcim.devices.yaml b/actions/post.dcim.devices.yaml index 1577003a..28caf779 100644 --- a/actions/post.dcim.devices.yaml +++ b/actions/post.dcim.devices.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.front_port_templates.yaml b/actions/post.dcim.front_port_templates.yaml index e12c04c5..00bc53bc 100644 --- a/actions/post.dcim.front_port_templates.yaml +++ b/actions/post.dcim.front_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.front_ports.yaml b/actions/post.dcim.front_ports.yaml index 269570cd..a414aee9 100644 --- a/actions/post.dcim.front_ports.yaml +++ b/actions/post.dcim.front_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.interface_templates.yaml b/actions/post.dcim.interface_templates.yaml index 2869e892..a31f02be 100644 --- a/actions/post.dcim.interface_templates.yaml +++ b/actions/post.dcim.interface_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.interfaces.yaml b/actions/post.dcim.interfaces.yaml index d4045e3b..aaa5e083 100644 --- a/actions/post.dcim.interfaces.yaml +++ b/actions/post.dcim.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.inventory_item_roles.yaml b/actions/post.dcim.inventory_item_roles.yaml index 54ca8755..615a26d3 100644 --- a/actions/post.dcim.inventory_item_roles.yaml +++ b/actions/post.dcim.inventory_item_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.inventory_item_templates.yaml b/actions/post.dcim.inventory_item_templates.yaml index 9c3f9a22..d61953ce 100644 --- a/actions/post.dcim.inventory_item_templates.yaml +++ b/actions/post.dcim.inventory_item_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.inventory_items.yaml b/actions/post.dcim.inventory_items.yaml index e606c219..5909d4ab 100644 --- a/actions/post.dcim.inventory_items.yaml +++ b/actions/post.dcim.inventory_items.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.locations.yaml b/actions/post.dcim.locations.yaml index f22b6c41..8e1a2034 100644 --- a/actions/post.dcim.locations.yaml +++ b/actions/post.dcim.locations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.mac_addresses.yaml b/actions/post.dcim.mac_addresses.yaml index 1e02ea9f..8a64f87f 100644 --- a/actions/post.dcim.mac_addresses.yaml +++ b/actions/post.dcim.mac_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. mac_address: diff --git a/actions/post.dcim.manufacturers.yaml b/actions/post.dcim.manufacturers.yaml index 4c8bbf6d..f7569a12 100644 --- a/actions/post.dcim.manufacturers.yaml +++ b/actions/post.dcim.manufacturers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.module_bay_templates.yaml b/actions/post.dcim.module_bay_templates.yaml index 6b6a46f1..6ad3face 100644 --- a/actions/post.dcim.module_bay_templates.yaml +++ b/actions/post.dcim.module_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.module_bays.yaml b/actions/post.dcim.module_bays.yaml index 71cb3b3d..91cd2789 100644 --- a/actions/post.dcim.module_bays.yaml +++ b/actions/post.dcim.module_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.module_type_profiles.yaml b/actions/post.dcim.module_type_profiles.yaml index 12802957..d6cb2b5e 100644 --- a/actions/post.dcim.module_type_profiles.yaml +++ b/actions/post.dcim.module_type_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.module_types.yaml b/actions/post.dcim.module_types.yaml index 72ea8c3c..583c7794 100644 --- a/actions/post.dcim.module_types.yaml +++ b/actions/post.dcim.module_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. profile: diff --git a/actions/post.dcim.modules.yaml b/actions/post.dcim.modules.yaml index 76e23ae4..68ef5716 100644 --- a/actions/post.dcim.modules.yaml +++ b/actions/post.dcim.modules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.platforms.yaml b/actions/post.dcim.platforms.yaml index 5d8f4866..b3f1803e 100644 --- a/actions/post.dcim.platforms.yaml +++ b/actions/post.dcim.platforms.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.power_feeds.yaml b/actions/post.dcim.power_feeds.yaml index 203e017b..166a1105 100644 --- a/actions/post.dcim.power_feeds.yaml +++ b/actions/post.dcim.power_feeds.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. power_panel: diff --git a/actions/post.dcim.power_outlet_templates.yaml b/actions/post.dcim.power_outlet_templates.yaml index d2b1ff54..5b95a836 100644 --- a/actions/post.dcim.power_outlet_templates.yaml +++ b/actions/post.dcim.power_outlet_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.power_outlets.yaml b/actions/post.dcim.power_outlets.yaml index 4fc55b73..a458d528 100644 --- a/actions/post.dcim.power_outlets.yaml +++ b/actions/post.dcim.power_outlets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.power_panels.yaml b/actions/post.dcim.power_panels.yaml index c8e0e1fa..c5aeeaab 100644 --- a/actions/post.dcim.power_panels.yaml +++ b/actions/post.dcim.power_panels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. site: diff --git a/actions/post.dcim.power_port_templates.yaml b/actions/post.dcim.power_port_templates.yaml index cca22de6..094aea09 100644 --- a/actions/post.dcim.power_port_templates.yaml +++ b/actions/post.dcim.power_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.power_ports.yaml b/actions/post.dcim.power_ports.yaml index 2106f327..6f06d0af 100644 --- a/actions/post.dcim.power_ports.yaml +++ b/actions/post.dcim.power_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.rack_reservations.yaml b/actions/post.dcim.rack_reservations.yaml index b25c982f..b0adccd6 100644 --- a/actions/post.dcim.rack_reservations.yaml +++ b/actions/post.dcim.rack_reservations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. rack: diff --git a/actions/post.dcim.rack_roles.yaml b/actions/post.dcim.rack_roles.yaml index 3fce8ca1..a2987965 100644 --- a/actions/post.dcim.rack_roles.yaml +++ b/actions/post.dcim.rack_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.rack_types.yaml b/actions/post.dcim.rack_types.yaml index 2e18c939..13b61e0a 100644 --- a/actions/post.dcim.rack_types.yaml +++ b/actions/post.dcim.rack_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. manufacturer: diff --git a/actions/post.dcim.racks.yaml b/actions/post.dcim.racks.yaml index 9e3f5ab9..4597d24c 100644 --- a/actions/post.dcim.racks.yaml +++ b/actions/post.dcim.racks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.rear_port_templates.yaml b/actions/post.dcim.rear_port_templates.yaml index 15a7423e..e5acfc75 100644 --- a/actions/post.dcim.rear_port_templates.yaml +++ b/actions/post.dcim.rear_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/post.dcim.rear_ports.yaml b/actions/post.dcim.rear_ports.yaml index 8486b8a0..84d9b6e8 100644 --- a/actions/post.dcim.rear_ports.yaml +++ b/actions/post.dcim.rear_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/post.dcim.regions.yaml b/actions/post.dcim.regions.yaml index 49b0782d..eedb555f 100644 --- a/actions/post.dcim.regions.yaml +++ b/actions/post.dcim.regions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.site_groups.yaml b/actions/post.dcim.site_groups.yaml index c00f286e..59bba924 100644 --- a/actions/post.dcim.site_groups.yaml +++ b/actions/post.dcim.site_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.sites.yaml b/actions/post.dcim.sites.yaml index 148e26a2..034abf17 100644 --- a/actions/post.dcim.sites.yaml +++ b/actions/post.dcim.sites.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.virtual_chassis.yaml b/actions/post.dcim.virtual_chassis.yaml index acad020b..fb4b5d5d 100644 --- a/actions/post.dcim.virtual_chassis.yaml +++ b/actions/post.dcim.virtual_chassis.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.dcim.virtual_device_contexts.yaml b/actions/post.dcim.virtual_device_contexts.yaml index f436b9b7..50f1c130 100644 --- a/actions/post.dcim.virtual_device_contexts.yaml +++ b/actions/post.dcim.virtual_device_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.extras.bookmarks.yaml b/actions/post.extras.bookmarks.yaml index 5c6c6d2d..ee4abc0e 100644 --- a/actions/post.extras.bookmarks.yaml +++ b/actions/post.extras.bookmarks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/post.extras.config_contexts.yaml b/actions/post.extras.config_contexts.yaml index 1d51e569..9097c214 100644 --- a/actions/post.extras.config_contexts.yaml +++ b/actions/post.extras.config_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.extras.config_templates.yaml b/actions/post.extras.config_templates.yaml index 5ef226e3..ef5ae139 100644 --- a/actions/post.extras.config_templates.yaml +++ b/actions/post.extras.config_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.extras.custom_field_choice_sets.yaml b/actions/post.extras.custom_field_choice_sets.yaml index e72e1ea1..35a9783e 100644 --- a/actions/post.extras.custom_field_choice_sets.yaml +++ b/actions/post.extras.custom_field_choice_sets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.extras.custom_fields.yaml b/actions/post.extras.custom_fields.yaml index 06bb7513..7fa7b22e 100644 --- a/actions/post.extras.custom_fields.yaml +++ b/actions/post.extras.custom_fields.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/post.extras.custom_links.yaml b/actions/post.extras.custom_links.yaml index a247aa26..4aec36fd 100644 --- a/actions/post.extras.custom_links.yaml +++ b/actions/post.extras.custom_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/post.extras.event_rules.yaml b/actions/post.extras.event_rules.yaml index b793558e..8746ff68 100644 --- a/actions/post.extras.event_rules.yaml +++ b/actions/post.extras.event_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/post.extras.export_templates.yaml b/actions/post.extras.export_templates.yaml index 7d821d9d..446f37cd 100644 --- a/actions/post.extras.export_templates.yaml +++ b/actions/post.extras.export_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/post.extras.image_attachments.yaml b/actions/post.extras.image_attachments.yaml index 5daf1994..cd4822f6 100644 --- a/actions/post.extras.image_attachments.yaml +++ b/actions/post.extras.image_attachments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/post.extras.journal_entries.yaml b/actions/post.extras.journal_entries.yaml index 510c91a5..c913e746 100644 --- a/actions/post.extras.journal_entries.yaml +++ b/actions/post.extras.journal_entries.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. assigned_object_type: diff --git a/actions/post.extras.notification_groups.yaml b/actions/post.extras.notification_groups.yaml index d6586570..fdafd7ca 100644 --- a/actions/post.extras.notification_groups.yaml +++ b/actions/post.extras.notification_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.extras.notifications.yaml b/actions/post.extras.notifications.yaml index 4ce36c75..cb14f44a 100644 --- a/actions/post.extras.notifications.yaml +++ b/actions/post.extras.notifications.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/post.extras.saved_filters.yaml b/actions/post.extras.saved_filters.yaml index 8869ff6f..d0f63402 100644 --- a/actions/post.extras.saved_filters.yaml +++ b/actions/post.extras.saved_filters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/post.extras.scripts.yaml b/actions/post.extras.scripts.yaml index 47901828..1e34aaa9 100644 --- a/actions/post.extras.scripts.yaml +++ b/actions/post.extras.scripts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. runner_type: python-script diff --git a/actions/post.extras.subscriptions.yaml b/actions/post.extras.subscriptions.yaml index 60250750..e7ac1b8a 100644 --- a/actions/post.extras.subscriptions.yaml +++ b/actions/post.extras.subscriptions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/post.extras.table_configs.yaml b/actions/post.extras.table_configs.yaml index a4b94c62..98230137 100644 --- a/actions/post.extras.table_configs.yaml +++ b/actions/post.extras.table_configs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/post.extras.tags.yaml b/actions/post.extras.tags.yaml index 4dcb5d82..bd5d1913 100644 --- a/actions/post.extras.tags.yaml +++ b/actions/post.extras.tags.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.extras.webhooks.yaml b/actions/post.extras.webhooks.yaml index c6a24cb5..74330b9d 100644 --- a/actions/post.extras.webhooks.yaml +++ b/actions/post.extras.webhooks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.aggregates.yaml b/actions/post.ipam.aggregates.yaml index 5982e522..cec572bd 100644 --- a/actions/post.ipam.aggregates.yaml +++ b/actions/post.ipam.aggregates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. prefix: diff --git a/actions/post.ipam.asn_ranges.yaml b/actions/post.ipam.asn_ranges.yaml index 5c9eb3a2..dbf42c85 100644 --- a/actions/post.ipam.asn_ranges.yaml +++ b/actions/post.ipam.asn_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.asns.yaml b/actions/post.ipam.asns.yaml index 47ee110f..9550c097 100644 --- a/actions/post.ipam.asns.yaml +++ b/actions/post.ipam.asns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asn: diff --git a/actions/post.ipam.fhrp_group_assignments.yaml b/actions/post.ipam.fhrp_group_assignments.yaml index 11c83f8f..bd22a80e 100644 --- a/actions/post.ipam.fhrp_group_assignments.yaml +++ b/actions/post.ipam.fhrp_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. group: diff --git a/actions/post.ipam.fhrp_groups.yaml b/actions/post.ipam.fhrp_groups.yaml index 88ac689c..151eb6ed 100644 --- a/actions/post.ipam.fhrp_groups.yaml +++ b/actions/post.ipam.fhrp_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.ip_addresses.yaml b/actions/post.ipam.ip_addresses.yaml index 0f423126..dd5b3b96 100644 --- a/actions/post.ipam.ip_addresses.yaml +++ b/actions/post.ipam.ip_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. address: diff --git a/actions/post.ipam.ip_ranges.yaml b/actions/post.ipam.ip_ranges.yaml index 68425216..e54063b2 100644 --- a/actions/post.ipam.ip_ranges.yaml +++ b/actions/post.ipam.ip_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. start_address: diff --git a/actions/post.ipam.prefixes.yaml b/actions/post.ipam.prefixes.yaml index 312e7815..6e33e3a4 100644 --- a/actions/post.ipam.prefixes.yaml +++ b/actions/post.ipam.prefixes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. prefix: diff --git a/actions/post.ipam.rirs.yaml b/actions/post.ipam.rirs.yaml index 8373bc17..ac594813 100644 --- a/actions/post.ipam.rirs.yaml +++ b/actions/post.ipam.rirs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.roles.yaml b/actions/post.ipam.roles.yaml index 7b89b42d..78886703 100644 --- a/actions/post.ipam.roles.yaml +++ b/actions/post.ipam.roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.route_targets.yaml b/actions/post.ipam.route_targets.yaml index 12353232..2ae5e905 100644 --- a/actions/post.ipam.route_targets.yaml +++ b/actions/post.ipam.route_targets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.service_templates.yaml b/actions/post.ipam.service_templates.yaml index e21ffd97..d8e0d484 100644 --- a/actions/post.ipam.service_templates.yaml +++ b/actions/post.ipam.service_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.services.yaml b/actions/post.ipam.services.yaml index f5c32291..f2c0118b 100644 --- a/actions/post.ipam.services.yaml +++ b/actions/post.ipam.services.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. parent_object_type: diff --git a/actions/post.ipam.vlan_groups.yaml b/actions/post.ipam.vlan_groups.yaml index 2dd3ac55..49c44862 100644 --- a/actions/post.ipam.vlan_groups.yaml +++ b/actions/post.ipam.vlan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.vlan_translation_policies.yaml b/actions/post.ipam.vlan_translation_policies.yaml index 9ca1b956..6845daa1 100644 --- a/actions/post.ipam.vlan_translation_policies.yaml +++ b/actions/post.ipam.vlan_translation_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.ipam.vlan_translation_rules.yaml b/actions/post.ipam.vlan_translation_rules.yaml index 968c0266..835e22e8 100644 --- a/actions/post.ipam.vlan_translation_rules.yaml +++ b/actions/post.ipam.vlan_translation_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. policy: diff --git a/actions/post.ipam.vlans.yaml b/actions/post.ipam.vlans.yaml index 46913f49..446d0c13 100644 --- a/actions/post.ipam.vlans.yaml +++ b/actions/post.ipam.vlans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. site: diff --git a/actions/post.ipam.vrfs.yaml b/actions/post.ipam.vrfs.yaml index 4bf8b110..abe40b3e 100644 --- a/actions/post.ipam.vrfs.yaml +++ b/actions/post.ipam.vrfs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.tenancy.contact_assignments.yaml b/actions/post.tenancy.contact_assignments.yaml index 7c59dbca..32eb21f5 100644 --- a/actions/post.tenancy.contact_assignments.yaml +++ b/actions/post.tenancy.contact_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/post.tenancy.contact_groups.yaml b/actions/post.tenancy.contact_groups.yaml index b0dc8006..f5ce15f3 100644 --- a/actions/post.tenancy.contact_groups.yaml +++ b/actions/post.tenancy.contact_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.tenancy.contact_roles.yaml b/actions/post.tenancy.contact_roles.yaml index 40302e37..8be0be3e 100644 --- a/actions/post.tenancy.contact_roles.yaml +++ b/actions/post.tenancy.contact_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.tenancy.contacts.yaml b/actions/post.tenancy.contacts.yaml index 92f069ab..f38ea93b 100644 --- a/actions/post.tenancy.contacts.yaml +++ b/actions/post.tenancy.contacts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. groups: diff --git a/actions/post.tenancy.tenant_groups.yaml b/actions/post.tenancy.tenant_groups.yaml index e049c4a5..79bf8513 100644 --- a/actions/post.tenancy.tenant_groups.yaml +++ b/actions/post.tenancy.tenant_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.tenancy.tenants.yaml b/actions/post.tenancy.tenants.yaml index faff4b66..9e048f9a 100644 --- a/actions/post.tenancy.tenants.yaml +++ b/actions/post.tenancy.tenants.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.users.groups.yaml b/actions/post.users.groups.yaml index d416b176..5eeb680b 100644 --- a/actions/post.users.groups.yaml +++ b/actions/post.users.groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.users.permissions.yaml b/actions/post.users.permissions.yaml index 4039d1d4..df7b7bee 100644 --- a/actions/post.users.permissions.yaml +++ b/actions/post.users.permissions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.users.tokens.provision.yaml b/actions/post.users.tokens.provision.yaml index 2991cb0d..d074e553 100644 --- a/actions/post.users.tokens.provision.yaml +++ b/actions/post.users.tokens.provision.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. expires: diff --git a/actions/post.users.tokens.yaml b/actions/post.users.tokens.yaml index 60629f41..a6e265cd 100644 --- a/actions/post.users.tokens.yaml +++ b/actions/post.users.tokens.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. user: diff --git a/actions/post.users.users.yaml b/actions/post.users.users.yaml index 34b14ca8..225f24a2 100644 --- a/actions/post.users.users.yaml +++ b/actions/post.users.users.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. username: diff --git a/actions/post.virtualization.cluster_groups.yaml b/actions/post.virtualization.cluster_groups.yaml index af236115..c72f977e 100644 --- a/actions/post.virtualization.cluster_groups.yaml +++ b/actions/post.virtualization.cluster_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.virtualization.cluster_types.yaml b/actions/post.virtualization.cluster_types.yaml index 6df5cbcb..90a1c495 100644 --- a/actions/post.virtualization.cluster_types.yaml +++ b/actions/post.virtualization.cluster_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.virtualization.clusters.yaml b/actions/post.virtualization.clusters.yaml index b2ec04cf..de5aed58 100644 --- a/actions/post.virtualization.clusters.yaml +++ b/actions/post.virtualization.clusters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.virtualization.interfaces.yaml b/actions/post.virtualization.interfaces.yaml index 6405a523..69d6dc3b 100644 --- a/actions/post.virtualization.interfaces.yaml +++ b/actions/post.virtualization.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_machine: diff --git a/actions/post.virtualization.virtual_disks.yaml b/actions/post.virtualization.virtual_disks.yaml index 8f519af9..e5140dac 100644 --- a/actions/post.virtualization.virtual_disks.yaml +++ b/actions/post.virtualization.virtual_disks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_machine: diff --git a/actions/post.virtualization.virtual_machines.yaml b/actions/post.virtualization.virtual_machines.yaml index 4d967a7d..93338476 100644 --- a/actions/post.virtualization.virtual_machines.yaml +++ b/actions/post.virtualization.virtual_machines.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.ike_policies.yaml b/actions/post.vpn.ike_policies.yaml index 1dd8e623..b0312ef0 100644 --- a/actions/post.vpn.ike_policies.yaml +++ b/actions/post.vpn.ike_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.ike_proposals.yaml b/actions/post.vpn.ike_proposals.yaml index ef5dd27d..bb5fb118 100644 --- a/actions/post.vpn.ike_proposals.yaml +++ b/actions/post.vpn.ike_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.ipsec_policies.yaml b/actions/post.vpn.ipsec_policies.yaml index 8b642567..451e8b70 100644 --- a/actions/post.vpn.ipsec_policies.yaml +++ b/actions/post.vpn.ipsec_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.ipsec_profiles.yaml b/actions/post.vpn.ipsec_profiles.yaml index 3aa619fb..03204585 100644 --- a/actions/post.vpn.ipsec_profiles.yaml +++ b/actions/post.vpn.ipsec_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.ipsec_proposals.yaml b/actions/post.vpn.ipsec_proposals.yaml index 2290a012..0185d87d 100644 --- a/actions/post.vpn.ipsec_proposals.yaml +++ b/actions/post.vpn.ipsec_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.l2vpn_terminations.yaml b/actions/post.vpn.l2vpn_terminations.yaml index a79056ee..5476759a 100644 --- a/actions/post.vpn.l2vpn_terminations.yaml +++ b/actions/post.vpn.l2vpn_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. l2vpn: diff --git a/actions/post.vpn.l2vpns.yaml b/actions/post.vpn.l2vpns.yaml index e02998fc..29226106 100644 --- a/actions/post.vpn.l2vpns.yaml +++ b/actions/post.vpn.l2vpns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. identifier: diff --git a/actions/post.vpn.tunnel_groups.yaml b/actions/post.vpn.tunnel_groups.yaml index 9f78dbb3..6855b618 100644 --- a/actions/post.vpn.tunnel_groups.yaml +++ b/actions/post.vpn.tunnel_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.vpn.tunnel_terminations.yaml b/actions/post.vpn.tunnel_terminations.yaml index 300d8ac5..070fbf1f 100644 --- a/actions/post.vpn.tunnel_terminations.yaml +++ b/actions/post.vpn.tunnel_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. tunnel: diff --git a/actions/post.vpn.tunnels.yaml b/actions/post.vpn.tunnels.yaml index 1024c6d8..ac8c8d36 100644 --- a/actions/post.vpn.tunnels.yaml +++ b/actions/post.vpn.tunnels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.wireless.wireless_lan_groups.yaml b/actions/post.wireless.wireless_lan_groups.yaml index 05163356..6c48a086 100644 --- a/actions/post.wireless.wireless_lan_groups.yaml +++ b/actions/post.wireless.wireless_lan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/post.wireless.wireless_lans.yaml b/actions/post.wireless.wireless_lans.yaml index df50799d..5087b95e 100644 --- a/actions/post.wireless.wireless_lans.yaml +++ b/actions/post.wireless.wireless_lans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ssid: diff --git a/actions/post.wireless.wireless_links.yaml b/actions/post.wireless.wireless_links.yaml index bb5f927c..81335f1b 100644 --- a/actions/post.wireless.wireless_links.yaml +++ b/actions/post.wireless.wireless_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. interface_a: diff --git a/actions/put.circuits.circuit_group_assignments.yaml b/actions/put.circuits.circuit_group_assignments.yaml index b0ba3b35..b86d0465 100644 --- a/actions/put.circuits.circuit_group_assignments.yaml +++ b/actions/put.circuits.circuit_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. group: diff --git a/actions/put.circuits.circuit_groups.yaml b/actions/put.circuits.circuit_groups.yaml index c28b5e45..b7ad20af 100644 --- a/actions/put.circuits.circuit_groups.yaml +++ b/actions/put.circuits.circuit_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.circuits.circuit_terminations.yaml b/actions/put.circuits.circuit_terminations.yaml index cf2f241f..1735a7bd 100644 --- a/actions/put.circuits.circuit_terminations.yaml +++ b/actions/put.circuits.circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. circuit: diff --git a/actions/put.circuits.circuit_types.yaml b/actions/put.circuits.circuit_types.yaml index 0f7d24f8..9ff585cf 100644 --- a/actions/put.circuits.circuit_types.yaml +++ b/actions/put.circuits.circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.circuits.circuits.yaml b/actions/put.circuits.circuits.yaml index 3d180349..d390c969 100644 --- a/actions/put.circuits.circuits.yaml +++ b/actions/put.circuits.circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/put.circuits.provider_accounts.yaml b/actions/put.circuits.provider_accounts.yaml index b3793809..46488361 100644 --- a/actions/put.circuits.provider_accounts.yaml +++ b/actions/put.circuits.provider_accounts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. provider: diff --git a/actions/put.circuits.provider_networks.yaml b/actions/put.circuits.provider_networks.yaml index e231cc94..ff42a563 100644 --- a/actions/put.circuits.provider_networks.yaml +++ b/actions/put.circuits.provider_networks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. provider: diff --git a/actions/put.circuits.providers.yaml b/actions/put.circuits.providers.yaml index a8afa657..5766b7fb 100644 --- a/actions/put.circuits.providers.yaml +++ b/actions/put.circuits.providers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.circuits.virtual_circuit_terminations.yaml b/actions/put.circuits.virtual_circuit_terminations.yaml index fd3c89fd..c3cde534 100644 --- a/actions/put.circuits.virtual_circuit_terminations.yaml +++ b/actions/put.circuits.virtual_circuit_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_circuit: diff --git a/actions/put.circuits.virtual_circuit_types.yaml b/actions/put.circuits.virtual_circuit_types.yaml index 41c1d642..bdcf980c 100644 --- a/actions/put.circuits.virtual_circuit_types.yaml +++ b/actions/put.circuits.virtual_circuit_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.circuits.virtual_circuits.yaml b/actions/put.circuits.virtual_circuits.yaml index ceb4db68..15ba91bd 100644 --- a/actions/put.circuits.virtual_circuits.yaml +++ b/actions/put.circuits.virtual_circuits.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cid: diff --git a/actions/put.core.data_sources.yaml b/actions/put.core.data_sources.yaml index ce3590cd..0d873c61 100644 --- a/actions/put.core.data_sources.yaml +++ b/actions/put.core.data_sources.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.cable_terminations.yaml b/actions/put.dcim.cable_terminations.yaml index 179abf9f..fc6b53ec 100644 --- a/actions/put.dcim.cable_terminations.yaml +++ b/actions/put.dcim.cable_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. cable: diff --git a/actions/put.dcim.cables.yaml b/actions/put.dcim.cables.yaml index d01b27eb..57e54c2f 100644 --- a/actions/put.dcim.cables.yaml +++ b/actions/put.dcim.cables.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. type: diff --git a/actions/put.dcim.console_port_templates.yaml b/actions/put.dcim.console_port_templates.yaml index 40e20653..517e1c58 100644 --- a/actions/put.dcim.console_port_templates.yaml +++ b/actions/put.dcim.console_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.console_ports.yaml b/actions/put.dcim.console_ports.yaml index 1b1bf7ff..7ea0e010 100644 --- a/actions/put.dcim.console_ports.yaml +++ b/actions/put.dcim.console_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.console_server_port_templates.yaml b/actions/put.dcim.console_server_port_templates.yaml index ab2aea4f..4cf9d887 100644 --- a/actions/put.dcim.console_server_port_templates.yaml +++ b/actions/put.dcim.console_server_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.console_server_ports.yaml b/actions/put.dcim.console_server_ports.yaml index ea2f7332..f71637fb 100644 --- a/actions/put.dcim.console_server_ports.yaml +++ b/actions/put.dcim.console_server_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.device_bay_templates.yaml b/actions/put.dcim.device_bay_templates.yaml index abd663bd..2ed51297 100644 --- a/actions/put.dcim.device_bay_templates.yaml +++ b/actions/put.dcim.device_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.device_bays.yaml b/actions/put.dcim.device_bays.yaml index c7cda8fe..f8835d14 100644 --- a/actions/put.dcim.device_bays.yaml +++ b/actions/put.dcim.device_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.device_roles.yaml b/actions/put.dcim.device_roles.yaml index 313f0fee..91d107e2 100644 --- a/actions/put.dcim.device_roles.yaml +++ b/actions/put.dcim.device_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.device_types.yaml b/actions/put.dcim.device_types.yaml index d38965a3..a9251f9c 100644 --- a/actions/put.dcim.device_types.yaml +++ b/actions/put.dcim.device_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. manufacturer: diff --git a/actions/put.dcim.devices.yaml b/actions/put.dcim.devices.yaml index 9245be46..8ff07b60 100644 --- a/actions/put.dcim.devices.yaml +++ b/actions/put.dcim.devices.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.front_port_templates.yaml b/actions/put.dcim.front_port_templates.yaml index c0e9fce3..a48b34b6 100644 --- a/actions/put.dcim.front_port_templates.yaml +++ b/actions/put.dcim.front_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.front_ports.yaml b/actions/put.dcim.front_ports.yaml index 87496180..d0d2e0e6 100644 --- a/actions/put.dcim.front_ports.yaml +++ b/actions/put.dcim.front_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.interface_templates.yaml b/actions/put.dcim.interface_templates.yaml index 5031fa32..e65dda35 100644 --- a/actions/put.dcim.interface_templates.yaml +++ b/actions/put.dcim.interface_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.interfaces.yaml b/actions/put.dcim.interfaces.yaml index c9d4cbd9..6d247f21 100644 --- a/actions/put.dcim.interfaces.yaml +++ b/actions/put.dcim.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.inventory_item_roles.yaml b/actions/put.dcim.inventory_item_roles.yaml index 173df0bd..6faa7acb 100644 --- a/actions/put.dcim.inventory_item_roles.yaml +++ b/actions/put.dcim.inventory_item_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.inventory_item_templates.yaml b/actions/put.dcim.inventory_item_templates.yaml index bd7a0b88..c1afa61a 100644 --- a/actions/put.dcim.inventory_item_templates.yaml +++ b/actions/put.dcim.inventory_item_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.inventory_items.yaml b/actions/put.dcim.inventory_items.yaml index 342b153d..47a616e2 100644 --- a/actions/put.dcim.inventory_items.yaml +++ b/actions/put.dcim.inventory_items.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.locations.yaml b/actions/put.dcim.locations.yaml index dbbceeb4..796ca3e4 100644 --- a/actions/put.dcim.locations.yaml +++ b/actions/put.dcim.locations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.mac_addresses.yaml b/actions/put.dcim.mac_addresses.yaml index 39a07fed..ae326247 100644 --- a/actions/put.dcim.mac_addresses.yaml +++ b/actions/put.dcim.mac_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. mac_address: diff --git a/actions/put.dcim.manufacturers.yaml b/actions/put.dcim.manufacturers.yaml index b5288ba4..cf0aa26b 100644 --- a/actions/put.dcim.manufacturers.yaml +++ b/actions/put.dcim.manufacturers.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.module_bay_templates.yaml b/actions/put.dcim.module_bay_templates.yaml index f6d78c16..2cea7852 100644 --- a/actions/put.dcim.module_bay_templates.yaml +++ b/actions/put.dcim.module_bay_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.module_bays.yaml b/actions/put.dcim.module_bays.yaml index 1ab4623b..f95a6dcc 100644 --- a/actions/put.dcim.module_bays.yaml +++ b/actions/put.dcim.module_bays.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.module_type_profiles.yaml b/actions/put.dcim.module_type_profiles.yaml index e9512a44..3f28fb4a 100644 --- a/actions/put.dcim.module_type_profiles.yaml +++ b/actions/put.dcim.module_type_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.module_types.yaml b/actions/put.dcim.module_types.yaml index d1a3b4d4..fb4bc8a4 100644 --- a/actions/put.dcim.module_types.yaml +++ b/actions/put.dcim.module_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. profile: diff --git a/actions/put.dcim.modules.yaml b/actions/put.dcim.modules.yaml index 2689b512..2c8fe3fd 100644 --- a/actions/put.dcim.modules.yaml +++ b/actions/put.dcim.modules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.platforms.yaml b/actions/put.dcim.platforms.yaml index a711979b..4e97f704 100644 --- a/actions/put.dcim.platforms.yaml +++ b/actions/put.dcim.platforms.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.power_feeds.yaml b/actions/put.dcim.power_feeds.yaml index 53f96c08..073f9991 100644 --- a/actions/put.dcim.power_feeds.yaml +++ b/actions/put.dcim.power_feeds.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. power_panel: diff --git a/actions/put.dcim.power_outlet_templates.yaml b/actions/put.dcim.power_outlet_templates.yaml index a54855ae..ab90ec2e 100644 --- a/actions/put.dcim.power_outlet_templates.yaml +++ b/actions/put.dcim.power_outlet_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.power_outlets.yaml b/actions/put.dcim.power_outlets.yaml index 76e87499..8a0b4db7 100644 --- a/actions/put.dcim.power_outlets.yaml +++ b/actions/put.dcim.power_outlets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.power_panels.yaml b/actions/put.dcim.power_panels.yaml index 536e5cc5..858cf204 100644 --- a/actions/put.dcim.power_panels.yaml +++ b/actions/put.dcim.power_panels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. site: diff --git a/actions/put.dcim.power_port_templates.yaml b/actions/put.dcim.power_port_templates.yaml index 77f92d02..666ccfb2 100644 --- a/actions/put.dcim.power_port_templates.yaml +++ b/actions/put.dcim.power_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.power_ports.yaml b/actions/put.dcim.power_ports.yaml index fbaccc60..c8948530 100644 --- a/actions/put.dcim.power_ports.yaml +++ b/actions/put.dcim.power_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.rack_reservations.yaml b/actions/put.dcim.rack_reservations.yaml index 02d762b9..c74807f3 100644 --- a/actions/put.dcim.rack_reservations.yaml +++ b/actions/put.dcim.rack_reservations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. rack: diff --git a/actions/put.dcim.rack_roles.yaml b/actions/put.dcim.rack_roles.yaml index f6f25041..6db9e4cd 100644 --- a/actions/put.dcim.rack_roles.yaml +++ b/actions/put.dcim.rack_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.rack_types.yaml b/actions/put.dcim.rack_types.yaml index 1fdbf3ca..534cef85 100644 --- a/actions/put.dcim.rack_types.yaml +++ b/actions/put.dcim.rack_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. manufacturer: diff --git a/actions/put.dcim.racks.yaml b/actions/put.dcim.racks.yaml index 41d0f082..023542e6 100644 --- a/actions/put.dcim.racks.yaml +++ b/actions/put.dcim.racks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.rear_port_templates.yaml b/actions/put.dcim.rear_port_templates.yaml index 9f1c8aa2..55ba392c 100644 --- a/actions/put.dcim.rear_port_templates.yaml +++ b/actions/put.dcim.rear_port_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device_type: diff --git a/actions/put.dcim.rear_ports.yaml b/actions/put.dcim.rear_ports.yaml index 7e0e0c8f..8528a881 100644 --- a/actions/put.dcim.rear_ports.yaml +++ b/actions/put.dcim.rear_ports.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. device: diff --git a/actions/put.dcim.regions.yaml b/actions/put.dcim.regions.yaml index bd5303fe..ebe09865 100644 --- a/actions/put.dcim.regions.yaml +++ b/actions/put.dcim.regions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.site_groups.yaml b/actions/put.dcim.site_groups.yaml index 95e2c894..5fc45cde 100644 --- a/actions/put.dcim.site_groups.yaml +++ b/actions/put.dcim.site_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.sites.yaml b/actions/put.dcim.sites.yaml index 0603aeaa..99808e64 100644 --- a/actions/put.dcim.sites.yaml +++ b/actions/put.dcim.sites.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.virtual_chassis.yaml b/actions/put.dcim.virtual_chassis.yaml index 19583b97..89bdb3f3 100644 --- a/actions/put.dcim.virtual_chassis.yaml +++ b/actions/put.dcim.virtual_chassis.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.dcim.virtual_device_contexts.yaml b/actions/put.dcim.virtual_device_contexts.yaml index 4fd4d377..2eac071b 100644 --- a/actions/put.dcim.virtual_device_contexts.yaml +++ b/actions/put.dcim.virtual_device_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.extras.bookmarks.yaml b/actions/put.extras.bookmarks.yaml index f17b4632..28329438 100644 --- a/actions/put.extras.bookmarks.yaml +++ b/actions/put.extras.bookmarks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/put.extras.config_contexts.yaml b/actions/put.extras.config_contexts.yaml index def4f288..9c2c5aa5 100644 --- a/actions/put.extras.config_contexts.yaml +++ b/actions/put.extras.config_contexts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.extras.config_templates.yaml b/actions/put.extras.config_templates.yaml index 39a42671..4f211d83 100644 --- a/actions/put.extras.config_templates.yaml +++ b/actions/put.extras.config_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.extras.custom_field_choice_sets.yaml b/actions/put.extras.custom_field_choice_sets.yaml index 87b3bd4b..cbe4d2d0 100644 --- a/actions/put.extras.custom_field_choice_sets.yaml +++ b/actions/put.extras.custom_field_choice_sets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.extras.custom_fields.yaml b/actions/put.extras.custom_fields.yaml index 960b8a74..02c04691 100644 --- a/actions/put.extras.custom_fields.yaml +++ b/actions/put.extras.custom_fields.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/put.extras.custom_links.yaml b/actions/put.extras.custom_links.yaml index 75f4f396..fe122d15 100644 --- a/actions/put.extras.custom_links.yaml +++ b/actions/put.extras.custom_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/put.extras.dashboard.yaml b/actions/put.extras.dashboard.yaml index 1885c418..0d4458e2 100644 --- a/actions/put.extras.dashboard.yaml +++ b/actions/put.extras.dashboard.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. layout: diff --git a/actions/put.extras.event_rules.yaml b/actions/put.extras.event_rules.yaml index 55102402..7f3b89a8 100644 --- a/actions/put.extras.event_rules.yaml +++ b/actions/put.extras.event_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/put.extras.export_templates.yaml b/actions/put.extras.export_templates.yaml index 03db4f2f..94d3d370 100644 --- a/actions/put.extras.export_templates.yaml +++ b/actions/put.extras.export_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/put.extras.image_attachments.yaml b/actions/put.extras.image_attachments.yaml index 798136e6..914ef0ca 100644 --- a/actions/put.extras.image_attachments.yaml +++ b/actions/put.extras.image_attachments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/put.extras.journal_entries.yaml b/actions/put.extras.journal_entries.yaml index 88a81c0c..9bdf6a44 100644 --- a/actions/put.extras.journal_entries.yaml +++ b/actions/put.extras.journal_entries.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. assigned_object_type: diff --git a/actions/put.extras.notification_groups.yaml b/actions/put.extras.notification_groups.yaml index bfcecbb5..e83a9bf4 100644 --- a/actions/put.extras.notification_groups.yaml +++ b/actions/put.extras.notification_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.extras.notifications.yaml b/actions/put.extras.notifications.yaml index 1aa27eb9..84fef0b6 100644 --- a/actions/put.extras.notifications.yaml +++ b/actions/put.extras.notifications.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/put.extras.saved_filters.yaml b/actions/put.extras.saved_filters.yaml index b58dda9f..70826422 100644 --- a/actions/put.extras.saved_filters.yaml +++ b/actions/put.extras.saved_filters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_types: diff --git a/actions/put.extras.scripts.yaml b/actions/put.extras.scripts.yaml index 9876312a..d6076ef3 100644 --- a/actions/put.extras.scripts.yaml +++ b/actions/put.extras.scripts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. data: diff --git a/actions/put.extras.subscriptions.yaml b/actions/put.extras.subscriptions.yaml index 1fc98e81..88c96532 100644 --- a/actions/put.extras.subscriptions.yaml +++ b/actions/put.extras.subscriptions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/put.extras.table_configs.yaml b/actions/put.extras.table_configs.yaml index 157cc561..705f0f76 100644 --- a/actions/put.extras.table_configs.yaml +++ b/actions/put.extras.table_configs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/put.extras.tags.yaml b/actions/put.extras.tags.yaml index 77c35fac..7f92528f 100644 --- a/actions/put.extras.tags.yaml +++ b/actions/put.extras.tags.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.extras.webhooks.yaml b/actions/put.extras.webhooks.yaml index 1231e7f8..2724fd15 100644 --- a/actions/put.extras.webhooks.yaml +++ b/actions/put.extras.webhooks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.aggregates.yaml b/actions/put.ipam.aggregates.yaml index e7955217..b743749b 100644 --- a/actions/put.ipam.aggregates.yaml +++ b/actions/put.ipam.aggregates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. prefix: diff --git a/actions/put.ipam.asn_ranges.yaml b/actions/put.ipam.asn_ranges.yaml index 39432b9a..7b2446f6 100644 --- a/actions/put.ipam.asn_ranges.yaml +++ b/actions/put.ipam.asn_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.asns.yaml b/actions/put.ipam.asns.yaml index 63402349..8cced53b 100644 --- a/actions/put.ipam.asns.yaml +++ b/actions/put.ipam.asns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. asn: diff --git a/actions/put.ipam.fhrp_group_assignments.yaml b/actions/put.ipam.fhrp_group_assignments.yaml index cd0f69af..e92deaa7 100644 --- a/actions/put.ipam.fhrp_group_assignments.yaml +++ b/actions/put.ipam.fhrp_group_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. group: diff --git a/actions/put.ipam.fhrp_groups.yaml b/actions/put.ipam.fhrp_groups.yaml index f434f07a..c7ef7cc1 100644 --- a/actions/put.ipam.fhrp_groups.yaml +++ b/actions/put.ipam.fhrp_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.ip_addresses.yaml b/actions/put.ipam.ip_addresses.yaml index adcf12e4..d02b36dc 100644 --- a/actions/put.ipam.ip_addresses.yaml +++ b/actions/put.ipam.ip_addresses.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. address: diff --git a/actions/put.ipam.ip_ranges.yaml b/actions/put.ipam.ip_ranges.yaml index 79279c80..5ae402ca 100644 --- a/actions/put.ipam.ip_ranges.yaml +++ b/actions/put.ipam.ip_ranges.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. start_address: diff --git a/actions/put.ipam.prefixes.yaml b/actions/put.ipam.prefixes.yaml index 6846648b..88687ae0 100644 --- a/actions/put.ipam.prefixes.yaml +++ b/actions/put.ipam.prefixes.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. prefix: diff --git a/actions/put.ipam.rirs.yaml b/actions/put.ipam.rirs.yaml index 9a83f3f8..e66ddbcc 100644 --- a/actions/put.ipam.rirs.yaml +++ b/actions/put.ipam.rirs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.roles.yaml b/actions/put.ipam.roles.yaml index 669fb878..9462dd6a 100644 --- a/actions/put.ipam.roles.yaml +++ b/actions/put.ipam.roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.route_targets.yaml b/actions/put.ipam.route_targets.yaml index ba99bd27..d8cddd63 100644 --- a/actions/put.ipam.route_targets.yaml +++ b/actions/put.ipam.route_targets.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.service_templates.yaml b/actions/put.ipam.service_templates.yaml index 5434597b..57ca9020 100644 --- a/actions/put.ipam.service_templates.yaml +++ b/actions/put.ipam.service_templates.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.services.yaml b/actions/put.ipam.services.yaml index a1240afd..cb9f4cb0 100644 --- a/actions/put.ipam.services.yaml +++ b/actions/put.ipam.services.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. parent_object_type: diff --git a/actions/put.ipam.vlan_groups.yaml b/actions/put.ipam.vlan_groups.yaml index a00fef2d..28faeee3 100644 --- a/actions/put.ipam.vlan_groups.yaml +++ b/actions/put.ipam.vlan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.vlan_translation_policies.yaml b/actions/put.ipam.vlan_translation_policies.yaml index 2cb7cd1e..90814cc2 100644 --- a/actions/put.ipam.vlan_translation_policies.yaml +++ b/actions/put.ipam.vlan_translation_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.ipam.vlan_translation_rules.yaml b/actions/put.ipam.vlan_translation_rules.yaml index 65837080..0013c133 100644 --- a/actions/put.ipam.vlan_translation_rules.yaml +++ b/actions/put.ipam.vlan_translation_rules.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. policy: diff --git a/actions/put.ipam.vlans.yaml b/actions/put.ipam.vlans.yaml index db892cd6..6c9ccde6 100644 --- a/actions/put.ipam.vlans.yaml +++ b/actions/put.ipam.vlans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. site: diff --git a/actions/put.ipam.vrfs.yaml b/actions/put.ipam.vrfs.yaml index 04316e3d..2edbb094 100644 --- a/actions/put.ipam.vrfs.yaml +++ b/actions/put.ipam.vrfs.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.tenancy.contact_assignments.yaml b/actions/put.tenancy.contact_assignments.yaml index 7479f972..eb11a143 100644 --- a/actions/put.tenancy.contact_assignments.yaml +++ b/actions/put.tenancy.contact_assignments.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. object_type: diff --git a/actions/put.tenancy.contact_groups.yaml b/actions/put.tenancy.contact_groups.yaml index 6f615383..55624135 100644 --- a/actions/put.tenancy.contact_groups.yaml +++ b/actions/put.tenancy.contact_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.tenancy.contact_roles.yaml b/actions/put.tenancy.contact_roles.yaml index 326d7e6b..6e0dbcd2 100644 --- a/actions/put.tenancy.contact_roles.yaml +++ b/actions/put.tenancy.contact_roles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.tenancy.contacts.yaml b/actions/put.tenancy.contacts.yaml index b25185e4..f75aff56 100644 --- a/actions/put.tenancy.contacts.yaml +++ b/actions/put.tenancy.contacts.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. groups: diff --git a/actions/put.tenancy.tenant_groups.yaml b/actions/put.tenancy.tenant_groups.yaml index 6f6f73cb..783205b7 100644 --- a/actions/put.tenancy.tenant_groups.yaml +++ b/actions/put.tenancy.tenant_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.tenancy.tenants.yaml b/actions/put.tenancy.tenants.yaml index bac1e17e..b98dd603 100644 --- a/actions/put.tenancy.tenants.yaml +++ b/actions/put.tenancy.tenants.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.users.groups.yaml b/actions/put.users.groups.yaml index 53db8585..8ca7d1cd 100644 --- a/actions/put.users.groups.yaml +++ b/actions/put.users.groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.users.permissions.yaml b/actions/put.users.permissions.yaml index 67edfaec..1d4856e0 100644 --- a/actions/put.users.permissions.yaml +++ b/actions/put.users.permissions.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.users.tokens.yaml b/actions/put.users.tokens.yaml index 65aec957..b62d7d70 100644 --- a/actions/put.users.tokens.yaml +++ b/actions/put.users.tokens.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. user: diff --git a/actions/put.users.users.yaml b/actions/put.users.users.yaml index 61119bd3..57885fe1 100644 --- a/actions/put.users.users.yaml +++ b/actions/put.users.users.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. username: diff --git a/actions/put.virtualization.cluster_groups.yaml b/actions/put.virtualization.cluster_groups.yaml index 82fe44c1..8ab738e1 100644 --- a/actions/put.virtualization.cluster_groups.yaml +++ b/actions/put.virtualization.cluster_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.virtualization.cluster_types.yaml b/actions/put.virtualization.cluster_types.yaml index 95e57e96..661059f2 100644 --- a/actions/put.virtualization.cluster_types.yaml +++ b/actions/put.virtualization.cluster_types.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.virtualization.clusters.yaml b/actions/put.virtualization.clusters.yaml index 87781a0b..6352e26c 100644 --- a/actions/put.virtualization.clusters.yaml +++ b/actions/put.virtualization.clusters.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.virtualization.interfaces.yaml b/actions/put.virtualization.interfaces.yaml index 5d59556b..469f9f9a 100644 --- a/actions/put.virtualization.interfaces.yaml +++ b/actions/put.virtualization.interfaces.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_machine: diff --git a/actions/put.virtualization.virtual_disks.yaml b/actions/put.virtualization.virtual_disks.yaml index f38600d4..3b2f318f 100644 --- a/actions/put.virtualization.virtual_disks.yaml +++ b/actions/put.virtualization.virtual_disks.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. virtual_machine: diff --git a/actions/put.virtualization.virtual_machines.yaml b/actions/put.virtualization.virtual_machines.yaml index 443c2726..55c087e0 100644 --- a/actions/put.virtualization.virtual_machines.yaml +++ b/actions/put.virtualization.virtual_machines.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.ike_policies.yaml b/actions/put.vpn.ike_policies.yaml index 1bc25c05..47f466d4 100644 --- a/actions/put.vpn.ike_policies.yaml +++ b/actions/put.vpn.ike_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.ike_proposals.yaml b/actions/put.vpn.ike_proposals.yaml index 25969d63..53fc21b1 100644 --- a/actions/put.vpn.ike_proposals.yaml +++ b/actions/put.vpn.ike_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.ipsec_policies.yaml b/actions/put.vpn.ipsec_policies.yaml index 88d4c19d..60d6ee03 100644 --- a/actions/put.vpn.ipsec_policies.yaml +++ b/actions/put.vpn.ipsec_policies.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.ipsec_profiles.yaml b/actions/put.vpn.ipsec_profiles.yaml index a2a5e8e5..02ada3e8 100644 --- a/actions/put.vpn.ipsec_profiles.yaml +++ b/actions/put.vpn.ipsec_profiles.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.ipsec_proposals.yaml b/actions/put.vpn.ipsec_proposals.yaml index 361f1c3d..7a8f039a 100644 --- a/actions/put.vpn.ipsec_proposals.yaml +++ b/actions/put.vpn.ipsec_proposals.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.l2vpn_terminations.yaml b/actions/put.vpn.l2vpn_terminations.yaml index a9352e3b..d674c96d 100644 --- a/actions/put.vpn.l2vpn_terminations.yaml +++ b/actions/put.vpn.l2vpn_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. l2vpn: diff --git a/actions/put.vpn.l2vpns.yaml b/actions/put.vpn.l2vpns.yaml index 15036e5b..cdfd33a0 100644 --- a/actions/put.vpn.l2vpns.yaml +++ b/actions/put.vpn.l2vpns.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. identifier: diff --git a/actions/put.vpn.tunnel_groups.yaml b/actions/put.vpn.tunnel_groups.yaml index 20f1dd62..a0ce8a73 100644 --- a/actions/put.vpn.tunnel_groups.yaml +++ b/actions/put.vpn.tunnel_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.vpn.tunnel_terminations.yaml b/actions/put.vpn.tunnel_terminations.yaml index 0168666c..96e5141e 100644 --- a/actions/put.vpn.tunnel_terminations.yaml +++ b/actions/put.vpn.tunnel_terminations.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. tunnel: diff --git a/actions/put.vpn.tunnels.yaml b/actions/put.vpn.tunnels.yaml index a9a1e853..9d104679 100644 --- a/actions/put.vpn.tunnels.yaml +++ b/actions/put.vpn.tunnels.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.wireless.wireless_lan_groups.yaml b/actions/put.wireless.wireless_lan_groups.yaml index c705448f..b4ac0f64 100644 --- a/actions/put.wireless.wireless_lan_groups.yaml +++ b/actions/put.wireless.wireless_lan_groups.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. name: diff --git a/actions/put.wireless.wireless_lans.yaml b/actions/put.wireless.wireless_lans.yaml index 8b03282a..2e94f9bd 100644 --- a/actions/put.wireless.wireless_lans.yaml +++ b/actions/put.wireless.wireless_lans.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. ssid: diff --git a/actions/put.wireless.wireless_links.yaml b/actions/put.wireless.wireless_links.yaml index aa3d89e3..fb8248d8 100644 --- a/actions/put.wireless.wireless_links.yaml +++ b/actions/put.wireless.wireless_links.yaml @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. interface_a: diff --git a/actions/run.py b/actions/run.py index 41229a5c..dee0a29a 100644 --- a/actions/run.py +++ b/actions/run.py @@ -10,10 +10,17 @@ class NetboxHTTPAction(NetboxBaseAction): Action to call netbox api and return response. """ - def run(self, endpoint_uri, http_verb, get_detail_route_eligible, fail_non_2xx, **kwargs): + def run(self, endpoint_uri, http_verb, get_detail_route_eligible, fail_non_2xx=None, **kwargs): """ StackStorm action entry point. """ + # Determine effective fail_non_2xx behavior: + # - If the caller explicitly provided fail_non_2xx (True/False), honor that. + # - Otherwise, fall back to the pack-level default_fail_non_2xx config option (default False). + if fail_non_2xx is None: + effective_fail_non_2xx = self.config.get("default_fail_non_2xx", False) + else: + effective_fail_non_2xx = fail_non_2xx if http_verb == "get": if kwargs.get("id", False) and get_detail_route_eligible: # modify the `endpoint_uri` to use the detail route @@ -27,7 +34,7 @@ def run(self, endpoint_uri, http_verb, get_detail_route_eligible, fail_non_2xx, result = self.make_request(endpoint_uri, http_verb, **kwargs) - if fail_non_2xx: + if effective_fail_non_2xx: # Return error rather than storing it in the keystone. if result["status"] not in range(200, 300): return (False, result) @@ -53,7 +60,7 @@ def run(self, endpoint_uri, http_verb, get_detail_route_eligible, fail_non_2xx, # http return code is not 2xx. action_succeeded = True - if fail_non_2xx: + if effective_fail_non_2xx: action_succeeded = result.get("status") in range(200, 300) return (action_succeeded, result) diff --git a/bin/action-template.jinja2 b/bin/action-template.jinja2 index 64fe67ff..452e6136 100644 --- a/bin/action-template.jinja2 +++ b/bin/action-template.jinja2 @@ -18,7 +18,6 @@ parameters: immutable: true type: boolean fail_non_2xx: - default: false type: boolean description: Set action as failed when http return reponse status isn't 2xx. {%- for parameter in parameters %} diff --git a/config.schema.yaml b/config.schema.yaml index 62c8ce83..82e7babf 100644 --- a/config.schema.yaml +++ b/config.schema.yaml @@ -20,6 +20,12 @@ ssl_verify: type: "boolean" required: true +default_fail_non_2xx: + description: "Default behavior for NetBox HTTP actions: when true, actions will fail on non-2xx NetBox responses unless the per-action fail_non_2xx parameter is explicitly set." + type: "boolean" + required: false + default: false + sensor_address: description: "Host address to run the Webhook sensor on." type: "string"