1
+ // this file is @generated
1
2
package com.svix.kotlin
2
3
3
4
import com.svix.kotlin.exceptions.ApiException
4
5
import com.svix.kotlin.internal.apis.WebhookEndpointApi as OperationalWebhookEndpointApi
5
6
import com.svix.kotlin.models.ListResponseOperationalWebhookEndpointOut
7
+ import com.svix.kotlin.models.OperationalWebhookEndpointHeadersIn
8
+ import com.svix.kotlin.models.OperationalWebhookEndpointHeadersOut
6
9
import com.svix.kotlin.models.OperationalWebhookEndpointIn
7
10
import com.svix.kotlin.models.OperationalWebhookEndpointOut
8
11
import com.svix.kotlin.models.OperationalWebhookEndpointSecretIn
@@ -26,7 +29,7 @@ class OperationalWebhookEndpointListOptions {
26
29
}
27
30
28
31
class OperationalWebhookEndpoint internal constructor(token : String , options : SvixOptions ) {
29
- val api = OperationalWebhookEndpointApi (options.serverUrl)
32
+ private val api = OperationalWebhookEndpointApi (options.serverUrl)
30
33
31
34
init {
32
35
api.accessToken = token
@@ -35,6 +38,7 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
35
38
options.numRetries?.let { api.numRetries = it }
36
39
}
37
40
41
+ /* * List operational webhook endpoints. */
38
42
suspend fun list (
39
43
options : OperationalWebhookEndpointListOptions = OperationalWebhookEndpointListOptions ()
40
44
): ListResponseOperationalWebhookEndpointOut {
@@ -49,17 +53,22 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
49
53
}
50
54
}
51
55
56
+ /* * Create an operational webhook endpoint. */
52
57
suspend fun create (
53
- endpointIn : OperationalWebhookEndpointIn ,
58
+ operationalWebhookEndpointIn : OperationalWebhookEndpointIn ,
54
59
options : PostOptions = PostOptions (),
55
60
): OperationalWebhookEndpointOut {
56
61
try {
57
- return api.v1OperationalWebhookEndpointCreate(endpointIn, options.idempotencyKey)
62
+ return api.v1OperationalWebhookEndpointCreate(
63
+ operationalWebhookEndpointIn,
64
+ options.idempotencyKey,
65
+ )
58
66
} catch (e: Exception ) {
59
67
throw ApiException .wrap(e)
60
68
}
61
69
}
62
70
71
+ /* * Get an operational webhook endpoint. */
63
72
suspend fun get (endpointId : String ): OperationalWebhookEndpointOut {
64
73
try {
65
74
return api.v1OperationalWebhookEndpointGet(endpointId)
@@ -68,17 +77,22 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
68
77
}
69
78
}
70
79
80
+ /* * Update an operational webhook endpoint. */
71
81
suspend fun update (
72
82
endpointId : String ,
73
- endpointUpdate : OperationalWebhookEndpointUpdate ,
83
+ operationalWebhookEndpointUpdate : OperationalWebhookEndpointUpdate ,
74
84
): OperationalWebhookEndpointOut {
75
85
try {
76
- return api.v1OperationalWebhookEndpointUpdate(endpointId, endpointUpdate)
86
+ return api.v1OperationalWebhookEndpointUpdate(
87
+ endpointId,
88
+ operationalWebhookEndpointUpdate,
89
+ )
77
90
} catch (e: Exception ) {
78
91
throw ApiException .wrap(e)
79
92
}
80
93
}
81
94
95
+ /* * Delete an operational webhook endpoint. */
82
96
suspend fun delete (endpointId : String ) {
83
97
try {
84
98
api.v1OperationalWebhookEndpointDelete(endpointId)
@@ -87,6 +101,36 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
87
101
}
88
102
}
89
103
104
+ /* * Get the additional headers to be sent with the operational webhook. */
105
+ suspend fun getHeaders (endpointId : String ): OperationalWebhookEndpointHeadersOut {
106
+ try {
107
+ return api.v1OperationalWebhookEndpointGetHeaders(endpointId)
108
+ } catch (e: Exception ) {
109
+ throw ApiException .wrap(e)
110
+ }
111
+ }
112
+
113
+ /* * Set the additional headers to be sent with the operational webhook. */
114
+ suspend fun updateHeaders (
115
+ endpointId : String ,
116
+ operationalWebhookEndpointHeadersIn : OperationalWebhookEndpointHeadersIn ,
117
+ ) {
118
+ try {
119
+ api.v1OperationalWebhookEndpointUpdateHeaders(
120
+ endpointId,
121
+ operationalWebhookEndpointHeadersIn,
122
+ )
123
+ } catch (e: Exception ) {
124
+ throw ApiException .wrap(e)
125
+ }
126
+ }
127
+
128
+ /* *
129
+ * Get an operational webhook endpoint's signing secret.
130
+ *
131
+ * This is used to verify the authenticity of the webhook. For more information please refer to
132
+ * [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/).
133
+ */
90
134
suspend fun getSecret (endpointId : String ): OperationalWebhookEndpointSecretOut {
91
135
try {
92
136
return api.v1OperationalWebhookEndpointGetSecret(endpointId)
@@ -95,15 +139,20 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
95
139
}
96
140
}
97
141
142
+ /* *
143
+ * Rotates an operational webhook endpoint's signing secret.
144
+ *
145
+ * The previous secret will remain valid for the next 24 hours.
146
+ */
98
147
suspend fun rotateSecret (
99
148
endpointId : String ,
100
- endpointSecretRotateIn : OperationalWebhookEndpointSecretIn ,
149
+ operationalWebhookEndpointSecretIn : OperationalWebhookEndpointSecretIn ,
101
150
options : PostOptions = PostOptions (),
102
151
) {
103
152
try {
104
153
api.v1OperationalWebhookEndpointRotateSecret(
105
154
endpointId,
106
- endpointSecretRotateIn ,
155
+ operationalWebhookEndpointSecretIn ,
107
156
options.idempotencyKey,
108
157
)
109
158
} catch (e: Exception ) {
0 commit comments