launchdarkly_api 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +69 -0
  4. data/LICENSE.txt +13 -0
  5. data/README.md +264 -0
  6. data/Rakefile +8 -0
  7. data/docs/Action.md +7 -0
  8. data/docs/Actions.md +7 -0
  9. data/docs/AuditLogApi.md +123 -0
  10. data/docs/AuditLogEntries.md +9 -0
  11. data/docs/AuditLogEntry.md +19 -0
  12. data/docs/AuditLogEntryTarget.md +10 -0
  13. data/docs/Clause.md +11 -0
  14. data/docs/CustomRole.md +13 -0
  15. data/docs/CustomRoleBody.md +11 -0
  16. data/docs/CustomRoleKeyOrId.md +7 -0
  17. data/docs/CustomRoles.md +9 -0
  18. data/docs/CustomRolesApi.md +268 -0
  19. data/docs/Environment.md +17 -0
  20. data/docs/EnvironmentBody.md +11 -0
  21. data/docs/EnvironmentsApi.md +233 -0
  22. data/docs/Fallthrough.md +9 -0
  23. data/docs/FeatureFlag.md +20 -0
  24. data/docs/FeatureFlagBody.md +13 -0
  25. data/docs/FeatureFlagConfig.md +19 -0
  26. data/docs/FeatureFlagStatus.md +11 -0
  27. data/docs/FeatureFlagStatuses.md +9 -0
  28. data/docs/FeatureFlags.md +9 -0
  29. data/docs/FeatureFlagsApi.md +411 -0
  30. data/docs/Id.md +7 -0
  31. data/docs/Link.md +9 -0
  32. data/docs/Links.md +9 -0
  33. data/docs/Member.md +14 -0
  34. data/docs/Members.md +9 -0
  35. data/docs/MembersBody.md +13 -0
  36. data/docs/PatchComment.md +9 -0
  37. data/docs/PatchOperation.md +10 -0
  38. data/docs/Policy.md +10 -0
  39. data/docs/Prerequisite.md +9 -0
  40. data/docs/Project.md +12 -0
  41. data/docs/ProjectBody.md +9 -0
  42. data/docs/Projects.md +9 -0
  43. data/docs/ProjectsApi.md +268 -0
  44. data/docs/Resource.md +7 -0
  45. data/docs/Resources.md +7 -0
  46. data/docs/Role.md +7 -0
  47. data/docs/Rollout.md +8 -0
  48. data/docs/RootApi.md +56 -0
  49. data/docs/Rule.md +10 -0
  50. data/docs/Statement.md +12 -0
  51. data/docs/Statements.md +7 -0
  52. data/docs/Target.md +9 -0
  53. data/docs/TeamMembersApi.md +268 -0
  54. data/docs/User.md +18 -0
  55. data/docs/UserFlagSetting.md +10 -0
  56. data/docs/UserFlagSettings.md +9 -0
  57. data/docs/UserRecord.md +12 -0
  58. data/docs/UserSegment.md +17 -0
  59. data/docs/UserSegmentBody.md +11 -0
  60. data/docs/UserSegmentRule.md +10 -0
  61. data/docs/UserSegments.md +9 -0
  62. data/docs/UserSegmentsApi.md +305 -0
  63. data/docs/UserSettingsApi.md +193 -0
  64. data/docs/UserSettingsBody.md +8 -0
  65. data/docs/Users.md +10 -0
  66. data/docs/UsersApi.md +255 -0
  67. data/docs/Variation.md +10 -0
  68. data/docs/Webhook.md +14 -0
  69. data/docs/WebhookBody.md +12 -0
  70. data/docs/Webhooks.md +9 -0
  71. data/docs/WebhooksApi.md +268 -0
  72. data/docs/WeightedVariation.md +9 -0
  73. data/git_push.sh +55 -0
  74. data/launchdarkly_api-2.0.2.gem +0 -0
  75. data/launchdarkly_api.gemspec +46 -0
  76. data/lib/.DS_Store +0 -0
  77. data/lib/launchdarkly_api/api/audit_log_api.rb +142 -0
  78. data/lib/launchdarkly_api/api/custom_roles_api.rb +296 -0
  79. data/lib/launchdarkly_api/api/environments_api.rb +271 -0
  80. data/lib/launchdarkly_api/api/feature_flags_api.rb +463 -0
  81. data/lib/launchdarkly_api/api/projects_api.rb +296 -0
  82. data/lib/launchdarkly_api/api/root_api.rb +72 -0
  83. data/lib/launchdarkly_api/api/team_members_api.rb +296 -0
  84. data/lib/launchdarkly_api/api/user_segments_api.rb +359 -0
  85. data/lib/launchdarkly_api/api/user_settings_api.rb +241 -0
  86. data/lib/launchdarkly_api/api/users_api.rb +299 -0
  87. data/lib/launchdarkly_api/api/webhooks_api.rb +296 -0
  88. data/lib/launchdarkly_api/api_client.rb +389 -0
  89. data/lib/launchdarkly_api/api_error.rb +38 -0
  90. data/lib/launchdarkly_api/configuration.rb +209 -0
  91. data/lib/launchdarkly_api/models/action.rb +179 -0
  92. data/lib/launchdarkly_api/models/actions.rb +179 -0
  93. data/lib/launchdarkly_api/models/audit_log_entries.rb +199 -0
  94. data/lib/launchdarkly_api/models/audit_log_entry.rb +287 -0
  95. data/lib/launchdarkly_api/models/audit_log_entry_target.rb +208 -0
  96. data/lib/launchdarkly_api/models/clause.rb +217 -0
  97. data/lib/launchdarkly_api/models/custom_role.rb +237 -0
  98. data/lib/launchdarkly_api/models/custom_role_body.rb +234 -0
  99. data/lib/launchdarkly_api/models/custom_role_key_or_id.rb +179 -0
  100. data/lib/launchdarkly_api/models/custom_roles.rb +197 -0
  101. data/lib/launchdarkly_api/models/environment.rb +277 -0
  102. data/lib/launchdarkly_api/models/environment_body.rb +234 -0
  103. data/lib/launchdarkly_api/models/fallthrough.rb +197 -0
  104. data/lib/launchdarkly_api/models/feature_flag.rb +310 -0
  105. data/lib/launchdarkly_api/models/feature_flag_body.rb +258 -0
  106. data/lib/launchdarkly_api/models/feature_flag_config.rb +294 -0
  107. data/lib/launchdarkly_api/models/feature_flag_status.rb +249 -0
  108. data/lib/launchdarkly_api/models/feature_flag_statuses.rb +199 -0
  109. data/lib/launchdarkly_api/models/feature_flags.rb +199 -0
  110. data/lib/launchdarkly_api/models/id.rb +179 -0
  111. data/lib/launchdarkly_api/models/link.rb +197 -0
  112. data/lib/launchdarkly_api/models/links.rb +197 -0
  113. data/lib/launchdarkly_api/models/member.rb +244 -0
  114. data/lib/launchdarkly_api/models/members.rb +197 -0
  115. data/lib/launchdarkly_api/models/members_body.rb +240 -0
  116. data/lib/launchdarkly_api/models/patch_comment.rb +199 -0
  117. data/lib/launchdarkly_api/models/patch_operation.rb +221 -0
  118. data/lib/launchdarkly_api/models/policy.rb +207 -0
  119. data/lib/launchdarkly_api/models/prerequisite.rb +197 -0
  120. data/lib/launchdarkly_api/models/project.rb +226 -0
  121. data/lib/launchdarkly_api/models/project_body.rb +207 -0
  122. data/lib/launchdarkly_api/models/projects.rb +199 -0
  123. data/lib/launchdarkly_api/models/resource.rb +179 -0
  124. data/lib/launchdarkly_api/models/resources.rb +179 -0
  125. data/lib/launchdarkly_api/models/role.rb +33 -0
  126. data/lib/launchdarkly_api/models/rollout.rb +190 -0
  127. data/lib/launchdarkly_api/models/rule.rb +208 -0
  128. data/lib/launchdarkly_api/models/statement.rb +259 -0
  129. data/lib/launchdarkly_api/models/statements.rb +179 -0
  130. data/lib/launchdarkly_api/models/target.rb +199 -0
  131. data/lib/launchdarkly_api/models/user.rb +278 -0
  132. data/lib/launchdarkly_api/models/user_flag_setting.rb +208 -0
  133. data/lib/launchdarkly_api/models/user_flag_settings.rb +197 -0
  134. data/lib/launchdarkly_api/models/user_record.rb +224 -0
  135. data/lib/launchdarkly_api/models/user_segment.rb +300 -0
  136. data/lib/launchdarkly_api/models/user_segment_body.rb +231 -0
  137. data/lib/launchdarkly_api/models/user_segment_rule.rb +208 -0
  138. data/lib/launchdarkly_api/models/user_segments.rb +199 -0
  139. data/lib/launchdarkly_api/models/user_settings_body.rb +189 -0
  140. data/lib/launchdarkly_api/models/users.rb +208 -0
  141. data/lib/launchdarkly_api/models/variation.rb +211 -0
  142. data/lib/launchdarkly_api/models/webhook.rb +249 -0
  143. data/lib/launchdarkly_api/models/webhook_body.rb +244 -0
  144. data/lib/launchdarkly_api/models/webhooks.rb +199 -0
  145. data/lib/launchdarkly_api/models/weighted_variation.rb +197 -0
  146. data/lib/launchdarkly_api/version.rb +15 -0
  147. data/lib/launchdarkly_api.rb +105 -0
  148. data/lib/swagger_client/.DS_Store +0 -0
  149. data/spec/api/audit_log_api_spec.rb +63 -0
  150. data/spec/api/custom_roles_api_spec.rb +95 -0
  151. data/spec/api/environments_api_spec.rb +88 -0
  152. data/spec/api/feature_flags_api_spec.rb +130 -0
  153. data/spec/api/projects_api_spec.rb +95 -0
  154. data/spec/api/root_api_spec.rb +46 -0
  155. data/spec/api/team_members_api_spec.rb +95 -0
  156. data/spec/api/user_segments_api_spec.rb +106 -0
  157. data/spec/api/user_settings_api_spec.rb +80 -0
  158. data/spec/api/users_api_spec.rb +96 -0
  159. data/spec/api/webhooks_api_spec.rb +95 -0
  160. data/spec/api_client_spec.rb +226 -0
  161. data/spec/configuration_spec.rb +42 -0
  162. data/spec/models/action_spec.rb +36 -0
  163. data/spec/models/actions_spec.rb +36 -0
  164. data/spec/models/audit_log_entries_spec.rb +48 -0
  165. data/spec/models/audit_log_entry_spec.rb +108 -0
  166. data/spec/models/audit_log_entry_target_spec.rb +54 -0
  167. data/spec/models/clause_spec.rb +60 -0
  168. data/spec/models/custom_role_body_spec.rb +60 -0
  169. data/spec/models/custom_role_key_or_id_spec.rb +36 -0
  170. data/spec/models/custom_role_spec.rb +72 -0
  171. data/spec/models/custom_roles_spec.rb +48 -0
  172. data/spec/models/environment_body_spec.rb +60 -0
  173. data/spec/models/environment_spec.rb +96 -0
  174. data/spec/models/fallthrough_spec.rb +48 -0
  175. data/spec/models/feature_flag_body_spec.rb +72 -0
  176. data/spec/models/feature_flag_config_spec.rb +108 -0
  177. data/spec/models/feature_flag_spec.rb +114 -0
  178. data/spec/models/feature_flag_status_spec.rb +64 -0
  179. data/spec/models/feature_flag_statuses_spec.rb +48 -0
  180. data/spec/models/feature_flags_spec.rb +48 -0
  181. data/spec/models/id_spec.rb +36 -0
  182. data/spec/models/link_spec.rb +48 -0
  183. data/spec/models/links_spec.rb +48 -0
  184. data/spec/models/member_spec.rb +78 -0
  185. data/spec/models/members_body_spec.rb +72 -0
  186. data/spec/models/members_spec.rb +48 -0
  187. data/spec/models/patch_comment_spec.rb +48 -0
  188. data/spec/models/patch_operation_spec.rb +54 -0
  189. data/spec/models/policy_spec.rb +54 -0
  190. data/spec/models/prerequisite_spec.rb +48 -0
  191. data/spec/models/project_body_spec.rb +48 -0
  192. data/spec/models/project_spec.rb +66 -0
  193. data/spec/models/projects_spec.rb +48 -0
  194. data/spec/models/resource_spec.rb +36 -0
  195. data/spec/models/resources_spec.rb +36 -0
  196. data/spec/models/role_spec.rb +36 -0
  197. data/spec/models/rollout_spec.rb +42 -0
  198. data/spec/models/rule_spec.rb +54 -0
  199. data/spec/models/statement_spec.rb +70 -0
  200. data/spec/models/statements_spec.rb +36 -0
  201. data/spec/models/target_spec.rb +48 -0
  202. data/spec/models/user_flag_setting_spec.rb +54 -0
  203. data/spec/models/user_flag_settings_spec.rb +48 -0
  204. data/spec/models/user_record_spec.rb +66 -0
  205. data/spec/models/user_segment_body_spec.rb +60 -0
  206. data/spec/models/user_segment_rule_spec.rb +54 -0
  207. data/spec/models/user_segment_spec.rb +96 -0
  208. data/spec/models/user_segments_spec.rb +48 -0
  209. data/spec/models/user_settings_body_spec.rb +42 -0
  210. data/spec/models/user_spec.rb +102 -0
  211. data/spec/models/users_spec.rb +54 -0
  212. data/spec/models/variation_spec.rb +54 -0
  213. data/spec/models/webhook_body_spec.rb +66 -0
  214. data/spec/models/webhook_spec.rb +78 -0
  215. data/spec/models/webhooks_spec.rb +48 -0
  216. data/spec/models/weighted_variation_spec.rb +48 -0
  217. data/spec/spec_helper.rb +111 -0
  218. data/test.rb +50 -0
  219. metadata +509 -0
