swagger_aem 0.9.11 → 0.9.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6089dffeb3fbe8cb24c7fb04b3c1029adee7e3b
4
- data.tar.gz: 5926f659388b1c613f11d16a8311587187a5c7fa
3
+ metadata.gz: b6f78ad048a16090e9c19c92996507067b6ee835
4
+ data.tar.gz: 6984ccf1917d73864be00ae0d8a6f034f5be8d3a
5
5
  SHA512:
6
- metadata.gz: eea0bce38d11d6d10ead967eb9ad5a91cca6fa3e52bea3d01308647a16764002c3ba168aa940452242b045075436205d7ee41b8d2f7a133503d068a5d530a74e
7
- data.tar.gz: 64b6d315cad076f4863a738e22fb35b6c68e5c42fc3eee6d2897a6c1722bff3b71b806118fc2a973574852389d566e5335ef51d765724cbf886d68105e83cfb3
6
+ metadata.gz: 2a5b86953ac6908ef7f79a61501bf1b09e758b1daa9e46545e8623cf65743869cc27a06bef68e7c5a2199d05cdc1c39b7f973bb9e517c6a7d49d97057afa7a9d
7
+ data.tar.gz: c3c6e49c6f28e1fb9ea3852d9747348edc4cdb68bd3b9025b5350b51a966b9383c113c8a0162f1104dd99d2b5d11155ad06e8d68d3cf4a7dbcd3b02f4cdc2bb3
data/README.md CHANGED
@@ -6,8 +6,8 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
6
6
 
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
- - API version: 1.1.11
10
- - Package version: 0.9.11
9
+ - API version: 1.1.13
10
+ - Package version: 0.9.12
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
13
13
 
