Skip to content

Commit eb12ad8

Browse files
authored
feat(mnq): add region in NatsCredentials message (#2451)
1 parent 72dff65 commit eb12ad8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages_generated/mnq/src/v1beta1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export const unmarshalNatsCredentials = (data: unknown): NatsCredentials => {
7979
id: data.id,
8080
name: data.name,
8181
natsAccountId: data.nats_account_id,
82+
region: data.region,
8283
updatedAt: unmarshalDate(data.updated_at),
8384
} as NatsCredentials
8485
}

packages_generated/mnq/src/v1beta1/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ export interface NatsCredentials {
123123
* NATS account containing the credentials.
124124
*/
125125
natsAccountId: string
126+
/**
127+
* Region where the NATS account is deployed.
128+
*/
129+
region: ScwRegion
126130
/**
127131
* NATS credentials creation date.
128132
*/

0 commit comments

Comments
 (0)