@@ -54,7 +54,8 @@ class Auth(object):
5454 'ldap_username' : 'str' ,
5555 'oci_auth_type' : 'str' ,
5656 'oci_group_ocid' : 'list[str]' ,
57- 'uid_token' : 'str'
57+ 'uid_token' : 'str' ,
58+ 'use_remote_browser' : 'bool'
5859 }
5960
6061 attribute_map = {
@@ -78,10 +79,11 @@ class Auth(object):
7879 'ldap_username' : 'ldap_username' ,
7980 'oci_auth_type' : 'oci-auth-type' ,
8081 'oci_group_ocid' : 'oci-group-ocid' ,
81- 'uid_token' : 'uid_token'
82+ 'uid_token' : 'uid_token' ,
83+ 'use_remote_browser' : 'use-remote-browser'
8284 }
8385
84- def __init__ (self , access_id = None , access_key = None , access_type = 'access_key' , account_id = None , admin_email = None , admin_password = None , cert_data = None , cloud_id = None , debug = None , gateway_url = None , gcp_audience = 'akeyless.io' , json = False , jwt = None , k8s_auth_config_name = None , k8s_service_account_token = None , key_data = None , ldap_password = None , ldap_username = None , oci_auth_type = 'apikey' , oci_group_ocid = None , uid_token = None , local_vars_configuration = None ): # noqa: E501
86+ def __init__ (self , access_id = None , access_key = None , access_type = 'access_key' , account_id = None , admin_email = None , admin_password = None , cert_data = None , cloud_id = None , debug = None , gateway_url = None , gcp_audience = 'akeyless.io' , json = False , jwt = None , k8s_auth_config_name = None , k8s_service_account_token = None , key_data = None , ldap_password = None , ldap_username = None , oci_auth_type = 'apikey' , oci_group_ocid = None , uid_token = None , use_remote_browser = None , local_vars_configuration = None ): # noqa: E501
8587 """Auth - a model defined in OpenAPI""" # noqa: E501
8688 if local_vars_configuration is None :
8789 local_vars_configuration = Configuration ()
@@ -108,6 +110,7 @@ def __init__(self, access_id=None, access_key=None, access_type='access_key', ac
108110 self ._oci_auth_type = None
109111 self ._oci_group_ocid = None
110112 self ._uid_token = None
113+ self ._use_remote_browser = None
111114 self .discriminator = None
112115
113116 if access_id is not None :
@@ -152,6 +155,8 @@ def __init__(self, access_id=None, access_key=None, access_type='access_key', ac
152155 self .oci_group_ocid = oci_group_ocid
153156 if uid_token is not None :
154157 self .uid_token = uid_token
158+ if use_remote_browser is not None :
159+ self .use_remote_browser = use_remote_browser
155160
156161 @property
157162 def access_id (self ):
@@ -362,7 +367,7 @@ def debug(self, debug):
362367 def gateway_url (self ):
363368 """Gets the gateway_url of this Auth. # noqa: E501
364369
365- Gateway URL for the K8S/OAUTH2 authenticated ( relevant only for access-type=k8s/oauth2) # noqa: E501
370+ Gateway URL relevant only for access-type=k8s/oauth2/saml/oidc # noqa: E501
366371
367372 :return: The gateway_url of this Auth. # noqa: E501
368373 :rtype: str
@@ -373,7 +378,7 @@ def gateway_url(self):
373378 def gateway_url (self , gateway_url ):
374379 """Sets the gateway_url of this Auth.
375380
376- Gateway URL for the K8S/OAUTH2 authenticated ( relevant only for access-type=k8s/oauth2) # noqa: E501
381+ Gateway URL relevant only for access-type=k8s/oauth2/saml/oidc # noqa: E501
377382
378383 :param gateway_url: The gateway_url of this Auth. # noqa: E501
379384 :type: str
@@ -634,6 +639,29 @@ def uid_token(self, uid_token):
634639
635640 self ._uid_token = uid_token
636641
642+ @property
643+ def use_remote_browser (self ):
644+ """Gets the use_remote_browser of this Auth. # noqa: E501
645+
646+ Returns a link to complete the authentication remotely (relevant only for access-type=saml/oidc) # noqa: E501
647+
648+ :return: The use_remote_browser of this Auth. # noqa: E501
649+ :rtype: bool
650+ """
651+ return self ._use_remote_browser
652+
653+ @use_remote_browser .setter
654+ def use_remote_browser (self , use_remote_browser ):
655+ """Sets the use_remote_browser of this Auth.
656+
657+ Returns a link to complete the authentication remotely (relevant only for access-type=saml/oidc) # noqa: E501
658+
659+ :param use_remote_browser: The use_remote_browser of this Auth. # noqa: E501
660+ :type: bool
661+ """
662+
663+ self ._use_remote_browser = use_remote_browser
664+
637665 def to_dict (self ):
638666 """Returns the model properties as a dict"""
639667 result = {}
0 commit comments