Merge pull request #931 from puppetlabs/pdksync_dependency_gems_update
[puppet-modules/puppetlabs-apt.git] / types / auth_conf_entry.pp
index 40648d1fbd019256f56ff2835773a490e6a4330d..cb6f92a9f5c42e1c45641ad5e9e078b952a00ebc 100644 (file)
@@ -1 +1,20 @@
-type Apt::Auth_conf_entry = Struct[{ machine => String[1], login => String, password => String }]
+# @summary Login configuration settings that are recorded in the file `/etc/apt/auth.conf`.
+#
+# @see https://manpages.debian.org/testing/apt/apt_auth.conf.5.en.html for more information
+#
+# @param machine
+#   Hostname of machine to connect to.
+#
+# @param login
+#   Specifies the username to connect with.
+#
+# @param password
+#   Specifies the password to connect with.
+#
+type Apt::Auth_conf_entry = Struct[
+  {
+    machine => String[1],
+    login => String,
+    password => String
+  }
+]