File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
scaleway-async/scaleway_async/rdb/v1 Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -408,6 +408,9 @@ def unmarshal_ReadReplica(data: Any) -> ReadReplica:
408408 field = data .get ("id" , None )
409409 args ["id" ] = field
410410
411+ field = data .get ("instance_id" , None )
412+ args ["instance_id" ] = field
413+
411414 field = data .get ("region" , None )
412415 args ["region" ] = field
413416
Original file line number Diff line number Diff line change @@ -1353,6 +1353,11 @@ class ReadReplica:
13531353 Whether the replica is in the same availability zone as the main instance nodes or not.
13541354 """
13551355
1356+ instance_id : str
1357+ """
1358+ UUID of the Database Instance.
1359+ """
1360+
13561361
13571362@dataclass
13581363class ReadReplicaEndpointSpec :
Original file line number Diff line number Diff line change @@ -408,6 +408,9 @@ def unmarshal_ReadReplica(data: Any) -> ReadReplica:
408408 field = data .get ("id" , None )
409409 args ["id" ] = field
410410
411+ field = data .get ("instance_id" , None )
412+ args ["instance_id" ] = field
413+
411414 field = data .get ("region" , None )
412415 args ["region" ] = field
413416
Original file line number Diff line number Diff line change @@ -1353,6 +1353,11 @@ class ReadReplica:
13531353 Whether the replica is in the same availability zone as the main instance nodes or not.
13541354 """
13551355
1356+ instance_id : str
1357+ """
1358+ UUID of the Database Instance.
1359+ """
1360+
13561361
13571362@dataclass
13581363class ReadReplicaEndpointSpec :
You can’t perform that action at this time.
0 commit comments