@@ -57,7 +57,6 @@ def __init__(self, *,
5757 connectiontype : Type ["oracledb.Connection" ]= None ,
5858 getmode : int = oracledb .POOL_GETMODE_WAIT ,
5959 homogeneous : bool = True ,
60- externalauth : bool = False ,
6160 timeout : int = 0 ,
6261 wait_timeout : int = 0 ,
6362 max_lifetime_session : int = 0 ,
@@ -88,6 +87,7 @@ def __init__(self, *,
8887 ssl_server_cert_dn : str = None ,
8988 wallet_location : str = None ,
9089 events : bool = False ,
90+ externalauth : bool = False ,
9191 mode : int = oracledb .AUTH_MODE_DEFAULT ,
9292 disable_oob : bool = False ,
9393 stmtcachesize : int = oracledb .defaults .stmtcachesize ,
@@ -129,9 +129,6 @@ def __init__(self, *,
129129 homogeneous (same user) or heterogeneous (multiple users) (default:
130130 True)
131131
132- - externalauth: a boolean indicating whether to use external
133- authentication (default: False)
134-
135132 - timeout: length of time (in seconds) that a connection may remain
136133 idle in the pool before it is terminated. If it is 0 then connections
137134 are never terminated (default: 0)
@@ -243,6 +240,9 @@ def __init__(self, *,
243240 query notification and high availability event notifications
244241 (default: False)
245242
243+ - externalauth: a boolean indicating whether to use external
244+ authentication (default: False)
245+
246246 - mode: authorization mode to use. For example
247247 oracledb.AUTH_MODE_SYSDBA (default: oracledb.AUTH_MODE_DEFAULT)
248248
@@ -300,7 +300,6 @@ def __repr__(self):
300300 f", connectiontype={ self .connectiontype !r} " + \
301301 f", getmode={ self .getmode !r} " + \
302302 f", homogeneous={ self .homogeneous !r} " + \
303- f", externalauth={ self .externalauth !r} " + \
304303 f", timeout={ self .timeout !r} " + \
305304 f", wait_timeout={ self .wait_timeout !r} " + \
306305 f", max_lifetime_session={ self .max_lifetime_session !r} " + \
@@ -328,6 +327,7 @@ def __repr__(self):
328327 f", ssl_server_cert_dn={ self .ssl_server_cert_dn !r} " + \
329328 f", wallet_location={ self .wallet_location !r} " + \
330329 f", events={ self .events !r} " + \
330+ f", externalauth={ self .externalauth !r} " + \
331331 f", mode={ self .mode !r} " + \
332332 f", disable_oob={ self .disable_oob !r} " + \
333333 f", stmtcachesize={ self .stmtcachesize !r} " + \
@@ -348,13 +348,6 @@ def connectiontype(self) -> Type["oracledb.Connection"]:
348348 """
349349 return self ._impl .connectiontype
350350
351- @property
352- def externalauth (self ) -> bool :
353- """
354- A boolean indicating whether to use external authentication.
355- """
356- return self ._impl .externalauth
357-
358351 @property
359352 def getmode (self ) -> int :
360353 """
@@ -473,7 +466,6 @@ def set(self, *,
473466 connectiontype : Type ["oracledb.Connection" ]= None ,
474467 getmode : int = None ,
475468 homogeneous : bool = None ,
476- externalauth : bool = None ,
477469 timeout : int = None ,
478470 wait_timeout : int = None ,
479471 max_lifetime_session : int = None ,
@@ -504,6 +496,7 @@ def set(self, *,
504496 ssl_server_cert_dn : str = None ,
505497 wallet_location : str = None ,
506498 events : bool = None ,
499+ externalauth : bool = None ,
507500 mode : int = None ,
508501 disable_oob : bool = None ,
509502 stmtcachesize : int = None ,
@@ -541,9 +534,6 @@ def set(self, *,
541534 - homogeneous: a boolean indicating whether the connections are
542535 homogeneous (same user) or heterogeneous (multiple users)
543536
544- - externalauth: a boolean indicating whether to use external
545- authentication
546-
547537 - timeout: length of time (in seconds) that a connection may remain
548538 idle in the pool before it is terminated. If it is 0 then connections
549539 are never terminated
@@ -649,6 +639,9 @@ def set(self, *,
649639 This value is only used in thick mode and is needed for continuous
650640 query notification and high availability event notifications
651641
642+ - externalauth: a boolean indicating whether to use external
643+ authentication
644+
652645 - mode: authorization mode to use. For example
653646 oracledb.AUTH_MODE_SYSDBA
654647
0 commit comments