-
Notifications
You must be signed in to change notification settings - Fork 86
Adding tool to fetch the public IP for databases, plus some small fixes in descriptions #107
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,16 +25,16 @@ class PluggableDatabase(OCIBaseModel): | |
| None, | ||
| description="**[Required]** Gets the compartment_id of this PluggableDatabase. The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm", | ||
| ) | ||
| connection_strings: Optional[str] = Field(None, description="") | ||
| connection_strings: Optional[Any] = Field(None, description="") | ||
| container_database_id: Optional[str] = Field( | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| None, | ||
| description="**[Required]** Gets the container_database_id of this PluggableDatabase. The `OCID`__ of the CDB. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm", | ||
| ) | ||
| defined_tags: Optional[str] = Field( | ||
| defined_tags: Optional[dict] = Field( | ||
| None, | ||
| description="Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see `Resource Tags`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm", | ||
| ) | ||
| freeform_tags: Optional[str] = Field( | ||
| freeform_tags: Optional[dict] = Field( | ||
| None, | ||
| description='Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see `Resource Tags`__. Example: `{"Department": "Finance"}` __ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm', | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any examples should be in the
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This model is a pojo that is never visible to the agent, hence the description shouldn't matter here |
||
| ) | ||
|
|
||
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.
Can we add a description here? Also I think this should have a type associated with it instead of
Any