@@ -107,13 +107,16 @@ export interface TriggerMnqNatsClientConfig {
107107 mnqNamespaceId ?: string
108108 /** Name of the NATS subject the trigger listens to. */
109109 subject : string
110- /** ID of the M&Q NATS account. */
110+ /** ID of the Messaging and Queuing NATS account. */
111111 mnqNatsAccountId : string
112- /** ID of the M&Q project. */
112+ /** ID of the Messaging and Queuing project. */
113113 mnqProjectId : string
114- /** Region of the M&Q project . */
114+ /** Currently, only the `fr-par` region is available . */
115115 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+ */
117120 mnqCredentialId ?: string
118121}
119122
@@ -122,11 +125,14 @@ export interface TriggerMnqSqsClientConfig {
122125 mnqNamespaceId ?: string
123126 /** Name of the SQS queue the trigger listens to. */
124127 queue : string
125- /** ID of the M&Q project. */
128+ /** ID of the Messaging and Queuing project. */
126129 mnqProjectId : string
127- /** Region in which the M&Q project is activated . */
130+ /** Currently, only the `fr-par` region is available . */
128131 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+ */
130136 mnqCredentialId ?: string
131137}
132138
@@ -147,11 +153,11 @@ export interface CreateTriggerRequestMnqNatsClientConfig {
147153 mnqNamespaceId ?: string
148154 /** Name of the NATS subject the trigger should listen to. */
149155 subject : string
150- /** ID of the M&Q NATS account. */
156+ /** ID of the Messaging and Queuing NATS account. */
151157 mnqNatsAccountId : string
152- /** ID of the M&Q project. */
158+ /** ID of the Messaging and Queuing project. */
153159 mnqProjectId : string
154- /** Region of the M&Q project . */
160+ /** Currently, only the `fr-par` region is available . */
155161 mnqRegion : string
156162}
157163
@@ -162,7 +168,7 @@ export interface CreateTriggerRequestMnqSqsClientConfig {
162168 queue : string
163169 /** You must have activated SQS on this project. */
164170 mnqProjectId : string
165- /** Region in which the M&Q project is activated . */
171+ /** Currently, only the `fr-par` region is available . */
166172 mnqRegion : string
167173}
168174
@@ -339,14 +345,14 @@ export interface Trigger {
339345 /** Error message of the trigger. */
340346 errorMessage ?: string
341347 /**
342- * Configuration for a Scaleway M&Q SQS queue.
348+ * Configuration for a Scaleway Messaging and Queuing SQS queue.
343349 *
344350 * One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
345351 * 'sqsConfig' could be set.
346352 */
347353 scwSqsConfig ?: TriggerMnqSqsClientConfig
348354 /**
349- * Configuration for a Scaleway M&Q NATS subject.
355+ * Configuration for a Scaleway Messaging and Queuing NATS subject.
350356 *
351357 * One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
352358 * 'sqsConfig' could be set.
@@ -498,14 +504,14 @@ export type CreateTriggerRequest = {
498504 /** Description of the trigger. */
499505 description ?: string
500506 /**
501- * Configuration for a Scaleway M&Q SQS queue.
507+ * Configuration for a Scaleway Messaging and Queuing SQS queue.
502508 *
503509 * One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
504510 * 'sqsConfig' could be set.
505511 */
506512 scwSqsConfig ?: CreateTriggerRequestMnqSqsClientConfig
507513 /**
508- * Configuration for a Scaleway M&Q NATS subject.
514+ * Configuration for a Scaleway Messaging and Queuing NATS subject.
509515 *
510516 * One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
511517 * 'sqsConfig' could be set.
0 commit comments