@@ -0,0 +1,105 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ # Common files
14
+ require 'launchdarkly_api/api_client'
15
+ require 'launchdarkly_api/api_error'
16
+ require 'launchdarkly_api/version'
17
+ require 'launchdarkly_api/configuration'
18
+
19
+ # Models
20
+ require 'launchdarkly_api/models/action'
21
+ require 'launchdarkly_api/models/actions'
22
+ require 'launchdarkly_api/models/audit_log_entries'
23
+ require 'launchdarkly_api/models/audit_log_entry'
24
+ require 'launchdarkly_api/models/audit_log_entry_target'
25
+ require 'launchdarkly_api/models/clause'
26
+ require 'launchdarkly_api/models/custom_role'
27
+ require 'launchdarkly_api/models/custom_role_body'
28
+ require 'launchdarkly_api/models/custom_role_key_or_id'
29
+ require 'launchdarkly_api/models/custom_roles'
30
+ require 'launchdarkly_api/models/environment'
31
+ require 'launchdarkly_api/models/environment_body'
32
+ require 'launchdarkly_api/models/fallthrough'
33
+ require 'launchdarkly_api/models/feature_flag'
34
+ require 'launchdarkly_api/models/feature_flag_body'
35
+ require 'launchdarkly_api/models/feature_flag_config'
36
+ require 'launchdarkly_api/models/feature_flag_status'
37
+ require 'launchdarkly_api/models/feature_flag_statuses'
38
+ require 'launchdarkly_api/models/feature_flags'
39
+ require 'launchdarkly_api/models/id'
40
+ require 'launchdarkly_api/models/link'
41
+ require 'launchdarkly_api/models/links'
42
+ require 'launchdarkly_api/models/member'
43
+ require 'launchdarkly_api/models/members'
44
+ require 'launchdarkly_api/models/members_body'
45
+ require 'launchdarkly_api/models/patch_comment'
46
+ require 'launchdarkly_api/models/patch_operation'
47
+ require 'launchdarkly_api/models/policy'
48
+ require 'launchdarkly_api/models/prerequisite'
49
+ require 'launchdarkly_api/models/project'
50
+ require 'launchdarkly_api/models/project_body'
51
+ require 'launchdarkly_api/models/projects'
52
+ require 'launchdarkly_api/models/resource'
53
+ require 'launchdarkly_api/models/resources'
54
+ require 'launchdarkly_api/models/role'
55
+ require 'launchdarkly_api/models/rollout'
56
+ require 'launchdarkly_api/models/rule'
57
+ require 'launchdarkly_api/models/statement'
58
+ require 'launchdarkly_api/models/statements'
59
+ require 'launchdarkly_api/models/target'
60
+ require 'launchdarkly_api/models/user'
61
+ require 'launchdarkly_api/models/user_flag_setting'
62
+ require 'launchdarkly_api/models/user_flag_settings'
63
+ require 'launchdarkly_api/models/user_record'
64
+ require 'launchdarkly_api/models/user_segment'
65
+ require 'launchdarkly_api/models/user_segment_body'
66
+ require 'launchdarkly_api/models/user_segment_rule'
67
+ require 'launchdarkly_api/models/user_segments'
68
+ require 'launchdarkly_api/models/user_settings_body'
69
+ require 'launchdarkly_api/models/users'
70
+ require 'launchdarkly_api/models/variation'
71
+ require 'launchdarkly_api/models/webhook'
72
+ require 'launchdarkly_api/models/webhook_body'
73
+ require 'launchdarkly_api/models/webhooks'
74
+ require 'launchdarkly_api/models/weighted_variation'
75
+
76
+ # APIs
77
+ require 'launchdarkly_api/api/audit_log_api'
78
+ require 'launchdarkly_api/api/custom_roles_api'
79
+ require 'launchdarkly_api/api/environments_api'
80
+ require 'launchdarkly_api/api/feature_flags_api'
81
+ require 'launchdarkly_api/api/projects_api'
82
+ require 'launchdarkly_api/api/root_api'
83
+ require 'launchdarkly_api/api/team_members_api'
84
+ require 'launchdarkly_api/api/user_segments_api'
85
+ require 'launchdarkly_api/api/user_settings_api'
86
+ require 'launchdarkly_api/api/users_api'
87
+ require 'launchdarkly_api/api/webhooks_api'
88
+
89
+ module LaunchDarklyApi
90
+ class << self
91
+ # Customize default settings for the SDK using block.
92
+ # LaunchDarklyApi.configure do |config|
93
+ # config.username = "xxx"
94
+ # config.password = "xxx"
95
+ # end
96
+ # If no block given, return the default Configuration object.
97
+ def configure
98
+ if block_given?
99
+ yield(Configuration.default)
100
+ else
101
+ Configuration.default
102
+ end
103
+ end
104
+ end
105
+ end
Binary file
@@ -0,0 +1,63 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for LaunchDarklyApi::AuditLogApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'AuditLogApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = LaunchDarklyApi::AuditLogApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of AuditLogApi' do
30
+ it 'should create an instance of AuditLogApi' do
31
+ expect(@instance).to be_instance_of(LaunchDarklyApi::AuditLogApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for get_audit_log_entries
36
+ # Get a list of all audit log entries. The query parameters allow you to restrict the returned results by date ranges, resource specifiers, or a full-text search query.
37
+ #
38
+ # @param [Hash] opts the optional parameters
39
+ # @option opts [Float] :before A timestamp filter, expressed as a Unix epoch time in milliseconds. All entries returned will have before this timestamp.
40
+ # @option opts [Float] :after A timestamp filter, expressed as a Unix epoch time in milliseconds. All entries returned will have occured after this timestamp.
41
+ # @option opts [String] :q Text to search for. You can search for the full or partial name of the resource involved or fullpartial email address of the member who made the change.
42
+ # @option opts [Float] :limit A limit on the number of audit log entries to be returned, between 1 and 20.
43
+ # @option opts [String] :spec A resource specifier, allowing you to filter audit log listings by resource.
44
+ # @return [AuditLogEntries]
45
+ describe 'get_audit_log_entries test' do
46
+ it "should work" do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
51
+ # unit tests for get_audit_log_entry
52
+ # Use this endpoint to fetch a single audit log entry by its resouce ID.
53
+ #
54
+ # @param resource_id The resource ID.
55
+ # @param [Hash] opts the optional parameters
56
+ # @return [AuditLogEntry]
57
+ describe 'get_audit_log_entry test' do
58
+ it "should work" do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ end
@@ -0,0 +1,95 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for LaunchDarklyApi::CustomRolesApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'CustomRolesApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = LaunchDarklyApi::CustomRolesApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of CustomRolesApi' do
30
+ it 'should create an instance of CustomRolesApi' do
31
+ expect(@instance).to be_instance_of(LaunchDarklyApi::CustomRolesApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for delete_custom_role
36
+ # Delete a custom role by key.
37
+ #
38
+ # @param custom_role_key The custom role key.
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [nil]
41
+ describe 'delete_custom_role test' do
42
+ it "should work" do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for get_custom_role
48
+ # Get one custom role by key.
49
+ #
50
+ # @param custom_role_key The custom role key.
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [CustomRole]
53
+ describe 'get_custom_role test' do
54
+ it "should work" do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ # unit tests for get_custom_roles
60
+ # Return a complete list of custom roles.
61
+ #
62
+ # @param [Hash] opts the optional parameters
63
+ # @return [CustomRoles]
64
+ describe 'get_custom_roles test' do
65
+ it "should work" do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ # unit tests for patch_custom_role
71
+ # Modify a custom role by key.
72
+ #
73
+ # @param custom_role_key The custom role key.
74
+ # @param patch_delta Requires a JSON Patch representation of the desired changes to the project. &#39;http://jsonpatch.com/&#39;
75
+ # @param [Hash] opts the optional parameters
76
+ # @return [CustomRole]
77
+ describe 'patch_custom_role test' do
78
+ it "should work" do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ # unit tests for post_custom_role
84
+ # Create a new custom role.
85
+ #
86
+ # @param custom_role_body New role or roles to create.
87
+ # @param [Hash] opts the optional parameters
88
+ # @return [nil]
89
+ describe 'post_custom_role test' do
90
+ it "should work" do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ end
@@ -0,0 +1,88 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for LaunchDarklyApi::EnvironmentsApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'EnvironmentsApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = LaunchDarklyApi::EnvironmentsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of EnvironmentsApi' do
30
+ it 'should create an instance of EnvironmentsApi' do
31
+ expect(@instance).to be_instance_of(LaunchDarklyApi::EnvironmentsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for delete_environment
36
+ # Delete an environment in a specific project.
37
+ #
38
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
39
+ # @param environment_key The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
40
+ # @param [Hash] opts the optional parameters
41
+ # @return [nil]
42
+ describe 'delete_environment test' do
43
+ it "should work" do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
48
+ # unit tests for get_environment
49
+ # Get an environment given a project and key.
50
+ #
51
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
52
+ # @param environment_key The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
53
+ # @param [Hash] opts the optional parameters
54
+ # @return [Environment]
55
+ describe 'get_environment 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
+
61
+ # unit tests for patch_environment
62
+ # Modify an environment by ID.
63
+ #
64
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
65
+ # @param environment_key The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
66
+ # @param patch_delta Requires a JSON Patch representation of the desired changes to the project. &#39;http://jsonpatch.com/&#39;
67
+ # @param [Hash] opts the optional parameters
68
+ # @return [Environment]
69
+ describe 'patch_environment test' do
70
+ it "should work" do
71
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
72
+ end
73
+ end
74
+
75
+ # unit tests for post_environment
76
+ # Create a new environment in a specified project with a given name, key, and swatch color.
77
+ #
78
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
79
+ # @param environment_body New environment.
80
+ # @param [Hash] opts the optional parameters
81
+ # @return [nil]
82
+ describe 'post_environment test' do
83
+ it "should work" do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ end
@@ -0,0 +1,130 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for LaunchDarklyApi::FeatureFlagsApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'FeatureFlagsApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = LaunchDarklyApi::FeatureFlagsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of FeatureFlagsApi' do
30
+ it 'should create an instance of FeatureFlagsApi' do
31
+ expect(@instance).to be_instance_of(LaunchDarklyApi::FeatureFlagsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for delete_feature_flag
36
+ # Delete a feature flag in all environments. Be careful-- only delete feature flags that are no longer being used by your application.
37
+ #
38
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
39
+ # @param feature_flag_key The feature flag&#39;s key. The key identifies the flag in your code.
40
+ # @param [Hash] opts the optional parameters
41
+ # @return [nil]
42
+ describe 'delete_feature_flag test' do
43
+ it "should work" do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
48
+ # unit tests for get_feature_flag
49
+ # Get a single feature flag by key.
50
+ #
51
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
52
+ # @param feature_flag_key The feature flag&#39;s key. The key identifies the flag in your code.
53
+ # @param [Hash] opts the optional parameters
54
+ # @option opts [String] :env By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env&#x3D;production will restrict the returned configurations to just your production environment.
55
+ # @return [FeatureFlag]
56
+ describe 'get_feature_flag test' do
57
+ it "should work" do
58
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
59
+ end
60
+ end
61
+
62
+ # unit tests for get_feature_flag_status
63
+ # Get the status for a particular feature flag.
64
+ #
65
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
66
+ # @param environment_key The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
67
+ # @param feature_flag_key The feature flag&#39;s key. The key identifies the flag in your code.
68
+ # @param [Hash] opts the optional parameters
69
+ # @return [FeatureFlagStatus]
70
+ describe 'get_feature_flag_status test' do
71
+ it "should work" do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ # unit tests for get_feature_flag_statuses
77
+ # Get a list of statuses for all feature flags. The status includes the last time the feature flag was requested, as well as the state of the flag.
78
+ #
79
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
80
+ # @param environment_key The environment key, used to tie together flag configuration and users under one environment so they can be managed together.
81
+ # @param [Hash] opts the optional parameters
82
+ # @return [FeatureFlagStatuses]
83
+ describe 'get_feature_flag_statuses test' do
84
+ it "should work" do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ # unit tests for get_feature_flags
90
+ # Get a list of all features in the given project.
91
+ #
92
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
93
+ # @param [Hash] opts the optional parameters
94
+ # @option opts [String] :env By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env&#x3D;production will restrict the returned configurations to just your production environment.
95
+ # @option opts [String] :tag Filter by tag. A tag can be used to group flags across projects.
96
+ # @return [FeatureFlags]
97
+ describe 'get_feature_flags test' do
98
+ it "should work" do
99
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
100
+ end
101
+ end
102
+
103
+ # unit tests for patch_feature_flag
104
+ # Perform a partial update to a feature.
105
+ #
106
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
107
+ # @param feature_flag_key The feature flag&#39;s key. The key identifies the flag in your code.
108
+ # @param patch_comment Requires a JSON Patch representation of the desired changes to the project, and an optional comment. &#39;http://jsonpatch.com/&#39; Feature flag patches also support JSON Merge Patch format. &#39;https://tools.ietf.org/html/rfc7386&#39; The addition of comments is also supported.
109
+ # @param [Hash] opts the optional parameters
110
+ # @return [FeatureFlag]
111
+ describe 'patch_feature_flag test' do
112
+ it "should work" do
113
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
114
+ end
115
+ end
116
+
117
+ # unit tests for post_feature_flag
118
+ # Creates a new feature flag.
119
+ #
120
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
121
+ # @param feature_flag_body Create a new feature flag.
122
+ # @param [Hash] opts the optional parameters
123
+ # @return [nil]
124
+ describe 'post_feature_flag test' do
125
+ it "should work" do
126
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
+ end
128
+ end
129
+
130
+ end
@@ -0,0 +1,95 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for LaunchDarklyApi::ProjectsApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'ProjectsApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = LaunchDarklyApi::ProjectsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of ProjectsApi' do
30
+ it 'should create an instance of ProjectsApi' do
31
+ expect(@instance).to be_instance_of(LaunchDarklyApi::ProjectsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for delete_project
36
+ # Delete a project by key. Caution-- deleting a project will delete all associated environments and feature flags. You cannot delete the last project in an account.
37
+ #
38
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [nil]
41
+ describe 'delete_project test' do
42
+ it "should work" do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for get_project
48
+ # Fetch a single project by key.
49
+ #
50
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [Project]
53
+ describe 'get_project test' do
54
+ it "should work" do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ # unit tests for get_projects
60
+ # Returns a list of all projects in the account.
61
+ #
62
+ # @param [Hash] opts the optional parameters
63
+ # @return [Projects]
64
+ describe 'get_projects test' do
65
+ it "should work" do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ # unit tests for patch_project
71
+ # Modify a project by ID.
72
+ #
73
+ # @param project_key The project key, used to tie the flags together under one project so they can be managed together.
74
+ # @param patch_delta Requires a JSON Patch representation of the desired changes to the project. &#39;http://jsonpatch.com/&#39;
75
+ # @param [Hash] opts the optional parameters
76
+ # @return [Project]
77
+ describe 'patch_project test' do
78
+ it "should work" do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ # unit tests for post_project
84
+ # Create a new project with the given key and name.
85
+ #
86
+ # @param project_body Project keys must be unique within an account.
87
+ # @param [Hash] opts the optional parameters
88
+ # @return [nil]
89
+ describe 'post_project test' do
90
+ it "should work" do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #LaunchDarkly REST API
3
+
4
+ #Build custom integrations with the LaunchDarkly REST API
5
+
6
+ OpenAPI spec version: 2.0.3
7
+ Contact: support@launchdarkly.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for LaunchDarklyApi::RootApi
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'RootApi' do
20
+ before do
21
+ # run before each test
22
+ @instance = LaunchDarklyApi::RootApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of RootApi' do
30
+ it 'should create an instance of RootApi' do
31
+ expect(@instance).to be_instance_of(LaunchDarklyApi::RootApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for get_root
36
+ #
37
+ # You can issue a GET request to the root resource to find all of the resource categories supported by the API.
38
+ # @param [Hash] opts the optional parameters
39
+ # @return [Links]
40
+ describe 'get_root test' do
41
+ it "should work" do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end