swagger_aem 2.5.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -1
  3. data/Gemfile.lock +47 -46
  4. data/README.md +20 -9
  5. data/Rakefile +2 -0
  6. data/docs/ConsoleApi.md +107 -58
  7. data/docs/CqApi.md +14 -13
  8. data/docs/CrxApi.md +60 -60
  9. data/docs/CustomApi.md +27 -24
  10. data/docs/GraniteApi.md +75 -0
  11. data/docs/InlineObject.md +17 -0
  12. data/docs/InlineObject1.md +17 -0
  13. data/docs/InlineObject2.md +17 -0
  14. data/docs/InlineObject3.md +17 -0
  15. data/docs/InlineObject4.md +21 -0
  16. data/docs/InlineObject5.md +19 -0
  17. data/docs/InstallStatus.md +9 -0
  18. data/docs/InstallStatusStatus.md +11 -1
  19. data/docs/KeystoreChainItems.md +13 -0
  20. data/docs/KeystoreInfo.md +11 -1
  21. data/docs/KeystoreItems.md +13 -0
  22. data/docs/SamlConfigurationInfo.md +15 -1
  23. data/docs/SamlConfigurationProperties.md +56 -24
  24. data/docs/SamlConfigurationPropertyItemsArray.md +16 -2
  25. data/docs/SamlConfigurationPropertyItemsBoolean.md +17 -3
  26. data/docs/SamlConfigurationPropertyItemsLong.md +17 -3
  27. data/docs/SamlConfigurationPropertyItemsString.md +17 -3
  28. data/docs/SlingApi.md +482 -445
  29. data/docs/TruststoreInfo.md +11 -1
  30. data/docs/TruststoreItems.md +15 -0
  31. data/git_push.sh +11 -8
  32. data/lib/swagger_aem.rb +10 -3
  33. data/lib/swagger_aem/api/console_api.rb +160 -91
  34. data/lib/swagger_aem/api/cq_api.rb +49 -41
  35. data/lib/swagger_aem/api/crx_api.rb +170 -135
  36. data/lib/swagger_aem/api/custom_api.rb +68 -56
  37. data/lib/swagger_aem/api/granite_api.rb +124 -0
  38. data/lib/swagger_aem/api/sling_api.rb +900 -720
  39. data/lib/swagger_aem/api_client.rb +53 -54
  40. data/lib/swagger_aem/api_error.rb +22 -3
  41. data/lib/swagger_aem/configuration.rb +49 -10
  42. data/lib/swagger_aem/models/inline_object.rb +206 -0
  43. data/lib/swagger_aem/models/inline_object1.rb +206 -0
  44. data/lib/swagger_aem/models/inline_object2.rb +206 -0
  45. data/lib/swagger_aem/models/inline_object3.rb +206 -0
  46. data/lib/swagger_aem/models/inline_object4.rb +224 -0
  47. data/lib/swagger_aem/models/inline_object5.rb +215 -0
  48. data/lib/swagger_aem/models/install_status.rb +43 -25
  49. data/lib/swagger_aem/models/install_status_status.rb +46 -28
  50. data/lib/swagger_aem/models/keystore_chain_items.rb +50 -32
  51. data/lib/swagger_aem/models/keystore_info.rb +45 -27
  52. data/lib/swagger_aem/models/keystore_items.rb +49 -31
  53. data/lib/swagger_aem/models/saml_configuration_info.rb +49 -31
  54. data/lib/swagger_aem/models/saml_configuration_properties.rb +114 -168
  55. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +50 -32
  56. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +56 -38
  57. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +56 -38
  58. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +56 -38
  59. data/lib/swagger_aem/models/truststore_info.rb +45 -27
  60. data/lib/swagger_aem/models/truststore_items.rb +54 -36
  61. data/lib/swagger_aem/version.rb +4 -4
  62. data/spec/api/console_api_spec.rb +17 -16
  63. data/spec/api/cq_api_spec.rb +6 -10
  64. data/spec/api/crx_api_spec.rb +11 -25
  65. data/spec/api/custom_api_spec.rb +7 -13
  66. data/spec/api/granite_api_spec.rb +52 -0
  67. data/spec/api/sling_api_spec.rb +32 -88
  68. data/spec/api_client_spec.rb +37 -37
  69. data/spec/configuration_spec.rb +11 -11
  70. data/spec/models/inline_object1_spec.rb +41 -0
  71. data/spec/models/inline_object2_spec.rb +41 -0
  72. data/spec/models/inline_object3_spec.rb +41 -0
  73. data/spec/models/inline_object4_spec.rb +53 -0
  74. data/spec/models/inline_object5_spec.rb +47 -0
  75. data/spec/models/inline_object_spec.rb +41 -0
  76. data/spec/models/install_status_spec.rb +5 -6
  77. data/spec/models/install_status_status_spec.rb +6 -7
  78. data/spec/models/keystore_chain_items_spec.rb +9 -10
  79. data/spec/models/keystore_info_spec.rb +6 -7
  80. data/spec/models/keystore_items_spec.rb +9 -10
  81. data/spec/models/saml_configuration_info_spec.rb +10 -11
  82. data/spec/models/saml_configuration_properties_spec.rb +28 -29
  83. data/spec/models/saml_configuration_property_items_array_spec.rb +10 -11
  84. data/spec/models/saml_configuration_property_items_boolean_spec.rb +11 -12
  85. data/spec/models/saml_configuration_property_items_long_spec.rb +11 -12
  86. data/spec/models/saml_configuration_property_items_string_spec.rb +11 -12
  87. data/spec/models/truststore_info_spec.rb +6 -7
  88. data/spec/models/truststore_items_spec.rb +11 -12
  89. data/spec/spec_helper.rb +3 -3
  90. data/swagger_aem.gemspec +8 -14
  91. metadata +36 -128
