class LaunchDarklyApi::UsersBetaApi
Attributes
Public Class Methods
# File lib/launchdarkly_api/api/users_beta_api.rb, line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end
Public Instance Methods
Get user attribute names Get all in-use user attributes in the specified environment. The set of in-use attributes typically consists of all attributes seen within the past 30 days. @param project_key [String] The project key @param environment_key [String] The environment key @param [Hash] opts the optional parameters @return [UserAttributeNamesRep]
# File lib/launchdarkly_api/api/users_beta_api.rb, line 28 def get_user_attribute_names(project_key, environment_key, opts = {}) data, _status_code, _headers = get_user_attribute_names_with_http_info(project_key, environment_key, opts) data end
Get user attribute names Get all in-use user attributes in the specified environment. The set of in-use attributes typically consists of all attributes seen within the past 30 days. @param project_key [String] The project key @param environment_key [String] The environment key @param [Hash] opts the optional parameters @return [Array<(UserAttributeNamesRep
, Integer, Hash)>] UserAttributeNamesRep
data, response status code and response headers
# File lib/launchdarkly_api/api/users_beta_api.rb, line 39 def get_user_attribute_names_with_http_info(project_key, environment_key, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersBetaApi.get_user_attribute_names ...' end # verify the required parameter 'project_key' is set if @api_client.config.client_side_validation && project_key.nil? fail ArgumentError, "Missing the required parameter 'project_key' when calling UsersBetaApi.get_user_attribute_names" end # verify the required parameter 'environment_key' is set if @api_client.config.client_side_validation && environment_key.nil? fail ArgumentError, "Missing the required parameter 'environment_key' when calling UsersBetaApi.get_user_attribute_names" end # resource path local_var_path = '/api/v2/user-attributes/{projectKey}/{environmentKey}'.sub('{' + 'projectKey' + '}', CGI.escape(project_key.to_s)).sub('{' + 'environmentKey' + '}', CGI.escape(environment_key.to_s)) # 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[:debug_body] # return_type return_type = opts[:debug_return_type] || 'UserAttributeNamesRep' # auth_names auth_names = opts[:debug_auth_names] || ['ApiKey'] new_options = opts.merge( :operation => :"UsersBetaApi.get_user_attribute_names", :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: UsersBetaApi#get_user_attribute_names\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end