@@ -40,6 +40,7 @@ class Auth(object):
4040 'account_id' : 'str' ,
4141 'admin_email' : 'str' ,
4242 'admin_password' : 'str' ,
43+ 'cert_challenge' : 'str' ,
4344 'cert_data' : 'str' ,
4445 'cloud_id' : 'str' ,
4546 'debug' : 'bool' ,
@@ -60,6 +61,7 @@ class Auth(object):
6061 'oci_auth_type' : 'str' ,
6162 'oci_group_ocid' : 'list[str]' ,
6263 'otp' : 'str' ,
64+ 'signed_cert_challenge' : 'str' ,
6365 'uid_token' : 'str' ,
6466 'use_remote_browser' : 'bool' ,
6567 'username' : 'str'
@@ -72,6 +74,7 @@ class Auth(object):
7274 'account_id' : 'account-id' ,
7375 'admin_email' : 'admin-email' ,
7476 'admin_password' : 'admin-password' ,
77+ 'cert_challenge' : 'cert-challenge' ,
7578 'cert_data' : 'cert-data' ,
7679 'cloud_id' : 'cloud-id' ,
7780 'debug' : 'debug' ,
@@ -92,12 +95,13 @@ class Auth(object):
9295 'oci_auth_type' : 'oci-auth-type' ,
9396 'oci_group_ocid' : 'oci-group-ocid' ,
9497 'otp' : 'otp' ,
98+ 'signed_cert_challenge' : 'signed-cert-challenge' ,
9599 'uid_token' : 'uid-token' ,
96100 'use_remote_browser' : 'use-remote-browser' ,
97101 'username' : 'username'
98102 }
99103
100- 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 , disable_pafxfast = None , gateway_spn = None , gateway_url = None , gcp_audience = 'akeyless.io' , json = False , jwt = None , k8s_auth_config_name = None , k8s_service_account_token = None , kerberos_token = None , kerberos_username = None , key_data = None , keytab_data = None , krb5_conf_data = None , ldap_password = None , oci_auth_type = 'apikey' , oci_group_ocid = None , otp = None , uid_token = None , use_remote_browser = None , username = None , local_vars_configuration = None ): # noqa: E501
104+ def __init__ (self , access_id = None , access_key = None , access_type = 'access_key' , account_id = None , admin_email = None , admin_password = None , cert_challenge = None , cert_data = None , cloud_id = None , debug = None , disable_pafxfast = None , gateway_spn = None , gateway_url = None , gcp_audience = 'akeyless.io' , json = False , jwt = None , k8s_auth_config_name = None , k8s_service_account_token = None , kerberos_token = None , kerberos_username = None , key_data = None , keytab_data = None , krb5_conf_data = None , ldap_password = None , oci_auth_type = 'apikey' , oci_group_ocid = None , otp = None , signed_cert_challenge = None , uid_token = None , use_remote_browser = None , username = None , local_vars_configuration = None ): # noqa: E501
101105 """Auth - a model defined in OpenAPI""" # noqa: E501
102106 if local_vars_configuration is None :
103107 local_vars_configuration = Configuration ()
@@ -109,6 +113,7 @@ def __init__(self, access_id=None, access_key=None, access_type='access_key', ac
109113 self ._account_id = None
110114 self ._admin_email = None
111115 self ._admin_password = None
116+ self ._cert_challenge = None
112117 self ._cert_data = None
113118 self ._cloud_id = None
114119 self ._debug = None
@@ -129,6 +134,7 @@ def __init__(self, access_id=None, access_key=None, access_type='access_key', ac
129134 self ._oci_auth_type = None
130135 self ._oci_group_ocid = None
131136 self ._otp = None
137+ self ._signed_cert_challenge = None
132138 self ._uid_token = None
133139 self ._use_remote_browser = None
134140 self ._username = None
@@ -146,6 +152,8 @@ def __init__(self, access_id=None, access_key=None, access_type='access_key', ac
146152 self .admin_email = admin_email
147153 if admin_password is not None :
148154 self .admin_password = admin_password
155+ if cert_challenge is not None :
156+ self .cert_challenge = cert_challenge
149157 if cert_data is not None :
150158 self .cert_data = cert_data
151159 if cloud_id is not None :
@@ -186,6 +194,8 @@ def __init__(self, access_id=None, access_key=None, access_type='access_key', ac
186194 self .oci_group_ocid = oci_group_ocid
187195 if otp is not None :
188196 self .otp = otp
197+ if signed_cert_challenge is not None :
198+ self .signed_cert_challenge = signed_cert_challenge
189199 if uid_token is not None :
190200 self .uid_token = uid_token
191201 if use_remote_browser is not None :
@@ -331,6 +341,29 @@ def admin_password(self, admin_password):
331341
332342 self ._admin_password = admin_password
333343
344+ @property
345+ def cert_challenge (self ):
346+ """Gets the cert_challenge of this Auth. # noqa: E501
347+
348+ Certificate challenge encoded in base64. (relevant only for access-type=cert) # noqa: E501
349+
350+ :return: The cert_challenge of this Auth. # noqa: E501
351+ :rtype: str
352+ """
353+ return self ._cert_challenge
354+
355+ @cert_challenge .setter
356+ def cert_challenge (self , cert_challenge ):
357+ """Sets the cert_challenge of this Auth.
358+
359+ Certificate challenge encoded in base64. (relevant only for access-type=cert) # noqa: E501
360+
361+ :param cert_challenge: The cert_challenge of this Auth. # noqa: E501
362+ :type: str
363+ """
364+
365+ self ._cert_challenge = cert_challenge
366+
334367 @property
335368 def cert_data (self ):
336369 """Gets the cert_data of this Auth. # noqa: E501
@@ -787,6 +820,29 @@ def otp(self, otp):
787820
788821 self ._otp = otp
789822
823+ @property
824+ def signed_cert_challenge (self ):
825+ """Gets the signed_cert_challenge of this Auth. # noqa: E501
826+
827+ Signed certificate challenge encoded in base64. (relevant only for access-type=cert) # noqa: E501
828+
829+ :return: The signed_cert_challenge of this Auth. # noqa: E501
830+ :rtype: str
831+ """
832+ return self ._signed_cert_challenge
833+
834+ @signed_cert_challenge .setter
835+ def signed_cert_challenge (self , signed_cert_challenge ):
836+ """Sets the signed_cert_challenge of this Auth.
837+
838+ Signed certificate challenge encoded in base64. (relevant only for access-type=cert) # noqa: E501
839+
840+ :param signed_cert_challenge: The signed_cert_challenge of this Auth. # noqa: E501
841+ :type: str
842+ """
843+
844+ self ._signed_cert_challenge = signed_cert_challenge
845+
790846 @property
791847 def uid_token (self ):
792848 """Gets the uid_token of this Auth. # noqa: E501
0 commit comments