-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from TheJumpCloud/OG-531_regenerate-for-duo
Regenerate SDKs
- Loading branch information
Showing
327 changed files
with
15,445 additions
and
3,245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>jcapiv1</name> | ||
<comment>Project jcapiv1 created by Buildship.</comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.buildship.core.gradleprojectbuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.buildship.core.gradleprojectnature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
# ApplicationTemplatesApi | ||
|
||
All URIs are relative to *https://console.jumpcloud.com/api* | ||
|
||
Method | HTTP request | Description | ||
------------- | ------------- | ------------- | ||
[**applicationTemplatesGet**](ApplicationTemplatesApi.md#applicationTemplatesGet) | **GET** /application-templates/{id} | Get an Application Template | ||
[**applicationTemplatesList**](ApplicationTemplatesApi.md#applicationTemplatesList) | **GET** /application-templates | List Application Templates | ||
|
||
|
||
<a name="applicationTemplatesGet"></a> | ||
# **applicationTemplatesGet** | ||
> Applicationtemplate applicationTemplatesGet(id, contentType, accept, fields, limit, skip, sort, filter, xOrgId) | ||
Get an Application Template | ||
|
||
The endpoint returns a specific SSO / SAML Application Template. #### Sample Request ``` curl -X GET https://console.jumpcloud.com/api/application-templates/{id} \\ -H 'Accept: application/json' \\ -H 'Content-Type: application/json' \\ -H 'x-api-key: {API_KEY}' ``` | ||
|
||
### Example | ||
```java | ||
// Import classes: | ||
//import io.swagger.client.ApiClient; | ||
//import io.swagger.client.ApiException; | ||
//import io.swagger.client.Configuration; | ||
//import io.swagger.client.auth.*; | ||
//import io.swagger.client.api.ApplicationTemplatesApi; | ||
|
||
ApiClient defaultClient = Configuration.getDefaultApiClient(); | ||
|
||
// Configure API key authorization: x-api-key | ||
ApiKeyAuth x-api-key = (ApiKeyAuth) defaultClient.getAuthentication("x-api-key"); | ||
x-api-key.setApiKey("YOUR API KEY"); | ||
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) | ||
//x-api-key.setApiKeyPrefix("Token"); | ||
|
||
ApplicationTemplatesApi apiInstance = new ApplicationTemplatesApi(); | ||
String id = "id_example"; // String | | ||
String contentType = "application/json"; // String | | ||
String accept = "application/json"; // String | | ||
String fields = "fields_example"; // String | The comma separated fields included in the returned records. If omitted the default list of fields will be returned. | ||
Integer limit = 56; // Integer | The number of records to return at once. | ||
Integer skip = 56; // Integer | The offset into the records to return. | ||
String sort = "The comma separated fields used to sort the collection. Default sort is ascending, prefix with - to sort descending."; // String | | ||
String filter = "filter_example"; // String | A filter to apply to the query. | ||
String xOrgId = ""; // String | | ||
try { | ||
Applicationtemplate result = apiInstance.applicationTemplatesGet(id, contentType, accept, fields, limit, skip, sort, filter, xOrgId); | ||
System.out.println(result); | ||
} catch (ApiException e) { | ||
System.err.println("Exception when calling ApplicationTemplatesApi#applicationTemplatesGet"); | ||
e.printStackTrace(); | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
Name | Type | Description | Notes | ||
------------- | ------------- | ------------- | ------------- | ||
**id** | **String**| | | ||
**contentType** | **String**| | [default to application/json] | ||
**accept** | **String**| | [default to application/json] | ||
**fields** | **String**| The comma separated fields included in the returned records. If omitted the default list of fields will be returned. | [optional] | ||
**limit** | **Integer**| The number of records to return at once. | [optional] | ||
**skip** | **Integer**| The offset into the records to return. | [optional] | ||
**sort** | **String**| | [optional] [default to The comma separated fields used to sort the collection. Default sort is ascending, prefix with - to sort descending.] | ||
**filter** | **String**| A filter to apply to the query. | [optional] | ||
**xOrgId** | **String**| | [optional] [default to ] | ||
|
||
### Return type | ||
|
||
[**Applicationtemplate**](Applicationtemplate.md) | ||
|
||
### Authorization | ||
|
||
[x-api-key](../README.md#x-api-key) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: application/json | ||
- **Accept**: application/json | ||
|
||
<a name="applicationTemplatesList"></a> | ||
# **applicationTemplatesList** | ||
> Applicationtemplateslist applicationTemplatesList(contentType, accept, fields, limit, skip, sort, filter, xOrgId) | ||
List Application Templates | ||
|
||
The endpoint returns all the SSO / SAML Application Templates. #### Sample Request ``` curl -X GET https://console.jumpcloud.com/api/application-templates \\ -H 'Accept: application/json' \\ -H 'Content-Type: application/json' \\ -H 'x-api-key: {API_KEY}' ``` | ||
|
||
### Example | ||
```java | ||
// Import classes: | ||
//import io.swagger.client.ApiClient; | ||
//import io.swagger.client.ApiException; | ||
//import io.swagger.client.Configuration; | ||
//import io.swagger.client.auth.*; | ||
//import io.swagger.client.api.ApplicationTemplatesApi; | ||
|
||
ApiClient defaultClient = Configuration.getDefaultApiClient(); | ||
|
||
// Configure API key authorization: x-api-key | ||
ApiKeyAuth x-api-key = (ApiKeyAuth) defaultClient.getAuthentication("x-api-key"); | ||
x-api-key.setApiKey("YOUR API KEY"); | ||
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) | ||
//x-api-key.setApiKeyPrefix("Token"); | ||
|
||
ApplicationTemplatesApi apiInstance = new ApplicationTemplatesApi(); | ||
String contentType = "application/json"; // String | | ||
String accept = "application/json"; // String | | ||
String fields = "fields_example"; // String | The comma separated fields included in the returned records. If omitted the default list of fields will be returned. | ||
Integer limit = 56; // Integer | The number of records to return at once. | ||
Integer skip = 56; // Integer | The offset into the records to return. | ||
String sort = "The comma separated fields used to sort the collection. Default sort is ascending, prefix with - to sort descending."; // String | | ||
String filter = "filter_example"; // String | A filter to apply to the query. | ||
String xOrgId = ""; // String | | ||
try { | ||
Applicationtemplateslist result = apiInstance.applicationTemplatesList(contentType, accept, fields, limit, skip, sort, filter, xOrgId); | ||
System.out.println(result); | ||
} catch (ApiException e) { | ||
System.err.println("Exception when calling ApplicationTemplatesApi#applicationTemplatesList"); | ||
e.printStackTrace(); | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
Name | Type | Description | Notes | ||
------------- | ------------- | ------------- | ------------- | ||
**contentType** | **String**| | [default to application/json] | ||
**accept** | **String**| | [default to application/json] | ||
**fields** | **String**| The comma separated fields included in the returned records. If omitted the default list of fields will be returned. | [optional] | ||
**limit** | **Integer**| The number of records to return at once. | [optional] | ||
**skip** | **Integer**| The offset into the records to return. | [optional] | ||
**sort** | **String**| | [optional] [default to The comma separated fields used to sort the collection. Default sort is ascending, prefix with - to sort descending.] | ||
**filter** | **String**| A filter to apply to the query. | [optional] | ||
**xOrgId** | **String**| | [optional] [default to ] | ||
|
||
### Return type | ||
|
||
[**Applicationtemplateslist**](Applicationtemplateslist.md) | ||
|
||
### Authorization | ||
|
||
[x-api-key](../README.md#x-api-key) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: application/json | ||
- **Accept**: application/json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.