oci-pricing-mcp 1.2.2 → 1.3.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/LICENSE +21 -201
- package/README.md +101 -247
- package/dist/data/fetcher.d.ts +60 -1
- package/dist/data/fetcher.d.ts.map +1 -1
- package/dist/data/fetcher.js +164 -0
- package/dist/data/fetcher.js.map +1 -1
- package/dist/data/pricing-data.json +6752 -3696
- package/dist/index.js +290 -0
- package/dist/index.js.map +1 -1
- package/dist/tools/multicloud.d.ts +183 -0
- package/dist/tools/multicloud.d.ts.map +1 -0
- package/dist/tools/multicloud.js +360 -0
- package/dist/tools/multicloud.js.map +1 -0
- package/dist/tools/services.d.ts +161 -0
- package/dist/tools/services.d.ts.map +1 -0
- package/dist/tools/services.js +283 -0
- package/dist/tools/services.js.map +1 -0
- package/dist/types.d.ts +186 -7
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Multicloud Database Tools
|
|
3
|
+
* Tools for Oracle's multicloud database offerings (Database@Azure, Database@AWS, Database@Google Cloud)
|
|
4
|
+
*/
|
|
5
|
+
import { getMulticloudAvailability, getMulticloudPricing, getMulticloudData, getLastUpdated, getDatabasePricing } from '../data/fetcher.js';
|
|
6
|
+
// Helper function to map simplified database type to internal types
|
|
7
|
+
function mapDatabaseTypeFilter(filter) {
|
|
8
|
+
if (!filter)
|
|
9
|
+
return [];
|
|
10
|
+
switch (filter) {
|
|
11
|
+
case 'autonomous':
|
|
12
|
+
return ['autonomous-serverless', 'autonomous-dedicated'];
|
|
13
|
+
case 'exadata':
|
|
14
|
+
return ['exadata', 'exascale'];
|
|
15
|
+
case 'base-db':
|
|
16
|
+
return ['base-db'];
|
|
17
|
+
default:
|
|
18
|
+
return [];
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
// Helper to get display name for provider
|
|
22
|
+
function getProviderDisplayName(provider) {
|
|
23
|
+
switch (provider) {
|
|
24
|
+
case 'azure': return 'Microsoft Azure';
|
|
25
|
+
case 'aws': return 'Amazon Web Services';
|
|
26
|
+
case 'gcp': return 'Google Cloud Platform';
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
// Helper to get the brand name for multicloud offering
|
|
30
|
+
function getMulticloudBrandName(provider) {
|
|
31
|
+
switch (provider) {
|
|
32
|
+
case 'azure': return 'Oracle Database@Azure';
|
|
33
|
+
case 'aws': return 'Oracle Database@AWS';
|
|
34
|
+
case 'gcp': return 'Oracle Database@Google Cloud';
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* List Oracle database services available on Azure, AWS, and Google Cloud
|
|
39
|
+
*/
|
|
40
|
+
export function listMulticloudDatabases(params = {}) {
|
|
41
|
+
const availability = getMulticloudAvailability();
|
|
42
|
+
const allPricing = getMulticloudPricing();
|
|
43
|
+
const multicloudData = getMulticloudData();
|
|
44
|
+
let databases = [];
|
|
45
|
+
// Filter by database type if specified
|
|
46
|
+
const typeFilter = mapDatabaseTypeFilter(params.databaseType);
|
|
47
|
+
for (const db of availability) {
|
|
48
|
+
// Apply database type filter
|
|
49
|
+
if (typeFilter.length > 0 && !typeFilter.includes(db.databaseType)) {
|
|
50
|
+
continue;
|
|
51
|
+
}
|
|
52
|
+
// Apply provider filter - only include if available on that provider
|
|
53
|
+
if (params.provider) {
|
|
54
|
+
const isAvailable = params.provider === 'azure' ? db.azure :
|
|
55
|
+
params.provider === 'aws' ? db.aws : db.gcp;
|
|
56
|
+
if (!isAvailable)
|
|
57
|
+
continue;
|
|
58
|
+
}
|
|
59
|
+
// Get pricing for this database type
|
|
60
|
+
const pricing = allPricing.filter(p => p.databaseType === db.databaseType);
|
|
61
|
+
// Apply provider filter to pricing
|
|
62
|
+
const filteredPricing = params.provider
|
|
63
|
+
? pricing.filter(p => p.provider === params.provider)
|
|
64
|
+
: pricing;
|
|
65
|
+
databases.push({
|
|
66
|
+
databaseType: db.databaseType,
|
|
67
|
+
displayName: db.displayName,
|
|
68
|
+
availability: {
|
|
69
|
+
azure: db.azure,
|
|
70
|
+
aws: db.aws,
|
|
71
|
+
gcp: db.gcp,
|
|
72
|
+
},
|
|
73
|
+
notes: db.notes,
|
|
74
|
+
pricing: filteredPricing.length > 0 ? filteredPricing : undefined,
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
databases,
|
|
79
|
+
totalCount: databases.length,
|
|
80
|
+
lastUpdated: multicloudData?.lastUpdated || getLastUpdated(),
|
|
81
|
+
filters: {
|
|
82
|
+
provider: params.provider || 'all',
|
|
83
|
+
databaseType: params.databaseType || 'all',
|
|
84
|
+
},
|
|
85
|
+
notes: [
|
|
86
|
+
'Oracle maintains price parity across all cloud providers',
|
|
87
|
+
params.provider === 'aws'
|
|
88
|
+
? 'AWS offerings are primarily through private offers - contact Oracle or AWS for quotes'
|
|
89
|
+
: 'Azure and GCP offer public marketplace pricing with consolidated billing',
|
|
90
|
+
],
|
|
91
|
+
tips: [
|
|
92
|
+
'Use calculate_multicloud_database_cost for specific cost estimates',
|
|
93
|
+
'Use compare_multicloud_vs_oci to compare costs across deployment options',
|
|
94
|
+
],
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Get the full availability matrix showing which Oracle database products are available on which cloud providers
|
|
99
|
+
*/
|
|
100
|
+
export function getMulticloudAvailabilityMatrix() {
|
|
101
|
+
const availability = getMulticloudAvailability();
|
|
102
|
+
const multicloudData = getMulticloudData();
|
|
103
|
+
// Build a formatted matrix
|
|
104
|
+
const matrix = availability.map(db => ({
|
|
105
|
+
product: db.displayName,
|
|
106
|
+
databaseType: db.databaseType,
|
|
107
|
+
azure: db.azure ? '✓' : '✗',
|
|
108
|
+
aws: db.aws ? '✓' : '✗',
|
|
109
|
+
gcp: db.gcp ? '✓' : '✗',
|
|
110
|
+
notes: db.notes,
|
|
111
|
+
}));
|
|
112
|
+
// Summary counts
|
|
113
|
+
const summary = {
|
|
114
|
+
azure: availability.filter(db => db.azure).length,
|
|
115
|
+
aws: availability.filter(db => db.aws).length,
|
|
116
|
+
gcp: availability.filter(db => db.gcp).length,
|
|
117
|
+
total: availability.length,
|
|
118
|
+
};
|
|
119
|
+
return {
|
|
120
|
+
matrix,
|
|
121
|
+
summary: {
|
|
122
|
+
azure: `${summary.azure}/${summary.total} products available`,
|
|
123
|
+
aws: `${summary.aws}/${summary.total} products available`,
|
|
124
|
+
gcp: `${summary.gcp}/${summary.total} products available`,
|
|
125
|
+
},
|
|
126
|
+
lastUpdated: multicloudData?.lastUpdated || getLastUpdated(),
|
|
127
|
+
notes: multicloudData?.notes || [],
|
|
128
|
+
legend: {
|
|
129
|
+
'✓': 'Available',
|
|
130
|
+
'✗': 'Not available',
|
|
131
|
+
},
|
|
132
|
+
multicloudBrands: {
|
|
133
|
+
azure: 'Oracle Database@Azure',
|
|
134
|
+
aws: 'Oracle Database@AWS',
|
|
135
|
+
gcp: 'Oracle Database@Google Cloud',
|
|
136
|
+
},
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Calculate estimated monthly cost for running Oracle database on Azure, AWS, or Google Cloud
|
|
141
|
+
*/
|
|
142
|
+
export function calculateMulticloudDatabaseCost(params) {
|
|
143
|
+
const { provider, databaseType, computeUnits, storageGB, licenseType = 'included' } = params;
|
|
144
|
+
// Get pricing for this specific database type and provider
|
|
145
|
+
const pricing = getMulticloudPricing({ provider, databaseType });
|
|
146
|
+
if (pricing.length === 0) {
|
|
147
|
+
return {
|
|
148
|
+
error: `No pricing available for ${databaseType} on ${getProviderDisplayName(provider)}`,
|
|
149
|
+
available: false,
|
|
150
|
+
suggestion: 'Use get_multicloud_availability to see which products are available on each provider',
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
const dbPricing = pricing[0];
|
|
154
|
+
// Check if the product is available
|
|
155
|
+
if (!dbPricing.available) {
|
|
156
|
+
return {
|
|
157
|
+
error: `${databaseType} is not currently available on ${getProviderDisplayName(provider)}`,
|
|
158
|
+
available: false,
|
|
159
|
+
billingNote: dbPricing.billingNote,
|
|
160
|
+
suggestion: 'This product may become available in the future or you can use OCI directly',
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
// Calculate costs
|
|
164
|
+
const hoursPerMonth = 730;
|
|
165
|
+
const useBYOL = licenseType === 'byol' && dbPricing.byolAvailable;
|
|
166
|
+
// Determine compute price (prefer ECPU, fall back to OCPU)
|
|
167
|
+
const computePrice = useBYOL
|
|
168
|
+
? (dbPricing.byolPrice || dbPricing.ecpuPrice || dbPricing.ocpuPrice || 0)
|
|
169
|
+
: (dbPricing.licenseIncludedPrice || dbPricing.ecpuPrice || dbPricing.ocpuPrice || 0);
|
|
170
|
+
const storagePrice = dbPricing.storagePrice || 0;
|
|
171
|
+
const computeCost = computeUnits * computePrice * hoursPerMonth;
|
|
172
|
+
const storageCost = storageGB * storagePrice;
|
|
173
|
+
const totalMonthly = computeCost + storageCost;
|
|
174
|
+
const breakdown = [
|
|
175
|
+
{
|
|
176
|
+
item: `Compute (${dbPricing.ecpuPrice ? 'ECPU' : 'OCPU'})`,
|
|
177
|
+
quantity: computeUnits,
|
|
178
|
+
unit: `${dbPricing.ecpuPrice ? 'ECPU' : 'OCPU'}/hour`,
|
|
179
|
+
unitPrice: computePrice,
|
|
180
|
+
hoursPerMonth,
|
|
181
|
+
monthlyTotal: Math.round(computeCost * 100) / 100,
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
item: 'Storage',
|
|
185
|
+
quantity: storageGB,
|
|
186
|
+
unit: 'GB/month',
|
|
187
|
+
unitPrice: storagePrice,
|
|
188
|
+
monthlyTotal: Math.round(storageCost * 100) / 100,
|
|
189
|
+
},
|
|
190
|
+
];
|
|
191
|
+
return {
|
|
192
|
+
provider: getProviderDisplayName(provider),
|
|
193
|
+
multicloudBrand: getMulticloudBrandName(provider),
|
|
194
|
+
databaseType,
|
|
195
|
+
configuration: {
|
|
196
|
+
computeUnits,
|
|
197
|
+
storageGB,
|
|
198
|
+
licenseType: useBYOL ? 'BYOL' : 'License Included',
|
|
199
|
+
},
|
|
200
|
+
breakdown,
|
|
201
|
+
totalMonthly: Math.round(totalMonthly * 100) / 100,
|
|
202
|
+
currency: 'USD',
|
|
203
|
+
pricingModel: dbPricing.pricingModel,
|
|
204
|
+
billingNote: dbPricing.billingNote,
|
|
205
|
+
marketplaceUrl: dbPricing.marketplaceUrl,
|
|
206
|
+
notes: [
|
|
207
|
+
dbPricing.pricingModel === 'private-offer'
|
|
208
|
+
? 'Pricing shown is an estimate based on OCI price parity. Contact Oracle or the cloud provider for actual pricing.'
|
|
209
|
+
: 'Pricing based on public marketplace rates',
|
|
210
|
+
useBYOL ? 'BYOL pricing applied - you must have existing Oracle licenses' : 'License Included pricing applied',
|
|
211
|
+
'Actual costs may vary based on usage patterns and any applicable discounts',
|
|
212
|
+
],
|
|
213
|
+
lastUpdated: getLastUpdated(),
|
|
214
|
+
};
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Compare costs of running Oracle database on OCI vs Azure/AWS/GCP
|
|
218
|
+
*/
|
|
219
|
+
export function compareMulticloudVsOCI(params) {
|
|
220
|
+
const { databaseType, computeUnits, storageGB } = params;
|
|
221
|
+
const hoursPerMonth = 730;
|
|
222
|
+
// Get multicloud pricing for all providers
|
|
223
|
+
const multicloudPricing = getMulticloudPricing({ databaseType });
|
|
224
|
+
// Get OCI pricing for comparison
|
|
225
|
+
const ociDatabasePricing = getDatabasePricing();
|
|
226
|
+
// Map multicloud database type to OCI database type (bundled data uses different naming)
|
|
227
|
+
let ociDbType;
|
|
228
|
+
switch (databaseType) {
|
|
229
|
+
case 'autonomous-serverless':
|
|
230
|
+
ociDbType = 'autonomous-db-atp';
|
|
231
|
+
break;
|
|
232
|
+
case 'autonomous-dedicated':
|
|
233
|
+
ociDbType = 'autonomous-db-atp';
|
|
234
|
+
break;
|
|
235
|
+
case 'exadata':
|
|
236
|
+
case 'exascale':
|
|
237
|
+
ociDbType = 'exadata-cloud';
|
|
238
|
+
break;
|
|
239
|
+
case 'base-db':
|
|
240
|
+
ociDbType = 'base-database';
|
|
241
|
+
break;
|
|
242
|
+
default:
|
|
243
|
+
ociDbType = databaseType;
|
|
244
|
+
}
|
|
245
|
+
// Find OCI pricing
|
|
246
|
+
const ociPricing = ociDatabasePricing.find(p => p.databaseType === ociDbType || p.type === ociDbType);
|
|
247
|
+
// Get multicloud pricing for an available provider to use as price parity reference
|
|
248
|
+
const referenceMulticloudPricing = multicloudPricing.find(p => p.available);
|
|
249
|
+
// Calculate OCI cost - use multicloud pricing as reference (price parity)
|
|
250
|
+
let ociCost = 0;
|
|
251
|
+
let ociComputePrice = 0;
|
|
252
|
+
let ociStoragePrice = 0;
|
|
253
|
+
// For price parity, use multicloud pricing if OCI bundled data is incomplete
|
|
254
|
+
if (referenceMulticloudPricing) {
|
|
255
|
+
ociComputePrice = referenceMulticloudPricing.licenseIncludedPrice ||
|
|
256
|
+
referenceMulticloudPricing.ecpuPrice ||
|
|
257
|
+
referenceMulticloudPricing.ocpuPrice ||
|
|
258
|
+
ociPricing?.ecpuPrice ||
|
|
259
|
+
ociPricing?.pricePerUnit ||
|
|
260
|
+
0.1;
|
|
261
|
+
ociStoragePrice = referenceMulticloudPricing.storagePrice ||
|
|
262
|
+
ociPricing?.storagePrice ||
|
|
263
|
+
0.0255;
|
|
264
|
+
}
|
|
265
|
+
else if (ociPricing) {
|
|
266
|
+
ociComputePrice = ociPricing.ecpuPrice || ociPricing.pricePerUnit || 0.1;
|
|
267
|
+
ociStoragePrice = ociPricing.storagePrice || 0.0255;
|
|
268
|
+
}
|
|
269
|
+
ociCost = (computeUnits * ociComputePrice * hoursPerMonth) + (storageGB * ociStoragePrice);
|
|
270
|
+
// Build comparison table
|
|
271
|
+
const comparison = [];
|
|
272
|
+
// Add OCI first
|
|
273
|
+
comparison.push({
|
|
274
|
+
provider: 'OCI',
|
|
275
|
+
brand: 'Oracle Cloud Infrastructure',
|
|
276
|
+
available: true,
|
|
277
|
+
pricingModel: 'direct',
|
|
278
|
+
computePrice: ociComputePrice,
|
|
279
|
+
storagePrice: ociStoragePrice,
|
|
280
|
+
monthlyEstimate: Math.round(ociCost * 100) / 100,
|
|
281
|
+
vsOCI: 'baseline',
|
|
282
|
+
billingNote: 'Direct billing from Oracle',
|
|
283
|
+
});
|
|
284
|
+
// Add multicloud options
|
|
285
|
+
const providers = ['azure', 'aws', 'gcp'];
|
|
286
|
+
for (const provider of providers) {
|
|
287
|
+
const pricing = multicloudPricing.find(p => p.provider === provider);
|
|
288
|
+
if (pricing) {
|
|
289
|
+
const computePrice = pricing.licenseIncludedPrice || pricing.ecpuPrice || pricing.ocpuPrice || 0;
|
|
290
|
+
const storagePrice = pricing.storagePrice || 0;
|
|
291
|
+
const monthlyEstimate = pricing.available
|
|
292
|
+
? (computeUnits * computePrice * hoursPerMonth) + (storageGB * storagePrice)
|
|
293
|
+
: 0;
|
|
294
|
+
const vsOCI = pricing.available && ociCost > 0
|
|
295
|
+
? monthlyEstimate === ociCost
|
|
296
|
+
? 'same price (price parity)'
|
|
297
|
+
: monthlyEstimate > ociCost
|
|
298
|
+
? `+$${Math.round((monthlyEstimate - ociCost) * 100) / 100}/mo`
|
|
299
|
+
: `-$${Math.round((ociCost - monthlyEstimate) * 100) / 100}/mo`
|
|
300
|
+
: 'N/A';
|
|
301
|
+
comparison.push({
|
|
302
|
+
provider: getProviderDisplayName(provider),
|
|
303
|
+
brand: getMulticloudBrandName(provider),
|
|
304
|
+
available: pricing.available,
|
|
305
|
+
pricingModel: pricing.pricingModel,
|
|
306
|
+
computePrice: pricing.available ? computePrice : 0,
|
|
307
|
+
storagePrice: pricing.available ? storagePrice : 0,
|
|
308
|
+
monthlyEstimate: pricing.available ? Math.round(monthlyEstimate * 100) / 100 : 0,
|
|
309
|
+
vsOCI,
|
|
310
|
+
billingNote: pricing.billingNote,
|
|
311
|
+
marketplaceUrl: pricing.marketplaceUrl,
|
|
312
|
+
});
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
return {
|
|
316
|
+
databaseType,
|
|
317
|
+
configuration: {
|
|
318
|
+
computeUnits,
|
|
319
|
+
storageGB,
|
|
320
|
+
hoursPerMonth,
|
|
321
|
+
licenseType: 'included',
|
|
322
|
+
},
|
|
323
|
+
comparison,
|
|
324
|
+
summary: {
|
|
325
|
+
ociMonthly: Math.round(ociCost * 100) / 100,
|
|
326
|
+
priceParity: 'Oracle maintains price parity across all cloud providers',
|
|
327
|
+
recommendation: 'Choose based on existing cloud investments, compliance requirements, and operational preferences',
|
|
328
|
+
},
|
|
329
|
+
keyDifferences: [
|
|
330
|
+
{
|
|
331
|
+
aspect: 'Billing',
|
|
332
|
+
oci: 'Direct Oracle billing',
|
|
333
|
+
azure: 'Azure Marketplace (consolidated with Azure services)',
|
|
334
|
+
aws: 'Private offer (contact for quote)',
|
|
335
|
+
gcp: 'Google Cloud Marketplace (consolidated with GCP services)',
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
aspect: 'Support',
|
|
339
|
+
oci: 'Oracle Support',
|
|
340
|
+
azure: 'Joint Oracle + Microsoft support',
|
|
341
|
+
aws: 'Oracle Support (via private offer terms)',
|
|
342
|
+
gcp: 'Joint Oracle + Google support',
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
aspect: 'Network Integration',
|
|
346
|
+
oci: 'Native OCI networking',
|
|
347
|
+
azure: 'Azure VNet integration',
|
|
348
|
+
aws: 'AWS VPC integration',
|
|
349
|
+
gcp: 'GCP VPC integration',
|
|
350
|
+
},
|
|
351
|
+
],
|
|
352
|
+
lastUpdated: getLastUpdated(),
|
|
353
|
+
notes: [
|
|
354
|
+
'Price parity means the same Oracle database costs the same regardless of cloud provider',
|
|
355
|
+
'AWS pricing requires private offer - contact Oracle or AWS for specific quotes',
|
|
356
|
+
'Marketplace billing allows consolidated invoicing with other cloud services',
|
|
357
|
+
],
|
|
358
|
+
};
|
|
359
|
+
}
|
|
360
|
+
//# sourceMappingURL=multicloud.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multicloud.js","sourceRoot":"","sources":["../../src/tools/multicloud.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OCI Services Tools
|
|
3
|
+
* Tools for AI/ML, Observability, Integration, Security, Analytics, Developer, Media, VMware, Edge, and Governance services
|
|
4
|
+
*/
|
|
5
|
+
export interface ListAIMLParams {
|
|
6
|
+
type?: string;
|
|
7
|
+
model?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function listAIMLServices(params?: ListAIMLParams): {
|
|
10
|
+
services: import("../types.js").AIMLPricing[];
|
|
11
|
+
totalCount: number;
|
|
12
|
+
byType: {
|
|
13
|
+
type: string;
|
|
14
|
+
count: number;
|
|
15
|
+
items: import("../types.js").AIMLPricing[];
|
|
16
|
+
}[];
|
|
17
|
+
lastUpdated: string;
|
|
18
|
+
availableTypes: import("../types.js").AIMLServiceType[];
|
|
19
|
+
availableModels: (string | undefined)[];
|
|
20
|
+
notes: string[];
|
|
21
|
+
};
|
|
22
|
+
export interface ListObservabilityParams {
|
|
23
|
+
type?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function listObservabilityServices(params?: ListObservabilityParams): {
|
|
26
|
+
services: import("../types.js").ObservabilityPricing[];
|
|
27
|
+
totalCount: number;
|
|
28
|
+
byType: {
|
|
29
|
+
type: string;
|
|
30
|
+
count: number;
|
|
31
|
+
items: import("../types.js").ObservabilityPricing[];
|
|
32
|
+
}[];
|
|
33
|
+
lastUpdated: string;
|
|
34
|
+
availableTypes: import("../types.js").ObservabilityServiceType[];
|
|
35
|
+
freeAllowances: {
|
|
36
|
+
service: string;
|
|
37
|
+
allowance: string;
|
|
38
|
+
}[];
|
|
39
|
+
notes: string[];
|
|
40
|
+
};
|
|
41
|
+
export interface ListIntegrationParams {
|
|
42
|
+
type?: string;
|
|
43
|
+
}
|
|
44
|
+
export declare function listIntegrationServices(params?: ListIntegrationParams): {
|
|
45
|
+
services: import("../types.js").IntegrationPricing[];
|
|
46
|
+
totalCount: number;
|
|
47
|
+
byType: {
|
|
48
|
+
type: string;
|
|
49
|
+
count: number;
|
|
50
|
+
items: import("../types.js").IntegrationPricing[];
|
|
51
|
+
}[];
|
|
52
|
+
lastUpdated: string;
|
|
53
|
+
availableTypes: import("../types.js").IntegrationServiceType[];
|
|
54
|
+
notes: string[];
|
|
55
|
+
};
|
|
56
|
+
export interface ListSecurityParams {
|
|
57
|
+
type?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare function listSecurityServices(params?: ListSecurityParams): {
|
|
60
|
+
services: import("../types.js").SecurityPricing[];
|
|
61
|
+
totalCount: number;
|
|
62
|
+
byType: {
|
|
63
|
+
type: string;
|
|
64
|
+
count: number;
|
|
65
|
+
items: import("../types.js").SecurityPricing[];
|
|
66
|
+
}[];
|
|
67
|
+
lastUpdated: string;
|
|
68
|
+
availableTypes: import("../types.js").SecurityServiceType[];
|
|
69
|
+
freeServices: string[];
|
|
70
|
+
notes: string[];
|
|
71
|
+
};
|
|
72
|
+
export interface ListAnalyticsParams {
|
|
73
|
+
type?: string;
|
|
74
|
+
}
|
|
75
|
+
export declare function listAnalyticsServices(params?: ListAnalyticsParams): {
|
|
76
|
+
services: import("../types.js").AnalyticsPricing[];
|
|
77
|
+
totalCount: number;
|
|
78
|
+
byType: {
|
|
79
|
+
type: string;
|
|
80
|
+
count: number;
|
|
81
|
+
items: import("../types.js").AnalyticsPricing[];
|
|
82
|
+
}[];
|
|
83
|
+
lastUpdated: string;
|
|
84
|
+
availableTypes: import("../types.js").AnalyticsServiceType[];
|
|
85
|
+
notes: string[];
|
|
86
|
+
};
|
|
87
|
+
export interface ListDeveloperParams {
|
|
88
|
+
type?: string;
|
|
89
|
+
}
|
|
90
|
+
export declare function listDeveloperServices(params?: ListDeveloperParams): {
|
|
91
|
+
services: import("../types.js").DeveloperPricing[];
|
|
92
|
+
totalCount: number;
|
|
93
|
+
byType: {
|
|
94
|
+
type: string;
|
|
95
|
+
count: number;
|
|
96
|
+
items: import("../types.js").DeveloperPricing[];
|
|
97
|
+
}[];
|
|
98
|
+
lastUpdated: string;
|
|
99
|
+
availableTypes: import("../types.js").DeveloperServiceType[];
|
|
100
|
+
freeServices: string[];
|
|
101
|
+
notes: string[];
|
|
102
|
+
};
|
|
103
|
+
export interface ListMediaParams {
|
|
104
|
+
type?: string;
|
|
105
|
+
}
|
|
106
|
+
export declare function listMediaServices(params?: ListMediaParams): {
|
|
107
|
+
services: import("../types.js").MediaPricing[];
|
|
108
|
+
totalCount: number;
|
|
109
|
+
byType: {
|
|
110
|
+
type: string;
|
|
111
|
+
count: number;
|
|
112
|
+
sample: import("../types.js").MediaPricing[];
|
|
113
|
+
}[];
|
|
114
|
+
lastUpdated: string;
|
|
115
|
+
availableTypes: import("../types.js").MediaServiceType[];
|
|
116
|
+
notes: string[];
|
|
117
|
+
};
|
|
118
|
+
export declare function listVMwareServices(): {
|
|
119
|
+
services: import("../types.js").VMwarePricing[];
|
|
120
|
+
totalCount: number;
|
|
121
|
+
lastUpdated: string;
|
|
122
|
+
notes: string[];
|
|
123
|
+
};
|
|
124
|
+
export interface ListEdgeParams {
|
|
125
|
+
type?: string;
|
|
126
|
+
}
|
|
127
|
+
export declare function listEdgeServices(params?: ListEdgeParams): {
|
|
128
|
+
services: import("../types.js").EdgePricing[];
|
|
129
|
+
totalCount: number;
|
|
130
|
+
lastUpdated: string;
|
|
131
|
+
availableTypes: import("../types.js").EdgeServiceType[];
|
|
132
|
+
freeAllowances: {
|
|
133
|
+
service: string;
|
|
134
|
+
allowance: string;
|
|
135
|
+
}[];
|
|
136
|
+
notes: string[];
|
|
137
|
+
};
|
|
138
|
+
export interface ListGovernanceParams {
|
|
139
|
+
type?: string;
|
|
140
|
+
}
|
|
141
|
+
export declare function listGovernanceServices(params?: ListGovernanceParams): {
|
|
142
|
+
services: import("../types.js").GovernancePricing[];
|
|
143
|
+
totalCount: number;
|
|
144
|
+
lastUpdated: string;
|
|
145
|
+
availableTypes: import("../types.js").GovernanceServiceType[];
|
|
146
|
+
notes: string[];
|
|
147
|
+
};
|
|
148
|
+
export declare function getServicesSummary(): {
|
|
149
|
+
categories: Record<string, number>;
|
|
150
|
+
totalPricingItems: number;
|
|
151
|
+
lastUpdated: string;
|
|
152
|
+
coverage: {
|
|
153
|
+
core: string[];
|
|
154
|
+
aiMl: string[];
|
|
155
|
+
operations: string[];
|
|
156
|
+
platform: string[];
|
|
157
|
+
multicloud: string[];
|
|
158
|
+
};
|
|
159
|
+
notes: string[];
|
|
160
|
+
};
|
|
161
|
+
//# sourceMappingURL=services.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../src/tools/services.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAqBH,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,cAAmB;;;;;;;;;;;;EAoC3D;AAMD,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,yBAAyB,CAAC,MAAM,GAAE,uBAA4B;;;;;;;;;;;;;;;EA+B7E;AAMD,MAAM,WAAW,qBAAqB;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,uBAAuB,CAAC,MAAM,GAAE,qBAA0B;;;;;;;;;;;EA0BzE;AAMD,MAAM,WAAW,kBAAkB;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,oBAAoB,CAAC,MAAM,GAAE,kBAAuB;;;;;;;;;;;;EA+BnE;AAMD,MAAM,WAAW,mBAAmB;IAClC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,qBAAqB,CAAC,MAAM,GAAE,mBAAwB;;;;;;;;;;;EA0BrE;AAMD,MAAM,WAAW,mBAAmB;IAClC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,qBAAqB,CAAC,MAAM,GAAE,mBAAwB;;;;;;;;;;;;EA+BrE;AAMD,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,eAAoB;;;;;;;;;;;EA0B7D;AAMD,wBAAgB,kBAAkB;;;;;EAajC;AAMD,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,cAAmB;;;;;;;;;;EAmB3D;AAMD,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,sBAAsB,CAAC,MAAM,GAAE,oBAAyB;;;;;;EAcvE;AAMD,wBAAgB,kBAAkB;;;;;;;;;;;;EAqBjC"}
|