-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_cname_all_of.go
17 lines (16 loc) · 2.25 KB
/
model_cname_all_of.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
* Domeneshop API Documentation
*
* # Overview Domeneshop offers a simple, REST-based API, which currently supports the following features: - List domains - List invoices - Create, read, update and delete DNS records for domains - Create, read, update and delete HTTP forwards (\"WWW forwarding\") for domains - Dynamic DNS (DDNS) update endpoints for use in consumer routers More features are planned, including: - Web hosting administration - Email address and email user/account administration # Testing period The API service is in version 0, which means it is possible that the interface will change rapidly during the testing period. For that reason, **the documentation on these pages may sometimes be outdated.** Additionally, we make no guarantees about the stability of the API service during this testing period, and therefore ask customers to be careful with using the service for business critical purposes. # Authentication The Domeneshop API currently supports only one method of authentication, **HTTP Basic Auth**. More authentication methods may be added in the future. To generate credentials, visit <a href=\"https://www.domeneshop.no/admin?view=api\" target=\"_blank\">this page</a> after logging in to the control panel on our website: <a href=\"https://www.domeneshop.no/admin?view=api\" target=\"_blank\">https://www.domeneshop.no/admin?view=api</a> # Libraries Domeneshop maintains multiple API libraries to simplify using the API. Please note that these libraries have the same stability guarantees to the API while the API is in version 0. The libraries may be found in our [Github repository](https://github.com/domeneshop/). Domeneshop also maintains a plugin for [EFF's Certbot](https://certbot.eff.org/), which automates issuance and renewal of SSL-certificates on your own servers for domains that use Domeneshop's DNS service. This plugin is found in our Github repository [here](https://github.com/domeneshop/certbot-dns-domeneshop). <SecurityDefinitions />
*
* API version: v0
* Contact: kundeservice@domeneshop.no
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package domeneshop
// CnameAllOf struct for CnameAllOf
type CnameAllOf struct {
Type string `json:"type"`
// The target hostname
Data string `json:"data"`
}