@@ -0,0 +1,75 @@
1
+ # SwaggerAemClient::GraniteApi
2
+
3
+ All URIs are relative to *http://localhost*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**ssl_setup**](GraniteApi.md#ssl_setup) | **POST** /libs/granite/security/post/sslSetup.html |
8
+
9
+
10
+
11
+ ## ssl_setup
12
+
13
+ > String ssl_setup(keystore_password, keystore_password_confirm, truststore_password, truststore_password_confirm, https_hostname, https_port, opts)
14
+
15
+
16
+
17
+ ### Example
18
+
19
+ ```ruby
20
+ # load the gem
21
+ require 'swagger_aem'
22
+ # setup authorization
23
+ SwaggerAemClient.configure do |config|
24
+ # Configure HTTP basic authorization: aemAuth
25
+ config.username = 'YOUR USERNAME'
26
+ config.password = 'YOUR PASSWORD'
27
+ end
28
+
29
+ api_instance = SwaggerAemClient::GraniteApi.new
30
+ keystore_password = 'keystore_password_example' # String |
31
+ keystore_password_confirm = 'keystore_password_confirm_example' # String |
32
+ truststore_password = 'truststore_password_example' # String |
33
+ truststore_password_confirm = 'truststore_password_confirm_example' # String |
34
+ https_hostname = 'https_hostname_example' # String |
35
+ https_port = 'https_port_example' # String |
36
+ opts = {
37
+ privatekey_file: File.new('/path/to/file'), # File |
38
+ certificate_file: File.new('/path/to/file') # File |
39
+ }
40
+
41
+ begin
42
+ result = api_instance.ssl_setup(keystore_password, keystore_password_confirm, truststore_password, truststore_password_confirm, https_hostname, https_port, opts)
43
+ p result
44
+ rescue SwaggerAemClient::ApiError => e
45
+ puts "Exception when calling GraniteApi->ssl_setup: #{e}"
46
+ end
47
+ ```
48
+
49
+ ### Parameters
50
+
51
+
52
+ Name | Type | Description | Notes
53
+ ------------- | ------------- | ------------- | -------------
54
+ **keystore_password** | **String**| |
55
+ **keystore_password_confirm** | **String**| |
56
+ **truststore_password** | **String**| |
57
+ **truststore_password_confirm** | **String**| |
58
+ **https_hostname** | **String**| |
59
+ **https_port** | **String**| |
60
+ **privatekey_file** | **File**| | [optional]
61
+ **certificate_file** | **File**| | [optional]
62
+
63
+ ### Return type
64
+
65
+ **String**
66
+
67
+ ### Authorization
68
+
69
+ [aemAuth](../README.md#aemAuth)
70
+
71
+ ### HTTP request headers
72
+
73
+ - **Content-Type**: multipart/form-data
74
+ - **Accept**: text/plain
75
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **file** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject.new(file: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject1
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **package** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject1.new(package: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject2
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **certificate** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject2.new(certificate: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject3
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **truststore_p12** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject3.new(truststore_p12: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,21 @@
1
+ # SwaggerAemClient::InlineObject4
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **cert_chain** | **File** | | [optional]
8
+ **pk** | **File** | | [optional]
9
+ **key_store** | **File** | | [optional]
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'SwaggerAemClient'
15
+
16
+ instance = SwaggerAemClient::InlineObject4.new(cert_chain: null,
17
+ pk: null,
18
+ key_store: null)
19
+ ```
20
+
21
+
@@ -0,0 +1,19 @@
1
+ # SwaggerAemClient::InlineObject5
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **privatekey_file** | **File** | | [optional]
8
+ **certificate_file** | **File** | | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'SwaggerAemClient'
14
+
15
+ instance = SwaggerAemClient::InlineObject5.new(privatekey_file: null,
16
+ certificate_file: null)
17
+ ```
18
+
19
+
@@ -1,8 +1,17 @@
1
1
  # SwaggerAemClient::InstallStatus
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **status** | [**InstallStatusStatus**](InstallStatusStatus.md) | | [optional]
7
8
 
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InstallStatus.new(status: null)
15
+ ```
16
+
8
17
 
@@ -1,9 +1,19 @@
1
1
  # SwaggerAemClient::InstallStatusStatus
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
- **finished** | **BOOLEAN** | | [optional]
7
+ **finished** | **Boolean** | | [optional]
7
8
  **item_count** | **Integer** | | [optional]
8
9
 
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'SwaggerAemClient'
14
+
15
+ instance = SwaggerAemClient::InstallStatusStatus.new(finished: null,
16
+ item_count: null)
17
+ ```
18
+
9
19
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::KeystoreChainItems
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **subject** | **String** | e.g. \"CN=localhost\" | [optional]
@@ -9,4 +10,16 @@ Name | Type | Description | Notes
9
10
  **not_after** | **String** | e.g. \"Sun Jun 30 23:59:50 AEST 2019\" | [optional]
10
11
  **serial_number** | **Integer** | 18165099476682912368 | [optional]
11
12
 
13
+ ## Code Sample
14
+
15
+ ```ruby
16
+ require 'SwaggerAemClient'
17
+
18
+ instance = SwaggerAemClient::KeystoreChainItems.new(subject: null,
19
+ issuer: null,
20
+ not_before: null,
21
+ not_after: null,
22
+ serial_number: null)
23
+ ```
24
+
12
25
 
@@ -1,9 +1,19 @@
1
1
  # SwaggerAemClient::KeystoreInfo
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **aliases** | [**Array<KeystoreItems>**](KeystoreItems.md) | | [optional]
7
- **exists** | **BOOLEAN** | False if truststore don't exist | [optional]
8
+ **exists** | **Boolean** | False if truststore don't exist | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'SwaggerAemClient'
14
+
15
+ instance = SwaggerAemClient::KeystoreInfo.new(aliases: null,
16
+ exists: null)
17
+ ```
8
18
 
9
19
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::KeystoreItems
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **_alias** | **String** | Keystore alias name | [optional]
@@ -9,4 +10,16 @@ Name | Type | Description | Notes
9
10
  **format** | **String** | e.g. \"PKCS#8\" | [optional]
10
11
  **chain** | [**Array<KeystoreChainItems>**](KeystoreChainItems.md) | | [optional]
11
12
 
13
+ ## Code Sample
14
+
15
+ ```ruby
16
+ require 'SwaggerAemClient'
17
+
18
+ instance = SwaggerAemClient::KeystoreItems.new(_alias: null,
19
+ entry_type: null,
20
+ algorithm: null,
21
+ format: null,
22
+ chain: null)
23
+ ```
24
+
12
25
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::SamlConfigurationInfo
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **pid** | **String** | Persistent Identity (PID) | [optional]
@@ -8,6 +9,19 @@ Name | Type | Description | Notes
8
9
  **description** | **String** | Title | [optional]
9
10
  **bundle_location** | **String** | needed for configuration binding | [optional]
10
11
  **service_location** | **String** | needed for configuraiton binding | [optional]
11
- **properties** | **Object** | | [optional]
12
+ **properties** | [**SamlConfigurationProperties**](SamlConfigurationProperties.md) | | [optional]
13
+
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationInfo.new(pid: null,
20
+ title: null,
21
+ description: null,
22
+ bundle_location: null,
23
+ service_location: null,
24
+ properties: null)
25
+ ```
12
26
 
13
27
 
@@ -1,31 +1,63 @@
1
1
  # SwaggerAemClient::SamlConfigurationProperties
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
- **path** | [**Array<SamlConfigurationPropertyItemsArray>**](SamlConfigurationPropertyItemsArray.md) | Repository path for which this authentication handler should be used by Sling. If this is empty, the authentication handler will be disabled. | [optional]
7
- **service_ranking** | [**Array<SamlConfigurationPropertyItemsLong>**](SamlConfigurationPropertyItemsLong.md) | OSGi Framework Service Ranking value to indicate the order in which to call this service. This is an int value where higher values designate higher precedence. Default value is 0. | [optional]
8
- **idp_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | URL of the IDP where the SAML Authentication Request should be sent to. If this property is empty the authentication handler is disabled. (idpUrl) | [optional]
9
- **idp_cert_alias** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The alias of the IdP's certificate in the global truststore. If this property is empty the authentication handler is disabled. | [optional]
10
- **idp_http_redirect** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Use an HTTP Redirect to the IDP URL instead of sending an AuthnRequest-message to request credentials. Use this for IDP initiated authentication. | [optional]
11
- **service_provider_entity_id** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | ID which uniquely identifies this service provider with the identity provider. If this property is empty the authentication handler is disabled. | [optional]
12
- **assertion_consumer_service_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The (optional) AssertionConsumerServiceURL attribute of an Authn request specifies the location to which a <Response> message MUST be sent to the requester. | [optional]
13
- **sp_private_key_alias** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The alias of the SP's private key in the key-store of the 'authentication-service' system user. If this property is empty the handler will not be able to sign or decrypt messages. | [optional]
14
- **key_store_password** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The password of the key-store of the 'authentication-service' system user. | [optional]
15
- **default_redirect_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The default location to redirect to after successful authentication. | [optional]
16
- **user_id_attribute** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The name of the attribute containing the user ID used to authenticate and create the user in the CRX repository. Leave empty to use the Subject:NameId. | [optional]
17
- **use_encryption** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not this authentication handler expects encrypted SAML assertions. If this is enabled the SP's private key must be provided in the key-store of the 'authentication-service' system user (see SP Private Key Alias above). | [optional]
18
- **create_user** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not to autocreate nonexisting users in the repository. | [optional]
19
- **add_group_memberships** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not a user should be automatically added to CRX groups after successful authentication. | [optional]
20
- **group_membership_attribute** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The name of the attribute containing a list of CRX groups this user should be added to. | [optional]
21
- **default_groups** | [**Array<SamlConfigurationPropertyItemsArray>**](SamlConfigurationPropertyItemsArray.md) | A list of default CRX groups users are added to after successful authentication. | [optional]
22
- **name_id_format** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The value of the NameIDPolicy format parameter to send in the AuthnRequest message. | [optional]
23
- **synchronize_attributes** | [**Array<SamlConfigurationPropertyItemsArray>**](SamlConfigurationPropertyItemsArray.md) | A list of attribute mappings (in the format \\attributename=path/relative/to/user/node\\) which should be stored in the repository on user-synchronization. | [optional]
24
- **handle_logout** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not logout (dropCredentials) requests will be processed by this handler. | [optional]
25
- **logout_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | URL of the IDP where the SAML Logout Request should be sent to. If this property is empty the authentication handler won't handle logouts. | [optional]
26
- **clock_tolerance** | [**Array<SamlConfigurationPropertyItemsLong>**](SamlConfigurationPropertyItemsLong.md) | Time tolerance in seconds to compensate clock skew between IDP and SP when validating Assertions. | [optional]
27
- **digest_method** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The digest algorithm to use when signing a SAML message. | [optional]
28
- **signature_method** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The signature algorithm to use when signing a SAML message. | [optional]
29
- **user_intermediate_path** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | User intermediate path to store created users. | [optional]
7
+ **path** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
8
+ **service_ranking** | [**SamlConfigurationPropertyItemsLong**](SamlConfigurationPropertyItemsLong.md) | | [optional]
9
+ **idp_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
10
+ **idp_cert_alias** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
11
+ **idp_http_redirect** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
12
+ **service_provider_entity_id** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
13
+ **assertion_consumer_service_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
14
+ **sp_private_key_alias** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
15
+ **key_store_password** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
16
+ **default_redirect_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
17
+ **user_id_attribute** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
18
+ **use_encryption** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
19
+ **create_user** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
20
+ **add_group_memberships** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
21
+ **group_membership_attribute** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
22
+ **default_groups** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
23
+ **name_id_format** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
24
+ **synchronize_attributes** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
25
+ **handle_logout** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
26
+ **logout_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
27
+ **clock_tolerance** | [**SamlConfigurationPropertyItemsLong**](SamlConfigurationPropertyItemsLong.md) | | [optional]
28
+ **digest_method** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
29
+ **signature_method** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
30
+ **user_intermediate_path** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
31
+
32
+ ## Code Sample
33
+
34
+ ```ruby
35
+ require 'SwaggerAemClient'
36
+
37
+ instance = SwaggerAemClient::SamlConfigurationProperties.new(path: null,
38
+ service_ranking: null,
39
+ idp_url: null,
40
+ idp_cert_alias: null,
41
+ idp_http_redirect: null,
42
+ service_provider_entity_id: null,
43
+ assertion_consumer_service_url: null,
44
+ sp_private_key_alias: null,
45
+ key_store_password: null,
46
+ default_redirect_url: null,
47
+ user_id_attribute: null,
48
+ use_encryption: null,
49
+ create_user: null,
50
+ add_group_memberships: null,
51
+ group_membership_attribute: null,
52
+ default_groups: null,
53
+ name_id_format: null,
54
+ synchronize_attributes: null,
55
+ handle_logout: null,
56
+ logout_url: null,
57
+ clock_tolerance: null,
58
+ digest_method: null,
59
+ signature_method: null,
60
+ user_intermediate_path: null)
61
+ ```
30
62
 
31
63
 
@@ -1,13 +1,27 @@
1
1
  # SwaggerAemClient::SamlConfigurationPropertyItemsArray
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **name** | **String** | property name | [optional]
7
- **optional** | **BOOLEAN** | True if optional | [optional]
8
- **is_set** | **BOOLEAN** | True if property is set | [optional]
8
+ **optional** | **Boolean** | True if optional | [optional]
9
+ **is_set** | **Boolean** | True if property is set | [optional]
9
10
  **type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
10
11
  **values** | **Array<String>** | Property value | [optional]
11
12
  **description** | **String** | Property description | [optional]
12
13
 
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationPropertyItemsArray.new(name: null,
20
+ optional: null,
21
+ is_set: null,
22
+ type: null,
23
+ values: null,
24
+ description: null)
25
+ ```
26
+
13
27