@@ -24,15 +24,15 @@ gem build swagger_aem.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./swagger_aem-0.9.11.gem
27
+ gem install ./swagger_aem-0.9.12.gem
28
28
  ```
29
- (for development, run `gem install --dev ./swagger_aem-0.9.11.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./swagger_aem-0.9.12.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'swagger_aem', '~> 0.9.11'
35
+ gem 'swagger_aem', '~> 0.9.12'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -92,6 +92,7 @@ Class | Method | HTTP request | Description
92
92
  *SwaggerAemClient::CrxApi* | [**post_package_update**](docs/CrxApi.md#post_package_update) | **POST** /crx/packmgr/update.jsp |
93
93
  *SwaggerAemClient::CrxApi* | [**post_set_password**](docs/CrxApi.md#post_set_password) | **POST** /crx/explorer/ui/setpassword.jsp |
94
94
  *SwaggerAemClient::CustomApi* | [**get_aem_health_check**](docs/CustomApi.md#get_aem_health_check) | **GET** /system/health |
95
+ *SwaggerAemClient::CustomApi* | [**post_config_aem_health_check_servlet**](docs/CustomApi.md#post_config_aem_health_check_servlet) | **POST** /apps/system/config.{runmode}/com.shinesolutions.healthcheck.hc.impl.ActiveBundleHealthCheck |
95
96
  *SwaggerAemClient::CustomApi* | [**post_config_aem_password_reset**](docs/CustomApi.md#post_config_aem_password_reset) | **POST** /apps/system/config.{runmode}/com.shinesolutions.aem.passwordreset.Activator |
96
97
  *SwaggerAemClient::SlingApi* | [**delete_agent**](docs/SlingApi.md#delete_agent) | **DELETE** /etc/replication/agents.{runmode}/{name} |
97
98
  *SwaggerAemClient::SlingApi* | [**delete_node**](docs/SlingApi.md#delete_node) | **DELETE** /{path}/{name} |
@@ -5,6 +5,7 @@ All URIs are relative to *http://localhost/*
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
7
  [**get_aem_health_check**](CustomApi.md#get_aem_health_check) | **GET** /system/health |
8
+ [**post_config_aem_health_check_servlet**](CustomApi.md#post_config_aem_health_check_servlet) | **POST** /apps/system/config.{runmode}/com.shinesolutions.healthcheck.hc.impl.ActiveBundleHealthCheck |
8
9
  [**post_config_aem_password_reset**](CustomApi.md#post_config_aem_password_reset) | **POST** /apps/system/config.{runmode}/com.shinesolutions.aem.passwordreset.Activator |
9
10
 
10
11
 
@@ -61,6 +62,61 @@ Name | Type | Description | Notes
61
62
 
62
63
 
63
64
 
65
+ # **post_config_aem_health_check_servlet**
66
+ > post_config_aem_health_check_servlet(runmode, opts)
67
+
68
+
69
+
70
+ ### Example
71
+ ```ruby
72
+ # load the gem
73
+ require 'swagger_aem'
74
+ # setup authorization
75
+ SwaggerAemClient.configure do |config|
76
+ # Configure HTTP basic authorization: aemAuth
77
+ config.username = 'YOUR USERNAME'
78
+ config.password = 'YOUR PASSWORD'
79
+ end
80
+
81
+ api_instance = SwaggerAemClient::CustomApi.new
82
+
83
+ runmode = "runmode_example" # String |
84
+
85
+ opts = {
86
+ bundles_ignored: ["bundles_ignored_example"], # Array<String> |
87
+ bundles_ignored_type_hint: "bundles_ignored_type_hint_example" # String |
88
+ }
89
+
90
+ begin
91
+ api_instance.post_config_aem_health_check_servlet(runmode, opts)
92
+ rescue SwaggerAemClient::ApiError => e
93
+ puts "Exception when calling CustomApi->post_config_aem_health_check_servlet: #{e}"
94
+ end
95
+ ```
96
+
97
+ ### Parameters
98
+
99
+ Name | Type | Description | Notes
100
+ ------------- | ------------- | ------------- | -------------
101
+ **runmode** | **String**| |
102
+ **bundles_ignored** | [**Array&lt;String&gt;**](String.md)| | [optional]
103
+ **bundles_ignored_type_hint** | **String**| | [optional]
104
+
105
+ ### Return type
106
+
107
+ nil (empty response body)
108
+
109
+ ### Authorization
110
+
111
+ [aemAuth](../README.md#aemAuth)
112
+
113
+ ### HTTP request headers
114
+
115
+ - **Content-Type**: Not defined
116
+ - **Accept**: text/plain
117
+
118
+
119
+
64
120
  # **post_config_aem_password_reset**
65
121
  > post_config_aem_password_reset(runmode, opts)
66
122
 
@@ -416,32 +416,54 @@ runmode = "runmode_example" # String |
416
416
  name = "name_example" # String |
417
417
 
418
418
  opts = {
419
- jcrprimary_type: "jcrprimary_type_example", # String |
420
419
  jcrcontentcqname: "jcrcontentcqname_example", # String |
421
- jcrcontentjcrtitle: "jcrcontentjcrtitle_example", # String |
420
+ jcrcontentcqtemplate: "jcrcontentcqtemplate_example", # String |
421
+ jcrcontentenabled: true, # BOOLEAN |
422
422
  jcrcontentjcrdescription: "jcrcontentjcrdescription_example", # String |
423
- jcrcontentslingresource_type: "jcrcontentslingresource_type_example", # String |
424
- jcrcontenttransport_uri: "jcrcontenttransport_uri_example", # String |
425
- jcrcontenttransport_user: "jcrcontenttransport_user_example", # String |
426
- jcrcontenttransport_password: "jcrcontenttransport_password_example", # String |
423
+ jcrcontentjcrlast_modified: "jcrcontentjcrlast_modified_example", # String |
424
+ jcrcontentjcrlast_modified_by: "jcrcontentjcrlast_modified_by_example", # String |
425
+ jcrcontentjcrmixin_types: "jcrcontentjcrmixin_types_example", # String |
426
+ jcrcontentjcrtitle: "jcrcontentjcrtitle_example", # String |
427
427
  jcrcontentlog_level: "jcrcontentlog_level_example", # String |
428
+ jcrcontentno_status_update: true, # BOOLEAN |
428
429
  jcrcontentno_versioning: true, # BOOLEAN |
430
+ jcrcontentprotocol_connect_timeout: 3.4, # Float |
431
+ jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
432
+ jcrcontentprotocol_http_expired: "jcrcontentprotocol_http_expired_example", # String |
429
433
  jcrcontentprotocol_http_headers: ["jcrcontentprotocol_http_headers_example"], # Array<String> |
430
434
  jcrcontentprotocol_http_headers_type_hint: "jcrcontentprotocol_http_headers_type_hint_example", # String |
431
435
  jcrcontentprotocol_http_method: "jcrcontentprotocol_http_method_example", # String |
436
+ jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
437
+ jcrcontentprotocol_interface: "jcrcontentprotocol_interface_example", # String |
438
+ jcrcontentprotocol_socket_timeout: 3.4, # Float |
439
+ jcrcontentprotocol_version: "jcrcontentprotocol_version_example", # String |
440
+ jcrcontentproxy_ntlm_domain: "jcrcontentproxy_ntlm_domain_example", # String |
441
+ jcrcontentproxy_ntlm_host: "jcrcontentproxy_ntlm_host_example", # String |
442
+ jcrcontentproxy_host: "jcrcontentproxy_host_example", # String |
443
+ jcrcontentproxy_password: "jcrcontentproxy_password_example", # String |
444
+ jcrcontentproxy_port: 3.4, # Float |
445
+ jcrcontentproxy_user: "jcrcontentproxy_user_example", # String |
446
+ jcrcontentqueue_batch_max_size: 3.4, # Float |
447
+ jcrcontentqueue_batch_mode: "jcrcontentqueue_batch_mode_example", # String |
448
+ jcrcontentqueue_batch_wait_time: 3.4, # Float |
432
449
  jcrcontentretry_delay: "jcrcontentretry_delay_example", # String |
433
- jcrcontentserialization_type: "jcrcontentserialization_type_example", # String |
434
- jcrcontentjcrmixin_types: "jcrcontentjcrmixin_types_example", # String |
435
- jcrcontenttrigger_receive: true, # BOOLEAN |
436
- jcrcontenttrigger_specific: true, # BOOLEAN |
437
- jcrcontentcqtemplate: "jcrcontentcqtemplate_example", # String |
438
- jcrcontentenabled: true, # BOOLEAN |
439
450
  jcrcontentreverse_replication: true, # BOOLEAN |
440
- operation: "operation_example", # String |
451
+ jcrcontentserialization_type: "jcrcontentserialization_type_example", # String |
452
+ jcrcontentslingresource_type: "jcrcontentslingresource_type_example", # String |
453
+ jcrcontentssl: "jcrcontentssl_example", # String |
454
+ jcrcontenttransport_ntlm_domain: "jcrcontenttransport_ntlm_domain_example", # String |
455
+ jcrcontenttransport_ntlm_host: "jcrcontenttransport_ntlm_host_example", # String |
456
+ jcrcontenttransport_password: "jcrcontenttransport_password_example", # String |
457
+ jcrcontenttransport_uri: "jcrcontenttransport_uri_example", # String |
458
+ jcrcontenttransport_user: "jcrcontenttransport_user_example", # String |
441
459
  jcrcontenttrigger_distribute: true, # BOOLEAN |
442
460
  jcrcontenttrigger_modified: true, # BOOLEAN |
461
+ jcrcontenttrigger_on_off_time: true, # BOOLEAN |
462
+ jcrcontenttrigger_receive: true, # BOOLEAN |
463
+ jcrcontenttrigger_specific: true, # BOOLEAN |
443
464
  jcrcontentuser_id: "jcrcontentuser_id_example", # String |
444
- jcrcontentprotocol_https_relaxed: true # BOOLEAN |
465
+ jcrprimary_type: "jcrprimary_type_example", # String |
466
+ operation: "operation_example" # String |
445
467
  }
446
468
 
447
469
  begin
@@ -457,32 +479,54 @@ Name | Type | Description | Notes
457
479
  ------------- | ------------- | ------------- | -------------
458
480
  **runmode** | **String**| |
459
481
  **name** | **String**| |
460
- **jcrprimary_type** | **String**| | [optional]
461
482
  **jcrcontentcqname** | **String**| | [optional]
462
- **jcrcontentjcrtitle** | **String**| | [optional]
483
+ **jcrcontentcqtemplate** | **String**| | [optional]
484
+ **jcrcontentenabled** | **BOOLEAN**| | [optional]
463
485
  **jcrcontentjcrdescription** | **String**| | [optional]
464
- **jcrcontentslingresource_type** | **String**| | [optional]
465
- **jcrcontenttransport_uri** | **String**| | [optional]
466
- **jcrcontenttransport_user** | **String**| | [optional]
467
- **jcrcontenttransport_password** | **String**| | [optional]
486
+ **jcrcontentjcrlast_modified** | **String**| | [optional]
487
+ **jcrcontentjcrlast_modified_by** | **String**| | [optional]
488
+ **jcrcontentjcrmixin_types** | **String**| | [optional]
489
+ **jcrcontentjcrtitle** | **String**| | [optional]
468
490
  **jcrcontentlog_level** | **String**| | [optional]
491
+ **jcrcontentno_status_update** | **BOOLEAN**| | [optional]
469
492
  **jcrcontentno_versioning** | **BOOLEAN**| | [optional]
493
+ **jcrcontentprotocol_connect_timeout** | **Float**| | [optional]
494
+ **jcrcontentprotocol_http_connection_closed** | **BOOLEAN**| | [optional]
495
+ **jcrcontentprotocol_http_expired** | **String**| | [optional]
470
496
  **jcrcontentprotocol_http_headers** | [**Array&lt;String&gt;**](String.md)| | [optional]
471
497
  **jcrcontentprotocol_http_headers_type_hint** | **String**| | [optional]
472
498
  **jcrcontentprotocol_http_method** | **String**| | [optional]
499
+ **jcrcontentprotocol_https_relaxed** | **BOOLEAN**| | [optional]
500
+ **jcrcontentprotocol_interface** | **String**| | [optional]
501
+ **jcrcontentprotocol_socket_timeout** | **Float**| | [optional]
502
+ **jcrcontentprotocol_version** | **String**| | [optional]
503
+ **jcrcontentproxy_ntlm_domain** | **String**| | [optional]
504
+ **jcrcontentproxy_ntlm_host** | **String**| | [optional]
505
+ **jcrcontentproxy_host** | **String**| | [optional]
506
+ **jcrcontentproxy_password** | **String**| | [optional]
507
+ **jcrcontentproxy_port** | **Float**| | [optional]
508
+ **jcrcontentproxy_user** | **String**| | [optional]
509
+ **jcrcontentqueue_batch_max_size** | **Float**| | [optional]
510
+ **jcrcontentqueue_batch_mode** | **String**| | [optional]
511
+ **jcrcontentqueue_batch_wait_time** | **Float**| | [optional]
473
512
  **jcrcontentretry_delay** | **String**| | [optional]
474
- **jcrcontentserialization_type** | **String**| | [optional]
475
- **jcrcontentjcrmixin_types** | **String**| | [optional]
476
- **jcrcontenttrigger_receive** | **BOOLEAN**| | [optional]
477
- **jcrcontenttrigger_specific** | **BOOLEAN**| | [optional]
478
- **jcrcontentcqtemplate** | **String**| | [optional]
479
- **jcrcontentenabled** | **BOOLEAN**| | [optional]
480
513
  **jcrcontentreverse_replication** | **BOOLEAN**| | [optional]
481
- **operation** | **String**| | [optional]
514
+ **jcrcontentserialization_type** | **String**| | [optional]
515
+ **jcrcontentslingresource_type** | **String**| | [optional]
516
+ **jcrcontentssl** | **String**| | [optional]
517
+ **jcrcontenttransport_ntlm_domain** | **String**| | [optional]
518
+ **jcrcontenttransport_ntlm_host** | **String**| | [optional]
519
+ **jcrcontenttransport_password** | **String**| | [optional]
520
+ **jcrcontenttransport_uri** | **String**| | [optional]
521
+ **jcrcontenttransport_user** | **String**| | [optional]
482
522
  **jcrcontenttrigger_distribute** | **BOOLEAN**| | [optional]
483
523
  **jcrcontenttrigger_modified** | **BOOLEAN**| | [optional]
524
+ **jcrcontenttrigger_on_off_time** | **BOOLEAN**| | [optional]
525
+ **jcrcontenttrigger_receive** | **BOOLEAN**| | [optional]
526
+ **jcrcontenttrigger_specific** | **BOOLEAN**| | [optional]
484
527
  **jcrcontentuser_id** | **String**| | [optional]
485
- **jcrcontentprotocol_https_relaxed** | **BOOLEAN**| | [optional]
528
+ **jcrprimary_type** | **String**| | [optional]
529
+ **operation** | **String**| | [optional]
486
530
 
487
531
  ### Return type
488
532
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -72,6 +72,62 @@ module SwaggerAemClient
72
72
  return data, status_code, headers
73
73
  end
74
74
 
75
+ #
76
+ #
77
+ # @param runmode
78
+ # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :bundles_ignored
80
+ # @option opts [String] :bundles_ignored_type_hint
81
+ # @return [nil]
82
+ def post_config_aem_health_check_servlet(runmode, opts = {})
83
+ post_config_aem_health_check_servlet_with_http_info(runmode, opts)
84
+ return nil
85
+ end
86
+
87
+ #
88
+ #
89
+ # @param runmode
90
+ # @param [Hash] opts the optional parameters
91
+ # @option opts [Array<String>] :bundles_ignored
92
+ # @option opts [String] :bundles_ignored_type_hint
93
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
94
+ def post_config_aem_health_check_servlet_with_http_info(runmode, opts = {})
95
+ if @api_client.config.debugging
96
+ @api_client.config.logger.debug "Calling API: CustomApi.post_config_aem_health_check_servlet ..."
97
+ end
98
+ # verify the required parameter 'runmode' is set
99
+ fail ArgumentError, "Missing the required parameter 'runmode' when calling CustomApi.post_config_aem_health_check_servlet" if runmode.nil?
100
+ # resource path
101
+ local_var_path = "/apps/system/config.{runmode}/com.shinesolutions.healthcheck.hc.impl.ActiveBundleHealthCheck".sub('{format}','json').sub('{' + 'runmode' + '}', runmode.to_s)
102
+
103
+ # query parameters
104
+ query_params = {}
105
+ query_params[:'bundles.ignored'] = @api_client.build_collection_param(opts[:'bundles_ignored'], :multi) if !opts[:'bundles_ignored'].nil?
106
+ query_params[:'bundles.ignored@TypeHint'] = opts[:'bundles_ignored_type_hint'] if !opts[:'bundles_ignored_type_hint'].nil?
107
+
108
+ # header parameters
109
+ header_params = {}
110
+ # HTTP header 'Accept' (if needed)
111
+ header_params['Accept'] = @api_client.select_header_accept(['text/plain'])
112
+
113
+ # form parameters
114
+ form_params = {}
115
+
116
+ # http body (model)
117
+ post_body = nil
118
+ auth_names = ['aemAuth']
119
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
120
+ :header_params => header_params,
121
+ :query_params => query_params,
122
+ :form_params => form_params,
123
+ :body => post_body,
124
+ :auth_names => auth_names)
125
+ if @api_client.config.debugging
126
+ @api_client.config.logger.debug "API called: CustomApi#post_config_aem_health_check_servlet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
127
+ end
128
+ return data, status_code, headers
129
+ end
130
+
75
131
  #
76
132
  #
77
133
  # @param runmode
@@ -102,7 +158,7 @@ module SwaggerAemClient
102
158
 
103
159
  # query parameters
104
160
  query_params = {}
105
- query_params[:'pwdreset.authorizables'] = @api_client.build_collection_param(opts[:'pwdreset_authorizables'], :csv) if !opts[:'pwdreset_authorizables'].nil?
161
+ query_params[:'pwdreset.authorizables'] = @api_client.build_collection_param(opts[:'pwdreset_authorizables'], :multi) if !opts[:'pwdreset_authorizables'].nil?
106
162
  query_params[:'pwdreset.authorizables@TypeHint'] = opts[:'pwdreset_authorizables_type_hint'] if !opts[:'pwdreset_authorizables_type_hint'].nil?
107
163
 
108
164
  # header parameters
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -409,32 +409,54 @@ module SwaggerAemClient
409
409
  # @param runmode
410
410
  # @param name
411
411
  # @param [Hash] opts the optional parameters
412
- # @option opts [String] :jcrprimary_type
413
412
  # @option opts [String] :jcrcontentcqname
414
- # @option opts [String] :jcrcontentjcrtitle
413
+ # @option opts [String] :jcrcontentcqtemplate
414
+ # @option opts [BOOLEAN] :jcrcontentenabled
415
415
  # @option opts [String] :jcrcontentjcrdescription
416
- # @option opts [String] :jcrcontentslingresource_type
417
- # @option opts [String] :jcrcontenttransport_uri
418
- # @option opts [String] :jcrcontenttransport_user
419
- # @option opts [String] :jcrcontenttransport_password
416
+ # @option opts [String] :jcrcontentjcrlast_modified
417
+ # @option opts [String] :jcrcontentjcrlast_modified_by
418
+ # @option opts [String] :jcrcontentjcrmixin_types
419
+ # @option opts [String] :jcrcontentjcrtitle
420
420
  # @option opts [String] :jcrcontentlog_level
421
+ # @option opts [BOOLEAN] :jcrcontentno_status_update
421
422
  # @option opts [BOOLEAN] :jcrcontentno_versioning
423
+ # @option opts [Float] :jcrcontentprotocol_connect_timeout
424
+ # @option opts [BOOLEAN] :jcrcontentprotocol_http_connection_closed
425
+ # @option opts [String] :jcrcontentprotocol_http_expired
422
426
  # @option opts [Array<String>] :jcrcontentprotocol_http_headers
423
427
  # @option opts [String] :jcrcontentprotocol_http_headers_type_hint
424
428
  # @option opts [String] :jcrcontentprotocol_http_method
429
+ # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
430
+ # @option opts [String] :jcrcontentprotocol_interface
431
+ # @option opts [Float] :jcrcontentprotocol_socket_timeout
432
+ # @option opts [String] :jcrcontentprotocol_version
433
+ # @option opts [String] :jcrcontentproxy_ntlm_domain
434
+ # @option opts [String] :jcrcontentproxy_ntlm_host
435
+ # @option opts [String] :jcrcontentproxy_host
436
+ # @option opts [String] :jcrcontentproxy_password
437
+ # @option opts [Float] :jcrcontentproxy_port
438
+ # @option opts [String] :jcrcontentproxy_user
439
+ # @option opts [Float] :jcrcontentqueue_batch_max_size
440
+ # @option opts [String] :jcrcontentqueue_batch_mode
441
+ # @option opts [Float] :jcrcontentqueue_batch_wait_time
425
442
  # @option opts [String] :jcrcontentretry_delay
426
- # @option opts [String] :jcrcontentserialization_type
427
- # @option opts [String] :jcrcontentjcrmixin_types
428
- # @option opts [BOOLEAN] :jcrcontenttrigger_receive
429
- # @option opts [BOOLEAN] :jcrcontenttrigger_specific
430
- # @option opts [String] :jcrcontentcqtemplate
431
- # @option opts [BOOLEAN] :jcrcontentenabled
432
443
  # @option opts [BOOLEAN] :jcrcontentreverse_replication
433
- # @option opts [String] :operation
444
+ # @option opts [String] :jcrcontentserialization_type
445
+ # @option opts [String] :jcrcontentslingresource_type
446
+ # @option opts [String] :jcrcontentssl
447
+ # @option opts [String] :jcrcontenttransport_ntlm_domain
448
+ # @option opts [String] :jcrcontenttransport_ntlm_host
449
+ # @option opts [String] :jcrcontenttransport_password
450
+ # @option opts [String] :jcrcontenttransport_uri
451
+ # @option opts [String] :jcrcontenttransport_user
434
452
  # @option opts [BOOLEAN] :jcrcontenttrigger_distribute
435
453
  # @option opts [BOOLEAN] :jcrcontenttrigger_modified
454
+ # @option opts [BOOLEAN] :jcrcontenttrigger_on_off_time
455
+ # @option opts [BOOLEAN] :jcrcontenttrigger_receive
456
+ # @option opts [BOOLEAN] :jcrcontenttrigger_specific
436
457
  # @option opts [String] :jcrcontentuser_id
437
- # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
458
+ # @option opts [String] :jcrprimary_type
459
+ # @option opts [String] :operation
438
460
  # @return [nil]
439
461
  def post_agent(runmode, name, opts = {})
440
462
  post_agent_with_http_info(runmode, name, opts)
@@ -446,32 +468,54 @@ module SwaggerAemClient
446
468
  # @param runmode
447
469
  # @param name
448
470
  # @param [Hash] opts the optional parameters
449
- # @option opts [String] :jcrprimary_type
450
471
  # @option opts [String] :jcrcontentcqname
451
- # @option opts [String] :jcrcontentjcrtitle
472
+ # @option opts [String] :jcrcontentcqtemplate
473
+ # @option opts [BOOLEAN] :jcrcontentenabled
452
474
  # @option opts [String] :jcrcontentjcrdescription
453
- # @option opts [String] :jcrcontentslingresource_type
454
- # @option opts [String] :jcrcontenttransport_uri
455
- # @option opts [String] :jcrcontenttransport_user
456
- # @option opts [String] :jcrcontenttransport_password
475
+ # @option opts [String] :jcrcontentjcrlast_modified
476
+ # @option opts [String] :jcrcontentjcrlast_modified_by
477
+ # @option opts [String] :jcrcontentjcrmixin_types
478
+ # @option opts [String] :jcrcontentjcrtitle
457
479
  # @option opts [String] :jcrcontentlog_level
480
+ # @option opts [BOOLEAN] :jcrcontentno_status_update
458
481
  # @option opts [BOOLEAN] :jcrcontentno_versioning
482
+ # @option opts [Float] :jcrcontentprotocol_connect_timeout
483
+ # @option opts [BOOLEAN] :jcrcontentprotocol_http_connection_closed
484
+ # @option opts [String] :jcrcontentprotocol_http_expired
459
485
  # @option opts [Array<String>] :jcrcontentprotocol_http_headers
460
486
  # @option opts [String] :jcrcontentprotocol_http_headers_type_hint
461
487
  # @option opts [String] :jcrcontentprotocol_http_method
488
+ # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
489
+ # @option opts [String] :jcrcontentprotocol_interface
490
+ # @option opts [Float] :jcrcontentprotocol_socket_timeout
491
+ # @option opts [String] :jcrcontentprotocol_version
492
+ # @option opts [String] :jcrcontentproxy_ntlm_domain
493
+ # @option opts [String] :jcrcontentproxy_ntlm_host
494
+ # @option opts [String] :jcrcontentproxy_host
495
+ # @option opts [String] :jcrcontentproxy_password
496
+ # @option opts [Float] :jcrcontentproxy_port
497
+ # @option opts [String] :jcrcontentproxy_user
498
+ # @option opts [Float] :jcrcontentqueue_batch_max_size
499
+ # @option opts [String] :jcrcontentqueue_batch_mode
500
+ # @option opts [Float] :jcrcontentqueue_batch_wait_time
462
501
  # @option opts [String] :jcrcontentretry_delay
463
- # @option opts [String] :jcrcontentserialization_type
464
- # @option opts [String] :jcrcontentjcrmixin_types
465
- # @option opts [BOOLEAN] :jcrcontenttrigger_receive
466
- # @option opts [BOOLEAN] :jcrcontenttrigger_specific
467
- # @option opts [String] :jcrcontentcqtemplate
468
- # @option opts [BOOLEAN] :jcrcontentenabled
469
502
  # @option opts [BOOLEAN] :jcrcontentreverse_replication
470
- # @option opts [String] :operation
503
+ # @option opts [String] :jcrcontentserialization_type
504
+ # @option opts [String] :jcrcontentslingresource_type
505
+ # @option opts [String] :jcrcontentssl
506
+ # @option opts [String] :jcrcontenttransport_ntlm_domain
507
+ # @option opts [String] :jcrcontenttransport_ntlm_host
508
+ # @option opts [String] :jcrcontenttransport_password
509
+ # @option opts [String] :jcrcontenttransport_uri
510
+ # @option opts [String] :jcrcontenttransport_user
471
511
  # @option opts [BOOLEAN] :jcrcontenttrigger_distribute
472
512
  # @option opts [BOOLEAN] :jcrcontenttrigger_modified
513
+ # @option opts [BOOLEAN] :jcrcontenttrigger_on_off_time
514
+ # @option opts [BOOLEAN] :jcrcontenttrigger_receive
515
+ # @option opts [BOOLEAN] :jcrcontenttrigger_specific
473
516
  # @option opts [String] :jcrcontentuser_id
474
- # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
517
+ # @option opts [String] :jcrprimary_type
518
+ # @option opts [String] :operation
475
519
  # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
476
520
  def post_agent_with_http_info(runmode, name, opts = {})
477
521
  if @api_client.config.debugging
@@ -486,32 +530,54 @@ module SwaggerAemClient
486
530
 
487
531
  # query parameters
488
532
  query_params = {}
489
- query_params[:'jcr:primaryType'] = opts[:'jcrprimary_type'] if !opts[:'jcrprimary_type'].nil?
490
533
  query_params[:'jcr:content/cq:name'] = opts[:'jcrcontentcqname'] if !opts[:'jcrcontentcqname'].nil?
491
- query_params[:'jcr:content/jcr:title'] = opts[:'jcrcontentjcrtitle'] if !opts[:'jcrcontentjcrtitle'].nil?
534
+ query_params[:'jcr:content/cq:template'] = opts[:'jcrcontentcqtemplate'] if !opts[:'jcrcontentcqtemplate'].nil?
535
+ query_params[:'jcr:content/enabled'] = opts[:'jcrcontentenabled'] if !opts[:'jcrcontentenabled'].nil?
492
536
  query_params[:'jcr:content/jcr:description'] = opts[:'jcrcontentjcrdescription'] if !opts[:'jcrcontentjcrdescription'].nil?
493
- query_params[:'jcr:content/sling:resourceType'] = opts[:'jcrcontentslingresource_type'] if !opts[:'jcrcontentslingresource_type'].nil?
494
- query_params[:'jcr:content/transportUri'] = opts[:'jcrcontenttransport_uri'] if !opts[:'jcrcontenttransport_uri'].nil?
495
- query_params[:'jcr:content/transportUser'] = opts[:'jcrcontenttransport_user'] if !opts[:'jcrcontenttransport_user'].nil?
496
- query_params[:'jcr:content/transportPassword'] = opts[:'jcrcontenttransport_password'] if !opts[:'jcrcontenttransport_password'].nil?
537
+ query_params[:'jcr:content/jcr:lastModified'] = opts[:'jcrcontentjcrlast_modified'] if !opts[:'jcrcontentjcrlast_modified'].nil?
538
+ query_params[:'jcr:content/jcr:lastModifiedBy'] = opts[:'jcrcontentjcrlast_modified_by'] if !opts[:'jcrcontentjcrlast_modified_by'].nil?
539
+ query_params[:'jcr:content/jcr:mixinTypes'] = opts[:'jcrcontentjcrmixin_types'] if !opts[:'jcrcontentjcrmixin_types'].nil?
540
+ query_params[:'jcr:content/jcr:title'] = opts[:'jcrcontentjcrtitle'] if !opts[:'jcrcontentjcrtitle'].nil?
497
541
  query_params[:'jcr:content/logLevel'] = opts[:'jcrcontentlog_level'] if !opts[:'jcrcontentlog_level'].nil?
542
+ query_params[:'jcr:content/noStatusUpdate'] = opts[:'jcrcontentno_status_update'] if !opts[:'jcrcontentno_status_update'].nil?
498
543
  query_params[:'jcr:content/noVersioning'] = opts[:'jcrcontentno_versioning'] if !opts[:'jcrcontentno_versioning'].nil?
544
+ query_params[:'jcr:content/protocolConnectTimeout'] = opts[:'jcrcontentprotocol_connect_timeout'] if !opts[:'jcrcontentprotocol_connect_timeout'].nil?
545
+ query_params[:'jcr:content/protocolHTTPConnectionClosed'] = opts[:'jcrcontentprotocol_http_connection_closed'] if !opts[:'jcrcontentprotocol_http_connection_closed'].nil?
546
+ query_params[:'jcr:content/protocolHTTPExpired'] = opts[:'jcrcontentprotocol_http_expired'] if !opts[:'jcrcontentprotocol_http_expired'].nil?
499
547
  query_params[:'jcr:content/protocolHTTPHeaders'] = @api_client.build_collection_param(opts[:'jcrcontentprotocol_http_headers'], :multi) if !opts[:'jcrcontentprotocol_http_headers'].nil?
500
548
  query_params[:'jcr:content/protocolHTTPHeaders@TypeHint'] = opts[:'jcrcontentprotocol_http_headers_type_hint'] if !opts[:'jcrcontentprotocol_http_headers_type_hint'].nil?
501
549
  query_params[:'jcr:content/protocolHTTPMethod'] = opts[:'jcrcontentprotocol_http_method'] if !opts[:'jcrcontentprotocol_http_method'].nil?
550
+ query_params[:'jcr:content/protocolHTTPSRelaxed'] = opts[:'jcrcontentprotocol_https_relaxed'] if !opts[:'jcrcontentprotocol_https_relaxed'].nil?
551
+ query_params[:'jcr:content/protocolInterface'] = opts[:'jcrcontentprotocol_interface'] if !opts[:'jcrcontentprotocol_interface'].nil?
552
+ query_params[:'jcr:content/protocolSocketTimeout'] = opts[:'jcrcontentprotocol_socket_timeout'] if !opts[:'jcrcontentprotocol_socket_timeout'].nil?
553
+ query_params[:'jcr:content/protocolVersion'] = opts[:'jcrcontentprotocol_version'] if !opts[:'jcrcontentprotocol_version'].nil?
554
+ query_params[:'jcr:content/proxyNTLMDomain'] = opts[:'jcrcontentproxy_ntlm_domain'] if !opts[:'jcrcontentproxy_ntlm_domain'].nil?
555
+ query_params[:'jcr:content/proxyNTLMHost'] = opts[:'jcrcontentproxy_ntlm_host'] if !opts[:'jcrcontentproxy_ntlm_host'].nil?
556
+ query_params[:'jcr:content/proxyHost'] = opts[:'jcrcontentproxy_host'] if !opts[:'jcrcontentproxy_host'].nil?
557
+ query_params[:'jcr:content/proxyPassword'] = opts[:'jcrcontentproxy_password'] if !opts[:'jcrcontentproxy_password'].nil?
558
+ query_params[:'jcr:content/proxyPort'] = opts[:'jcrcontentproxy_port'] if !opts[:'jcrcontentproxy_port'].nil?
559
+ query_params[:'jcr:content/proxyUser'] = opts[:'jcrcontentproxy_user'] if !opts[:'jcrcontentproxy_user'].nil?
560
+ query_params[:'jcr:content/queueBatchMaxSize'] = opts[:'jcrcontentqueue_batch_max_size'] if !opts[:'jcrcontentqueue_batch_max_size'].nil?
561
+ query_params[:'jcr:content/queueBatchMode'] = opts[:'jcrcontentqueue_batch_mode'] if !opts[:'jcrcontentqueue_batch_mode'].nil?
562
+ query_params[:'jcr:content/queueBatchWaitTime'] = opts[:'jcrcontentqueue_batch_wait_time'] if !opts[:'jcrcontentqueue_batch_wait_time'].nil?
502
563
  query_params[:'jcr:content/retryDelay'] = opts[:'jcrcontentretry_delay'] if !opts[:'jcrcontentretry_delay'].nil?
503
- query_params[:'jcr:content/serializationType'] = opts[:'jcrcontentserialization_type'] if !opts[:'jcrcontentserialization_type'].nil?
504
- query_params[:'jcr:content/jcr:mixinTypes'] = opts[:'jcrcontentjcrmixin_types'] if !opts[:'jcrcontentjcrmixin_types'].nil?
505
- query_params[:'jcr:content/triggerReceive'] = opts[:'jcrcontenttrigger_receive'] if !opts[:'jcrcontenttrigger_receive'].nil?
506
- query_params[:'jcr:content/triggerSpecific'] = opts[:'jcrcontenttrigger_specific'] if !opts[:'jcrcontenttrigger_specific'].nil?
507
- query_params[:'jcr:content/cq:template'] = opts[:'jcrcontentcqtemplate'] if !opts[:'jcrcontentcqtemplate'].nil?
508
- query_params[:'jcr:content/enabled'] = opts[:'jcrcontentenabled'] if !opts[:'jcrcontentenabled'].nil?
509
564
  query_params[:'jcr:content/reverseReplication'] = opts[:'jcrcontentreverse_replication'] if !opts[:'jcrcontentreverse_replication'].nil?
510
- query_params[:':operation'] = opts[:'operation'] if !opts[:'operation'].nil?
565
+ query_params[:'jcr:content/serializationType'] = opts[:'jcrcontentserialization_type'] if !opts[:'jcrcontentserialization_type'].nil?
566
+ query_params[:'jcr:content/sling:resourceType'] = opts[:'jcrcontentslingresource_type'] if !opts[:'jcrcontentslingresource_type'].nil?
567
+ query_params[:'jcr:content/ssl'] = opts[:'jcrcontentssl'] if !opts[:'jcrcontentssl'].nil?
568
+ query_params[:'jcr:content/transportNTLMDomain'] = opts[:'jcrcontenttransport_ntlm_domain'] if !opts[:'jcrcontenttransport_ntlm_domain'].nil?
569
+ query_params[:'jcr:content/transportNTLMHost'] = opts[:'jcrcontenttransport_ntlm_host'] if !opts[:'jcrcontenttransport_ntlm_host'].nil?
570
+ query_params[:'jcr:content/transportPassword'] = opts[:'jcrcontenttransport_password'] if !opts[:'jcrcontenttransport_password'].nil?
571
+ query_params[:'jcr:content/transportUri'] = opts[:'jcrcontenttransport_uri'] if !opts[:'jcrcontenttransport_uri'].nil?
572
+ query_params[:'jcr:content/transportUser'] = opts[:'jcrcontenttransport_user'] if !opts[:'jcrcontenttransport_user'].nil?
511
573
  query_params[:'jcr:content/triggerDistribute'] = opts[:'jcrcontenttrigger_distribute'] if !opts[:'jcrcontenttrigger_distribute'].nil?
512
574
  query_params[:'jcr:content/triggerModified'] = opts[:'jcrcontenttrigger_modified'] if !opts[:'jcrcontenttrigger_modified'].nil?
575
+ query_params[:'jcr:content/triggerOnOffTime'] = opts[:'jcrcontenttrigger_on_off_time'] if !opts[:'jcrcontenttrigger_on_off_time'].nil?
576
+ query_params[:'jcr:content/triggerReceive'] = opts[:'jcrcontenttrigger_receive'] if !opts[:'jcrcontenttrigger_receive'].nil?
577
+ query_params[:'jcr:content/triggerSpecific'] = opts[:'jcrcontenttrigger_specific'] if !opts[:'jcrcontenttrigger_specific'].nil?
513
578
  query_params[:'jcr:content/userId'] = opts[:'jcrcontentuser_id'] if !opts[:'jcrcontentuser_id'].nil?
514
- query_params[:'jcr:content/protocolHTTPSRelaxed'] = opts[:'jcrcontentprotocol_https_relaxed'] if !opts[:'jcrcontentprotocol_https_relaxed'].nil?
579
+ query_params[:'jcr:primaryType'] = opts[:'jcrprimary_type'] if !opts[:'jcrprimary_type'].nil?
580
+ query_params[:':operation'] = opts[:'operation'] if !opts[:'operation'].nil?
515
581
 
516
582
  # header parameters
517
583
  header_params = {}
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,12 +3,12 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
10
10
  =end
11
11
 
12
12
  module SwaggerAemClient
13
- VERSION = "0.9.11"
13
+ VERSION = "0.9.12"
14
14
  end
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -44,6 +44,20 @@ describe 'CustomApi' do
44
44
  end
45
45
  end
46
46
 
47
+ # unit tests for post_config_aem_health_check_servlet
48
+ #
49
+ #
50
+ # @param runmode
51
+ # @param [Hash] opts the optional parameters
52
+ # @option opts [Array<String>] :bundles_ignored
53
+ # @option opts [String] :bundles_ignored_type_hint
54
+ # @return [nil]
55
+ describe 'post_config_aem_health_check_servlet test' do
56
+ it "should work" do
57
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
58
+ end
59
+ end
60
+
47
61
  # unit tests for post_config_aem_password_reset
48
62
  #
49
63
  #
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -129,32 +129,54 @@ describe 'SlingApi' do
129
129
  # @param runmode
130
130
  # @param name
131
131
  # @param [Hash] opts the optional parameters
132
- # @option opts [String] :jcrprimary_type
133
132
  # @option opts [String] :jcrcontentcqname
134
- # @option opts [String] :jcrcontentjcrtitle
133
+ # @option opts [String] :jcrcontentcqtemplate
134
+ # @option opts [BOOLEAN] :jcrcontentenabled
135
135
  # @option opts [String] :jcrcontentjcrdescription
136
- # @option opts [String] :jcrcontentslingresource_type
137
- # @option opts [String] :jcrcontenttransport_uri
138
- # @option opts [String] :jcrcontenttransport_user
139
- # @option opts [String] :jcrcontenttransport_password
136
+ # @option opts [String] :jcrcontentjcrlast_modified
137
+ # @option opts [String] :jcrcontentjcrlast_modified_by
138
+ # @option opts [String] :jcrcontentjcrmixin_types
139
+ # @option opts [String] :jcrcontentjcrtitle
140
140
  # @option opts [String] :jcrcontentlog_level
141
+ # @option opts [BOOLEAN] :jcrcontentno_status_update
141
142
  # @option opts [BOOLEAN] :jcrcontentno_versioning
143
+ # @option opts [Float] :jcrcontentprotocol_connect_timeout
144
+ # @option opts [BOOLEAN] :jcrcontentprotocol_http_connection_closed
145
+ # @option opts [String] :jcrcontentprotocol_http_expired
142
146
  # @option opts [Array<String>] :jcrcontentprotocol_http_headers
143
147
  # @option opts [String] :jcrcontentprotocol_http_headers_type_hint
144
148
  # @option opts [String] :jcrcontentprotocol_http_method
149
+ # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
150
+ # @option opts [String] :jcrcontentprotocol_interface
151
+ # @option opts [Float] :jcrcontentprotocol_socket_timeout
152
+ # @option opts [String] :jcrcontentprotocol_version
153
+ # @option opts [String] :jcrcontentproxy_ntlm_domain
154
+ # @option opts [String] :jcrcontentproxy_ntlm_host
155
+ # @option opts [String] :jcrcontentproxy_host
156
+ # @option opts [String] :jcrcontentproxy_password
157
+ # @option opts [Float] :jcrcontentproxy_port
158
+ # @option opts [String] :jcrcontentproxy_user
159
+ # @option opts [Float] :jcrcontentqueue_batch_max_size
160
+ # @option opts [String] :jcrcontentqueue_batch_mode
161
+ # @option opts [Float] :jcrcontentqueue_batch_wait_time
145
162
  # @option opts [String] :jcrcontentretry_delay
146
- # @option opts [String] :jcrcontentserialization_type
147
- # @option opts [String] :jcrcontentjcrmixin_types
148
- # @option opts [BOOLEAN] :jcrcontenttrigger_receive
149
- # @option opts [BOOLEAN] :jcrcontenttrigger_specific
150
- # @option opts [String] :jcrcontentcqtemplate
151
- # @option opts [BOOLEAN] :jcrcontentenabled
152
163
  # @option opts [BOOLEAN] :jcrcontentreverse_replication
153
- # @option opts [String] :operation
164
+ # @option opts [String] :jcrcontentserialization_type
165
+ # @option opts [String] :jcrcontentslingresource_type
166
+ # @option opts [String] :jcrcontentssl
167
+ # @option opts [String] :jcrcontenttransport_ntlm_domain
168
+ # @option opts [String] :jcrcontenttransport_ntlm_host
169
+ # @option opts [String] :jcrcontenttransport_password
170
+ # @option opts [String] :jcrcontenttransport_uri
171
+ # @option opts [String] :jcrcontenttransport_user
154
172
  # @option opts [BOOLEAN] :jcrcontenttrigger_distribute
155
173
  # @option opts [BOOLEAN] :jcrcontenttrigger_modified
174
+ # @option opts [BOOLEAN] :jcrcontenttrigger_on_off_time
175
+ # @option opts [BOOLEAN] :jcrcontenttrigger_receive
176
+ # @option opts [BOOLEAN] :jcrcontenttrigger_specific
156
177
  # @option opts [String] :jcrcontentuser_id
157
- # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
178
+ # @option opts [String] :jcrprimary_type
179
+ # @option opts [String] :operation
158
180
  # @return [nil]
159
181
  describe 'post_agent test' do
160
182
  it "should work" do
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 1.1.11
6
+ OpenAPI spec version: 1.1.13
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
7
7
 
8
- OpenAPI spec version: 1.1.11
8
+ OpenAPI spec version: 1.1.13
9
9
  Contact: opensource@shinesolutions.com
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
11
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: swagger_aem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.11
4
+ version: 0.9.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shine Solutions
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-04 00:00:00.000000000 Z
11
+ date: 2017-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus