@itentialopensource/adapter-redis_cloud 0.1.1
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.
- package/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +3 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +590 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +641 -0
- package/README.md +342 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +22 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +6554 -0
- package/adapterBase.js +1349 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/AccessControlList/action.json +268 -0
- package/entities/AccessControlList/schema.json +31 -0
- package/entities/Account/action.json +130 -0
- package/entities/Account/schema.json +24 -0
- package/entities/CloudAccounts/action.json +106 -0
- package/entities/CloudAccounts/schema.json +23 -0
- package/entities/DatabasesFixed/action.json +146 -0
- package/entities/DatabasesFixed/schema.json +25 -0
- package/entities/DatabasesFlexible/action.json +166 -0
- package/entities/DatabasesFlexible/schema.json +26 -0
- package/entities/SubscriptionsFixed/action.json +148 -0
- package/entities/SubscriptionsFixed/schema.json +25 -0
- package/entities/SubscriptionsFlexible/action.json +370 -0
- package/entities/SubscriptionsFlexible/schema.json +36 -0
- package/entities/Tasks/action.json +46 -0
- package/entities/Tasks/schema.json +20 -0
- package/entities/Users/action.json +86 -0
- package/entities/Users/schema.json +22 -0
- package/error.json +190 -0
- package/metadata.json +51 -0
- package/package.json +84 -0
- package/pronghorn.json +5835 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1588 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/creationReport.json +680 -0
- package/report/redis.json +8093 -0
- package/report/updateReport1692203021745.json +120 -0
- package/sampleProperties.json +244 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +142 -0
- package/test/integration/adapterTestIntegration.js +2535 -0
- package/test/unit/adapterBaseTestUnit.js +1024 -0
- package/test/unit/adapterTestUnit.js +3906 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +225 -0
- package/utils/modify.js +152 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +239 -0
- package/utils/tbUtils.js +489 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +193 -0
package/CALLS.md
ADDED
|
@@ -0,0 +1,590 @@
|
|
|
1
|
+
## Using this Adapter
|
|
2
|
+
|
|
3
|
+
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
|
|
4
|
+
|
|
5
|
+
### Generic Adapter Calls
|
|
6
|
+
|
|
7
|
+
These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
|
|
8
|
+
|
|
9
|
+
<table border="1" class="bordered-table">
|
|
10
|
+
<tr>
|
|
11
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
12
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
13
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td style="padding:15px">connect()</td>
|
|
17
|
+
<td style="padding:15px">This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.</td>
|
|
18
|
+
<td style="padding:15px">No</td>
|
|
19
|
+
</tr>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Redis_cloud. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
|
+
<td style="padding:15px">No</td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<td style="padding:15px">refreshProperties(properties)</td>
|
|
27
|
+
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
|
|
28
|
+
<td style="padding:15px">No</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Redis_cloud.</td>
|
|
33
|
+
<td style="padding:15px">No</td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
|
|
37
|
+
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
|
+
<td style="padding:15px">Yes</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
42
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
43
|
+
<td style="padding:15px">Yes</td>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
|
+
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
48
|
+
<td style="padding:15px">Yes</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
|
|
52
|
+
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
|
|
53
|
+
<td style="padding:15px">Yes</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
|
|
57
|
+
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
|
+
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
|
+
<td style="padding:15px">Yes</td>
|
|
64
|
+
</tr>
|
|
65
|
+
|
|
66
|
+
<tr>
|
|
67
|
+
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
|
+
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
69
|
+
<td style="padding:15px">Yes</td>
|
|
70
|
+
</tr>
|
|
71
|
+
<tr>
|
|
72
|
+
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
|
|
73
|
+
<td style="padding:15px">This call will return the results of a connectivity check.</td>
|
|
74
|
+
<td style="padding:15px">Yes</td>
|
|
75
|
+
</tr>
|
|
76
|
+
<tr>
|
|
77
|
+
<td style="padding:15px">iapRunAdapterBasicGet(callback)</td>
|
|
78
|
+
<td style="padding:15px">This call will return the results of running basic get API calls.</td>
|
|
79
|
+
<td style="padding:15px">Yes</td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr>
|
|
82
|
+
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
|
|
83
|
+
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
|
+
<td style="padding:15px">Yes</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
|
+
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
89
|
+
<td style="padding:15px">Yes</td>
|
|
90
|
+
</tr>
|
|
91
|
+
<tr>
|
|
92
|
+
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
93
|
+
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
|
|
94
|
+
<td style="padding:15px">Yes</td>
|
|
95
|
+
</tr>
|
|
96
|
+
<tr>
|
|
97
|
+
<td style="padding:15px">iapHasAdapterEntity(entityType, entityId, callback)</td>
|
|
98
|
+
<td style="padding:15px">This call verifies the adapter has the specific entity.</td>
|
|
99
|
+
<td style="padding:15px">No</td>
|
|
100
|
+
</tr>
|
|
101
|
+
<tr>
|
|
102
|
+
<td style="padding:15px">iapVerifyAdapterCapability(entityType, actionType, entityId, callback)</td>
|
|
103
|
+
<td style="padding:15px">This call verifies the adapter can perform the provided action on the specific entity.</td>
|
|
104
|
+
<td style="padding:15px">No</td>
|
|
105
|
+
</tr>
|
|
106
|
+
<tr>
|
|
107
|
+
<td style="padding:15px">iapUpdateAdapterEntityCache()</td>
|
|
108
|
+
<td style="padding:15px">This call will update the entity cache.</td>
|
|
109
|
+
<td style="padding:15px">No</td>
|
|
110
|
+
</tr>
|
|
111
|
+
</table>
|
|
112
|
+
<br>
|
|
113
|
+
|
|
114
|
+
### Adapter Broker Calls
|
|
115
|
+
|
|
116
|
+
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
117
|
+
|
|
118
|
+
<table border="1" class="bordered-table">
|
|
119
|
+
<tr>
|
|
120
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
121
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
122
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
123
|
+
</tr>
|
|
124
|
+
<tr>
|
|
125
|
+
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
|
|
126
|
+
<td style="padding:15px">This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
|
|
127
|
+
<td style="padding:15px">No</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
|
+
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
+
<td style="padding:15px">Yes</td>
|
|
133
|
+
</tr>
|
|
134
|
+
<tr>
|
|
135
|
+
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
|
+
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
137
|
+
<td style="padding:15px">Yes</td>
|
|
138
|
+
</tr>
|
|
139
|
+
<tr>
|
|
140
|
+
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
|
+
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
+
<td style="padding:15px">Yes</td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr>
|
|
145
|
+
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
|
+
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
+
<td style="padding:15px">Yes</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
|
+
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
+
<td style="padding:15px">Yes</td>
|
|
153
|
+
</tr>
|
|
154
|
+
</table>
|
|
155
|
+
<br>
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Specific Adapter Calls
|
|
159
|
+
|
|
160
|
+
Specific adapter calls are built based on the API of the Redis_cloud. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
161
|
+
|
|
162
|
+
<table border="1" class="bordered-table">
|
|
163
|
+
<tr>
|
|
164
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
165
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
166
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
167
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
168
|
+
</tr>
|
|
169
|
+
<tr>
|
|
170
|
+
<td style="padding:15px">getUserById(userId, callback)</td>
|
|
171
|
+
<td style="padding:15px">Information on user identified by user Id</td>
|
|
172
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}?{query}</td>
|
|
173
|
+
<td style="padding:15px">Yes</td>
|
|
174
|
+
</tr>
|
|
175
|
+
<tr>
|
|
176
|
+
<td style="padding:15px">updateUser(userId, body, callback)</td>
|
|
177
|
+
<td style="padding:15px">Update an existing user by Id</td>
|
|
178
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}?{query}</td>
|
|
179
|
+
<td style="padding:15px">Yes</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td style="padding:15px">deleteUserById(userId, callback)</td>
|
|
183
|
+
<td style="padding:15px">Delete a user from current account</td>
|
|
184
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}?{query}</td>
|
|
185
|
+
<td style="padding:15px">Yes</td>
|
|
186
|
+
</tr>
|
|
187
|
+
<tr>
|
|
188
|
+
<td style="padding:15px">getAllUsers(callback)</td>
|
|
189
|
+
<td style="padding:15px">Information on current account's users</td>
|
|
190
|
+
<td style="padding:15px">{base_path}/{version}/users?{query}</td>
|
|
191
|
+
<td style="padding:15px">Yes</td>
|
|
192
|
+
</tr>
|
|
193
|
+
<tr>
|
|
194
|
+
<td style="padding:15px">getSubscriptionById(subscriptionId, callback)</td>
|
|
195
|
+
<td style="padding:15px">Information on subscription identified by subscription Id</td>
|
|
196
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}?{query}</td>
|
|
197
|
+
<td style="padding:15px">Yes</td>
|
|
198
|
+
</tr>
|
|
199
|
+
<tr>
|
|
200
|
+
<td style="padding:15px">updateSubscription(subscriptionId, body, callback)</td>
|
|
201
|
+
<td style="padding:15px">Update an existing subscription by Id</td>
|
|
202
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}?{query}</td>
|
|
203
|
+
<td style="padding:15px">Yes</td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">deleteSubscriptionById(subscriptionId, callback)</td>
|
|
207
|
+
<td style="padding:15px">Delete a subscription identified by subscription Id (subscription must be empty, i.e. cannot contain databases)</td>
|
|
208
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}?{query}</td>
|
|
209
|
+
<td style="padding:15px">Yes</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td style="padding:15px">updateActiveActiveVpcPeering(subscriptionId, peeringId, body, callback)</td>
|
|
213
|
+
<td style="padding:15px">Update an existing VPC peering in an existing active-active subscription.</td>
|
|
214
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions/peerings/{pathv2}?{query}</td>
|
|
215
|
+
<td style="padding:15px">Yes</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td style="padding:15px">deleteActiveActiveVpcPeering(subscriptionId, peeringId, callback)</td>
|
|
219
|
+
<td style="padding:15px">Delete a VPC peering from an existing active-active subscription.</td>
|
|
220
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions/peerings/{pathv2}?{query}</td>
|
|
221
|
+
<td style="padding:15px">Yes</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td style="padding:15px">updateVpcPeering(subscriptionId, peeringId, body, callback)</td>
|
|
225
|
+
<td style="padding:15px">Update an existing VPC peering in an existing subscription.</td>
|
|
226
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/peerings/{pathv2}?{query}</td>
|
|
227
|
+
<td style="padding:15px">Yes</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="padding:15px">deleteVpcPeering(subscriptionId, peeringId, callback)</td>
|
|
231
|
+
<td style="padding:15px">Deletes a VPC peering identified by an id</td>
|
|
232
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/peerings/{pathv2}?{query}</td>
|
|
233
|
+
<td style="padding:15px">Yes</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td style="padding:15px">getCidrWhiteList(subscriptionId, callback)</td>
|
|
237
|
+
<td style="padding:15px">Get CIDR whitelist</td>
|
|
238
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/cidr?{query}</td>
|
|
239
|
+
<td style="padding:15px">Yes</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td style="padding:15px">updateSubscriptionCidrWhiteList(subscriptionId, body, callback)</td>
|
|
243
|
+
<td style="padding:15px">Update subscription CIDR whitelist</td>
|
|
244
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/cidr?{query}</td>
|
|
245
|
+
<td style="padding:15px">Yes</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td style="padding:15px">getAllSubscriptions(callback)</td>
|
|
249
|
+
<td style="padding:15px">Information on current account's subscriptions</td>
|
|
250
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions?{query}</td>
|
|
251
|
+
<td style="padding:15px">Yes</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td style="padding:15px">createSubscription(body, callback)</td>
|
|
255
|
+
<td style="padding:15px">Create a new subscription</td>
|
|
256
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions?{query}</td>
|
|
257
|
+
<td style="padding:15px">Yes</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td style="padding:15px">getRegionsFromActiveActiveSubscription(subscriptionId, callback)</td>
|
|
261
|
+
<td style="padding:15px">Get all regions of an active-active subscription</td>
|
|
262
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions?{query}</td>
|
|
263
|
+
<td style="padding:15px">Yes</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td style="padding:15px">addNewRegionToActiveActiveSubscription(subscriptionId, body, callback)</td>
|
|
267
|
+
<td style="padding:15px">Create a new region in an active-active subscription</td>
|
|
268
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions?{query}</td>
|
|
269
|
+
<td style="padding:15px">Yes</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td style="padding:15px">deleteRegionsFromActiveActiveSubscription(subscriptionId, body, callback)</td>
|
|
273
|
+
<td style="padding:15px">Delete one or more regions from an active-active subscription</td>
|
|
274
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions?{query}</td>
|
|
275
|
+
<td style="padding:15px">Yes</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td style="padding:15px">getActiveActiveVpcPeerings(subscriptionId, callback)</td>
|
|
279
|
+
<td style="padding:15px">Get VPC peering details for an active-active subscription.</td>
|
|
280
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions/peerings?{query}</td>
|
|
281
|
+
<td style="padding:15px">Yes</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td style="padding:15px">createActiveActiveVpcPeering(subscriptionId, body, callback)</td>
|
|
285
|
+
<td style="padding:15px">Create a new VPC peering in an existing active-active subscription.</td>
|
|
286
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/regions/peerings?{query}</td>
|
|
287
|
+
<td style="padding:15px">Yes</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td style="padding:15px">getVpcPeering(subscriptionId, callback)</td>
|
|
291
|
+
<td style="padding:15px">Get VPC peering details. VPC peering for Google Cloud Provider must be enabled using the GCloud command line. For details, see documentation.</td>
|
|
292
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/peerings?{query}</td>
|
|
293
|
+
<td style="padding:15px">Yes</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td style="padding:15px">createVpcPeering(subscriptionId, body, callback)</td>
|
|
297
|
+
<td style="padding:15px">Create a new VPC peering in an existing subscription. VPC peering for Google Cloud Provider must be enabled using the GCloud command line. For details, see documentation.</td>
|
|
298
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/peerings?{query}</td>
|
|
299
|
+
<td style="padding:15px">Yes</td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td style="padding:15px">getSubscriptionDatabaseByID(subscriptionId, databaseId, callback)</td>
|
|
303
|
+
<td style="padding:15px">Information on a specific database identified by subscription Id and database Id</td>
|
|
304
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases/{pathv2}?{query}</td>
|
|
305
|
+
<td style="padding:15px">Yes</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td style="padding:15px">updateDatabase(subscriptionId, databaseId, body, callback)</td>
|
|
309
|
+
<td style="padding:15px">Update an existing database</td>
|
|
310
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases/{pathv2}?{query}</td>
|
|
311
|
+
<td style="padding:15px">Yes</td>
|
|
312
|
+
</tr>
|
|
313
|
+
<tr>
|
|
314
|
+
<td style="padding:15px">deleteDatabaseById(subscriptionId, databaseId, callback)</td>
|
|
315
|
+
<td style="padding:15px">Delete a specific database identified by subscription Id and database Id</td>
|
|
316
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases/{pathv2}?{query}</td>
|
|
317
|
+
<td style="padding:15px">Yes</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td style="padding:15px">updateCrdbLocalProperties(subscriptionId, databaseId, body, callback)</td>
|
|
321
|
+
<td style="padding:15px">Update active-active local database properties</td>
|
|
322
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases/{pathv2}/regions?{query}</td>
|
|
323
|
+
<td style="padding:15px">Yes</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td style="padding:15px">getSubscriptionDatabases(subscriptionId, offset, limit, callback)</td>
|
|
327
|
+
<td style="padding:15px">Information on databases belonging to subscription identified by subscription Id</td>
|
|
328
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases?{query}</td>
|
|
329
|
+
<td style="padding:15px">Yes</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td style="padding:15px">createDatabase(subscriptionId, body, callback)</td>
|
|
333
|
+
<td style="padding:15px">Create a new database</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">importDatabase(subscriptionId, databaseId, body, callback)</td>
|
|
339
|
+
<td style="padding:15px">Import data from an RDB file or a different Redis database</td>
|
|
340
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases/{pathv2}/import?{query}</td>
|
|
341
|
+
<td style="padding:15px">Yes</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td style="padding:15px">backupDatabase(subscriptionId, databaseId, body, callback)</td>
|
|
345
|
+
<td style="padding:15px">Manually backup a database into the destination defined for it</td>
|
|
346
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions/{pathv1}/databases/{pathv2}/backup?{query}</td>
|
|
347
|
+
<td style="padding:15px">Yes</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td style="padding:15px">getSubscriptionById1(subscriptionId, callback)</td>
|
|
351
|
+
<td style="padding:15px">Information on fixed subscription identified by subscription Id</td>
|
|
352
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}?{query}</td>
|
|
353
|
+
<td style="padding:15px">Yes</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td style="padding:15px">updateSubscription1(subscriptionId, body, callback)</td>
|
|
357
|
+
<td style="padding:15px">Update a fixed subscription</td>
|
|
358
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}?{query}</td>
|
|
359
|
+
<td style="padding:15px">Yes</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td style="padding:15px">deleteSubscriptionById1(subscriptionId, callback)</td>
|
|
363
|
+
<td style="padding:15px">Delete a fixed subscription identified by subscription Id (subscription must be empty, i.e. cannot contain databases)</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">getAllSubscriptions1(callback)</td>
|
|
369
|
+
<td style="padding:15px">Information on current account's fixed subscriptions</td>
|
|
370
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions?{query}</td>
|
|
371
|
+
<td style="padding:15px">Yes</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td style="padding:15px">createSubscription1(body, callback)</td>
|
|
375
|
+
<td style="padding:15px">Create a new fixed subscription</td>
|
|
376
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions?{query}</td>
|
|
377
|
+
<td style="padding:15px">Yes</td>
|
|
378
|
+
</tr>
|
|
379
|
+
<tr>
|
|
380
|
+
<td style="padding:15px">getAllFixedSubscriptionsPlans(provider, callback)</td>
|
|
381
|
+
<td style="padding:15px">Lookup list of plans</td>
|
|
382
|
+
<td style="padding:15px">{base_path}/{version}/fixed/plans?{query}</td>
|
|
383
|
+
<td style="padding:15px">Yes</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td style="padding:15px">getFixedSubscriptionsPlanById(planId, callback)</td>
|
|
387
|
+
<td style="padding:15px">Information on a specific fixed subscription plan identified by plan Id</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/fixed/plans/{pathv1}?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">getSubscriptionDatabaseByID1(subscriptionId, databaseId, callback)</td>
|
|
393
|
+
<td style="padding:15px">Information on a specific database identified by fixed subscription Id and database Id</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases/{pathv2}?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">deleteFixedDatabaseByID(subscriptionId, databaseId, body, callback)</td>
|
|
399
|
+
<td style="padding:15px">Update a specific database identified by a fixed subscription Id and database Id</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases/{pathv2}?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">deleteFixedDatabaseByID1(subscriptionId, databaseId, callback)</td>
|
|
405
|
+
<td style="padding:15px">Delete a specific database identified by a fixed subscription Id and database Id</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases/{pathv2}?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">getFixedSubscriptionDatabases(subscriptionId, offset, limit, callback)</td>
|
|
411
|
+
<td style="padding:15px">Information on databases belonging to a fixed subscription identified by subscription Id</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">createFixedDatabase(subscriptionId, body, callback)</td>
|
|
417
|
+
<td style="padding:15px">Create a new fixed database</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">importDatabase1(subscriptionId, databaseId, body, callback)</td>
|
|
423
|
+
<td style="padding:15px">Import data from an RDB file or a different Redis database</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases/{pathv2}/import?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">backupDatabase1(subscriptionId, databaseId, callback)</td>
|
|
429
|
+
<td style="padding:15px">Manually backup a fixed database into the destination defined for it</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/fixed/subscriptions/{pathv1}/databases/{pathv2}/backup?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">getCloudAccountById(cloudAccountId, callback)</td>
|
|
435
|
+
<td style="padding:15px">Information on a specific cloud account</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/cloud-accounts/{pathv1}?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">updateCloudAccount(cloudAccountId, body, callback)</td>
|
|
441
|
+
<td style="padding:15px">Update cloud account</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/cloud-accounts/{pathv1}?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">deleteCloudAccount(cloudAccountId, callback)</td>
|
|
447
|
+
<td style="padding:15px">Delete specified cloud account</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/cloud-accounts/{pathv1}?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">getCloudAccounts(callback)</td>
|
|
453
|
+
<td style="padding:15px">List all configured cloud accounts</td>
|
|
454
|
+
<td style="padding:15px">{base_path}/{version}/cloud-accounts?{query}</td>
|
|
455
|
+
<td style="padding:15px">Yes</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td style="padding:15px">createCloudAccount(body, callback)</td>
|
|
459
|
+
<td style="padding:15px">Create cloud account</td>
|
|
460
|
+
<td style="padding:15px">{base_path}/{version}/cloud-accounts?{query}</td>
|
|
461
|
+
<td style="padding:15px">Yes</td>
|
|
462
|
+
</tr>
|
|
463
|
+
<tr>
|
|
464
|
+
<td style="padding:15px">getUserByID(aclUserId, callback)</td>
|
|
465
|
+
<td style="padding:15px">Information on an ACL user identified by ACL user Id</td>
|
|
466
|
+
<td style="padding:15px">{base_path}/{version}/acl/users/{pathv1}?{query}</td>
|
|
467
|
+
<td style="padding:15px">Yes</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td style="padding:15px">updateUser1(aclUserId, body, callback)</td>
|
|
471
|
+
<td style="padding:15px">Update a new ACL user</td>
|
|
472
|
+
<td style="padding:15px">{base_path}/{version}/acl/users/{pathv1}?{query}</td>
|
|
473
|
+
<td style="padding:15px">Yes</td>
|
|
474
|
+
</tr>
|
|
475
|
+
<tr>
|
|
476
|
+
<td style="padding:15px">deleteUser(aclUserId, callback)</td>
|
|
477
|
+
<td style="padding:15px">Delete an ACL user</td>
|
|
478
|
+
<td style="padding:15px">{base_path}/{version}/acl/users/{pathv1}?{query}</td>
|
|
479
|
+
<td style="padding:15px">Yes</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td style="padding:15px">updateRole(aclRoleId, body, callback)</td>
|
|
483
|
+
<td style="padding:15px">Update an ACL role</td>
|
|
484
|
+
<td style="padding:15px">{base_path}/{version}/acl/roles/{pathv1}?{query}</td>
|
|
485
|
+
<td style="padding:15px">Yes</td>
|
|
486
|
+
</tr>
|
|
487
|
+
<tr>
|
|
488
|
+
<td style="padding:15px">deleteAclRole(aclRoleId, callback)</td>
|
|
489
|
+
<td style="padding:15px">Delete an ACL role</td>
|
|
490
|
+
<td style="padding:15px">{base_path}/{version}/acl/roles/{pathv1}?{query}</td>
|
|
491
|
+
<td style="padding:15px">Yes</td>
|
|
492
|
+
</tr>
|
|
493
|
+
<tr>
|
|
494
|
+
<td style="padding:15px">updateRedisRule(aclRedisRuleId, body, callback)</td>
|
|
495
|
+
<td style="padding:15px">Update an ACL redis rule</td>
|
|
496
|
+
<td style="padding:15px">{base_path}/{version}/acl/redisRules/{pathv1}?{query}</td>
|
|
497
|
+
<td style="padding:15px">Yes</td>
|
|
498
|
+
</tr>
|
|
499
|
+
<tr>
|
|
500
|
+
<td style="padding:15px">deleteRedisRule(aclRedisRuleId, callback)</td>
|
|
501
|
+
<td style="padding:15px">Delete an ACL redis rule</td>
|
|
502
|
+
<td style="padding:15px">{base_path}/{version}/acl/redisRules/{pathv1}?{query}</td>
|
|
503
|
+
<td style="padding:15px">Yes</td>
|
|
504
|
+
</tr>
|
|
505
|
+
<tr>
|
|
506
|
+
<td style="padding:15px">getAllUsers1(callback)</td>
|
|
507
|
+
<td style="padding:15px">Information on current account's ACL users</td>
|
|
508
|
+
<td style="padding:15px">{base_path}/{version}/acl/users?{query}</td>
|
|
509
|
+
<td style="padding:15px">Yes</td>
|
|
510
|
+
</tr>
|
|
511
|
+
<tr>
|
|
512
|
+
<td style="padding:15px">createUser(body, callback)</td>
|
|
513
|
+
<td style="padding:15px">Create a new ACL user</td>
|
|
514
|
+
<td style="padding:15px">{base_path}/{version}/acl/users?{query}</td>
|
|
515
|
+
<td style="padding:15px">Yes</td>
|
|
516
|
+
</tr>
|
|
517
|
+
<tr>
|
|
518
|
+
<td style="padding:15px">getRoles(callback)</td>
|
|
519
|
+
<td style="padding:15px">Information on current account's ACL roles</td>
|
|
520
|
+
<td style="padding:15px">{base_path}/{version}/acl/roles?{query}</td>
|
|
521
|
+
<td style="padding:15px">Yes</td>
|
|
522
|
+
</tr>
|
|
523
|
+
<tr>
|
|
524
|
+
<td style="padding:15px">createRole(body, callback)</td>
|
|
525
|
+
<td style="padding:15px">Create a new ACL role</td>
|
|
526
|
+
<td style="padding:15px">{base_path}/{version}/acl/roles?{query}</td>
|
|
527
|
+
<td style="padding:15px">Yes</td>
|
|
528
|
+
</tr>
|
|
529
|
+
<tr>
|
|
530
|
+
<td style="padding:15px">getAllRedisRules(callback)</td>
|
|
531
|
+
<td style="padding:15px">Information on current account's ACL users</td>
|
|
532
|
+
<td style="padding:15px">{base_path}/{version}/acl/redisRules?{query}</td>
|
|
533
|
+
<td style="padding:15px">Yes</td>
|
|
534
|
+
</tr>
|
|
535
|
+
<tr>
|
|
536
|
+
<td style="padding:15px">createRedisRule(body, callback)</td>
|
|
537
|
+
<td style="padding:15px">Create a new ACL redis rule</td>
|
|
538
|
+
<td style="padding:15px">{base_path}/{version}/acl/redisRules?{query}</td>
|
|
539
|
+
<td style="padding:15px">Yes</td>
|
|
540
|
+
</tr>
|
|
541
|
+
<tr>
|
|
542
|
+
<td style="padding:15px">getAllTasks(callback)</td>
|
|
543
|
+
<td style="padding:15px">Currently active long running operations</td>
|
|
544
|
+
<td style="padding:15px">{base_path}/{version}/tasks?{query}</td>
|
|
545
|
+
<td style="padding:15px">Yes</td>
|
|
546
|
+
</tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<td style="padding:15px">getTaskById(taskId, callback)</td>
|
|
549
|
+
<td style="padding:15px">Get specific long running operation, identified by Task Id</td>
|
|
550
|
+
<td style="padding:15px">{base_path}/{version}/tasks/{pathv1}?{query}</td>
|
|
551
|
+
<td style="padding:15px">Yes</td>
|
|
552
|
+
</tr>
|
|
553
|
+
<tr>
|
|
554
|
+
<td style="padding:15px">getSupportedRegions(provider, callback)</td>
|
|
555
|
+
<td style="padding:15px">Lookup list of regions for cloud provider</td>
|
|
556
|
+
<td style="padding:15px">{base_path}/{version}/regions?{query}</td>
|
|
557
|
+
<td style="padding:15px">Yes</td>
|
|
558
|
+
</tr>
|
|
559
|
+
<tr>
|
|
560
|
+
<td style="padding:15px">getAccountPaymentMethods(callback)</td>
|
|
561
|
+
<td style="padding:15px">Lookup list of current Account's payment methods</td>
|
|
562
|
+
<td style="padding:15px">{base_path}/{version}/payment-methods?{query}</td>
|
|
563
|
+
<td style="padding:15px">Yes</td>
|
|
564
|
+
</tr>
|
|
565
|
+
<tr>
|
|
566
|
+
<td style="padding:15px">getAccountSystemLogs(offset, limit, callback)</td>
|
|
567
|
+
<td style="padding:15px">System log information for current account</td>
|
|
568
|
+
<td style="padding:15px">{base_path}/{version}/logs?{query}</td>
|
|
569
|
+
<td style="padding:15px">Yes</td>
|
|
570
|
+
</tr>
|
|
571
|
+
<tr>
|
|
572
|
+
<td style="padding:15px">getSupportedDatabaseModules(callback)</td>
|
|
573
|
+
<td style="padding:15px">Lookup list of database modules supported in current account (support may differ based on subscription and database settings)</td>
|
|
574
|
+
<td style="padding:15px">{base_path}/{version}/database-modules?{query}</td>
|
|
575
|
+
<td style="padding:15px">Yes</td>
|
|
576
|
+
</tr>
|
|
577
|
+
<tr>
|
|
578
|
+
<td style="padding:15px">getDataPersistenceOptions(callback)</td>
|
|
579
|
+
<td style="padding:15px">Lookup list of data persistence values</td>
|
|
580
|
+
<td style="padding:15px">{base_path}/{version}/data-persistence?{query}</td>
|
|
581
|
+
<td style="padding:15px">Yes</td>
|
|
582
|
+
</tr>
|
|
583
|
+
<tr>
|
|
584
|
+
<td style="padding:15px">get(callback)</td>
|
|
585
|
+
<td style="padding:15px">Current account and related information</td>
|
|
586
|
+
<td style="padding:15px">{base_path}/{version}/?{query}</td>
|
|
587
|
+
<td style="padding:15px">Yes</td>
|
|
588
|
+
</tr>
|
|
589
|
+
</table>
|
|
590
|
+
<br>
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
|
6
|
+
|
|
7
|
+
## Our Standards
|
|
8
|
+
|
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
|
10
|
+
|
|
11
|
+
- Using welcoming and inclusive language
|
|
12
|
+
- Being respectful of differing viewpoints and experiences
|
|
13
|
+
- Gracefully accepting constructive criticism
|
|
14
|
+
- Focusing on what is best for the community
|
|
15
|
+
- Showing empathy towards other community members
|
|
16
|
+
|
|
17
|
+
Examples of unacceptable behavior by participants include:
|
|
18
|
+
|
|
19
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
|
|
20
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
|
21
|
+
- Public or private harassment
|
|
22
|
+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
|
|
23
|
+
- Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
24
|
+
|
|
25
|
+
## Our Responsibilities
|
|
26
|
+
|
|
27
|
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
|
28
|
+
|
|
29
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
|
30
|
+
|
|
31
|
+
## Scope
|
|
32
|
+
|
|
33
|
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
|
34
|
+
|
|
35
|
+
## Enforcement
|
|
36
|
+
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at support@itential.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
|
+
|
|
39
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
|
40
|
+
|
|
41
|
+
## Attribution
|
|
42
|
+
|
|
43
|
+
This Code of Conduct is adapted from the <a href="http://contributor-covenant.org" target="_blank">Contributor Covenant</a>, version 1.4, available at <a href="http://contributor-covenant.org/version/1/4/" target="_blank">version</a>
|