class SwaggerAemClient::ConsoleApi

Attributes

api_client[RW]

Public Class Methods

new(api_client = ApiClient.default) click to toggle source
# File lib/swagger_aem/api/console_api.rb, line 19
def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Public Instance Methods

get_aem_product_info(opts = {}) click to toggle source

@param [Hash] opts the optional parameters @return [Array<String>]

# File lib/swagger_aem/api/console_api.rb, line 24
def get_aem_product_info(opts = {})
  data, _status_code, _headers = get_aem_product_info_with_http_info(opts)
  data
end
get_aem_product_info_with_http_info(opts = {}) click to toggle source

@param [Hash] opts the optional parameters @return [Array<(Array<String>, Integer, Hash)>] Array<String> data, response status code and response headers

# File lib/swagger_aem/api/console_api.rb, line 31
def get_aem_product_info_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ConsoleApi.get_aem_product_info ...'
  end
  # resource path
  local_var_path = '/system/console/status-productinfo.json'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  # return_type
  return_type = opts[:return_type] || 'Array<String>' 

  # auth_names
  auth_names = opts[:auth_names] || ['aemAuth']

  new_options = opts.merge(
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ConsoleApi#get_aem_product_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_config_mgr(opts = {}) click to toggle source

@param [Hash] opts the optional parameters @return [String]

# File lib/swagger_aem/api/console_api.rb, line 76
def get_config_mgr(opts = {})
  data, _status_code, _headers = get_config_mgr_with_http_info(opts)
  data
end
get_config_mgr_with_http_info(opts = {}) click to toggle source

@param [Hash] opts the optional parameters @return [Array<(String, Integer, Hash)>] String data, response status code and response headers

# File lib/swagger_aem/api/console_api.rb, line 83
def get_config_mgr_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ConsoleApi.get_config_mgr ...'
  end
  # resource path
  local_var_path = '/system/console/configMgr'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['text/xml'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  # return_type
  return_type = opts[:return_type] || 'String' 

  # auth_names
  auth_names = opts[:auth_names] || ['aemAuth']

  new_options = opts.merge(
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ConsoleApi#get_config_mgr\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
post_bundle(name, action, opts = {}) click to toggle source

@param name [String] @param action [String] @param [Hash] opts the optional parameters @return [nil]

# File lib/swagger_aem/api/console_api.rb, line 130
def post_bundle(name, action, opts = {})
  post_bundle_with_http_info(name, action, opts)
  nil
end
post_bundle_with_http_info(name, action, opts = {}) click to toggle source

@param name [String] @param action [String] @param [Hash] opts the optional parameters @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers

# File lib/swagger_aem/api/console_api.rb, line 139
def post_bundle_with_http_info(name, action, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ConsoleApi.post_bundle ...'
  end
  # verify the required parameter 'name' is set
  if @api_client.config.client_side_validation && name.nil?
    fail ArgumentError, "Missing the required parameter 'name' when calling ConsoleApi.post_bundle"
  end
  # verify the required parameter 'action' is set
  if @api_client.config.client_side_validation && action.nil?
    fail ArgumentError, "Missing the required parameter 'action' when calling ConsoleApi.post_bundle"
  end
  # resource path
  local_var_path = '/system/console/bundles/{name}'.sub('{' + 'name' + '}', CGI.escape(name.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'action'] = action

  # header parameters
  header_params = opts[:header_params] || {}

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  # return_type
  return_type = opts[:return_type] 

  # auth_names
  auth_names = opts[:auth_names] || ['aemAuth']

  new_options = opts.merge(
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ConsoleApi#post_bundle\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
post_jmx_repository(action, opts = {}) click to toggle source

@param action [String] @param [Hash] opts the optional parameters @return [nil]

# File lib/swagger_aem/api/console_api.rb, line 192
def post_jmx_repository(action, opts = {})
  post_jmx_repository_with_http_info(action, opts)
  nil
end
post_jmx_repository_with_http_info(action, opts = {}) click to toggle source

@param action [String] @param [Hash] opts the optional parameters @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers

# File lib/swagger_aem/api/console_api.rb, line 200
def post_jmx_repository_with_http_info(action, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ConsoleApi.post_jmx_repository ...'
  end
  # verify the required parameter 'action' is set
  if @api_client.config.client_side_validation && action.nil?
    fail ArgumentError, "Missing the required parameter 'action' when calling ConsoleApi.post_jmx_repository"
  end
  # resource path
  local_var_path = '/system/console/jmx/com.adobe.granite:type=Repository/op/{action}'.sub('{' + 'action' + '}', CGI.escape(action.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  # return_type
  return_type = opts[:return_type] 

  # auth_names
  auth_names = opts[:auth_names] || ['aemAuth']

  new_options = opts.merge(
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ConsoleApi#post_jmx_repository\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
post_saml_configuration(opts = {}) click to toggle source

@param [Hash] opts the optional parameters @option opts [Boolean] :post @option opts [Boolean] :apply @option opts [Boolean] :delete @option opts [String] :action @option opts [String] :location @option opts [Array<String>] :path @option opts [Integer] :service_ranking @option opts [String] :idp_url @option opts [String] :idp_cert_alias @option opts [Boolean] :idp_http_redirect @option opts [String] :service_provider_entity_id @option opts [String] :assertion_consumer_service_url @option opts [String] :sp_private_key_alias @option opts [String] :key_store_password @option opts [String] :default_redirect_url @option opts [String] :user_id_attribute @option opts [Boolean] :use_encryption @option opts [Boolean] :create_user @option opts [Boolean] :add_group_memberships @option opts [String] :group_membership_attribute @option opts [Array<String>] :default_groups @option opts [String] :name_id_format @option opts [Array<String>] :synchronize_attributes @option opts [Boolean] :handle_logout @option opts [String] :logout_url @option opts [Integer] :clock_tolerance @option opts [String] :digest_method @option opts [String] :signature_method @option opts [String] :user_intermediate_path @option opts [Array<String>] :propertylist @return [SamlConfigurationInfo]

# File lib/swagger_aem/api/console_api.rb, line 277
def post_saml_configuration(opts = {})
  data, _status_code, _headers = post_saml_configuration_with_http_info(opts)
  data
end
post_saml_configuration_with_http_info(opts = {}) click to toggle source

@param [Hash] opts the optional parameters @option opts [Boolean] :post @option opts [Boolean] :apply @option opts [Boolean] :delete @option opts [String] :action @option opts [String] :location @option opts [Array<String>] :path @option opts [Integer] :service_ranking @option opts [String] :idp_url @option opts [String] :idp_cert_alias @option opts [Boolean] :idp_http_redirect @option opts [String] :service_provider_entity_id @option opts [String] :assertion_consumer_service_url @option opts [String] :sp_private_key_alias @option opts [String] :key_store_password @option opts [String] :default_redirect_url @option opts [String] :user_id_attribute @option opts [Boolean] :use_encryption @option opts [Boolean] :create_user @option opts [Boolean] :add_group_memberships @option opts [String] :group_membership_attribute @option opts [Array<String>] :default_groups @option opts [String] :name_id_format @option opts [Array<String>] :synchronize_attributes @option opts [Boolean] :handle_logout @option opts [String] :logout_url @option opts [Integer] :clock_tolerance @option opts [String] :digest_method @option opts [String] :signature_method @option opts [String] :user_intermediate_path @option opts [Array<String>] :propertylist @return [Array<(SamlConfigurationInfo, Integer, Hash)>] SamlConfigurationInfo data, response status code and response headers

# File lib/swagger_aem/api/console_api.rb, line 314
def post_saml_configuration_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ConsoleApi.post_saml_configuration ...'
  end
  # resource path
  local_var_path = '/system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'post'] = opts[:'post'] if !opts[:'post'].nil?
  query_params[:'apply'] = opts[:'apply'] if !opts[:'apply'].nil?
  query_params[:'delete'] = opts[:'delete'] if !opts[:'delete'].nil?
  query_params[:'action'] = opts[:'action'] if !opts[:'action'].nil?
  query_params[:'$location'] = opts[:'location'] if !opts[:'location'].nil?
  query_params[:'path'] = @api_client.build_collection_param(opts[:'path'], :multi) if !opts[:'path'].nil?
  query_params[:'service.ranking'] = opts[:'service_ranking'] if !opts[:'service_ranking'].nil?
  query_params[:'idpUrl'] = opts[:'idp_url'] if !opts[:'idp_url'].nil?
  query_params[:'idpCertAlias'] = opts[:'idp_cert_alias'] if !opts[:'idp_cert_alias'].nil?
  query_params[:'idpHttpRedirect'] = opts[:'idp_http_redirect'] if !opts[:'idp_http_redirect'].nil?
  query_params[:'serviceProviderEntityId'] = opts[:'service_provider_entity_id'] if !opts[:'service_provider_entity_id'].nil?
  query_params[:'assertionConsumerServiceURL'] = opts[:'assertion_consumer_service_url'] if !opts[:'assertion_consumer_service_url'].nil?
  query_params[:'spPrivateKeyAlias'] = opts[:'sp_private_key_alias'] if !opts[:'sp_private_key_alias'].nil?
  query_params[:'keyStorePassword'] = opts[:'key_store_password'] if !opts[:'key_store_password'].nil?
  query_params[:'defaultRedirectUrl'] = opts[:'default_redirect_url'] if !opts[:'default_redirect_url'].nil?
  query_params[:'userIDAttribute'] = opts[:'user_id_attribute'] if !opts[:'user_id_attribute'].nil?
  query_params[:'useEncryption'] = opts[:'use_encryption'] if !opts[:'use_encryption'].nil?
  query_params[:'createUser'] = opts[:'create_user'] if !opts[:'create_user'].nil?
  query_params[:'addGroupMemberships'] = opts[:'add_group_memberships'] if !opts[:'add_group_memberships'].nil?
  query_params[:'groupMembershipAttribute'] = opts[:'group_membership_attribute'] if !opts[:'group_membership_attribute'].nil?
  query_params[:'defaultGroups'] = @api_client.build_collection_param(opts[:'default_groups'], :multi) if !opts[:'default_groups'].nil?
  query_params[:'nameIdFormat'] = opts[:'name_id_format'] if !opts[:'name_id_format'].nil?
  query_params[:'synchronizeAttributes'] = @api_client.build_collection_param(opts[:'synchronize_attributes'], :multi) if !opts[:'synchronize_attributes'].nil?
  query_params[:'handleLogout'] = opts[:'handle_logout'] if !opts[:'handle_logout'].nil?
  query_params[:'logoutUrl'] = opts[:'logout_url'] if !opts[:'logout_url'].nil?
  query_params[:'clockTolerance'] = opts[:'clock_tolerance'] if !opts[:'clock_tolerance'].nil?
  query_params[:'digestMethod'] = opts[:'digest_method'] if !opts[:'digest_method'].nil?
  query_params[:'signatureMethod'] = opts[:'signature_method'] if !opts[:'signature_method'].nil?
  query_params[:'userIntermediatePath'] = opts[:'user_intermediate_path'] if !opts[:'user_intermediate_path'].nil?
  query_params[:'propertylist'] = @api_client.build_collection_param(opts[:'propertylist'], :csv) if !opts[:'propertylist'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['text/plain'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  # return_type
  return_type = opts[:return_type] || 'SamlConfigurationInfo' 

  # auth_names
  auth_names = opts[:auth_names] || ['aemAuth']

  new_options = opts.merge(
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ConsoleApi#post_saml_configuration\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end