Skip to content

Commit

Permalink
Update repo README
Browse files Browse the repository at this point in the history
Signed-off-by: Leonid Belenky <[email protected]>
  • Loading branch information
unbreakabl3 committed Dec 15, 2024
1 parent 28efc20 commit 0b90903
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 8 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"cSpell.words": ["Changelease", "creds", "VAPI"],
"vrdev.maven.profile": "ops-vro01t",
"vrdev.maven.profile": "ops-vra01t",
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.formatOnSave": true
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This repo includes many VMware Aria Orchestrator examples written in TypeScript. It can be build and compiled into the vRO bundles with [Build Tools for VMware Aria](https://github.com/vmware/build-tools-for-vmware-aria)
# VMware Aria Orchestrator Examples

## This repo includes many VMware Aria Orchestrator examples written in TypeScript and Javascript. It can be build and compiled into the vRO native packages with [Build Tools for VMware Aria](https://github.com/vmware/build-tools-for-vmware-aria)

More information can be found here: <https://www.clouddepth.com>
2 changes: 1 addition & 1 deletion add_new_nic_to_vm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.clouddepth</groupId>
<artifactId>add_new_nic_to_vm</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
<packaging>package</packaging>

<scm>
Expand Down
2 changes: 1 addition & 1 deletion add_new_nic_to_vm/src/license/THIRD-PARTY.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
# Please fill the missing licenses for dependencies :
#
#
#Thu Jul 25 17:15:03 CEST 2024
#Tue Nov 05 13:13:23 CET 2024
classworlds--classworlds--1.1-alpha-2=
org.codehaus.plexus--plexus-container-default--1.0-alpha-9-stable-1=
1 change: 1 addition & 0 deletions general_examples/maps/actions/waitForDNSResolve.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions general_examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.vmware.pscoe.o11n</groupId>
<artifactId>typescript-project-all</artifactId>
<version>2.43.0</version>
<version>2.44.0</version>
</parent>

<groupId>com.examples</groupId>
<artifactId>vmware_aria_orchestrator_examples</artifactId>
<version>1.0.26</version>
<version>1.0.30</version>
<packaging>package</packaging>

<scm>
Expand All @@ -27,4 +27,4 @@
<license.includes>**/*.js,**/*.ts</license.includes>
<license.excludes>**/*.test.ts,**/*Test.js</license.excludes>
</properties>
</project>
</project>
2 changes: 1 addition & 1 deletion general_examples/src/license/THIRD-PARTY.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
# Please fill the missing licenses for dependencies :
#
#
#Tue Oct 22 11:06:25 CEST 2024
#Tue Nov 05 13:17:31 CET 2024
classworlds--classworlds--1.1-alpha-2=
org.codehaus.plexus--plexus-container-default--1.0-alpha-9-stable-1=
2 changes: 2 additions & 0 deletions general_examples/types/actions/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import * as waitForDNSResolve from "./waitForDNSResolve";
export { waitForDNSResolve };
4 changes: 4 additions & 0 deletions general_examples/types/actions/waitForDNSResolve.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export declare class Network {
private func;
waitForDNSResolve(hostFqdn: string): void;
}
2 changes: 2 additions & 0 deletions general_examples/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import * as actions from "./actions/index";
export { actions };

0 comments on commit 0b90903

Please sign in to comment.