@@ -25,7 +25,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) List(
25
25
ctx context.Context ,
26
26
options * OperationalWebhookEndpointListOptions ,
27
27
) (* ListResponseOperationalWebhookEndpointOut , error ) {
28
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .ListOperationalWebhookEndpoints (
28
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointList (
29
29
ctx ,
30
30
)
31
31
@@ -67,7 +67,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) CreateWithOptions(
67
67
operationalWebhookEndpointIn * OperationalWebhookEndpointIn ,
68
68
options * PostOptions ,
69
69
) (* OperationalWebhookEndpointOut , error ) {
70
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .CreateOperationalWebhookEndpoint (
70
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointCreate (
71
71
ctx ,
72
72
).OperationalWebhookEndpointIn (* operationalWebhookEndpointIn )
73
73
@@ -90,7 +90,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) Get(
90
90
ctx context.Context ,
91
91
endpointId string ,
92
92
) (* OperationalWebhookEndpointOut , error ) {
93
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .GetOperationalWebhookEndpoint (
93
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointGet (
94
94
ctx ,
95
95
endpointId ,
96
96
)
@@ -109,7 +109,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) Update(
109
109
endpointId string ,
110
110
operationalWebhookEndpointUpdate * OperationalWebhookEndpointUpdate ,
111
111
) (* OperationalWebhookEndpointOut , error ) {
112
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .UpdateOperationalWebhookEndpoint (
112
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointUpdate (
113
113
ctx ,
114
114
endpointId ,
115
115
).OperationalWebhookEndpointUpdate (* operationalWebhookEndpointUpdate )
@@ -127,7 +127,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) Delete(
127
127
ctx context.Context ,
128
128
endpointId string ,
129
129
) error {
130
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .DeleteOperationalWebhookEndpoint (
130
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointDelete (
131
131
ctx ,
132
132
endpointId ,
133
133
)
@@ -144,7 +144,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) GetSecret(
144
144
ctx context.Context ,
145
145
endpointId string ,
146
146
) (* OperationalWebhookEndpointSecretOut , error ) {
147
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .GetOperationalWebhookEndpointSecret (
147
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointGetSecret (
148
148
ctx ,
149
149
endpointId ,
150
150
)
@@ -180,7 +180,7 @@ func (operationalWebhookEndpoint *OperationalWebhookEndpoint) RotateSecretWithOp
180
180
operationalWebhookEndpointSecretIn * OperationalWebhookEndpointSecretIn ,
181
181
options * PostOptions ,
182
182
) error {
183
- req := operationalWebhookEndpoint .api .WebhookEndpointAPI .RotateOperationalWebhookEndpointSecret (
183
+ req := operationalWebhookEndpoint .api .WebhookEndpointAPI .V1OperationalWebhookEndpointRotateSecret (
184
184
ctx ,
185
185
endpointId ,
186
186
)
0 commit comments