You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/api/workers/certificate.gen.go

17 lines
417 B

// Code generated by "make api"; DO NOT EDIT.
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package workers
import (
"time"
)
type Certificate struct {
Id string `json:"id,omitempty"`
PublicKeySha256 string `json:"public_key_sha256,omitempty"`
NotBeforeTime time.Time `json:"not_before_time,omitempty"`
NotAfterTime time.Time `json:"not_after_time,omitempty"`
}