You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to implement a price calculator in our application.
Azure provides retail prices through the API at 'https://prices.azure.com/api/retail/prices'.
For AWS, prices can be retrieved using the following code:
pricing = session.client('pricing', 'us-east-1')
body = {'ServiceCode': 'AmazonEC2', 'Filters': api_filters}
resp = pricing.get_products(**body)
Similarly, I need to find a way to get pricing information for OCI (Oracle Cloud Infrastructure) resources. Can you suggest where I can obtain OCI resource pricing? @adizohar
The text was updated successfully, but these errors were encountered:
I want to implement a price calculator in our application.
Azure provides retail prices through the API at 'https://prices.azure.com/api/retail/prices'.
For AWS, prices can be retrieved using the following code:
pricing = session.client('pricing', 'us-east-1')
body = {'ServiceCode': 'AmazonEC2', 'Filters': api_filters}
resp = pricing.get_products(**body)
Similarly, I need to find a way to get pricing information for OCI (Oracle Cloud Infrastructure) resources. Can you suggest where I can obtain OCI resource pricing?
@adizohar
The text was updated successfully, but these errors were encountered: