permit-sdk 0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/api/api.rb +25 -0
- data/lib/api/base.rb +26 -0
- data/lib/api/resources.rb +13 -0
- data/lib/api/tenants.rb +11 -0
- data/lib/api/users.rb +50 -0
- data/lib/config.rb +23 -0
- data/lib/openapi_client/api/api_keys_api.rb +413 -0
- data/lib/openapi_client/api/audit_elements_data_api.rb +118 -0
- data/lib/openapi_client/api/audit_logs_api.rb +204 -0
- data/lib/openapi_client/api/authentication_api.rb +512 -0
- data/lib/openapi_client/api/condition_set_rules_api.rb +278 -0
- data/lib/openapi_client/api/condition_sets_api.rb +428 -0
- data/lib/openapi_client/api/decision_logs_api.rb +128 -0
- data/lib/openapi_client/api/decision_logs_ingress_api.rb +90 -0
- data/lib/openapi_client/api/default_api.rb +297 -0
- data/lib/openapi_client/api/elements_configs_api.rb +657 -0
- data/lib/openapi_client/api/environments_api.rb +462 -0
- data/lib/openapi_client/api/instructions_api.rb +91 -0
- data/lib/openapi_client/api/members_api.rb +354 -0
- data/lib/openapi_client/api/opal_data_api.rb +343 -0
- data/lib/openapi_client/api/organizations_api.rb +652 -0
- data/lib/openapi_client/api/policy_api.rb +138 -0
- data/lib/openapi_client/api/policy_decision_points_api.rb +382 -0
- data/lib/openapi_client/api/policy_git_repositories_api.rb +510 -0
- data/lib/openapi_client/api/projects_api.rb +365 -0
- data/lib/openapi_client/api/resource_actions_api.rb +455 -0
- data/lib/openapi_client/api/resource_attributes_api.rb +473 -0
- data/lib/openapi_client/api/resource_instances_api.rb +425 -0
- data/lib/openapi_client/api/resource_roles_api.rb +813 -0
- data/lib/openapi_client/api/resources_api.rb +514 -0
- data/lib/openapi_client/api/role_assignments_api.rb +278 -0
- data/lib/openapi_client/api/roles_api.rb +759 -0
- data/lib/openapi_client/api/tenants_api.rb +603 -0
- data/lib/openapi_client/api/user_attributes_api.rb +458 -0
- data/lib/openapi_client/api/users_api.rb +684 -0
- data/lib/openapi_client/api/users_elements_data_api.rb +638 -0
- data/lib/openapi_client/api_client.rb +392 -0
- data/lib/openapi_client/api_error.rb +57 -0
- data/lib/openapi_client/configuration.rb +280 -0
- data/lib/openapi_client/models/action_block_editable.rb +230 -0
- data/lib/openapi_client/models/action_block_read.rb +255 -0
- data/lib/openapi_client/models/action_object.rb +275 -0
- data/lib/openapi_client/models/actor.rb +57 -0
- data/lib/openapi_client/models/add_role_permissions.rb +227 -0
- data/lib/openapi_client/models/api_key_create.rb +269 -0
- data/lib/openapi_client/models/api_key_owner_type.rb +41 -0
- data/lib/openapi_client/models/api_key_read.rb +329 -0
- data/lib/openapi_client/models/api_key_scope_read.rb +245 -0
- data/lib/openapi_client/models/attribute_block_editable.rb +235 -0
- data/lib/openapi_client/models/attribute_block_read.rb +260 -0
- data/lib/openapi_client/models/attribute_type.rb +44 -0
- data/lib/openapi_client/models/attributes.rb +231 -0
- data/lib/openapi_client/models/audit_log.rb +415 -0
- data/lib/openapi_client/models/audit_log_objects.rb +282 -0
- data/lib/openapi_client/models/authn_me_api_key_read.rb +329 -0
- data/lib/openapi_client/models/authn_me_member_read.rb +352 -0
- data/lib/openapi_client/models/authn_me_read.rb +224 -0
- data/lib/openapi_client/models/authn_me_user_read.rb +440 -0
- data/lib/openapi_client/models/condition_set_create.rb +340 -0
- data/lib/openapi_client/models/condition_set_read.rb +409 -0
- data/lib/openapi_client/models/condition_set_rule_create.rb +279 -0
- data/lib/openapi_client/models/condition_set_rule_read.rb +360 -0
- data/lib/openapi_client/models/condition_set_rule_remove.rb +279 -0
- data/lib/openapi_client/models/condition_set_type.rb +40 -0
- data/lib/openapi_client/models/condition_set_update.rb +255 -0
- data/lib/openapi_client/models/data_source_config.rb +228 -0
- data/lib/openapi_client/models/data_source_entry.rb +272 -0
- data/lib/openapi_client/models/detailed_audit_log.rb +443 -0
- data/lib/openapi_client/models/dev_login.rb +225 -0
- data/lib/openapi_client/models/dummy_engine_model.rb +229 -0
- data/lib/openapi_client/models/elements_config_create.rb +319 -0
- data/lib/openapi_client/models/elements_config_read.rb +402 -0
- data/lib/openapi_client/models/elements_config_runtime_read.rb +238 -0
- data/lib/openapi_client/models/elements_config_update.rb +268 -0
- data/lib/openapi_client/models/elements_env_type_read.rb +242 -0
- data/lib/openapi_client/models/elements_env_type_update.rb +222 -0
- data/lib/openapi_client/models/elements_permission_level.rb +44 -0
- data/lib/openapi_client/models/elements_role_read.rb +378 -0
- data/lib/openapi_client/models/elements_type.rb +41 -0
- data/lib/openapi_client/models/elements_user_create.rb +295 -0
- data/lib/openapi_client/models/elements_user_role_create.rb +225 -0
- data/lib/openapi_client/models/elements_user_role_remove.rb +225 -0
- data/lib/openapi_client/models/embedded_login_request_output.rb +265 -0
- data/lib/openapi_client/models/engine.rb +39 -0
- data/lib/openapi_client/models/environment_create.rb +281 -0
- data/lib/openapi_client/models/environment_object.rb +295 -0
- data/lib/openapi_client/models/environment_read.rb +335 -0
- data/lib/openapi_client/models/environment_stats.rb +365 -0
- data/lib/openapi_client/models/environment_update.rb +240 -0
- data/lib/openapi_client/models/failed_invite.rb +238 -0
- data/lib/openapi_client/models/full_data.rb +258 -0
- data/lib/openapi_client/models/http_validation_error.rb +221 -0
- data/lib/openapi_client/models/identity_read.rb +300 -0
- data/lib/openapi_client/models/invite_attempt_result.rb +232 -0
- data/lib/openapi_client/models/invite_create.rb +240 -0
- data/lib/openapi_client/models/invite_read.rb +325 -0
- data/lib/openapi_client/models/invite_status.rb +42 -0
- data/lib/openapi_client/models/labels.rb +238 -0
- data/lib/openapi_client/models/language_instructions.rb +252 -0
- data/lib/openapi_client/models/location_inner.rb +230 -0
- data/lib/openapi_client/models/login_result.rb +259 -0
- data/lib/openapi_client/models/member_access_level.rb +41 -0
- data/lib/openapi_client/models/member_access_obj.rb +41 -0
- data/lib/openapi_client/models/multi_invite_result.rb +238 -0
- data/lib/openapi_client/models/onboarding_step.rb +46 -0
- data/lib/openapi_client/models/opa_decision_log.rb +288 -0
- data/lib/openapi_client/models/opa_engine_decision_log.rb +345 -0
- data/lib/openapi_client/models/opa_labels.rb +238 -0
- data/lib/openapi_client/models/opa_metrics.rb +273 -0
- data/lib/openapi_client/models/opal_client.rb +305 -0
- data/lib/openapi_client/models/org_member_read.rb +420 -0
- data/lib/openapi_client/models/org_member_update.rb +230 -0
- data/lib/openapi_client/models/organization_create.rb +292 -0
- data/lib/openapi_client/models/organization_object.rb +295 -0
- data/lib/openapi_client/models/organization_read.rb +295 -0
- data/lib/openapi_client/models/organization_read_with_api_key.rb +313 -0
- data/lib/openapi_client/models/organization_update.rb +247 -0
- data/lib/openapi_client/models/paginated_result_api_key_read.rb +285 -0
- data/lib/openapi_client/models/paginated_result_audit_log.rb +285 -0
- data/lib/openapi_client/models/paginated_result_elements_config_read.rb +285 -0
- data/lib/openapi_client/models/paginated_result_opa_decision_log.rb +285 -0
- data/lib/openapi_client/models/paginated_result_user_read.rb +285 -0
- data/lib/openapi_client/models/pdp.rb +259 -0
- data/lib/openapi_client/models/pdp_config_object.rb +258 -0
- data/lib/openapi_client/models/pdp_config_read.rb +292 -0
- data/lib/openapi_client/models/pdp_context.rb +291 -0
- data/lib/openapi_client/models/pdp_state.rb +224 -0
- data/lib/openapi_client/models/pdp_state_update.rb +238 -0
- data/lib/openapi_client/models/pdp_values.rb +252 -0
- data/lib/openapi_client/models/permission_level_role_read.rb +254 -0
- data/lib/openapi_client/models/policy_repo_create.rb +318 -0
- data/lib/openapi_client/models/policy_repo_read.rb +347 -0
- data/lib/openapi_client/models/policy_repo_status.rb +41 -0
- data/lib/openapi_client/models/programming_language.rb +43 -0
- data/lib/openapi_client/models/project_create.rb +318 -0
- data/lib/openapi_client/models/project_object.rb +295 -0
- data/lib/openapi_client/models/project_read.rb +357 -0
- data/lib/openapi_client/models/project_update.rb +250 -0
- data/lib/openapi_client/models/raw_data.rb +329 -0
- data/lib/openapi_client/models/relationship_tuple_object.rb +252 -0
- data/lib/openapi_client/models/remote_config.rb +256 -0
- data/lib/openapi_client/models/remove_role_permissions.rb +227 -0
- data/lib/openapi_client/models/resource_action_create.rb +271 -0
- data/lib/openapi_client/models/resource_action_read.rb +370 -0
- data/lib/openapi_client/models/resource_action_update.rb +230 -0
- data/lib/openapi_client/models/resource_attribute_create.rb +271 -0
- data/lib/openapi_client/models/resource_attribute_read.rb +370 -0
- data/lib/openapi_client/models/resource_attribute_update.rb +230 -0
- data/lib/openapi_client/models/resource_attributes.rb +238 -0
- data/lib/openapi_client/models/resource_create.rb +310 -0
- data/lib/openapi_client/models/resource_id.rb +230 -0
- data/lib/openapi_client/models/resource_instance_create.rb +281 -0
- data/lib/openapi_client/models/resource_instance_read.rb +375 -0
- data/lib/openapi_client/models/resource_instance_update.rb +220 -0
- data/lib/openapi_client/models/resource_read.rb +374 -0
- data/lib/openapi_client/models/resource_replace.rb +274 -0
- data/lib/openapi_client/models/resource_role_create.rb +295 -0
- data/lib/openapi_client/models/resource_role_read.rb +379 -0
- data/lib/openapi_client/models/resource_role_update.rb +254 -0
- data/lib/openapi_client/models/resource_type_object.rb +286 -0
- data/lib/openapi_client/models/resource_update.rb +264 -0
- data/lib/openapi_client/models/role_assignment_create.rb +255 -0
- data/lib/openapi_client/models/role_assignment_read.rb +375 -0
- data/lib/openapi_client/models/role_assignment_remove.rb +255 -0
- data/lib/openapi_client/models/role_block.rb +244 -0
- data/lib/openapi_client/models/role_create.rb +295 -0
- data/lib/openapi_client/models/role_data.rb +221 -0
- data/lib/openapi_client/models/role_read.rb +364 -0
- data/lib/openapi_client/models/role_update.rb +254 -0
- data/lib/openapi_client/models/settings.rb +231 -0
- data/lib/openapi_client/models/ssh_auth_data.rb +295 -0
- data/lib/openapi_client/models/statistics.rb +389 -0
- data/lib/openapi_client/models/tenant_create.rb +281 -0
- data/lib/openapi_client/models/tenant_object.rb +284 -0
- data/lib/openapi_client/models/tenant_read.rb +365 -0
- data/lib/openapi_client/models/tenant_update.rb +240 -0
- data/lib/openapi_client/models/user_create.rb +286 -0
- data/lib/openapi_client/models/user_data.rb +232 -0
- data/lib/openapi_client/models/user_login_request_input.rb +240 -0
- data/lib/openapi_client/models/user_object.rb +313 -0
- data/lib/openapi_client/models/user_read.rb +336 -0
- data/lib/openapi_client/models/user_role.rb +240 -0
- data/lib/openapi_client/models/user_role_create.rb +240 -0
- data/lib/openapi_client/models/user_role_remove.rb +240 -0
- data/lib/openapi_client/models/user_update.rb +250 -0
- data/lib/openapi_client/models/validation_error.rb +254 -0
- data/lib/openapi_client/models/webhook_create.rb +235 -0
- data/lib/openapi_client/models/webhook_read.rb +315 -0
- data/lib/openapi_client/models/webhook_update.rb +230 -0
- data/lib/openapi_client/version.rb +15 -0
- data/lib/openapi_client.rb +220 -0
- data/lib/permit.rb +58 -0
- metadata +249 -0
@@ -0,0 +1,657 @@
|
|
1
|
+
=begin
|
2
|
+
#Permit.io API
|
3
|
+
|
4
|
+
# Authorization as a service
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.2.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'cgi'
|
14
|
+
|
15
|
+
module OpenapiClient
|
16
|
+
class ElementsConfigsApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Create Elements Config
|
23
|
+
# Creates a new elements_config under the active organization.
|
24
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
25
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
26
|
+
# @param elements_config_create [ElementsConfigCreate]
|
27
|
+
# @param [Hash] opts the optional parameters
|
28
|
+
# @return [ElementsConfigRead]
|
29
|
+
def create_elements_config(proj_id, env_id, elements_config_create, opts = {})
|
30
|
+
data, _status_code, _headers = create_elements_config_with_http_info(proj_id, env_id, elements_config_create, opts)
|
31
|
+
data
|
32
|
+
end
|
33
|
+
|
34
|
+
# Create Elements Config
|
35
|
+
# Creates a new elements_config under the active organization.
|
36
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
37
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
38
|
+
# @param elements_config_create [ElementsConfigCreate]
|
39
|
+
# @param [Hash] opts the optional parameters
|
40
|
+
# @return [Array<(ElementsConfigRead, Integer, Hash)>] ElementsConfigRead data, response status code and response headers
|
41
|
+
def create_elements_config_with_http_info(proj_id, env_id, elements_config_create, opts = {})
|
42
|
+
if @api_client.config.debugging
|
43
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.create_elements_config ...'
|
44
|
+
end
|
45
|
+
# verify the required parameter 'proj_id' is set
|
46
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
47
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.create_elements_config"
|
48
|
+
end
|
49
|
+
# verify the required parameter 'env_id' is set
|
50
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
51
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.create_elements_config"
|
52
|
+
end
|
53
|
+
# verify the required parameter 'elements_config_create' is set
|
54
|
+
if @api_client.config.client_side_validation && elements_config_create.nil?
|
55
|
+
fail ArgumentError, "Missing the required parameter 'elements_config_create' when calling ElementsConfigsApi.create_elements_config"
|
56
|
+
end
|
57
|
+
# resource path
|
58
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/config'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s))
|
59
|
+
|
60
|
+
# query parameters
|
61
|
+
query_params = opts[:query_params] || {}
|
62
|
+
|
63
|
+
# header parameters
|
64
|
+
header_params = opts[:header_params] || {}
|
65
|
+
# HTTP header 'Accept' (if needed)
|
66
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
67
|
+
# HTTP header 'Content-Type'
|
68
|
+
content_type = @api_client.select_header_content_type(['application/json'])
|
69
|
+
if !content_type.nil?
|
70
|
+
header_params['Content-Type'] = content_type
|
71
|
+
end
|
72
|
+
|
73
|
+
# form parameters
|
74
|
+
form_params = opts[:form_params] || {}
|
75
|
+
|
76
|
+
# http body (model)
|
77
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(elements_config_create)
|
78
|
+
|
79
|
+
# return_type
|
80
|
+
return_type = opts[:debug_return_type] || 'ElementsConfigRead'
|
81
|
+
|
82
|
+
# auth_names
|
83
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
84
|
+
|
85
|
+
new_options = opts.merge(
|
86
|
+
:operation => :"ElementsConfigsApi.create_elements_config",
|
87
|
+
:header_params => header_params,
|
88
|
+
:query_params => query_params,
|
89
|
+
:form_params => form_params,
|
90
|
+
:body => post_body,
|
91
|
+
:auth_names => auth_names,
|
92
|
+
:return_type => return_type
|
93
|
+
)
|
94
|
+
|
95
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
96
|
+
if @api_client.config.debugging
|
97
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#create_elements_config\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
98
|
+
end
|
99
|
+
return data, status_code, headers
|
100
|
+
end
|
101
|
+
|
102
|
+
# Delete Elements Config
|
103
|
+
# Deletes the elements_config and all its related data.
|
104
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
105
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
106
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
107
|
+
# @param [Hash] opts the optional parameters
|
108
|
+
# @return [nil]
|
109
|
+
def delete_elements_config(elements_config_id, proj_id, env_id, opts = {})
|
110
|
+
delete_elements_config_with_http_info(elements_config_id, proj_id, env_id, opts)
|
111
|
+
nil
|
112
|
+
end
|
113
|
+
|
114
|
+
# Delete Elements Config
|
115
|
+
# Deletes the elements_config and all its related data.
|
116
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
117
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
118
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
119
|
+
# @param [Hash] opts the optional parameters
|
120
|
+
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
|
121
|
+
def delete_elements_config_with_http_info(elements_config_id, proj_id, env_id, opts = {})
|
122
|
+
if @api_client.config.debugging
|
123
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.delete_elements_config ...'
|
124
|
+
end
|
125
|
+
# verify the required parameter 'elements_config_id' is set
|
126
|
+
if @api_client.config.client_side_validation && elements_config_id.nil?
|
127
|
+
fail ArgumentError, "Missing the required parameter 'elements_config_id' when calling ElementsConfigsApi.delete_elements_config"
|
128
|
+
end
|
129
|
+
# verify the required parameter 'proj_id' is set
|
130
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
131
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.delete_elements_config"
|
132
|
+
end
|
133
|
+
# verify the required parameter 'env_id' is set
|
134
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
135
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.delete_elements_config"
|
136
|
+
end
|
137
|
+
# resource path
|
138
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/{elements_config_id}'.sub('{' + 'elements_config_id' + '}', CGI.escape(elements_config_id.to_s)).sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s))
|
139
|
+
|
140
|
+
# query parameters
|
141
|
+
query_params = opts[:query_params] || {}
|
142
|
+
|
143
|
+
# header parameters
|
144
|
+
header_params = opts[:header_params] || {}
|
145
|
+
# HTTP header 'Accept' (if needed)
|
146
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
147
|
+
|
148
|
+
# form parameters
|
149
|
+
form_params = opts[:form_params] || {}
|
150
|
+
|
151
|
+
# http body (model)
|
152
|
+
post_body = opts[:debug_body]
|
153
|
+
|
154
|
+
# return_type
|
155
|
+
return_type = opts[:debug_return_type]
|
156
|
+
|
157
|
+
# auth_names
|
158
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
159
|
+
|
160
|
+
new_options = opts.merge(
|
161
|
+
:operation => :"ElementsConfigsApi.delete_elements_config",
|
162
|
+
:header_params => header_params,
|
163
|
+
:query_params => query_params,
|
164
|
+
:form_params => form_params,
|
165
|
+
:body => post_body,
|
166
|
+
:auth_names => auth_names,
|
167
|
+
:return_type => return_type
|
168
|
+
)
|
169
|
+
|
170
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
|
171
|
+
if @api_client.config.debugging
|
172
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#delete_elements_config\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
173
|
+
end
|
174
|
+
return data, status_code, headers
|
175
|
+
end
|
176
|
+
|
177
|
+
# Get Elements Config
|
178
|
+
# Gets a single elements_config matching the given elements_config_id, if such elements_config exists.
|
179
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
180
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
181
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
182
|
+
# @param [Hash] opts the optional parameters
|
183
|
+
# @return [ElementsConfigRead]
|
184
|
+
def get_elements_config(proj_id, env_id, elements_config_id, opts = {})
|
185
|
+
data, _status_code, _headers = get_elements_config_with_http_info(proj_id, env_id, elements_config_id, opts)
|
186
|
+
data
|
187
|
+
end
|
188
|
+
|
189
|
+
# Get Elements Config
|
190
|
+
# Gets a single elements_config matching the given elements_config_id, if such elements_config exists.
|
191
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
192
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
193
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
194
|
+
# @param [Hash] opts the optional parameters
|
195
|
+
# @return [Array<(ElementsConfigRead, Integer, Hash)>] ElementsConfigRead data, response status code and response headers
|
196
|
+
def get_elements_config_with_http_info(proj_id, env_id, elements_config_id, opts = {})
|
197
|
+
if @api_client.config.debugging
|
198
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.get_elements_config ...'
|
199
|
+
end
|
200
|
+
# verify the required parameter 'proj_id' is set
|
201
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
202
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.get_elements_config"
|
203
|
+
end
|
204
|
+
# verify the required parameter 'env_id' is set
|
205
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
206
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.get_elements_config"
|
207
|
+
end
|
208
|
+
# verify the required parameter 'elements_config_id' is set
|
209
|
+
if @api_client.config.client_side_validation && elements_config_id.nil?
|
210
|
+
fail ArgumentError, "Missing the required parameter 'elements_config_id' when calling ElementsConfigsApi.get_elements_config"
|
211
|
+
end
|
212
|
+
# resource path
|
213
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/config/{elements_config_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'elements_config_id' + '}', CGI.escape(elements_config_id.to_s))
|
214
|
+
|
215
|
+
# query parameters
|
216
|
+
query_params = opts[:query_params] || {}
|
217
|
+
|
218
|
+
# header parameters
|
219
|
+
header_params = opts[:header_params] || {}
|
220
|
+
# HTTP header 'Accept' (if needed)
|
221
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
222
|
+
|
223
|
+
# form parameters
|
224
|
+
form_params = opts[:form_params] || {}
|
225
|
+
|
226
|
+
# http body (model)
|
227
|
+
post_body = opts[:debug_body]
|
228
|
+
|
229
|
+
# return_type
|
230
|
+
return_type = opts[:debug_return_type] || 'ElementsConfigRead'
|
231
|
+
|
232
|
+
# auth_names
|
233
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
234
|
+
|
235
|
+
new_options = opts.merge(
|
236
|
+
:operation => :"ElementsConfigsApi.get_elements_config",
|
237
|
+
:header_params => header_params,
|
238
|
+
:query_params => query_params,
|
239
|
+
:form_params => form_params,
|
240
|
+
:body => post_body,
|
241
|
+
:auth_names => auth_names,
|
242
|
+
:return_type => return_type
|
243
|
+
)
|
244
|
+
|
245
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
246
|
+
if @api_client.config.debugging
|
247
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#get_elements_config\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
248
|
+
end
|
249
|
+
return data, status_code, headers
|
250
|
+
end
|
251
|
+
|
252
|
+
# Get Elements Config Runtime
|
253
|
+
# Gets a single elements_config matching the given elements_config_id, if such elements_config exists.
|
254
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
255
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
256
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
257
|
+
# @param [Hash] opts the optional parameters
|
258
|
+
# @return [ElementsConfigRuntimeRead]
|
259
|
+
def get_elements_config_runtime(proj_id, env_id, elements_config_id, opts = {})
|
260
|
+
data, _status_code, _headers = get_elements_config_runtime_with_http_info(proj_id, env_id, elements_config_id, opts)
|
261
|
+
data
|
262
|
+
end
|
263
|
+
|
264
|
+
# Get Elements Config Runtime
|
265
|
+
# Gets a single elements_config matching the given elements_config_id, if such elements_config exists.
|
266
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
267
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
268
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
269
|
+
# @param [Hash] opts the optional parameters
|
270
|
+
# @return [Array<(ElementsConfigRuntimeRead, Integer, Hash)>] ElementsConfigRuntimeRead data, response status code and response headers
|
271
|
+
def get_elements_config_runtime_with_http_info(proj_id, env_id, elements_config_id, opts = {})
|
272
|
+
if @api_client.config.debugging
|
273
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.get_elements_config_runtime ...'
|
274
|
+
end
|
275
|
+
# verify the required parameter 'proj_id' is set
|
276
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
277
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.get_elements_config_runtime"
|
278
|
+
end
|
279
|
+
# verify the required parameter 'env_id' is set
|
280
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
281
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.get_elements_config_runtime"
|
282
|
+
end
|
283
|
+
# verify the required parameter 'elements_config_id' is set
|
284
|
+
if @api_client.config.client_side_validation && elements_config_id.nil?
|
285
|
+
fail ArgumentError, "Missing the required parameter 'elements_config_id' when calling ElementsConfigsApi.get_elements_config_runtime"
|
286
|
+
end
|
287
|
+
# resource path
|
288
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/config/{elements_config_id}/runtime'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'elements_config_id' + '}', CGI.escape(elements_config_id.to_s))
|
289
|
+
|
290
|
+
# query parameters
|
291
|
+
query_params = opts[:query_params] || {}
|
292
|
+
|
293
|
+
# header parameters
|
294
|
+
header_params = opts[:header_params] || {}
|
295
|
+
# HTTP header 'Accept' (if needed)
|
296
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
297
|
+
|
298
|
+
# form parameters
|
299
|
+
form_params = opts[:form_params] || {}
|
300
|
+
|
301
|
+
# http body (model)
|
302
|
+
post_body = opts[:debug_body]
|
303
|
+
|
304
|
+
# return_type
|
305
|
+
return_type = opts[:debug_return_type] || 'ElementsConfigRuntimeRead'
|
306
|
+
|
307
|
+
# auth_names
|
308
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
309
|
+
|
310
|
+
new_options = opts.merge(
|
311
|
+
:operation => :"ElementsConfigsApi.get_elements_config_runtime",
|
312
|
+
:header_params => header_params,
|
313
|
+
:query_params => query_params,
|
314
|
+
:form_params => form_params,
|
315
|
+
:body => post_body,
|
316
|
+
:auth_names => auth_names,
|
317
|
+
:return_type => return_type
|
318
|
+
)
|
319
|
+
|
320
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
321
|
+
if @api_client.config.debugging
|
322
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#get_elements_config_runtime\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
323
|
+
end
|
324
|
+
return data, status_code, headers
|
325
|
+
end
|
326
|
+
|
327
|
+
# Get Elements Type Config
|
328
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
329
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
330
|
+
# @param element_type [ElementsType] Either the unique id of the elements_type, or the URL-friendly key of the elements_type (i.e: the \"slug\").
|
331
|
+
# @param [Hash] opts the optional parameters
|
332
|
+
# @return [ElementsEnvTypeRead]
|
333
|
+
def get_elements_type_config(proj_id, env_id, element_type, opts = {})
|
334
|
+
data, _status_code, _headers = get_elements_type_config_with_http_info(proj_id, env_id, element_type, opts)
|
335
|
+
data
|
336
|
+
end
|
337
|
+
|
338
|
+
# Get Elements Type Config
|
339
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
340
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
341
|
+
# @param element_type [ElementsType] Either the unique id of the elements_type, or the URL-friendly key of the elements_type (i.e: the \"slug\").
|
342
|
+
# @param [Hash] opts the optional parameters
|
343
|
+
# @return [Array<(ElementsEnvTypeRead, Integer, Hash)>] ElementsEnvTypeRead data, response status code and response headers
|
344
|
+
def get_elements_type_config_with_http_info(proj_id, env_id, element_type, opts = {})
|
345
|
+
if @api_client.config.debugging
|
346
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.get_elements_type_config ...'
|
347
|
+
end
|
348
|
+
# verify the required parameter 'proj_id' is set
|
349
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
350
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.get_elements_type_config"
|
351
|
+
end
|
352
|
+
# verify the required parameter 'env_id' is set
|
353
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
354
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.get_elements_type_config"
|
355
|
+
end
|
356
|
+
# verify the required parameter 'element_type' is set
|
357
|
+
if @api_client.config.client_side_validation && element_type.nil?
|
358
|
+
fail ArgumentError, "Missing the required parameter 'element_type' when calling ElementsConfigsApi.get_elements_type_config"
|
359
|
+
end
|
360
|
+
# resource path
|
361
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/{element_type}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'element_type' + '}', CGI.escape(element_type.to_s))
|
362
|
+
|
363
|
+
# query parameters
|
364
|
+
query_params = opts[:query_params] || {}
|
365
|
+
|
366
|
+
# header parameters
|
367
|
+
header_params = opts[:header_params] || {}
|
368
|
+
# HTTP header 'Accept' (if needed)
|
369
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
370
|
+
|
371
|
+
# form parameters
|
372
|
+
form_params = opts[:form_params] || {}
|
373
|
+
|
374
|
+
# http body (model)
|
375
|
+
post_body = opts[:debug_body]
|
376
|
+
|
377
|
+
# return_type
|
378
|
+
return_type = opts[:debug_return_type] || 'ElementsEnvTypeRead'
|
379
|
+
|
380
|
+
# auth_names
|
381
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
382
|
+
|
383
|
+
new_options = opts.merge(
|
384
|
+
:operation => :"ElementsConfigsApi.get_elements_type_config",
|
385
|
+
:header_params => header_params,
|
386
|
+
:query_params => query_params,
|
387
|
+
:form_params => form_params,
|
388
|
+
:body => post_body,
|
389
|
+
:auth_names => auth_names,
|
390
|
+
:return_type => return_type
|
391
|
+
)
|
392
|
+
|
393
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
394
|
+
if @api_client.config.debugging
|
395
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#get_elements_type_config\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
396
|
+
end
|
397
|
+
return data, status_code, headers
|
398
|
+
end
|
399
|
+
|
400
|
+
# List Elements Configs
|
401
|
+
# Lists all the elements_configs under the active organization.
|
402
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
403
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
404
|
+
# @param [Hash] opts the optional parameters
|
405
|
+
# @option opts [Integer] :page Page number of the results to fetch, starting at 1. (default to 1)
|
406
|
+
# @option opts [Integer] :per_page The number of results per page (max 100). (default to 30)
|
407
|
+
# @return [PaginatedResultElementsConfigRead]
|
408
|
+
def list_elements_configs(proj_id, env_id, opts = {})
|
409
|
+
data, _status_code, _headers = list_elements_configs_with_http_info(proj_id, env_id, opts)
|
410
|
+
data
|
411
|
+
end
|
412
|
+
|
413
|
+
# List Elements Configs
|
414
|
+
# Lists all the elements_configs under the active organization.
|
415
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
416
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
417
|
+
# @param [Hash] opts the optional parameters
|
418
|
+
# @option opts [Integer] :page Page number of the results to fetch, starting at 1. (default to 1)
|
419
|
+
# @option opts [Integer] :per_page The number of results per page (max 100). (default to 30)
|
420
|
+
# @return [Array<(PaginatedResultElementsConfigRead, Integer, Hash)>] PaginatedResultElementsConfigRead data, response status code and response headers
|
421
|
+
def list_elements_configs_with_http_info(proj_id, env_id, opts = {})
|
422
|
+
if @api_client.config.debugging
|
423
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.list_elements_configs ...'
|
424
|
+
end
|
425
|
+
# verify the required parameter 'proj_id' is set
|
426
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
427
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.list_elements_configs"
|
428
|
+
end
|
429
|
+
# verify the required parameter 'env_id' is set
|
430
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
431
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.list_elements_configs"
|
432
|
+
end
|
433
|
+
if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'] < 1
|
434
|
+
fail ArgumentError, 'invalid value for "opts[:"page"]" when calling ElementsConfigsApi.list_elements_configs, must be greater than or equal to 1.'
|
435
|
+
end
|
436
|
+
|
437
|
+
if @api_client.config.client_side_validation && !opts[:'per_page'].nil? && opts[:'per_page'] > 100
|
438
|
+
fail ArgumentError, 'invalid value for "opts[:"per_page"]" when calling ElementsConfigsApi.list_elements_configs, must be smaller than or equal to 100.'
|
439
|
+
end
|
440
|
+
|
441
|
+
if @api_client.config.client_side_validation && !opts[:'per_page'].nil? && opts[:'per_page'] < 1
|
442
|
+
fail ArgumentError, 'invalid value for "opts[:"per_page"]" when calling ElementsConfigsApi.list_elements_configs, must be greater than or equal to 1.'
|
443
|
+
end
|
444
|
+
|
445
|
+
# resource path
|
446
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/config'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s))
|
447
|
+
|
448
|
+
# query parameters
|
449
|
+
query_params = opts[:query_params] || {}
|
450
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
451
|
+
query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil?
|
452
|
+
|
453
|
+
# header parameters
|
454
|
+
header_params = opts[:header_params] || {}
|
455
|
+
# HTTP header 'Accept' (if needed)
|
456
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
457
|
+
|
458
|
+
# form parameters
|
459
|
+
form_params = opts[:form_params] || {}
|
460
|
+
|
461
|
+
# http body (model)
|
462
|
+
post_body = opts[:debug_body]
|
463
|
+
|
464
|
+
# return_type
|
465
|
+
return_type = opts[:debug_return_type] || 'PaginatedResultElementsConfigRead'
|
466
|
+
|
467
|
+
# auth_names
|
468
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
469
|
+
|
470
|
+
new_options = opts.merge(
|
471
|
+
:operation => :"ElementsConfigsApi.list_elements_configs",
|
472
|
+
:header_params => header_params,
|
473
|
+
:query_params => query_params,
|
474
|
+
:form_params => form_params,
|
475
|
+
:body => post_body,
|
476
|
+
:auth_names => auth_names,
|
477
|
+
:return_type => return_type
|
478
|
+
)
|
479
|
+
|
480
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
481
|
+
if @api_client.config.debugging
|
482
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#list_elements_configs\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
483
|
+
end
|
484
|
+
return data, status_code, headers
|
485
|
+
end
|
486
|
+
|
487
|
+
# Update Elements Config
|
488
|
+
# Updates the elements_config.
|
489
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
490
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
491
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
492
|
+
# @param elements_config_update [ElementsConfigUpdate]
|
493
|
+
# @param [Hash] opts the optional parameters
|
494
|
+
# @return [ElementsConfigRead]
|
495
|
+
def update_elements_config(elements_config_id, proj_id, env_id, elements_config_update, opts = {})
|
496
|
+
data, _status_code, _headers = update_elements_config_with_http_info(elements_config_id, proj_id, env_id, elements_config_update, opts)
|
497
|
+
data
|
498
|
+
end
|
499
|
+
|
500
|
+
# Update Elements Config
|
501
|
+
# Updates the elements_config.
|
502
|
+
# @param elements_config_id [String] Either the unique id of the elements_config, or the URL-friendly key of the elements_config (i.e: the \"slug\").
|
503
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
504
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
505
|
+
# @param elements_config_update [ElementsConfigUpdate]
|
506
|
+
# @param [Hash] opts the optional parameters
|
507
|
+
# @return [Array<(ElementsConfigRead, Integer, Hash)>] ElementsConfigRead data, response status code and response headers
|
508
|
+
def update_elements_config_with_http_info(elements_config_id, proj_id, env_id, elements_config_update, opts = {})
|
509
|
+
if @api_client.config.debugging
|
510
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.update_elements_config ...'
|
511
|
+
end
|
512
|
+
# verify the required parameter 'elements_config_id' is set
|
513
|
+
if @api_client.config.client_side_validation && elements_config_id.nil?
|
514
|
+
fail ArgumentError, "Missing the required parameter 'elements_config_id' when calling ElementsConfigsApi.update_elements_config"
|
515
|
+
end
|
516
|
+
# verify the required parameter 'proj_id' is set
|
517
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
518
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.update_elements_config"
|
519
|
+
end
|
520
|
+
# verify the required parameter 'env_id' is set
|
521
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
522
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.update_elements_config"
|
523
|
+
end
|
524
|
+
# verify the required parameter 'elements_config_update' is set
|
525
|
+
if @api_client.config.client_side_validation && elements_config_update.nil?
|
526
|
+
fail ArgumentError, "Missing the required parameter 'elements_config_update' when calling ElementsConfigsApi.update_elements_config"
|
527
|
+
end
|
528
|
+
# resource path
|
529
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/config/{elements_config_id}'.sub('{' + 'elements_config_id' + '}', CGI.escape(elements_config_id.to_s)).sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s))
|
530
|
+
|
531
|
+
# query parameters
|
532
|
+
query_params = opts[:query_params] || {}
|
533
|
+
|
534
|
+
# header parameters
|
535
|
+
header_params = opts[:header_params] || {}
|
536
|
+
# HTTP header 'Accept' (if needed)
|
537
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
538
|
+
# HTTP header 'Content-Type'
|
539
|
+
content_type = @api_client.select_header_content_type(['application/json'])
|
540
|
+
if !content_type.nil?
|
541
|
+
header_params['Content-Type'] = content_type
|
542
|
+
end
|
543
|
+
|
544
|
+
# form parameters
|
545
|
+
form_params = opts[:form_params] || {}
|
546
|
+
|
547
|
+
# http body (model)
|
548
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(elements_config_update)
|
549
|
+
|
550
|
+
# return_type
|
551
|
+
return_type = opts[:debug_return_type] || 'ElementsConfigRead'
|
552
|
+
|
553
|
+
# auth_names
|
554
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
555
|
+
|
556
|
+
new_options = opts.merge(
|
557
|
+
:operation => :"ElementsConfigsApi.update_elements_config",
|
558
|
+
:header_params => header_params,
|
559
|
+
:query_params => query_params,
|
560
|
+
:form_params => form_params,
|
561
|
+
:body => post_body,
|
562
|
+
:auth_names => auth_names,
|
563
|
+
:return_type => return_type
|
564
|
+
)
|
565
|
+
|
566
|
+
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
|
567
|
+
if @api_client.config.debugging
|
568
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#update_elements_config\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
569
|
+
end
|
570
|
+
return data, status_code, headers
|
571
|
+
end
|
572
|
+
|
573
|
+
# Update Elements Type Permissions
|
574
|
+
# @param element_type [ElementsType] Either the unique id of the elements_type, or the URL-friendly key of the elements_type (i.e: the \"slug\").
|
575
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
576
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
577
|
+
# @param elements_env_type_update [ElementsEnvTypeUpdate]
|
578
|
+
# @param [Hash] opts the optional parameters
|
579
|
+
# @return [ElementsEnvTypeRead]
|
580
|
+
def update_elements_type_permissions(element_type, proj_id, env_id, elements_env_type_update, opts = {})
|
581
|
+
data, _status_code, _headers = update_elements_type_permissions_with_http_info(element_type, proj_id, env_id, elements_env_type_update, opts)
|
582
|
+
data
|
583
|
+
end
|
584
|
+
|
585
|
+
# Update Elements Type Permissions
|
586
|
+
# @param element_type [ElementsType] Either the unique id of the elements_type, or the URL-friendly key of the elements_type (i.e: the \"slug\").
|
587
|
+
# @param proj_id [String] Either the unique id of the project, or the URL-friendly key of the project (i.e: the \"slug\").
|
588
|
+
# @param env_id [String] Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the \"slug\").
|
589
|
+
# @param elements_env_type_update [ElementsEnvTypeUpdate]
|
590
|
+
# @param [Hash] opts the optional parameters
|
591
|
+
# @return [Array<(ElementsEnvTypeRead, Integer, Hash)>] ElementsEnvTypeRead data, response status code and response headers
|
592
|
+
def update_elements_type_permissions_with_http_info(element_type, proj_id, env_id, elements_env_type_update, opts = {})
|
593
|
+
if @api_client.config.debugging
|
594
|
+
@api_client.config.logger.debug 'Calling API: ElementsConfigsApi.update_elements_type_permissions ...'
|
595
|
+
end
|
596
|
+
# verify the required parameter 'element_type' is set
|
597
|
+
if @api_client.config.client_side_validation && element_type.nil?
|
598
|
+
fail ArgumentError, "Missing the required parameter 'element_type' when calling ElementsConfigsApi.update_elements_type_permissions"
|
599
|
+
end
|
600
|
+
# verify the required parameter 'proj_id' is set
|
601
|
+
if @api_client.config.client_side_validation && proj_id.nil?
|
602
|
+
fail ArgumentError, "Missing the required parameter 'proj_id' when calling ElementsConfigsApi.update_elements_type_permissions"
|
603
|
+
end
|
604
|
+
# verify the required parameter 'env_id' is set
|
605
|
+
if @api_client.config.client_side_validation && env_id.nil?
|
606
|
+
fail ArgumentError, "Missing the required parameter 'env_id' when calling ElementsConfigsApi.update_elements_type_permissions"
|
607
|
+
end
|
608
|
+
# verify the required parameter 'elements_env_type_update' is set
|
609
|
+
if @api_client.config.client_side_validation && elements_env_type_update.nil?
|
610
|
+
fail ArgumentError, "Missing the required parameter 'elements_env_type_update' when calling ElementsConfigsApi.update_elements_type_permissions"
|
611
|
+
end
|
612
|
+
# resource path
|
613
|
+
local_var_path = '/v2/elements/{proj_id}/{env_id}/{element_type}'.sub('{' + 'element_type' + '}', CGI.escape(element_type.to_s)).sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s))
|
614
|
+
|
615
|
+
# query parameters
|
616
|
+
query_params = opts[:query_params] || {}
|
617
|
+
|
618
|
+
# header parameters
|
619
|
+
header_params = opts[:header_params] || {}
|
620
|
+
# HTTP header 'Accept' (if needed)
|
621
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
622
|
+
# HTTP header 'Content-Type'
|
623
|
+
content_type = @api_client.select_header_content_type(['application/json'])
|
624
|
+
if !content_type.nil?
|
625
|
+
header_params['Content-Type'] = content_type
|
626
|
+
end
|
627
|
+
|
628
|
+
# form parameters
|
629
|
+
form_params = opts[:form_params] || {}
|
630
|
+
|
631
|
+
# http body (model)
|
632
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(elements_env_type_update)
|
633
|
+
|
634
|
+
# return_type
|
635
|
+
return_type = opts[:debug_return_type] || 'ElementsEnvTypeRead'
|
636
|
+
|
637
|
+
# auth_names
|
638
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
639
|
+
|
640
|
+
new_options = opts.merge(
|
641
|
+
:operation => :"ElementsConfigsApi.update_elements_type_permissions",
|
642
|
+
:header_params => header_params,
|
643
|
+
:query_params => query_params,
|
644
|
+
:form_params => form_params,
|
645
|
+
:body => post_body,
|
646
|
+
:auth_names => auth_names,
|
647
|
+
:return_type => return_type
|
648
|
+
)
|
649
|
+
|
650
|
+
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
|
651
|
+
if @api_client.config.debugging
|
652
|
+
@api_client.config.logger.debug "API called: ElementsConfigsApi#update_elements_type_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
653
|
+
end
|
654
|
+
return data, status_code, headers
|
655
|
+
end
|
656
|
+
end
|
657
|
+
end
|