1
0
Fork 0

Migrate to go-acme/lego.

This commit is contained in:
Ludovic Fernandez 2019-03-14 11:04:04 +01:00 committed by Traefiker Bot
parent 4a68d29ce2
commit 87da7520de
286 changed files with 14021 additions and 2501 deletions

25
vendor/github.com/oracle/oci-go-sdk/dns/nameserver.go generated vendored Normal file
View file

@ -0,0 +1,25 @@
// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
// Code generated. DO NOT EDIT.
// DNS API
//
// API for the DNS service. Use this API to manage DNS zones, records, and other DNS resources.
// For more information, see Overview of the DNS Service (https://docs.cloud.oracle.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm).
//
package dns
import (
"github.com/oracle/oci-go-sdk/common"
)
// Nameserver A server that has been set up to answer DNS queries for a zone.
type Nameserver struct {
// The hostname of the nameserver.
Hostname *string `mandatory:"true" json:"hostname"`
}
func (m Nameserver) String() string {
return common.PointerString(m)
}