Skip to content

Commit

Permalink
resolve doc build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasmhughes committed Jan 1, 2024
1 parent e5a4709 commit ebd0280
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 42 deletions.
6 changes: 6 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,19 @@ Salt Extension for interacting with Microsoft Azure
:caption: Guides
:hidden:

topics/index
topics/installation

.. toctree::
:maxdepth: 2
:caption: Provided Modules
:hidden:

ref/clouds/index
ref/fileserver/index
ref/modules/index
ref/states/index
ref/utils/index

.. toctree::
:maxdepth: 2
Expand Down
19 changes: 0 additions & 19 deletions docs/ref/states/all.rst

This file was deleted.

11 changes: 0 additions & 11 deletions docs/ref/utils/all.rst

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def create_or_update(
:param availability_set: The resource ID of the availability set that the virtual machine should be assigned to.
Virtual machines specified in the same availability set are allocated to different nodes to maximize
availability. For more information about availability sets, see `Manage the availability of virtual
machines <https://docs.microsoft.com/azure/virtual-machines/virtual-machines-windows-manage-availability>`_.
machines <https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview>`_.
Currently, a VM can only be added to availability set at creation time. An existing VM cannot be added to an
availability set. This parameter cannot be specified if the ``virtual_machine_scale_set`` parameter is also
specified.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def present(
:param availability_set: The resource ID of the availability set that the virtual machine should be assigned to.
Virtual machines specified in the same availability set are allocated to different nodes to maximize
availability. For more information about availability sets, see `Manage the availability of virtual
machines <https://docs.microsoft.com/azure/virtual-machines/virtual-machines-windows-manage-availability>`_.
machines <https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview>`_.
Currently, a VM can only be added to availability set at creation time. An existing VM cannot be added to an
availability set. This parameter cannot be specified if the ``virtual_machine_scale_set`` parameter is also
specified.
Expand Down
20 changes: 10 additions & 10 deletions src/saltext/azurerm/states/azurerm_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,61 +434,61 @@ def record_set_present(
:param arecords:
The list of A records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.arecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.arecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param aaaa_records:
The list of AAAA records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.aaaarecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.aaaarecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param mx_records:
The list of MX records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.mxrecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.mxrecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param ns_records:
The list of NS records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.nsrecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.nsrecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param ptr_records:
The list of PTR records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.ptrrecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.ptrrecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param srv_records:
The list of SRV records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.srvrecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.srvrecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param txt_records:
The list of TXT records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.txtrecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.txtrecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param cname_record:
The CNAME record in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.cnamerecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.cnamerecord?view=azure-python>`__
to create a dictionary representing the record object.
:param soa_record:
The SOA record in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.soarecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.soarecord?view=azure-python>`__
to create a dictionary representing the record object.
:param caa_records:
The list of CAA records in the record set. View the
`Azure SDK documentation
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.dns.models.caarecord?view=azure-python>`__
<https://learn.microsoft.com/en-us/python/api/azure-mgmt-dns/azure.mgmt.dns.v2018_05_01.models.caarecord?view=azure-python>`__
to create a list of dictionaries representing the record objects.
:param connection_auth:
Expand Down

0 comments on commit ebd0280

Please sign in to comment.