-
Notifications
You must be signed in to change notification settings - Fork 611
/
Copy pathhostnameassociation.go
243 lines (206 loc) · 8.25 KB
/
hostnameassociation.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package certificate_authorities
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"github.com/cloudflare/cloudflare-go/v4/internal/apijson"
"github.com/cloudflare/cloudflare-go/v4/internal/apiquery"
"github.com/cloudflare/cloudflare-go/v4/internal/param"
"github.com/cloudflare/cloudflare-go/v4/internal/requestconfig"
"github.com/cloudflare/cloudflare-go/v4/option"
"github.com/cloudflare/cloudflare-go/v4/shared"
)
// HostnameAssociationService contains methods and other services that help with
// interacting with the cloudflare API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewHostnameAssociationService] method instead.
type HostnameAssociationService struct {
Options []option.RequestOption
}
// NewHostnameAssociationService generates a new service that applies the given
// options to each request. These options are applied after the parent client's
// options (if there is one), and before any request-specific options.
func NewHostnameAssociationService(opts ...option.RequestOption) (r *HostnameAssociationService) {
r = &HostnameAssociationService{}
r.Options = opts
return
}
// Replace Hostname Associations
func (r *HostnameAssociationService) Update(ctx context.Context, params HostnameAssociationUpdateParams, opts ...option.RequestOption) (res *HostnameAssociationUpdateResponse, err error) {
var env HostnameAssociationUpdateResponseEnvelope
opts = append(r.Options[:], opts...)
if params.ZoneID.Value == "" {
err = errors.New("missing required zone_id parameter")
return
}
path := fmt.Sprintf("zones/%s/certificate_authorities/hostname_associations", params.ZoneID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPut, path, params, &env, opts...)
if err != nil {
return
}
res = &env.Result
return
}
// List Hostname Associations
func (r *HostnameAssociationService) Get(ctx context.Context, params HostnameAssociationGetParams, opts ...option.RequestOption) (res *HostnameAssociationGetResponse, err error) {
var env HostnameAssociationGetResponseEnvelope
opts = append(r.Options[:], opts...)
if params.ZoneID.Value == "" {
err = errors.New("missing required zone_id parameter")
return
}
path := fmt.Sprintf("zones/%s/certificate_authorities/hostname_associations", params.ZoneID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, params, &env, opts...)
if err != nil {
return
}
res = &env.Result
return
}
type HostnameAssociation = string
type HostnameAssociationParam = string
type TLSHostnameAssociationParam struct {
Hostnames param.Field[[]HostnameAssociationParam] `json:"hostnames"`
// The UUID for a certificate that was uploaded to the mTLS Certificate Management
// endpoint. If no mtls_certificate_id is given, the hostnames will be associated
// to your active Cloudflare Managed CA.
MTLSCertificateID param.Field[string] `json:"mtls_certificate_id"`
}
func (r TLSHostnameAssociationParam) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type HostnameAssociationUpdateResponse struct {
Hostnames []HostnameAssociation `json:"hostnames"`
JSON hostnameAssociationUpdateResponseJSON `json:"-"`
}
// hostnameAssociationUpdateResponseJSON contains the JSON metadata for the struct
// [HostnameAssociationUpdateResponse]
type hostnameAssociationUpdateResponseJSON struct {
Hostnames apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *HostnameAssociationUpdateResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r hostnameAssociationUpdateResponseJSON) RawJSON() string {
return r.raw
}
type HostnameAssociationGetResponse struct {
Hostnames []HostnameAssociation `json:"hostnames"`
JSON hostnameAssociationGetResponseJSON `json:"-"`
}
// hostnameAssociationGetResponseJSON contains the JSON metadata for the struct
// [HostnameAssociationGetResponse]
type hostnameAssociationGetResponseJSON struct {
Hostnames apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *HostnameAssociationGetResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r hostnameAssociationGetResponseJSON) RawJSON() string {
return r.raw
}
type HostnameAssociationUpdateParams struct {
// Identifier
ZoneID param.Field[string] `path:"zone_id,required"`
TLSHostnameAssociation TLSHostnameAssociationParam `json:"tls_hostname_association,required"`
}
func (r HostnameAssociationUpdateParams) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r.TLSHostnameAssociation)
}
type HostnameAssociationUpdateResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
// Whether the API call was successful
Success HostnameAssociationUpdateResponseEnvelopeSuccess `json:"success,required"`
Result HostnameAssociationUpdateResponse `json:"result"`
JSON hostnameAssociationUpdateResponseEnvelopeJSON `json:"-"`
}
// hostnameAssociationUpdateResponseEnvelopeJSON contains the JSON metadata for the
// struct [HostnameAssociationUpdateResponseEnvelope]
type hostnameAssociationUpdateResponseEnvelopeJSON struct {
Errors apijson.Field
Messages apijson.Field
Success apijson.Field
Result apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *HostnameAssociationUpdateResponseEnvelope) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r hostnameAssociationUpdateResponseEnvelopeJSON) RawJSON() string {
return r.raw
}
// Whether the API call was successful
type HostnameAssociationUpdateResponseEnvelopeSuccess bool
const (
HostnameAssociationUpdateResponseEnvelopeSuccessTrue HostnameAssociationUpdateResponseEnvelopeSuccess = true
)
func (r HostnameAssociationUpdateResponseEnvelopeSuccess) IsKnown() bool {
switch r {
case HostnameAssociationUpdateResponseEnvelopeSuccessTrue:
return true
}
return false
}
type HostnameAssociationGetParams struct {
// Identifier
ZoneID param.Field[string] `path:"zone_id,required"`
// The UUID to match against for a certificate that was uploaded to the mTLS
// Certificate Management endpoint. If no mtls_certificate_id is given, the results
// will be the hostnames associated to your active Cloudflare Managed CA.
MTLSCertificateID param.Field[string] `query:"mtls_certificate_id"`
}
// URLQuery serializes [HostnameAssociationGetParams]'s query parameters as
// `url.Values`.
func (r HostnameAssociationGetParams) URLQuery() (v url.Values) {
return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
ArrayFormat: apiquery.ArrayQueryFormatRepeat,
NestedFormat: apiquery.NestedQueryFormatDots,
})
}
type HostnameAssociationGetResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
// Whether the API call was successful
Success HostnameAssociationGetResponseEnvelopeSuccess `json:"success,required"`
Result HostnameAssociationGetResponse `json:"result"`
JSON hostnameAssociationGetResponseEnvelopeJSON `json:"-"`
}
// hostnameAssociationGetResponseEnvelopeJSON contains the JSON metadata for the
// struct [HostnameAssociationGetResponseEnvelope]
type hostnameAssociationGetResponseEnvelopeJSON struct {
Errors apijson.Field
Messages apijson.Field
Success apijson.Field
Result apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *HostnameAssociationGetResponseEnvelope) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r hostnameAssociationGetResponseEnvelopeJSON) RawJSON() string {
return r.raw
}
// Whether the API call was successful
type HostnameAssociationGetResponseEnvelopeSuccess bool
const (
HostnameAssociationGetResponseEnvelopeSuccessTrue HostnameAssociationGetResponseEnvelopeSuccess = true
)
func (r HostnameAssociationGetResponseEnvelopeSuccess) IsKnown() bool {
switch r {
case HostnameAssociationGetResponseEnvelopeSuccessTrue:
return true
}
return false
}