@@ -107,13 +107,16 @@ export interface TriggerMnqNatsClientConfig {
107
107
mnqNamespaceId ?: string
108
108
/** Name of the NATS subject the trigger listens to. */
109
109
subject : string
110
- /** ID of the M&Q NATS account. */
110
+ /** ID of the Messaging and Queuing NATS account. */
111
111
mnqNatsAccountId : string
112
- /** ID of the M&Q project. */
112
+ /** ID of the Messaging and Queuing project. */
113
113
mnqProjectId : string
114
- /** Region of the M&Q project . */
114
+ /** Currently, only the `fr-par` region is available . */
115
115
mnqRegion : string
116
- /** ID of the M&Q credentials used to subscribe to the NATS subject. */
116
+ /**
117
+ * ID of the Messaging and Queuing credentials used to subscribe to the NATS
118
+ * subject.
119
+ */
117
120
mnqCredentialId ?: string
118
121
}
119
122
@@ -122,11 +125,14 @@ export interface TriggerMnqSqsClientConfig {
122
125
mnqNamespaceId ?: string
123
126
/** Name of the SQS queue the trigger listens to. */
124
127
queue : string
125
- /** ID of the M&Q project. */
128
+ /** ID of the Messaging and Queuing project. */
126
129
mnqProjectId : string
127
- /** Region in which the M&Q project is activated . */
130
+ /** Currently, only the `fr-par` region is available . */
128
131
mnqRegion : string
129
- /** ID of the M&Q credentials used to read from the SQS queue. */
132
+ /**
133
+ * ID of the Messaging and Queuing credentials used to read from the SQS
134
+ * queue.
135
+ */
130
136
mnqCredentialId ?: string
131
137
}
132
138
@@ -147,11 +153,11 @@ export interface CreateTriggerRequestMnqNatsClientConfig {
147
153
mnqNamespaceId ?: string
148
154
/** Name of the NATS subject the trigger should listen to. */
149
155
subject : string
150
- /** ID of the M&Q NATS account. */
156
+ /** ID of the Messaging and Queuing NATS account. */
151
157
mnqNatsAccountId : string
152
- /** ID of the M&Q project. */
158
+ /** ID of the Messaging and Queuing project. */
153
159
mnqProjectId : string
154
- /** Region of the M&Q project . */
160
+ /** Currently, only the `fr-par` region is available . */
155
161
mnqRegion : string
156
162
}
157
163
@@ -162,7 +168,7 @@ export interface CreateTriggerRequestMnqSqsClientConfig {
162
168
queue : string
163
169
/** You must have activated SQS on this project. */
164
170
mnqProjectId : string
165
- /** Region in which the M&Q project is activated . */
171
+ /** Currently, only the `fr-par` region is available . */
166
172
mnqRegion : string
167
173
}
168
174
@@ -339,14 +345,14 @@ export interface Trigger {
339
345
/** Error message of the trigger. */
340
346
errorMessage ?: string
341
347
/**
342
- * Configuration for a Scaleway M&Q SQS queue.
348
+ * Configuration for a Scaleway Messaging and Queuing SQS queue.
343
349
*
344
350
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
345
351
* 'sqsConfig' could be set.
346
352
*/
347
353
scwSqsConfig ?: TriggerMnqSqsClientConfig
348
354
/**
349
- * Configuration for a Scaleway M&Q NATS subject.
355
+ * Configuration for a Scaleway Messaging and Queuing NATS subject.
350
356
*
351
357
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
352
358
* 'sqsConfig' could be set.
@@ -498,14 +504,14 @@ export type CreateTriggerRequest = {
498
504
/** Description of the trigger. */
499
505
description ?: string
500
506
/**
501
- * Configuration for a Scaleway M&Q SQS queue.
507
+ * Configuration for a Scaleway Messaging and Queuing SQS queue.
502
508
*
503
509
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
504
510
* 'sqsConfig' could be set.
505
511
*/
506
512
scwSqsConfig ?: CreateTriggerRequestMnqSqsClientConfig
507
513
/**
508
- * Configuration for a Scaleway M&Q NATS subject.
514
+ * Configuration for a Scaleway Messaging and Queuing NATS subject.
509
515
*
510
516
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
511
517
* 'sqsConfig' could be set.
0 commit comments