diff --git a/api b/api index bd8f888..06fe017 160000 --- a/api +++ b/api @@ -1 +1 @@ -Subproject commit bd8f8881dea3c2368002426b84130072e8f7a506 +Subproject commit 06fe017c2ee5ff51208f052f39a13f4963f3bc9f diff --git a/src/Api/api.ts b/src/Api/api.ts index fd04316..62e0b26 100644 --- a/src/Api/api.ts +++ b/src/Api/api.ts @@ -113,7 +113,7 @@ export interface Domain { */ domain_id?: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof Domain */ @@ -144,6 +144,12 @@ export interface DomainIpa { * @memberof DomainIpa */ servers: Array; + /** + * List of automount locations for AutoFS + * @type {Array} + * @memberof DomainIpa + */ + automount_locations?: Array; /** * A base64 representation of all the list of chain of certificates, including the server ca. * @type {Array} @@ -151,7 +157,7 @@ export interface DomainIpa { */ ca_certs: Array; /** - * List of allowed locations + * List of DNS locations * @type {Array} * @memberof DomainIpa */ @@ -163,7 +169,7 @@ export interface DomainIpa { */ realm_domains: Array; /** - * A Kerberos realm name (usually all upper-case domain name) + * A Kerberos realm name (usually all upper-case domain name). The realm can only be set during initial registration and not be modified by updates. * @type {string} * @memberof DomainIpa */ @@ -295,7 +301,7 @@ export interface DomainRegisterResponse { */ domain_id: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof DomainRegisterResponse */ @@ -345,7 +351,7 @@ export interface DomainResponse { */ domain_id: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof DomainResponse */ @@ -407,7 +413,7 @@ export interface DomainUpdateResponse { */ domain_id?: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof DomainUpdateResponse */ @@ -489,7 +495,7 @@ export interface HostConf { */ domain_id?: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof HostConf */ @@ -508,6 +514,12 @@ export interface HostConf { * @interface HostConfIpa */ export interface HostConfIpa { + /** + * Automount location name for ipa-client-automount + * @type {string} + * @memberof HostConfIpa + */ + automount_location?: string; /** * A string of concatenated, PEM-encoded X.509 certificates * @type {string} @@ -521,7 +533,13 @@ export interface HostConfIpa { */ enrollment_servers: Array; /** - * A Kerberos realm name (usually all upper-case domain name) + * List of additional arguments for ipa-client-install + * @type {Array} + * @memberof HostConfIpa + */ + ipa_client_install_args?: Array; + /** + * A Kerberos realm name (usually all upper-case domain name). The realm can only be set during initial registration and not be modified by updates. * @type {string} * @memberof HostConfIpa */ @@ -565,7 +583,7 @@ export interface HostConfResponseSchema { */ domain_id: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof HostConfResponseSchema */ @@ -621,7 +639,7 @@ export interface ListDomainsData { */ domain_id: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof ListDomainsData */ @@ -765,7 +783,7 @@ export interface RegisterDomainRequest { */ domain_id?: string; /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof RegisterDomainRequest */ @@ -810,7 +828,7 @@ export interface SigningKeysResponse { */ export interface UpdateDomainAgentRequest { /** - * A name of a domain (all lower-case) + * A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates. * @type {string} * @memberof UpdateDomainAgentRequest */