-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add collapsable entries to compartment list
- Loading branch information
1 parent
c464f15
commit 9a492fb
Showing
5 changed files
with
69 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
** Copyright (c) 2020, 2024, Oracle and/or its affiliates. | ||
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
*/ | ||
|
||
import { common, resourcemanager } from "oci-sdk" | ||
import { OciResource } from "@ocd/model" | ||
import { OcdUtils } from "@ocd/core" | ||
import { OciCommonQuery } from './OciQueryCommon.js' | ||
|
||
export class OciResourceManagerQuery extends OciCommonQuery { | ||
// Clients | ||
resourcemanagerClient: resourcemanager.ResourceManagerClient | ||
constructor(profile: string='DEFAULT', region?: string) { | ||
super(profile, region) | ||
console.debug('OciResourceManagerQuery: Region', region) | ||
this.resourcemanagerClient = new resourcemanager.ResourceManagerClient(this.authenticationConfiguration, this.clientConfiguration) | ||
} | ||
} | ||
|
||
export default OciResourceManagerQuery | ||
// module.exports = { OciResourceManager } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters