├── jcapiv1 ├── test │ ├── __init__.py │ ├── test_fde.py │ ├── test_mfa.py │ ├── test_tag.py │ ├── test_body.py │ ├── test_body1.py │ ├── test_search.py │ ├── test_system.py │ ├── test_tagput.py │ ├── test_command.py │ ├── test_tagpost.py │ ├── test_tagslist.py │ ├── test_systemput.py │ ├── test_sshkeylist.py │ ├── test_sshkeypost.py │ ├── test_systemuser.py │ ├── test_application.py │ ├── test_systemslist.py │ ├── test_commandslist.py │ ├── test_radiusserver.py │ ├── test_commandresult.py │ ├── test_errorresponse.py │ ├── test_systemuserput.py │ ├── test_organizations_api.py │ ├── test_radiusserverput.py │ ├── test_systemuserslist.py │ ├── test_applicationslist.py │ ├── test_radiusserverpost.py │ ├── test_systemuserreturn.py │ ├── test_system_sshd_params.py │ ├── test_application_config.py │ ├── test_commandfilereturn.py │ ├── test_organizationslist.py │ ├── test_radiusserverslist.py │ ├── test_systemuserbinding.py │ ├── test_systemuserputpost.py │ └── test_usersystembinding.py ├── .swagger-codegen │ └── VERSION ├── test-requirements.txt ├── requirements.txt ├── tox.ini ├── docs │ ├── Systemuserbinding.md │ ├── Usersystembinding.md │ ├── Errorresponse.md │ ├── SystemSystemInsights.md │ ├── SystemputAgentBoundMessages.md │ ├── Fde.md │ ├── ApplicationConfigDatabaseAttributes.md │ ├── Body1.md │ ├── SystemSshdParams.md │ ├── Sshkeypost.md │ ├── SystemuserputPhoneNumbers.md │ ├── ApplicationtemplateJit.md │ ├── SystemuserputpostPhoneNumbers.md │ ├── Mfa.md │ ├── Search.md │ ├── ApplicationConfigAcsUrlTooltipVariables.md │ ├── Radiusserverslist.md │ ├── Tagslist.md │ ├── SystemuserreturnPhoneNumbers.md │ ├── Systemslist.md │ ├── Commandslist.md │ ├── Commandfilereturn.md │ ├── Applicationslist.md │ ├── Usersystembindingsput.md │ ├── SystemNetworkInterfaces.md │ ├── Systemuserslist.md │ ├── CommandresultResponseData.md │ ├── Commandresultslist.md │ ├── Systemuserbindingsput.md │ ├── ApplicationConfigAcsUrlTooltip.md │ ├── Applicationtemplateslist.md │ ├── Organizationslist.md │ ├── CommandfilereturnResults.md │ ├── OrganizationslistResults.md │ ├── CommandresultResponse.md │ ├── Body.md │ ├── Sshkeylist.md │ ├── ApplicationConfigConstantAttributesValue.md │ ├── Radiusserverput.md │ ├── Radiusserverpost.md │ ├── SystemuserputAddresses.md │ ├── SystemuserputpostAddresses.md │ ├── SystemuserreturnAddresses.md │ ├── ApplicationConfigAcsUrl.md │ ├── Application.md │ ├── Systemput.md │ ├── Radiusserver.md │ ├── Applicationtemplate.md │ ├── ApplicationConfigConstantAttributes.md │ ├── Tagpost.md │ ├── Tagput.md │ ├── Tag.md │ └── ApplicationConfig.md ├── .travis.yml ├── jcapiv1 │ └── api │ │ └── __init__.py ├── .gitignore └── .swagger-codegen-ignore ├── jcapiv2 ├── test │ ├── __init__.py │ ├── test_mfa.py │ ├── test_body.py │ ├── test_body1.py │ ├── test_body2.py │ ├── test_body3.py │ ├── test_error.py │ ├── test_group.py │ ├── test_job_id.py │ ├── test_fde_api.py │ ├── test_groups_api.py │ ├── test_policy.py │ ├── test_apple_mdm.py │ ├── test_auth_info.py │ ├── test_provider.py │ ├── test_auth_input.py │ ├── test_directory.py │ ├── test_graph_type.py │ ├── test_group_type.py │ ├── test_user_group.py │ ├── test_sshkeylist.py │ ├── test_systemuser.py │ ├── test_duo_account.py │ ├── test_job_details.py │ ├── test_directories_api.py │ ├── test_graph_object.py │ ├── test_policy_value.py │ ├── test_system_group.py │ ├── test_emailrequest.py │ ├── test_knowledge_api.py │ ├── test_mobileconfig.py │ ├── test_systemfdekey.py │ ├── test_gsuite_output.py │ ├── test_policy_result.py │ ├── test_user_group_put.py │ ├── test_workday_input.py │ ├── test_administrator.py │ ├── test_errorresponse.py │ └── test_job_workresult.py ├── .swagger-codegen │ └── VERSION ├── test-requirements.txt ├── requirements.txt ├── tox.ini ├── docs │ ├── GraphType.md │ ├── GroupType.md │ ├── Mobileconfig.md │ ├── LdapServerAction.md │ ├── GSuiteBuiltinTranslation.md │ ├── ActiveDirectoryAgentInput.md │ ├── JobId.md │ ├── Systemfdekey.md │ ├── Office365BuiltinTranslation.md │ ├── SalesforceKnowledgeListOutput.md │ ├── AuthinputOauth.md │ ├── Emailrequest.md │ ├── Errorresponse.md │ ├── JobWorkresult.md │ ├── OauthCodeInput.md │ ├── InlineResponse400.md │ ├── AuthInputObject.md │ ├── Body.md │ ├── SystemGroupData.md │ ├── SalesforceknowledgelistoutputInner.md │ ├── ProviderContact.md │ ├── AuthinputBasic.md │ ├── WorkdayFields.md │ ├── WorkdayRequest.md │ ├── DuoAccount.md │ ├── EnrollmentProfile.md │ ├── ActiveDirectoryInput.md │ ├── OrgCryptoSettings.md │ ├── Error.md │ ├── GraphObject.md │ ├── Provider.md │ ├── SystemuserputpostPhoneNumbers.md │ ├── UserGroupAttributesPosixGroups.md │ ├── Body1.md │ ├── Body2.md │ ├── PolicyValue.md │ ├── AuthInfo.md │ ├── GSuiteTranslationRuleRequest.md │ ├── GraphConnection.md │ ├── InlineResponse201.md │ ├── GsuitePatchInput.md │ ├── Mfa.md │ ├── WorkdayoutputAuth.md │ ├── DuoApplication.md │ ├── PolicyRequestTemplate.md │ ├── SambaDomainInput.md │ ├── AuthInput.md │ ├── DuoRegistrationApplicationReq.md │ ├── InlineResponse2001.md │ ├── Office365TranslationRuleRequest.md │ ├── PolicyTemplateConfigFieldTooltipVariables.md │ ├── UserGroupPut.md │ ├── DuoApplicationReq.md │ ├── SystemGraphManagementReqAttributesSudo.md │ ├── UserGroupPost.md │ ├── WorkdayInput.md │ ├── ActiveDirectoryAgentListOutput.md │ ├── Directory.md │ ├── GsuiteOutput.md │ ├── SystemGraphManagementReqAttributes.md │ ├── OrgcryptosettingsSshKeys.md │ ├── ActiveDirectoryOutput.md │ ├── UserGroupAttributes.md │ ├── ProviderAdminReq.md │ ├── Group.md │ ├── SambaDomainOutput.md │ ├── GSuiteTranslationRule.md │ ├── SystemInsightsUserGroups.md │ ├── UserGroupMembersReq.md │ ├── DuoApplicationUpdateReq.md │ ├── SystemGroupMembersReq.md │ ├── SystemInsightsEtcHosts.md │ ├── Office365TranslationRule.md │ ├── PolicyTemplateConfigFieldTooltip.md │ ├── ActiveDirectoryAgentGetOutput.md │ ├── Body3.md │ ├── DuoRegistrationApplication.md │ ├── GraphManagementReq.md │ ├── Policy.md │ ├── SystemGroupGraphManagementReq.md │ ├── GraphObjectWithPaths.md │ ├── WorkdayWorker.md │ ├── PolicyRequest.md │ ├── UserGroupGraphManagementReq.md │ ├── JcEnrollmentProfile.md │ ├── AppleMdmPatchInput.md │ ├── WorkdayOutput.md │ ├── SystemGroup.md │ ├── BulkUserCreate.md │ ├── Sshkeylist.md │ ├── Administrator.md │ ├── InlineResponse200.md │ ├── SystemInsightsKernelInfo.md │ ├── UserGroup.md │ ├── SystemInsightsIeExtensions.md │ ├── LdapServerInput.md │ ├── AppleMDM.md │ ├── SystemGraphManagementReq.md │ ├── UserGraphManagementReq.md │ ├── SystemInsightsGroups.md │ ├── SystemInsightsUptime.md │ ├── BulkUserUpdate.md │ ├── JobDetails.md │ ├── SystemInsightsLoggedInUsers.md │ ├── LdapServerOutput.md │ ├── SystemuserputpostAddresses.md │ ├── SystemInsightsLogicalDrvies.md │ ├── PolicyWithDetails.md │ ├── SystemInsightsDiskEncryption.md │ ├── SystemInsightsBitlockerInfo.md │ ├── SystemInsightsSystemControls.md │ ├── SystemInsightsInterfaceAddresses.md │ ├── SystemInsightsPatches.md │ ├── SystemInsightsUsers.md │ ├── SystemInsightsPrograms.md │ ├── SystemInsightsOsVersion.md │ ├── SystemInsightsBrowserPlugins.md │ ├── SystemInsightsSafariExtensions.md │ ├── SystemInsightsMounts.md │ ├── SystemInsightsChromeExtensions.md │ ├── SystemInsightsDiskInfo.md │ ├── SystemInsightsUsbDevices.md │ ├── PolicyTemplate.md │ ├── PolicyTemplateConfigField.md │ ├── SystemInsightsFirefoxAddons.md │ ├── SystemInsightsCrashes.md │ └── PolicyTemplateWithDetails.md ├── .travis.yml ├── .gitignore └── .swagger-codegen-ignore ├── .gitignore ├── config_v1.json ├── config_v2.json └── docker-compose.yml /jcapiv1/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jcapiv2/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jcapiv1/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.2 -------------------------------------------------------------------------------- /jcapiv2/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # input and output directories 2 | input 3 | output 4 | -------------------------------------------------------------------------------- /config_v1.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "jcapiv1", 3 | "packageVersion": "4.0.0" 4 | } -------------------------------------------------------------------------------- /config_v2.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "jcapiv2", 3 | "packageVersion": "4.0.0" 4 | } -------------------------------------------------------------------------------- /jcapiv1/test-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage>=4.0.3 2 | nose>=1.3.7 3 | pluggy>=0.3.1 4 | py>=1.4.31 5 | randomize>=0.13 6 | -------------------------------------------------------------------------------- /jcapiv2/test-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage>=4.0.3 2 | nose>=1.3.7 3 | pluggy>=0.3.1 4 | py>=1.4.31 5 | randomize>=0.13 6 | -------------------------------------------------------------------------------- /jcapiv1/requirements.txt: -------------------------------------------------------------------------------- 1 | certifi >= 14.05.14 2 | six >= 1.10 3 | python_dateutil >= 2.5.3 4 | setuptools >= 21.0.0 5 | urllib3 >= 1.15.1 6 | -------------------------------------------------------------------------------- /jcapiv2/requirements.txt: -------------------------------------------------------------------------------- 1 | certifi >= 14.05.14 2 | six >= 1.10 3 | python_dateutil >= 2.5.3 4 | setuptools >= 21.0.0 5 | urllib3 >= 1.15.1 6 | -------------------------------------------------------------------------------- /jcapiv1/tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | envlist = py27, py3 3 | 4 | [testenv] 5 | deps=-r{toxinidir}/requirements.txt 6 | -r{toxinidir}/test-requirements.txt 7 | 8 | commands= 9 | nosetests \ 10 | [] 11 | -------------------------------------------------------------------------------- /jcapiv2/tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | envlist = py27, py3 3 | 4 | [testenv] 5 | deps=-r{toxinidir}/requirements.txt 6 | -r{toxinidir}/test-requirements.txt 7 | 8 | commands= 9 | nosetests \ 10 | [] 11 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | services: 3 | swagger-codegen: 4 | image: swaggerapi/swagger-codegen-cli:2.4.2 5 | volumes: 6 | - ./input:/swagger-api/yaml # volume for input yaml files 7 | - ./output:/swagger-api/out # volume for generated files 8 | - .:/config # volume for config files 9 | -------------------------------------------------------------------------------- /jcapiv2/docs/GraphType.md: -------------------------------------------------------------------------------- 1 | # GraphType 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/GroupType.md: -------------------------------------------------------------------------------- 1 | # GroupType 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/Mobileconfig.md: -------------------------------------------------------------------------------- 1 | # Mobileconfig 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/LdapServerAction.md: -------------------------------------------------------------------------------- 1 | # LdapServerAction 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv1/docs/Systemuserbinding.md: -------------------------------------------------------------------------------- 1 | # Systemuserbinding 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv1/docs/Usersystembinding.md: -------------------------------------------------------------------------------- 1 | # Usersystembinding 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/GSuiteBuiltinTranslation.md: -------------------------------------------------------------------------------- 1 | # GSuiteBuiltinTranslation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/ActiveDirectoryAgentInput.md: -------------------------------------------------------------------------------- 1 | # ActiveDirectoryAgentInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/JobId.md: -------------------------------------------------------------------------------- 1 | # JobId 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **job_id** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/Systemfdekey.md: -------------------------------------------------------------------------------- 1 | # Systemfdekey 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **key** | **str** | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/Office365BuiltinTranslation.md: -------------------------------------------------------------------------------- 1 | # Office365BuiltinTranslation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv2/docs/SalesforceKnowledgeListOutput.md: -------------------------------------------------------------------------------- 1 | # SalesforceKnowledgeListOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /jcapiv1/docs/Errorresponse.md: -------------------------------------------------------------------------------- 1 | # Errorresponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **message** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/AuthinputOauth.md: -------------------------------------------------------------------------------- 1 | # AuthinputOauth 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/Emailrequest.md: -------------------------------------------------------------------------------- 1 | # Emailrequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email_type** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/Errorresponse.md: -------------------------------------------------------------------------------- 1 | # Errorresponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **message** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/JobWorkresult.md: -------------------------------------------------------------------------------- 1 | # JobWorkresult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **meta** | **object** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/OauthCodeInput.md: -------------------------------------------------------------------------------- 1 | # OauthCodeInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/InlineResponse400.md: -------------------------------------------------------------------------------- 1 | # InlineResponse400 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **message** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemSystemInsights.md: -------------------------------------------------------------------------------- 1 | # SystemSystemInsights 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **state** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/AuthInputObject.md: -------------------------------------------------------------------------------- 1 | # AuthInputObject 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **auth** | [**AuthInput**](AuthInput.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/Body.md: -------------------------------------------------------------------------------- 1 | # Body 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | The name used to identify this AppleMDM. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGroupData.md: -------------------------------------------------------------------------------- 1 | # SystemGroupData 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | Display name of a System Group. | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemputAgentBoundMessages.md: -------------------------------------------------------------------------------- 1 | # SystemputAgentBoundMessages 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **cmd** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv1/docs/Fde.md: -------------------------------------------------------------------------------- 1 | # Fde 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **active** | **bool** | | [optional] 7 | **key_present** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/SalesforceknowledgelistoutputInner.md: -------------------------------------------------------------------------------- 1 | # SalesforceknowledgelistoutputInner 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv1/.travis.yml: -------------------------------------------------------------------------------- 1 | # ref: https://docs.travis-ci.com/user/languages/python 2 | language: python 3 | python: 4 | - "2.7" 5 | - "3.2" 6 | - "3.3" 7 | - "3.4" 8 | - "3.5" 9 | #- "3.5-dev" # 3.5 development branch 10 | #- "nightly" # points to the latest development branch e.g. 3.6-dev 11 | # command to install dependencies 12 | install: "pip install -r requirements.txt" 13 | # command to run tests 14 | script: nosetests 15 | -------------------------------------------------------------------------------- /jcapiv2/.travis.yml: -------------------------------------------------------------------------------- 1 | # ref: https://docs.travis-ci.com/user/languages/python 2 | language: python 3 | python: 4 | - "2.7" 5 | - "3.2" 6 | - "3.3" 7 | - "3.4" 8 | - "3.5" 9 | #- "3.5-dev" # 3.5 development branch 10 | #- "nightly" # points to the latest development branch e.g. 3.6-dev 11 | # command to install dependencies 12 | install: "pip install -r requirements.txt" 13 | # command to run tests 14 | script: nosetests 15 | -------------------------------------------------------------------------------- /jcapiv2/docs/ProviderContact.md: -------------------------------------------------------------------------------- 1 | # ProviderContact 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email** | **str** | | [optional] 7 | **name** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfigDatabaseAttributes.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfigDatabaseAttributes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **position** | **int** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv1/docs/Body1.md: -------------------------------------------------------------------------------- 1 | # Body1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **exclusion** | **bool** | | [optional] 7 | **exclusion_until** | **datetime** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemSshdParams.md: -------------------------------------------------------------------------------- 1 | # SystemSshdParams 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | [optional] 7 | **value** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/AuthinputBasic.md: -------------------------------------------------------------------------------- 1 | # AuthinputBasic 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **password** | **str** | | [optional] 7 | **username** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/WorkdayFields.md: -------------------------------------------------------------------------------- 1 | # WorkdayFields 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | [optional] 7 | **report_url** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/WorkdayRequest.md: -------------------------------------------------------------------------------- 1 | # WorkdayRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | [optional] 7 | **object_id** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/DuoAccount.md: -------------------------------------------------------------------------------- 1 | # DuoAccount 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | object ID | 7 | **name** | **str** | Duo application name. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/EnrollmentProfile.md: -------------------------------------------------------------------------------- 1 | # EnrollmentProfile 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **apple_mdm_id** | **str** | | [optional] 7 | **id** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Sshkeypost.md: -------------------------------------------------------------------------------- 1 | # Sshkeypost 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | The name of the SSH key. | 7 | **public_key** | **str** | The Public SSH key. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/ActiveDirectoryInput.md: -------------------------------------------------------------------------------- 1 | # ActiveDirectoryInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **domain** | **str** | Domain name for this Active Directory instance. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/OrgCryptoSettings.md: -------------------------------------------------------------------------------- 1 | # OrgCryptoSettings 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ssh_keys** | [**OrgcryptosettingsSshKeys**](OrgcryptosettingsSshKeys.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemuserputPhoneNumbers.md: -------------------------------------------------------------------------------- 1 | # SystemuserputPhoneNumbers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **number** | **str** | | [optional] 7 | **type** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Error.md: -------------------------------------------------------------------------------- 1 | # Error 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **int** | | [optional] 7 | **fields** | **str** | | [optional] 8 | **message** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/GraphObject.md: -------------------------------------------------------------------------------- 1 | # GraphObject 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of the graph object. | 7 | **type** | **str** | The type of graph object. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Provider.md: -------------------------------------------------------------------------------- 1 | # Provider 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contact** | [**ProviderContact**](ProviderContact.md) | | [optional] 7 | **name** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationtemplateJit.md: -------------------------------------------------------------------------------- 1 | # ApplicationtemplateJit 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | **object** | | [optional] 7 | **create_only** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemuserputpostPhoneNumbers.md: -------------------------------------------------------------------------------- 1 | # SystemuserputpostPhoneNumbers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **number** | **str** | | [optional] 7 | **type** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemuserputpostPhoneNumbers.md: -------------------------------------------------------------------------------- 1 | # SystemuserputpostPhoneNumbers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **number** | **str** | | [optional] 7 | **type** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroupAttributesPosixGroups.md: -------------------------------------------------------------------------------- 1 | # UserGroupAttributesPosixGroups 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **int** | | [optional] 7 | **name** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Body1.md: -------------------------------------------------------------------------------- 1 | # Body1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **groups** | **list[str]** | | [optional] 7 | **name** | **str** | | [optional] 8 | **users** | **list[str]** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/Body2.md: -------------------------------------------------------------------------------- 1 | # Body2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **groups** | **list[str]** | | [optional] 7 | **name** | **str** | | [optional] 8 | **users** | **list[str]** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyValue.md: -------------------------------------------------------------------------------- 1 | # PolicyValue 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **config_field_id** | **str** | The ObjectId of the corresponding Policy Template configuration field. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/AuthInfo.md: -------------------------------------------------------------------------------- 1 | # AuthInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **expiry** | **str** | | [optional] 7 | **is_valid** | **bool** | | [optional] 8 | **message** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/GSuiteTranslationRuleRequest.md: -------------------------------------------------------------------------------- 1 | # GSuiteTranslationRuleRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **built_in** | [**GSuiteBuiltinTranslation**](GSuiteBuiltinTranslation.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/GraphConnection.md: -------------------------------------------------------------------------------- 1 | # GraphConnection 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **_from** | [**GraphObject**](GraphObject.md) | | [optional] 7 | **to** | [**GraphObject**](GraphObject.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/InlineResponse201.md: -------------------------------------------------------------------------------- 1 | # InlineResponse201 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **apple_mdm** | [**AppleMDM**](AppleMDM.md) | | [optional] 7 | **signed_csr_plist** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Mfa.md: -------------------------------------------------------------------------------- 1 | # Mfa 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **configured** | **bool** | | [optional] 7 | **exclusion** | **bool** | | [optional] 8 | **exclusion_until** | **datetime** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/Search.md: -------------------------------------------------------------------------------- 1 | # Search 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **fields** | **str** | | [optional] 7 | **filter** | **object** | | [optional] 8 | **search_filter** | **object** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/GsuitePatchInput.md: -------------------------------------------------------------------------------- 1 | # GsuitePatchInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **user_lockout_action** | **str** | | [optional] 7 | **user_password_expiration_action** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Mfa.md: -------------------------------------------------------------------------------- 1 | # Mfa 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **configured** | **bool** | | [optional] 7 | **exclusion** | **bool** | | [optional] 8 | **exclusion_until** | **datetime** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/WorkdayoutputAuth.md: -------------------------------------------------------------------------------- 1 | # WorkdayoutputAuth 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **basic** | [**AuthInfo**](AuthInfo.md) | | [optional] 7 | **oauth** | [**AuthInfo**](AuthInfo.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfigAcsUrlTooltipVariables.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfigAcsUrlTooltipVariables 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **icon** | **str** | | [optional] 7 | **message** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Radiusserverslist.md: -------------------------------------------------------------------------------- 1 | # Radiusserverslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Radiusserver]**](Radiusserver.md) | | [optional] 7 | **total_count** | **int** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/DuoApplication.md: -------------------------------------------------------------------------------- 1 | # DuoApplication 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **api_host** | **str** | | 7 | **id** | **str** | | 8 | **integration_key** | **str** | | 9 | **name** | **str** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyRequestTemplate.md: -------------------------------------------------------------------------------- 1 | # PolicyRequestTemplate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | ObjectId uniquely identifying a Policy instance; only allowed on POST requests. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/SambaDomainInput.md: -------------------------------------------------------------------------------- 1 | # SambaDomainInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | Name of this domain's WorkGroup | 7 | **sid** | **str** | Security identifier of this domain | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Tagslist.md: -------------------------------------------------------------------------------- 1 | # Tagslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Tag]**](Tag.md) | The list of tags. | [optional] 7 | **total_count** | **int** | The total number of tags. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/AuthInput.md: -------------------------------------------------------------------------------- 1 | # AuthInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **basic** | [**AuthinputBasic**](AuthinputBasic.md) | | [optional] 7 | **oauth** | [**AuthinputOauth**](AuthinputOauth.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/DuoRegistrationApplicationReq.md: -------------------------------------------------------------------------------- 1 | # DuoRegistrationApplicationReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **registration_application** | [**DuoRegistrationApplication**](DuoRegistrationApplication.md) | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/InlineResponse2001.md: -------------------------------------------------------------------------------- 1 | # InlineResponse2001 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Administrator]**](Administrator.md) | | [optional] 7 | **total_count** | **int** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Office365TranslationRuleRequest.md: -------------------------------------------------------------------------------- 1 | # Office365TranslationRuleRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **built_in** | [**Office365BuiltinTranslation**](Office365BuiltinTranslation.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyTemplateConfigFieldTooltipVariables.md: -------------------------------------------------------------------------------- 1 | # PolicyTemplateConfigFieldTooltipVariables 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **icon** | **str** | | [optional] 7 | **message** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroupPut.md: -------------------------------------------------------------------------------- 1 | # UserGroupPut 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | [**UserGroupAttributes**](UserGroupAttributes.md) | | [optional] 7 | **name** | **str** | Display name of a User Group. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/DuoApplicationReq.md: -------------------------------------------------------------------------------- 1 | # DuoApplicationReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **api_host** | **str** | | 7 | **integration_key** | **str** | | 8 | **name** | **str** | | 9 | **secret_key** | **str** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGraphManagementReqAttributesSudo.md: -------------------------------------------------------------------------------- 1 | # SystemGraphManagementReqAttributesSudo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **enabled** | **bool** | | [optional] 7 | **without_password** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroupPost.md: -------------------------------------------------------------------------------- 1 | # UserGroupPost 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | [**UserGroupAttributes**](UserGroupAttributes.md) | | [optional] 7 | **name** | **str** | Display name of a User Group. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/WorkdayInput.md: -------------------------------------------------------------------------------- 1 | # WorkdayInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **auth** | [**AuthInput**](AuthInput.md) | | [optional] 7 | **name** | **str** | | [optional] 8 | **report_url** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemuserreturnPhoneNumbers.md: -------------------------------------------------------------------------------- 1 | # SystemuserreturnPhoneNumbers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **number** | **str** | | [optional] 8 | **type** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/ActiveDirectoryAgentListOutput.md: -------------------------------------------------------------------------------- 1 | # ActiveDirectoryAgentListOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | ObjectID of this Active Directory Agent. | [optional] 7 | **state** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Systemslist.md: -------------------------------------------------------------------------------- 1 | # Systemslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[System]**](System.md) | The list of systems. | [optional] 7 | **total_count** | **int** | The total number of systems. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Directory.md: -------------------------------------------------------------------------------- 1 | # Directory 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of the directory. | 7 | **name** | **str** | The name of the directory. | 8 | **type** | **str** | The type of directory. | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/GsuiteOutput.md: -------------------------------------------------------------------------------- 1 | # GsuiteOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **user_lockout_action** | **str** | | [optional] 8 | **user_password_expiration_action** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/Commandslist.md: -------------------------------------------------------------------------------- 1 | # Commandslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[CommandslistResults]**](CommandslistResults.md) | | [optional] 7 | **total_count** | **int** | The total number of commands | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGraphManagementReqAttributes.md: -------------------------------------------------------------------------------- 1 | # SystemGraphManagementReqAttributes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **sudo** | [**SystemGraphManagementReqAttributesSudo**](SystemGraphManagementReqAttributesSudo.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /jcapiv2/docs/OrgcryptosettingsSshKeys.md: -------------------------------------------------------------------------------- 1 | # OrgcryptosettingsSshKeys 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **key_size** | **int** | | [optional] 7 | **validate** | **bool** | | [optional] 8 | **validate_key_size** | **bool** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/ActiveDirectoryOutput.md: -------------------------------------------------------------------------------- 1 | # ActiveDirectoryOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **domain** | **str** | Domain name for this Active Directory instance. | [optional] 7 | **id** | **str** | ObjectID of this Active Directory instance. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroupAttributes.md: -------------------------------------------------------------------------------- 1 | # UserGroupAttributes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **posix_groups** | [**list[UserGroupAttributesPosixGroups]**](UserGroupAttributesPosixGroups.md) | | [optional] 7 | **samba_enabled** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Commandfilereturn.md: -------------------------------------------------------------------------------- 1 | # Commandfilereturn 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**CommandfilereturnResults**](CommandfilereturnResults.md) | | [optional] 7 | **total_count** | **int** | The total number of commands files | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/ProviderAdminReq.md: -------------------------------------------------------------------------------- 1 | # ProviderAdminReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email** | **str** | | 7 | **enable_multi_factor** | **bool** | | [optional] 8 | **firstname** | **str** | | [optional] 9 | **lastname** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv1/docs/Applicationslist.md: -------------------------------------------------------------------------------- 1 | # Applicationslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Application]**](Application.md) | The list of applications. | [optional] 7 | **total_count** | **int** | The total number of applications. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Usersystembindingsput.md: -------------------------------------------------------------------------------- 1 | # Usersystembindingsput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **add** | **list[str]** | The list of system ids to be added to this user. | 7 | **remove** | **list[str]** | The list of system ids to be removed from this user. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Group.md: -------------------------------------------------------------------------------- 1 | # Group 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | ObjectId uniquely identifying a Group. | [optional] 7 | **name** | **str** | Display name of a Group. | [optional] 8 | **type** | [**GroupType**](GroupType.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemNetworkInterfaces.md: -------------------------------------------------------------------------------- 1 | # SystemNetworkInterfaces 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **address** | **str** | | [optional] 7 | **family** | **str** | | [optional] 8 | **internal** | **bool** | | [optional] 9 | **name** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv1/docs/Systemuserslist.md: -------------------------------------------------------------------------------- 1 | # Systemuserslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Systemuserreturn]**](Systemuserreturn.md) | The list of system users. | [optional] 7 | **total_count** | **int** | The total number of system users. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/SambaDomainOutput.md: -------------------------------------------------------------------------------- 1 | # SambaDomainOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | Name of this domain's WorkGroup | 7 | **sid** | **str** | Security identifier of this domain | 8 | **id** | **str** | Unique identifier of this domain | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/CommandresultResponseData.md: -------------------------------------------------------------------------------- 1 | # CommandresultResponseData 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **exit_code** | **int** | The stderr output from the command that ran. | [optional] 7 | **output** | **str** | The output of the command that was executed. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Commandresultslist.md: -------------------------------------------------------------------------------- 1 | # Commandresultslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Commandresult]**](Commandresult.md) | The list of command results | [optional] 7 | **total_count** | **int** | The total number of command results | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Systemuserbindingsput.md: -------------------------------------------------------------------------------- 1 | # Systemuserbindingsput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **add** | **list[str]** | The list of systemuser ids to be added to this system. | 7 | **remove** | **list[str]** | The list of systemuser ids to be removed from this system. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/GSuiteTranslationRule.md: -------------------------------------------------------------------------------- 1 | # GSuiteTranslationRule 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **built_in** | [**GSuiteBuiltinTranslation**](GSuiteBuiltinTranslation.md) | | [optional] 7 | **id** | **str** | ObjectId uniquely identifying a Translation Rule. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsUserGroups.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsUserGroups 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **gid** | **str** | | [optional] 8 | **system_id** | **str** | | [optional] 9 | **uid** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroupMembersReq.md: -------------------------------------------------------------------------------- 1 | # UserGroupMembersReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of member being added or removed. | 7 | **op** | **str** | How to modify the membership connection. | 8 | **type** | **str** | The member type. | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfigAcsUrlTooltip.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfigAcsUrlTooltip 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **template** | **str** | | [optional] 7 | **variables** | [**ApplicationConfigAcsUrlTooltipVariables**](ApplicationConfigAcsUrlTooltipVariables.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/DuoApplicationUpdateReq.md: -------------------------------------------------------------------------------- 1 | # DuoApplicationUpdateReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **api_host** | **str** | | [optional] 7 | **integration_key** | **str** | | [optional] 8 | **name** | **str** | | [optional] 9 | **secret_key** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGroupMembersReq.md: -------------------------------------------------------------------------------- 1 | # SystemGroupMembersReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of member being added or removed. | 7 | **op** | **str** | How to modify the membership connection. | 8 | **type** | **str** | The member type. | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsEtcHosts.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsEtcHosts 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **address** | **str** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **hostnames** | **str** | | [optional] 9 | **system_id** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/Office365TranslationRule.md: -------------------------------------------------------------------------------- 1 | # Office365TranslationRule 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **built_in** | [**Office365BuiltinTranslation**](Office365BuiltinTranslation.md) | | [optional] 7 | **id** | **str** | ObjectId uniquely identifying a Translation Rule. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyTemplateConfigFieldTooltip.md: -------------------------------------------------------------------------------- 1 | # PolicyTemplateConfigFieldTooltip 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **template** | **str** | | [optional] 7 | **variables** | [**PolicyTemplateConfigFieldTooltipVariables**](PolicyTemplateConfigFieldTooltipVariables.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Applicationtemplateslist.md: -------------------------------------------------------------------------------- 1 | # Applicationtemplateslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[Applicationtemplate]**](Applicationtemplate.md) | The list of applications. | [optional] 7 | **total_count** | **int** | The total number of applications. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/Organizationslist.md: -------------------------------------------------------------------------------- 1 | # Organizationslist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **results** | [**list[OrganizationslistResults]**](OrganizationslistResults.md) | The list of organizations. | [optional] 7 | **total_count** | **int** | The total number of organizations. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/ActiveDirectoryAgentGetOutput.md: -------------------------------------------------------------------------------- 1 | # ActiveDirectoryAgentGetOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **connect_key** | **str** | The connect key to use when installing the Agent on a Domain Controller. | [optional] 7 | **id** | **str** | ObjectID of this Active Directory Agent. | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv2/docs/Body3.md: -------------------------------------------------------------------------------- 1 | # Body3 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **user_lockout_action** | [**LdapServerAction**](LdapServerAction.md) | | [optional] 8 | **user_password_expiration_action** | [**LdapServerAction**](LdapServerAction.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/DuoRegistrationApplication.md: -------------------------------------------------------------------------------- 1 | # DuoRegistrationApplication 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **api_host** | **str** | Duo Application host name. | 7 | **integration_key** | **str** | Duo Application integration key. | 8 | **secret_key** | **str** | Duo Application secret key. | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/CommandfilereturnResults.md: -------------------------------------------------------------------------------- 1 | # CommandfilereturnResults 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ID of the file. | [optional] 7 | **destination** | **str** | The location where the file will be stored. | [optional] 8 | **name** | **str** | The file name. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/GraphManagementReq.md: -------------------------------------------------------------------------------- 1 | # GraphManagementReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of graph object being added or removed as an association. | 7 | **op** | **str** | How to modify the graph connection. | 8 | **type** | [**GraphType**](GraphType.md) | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/Policy.md: -------------------------------------------------------------------------------- 1 | # Policy 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | ObjectId uniquely identifying a Policy. | [optional] 7 | **name** | **str** | The description for this specific Policy. | [optional] 8 | **template** | [**PolicyTemplate**](PolicyTemplate.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGroupGraphManagementReq.md: -------------------------------------------------------------------------------- 1 | # SystemGroupGraphManagementReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of graph object being added or removed as an association. | 7 | **op** | **str** | How to modify the graph connection. | 8 | **type** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/GraphObjectWithPaths.md: -------------------------------------------------------------------------------- 1 | # GraphObjectWithPaths 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | Object ID of this graph object. | 7 | **paths** | **list[list[GraphConnection]]** | A path through the graph between two graph objects. | 8 | **type** | [**GraphType**](GraphType.md) | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/WorkdayWorker.md: -------------------------------------------------------------------------------- 1 | # WorkdayWorker 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | **object** | | [optional] 7 | **email** | **str** | | [optional] 8 | **first_name** | **str** | | [optional] 9 | **last_name** | **str** | | [optional] 10 | **username** | **str** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyRequest.md: -------------------------------------------------------------------------------- 1 | # PolicyRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | The description for this specific Policy. | 7 | **template** | [**PolicyRequestTemplate**](PolicyRequestTemplate.md) | | [optional] 8 | **values** | [**list[PolicyValue]**](PolicyValue.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroupGraphManagementReq.md: -------------------------------------------------------------------------------- 1 | # UserGroupGraphManagementReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ObjectID of graph object being added or removed as an association. | 7 | **op** | **str** | How to modify the graph connection. | 8 | **type** | **str** | The graph type | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/JcEnrollmentProfile.md: -------------------------------------------------------------------------------- 1 | # JcEnrollmentProfile 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **groups** | **list[str]** | | [optional] 7 | **id** | **str** | | [optional] 8 | **name** | **str** | | [optional] 9 | **organization** | **str** | | [optional] 10 | **users** | **list[str]** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /jcapiv1/docs/OrganizationslistResults.md: -------------------------------------------------------------------------------- 1 | # OrganizationslistResults 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ID of the organization. | [optional] 7 | **display_name** | **str** | The name of the organization. | [optional] 8 | **logo_url** | **str** | The organization logo image URL. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/AppleMdmPatchInput.md: -------------------------------------------------------------------------------- 1 | # AppleMdmPatchInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **apple_signed_cert** | **str** | A signed certificate obtained from Apple after providing Apple with the plist file provided on POST. | [optional] 7 | **name** | **str** | A new name for the Apple MDM configuration. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /jcapiv1/docs/CommandresultResponse.md: -------------------------------------------------------------------------------- 1 | # CommandresultResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **data** | [**CommandresultResponseData**](CommandresultResponseData.md) | | [optional] 7 | **error** | **str** | The stderr output from the command that ran. | [optional] 8 | **id** | **str** | ID of the response. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/WorkdayOutput.md: -------------------------------------------------------------------------------- 1 | # WorkdayOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **auth** | [**WorkdayoutputAuth**](WorkdayoutputAuth.md) | | [optional] 7 | **id** | **str** | | [optional] 8 | **last_import** | **str** | | [optional] 9 | **name** | **str** | | [optional] 10 | **report_url** | **str** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGroup.md: -------------------------------------------------------------------------------- 1 | # SystemGroup 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | ObjectId uniquely identifying a System Group. | [optional] 7 | **name** | **str** | Display name of a System Group. | [optional] 8 | **type** | **str** | The type of the group; always 'system' for a System Group. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv1/docs/Body.md: -------------------------------------------------------------------------------- 1 | # Body 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **mfa** | **str** | | [optional] 7 | **name** | **str** | | 8 | **network_source_ip** | **str** | | 9 | **tags** | **list[str]** | | [optional] 10 | **user_lockout_action** | **str** | | [optional] 11 | **user_password_expiration_action** | **str** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /jcapiv1/docs/Sshkeylist.md: -------------------------------------------------------------------------------- 1 | # Sshkeylist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ID of the SSH key. | [optional] 7 | **create_date** | **str** | The date the SSH key was created. | [optional] 8 | **name** | **str** | The name of the SSH key. | [optional] 9 | **public_key** | **str** | The Public SSH key. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/BulkUserCreate.md: -------------------------------------------------------------------------------- 1 | # BulkUserCreate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | **list[object]** | Map of additional attributes. | [optional] 7 | **email** | **str** | | [optional] 8 | **firstname** | **str** | | [optional] 9 | **lastname** | **str** | | [optional] 10 | **username** | **str** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /jcapiv2/docs/Sshkeylist.md: -------------------------------------------------------------------------------- 1 | # Sshkeylist 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | The ID of the SSH key. | [optional] 7 | **create_date** | **str** | The date the SSH key was created. | [optional] 8 | **name** | **str** | The name of the SSH key. | [optional] 9 | **public_key** | **str** | The Public SSH key. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfigConstantAttributesValue.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfigConstantAttributesValue 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | [optional] 7 | **read_only** | **bool** | | [optional] 8 | **required** | **bool** | | [optional] 9 | **value** | **str** | | [optional] 10 | **visible** | **bool** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /jcapiv2/docs/Administrator.md: -------------------------------------------------------------------------------- 1 | # Administrator 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email** | **str** | | [optional] 7 | **enable_multi_factor** | **bool** | | [optional] 8 | **firstname** | **str** | | [optional] 9 | **id** | **str** | | [optional] 10 | **lastname** | **str** | | [optional] 11 | **registered** | **bool** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /jcapiv2/docs/InlineResponse200.md: -------------------------------------------------------------------------------- 1 | # InlineResponse200 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **name** | **str** | | [optional] 8 | **user_lockout_action** | [**LdapServerAction**](LdapServerAction.md) | | [optional] 9 | **user_password_expiration_action** | [**LdapServerAction**](LdapServerAction.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsKernelInfo.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsKernelInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **arguments** | **str** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **device** | **str** | | [optional] 9 | **path** | **str** | | [optional] 10 | **system_id** | **str** | | [optional] 11 | **version** | **str** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGroup.md: -------------------------------------------------------------------------------- 1 | # UserGroup 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | [**UserGroupAttributes**](UserGroupAttributes.md) | | [optional] 7 | **id** | **str** | ObjectId uniquely identifying a User Group. | [optional] 8 | **name** | **str** | Display name of a User Group. | [optional] 9 | **type** | **str** | The type of the group. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsIeExtensions.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsIeExtensions 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **name** | **str** | | [optional] 8 | **path** | **str** | | [optional] 9 | **registry_path** | **str** | | [optional] 10 | **system_id** | **str** | | [optional] 11 | **version** | **str** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /jcapiv2/docs/LdapServerInput.md: -------------------------------------------------------------------------------- 1 | # LdapServerInput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | The name of this LDAP server | [optional] 7 | **user_lockout_action** | **str** | action to take; one of 'remove' or 'disable' | [optional] 8 | **user_password_expiration_action** | **str** | action to take; one of 'remove' or 'disable' | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/AppleMDM.md: -------------------------------------------------------------------------------- 1 | # AppleMDM 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **apns_push_topic** | **str** | The push topic assigned to this enrollment by Apple after uploading the Signed CSR plist. | [optional] 7 | **id** | **str** | ObjectId uniquely identifying an MDM Enrollment, | 8 | **name** | **str** | A friendly name to identify this enrollment. Not required to be unique. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemGraphManagementReq.md: -------------------------------------------------------------------------------- 1 | # SystemGraphManagementReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | [**SystemGraphManagementReqAttributes**](SystemGraphManagementReqAttributes.md) | | [optional] 7 | **id** | **str** | The ObjectID of graph object being added or removed as an association. | 8 | **op** | **str** | How to modify the graph connection. | 9 | **type** | **str** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/UserGraphManagementReq.md: -------------------------------------------------------------------------------- 1 | # UserGraphManagementReq 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | [**SystemGraphManagementReqAttributes**](SystemGraphManagementReqAttributes.md) | | [optional] 7 | **id** | **str** | The ObjectID of graph object being added or removed as an association. | 8 | **op** | **str** | How to modify the graph connection. | 9 | **type** | **str** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsGroups.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsGroups 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **comment** | **str** | | [optional] 8 | **gid** | **str** | | [optional] 9 | **gid_signed** | **str** | | [optional] 10 | **group_sid** | **str** | | [optional] 11 | **groupname** | **str** | | [optional] 12 | **system_id** | **str** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsUptime.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsUptime 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **days** | **int** | | [optional] 8 | **hours** | **int** | | [optional] 9 | **minutes** | **int** | | [optional] 10 | **seconds** | **int** | | [optional] 11 | **system_id** | **str** | | [optional] 12 | **total_seconds** | **str** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /jcapiv2/docs/BulkUserUpdate.md: -------------------------------------------------------------------------------- 1 | # BulkUserUpdate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **attributes** | **list[object]** | Map of additional attributes. | [optional] 7 | **email** | **str** | | [optional] 8 | **firstname** | **str** | | [optional] 9 | **id** | **str** | Object ID of the systemuser being updated | [optional] 10 | **lastname** | **str** | | [optional] 11 | **username** | **str** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /jcapiv1/docs/Radiusserverput.md: -------------------------------------------------------------------------------- 1 | # Radiusserverput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **mfa** | **str** | | [optional] 8 | **name** | **str** | | [optional] 9 | **network_source_ip** | **str** | | [optional] 10 | **tag_names** | **list[str]** | | [optional] 11 | **user_lockout_action** | **str** | | [optional] 12 | **user_password_expiration_action** | **str** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /jcapiv2/docs/JobDetails.md: -------------------------------------------------------------------------------- 1 | # JobDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **admin_id** | **str** | | [optional] 7 | **id** | **str** | | [optional] 8 | **meta** | **object** | | [optional] 9 | **name** | **str** | | [optional] 10 | **persisted_fields** | **list[str]** | | [optional] 11 | **status** | **str** | | [optional] 12 | **updated_at** | **str** | | [optional] 13 | **work_units_count** | **int** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsLoggedInUsers.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsLoggedInUsers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **host** | **str** | | [optional] 8 | **pid** | **int** | | [optional] 9 | **system_id** | **str** | | [optional] 10 | **time** | **int** | | [optional] 11 | **tty** | **str** | | [optional] 12 | **type** | **str** | | [optional] 13 | **user** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv1/docs/Radiusserverpost.md: -------------------------------------------------------------------------------- 1 | # Radiusserverpost 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **mfa** | **str** | | [optional] 7 | **name** | **str** | | 8 | **network_source_ip** | **str** | | 9 | **shared_secret** | **str** | RADIUS shared secret between the server and client. | 10 | **tag_names** | **list[str]** | | [optional] 11 | **user_lockout_action** | **str** | | [optional] 12 | **user_password_expiration_action** | **str** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemuserputAddresses.md: -------------------------------------------------------------------------------- 1 | # SystemuserputAddresses 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **country** | **str** | | [optional] 7 | **extended_address** | **str** | | [optional] 8 | **locality** | **str** | | [optional] 9 | **po_box** | **str** | | [optional] 10 | **postal_code** | **str** | | [optional] 11 | **region** | **str** | | [optional] 12 | **street_address** | **str** | | [optional] 13 | **type** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/docs/LdapServerOutput.md: -------------------------------------------------------------------------------- 1 | # LdapServerOutput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | The name of this LDAP server | [optional] 7 | **user_lockout_action** | **str** | action to take; one of 'remove' or 'disable' | [optional] 8 | **user_password_expiration_action** | **str** | action to take; one of 'remove' or 'disable' | [optional] 9 | **id** | **str** | Unique identifier of this LDAP server | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemuserputpostAddresses.md: -------------------------------------------------------------------------------- 1 | # SystemuserputpostAddresses 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **country** | **str** | | [optional] 7 | **extended_address** | **str** | | [optional] 8 | **locality** | **str** | | [optional] 9 | **po_box** | **str** | | [optional] 10 | **postal_code** | **str** | | [optional] 11 | **region** | **str** | | [optional] 12 | **street_address** | **str** | | [optional] 13 | **type** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemuserputpostAddresses.md: -------------------------------------------------------------------------------- 1 | # SystemuserputpostAddresses 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **country** | **str** | | [optional] 7 | **extended_address** | **str** | | [optional] 8 | **locality** | **str** | | [optional] 9 | **po_box** | **str** | | [optional] 10 | **postal_code** | **str** | | [optional] 11 | **region** | **str** | | [optional] 12 | **street_address** | **str** | | [optional] 13 | **type** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsLogicalDrvies.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsLogicalDrvies 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **boot_partition** | **int** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **device_id** | **str** | | [optional] 9 | **file_system** | **str** | | [optional] 10 | **free_space** | **str** | | [optional] 11 | **size** | **str** | | [optional] 12 | **system_id** | **str** | | [optional] 13 | **type** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv1/docs/SystemuserreturnAddresses.md: -------------------------------------------------------------------------------- 1 | # SystemuserreturnAddresses 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **country** | **str** | | [optional] 7 | **extended_address** | **str** | | [optional] 8 | **id** | **str** | | [optional] 9 | **locality** | **str** | | [optional] 10 | **po_box** | **str** | | [optional] 11 | **postal_code** | **str** | | [optional] 12 | **region** | **str** | | [optional] 13 | **street_address** | **str** | | [optional] 14 | **type** | **str** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyWithDetails.md: -------------------------------------------------------------------------------- 1 | # PolicyWithDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **config_fields** | [**list[PolicyTemplateConfigField]**](PolicyTemplateConfigField.md) | | [optional] 7 | **id** | **str** | ObjectId uniquely identifying a Policy. | [optional] 8 | **name** | **str** | The description for this specific Policy. | [optional] 9 | **template** | [**PolicyTemplate**](PolicyTemplate.md) | | [optional] 10 | **values** | [**list[PolicyValue]**](PolicyValue.md) | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfigAcsUrl.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfigAcsUrl 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **label** | **str** | | [optional] 7 | **position** | **int** | | [optional] 8 | **read_only** | **bool** | | [optional] 9 | **required** | **bool** | | [optional] 10 | **tooltip** | [**ApplicationConfigAcsUrlTooltip**](ApplicationConfigAcsUrlTooltip.md) | | [optional] 11 | **type** | **str** | | [optional] 12 | **value** | **str** | | [optional] 13 | **visible** | **bool** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsDiskEncryption.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsDiskEncryption 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **encrypted** | **int** | | [optional] 8 | **encryption_status** | **str** | | [optional] 9 | **name** | **str** | | [optional] 10 | **system_id** | **str** | | [optional] 11 | **type** | **str** | | [optional] 12 | **uid** | **str** | | [optional] 13 | **user_uuid** | **str** | | [optional] 14 | **uuid** | **str** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /jcapiv1/docs/Application.md: -------------------------------------------------------------------------------- 1 | # Application 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **beta** | **bool** | | [optional] 8 | **config** | [**ApplicationConfig**](ApplicationConfig.md) | | [optional] 9 | **display_label** | **str** | | [optional] 10 | **display_name** | **str** | | [optional] 11 | **learn_more** | **str** | | [optional] 12 | **name** | **str** | | [optional] 13 | **organization** | **str** | | [optional] 14 | **sso_url** | **str** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsBitlockerInfo.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsBitlockerInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **conversion_status** | **int** | | [optional] 8 | **device_id** | **str** | | [optional] 9 | **drive_letter** | **str** | | [optional] 10 | **encryption_method** | **str** | | [optional] 11 | **persistent_volume_id** | **str** | | [optional] 12 | **protection_status** | **int** | | [optional] 13 | **system_id** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsSystemControls.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsSystemControls 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **config_value** | **str** | | [optional] 8 | **current_value** | **str** | | [optional] 9 | **field_name** | **str** | | [optional] 10 | **name** | **str** | | [optional] 11 | **oid** | **str** | | [optional] 12 | **subsystem** | **str** | | [optional] 13 | **system_id** | **str** | | [optional] 14 | **type** | **str** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /jcapiv1/jcapiv1/api/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | # flake8: noqa 4 | 5 | # import apis into api package 6 | from jcapiv1.api.application_templates_api import ApplicationTemplatesApi 7 | from jcapiv1.api.applications_api import ApplicationsApi 8 | from jcapiv1.api.command_results_api import CommandResultsApi 9 | from jcapiv1.api.command_triggers_api import CommandTriggersApi 10 | from jcapiv1.api.commands_api import CommandsApi 11 | from jcapiv1.api.organizations_api import OrganizationsApi 12 | from jcapiv1.api.radius_servers_api import RadiusServersApi 13 | from jcapiv1.api.search_api import SearchApi 14 | from jcapiv1.api.systems_api import SystemsApi 15 | from jcapiv1.api.systemusers_api import SystemusersApi 16 | from jcapiv1.api.tags_api import TagsApi 17 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsInterfaceAddresses.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsInterfaceAddresses 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **address** | **str** | | [optional] 7 | **broadcast** | **str** | | [optional] 8 | **collection_time** | **str** | | [optional] 9 | **friendly_name** | **str** | | [optional] 10 | **interface** | **str** | | [optional] 11 | **mask** | **str** | | [optional] 12 | **point_to_point** | **str** | | [optional] 13 | **system_id** | **str** | | [optional] 14 | **type** | **str** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /jcapiv1/docs/Systemput.md: -------------------------------------------------------------------------------- 1 | # Systemput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **agent_bound_messages** | [**list[SystemputAgentBoundMessages]**](SystemputAgentBoundMessages.md) | | [optional] 7 | **allow_multi_factor_authentication** | **bool** | | [optional] 8 | **allow_public_key_authentication** | **bool** | | [optional] 9 | **allow_ssh_password_authentication** | **bool** | | [optional] 10 | **allow_ssh_root_login** | **bool** | | [optional] 11 | **display_name** | **str** | | [optional] 12 | **tags** | **list[str]** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsPatches.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsPatches 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **caption** | **str** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **csname** | **str** | | [optional] 9 | **description** | **str** | | [optional] 10 | **fix_comments** | **str** | | [optional] 11 | **hotfix_id** | **str** | | [optional] 12 | **install_date** | **str** | | [optional] 13 | **installed_by** | **str** | | [optional] 14 | **installed_on** | **str** | | [optional] 15 | **system_id** | **str** | | [optional] 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /jcapiv1/docs/Radiusserver.md: -------------------------------------------------------------------------------- 1 | # Radiusserver 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **mfa** | **str** | | [optional] 8 | **name** | **str** | | [optional] 9 | **network_source_ip** | **str** | | [optional] 10 | **organization** | **str** | | [optional] 11 | **shared_secret** | **str** | | [optional] 12 | **tag_names** | **list[str]** | | [optional] 13 | **tags** | **list[str]** | | [optional] 14 | **user_lockout_action** | **str** | | [optional] 15 | **user_password_expiration_action** | **str** | | [optional] 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsUsers.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsUsers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **description** | **str** | | [optional] 8 | **directory** | **str** | | [optional] 9 | **gid** | **str** | | [optional] 10 | **gid_signed** | **str** | | [optional] 11 | **shell** | **str** | | [optional] 12 | **system_id** | **str** | | [optional] 13 | **type** | **str** | | [optional] 14 | **uid** | **str** | | [optional] 15 | **uid_signed** | **str** | | [optional] 16 | **username** | **str** | | [optional] 17 | **uuid** | **str** | | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsPrograms.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsPrograms 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **identifying_number** | **str** | | [optional] 8 | **install_date** | **str** | | [optional] 9 | **install_location** | **str** | | [optional] 10 | **install_source** | **str** | | [optional] 11 | **language** | **str** | | [optional] 12 | **name** | **str** | | [optional] 13 | **publisher** | **str** | | [optional] 14 | **system_id** | **str** | | [optional] 15 | **uninstall_string** | **str** | | [optional] 16 | **version** | **str** | | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | 21 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsOsVersion.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsOsVersion 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **build** | **str** | | [optional] 7 | **codename** | **str** | | [optional] 8 | **collection_time** | **str** | | [optional] 9 | **install_date** | **str** | | [optional] 10 | **major** | **int** | | [optional] 11 | **minor** | **int** | | [optional] 12 | **name** | **str** | | [optional] 13 | **patch** | **int** | | [optional] 14 | **platform** | **str** | | [optional] 15 | **platform_like** | **str** | | [optional] 16 | **system_id** | **str** | | [optional] 17 | **version** | **str** | | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsBrowserPlugins.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsBrowserPlugins 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **description** | **str** | | [optional] 8 | **development_region** | **str** | | [optional] 9 | **disabled** | **int** | | [optional] 10 | **identifier** | **str** | | [optional] 11 | **name** | **str** | | [optional] 12 | **native** | **int** | | [optional] 13 | **path** | **str** | | [optional] 14 | **sdk** | **str** | | [optional] 15 | **system_id** | **str** | | [optional] 16 | **uid** | **str** | | [optional] 17 | **version** | **str** | | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsSafariExtensions.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsSafariExtensions 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **author** | **str** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **description** | **str** | | [optional] 9 | **developer_id** | **str** | | [optional] 10 | **identifier** | **str** | | [optional] 11 | **name** | **str** | | [optional] 12 | **path** | **str** | | [optional] 13 | **sdk** | **str** | | [optional] 14 | **system_id** | **str** | | [optional] 15 | **uid** | **str** | | [optional] 16 | **update_url** | **str** | | [optional] 17 | **version** | **str** | | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /jcapiv1/docs/Applicationtemplate.md: -------------------------------------------------------------------------------- 1 | # Applicationtemplate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **beta** | **bool** | | [optional] 8 | **color** | **str** | | [optional] 9 | **config** | [**ApplicationConfig**](ApplicationConfig.md) | | [optional] 10 | **display_label** | **str** | | [optional] 11 | **display_name** | **str** | | [optional] 12 | **is_configured** | **bool** | | [optional] 13 | **jit** | [**ApplicationtemplateJit**](ApplicationtemplateJit.md) | | [optional] 14 | **learn_more** | **str** | | [optional] 15 | **name** | **str** | | [optional] 16 | **sso_url** | **str** | | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | 21 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfigConstantAttributes.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfigConstantAttributes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **label** | **str** | | [optional] 7 | **mutable** | **bool** | | [optional] 8 | **position** | **int** | | [optional] 9 | **read_only** | **bool** | | [optional] 10 | **required** | **bool** | | [optional] 11 | **tooltip** | [**ApplicationConfigAcsUrlTooltip**](ApplicationConfigAcsUrlTooltip.md) | | [optional] 12 | **type** | **str** | | [optional] 13 | **value** | [**list[ApplicationConfigConstantAttributesValue]**](ApplicationConfigConstantAttributesValue.md) | | [optional] 14 | **visible** | **bool** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsMounts.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsMounts 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **blocks** | **str** | | [optional] 7 | **blocks_available** | **str** | | [optional] 8 | **blocks_free** | **str** | | [optional] 9 | **blocks_size** | **str** | | [optional] 10 | **collection_time** | **str** | | [optional] 11 | **device** | **str** | | [optional] 12 | **device_alias** | **str** | | [optional] 13 | **flags** | **str** | | [optional] 14 | **inodes** | **str** | | [optional] 15 | **inodes_free** | **str** | | [optional] 16 | **path** | **str** | | [optional] 17 | **system_id** | **str** | | [optional] 18 | **type** | **str** | | [optional] 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | 22 | 23 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsChromeExtensions.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsChromeExtensions 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **author** | **str** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **description** | **str** | | [optional] 9 | **identifier** | **str** | | [optional] 10 | **locale** | **str** | | [optional] 11 | **name** | **str** | | [optional] 12 | **path** | **str** | | [optional] 13 | **permissions** | **str** | | [optional] 14 | **persistent** | **int** | | [optional] 15 | **system_id** | **str** | | [optional] 16 | **uid** | **str** | | [optional] 17 | **update_url** | **str** | | [optional] 18 | **version** | **str** | | [optional] 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | 22 | 23 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsDiskInfo.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsDiskInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **collection_time** | **str** | | [optional] 7 | **description** | **str** | | [optional] 8 | **disk_index** | **int** | | [optional] 9 | **disk_size** | **str** | | [optional] 10 | **hardware_model** | **str** | | [optional] 11 | **id** | **str** | | [optional] 12 | **manufacturer** | **str** | | [optional] 13 | **name** | **str** | | [optional] 14 | **partitions** | **int** | | [optional] 15 | **pnp_device_id** | **str** | | [optional] 16 | **serial** | **str** | | [optional] 17 | **system_id** | **str** | | [optional] 18 | **type** | **str** | | [optional] 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | 22 | 23 | -------------------------------------------------------------------------------- /jcapiv1/docs/Tagpost.md: -------------------------------------------------------------------------------- 1 | # Tagpost 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_dn** | **str** | | [optional] 7 | **external_source_type** | **str** | | [optional] 8 | **externally_managed** | **bool** | | [optional] 9 | **group_gid** | **str** | | [optional] 10 | **group_name** | **str** | | [optional] 11 | **name** | **str** | A unique name for the Tag. | 12 | **regular_expressions** | **list[str]** | | [optional] 13 | **send_to_ldap** | **bool** | | [optional] 14 | **systems** | **list[str]** | An array of system ids that are associated to the Tag. | [optional] 15 | **systemusers** | **list[str]** | An array of system user ids that are associated to the Tag. | [optional] 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /jcapiv1/docs/Tagput.md: -------------------------------------------------------------------------------- 1 | # Tagput 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_dn** | **str** | | [optional] 7 | **external_source_type** | **str** | | [optional] 8 | **externally_managed** | **bool** | | [optional] 9 | **group_gid** | **str** | | [optional] 10 | **group_name** | **str** | | [optional] 11 | **name** | **str** | A unique name for the Tag. | [optional] 12 | **regular_expressions** | **list[str]** | | [optional] 13 | **send_to_ldap** | **bool** | | [optional] 14 | **systems** | **list[str]** | An array of system ids that are associated to the Tag. | [optional] 15 | **systemusers** | **list[str]** | An array of system user ids that are associated to the Tag. | [optional] 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsUsbDevices.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsUsbDevices 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **_class** | **str** | | [optional] 7 | **collection_time** | **str** | | [optional] 8 | **model** | **str** | | [optional] 9 | **model_id** | **str** | | [optional] 10 | **protocol** | **str** | | [optional] 11 | **removable** | **int** | | [optional] 12 | **serial** | **str** | | [optional] 13 | **subclass** | **str** | | [optional] 14 | **system_id** | **str** | | [optional] 15 | **usb_address** | **int** | | [optional] 16 | **usb_port** | **int** | | [optional] 17 | **vendor** | **str** | | [optional] 18 | **vendor_id** | **str** | | [optional] 19 | **version** | **str** | | [optional] 20 | 21 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 22 | 23 | 24 | -------------------------------------------------------------------------------- /jcapiv1/test/test_fde.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.fde import Fde # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestFde(unittest.TestCase): 24 | """Fde unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testFde(self): 33 | """Test Fde""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.fde.Fde() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_mfa.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.mfa import Mfa # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestMfa(unittest.TestCase): 24 | """Mfa unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testMfa(self): 33 | """Test Mfa""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.mfa.Mfa() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_tag.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.tag import Tag # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestTag(unittest.TestCase): 24 | """Tag unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testTag(self): 33 | """Test Tag""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.tag.Tag() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.body import Body # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestBody(unittest.TestCase): 24 | """Body unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testBody(self): 33 | """Test Body""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.body.Body() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyTemplate.md: -------------------------------------------------------------------------------- 1 | # PolicyTemplate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **activation** | **str** | Requirements before the policy can be activated. | [optional] 7 | **behavior** | **str** | Specifics about the behavior of the policy. | [optional] 8 | **description** | **str** | The default description for the Policy. | [optional] 9 | **display_name** | **str** | The default display name for the Policy. | [optional] 10 | **id** | **str** | ObjectId uniquely identifying a Policy Template. | [optional] 11 | **name** | **str** | The unique name for the Policy Template. | [optional] 12 | **os_meta_family** | **str** | | [optional] 13 | **state** | **str** | String describing the release status of the policy template. | [optional] [default to ''] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv1/test/test_body1.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.body1 import Body1 # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestBody1(unittest.TestCase): 24 | """Body1 unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testBody1(self): 33 | """Test Body1""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.body1.Body1() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/docs/Tag.md: -------------------------------------------------------------------------------- 1 | # Tag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **str** | | [optional] 7 | **expired** | **bool** | | [optional] 8 | **external_dn** | **str** | | [optional] 9 | **external_source_type** | **str** | | [optional] 10 | **externally_managed** | **bool** | | [optional] 11 | **group_gid** | **str** | | [optional] 12 | **group_name** | **str** | | [optional] 13 | **name** | **str** | A unique name for the Tag. | [optional] 14 | **regular_expressions** | **list[str]** | | [optional] 15 | **send_to_ldap** | **bool** | | [optional] 16 | **systems** | **list[str]** | An array of system ids that are associated to the Tag. | [optional] 17 | **systemusers** | **list[str]** | An array of system user ids that are associated to the Tag. | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /jcapiv1/test/test_search.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.search import Search # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSearch(unittest.TestCase): 24 | """Search unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSearch(self): 33 | """Test Search""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.search.Search() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_system.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.system import System # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystem(unittest.TestCase): 24 | """System unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystem(self): 33 | """Test System""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.system.System() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_tagput.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.tagput import Tagput # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestTagput(unittest.TestCase): 24 | """Tagput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testTagput(self): 33 | """Test Tagput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.tagput.Tagput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_command.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.command import Command # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestCommand(unittest.TestCase): 24 | """Command unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testCommand(self): 33 | """Test Command""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.command.Command() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_tagpost.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.tagpost import Tagpost # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestTagpost(unittest.TestCase): 24 | """Tagpost unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testTagpost(self): 33 | """Test Tagpost""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.tagpost.Tagpost() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_mfa.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.mfa import Mfa # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestMfa(unittest.TestCase): 24 | """Mfa unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testMfa(self): 33 | """Test Mfa""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.mfa.Mfa() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_tagslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.tagslist import Tagslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestTagslist(unittest.TestCase): 24 | """Tagslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testTagslist(self): 33 | """Test Tagslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.tagslist.Tagslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyTemplateConfigField.md: -------------------------------------------------------------------------------- 1 | # PolicyTemplateConfigField 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **display_type** | **str** | The default rendering for this field. | [optional] 7 | **id** | **str** | ObjectId uniquely identifying a Policy Template Configuration Field | 8 | **label** | **str** | The default label for this field. | [optional] 9 | **name** | **str** | A unique name identifying this config field. | 10 | **position** | **float** | The default position to render this field. | [optional] 11 | **read_only** | **bool** | If an admin is allowed to modify this field. | [optional] 12 | **required** | **bool** | If this field is required for this field. | [optional] 13 | **tooltip** | [**PolicyTemplateConfigFieldTooltip**](PolicyTemplateConfigFieldTooltip.md) | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/test/test_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.body import Body # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestBody(unittest.TestCase): 24 | """Body unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testBody(self): 33 | """Test Body""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.body.Body() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemput.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemput import Systemput # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemput(unittest.TestCase): 24 | """Systemput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemput(self): 33 | """Test Systemput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemput.Systemput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_body1.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.body1 import Body1 # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestBody1(unittest.TestCase): 24 | """Body1 unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testBody1(self): 33 | """Test Body1""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.body1.Body1() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_body2.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.body2 import Body2 # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestBody2(unittest.TestCase): 24 | """Body2 unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testBody2(self): 33 | """Test Body2""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.body2.Body2() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_body3.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.body3 import Body3 # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestBody3(unittest.TestCase): 24 | """Body3 unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testBody3(self): 33 | """Test Body3""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.body3.Body3() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_error.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.error import Error # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestError(unittest.TestCase): 24 | """Error unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testError(self): 33 | """Test Error""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.error.Error() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_group.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.group import Group # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestGroup(unittest.TestCase): 24 | """Group unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testGroup(self): 33 | """Test Group""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.group.Group() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsFirefoxAddons.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsFirefoxAddons 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **active** | **int** | | [optional] 7 | **autoupdate** | **int** | | [optional] 8 | **collection_time** | **str** | | [optional] 9 | **creator** | **str** | | [optional] 10 | **description** | **str** | | [optional] 11 | **disabled** | **int** | | [optional] 12 | **identifier** | **str** | | [optional] 13 | **location** | **str** | | [optional] 14 | **name** | **str** | | [optional] 15 | **path** | **str** | | [optional] 16 | **source_url** | **str** | | [optional] 17 | **system_id** | **str** | | [optional] 18 | **type** | **str** | | [optional] 19 | **uid** | **str** | | [optional] 20 | **version** | **str** | | [optional] 21 | **visible** | **int** | | [optional] 22 | 23 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 24 | 25 | 26 | -------------------------------------------------------------------------------- /jcapiv2/test/test_job_id.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.job_id import JobId # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestJobId(unittest.TestCase): 24 | """JobId unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testJobId(self): 33 | """Test JobId""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.job_id.JobId() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_sshkeylist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.sshkeylist import Sshkeylist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSshkeylist(unittest.TestCase): 24 | """Sshkeylist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSshkeylist(self): 33 | """Test Sshkeylist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.sshkeylist.Sshkeylist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_sshkeypost.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.sshkeypost import Sshkeypost # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSshkeypost(unittest.TestCase): 24 | """Sshkeypost unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSshkeypost(self): 33 | """Test Sshkeypost""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.sshkeypost.Sshkeypost() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemuser.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemuser import Systemuser # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemuser(unittest.TestCase): 24 | """Systemuser unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuser(self): 33 | """Test Systemuser""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemuser.Systemuser() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_fde_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.api.fde_api import FdeApi # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestFdeApi(unittest.TestCase): 24 | """FdeApi unit test stubs""" 25 | 26 | def setUp(self): 27 | self.api = jcapiv2.api.fde_api.FdeApi() # noqa: E501 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def test_systems_get_fde_key(self): 33 | """Test case for systems_get_fde_key 34 | 35 | Get System FDE Key # noqa: E501 36 | """ 37 | pass 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /jcapiv2/test/test_groups_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.api.groups_api import GroupsApi # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestGroupsApi(unittest.TestCase): 24 | """GroupsApi unit test stubs""" 25 | 26 | def setUp(self): 27 | self.api = jcapiv2.api.groups_api.GroupsApi() # noqa: E501 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def test_groups_list(self): 33 | """Test case for groups_list 34 | 35 | List All Groups # noqa: E501 36 | """ 37 | pass 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /jcapiv2/test/test_policy.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.policy import Policy # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestPolicy(unittest.TestCase): 24 | """Policy unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testPolicy(self): 33 | """Test Policy""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.policy.Policy() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/docs/SystemInsightsCrashes.md: -------------------------------------------------------------------------------- 1 | # SystemInsightsCrashes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **crash_path** | **str** | | [optional] 7 | **crashed_thread** | **str** | | [optional] 8 | **_datetime** | **str** | | [optional] 9 | **exception_codes** | **str** | | [optional] 10 | **exception_notes** | **str** | | [optional] 11 | **exception_type** | **str** | | [optional] 12 | **identifier** | **str** | | [optional] 13 | **parent** | **str** | | [optional] 14 | **path** | **str** | | [optional] 15 | **pid** | **str** | | [optional] 16 | **registers** | **str** | | [optional] 17 | **responsible** | **str** | | [optional] 18 | **stack_trace** | **str** | | [optional] 19 | **type** | **str** | | [optional] 20 | **uid** | **int** | | [optional] 21 | **version** | **str** | | [optional] 22 | 23 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 24 | 25 | 26 | -------------------------------------------------------------------------------- /jcapiv1/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | venv/ 48 | .python-version 49 | 50 | # Translations 51 | *.mo 52 | *.pot 53 | 54 | # Django stuff: 55 | *.log 56 | 57 | # Sphinx documentation 58 | docs/_build/ 59 | 60 | # PyBuilder 61 | target/ 62 | 63 | #Ipython Notebook 64 | .ipynb_checkpoints 65 | -------------------------------------------------------------------------------- /jcapiv1/test/test_application.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.application import Application # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestApplication(unittest.TestCase): 24 | """Application unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testApplication(self): 33 | """Test Application""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.application.Application() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemslist import Systemslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemslist(unittest.TestCase): 24 | """Systemslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemslist(self): 33 | """Test Systemslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemslist.Systemslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | venv/ 48 | .python-version 49 | 50 | # Translations 51 | *.mo 52 | *.pot 53 | 54 | # Django stuff: 55 | *.log 56 | 57 | # Sphinx documentation 58 | docs/_build/ 59 | 60 | # PyBuilder 61 | target/ 62 | 63 | #Ipython Notebook 64 | .ipynb_checkpoints 65 | -------------------------------------------------------------------------------- /jcapiv1/docs/ApplicationConfig.md: -------------------------------------------------------------------------------- 1 | # ApplicationConfig 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **acs_url** | [**ApplicationConfigAcsUrl**](ApplicationConfigAcsUrl.md) | | [optional] 7 | **constant_attributes** | [**ApplicationConfigConstantAttributes**](ApplicationConfigConstantAttributes.md) | | [optional] 8 | **database_attributes** | [**ApplicationConfigDatabaseAttributes**](ApplicationConfigDatabaseAttributes.md) | | [optional] 9 | **idp_certificate** | [**ApplicationConfigAcsUrl**](ApplicationConfigAcsUrl.md) | | [optional] 10 | **idp_entity_id** | [**ApplicationConfigAcsUrl**](ApplicationConfigAcsUrl.md) | | [optional] 11 | **idp_private_key** | [**ApplicationConfigAcsUrl**](ApplicationConfigAcsUrl.md) | | [optional] 12 | **sp_entity_id** | [**ApplicationConfigAcsUrl**](ApplicationConfigAcsUrl.md) | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /jcapiv1/test/test_commandslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.commandslist import Commandslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestCommandslist(unittest.TestCase): 24 | """Commandslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testCommandslist(self): 33 | """Test Commandslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.commandslist.Commandslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_radiusserver.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.radiusserver import Radiusserver # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestRadiusserver(unittest.TestCase): 24 | """Radiusserver unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testRadiusserver(self): 33 | """Test Radiusserver""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.radiusserver.Radiusserver() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_apple_mdm.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.apple_mdm import AppleMDM # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestAppleMDM(unittest.TestCase): 24 | """AppleMDM unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testAppleMDM(self): 33 | """Test AppleMDM""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.apple_mdm.AppleMDM() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_auth_info.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.auth_info import AuthInfo # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestAuthInfo(unittest.TestCase): 24 | """AuthInfo unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testAuthInfo(self): 33 | """Test AuthInfo""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.auth_info.AuthInfo() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_provider.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.provider import Provider # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestProvider(unittest.TestCase): 24 | """Provider unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testProvider(self): 33 | """Test Provider""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.provider.Provider() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_commandresult.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.commandresult import Commandresult # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestCommandresult(unittest.TestCase): 24 | """Commandresult unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testCommandresult(self): 33 | """Test Commandresult""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.commandresult.Commandresult() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_errorresponse.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.errorresponse import Errorresponse # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestErrorresponse(unittest.TestCase): 24 | """Errorresponse unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testErrorresponse(self): 33 | """Test Errorresponse""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.errorresponse.Errorresponse() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemuserput.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemuserput import Systemuserput # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemuserput(unittest.TestCase): 24 | """Systemuserput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuserput(self): 33 | """Test Systemuserput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemuserput.Systemuserput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_auth_input.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.auth_input import AuthInput # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestAuthInput(unittest.TestCase): 24 | """AuthInput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testAuthInput(self): 33 | """Test AuthInput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.auth_input.AuthInput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_directory.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.directory import Directory # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestDirectory(unittest.TestCase): 24 | """Directory unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testDirectory(self): 33 | """Test Directory""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.directory.Directory() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_graph_type.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.graph_type import GraphType # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestGraphType(unittest.TestCase): 24 | """GraphType unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testGraphType(self): 33 | """Test GraphType""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.graph_type.GraphType() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_group_type.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.group_type import GroupType # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestGroupType(unittest.TestCase): 24 | """GroupType unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testGroupType(self): 33 | """Test GroupType""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.group_type.GroupType() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_user_group.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.user_group import UserGroup # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestUserGroup(unittest.TestCase): 24 | """UserGroup unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testUserGroup(self): 33 | """Test UserGroup""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.user_group.UserGroup() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_organizations_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.api.organizations_api import OrganizationsApi # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestOrganizationsApi(unittest.TestCase): 24 | """OrganizationsApi unit test stubs""" 25 | 26 | def setUp(self): 27 | self.api = jcapiv1.api.organizations_api.OrganizationsApi() # noqa: E501 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def test_organization_list(self): 33 | """Test case for organization_list 34 | 35 | Get Organization Details # noqa: E501 36 | """ 37 | pass 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /jcapiv2/test/test_sshkeylist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.sshkeylist import Sshkeylist # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestSshkeylist(unittest.TestCase): 24 | """Sshkeylist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSshkeylist(self): 33 | """Test Sshkeylist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.sshkeylist.Sshkeylist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_systemuser.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.systemuser import Systemuser # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestSystemuser(unittest.TestCase): 24 | """Systemuser unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuser(self): 33 | """Test Systemuser""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.systemuser.Systemuser() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_duo_account.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.duo_account import DuoAccount # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestDuoAccount(unittest.TestCase): 24 | """DuoAccount unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testDuoAccount(self): 33 | """Test DuoAccount""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.duo_account.DuoAccount() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_job_details.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.job_details import JobDetails # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestJobDetails(unittest.TestCase): 24 | """JobDetails unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testJobDetails(self): 33 | """Test JobDetails""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.job_details.JobDetails() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_radiusserverput.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.radiusserverput import Radiusserverput # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestRadiusserverput(unittest.TestCase): 24 | """Radiusserverput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testRadiusserverput(self): 33 | """Test Radiusserverput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.radiusserverput.Radiusserverput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemuserslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemuserslist import Systemuserslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemuserslist(unittest.TestCase): 24 | """Systemuserslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuserslist(self): 33 | """Test Systemuserslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemuserslist.Systemuserslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/docs/PolicyTemplateWithDetails.md: -------------------------------------------------------------------------------- 1 | # PolicyTemplateWithDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **activation** | **str** | Requirements before the policy can be activated. | [optional] 7 | **behavior** | **str** | Specifics about the behavior of the policy. | [optional] 8 | **config_fields** | [**list[PolicyTemplateConfigField]**](PolicyTemplateConfigField.md) | An unordered list of all the fields that can be configured for this Policy Template. | [optional] 9 | **description** | **str** | The default description for the Policy. | [optional] 10 | **display_name** | **str** | The default display name for the Policy. | [optional] 11 | **id** | **str** | ObjectId uniquely identifying a Policy Template. | [optional] 12 | **name** | **str** | The unique name for the Policy Template. | [optional] 13 | **os_meta_family** | **str** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /jcapiv2/test/test_directories_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.api.directories_api import DirectoriesApi # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestDirectoriesApi(unittest.TestCase): 24 | """DirectoriesApi unit test stubs""" 25 | 26 | def setUp(self): 27 | self.api = jcapiv2.api.directories_api.DirectoriesApi() # noqa: E501 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def test_directories_list(self): 33 | """Test case for directories_list 34 | 35 | List All Directories # noqa: E501 36 | """ 37 | pass 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /jcapiv2/test/test_graph_object.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.graph_object import GraphObject # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestGraphObject(unittest.TestCase): 24 | """GraphObject unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testGraphObject(self): 33 | """Test GraphObject""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.graph_object.GraphObject() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_policy_value.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.policy_value import PolicyValue # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestPolicyValue(unittest.TestCase): 24 | """PolicyValue unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testPolicyValue(self): 33 | """Test PolicyValue""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.policy_value.PolicyValue() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_system_group.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.system_group import SystemGroup # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestSystemGroup(unittest.TestCase): 24 | """SystemGroup unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemGroup(self): 33 | """Test SystemGroup""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.system_group.SystemGroup() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_applicationslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.applicationslist import Applicationslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestApplicationslist(unittest.TestCase): 24 | """Applicationslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testApplicationslist(self): 33 | """Test Applicationslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.applicationslist.Applicationslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_radiusserverpost.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.radiusserverpost import Radiusserverpost # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestRadiusserverpost(unittest.TestCase): 24 | """Radiusserverpost unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testRadiusserverpost(self): 33 | """Test Radiusserverpost""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.radiusserverpost.Radiusserverpost() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemuserreturn.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemuserreturn import Systemuserreturn # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemuserreturn(unittest.TestCase): 24 | """Systemuserreturn unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuserreturn(self): 33 | """Test Systemuserreturn""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemuserreturn.Systemuserreturn() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_emailrequest.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.emailrequest import Emailrequest # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestEmailrequest(unittest.TestCase): 24 | """Emailrequest unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testEmailrequest(self): 33 | """Test Emailrequest""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.emailrequest.Emailrequest() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_knowledge_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.api.knowledge_api import KnowledgeApi # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestKnowledgeApi(unittest.TestCase): 24 | """KnowledgeApi unit test stubs""" 25 | 26 | def setUp(self): 27 | self.api = jcapiv2.api.knowledge_api.KnowledgeApi() # noqa: E501 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def test_knowledge_salesforce_list(self): 33 | """Test case for knowledge_salesforce_list 34 | 35 | List Knowledge Articles # noqa: E501 36 | """ 37 | pass 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /jcapiv2/test/test_mobileconfig.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.mobileconfig import Mobileconfig # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestMobileconfig(unittest.TestCase): 24 | """Mobileconfig unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testMobileconfig(self): 33 | """Test Mobileconfig""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.mobileconfig.Mobileconfig() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_systemfdekey.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.systemfdekey import Systemfdekey # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestSystemfdekey(unittest.TestCase): 24 | """Systemfdekey unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemfdekey(self): 33 | """Test Systemfdekey""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.systemfdekey.Systemfdekey() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/.swagger-codegen-ignore: -------------------------------------------------------------------------------- 1 | # Swagger Codegen Ignore 2 | # Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen 3 | 4 | # Use this file to prevent files from being overwritten by the generator. 5 | # The patterns follow closely to .gitignore or .dockerignore. 6 | 7 | # As an example, the C# client generator defines ApiClient.cs. 8 | # You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: 9 | #ApiClient.cs 10 | 11 | # You can match any string of characters against a directory, file or extension with a single asterisk (*): 12 | #foo/*/qux 13 | # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux 14 | 15 | # You can recursively match patterns against a directory, file or extension with a double asterisk (**): 16 | #foo/**/qux 17 | # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux 18 | 19 | # You can also negate patterns with an exclamation (!). 20 | # For example, you can ignore all files in a docs folder with the file extension .md: 21 | #docs/*.md 22 | # Then explicitly reverse the ignore rule for a single file: 23 | #!docs/README.md 24 | -------------------------------------------------------------------------------- /jcapiv1/test/test_system_sshd_params.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.system_sshd_params import SystemSshdParams # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemSshdParams(unittest.TestCase): 24 | """SystemSshdParams unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemSshdParams(self): 33 | """Test SystemSshdParams""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.system_sshd_params.SystemSshdParams() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/.swagger-codegen-ignore: -------------------------------------------------------------------------------- 1 | # Swagger Codegen Ignore 2 | # Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen 3 | 4 | # Use this file to prevent files from being overwritten by the generator. 5 | # The patterns follow closely to .gitignore or .dockerignore. 6 | 7 | # As an example, the C# client generator defines ApiClient.cs. 8 | # You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: 9 | #ApiClient.cs 10 | 11 | # You can match any string of characters against a directory, file or extension with a single asterisk (*): 12 | #foo/*/qux 13 | # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux 14 | 15 | # You can recursively match patterns against a directory, file or extension with a double asterisk (**): 16 | #foo/**/qux 17 | # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux 18 | 19 | # You can also negate patterns with an exclamation (!). 20 | # For example, you can ignore all files in a docs folder with the file extension .md: 21 | #docs/*.md 22 | # Then explicitly reverse the ignore rule for a single file: 23 | #!docs/README.md 24 | -------------------------------------------------------------------------------- /jcapiv2/test/test_gsuite_output.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.gsuite_output import GsuiteOutput # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestGsuiteOutput(unittest.TestCase): 24 | """GsuiteOutput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testGsuiteOutput(self): 33 | """Test GsuiteOutput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.gsuite_output.GsuiteOutput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_policy_result.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.policy_result import PolicyResult # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestPolicyResult(unittest.TestCase): 24 | """PolicyResult unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testPolicyResult(self): 33 | """Test PolicyResult""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.policy_result.PolicyResult() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_user_group_put.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.user_group_put import UserGroupPut # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestUserGroupPut(unittest.TestCase): 24 | """UserGroupPut unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testUserGroupPut(self): 33 | """Test UserGroupPut""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.user_group_put.UserGroupPut() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_workday_input.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.workday_input import WorkdayInput # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestWorkdayInput(unittest.TestCase): 24 | """WorkdayInput unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testWorkdayInput(self): 33 | """Test WorkdayInput""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.workday_input.WorkdayInput() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_application_config.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.application_config import ApplicationConfig # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestApplicationConfig(unittest.TestCase): 24 | """ApplicationConfig unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testApplicationConfig(self): 33 | """Test ApplicationConfig""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.application_config.ApplicationConfig() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_commandfilereturn.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.commandfilereturn import Commandfilereturn # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestCommandfilereturn(unittest.TestCase): 24 | """Commandfilereturn unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testCommandfilereturn(self): 33 | """Test Commandfilereturn""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.commandfilereturn.Commandfilereturn() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_organizationslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.organizationslist import Organizationslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestOrganizationslist(unittest.TestCase): 24 | """Organizationslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testOrganizationslist(self): 33 | """Test Organizationslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.organizationslist.Organizationslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_radiusserverslist.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.radiusserverslist import Radiusserverslist # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestRadiusserverslist(unittest.TestCase): 24 | """Radiusserverslist unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testRadiusserverslist(self): 33 | """Test Radiusserverslist""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.radiusserverslist.Radiusserverslist() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemuserbinding.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemuserbinding import Systemuserbinding # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemuserbinding(unittest.TestCase): 24 | """Systemuserbinding unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuserbinding(self): 33 | """Test Systemuserbinding""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemuserbinding.Systemuserbinding() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_systemuserputpost.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.systemuserputpost import Systemuserputpost # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestSystemuserputpost(unittest.TestCase): 24 | """Systemuserputpost unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testSystemuserputpost(self): 33 | """Test Systemuserputpost""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.systemuserputpost.Systemuserputpost() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv1/test/test_usersystembinding.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V1 API. This set of endpoints allows JumpCloud customers to manage commands, systems, & system users. # noqa: E501 7 | 8 | OpenAPI spec version: 1.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv1 19 | from jcapiv1.models.usersystembinding import Usersystembinding # noqa: E501 20 | from jcapiv1.rest import ApiException 21 | 22 | 23 | class TestUsersystembinding(unittest.TestCase): 24 | """Usersystembinding unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testUsersystembinding(self): 33 | """Test Usersystembinding""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv1.models.usersystembinding.Usersystembinding() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_administrator.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.administrator import Administrator # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestAdministrator(unittest.TestCase): 24 | """Administrator unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testAdministrator(self): 33 | """Test Administrator""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.administrator.Administrator() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_errorresponse.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.errorresponse import Errorresponse # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestErrorresponse(unittest.TestCase): 24 | """Errorresponse unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testErrorresponse(self): 33 | """Test Errorresponse""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.errorresponse.Errorresponse() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /jcapiv2/test/test_job_workresult.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | JumpCloud APIs 5 | 6 | JumpCloud's V2 API. This set of endpoints allows JumpCloud customers to manage objects, groupings and mappings and interact with the JumpCloud Graph. # noqa: E501 7 | 8 | OpenAPI spec version: 2.0 9 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git 11 | """ 12 | 13 | 14 | from __future__ import absolute_import 15 | 16 | import unittest 17 | 18 | import jcapiv2 19 | from jcapiv2.models.job_workresult import JobWorkresult # noqa: E501 20 | from jcapiv2.rest import ApiException 21 | 22 | 23 | class TestJobWorkresult(unittest.TestCase): 24 | """JobWorkresult unit test stubs""" 25 | 26 | def setUp(self): 27 | pass 28 | 29 | def tearDown(self): 30 | pass 31 | 32 | def testJobWorkresult(self): 33 | """Test JobWorkresult""" 34 | # FIXME: construct object with mandatory attributes with example values 35 | # model = jcapiv2.models.job_workresult.JobWorkresult() # noqa: E501 36 | pass 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | --------------------------------------------------------------------------------