Skip to content

Commit c5da7f9

Browse files
authored
Update examples to use FQCN (#881)
1 parent ce12847 commit c5da7f9

File tree

124 files changed

+428
-412
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+428
-412
lines changed

docs/plugins/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Netbox.Netbox
77
=============
88

9-
Collection version 3.9.0
9+
Collection version 3.8.1
1010

1111
.. contents::
1212
:local:

docs/plugins/nb_inventory_inventory.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.nb_inventory inventory -- NetBox inventory source
4343
.. Collection note
4444
4545
.. note::
46-
This inventory plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This inventory plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949

docs/plugins/nb_lookup_lookup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.nb_lookup lookup -- Queries and returns elements from NetBox
4343
.. Collection note
4444
4545
.. note::
46-
This lookup plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This lookup plugin is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this lookup plugin,

docs/plugins/netbox_aggregate_module.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_aggregate module -- Creates or removes aggregates from NetB
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -597,7 +597,7 @@ Examples
597597

598598
tasks:
599599
- name: Create aggregate within NetBox with only required information
600-
netbox_aggregate:
600+
netbox.netbox.netbox_aggregate:
601601
netbox_url: http://netbox.local
602602
netbox_token: thisIsMyToken
603603
data:
@@ -606,7 +606,7 @@ Examples
606606
state: present
607607

608608
- name: Create aggregate with several specified options
609-
netbox_aggregate:
609+
netbox.netbox.netbox_aggregate:
610610
netbox_url: http://netbox.local
611611
netbox_token: thisIsMyToken
612612
data:
@@ -619,7 +619,7 @@ Examples
619619
state: present
620620

621621
- name: Delete aggregate within netbox
622-
netbox_aggregate:
622+
netbox.netbox.netbox_aggregate:
623623
netbox_url: http://netbox.local
624624
netbox_token: thisIsMyToken
625625
data:

docs/plugins/netbox_cable_module.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cable module -- Create, update or delete cables within NetB
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -874,7 +874,7 @@ Examples
874874

875875
tasks:
876876
- name: Create cable within NetBox with only required information
877-
netbox_cable:
877+
netbox.netbox.netbox_cable:
878878
netbox_url: http://netbox.local
879879
netbox_token: thisIsMyToken
880880
data:
@@ -889,7 +889,7 @@ Examples
889889
state: present
890890

891891
- name: Update cable with other fields
892-
netbox_cable:
892+
netbox.netbox.netbox_cable:
893893
netbox_url: http://netbox.local
894894
netbox_token: thisIsMyToken
895895
data:
@@ -912,7 +912,7 @@ Examples
912912
state: present
913913

914914
- name: Delete cable within netbox
915-
netbox_cable:
915+
netbox.netbox.netbox_cable:
916916
netbox_url: http://netbox.local
917917
netbox_token: thisIsMyToken
918918
data:

docs/plugins/netbox_circuit_module.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_circuit module -- Create, update or delete circuits within
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -767,7 +767,7 @@ Examples
767767

768768
tasks:
769769
- name: Create circuit within NetBox with only required information
770-
netbox_circuit:
770+
netbox.netbox.netbox_circuit:
771771
netbox_url: http://netbox.local
772772
netbox_token: thisIsMyToken
773773
data:
@@ -777,7 +777,7 @@ Examples
777777
state: present
778778

779779
- name: Update circuit with other fields
780-
netbox_circuit:
780+
netbox.netbox.netbox_circuit:
781781
netbox_url: http://netbox.local
782782
netbox_token: thisIsMyToken
783783
data:
@@ -793,7 +793,7 @@ Examples
793793
state: present
794794

795795
- name: Delete circuit within netbox
796-
netbox_circuit:
796+
netbox.netbox.netbox_circuit:
797797
netbox_url: http://netbox.local
798798
netbox_token: thisIsMyToken
799799
data:

docs/plugins/netbox_circuit_termination_module.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_circuit_termination module -- Create, update or delete circ
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -750,7 +750,7 @@ Examples
750750

751751
tasks:
752752
- name: Create circuit termination within NetBox with only required information
753-
netbox_circuit_termination:
753+
netbox.netbox.netbox_circuit_termination:
754754
netbox_url: http://netbox.local
755755
netbox_token: thisIsMyToken
756756
data:
@@ -761,7 +761,7 @@ Examples
761761
state: present
762762

763763
- name: Update circuit termination with other fields
764-
netbox_circuit_termination:
764+
netbox.netbox.netbox_circuit_termination:
765765
netbox_url: http://netbox.local
766766
netbox_token: thisIsMyToken
767767
data:
@@ -774,7 +774,7 @@ Examples
774774
state: present
775775

776776
- name: Delete circuit termination within netbox
777-
netbox_circuit_termination:
777+
netbox.netbox.netbox_circuit_termination:
778778
netbox_url: http://netbox.local
779779
netbox_token: thisIsMyToken
780780
data:

docs/plugins/netbox_circuit_type_module.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_circuit_type module -- Create, update or delete circuit typ
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -537,15 +537,15 @@ Examples
537537

538538
tasks:
539539
- name: Create type within NetBox with only required information
540-
netbox_circuit_type:
540+
netbox.netbox.netbox_circuit_type:
541541
netbox_url: http://netbox.local
542542
netbox_token: thisIsMyToken
543543
data:
544544
name: Test Circuit Type
545545
state: present
546546

547547
- name: Delete circuit type within netbox
548-
netbox_circuit_type:
548+
netbox.netbox.netbox_circuit_type:
549549
netbox_url: http://netbox.local
550550
netbox_token: thisIsMyToken
551551
data:

docs/plugins/netbox_cluster_group_module.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cluster_group module -- Create, update or delete cluster gr
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -537,15 +537,15 @@ Examples
537537

538538
tasks:
539539
- name: Create cluster group within NetBox with only required information
540-
netbox_cluster_group:
540+
netbox.netbox.netbox_cluster_group:
541541
netbox_url: http://netbox.local
542542
netbox_token: thisIsMyToken
543543
data:
544544
name: Test Cluster Group
545545
state: present
546546

547547
- name: Delete cluster within netbox
548-
netbox_cluster_group:
548+
netbox.netbox.netbox_cluster_group:
549549
netbox_url: http://netbox.local
550550
netbox_token: thisIsMyToken
551551
data:

docs/plugins/netbox_cluster_module.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ netbox.netbox.netbox_cluster module -- Create, update or delete clusters within
4343
.. Collection note
4444
4545
.. note::
46-
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.9.0).
46+
This module is part of the `netbox.netbox collection <https://galaxy.ansible.com/netbox/netbox>`_ (version 3.8.1).
4747

