Add DNS Provider for Oracle Cloud (#808)
This commit is contained in:
parent
a144800896
commit
af67943e94
89 changed files with 9842 additions and 0 deletions
34
vendor/github.com/oracle/oci-go-sdk/dns/tsig.go
generated
vendored
Normal file
34
vendor/github.com/oracle/oci-go-sdk/dns/tsig.go
generated
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
// 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.us-phoenix-1.oraclecloud.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm).
|
||||
//
|
||||
|
||||
package dns
|
||||
|
||||
import (
|
||||
"github.com/oracle/oci-go-sdk/common"
|
||||
)
|
||||
|
||||
// Tsig A TSIG (https://tools.ietf.org/html/rfc2845) key.
|
||||
type Tsig struct {
|
||||
|
||||
// A domain name identifying the key for a given pair of hosts.
|
||||
Name *string `mandatory:"true" json:"name"`
|
||||
|
||||
// A base64 string encoding the binary shared secret.
|
||||
Secret *string `mandatory:"true" json:"secret"`
|
||||
|
||||
// TSIG Algorithms are encoded as domain names, but most consist of only one
|
||||
// non-empty label, which is not required to be explicitly absolute.
|
||||
// Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256,
|
||||
// hmac-sha512. For more information on these algorithms, see RFC 4635 (https://tools.ietf.org/html/rfc4635#section-2).
|
||||
Algorithm *string `mandatory:"true" json:"algorithm"`
|
||||
}
|
||||
|
||||
func (m Tsig) String() string {
|
||||
return common.PointerString(m)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue