@nutanix-scratch/multidomain-js-client 4.2.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.
Files changed (137) hide show
  1. package/LICENSE.txt +202 -0
  2. package/README.md +224 -0
  3. package/dist/Ntnx-Multidomain-js-client-prod.js +1 -0
  4. package/dist/Ntnx-Multidomain-js-client.js +713 -0
  5. package/dist/es/ApiClient.d.ts +194 -0
  6. package/dist/es/ApiClient.js +1449 -0
  7. package/dist/es/Paginable.d.ts +95 -0
  8. package/dist/es/Paginable.js +248 -0
  9. package/dist/es/apis/externalrepositories-endpoints.d.ts +84 -0
  10. package/dist/es/apis/externalrepositories-endpoints.js +267 -0
  11. package/dist/es/index.d.ts +60 -0
  12. package/dist/es/index.js +236 -0
  13. package/dist/es/models/common/v1/config/FQDN.d.ts +47 -0
  14. package/dist/es/models/common/v1/config/FQDN.js +238 -0
  15. package/dist/es/models/common/v1/config/Flag.d.ts +58 -0
  16. package/dist/es/models/common/v1/config/Flag.js +278 -0
  17. package/dist/es/models/common/v1/config/IPAddressOrFQDN.d.ts +70 -0
  18. package/dist/es/models/common/v1/config/IPAddressOrFQDN.js +313 -0
  19. package/dist/es/models/common/v1/config/IPv4Address.d.ts +70 -0
  20. package/dist/es/models/common/v1/config/IPv4Address.js +288 -0
  21. package/dist/es/models/common/v1/config/IPv6Address.d.ts +70 -0
  22. package/dist/es/models/common/v1/config/IPv6Address.js +288 -0
  23. package/dist/es/models/common/v1/config/KVPair.d.ts +65 -0
  24. package/dist/es/models/common/v1/config/KVPair.js +333 -0
  25. package/dist/es/models/common/v1/config/MapOfStringWrapper.d.ts +53 -0
  26. package/dist/es/models/common/v1/config/MapOfStringWrapper.js +236 -0
  27. package/dist/es/models/common/v1/config/Message.d.ts +79 -0
  28. package/dist/es/models/common/v1/config/Message.js +341 -0
  29. package/dist/es/models/common/v1/config/MessageSeverity.d.ts +19 -0
  30. package/dist/es/models/common/v1/config/MessageSeverity.js +89 -0
  31. package/dist/es/models/common/v1/config/TenantAwareModel.d.ts +47 -0
  32. package/dist/es/models/common/v1/config/TenantAwareModel.js +235 -0
  33. package/dist/es/models/common/v1/response/ApiLink.d.ts +58 -0
  34. package/dist/es/models/common/v1/response/ApiLink.js +271 -0
  35. package/dist/es/models/common/v1/response/ApiResponseMetadata.d.ts +95 -0
  36. package/dist/es/models/common/v1/response/ApiResponseMetadata.js +419 -0
  37. package/dist/es/models/common/v1/response/ExternalizableAbstractModel.d.ts +34 -0
  38. package/dist/es/models/common/v1/response/ExternalizableAbstractModel.js +262 -0
  39. package/dist/es/models/multidomain/v4/config/CreateExternalRepositoryApiResponse.d.ts +58 -0
  40. package/dist/es/models/multidomain/v4/config/CreateExternalRepositoryApiResponse.js +288 -0
  41. package/dist/es/models/multidomain/v4/config/DeleteExternalRepositoryApiResponse.d.ts +58 -0
  42. package/dist/es/models/multidomain/v4/config/DeleteExternalRepositoryApiResponse.js +288 -0
  43. package/dist/es/models/multidomain/v4/config/ExternalRepository.d.ts +59 -0
  44. package/dist/es/models/multidomain/v4/config/ExternalRepository.js +328 -0
  45. package/dist/es/models/multidomain/v4/config/GetExternalRepositoryApiResponse.d.ts +58 -0
  46. package/dist/es/models/multidomain/v4/config/GetExternalRepositoryApiResponse.js +288 -0
  47. package/dist/es/models/multidomain/v4/config/ListExternalRepositoriesApiResponse.d.ts +58 -0
  48. package/dist/es/models/multidomain/v4/config/ListExternalRepositoriesApiResponse.js +310 -0
  49. package/dist/es/models/multidomain/v4/config/NFSServerAddress.d.ts +71 -0
  50. package/dist/es/models/multidomain/v4/config/NFSServerAddress.js +279 -0
  51. package/dist/es/models/multidomain/v4/config/NfsRepository.d.ts +73 -0
  52. package/dist/es/models/multidomain/v4/config/NfsRepository.js +299 -0
  53. package/dist/es/models/multidomain/v4/config/UpdateExternalRepositoryApiResponse.d.ts +58 -0
  54. package/dist/es/models/multidomain/v4/config/UpdateExternalRepositoryApiResponse.js +288 -0
  55. package/dist/es/models/multidomain/v4/error/AppMessage.d.ts +107 -0
  56. package/dist/es/models/multidomain/v4/error/AppMessage.js +415 -0
  57. package/dist/es/models/multidomain/v4/error/ErrorResponse.d.ts +47 -0
  58. package/dist/es/models/multidomain/v4/error/ErrorResponse.js +277 -0
  59. package/dist/es/models/multidomain/v4/error/SchemaValidationError.d.ts +92 -0
  60. package/dist/es/models/multidomain/v4/error/SchemaValidationError.js +389 -0
  61. package/dist/es/models/multidomain/v4/error/SchemaValidationErrorMessage.d.ts +69 -0
  62. package/dist/es/models/multidomain/v4/error/SchemaValidationErrorMessage.js +307 -0
  63. package/dist/es/models/prism/v4/config/TaskReference.d.ts +47 -0
  64. package/dist/es/models/prism/v4/config/TaskReference.js +242 -0
  65. package/dist/es/models/validation/ValidationError.d.ts +13 -0
  66. package/dist/es/models/validation/ValidationError.js +44 -0
  67. package/dist/es/models/validation/ValidationScopes.d.ts +9 -0
  68. package/dist/es/models/validation/ValidationScopes.js +38 -0
  69. package/dist/es/utils/ValidationUtils.d.ts +13 -0
  70. package/dist/es/utils/ValidationUtils.js +55 -0
  71. package/dist/lib/ApiClient.d.ts +194 -0
  72. package/dist/lib/ApiClient.js +1449 -0
  73. package/dist/lib/Paginable.d.ts +95 -0
  74. package/dist/lib/Paginable.js +248 -0
  75. package/dist/lib/apis/externalrepositories-endpoints.d.ts +84 -0
  76. package/dist/lib/apis/externalrepositories-endpoints.js +267 -0
  77. package/dist/lib/index.d.ts +60 -0
  78. package/dist/lib/index.js +236 -0
  79. package/dist/lib/models/common/v1/config/FQDN.d.ts +47 -0
  80. package/dist/lib/models/common/v1/config/FQDN.js +238 -0
  81. package/dist/lib/models/common/v1/config/Flag.d.ts +58 -0
  82. package/dist/lib/models/common/v1/config/Flag.js +278 -0
  83. package/dist/lib/models/common/v1/config/IPAddressOrFQDN.d.ts +70 -0
  84. package/dist/lib/models/common/v1/config/IPAddressOrFQDN.js +313 -0
  85. package/dist/lib/models/common/v1/config/IPv4Address.d.ts +70 -0
  86. package/dist/lib/models/common/v1/config/IPv4Address.js +288 -0
  87. package/dist/lib/models/common/v1/config/IPv6Address.d.ts +70 -0
  88. package/dist/lib/models/common/v1/config/IPv6Address.js +288 -0
  89. package/dist/lib/models/common/v1/config/KVPair.d.ts +65 -0
  90. package/dist/lib/models/common/v1/config/KVPair.js +333 -0
  91. package/dist/lib/models/common/v1/config/MapOfStringWrapper.d.ts +53 -0
  92. package/dist/lib/models/common/v1/config/MapOfStringWrapper.js +236 -0
  93. package/dist/lib/models/common/v1/config/Message.d.ts +79 -0
  94. package/dist/lib/models/common/v1/config/Message.js +341 -0
  95. package/dist/lib/models/common/v1/config/MessageSeverity.d.ts +19 -0
  96. package/dist/lib/models/common/v1/config/MessageSeverity.js +89 -0
  97. package/dist/lib/models/common/v1/config/TenantAwareModel.d.ts +47 -0
  98. package/dist/lib/models/common/v1/config/TenantAwareModel.js +235 -0
  99. package/dist/lib/models/common/v1/response/ApiLink.d.ts +58 -0
  100. package/dist/lib/models/common/v1/response/ApiLink.js +271 -0
  101. package/dist/lib/models/common/v1/response/ApiResponseMetadata.d.ts +95 -0
  102. package/dist/lib/models/common/v1/response/ApiResponseMetadata.js +419 -0
  103. package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.d.ts +34 -0
  104. package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.js +262 -0
  105. package/dist/lib/models/multidomain/v4/config/CreateExternalRepositoryApiResponse.d.ts +58 -0
  106. package/dist/lib/models/multidomain/v4/config/CreateExternalRepositoryApiResponse.js +288 -0
  107. package/dist/lib/models/multidomain/v4/config/DeleteExternalRepositoryApiResponse.d.ts +58 -0
  108. package/dist/lib/models/multidomain/v4/config/DeleteExternalRepositoryApiResponse.js +288 -0
  109. package/dist/lib/models/multidomain/v4/config/ExternalRepository.d.ts +59 -0
  110. package/dist/lib/models/multidomain/v4/config/ExternalRepository.js +328 -0
  111. package/dist/lib/models/multidomain/v4/config/GetExternalRepositoryApiResponse.d.ts +58 -0
  112. package/dist/lib/models/multidomain/v4/config/GetExternalRepositoryApiResponse.js +288 -0
  113. package/dist/lib/models/multidomain/v4/config/ListExternalRepositoriesApiResponse.d.ts +58 -0
  114. package/dist/lib/models/multidomain/v4/config/ListExternalRepositoriesApiResponse.js +310 -0
  115. package/dist/lib/models/multidomain/v4/config/NFSServerAddress.d.ts +71 -0
  116. package/dist/lib/models/multidomain/v4/config/NFSServerAddress.js +279 -0
  117. package/dist/lib/models/multidomain/v4/config/NfsRepository.d.ts +73 -0
  118. package/dist/lib/models/multidomain/v4/config/NfsRepository.js +299 -0
  119. package/dist/lib/models/multidomain/v4/config/UpdateExternalRepositoryApiResponse.d.ts +58 -0
  120. package/dist/lib/models/multidomain/v4/config/UpdateExternalRepositoryApiResponse.js +288 -0
  121. package/dist/lib/models/multidomain/v4/error/AppMessage.d.ts +107 -0
  122. package/dist/lib/models/multidomain/v4/error/AppMessage.js +415 -0
  123. package/dist/lib/models/multidomain/v4/error/ErrorResponse.d.ts +47 -0
  124. package/dist/lib/models/multidomain/v4/error/ErrorResponse.js +277 -0
  125. package/dist/lib/models/multidomain/v4/error/SchemaValidationError.d.ts +92 -0
  126. package/dist/lib/models/multidomain/v4/error/SchemaValidationError.js +389 -0
  127. package/dist/lib/models/multidomain/v4/error/SchemaValidationErrorMessage.d.ts +69 -0
  128. package/dist/lib/models/multidomain/v4/error/SchemaValidationErrorMessage.js +307 -0
  129. package/dist/lib/models/prism/v4/config/TaskReference.d.ts +47 -0
  130. package/dist/lib/models/prism/v4/config/TaskReference.js +242 -0
  131. package/dist/lib/models/validation/ValidationError.d.ts +13 -0
  132. package/dist/lib/models/validation/ValidationError.js +44 -0
  133. package/dist/lib/models/validation/ValidationScopes.d.ts +9 -0
  134. package/dist/lib/models/validation/ValidationScopes.js +38 -0
  135. package/dist/lib/utils/ValidationUtils.d.ts +13 -0
  136. package/dist/lib/utils/ValidationUtils.js +55 -0
  137. package/package.json +53 -0
@@ -0,0 +1,262 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _TenantAwareModel = _interopRequireDefault(require("../config/TenantAwareModel"));
8
+ var _ApiLink = _interopRequireDefault(require("./ApiLink"));
9
+ var _ValidationScopes = _interopRequireDefault(require("../../../validation/ValidationScopes"));
10
+ var _ValidationUtils = _interopRequireDefault(require("../../../../utils/ValidationUtils"));
11
+ var _ValidationError = _interopRequireDefault(require("../../../validation/ValidationError"));
12
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
+ function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
14
+ function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); } /*
15
+ * Nutanix Multidomain Versioned APIs
16
+ *
17
+ * OpenAPI spec version: 4.2.1
18
+ *
19
+ * NOTE: This class is auto generated by the Open API Dev Platform.
20
+ *
21
+ * Open API Dev Platform Codegen version: 17.5.0.10128-RELEASE
22
+ *
23
+ * Do not edit the class manually.
24
+ *
25
+ */
26
+ /**
27
+ * The ExternalizableAbstractModel model module.
28
+ * @module Ntnx/ExternalizableAbstractModel
29
+ * @version 4.2.1
30
+ * @class ExternalizableAbstractModel
31
+ * @extends TenantAwareModel
32
+ */
33
+ var _ExternalizableAbstractModel_brand = /*#__PURE__*/new WeakSet();
34
+ class ExternalizableAbstractModel extends _TenantAwareModel.default {
35
+ /**
36
+ * Constructs a new <code>ExternalizableAbstractModel</code>.
37
+ * A model that represents an object instance that is accessible through an API endpoint. Instances of this type get an extId field that contains the globally unique identifier for that instance. Externally accessible instances are always tenant aware and, therefore, extend the TenantAwareModel
38
+ * @alias module:Ntnx/ExternalizableAbstractModel
39
+ * @extends module:Ntnx/TenantAwareModel
40
+ */
41
+ constructor() {
42
+ super();
43
+ /*
44
+ * toJson method for a map type which supports map with primitive keys and values of object types
45
+ * @param {Object} obj
46
+ * @returns {Object|Map} Returns a new transofrmed Map by calling toJson on the values if applicable.
47
+ * Otherwise, just returns the input object.
48
+ */
49
+ _classPrivateMethodInitSpec(this, _ExternalizableAbstractModel_brand);
50
+ this.$objectType = "common.v1.response.ExternalizableAbstractModel";
51
+ /** @type {object<string, any>} */
52
+ this.$reserved = {
53
+ '$fv': "v1.r0"
54
+ };
55
+ /** @type {object<string, any>} */
56
+ this.$unknownFields = {};
57
+ }
58
+
59
+ /**
60
+ * Constructs a <code>ExternalizableAbstractModel</code> from a plain JavaScript object, optionally creating a new instance.
61
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
62
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
63
+ * @param {module:Ntnx/ExternalizableAbstractModel} obj Optional instance to populate.
64
+ * @param callFromChild {Boolean} Flag to recognise calling instance
65
+ * @return {module:Ntnx/ExternalizableAbstractModel} The populated <code>ExternalizableAbstractModel</code> instance.
66
+ */
67
+ static constructFromObject(data, obj = null, callFromChild = false) {
68
+ let items, item, i, itemArr, discriminator;
69
+ if (data) {
70
+ obj = obj || new ExternalizableAbstractModel();
71
+ _TenantAwareModel.default.constructFromObject(data, obj, true);
72
+ if (data.hasOwnProperty('extId') && data.extId !== null && data.extId !== undefined) {
73
+ obj.setExtId(data['extId']);
74
+ }
75
+ if (data.hasOwnProperty('links') && data.links !== null && data.links !== undefined) {
76
+ itemArr = [];
77
+ items = data.links;
78
+ for (i = 0; i < items.length; i++) {
79
+ item = _ApiLink.default.constructFromObject(items[i], undefined);
80
+ itemArr.push(item);
81
+ }
82
+ obj.setLinks(itemArr);
83
+ }
84
+ if (!callFromChild) {
85
+ obj.$unknownFields = {
86
+ ...data.$unknownFields
87
+ };
88
+ for (const property in data) {
89
+ // Check if the `property` is not already present in `obj` keys, either in snake_case or camelCase,
90
+ // as the model's fields are generated in camelCase, but the server might return snake_case (e.g., due to standards like OIDC).
91
+ // Also, ensure the `property` does not start with '$' and end with 'ItemDiscriminator'.
92
+ // If all conditions are true, add the `property` from `data` to `obj.$unknownFields` as an unknown field.
93
+ if (!Object.keys(obj).includes(property) && !Object.keys(obj).includes(this.snakeToCamel(property)) && !(property[0] === "$" && property.endsWith("ItemDiscriminator"))) {
94
+ obj.$unknownFields[property] = data[property];
95
+ }
96
+ }
97
+ }
98
+ }
99
+ return obj;
100
+ }
101
+
102
+ /**
103
+ * Converts a given snake_case string to camelCase.
104
+ * @param {string} snakeStr - The input string in snake_case format.
105
+ * @returns {string} - The converted string in camelCase format.
106
+ */
107
+ static snakeToCamel(snakeStr) {
108
+ return snakeStr.replace(/(_\w)/g, match => match[1].toUpperCase());
109
+ }
110
+
111
+ /**
112
+ * Returns A globally unique identifier of an instance that is suitable for external consumption.
113
+ * @return {string}
114
+ */
115
+ getExtId() {
116
+ return this.extId;
117
+ }
118
+
119
+ /**
120
+ * Sets A globally unique identifier of an instance that is suitable for external consumption.
121
+ * @param {string} extId A globally unique identifier of an instance that is suitable for external consumption.
122
+ */
123
+ setExtId(extId) {
124
+ this.extId = extId;
125
+ }
126
+
127
+ /**
128
+ * Returns A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
129
+ * @return {ApiLink[]}
130
+ */
131
+ getLinks() {
132
+ return this.links;
133
+ }
134
+
135
+ /**
136
+ * Sets A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
137
+ * @param {ApiLink[]} links A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
138
+ */
139
+ setLinks(links) {
140
+ this.links = links;
141
+ }
142
+ toJson(forMutation) {
143
+ if (forMutation === false) {
144
+ return {
145
+ ...(typeof this.getExtId() !== 'undefined' && this.getExtId() !== null ? {
146
+ 'extId': this.getExtId()
147
+ } : {}),
148
+ ...(typeof this.getLinks() !== 'undefined' && this.getLinks() !== null ? {
149
+ 'links': this.getLinks().map(item => item.toJson(false))
150
+ } : {}),
151
+ ...(typeof this.getTenantId() !== 'undefined' && this.getTenantId() !== null ? {
152
+ 'tenantId': this.getTenantId()
153
+ } : {}),
154
+ '$reserved': this.get$Reserved(),
155
+ '$objectType': this.get$ObjectType(),
156
+ ...(typeof this.get$UnknownFields() !== 'undefined' && this.get$UnknownFields() !== null ? this.get$UnknownFields() : {}),
157
+ '$unknownFields': {}
158
+ };
159
+ }
160
+ return {
161
+ '$reserved': this.get$Reserved(),
162
+ '$objectType': this.get$ObjectType(),
163
+ ...(typeof this.get$UnknownFields() !== 'undefined' && this.get$UnknownFields() !== null ? this.get$UnknownFields() : {}),
164
+ '$unknownFields': {}
165
+ };
166
+ }
167
+ validate(scope, properties) {
168
+ let propList = [];
169
+ if (arguments.length === 0 || arguments.length === 1 && arguments[0] instanceof _ValidationScopes.default) {
170
+ //cases validate() and validate(scope)
171
+ propList = [];
172
+ } else if (arguments.length === 1) {
173
+ //case validate(properties)
174
+ propList = arguments[0];
175
+ scope = null;
176
+ } else {
177
+ //case validate(scope, properties)
178
+ propList = arguments[1];
179
+ }
180
+ let res = [];
181
+ let err = null;
182
+ propList.forEach(property => {
183
+ err = this.validateProperty(property, scope);
184
+ if (err) {
185
+ res.push(err);
186
+ }
187
+ });
188
+ return new Promise(function (resolve, reject) {
189
+ if (res.length !== 0) {
190
+ reject(err);
191
+ } else {
192
+ resolve();
193
+ }
194
+ });
195
+ }
196
+ validateProperty(scope, property) {
197
+ if (property === "extId") {
198
+ if (typeof this.extId === 'undefined' || this.extId === null) {
199
+ return new _ValidationError.default("extId", "undefined or null");
200
+ }
201
+ if (typeof scope === 'undefined' || scope === null) {
202
+ if (!_ValidationUtils.default.validatePattern(this.extId, /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/)) {
203
+ return new _ValidationError.default("extId", "does not satisfy required pattern: /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/");
204
+ }
205
+ } else if (scope === _ValidationScopes.default.update) {
206
+ if (!_ValidationUtils.default.validatePattern(this.extId, /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/)) {
207
+ return new _ValidationError.default("extId", "does not satisfy pattern: /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/");
208
+ }
209
+ }
210
+ }
211
+ if (property === "links") {
212
+ if (typeof this.links === 'undefined' || this.links === null) {
213
+ return new _ValidationError.default("links", "undefined or null");
214
+ }
215
+ if (!_ValidationUtils.default.validateMaxItems(this.links, 20)) {
216
+ return new _ValidationError.default("links", "does not satisfy required maxItems constraint: 20");
217
+ }
218
+ }
219
+ return new _ValidationError.default(property, "no such property exists");
220
+ }
221
+ }
222
+
223
+ /**
224
+ * A globally unique identifier of an instance that is suitable for external consumption.
225
+ * @memberof ExternalizableAbstractModel
226
+ */
227
+ exports.default = ExternalizableAbstractModel;
228
+ function _toJsonMapType(obj, forMutation) {
229
+ if (obj instanceof Map) {
230
+ return Object.fromEntries(Array.from(obj, ([k, v]) => [k, typeof v.toJson !== "undefined" ? v.toJson(forMutation) : v]));
231
+ } else if (typeof obj === 'object' && obj != null && obj.constructor === Object) {
232
+ return Object.fromEntries(Array.from(Object.entries(obj), entry => {
233
+ return [entry[0], typeof entry[1].toJson !== "undefined" ? entry[1].toJson(forMutation) : entry[1]];
234
+ }));
235
+ }
236
+ return obj;
237
+ }
238
+ /*
239
+ * toJson method for a date type which serializes a Date object to proper Date or DateTime formatting
240
+ * @param {Object} obj Object to serialize
241
+ * @param {boolean} isDateOnly Boolean variable to identify Date or DateTime format for serialization
242
+ * @returns {Object|string} Returns serialized date object or original input object
243
+ */
244
+ function _handleDateType(obj, isDateOnly) {
245
+ if (obj instanceof Date && isDateOnly !== undefined) {
246
+ return isDateOnly ? obj.toISOString().slice(0, 10) : obj.toISOString();
247
+ }
248
+ return obj;
249
+ }
250
+ ExternalizableAbstractModel.prototype.extId = undefined;
251
+
252
+ /**
253
+ * A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
254
+ * @memberof ExternalizableAbstractModel
255
+ */
256
+ ExternalizableAbstractModel.prototype.links = undefined;
257
+
258
+ /**
259
+ * A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this ID to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
260
+ * @memberof ExternalizableAbstractModel
261
+ */
262
+ _TenantAwareModel.default.prototype.tenantId = undefined;
@@ -0,0 +1,58 @@
1
+ /**
2
+ * The CreateExternalRepositoryApiResponse model module.
3
+ * @module Ntnx/CreateExternalRepositoryApiResponse
4
+ * @version 4.2.1
5
+ * @class CreateExternalRepositoryApiResponse
6
+ */
7
+ export default class CreateExternalRepositoryApiResponse extends Paginable {
8
+ /**
9
+ * Constructs a <code>CreateExternalRepositoryApiResponse</code> from a plain JavaScript object, optionally creating a new instance.
10
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
11
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
12
+ * @param {module:Ntnx/CreateExternalRepositoryApiResponse} obj Optional instance to populate.
13
+ * @param callFromChild {Boolean} Flag to recognise calling instance
14
+ * @return {module:Ntnx/CreateExternalRepositoryApiResponse} The populated <code>CreateExternalRepositoryApiResponse</code> instance.
15
+ */
16
+ static constructFromObject(data: any, obj?: any, callFromChild?: boolean): any;
17
+ /**
18
+ * Converts a given snake_case string to camelCase.
19
+ * @param {string} snakeStr - The input string in snake_case format.
20
+ * @returns {string} - The converted string in camelCase format.
21
+ */
22
+ static snakeToCamel(snakeStr: string): string;
23
+ $objectType: string;
24
+ /** @type {object<string, any>} */
25
+ $reserved: object;
26
+ /** @type {object<string, any>} */
27
+ $unknownFields: object;
28
+ /**
29
+ * @return {ApiResponseMetadata}
30
+ */
31
+ getMetadata(): ApiResponseMetadata;
32
+ /**
33
+ * @param {ApiResponseMetadata} metadata
34
+ */
35
+ setMetadata(metadata: ApiResponseMetadata): void;
36
+ metadata: ApiResponseMetadata;
37
+ /**
38
+ * @return {TaskReference | ErrorResponse}
39
+ */
40
+ getData(): TaskReference | ErrorResponse;
41
+ /**
42
+ * @param {TaskReference | ErrorResponse} data
43
+ */
44
+ setData(data: TaskReference | ErrorResponse): void;
45
+ data: ErrorResponse | TaskReference;
46
+ get$Reserved(): any;
47
+ get$ObjectType(): string;
48
+ get$UnknownFields(): any;
49
+ toJson(forMutation: any): any;
50
+ validate(scope: any, properties: any, ...args: any[]): Promise<any>;
51
+ validateProperty(scope: any, property: any): ValidationError;
52
+ #private;
53
+ }
54
+ import Paginable from "../../../../Paginable";
55
+ import ApiResponseMetadata from "../../../common/v1/response/ApiResponseMetadata";
56
+ import TaskReference from "../../../prism/v4/config/TaskReference";
57
+ import ErrorResponse from "../error/ErrorResponse";
58
+ import ValidationError from "../../../validation/ValidationError";
@@ -0,0 +1,288 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _ApiResponseMetadata = _interopRequireDefault(require("../../../common/v1/response/ApiResponseMetadata"));
8
+ var _ErrorResponse = _interopRequireDefault(require("../error/ErrorResponse"));
9
+ var _TaskReference = _interopRequireDefault(require("../../../prism/v4/config/TaskReference"));
10
+ var _ValidationScopes = _interopRequireDefault(require("../../../validation/ValidationScopes"));
11
+ var _ValidationUtils = _interopRequireDefault(require("../../../../utils/ValidationUtils"));
12
+ var _ValidationError = _interopRequireDefault(require("../../../validation/ValidationError"));
13
+ var _Paginable = _interopRequireDefault(require("../../../../Paginable"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
16
+ function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
17
+ function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); } /*
18
+ * Nutanix Multidomain Versioned APIs
19
+ *
20
+ * OpenAPI spec version: 4.2.1
21
+ *
22
+ * NOTE: This class is auto generated by the Open API Dev Platform.
23
+ *
24
+ * Open API Dev Platform Codegen version: 17.5.0.10128-RELEASE
25
+ *
26
+ * Do not edit the class manually.
27
+ *
28
+ */
29
+ /**
30
+ * The CreateExternalRepositoryApiResponse model module.
31
+ * @module Ntnx/CreateExternalRepositoryApiResponse
32
+ * @version 4.2.1
33
+ * @class CreateExternalRepositoryApiResponse
34
+ */
35
+ var _CreateExternalRepositoryApiResponse_brand = /*#__PURE__*/new WeakSet();
36
+ class CreateExternalRepositoryApiResponse extends _Paginable.default {
37
+ /**
38
+ * Constructs a new <code>CreateExternalRepositoryApiResponse</code>.
39
+ * REST response for all response codes in API path /multidomain/v4.2/config/external-repositories Post operation
40
+ * @alias module:Ntnx/CreateExternalRepositoryApiResponse
41
+ */
42
+ constructor() {
43
+ super();
44
+ /*
45
+ * toJson method for a map type which supports map with primitive keys and values of object types
46
+ * @param {Object} obj
47
+ * @returns {Object|Map} Returns a new transofrmed Map by calling toJson on the values if applicable.
48
+ * Otherwise, just returns the input object.
49
+ */
50
+ _classPrivateMethodInitSpec(this, _CreateExternalRepositoryApiResponse_brand);
51
+ this.$objectType = "multidomain.v4.config.CreateExternalRepositoryApiResponse";
52
+ /** @type {object<string, any>} */
53
+ this.$reserved = {
54
+ '$fv': "v4.r2"
55
+ };
56
+ /** @type {object<string, any>} */
57
+ this.$unknownFields = {};
58
+ }
59
+
60
+ /**
61
+ * Constructs a <code>CreateExternalRepositoryApiResponse</code> from a plain JavaScript object, optionally creating a new instance.
62
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
63
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
64
+ * @param {module:Ntnx/CreateExternalRepositoryApiResponse} obj Optional instance to populate.
65
+ * @param callFromChild {Boolean} Flag to recognise calling instance
66
+ * @return {module:Ntnx/CreateExternalRepositoryApiResponse} The populated <code>CreateExternalRepositoryApiResponse</code> instance.
67
+ */
68
+ static constructFromObject(data, obj = null, callFromChild = false) {
69
+ let items, item, i, itemArr, discriminator;
70
+ if (data) {
71
+ obj = obj || new CreateExternalRepositoryApiResponse();
72
+ if (data.hasOwnProperty('metadata')) {
73
+ _Paginable.default.constructFromObject(data['metadata'], obj);
74
+ }
75
+ if (data.hasOwnProperty('metadata') && data.metadata !== null && data.metadata !== undefined) {
76
+ obj.setMetadata(_ApiResponseMetadata.default.constructFromObject(data['metadata']));
77
+ }
78
+ if (data.hasOwnProperty('data') && data.data !== null && data.data !== undefined) {
79
+ if (data['data'].hasOwnProperty('$objectType')) {
80
+ discriminator = data['data']['$objectType'];
81
+ } else {
82
+ discriminator = typeof data['data'];
83
+ }
84
+ switch (discriminator) {
85
+ case 'prism.v4.config.TaskReference':
86
+ obj.setData(_TaskReference.default.constructFromObject(data['data'], undefined));
87
+ break;
88
+ case 'multidomain.v4.error.ErrorResponse':
89
+ obj.setData(_ErrorResponse.default.constructFromObject(data['data'], undefined));
90
+ break;
91
+ default:
92
+ throw "Unknown datatype " + discriminator + " in data";
93
+ }
94
+ }
95
+ if (data.hasOwnProperty('$reserved')) {
96
+ obj.$reserved = data['$reserved'];
97
+ }
98
+ if (data.hasOwnProperty('$objectType')) {
99
+ obj.$objectType = data['$objectType'];
100
+ }
101
+ if (data.hasOwnProperty('$unknownFields')) {
102
+ obj.$unknownFields = data['$unknownFields'];
103
+ }
104
+ if (!callFromChild) {
105
+ obj.$unknownFields = {
106
+ ...data.$unknownFields
107
+ };
108
+ for (const property in data) {
109
+ // Check if the `property` is not already present in `obj` keys, either in snake_case or camelCase,
110
+ // as the model's fields are generated in camelCase, but the server might return snake_case (e.g., due to standards like OIDC).
111
+ // Also, ensure the `property` does not start with '$' and end with 'ItemDiscriminator'.
112
+ // If all conditions are true, add the `property` from `data` to `obj.$unknownFields` as an unknown field.
113
+ if (!Object.keys(obj).includes(property) && !Object.keys(obj).includes(this.snakeToCamel(property)) && !(property[0] === "$" && property.endsWith("ItemDiscriminator"))) {
114
+ obj.$unknownFields[property] = data[property];
115
+ }
116
+ }
117
+ }
118
+ }
119
+ return obj;
120
+ }
121
+
122
+ /**
123
+ * Converts a given snake_case string to camelCase.
124
+ * @param {string} snakeStr - The input string in snake_case format.
125
+ * @returns {string} - The converted string in camelCase format.
126
+ */
127
+ static snakeToCamel(snakeStr) {
128
+ return snakeStr.replace(/(_\w)/g, match => match[1].toUpperCase());
129
+ }
130
+
131
+ /**
132
+ * @return {ApiResponseMetadata}
133
+ */
134
+ getMetadata() {
135
+ return this.metadata;
136
+ }
137
+
138
+ /**
139
+ * @param {ApiResponseMetadata} metadata
140
+ */
141
+ setMetadata(metadata) {
142
+ this.metadata = metadata;
143
+ }
144
+
145
+ /**
146
+ * @return {TaskReference | ErrorResponse}
147
+ */
148
+ getData() {
149
+ return this.data;
150
+ }
151
+
152
+ /**
153
+ * @param {TaskReference | ErrorResponse} data
154
+ */
155
+ setData(data) {
156
+ this.data = data;
157
+ }
158
+ get$Reserved() {
159
+ return this.$reserved;
160
+ }
161
+ get$ObjectType() {
162
+ return this.$objectType;
163
+ }
164
+ get$UnknownFields() {
165
+ return this.$unknownFields;
166
+ }
167
+ toJson(forMutation) {
168
+ if (forMutation === false) {
169
+ return {
170
+ ...(typeof this.getMetadata() !== 'undefined' && this.getMetadata() !== null ? {
171
+ 'metadata': this.getMetadata().toJson(false)
172
+ } : {}),
173
+ ...(typeof this.getData() !== 'undefined' && this.getData() !== null ? {
174
+ 'data': typeof this.getData().toJson !== "undefined" ? this.getData().toJson(false) : Array.isArray(this.getData()) ? this.getData().map(item => typeof item.toJson !== "undefined" ? item.toJson(false) : item) : _assertClassBrand(_CreateExternalRepositoryApiResponse_brand, this, _toJsonMapType).call(this, this.getData(), false)
175
+ } : {}),
176
+ '$reserved': this.get$Reserved(),
177
+ '$objectType': this.get$ObjectType(),
178
+ ...(typeof this.get$UnknownFields() !== 'undefined' && this.get$UnknownFields() !== null ? this.get$UnknownFields() : {}),
179
+ '$unknownFields': {}
180
+ };
181
+ }
182
+ return {
183
+ ...(typeof this.getMetadata() !== 'undefined' && this.getMetadata() !== null ? {
184
+ 'metadata': this.getMetadata().toJson(false)
185
+ } : {}),
186
+ ...(typeof this.getData() !== 'undefined' && this.getData() !== null ? {
187
+ 'data': typeof this.getData().toJson !== "undefined" ? this.getData().toJson() : Array.isArray(this.getData()) ? this.getData().map(item => typeof item.toJson !== "undefined" ? item.toJson() : item) : _assertClassBrand(_CreateExternalRepositoryApiResponse_brand, this, _toJsonMapType).call(this, this.getData())
188
+ } : {}),
189
+ '$reserved': this.get$Reserved(),
190
+ '$objectType': this.get$ObjectType(),
191
+ ...(typeof this.get$UnknownFields() !== 'undefined' && this.get$UnknownFields() !== null ? this.get$UnknownFields() : {}),
192
+ '$unknownFields': {}
193
+ };
194
+ }
195
+ validate(scope, properties) {
196
+ let propList = [];
197
+ if (arguments.length === 0 || arguments.length === 1 && arguments[0] instanceof _ValidationScopes.default) {
198
+ //cases validate() and validate(scope)
199
+ propList = [];
200
+ } else if (arguments.length === 1) {
201
+ //case validate(properties)
202
+ propList = arguments[0];
203
+ scope = null;
204
+ } else {
205
+ //case validate(scope, properties)
206
+ propList = arguments[1];
207
+ }
208
+ let res = [];
209
+ let err = null;
210
+ propList.forEach(property => {
211
+ err = this.validateProperty(property, scope);
212
+ if (err) {
213
+ res.push(err);
214
+ }
215
+ });
216
+ return new Promise(function (resolve, reject) {
217
+ if (res.length !== 0) {
218
+ reject(err);
219
+ } else {
220
+ resolve();
221
+ }
222
+ });
223
+ }
224
+ validateProperty(scope, property) {
225
+ if (property === "metadata") {
226
+ if (typeof this.metadata === 'undefined' || this.metadata === null) {
227
+ return new _ValidationError.default("metadata", "undefined or null");
228
+ }
229
+ }
230
+ if (property === "data") {
231
+ if (typeof this.data === 'undefined' || this.data === null) {
232
+ return new _ValidationError.default("data", "undefined or null");
233
+ }
234
+ }
235
+ if (property === "$reserved") {
236
+ if (typeof this.$reserved === 'undefined' || this.$reserved === null) {
237
+ return new _ValidationError.default("$reserved", "undefined or null");
238
+ }
239
+ }
240
+ if (property === "$objectType") {
241
+ if (typeof this.$objectType === 'undefined' || this.$objectType === null) {
242
+ return new _ValidationError.default("$objectType", "undefined or null");
243
+ }
244
+ }
245
+ if (property === "$unknownFields") {
246
+ if (typeof this.$unknownFields === 'undefined' || this.$unknownFields === null) {
247
+ return new _ValidationError.default("$unknownFields", "undefined or null");
248
+ }
249
+ }
250
+ return new _ValidationError.default(property, "no such property exists");
251
+ }
252
+ }
253
+
254
+ /**
255
+ * @memberof CreateExternalRepositoryApiResponse
256
+ */
257
+ exports.default = CreateExternalRepositoryApiResponse;
258
+ function _toJsonMapType(obj, forMutation) {
259
+ if (obj instanceof Map) {
260
+ return Object.fromEntries(Array.from(obj, ([k, v]) => [k, typeof v.toJson !== "undefined" ? v.toJson(forMutation) : v]));
261
+ } else if (typeof obj === 'object' && obj != null && obj.constructor === Object) {
262
+ return Object.fromEntries(Array.from(Object.entries(obj), entry => {
263
+ return [entry[0], typeof entry[1].toJson !== "undefined" ? entry[1].toJson(forMutation) : entry[1]];
264
+ }));
265
+ }
266
+ return obj;
267
+ }
268
+ /*
269
+ * toJson method for a date type which serializes a Date object to proper Date or DateTime formatting
270
+ * @param {Object} obj Object to serialize
271
+ * @param {boolean} isDateOnly Boolean variable to identify Date or DateTime format for serialization
272
+ * @returns {Object|string} Returns serialized date object or original input object
273
+ */
274
+ function _handleDateType(obj, isDateOnly) {
275
+ if (obj instanceof Date && isDateOnly !== undefined) {
276
+ return isDateOnly ? obj.toISOString().slice(0, 10) : obj.toISOString();
277
+ }
278
+ return obj;
279
+ }
280
+ CreateExternalRepositoryApiResponse.prototype.metadata = undefined;
281
+
282
+ /**
283
+ * @memberof CreateExternalRepositoryApiResponse
284
+ */
285
+ CreateExternalRepositoryApiResponse.prototype.data = undefined;
286
+ CreateExternalRepositoryApiResponse.prototype.$reserved = undefined;
287
+ CreateExternalRepositoryApiResponse.prototype.$objectType = undefined;
288
+ CreateExternalRepositoryApiResponse.prototype.$unknownFields = undefined;
@@ -0,0 +1,58 @@
1
+ /**
2
+ * The DeleteExternalRepositoryApiResponse model module.
3
+ * @module Ntnx/DeleteExternalRepositoryApiResponse
4
+ * @version 4.2.1
5
+ * @class DeleteExternalRepositoryApiResponse
6
+ */
7
+ export default class DeleteExternalRepositoryApiResponse extends Paginable {
8
+ /**
9
+ * Constructs a <code>DeleteExternalRepositoryApiResponse</code> from a plain JavaScript object, optionally creating a new instance.
10
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
11
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
12
+ * @param {module:Ntnx/DeleteExternalRepositoryApiResponse} obj Optional instance to populate.
13
+ * @param callFromChild {Boolean} Flag to recognise calling instance
14
+ * @return {module:Ntnx/DeleteExternalRepositoryApiResponse} The populated <code>DeleteExternalRepositoryApiResponse</code> instance.
15
+ */
16
+ static constructFromObject(data: any, obj?: any, callFromChild?: boolean): any;
17
+ /**
18
+ * Converts a given snake_case string to camelCase.
19
+ * @param {string} snakeStr - The input string in snake_case format.
20
+ * @returns {string} - The converted string in camelCase format.
21
+ */
22
+ static snakeToCamel(snakeStr: string): string;
23
+ $objectType: string;
24
+ /** @type {object<string, any>} */
25
+ $reserved: object;
26
+ /** @type {object<string, any>} */
27
+ $unknownFields: object;
28
+ /**
29
+ * @return {ApiResponseMetadata}
30
+ */
31
+ getMetadata(): ApiResponseMetadata;
32
+ /**
33
+ * @param {ApiResponseMetadata} metadata
34
+ */
35
+ setMetadata(metadata: ApiResponseMetadata): void;
36
+ metadata: ApiResponseMetadata;
37
+ /**
38
+ * @return {TaskReference | ErrorResponse}
39
+ */
40
+ getData(): TaskReference | ErrorResponse;
41
+ /**
42
+ * @param {TaskReference | ErrorResponse} data
43
+ */
44
+ setData(data: TaskReference | ErrorResponse): void;
45
+ data: ErrorResponse | TaskReference;
46
+ get$Reserved(): any;
47
+ get$ObjectType(): string;
48
+ get$UnknownFields(): any;
49
+ toJson(forMutation: any): any;
50
+ validate(scope: any, properties: any, ...args: any[]): Promise<any>;
51
+ validateProperty(scope: any, property: any): ValidationError;
52
+ #private;
53
+ }
54
+ import Paginable from "../../../../Paginable";
55
+ import ApiResponseMetadata from "../../../common/v1/response/ApiResponseMetadata";
56
+ import TaskReference from "../../../prism/v4/config/TaskReference";
57
+ import ErrorResponse from "../error/ErrorResponse";
58
+ import ValidationError from "../../../validation/ValidationError";