4848
To install it, use: :code:`ansible-galaxy collection install netbox.netbox`.
4949
You need further requirements to be able to use this module,
@@ -665,7 +665,7 @@ Examples
665665

666666
tasks:
667667
- name: Create cluster within NetBox with only required information
668-
netbox_cluster:
668+
netbox.netbox.netbox_cluster:
669669
netbox_url: http://netbox.local
670670
netbox_token: thisIsMyToken
671671
data:
@@ -674,15 +674,15 @@ Examples
674674
state: present
675675

676676
- name: Delete cluster within netbox
677-
netbox_cluster:
677+
netbox.netbox.netbox_cluster:
678678
netbox_url: http://netbox.local
679679
netbox_token: thisIsMyToken
680680
data:
681681
name: Test Cluster
682682
state: absent
683683

684684
- name: Create cluster with tags
685-
netbox_cluster:
685+
netbox.netbox.netbox_cluster:
686686
netbox_url: http://netbox.local
687687
netbox_token: thisIsMyToken
688688
data:
@@ -693,7 +693,7 @@ Examples
693693
state: present
694694

695695
- name: Update the group and site of an existing cluster
696-
netbox_cluster:
696+
netbox.netbox.netbox_cluster:
697697
netbox_url: http://netbox.local
698698
netbox_token: thisIsMyToken
699699
data:

0 commit comments

Comments
 (0)