mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
0deebaf637
* Add HCCLink resource type * Register HCCLink resource type with basic validation * Add validation for required fields * Add test for default ACLs * Add no-op controller for HCCLink * Add resource-apis semantic validation check in hcclink controller * Add copyright headers * Rename HCCLink to Link * Add hcp_cluster_url to link proto * Update 'disabled' reason with more detail * Update link status name to consul.io/hcp/link * Change link version from v1 to v2 * Use feature flag/experiment to enable v2 resources with HCP
23 lines
574 B
Go
23 lines
574 B
Go
// Code generated by protoc-json-shim. DO NOT EDIT.
|
|
package hcpv2
|
|
|
|
import (
|
|
protojson "google.golang.org/protobuf/encoding/protojson"
|
|
)
|
|
|
|
// MarshalJSON is a custom marshaler for Link
|
|
func (this *Link) MarshalJSON() ([]byte, error) {
|
|
str, err := LinkMarshaler.Marshal(this)
|
|
return []byte(str), err
|
|
}
|
|
|
|
// UnmarshalJSON is a custom unmarshaler for Link
|
|
func (this *Link) UnmarshalJSON(b []byte) error {
|
|
return LinkUnmarshaler.Unmarshal(b, this)
|
|
}
|
|
|
|
var (
|
|
LinkMarshaler = &protojson.MarshalOptions{}
|
|
LinkUnmarshaler = &protojson.UnmarshalOptions{DiscardUnknown: false}
|
|
)
|