-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oracle Cloud parser #158
base: master
Are you sure you want to change the base?
Oracle Cloud parser #158
Conversation
const dummyFile = process.cwd() + "/dummyClasses/do.js"; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why you are using the dummy class of digital ocean here.Is the dummy class for Oracle same as the class of digital ocean?
if (/^[A-Z]*$/.test(serviceName)) { | ||
filePath = | ||
process.cwd() + | ||
"/generatedClasses/DO/" + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why saving the generated classes in the DO folder?
process.cwd() + | ||
"/generatedClasses/DO/" + | ||
dir + | ||
"/do-" + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
??
} else { | ||
filePath = | ||
process.cwd() + | ||
"/generatedClasses/DO/" + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here also.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not have any prior experience with the dummy classes for Oracle cloud at the time of my earlier response. However, I have since worked on them, made necessary corrections, and currently, I am working on the transformer component.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dummy class for oracle #161
And I am currently working on building the transformer for Oracle Cloud.
Resolves #157
-Installed and analyzed the Oracle Cloud SDK.
-Created Parser, added tests and Added Oracle as a service provider in yml file.