예제 #1
0
 def get_idp_id():
     idp_id = input('\nPlease input the Identity Provider ID associated with your Google Account: ')
     Utils.stc_is_valid_input(idp_id, "Identity Provider Id", True)
     return idp_id
예제 #2
0
 def get_sp_id():
     sp_id = input('\nPlease input the Service Provider ID associated with your Google SAML configuration (this is a '
         'number lke 123456789) : ')
     Utils.stc_is_valid_input(sp_id, "Service Provider Id", True)
     return sp_id
예제 #3
0
 def get_app_link() -> str:
     app_link = Input.input("Please input your OKTA AWS Application Embed Link. It's usually something like "
                      "'https://your-company.okta.com/home/amazon_aws/ASDF12351fg1/234': ")
     Utils.stc_is_valid_input(app_link, "OKTA AWS Application URL", True)
     return app_link