Downloads:
365
Downloads of v 1.0.16:
263
Last Update:
21 Feb 2022
Package Maintainer(s):
Software Author(s):
- Gtmhub
Tags:
gtmhub api plugin example- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Gtmhub Plugin Generator
- 1
- 2
- 3
1.0.16 | Updated: 21 Feb 2022
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
365
Downloads of v 1.0.16:
263
Maintainer(s):
Software Author(s):
- Gtmhub
Gtmhub Plugin Generator 1.0.16
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Gtmhub. The inclusion of Gtmhub trademark(s), if any, upon this webpage is solely to identify Gtmhub goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Gtmhub Plugin Generator, run the following command from the command line or from PowerShell:
To upgrade Gtmhub Plugin Generator, run the following command from the command line or from PowerShell:
To uninstall Gtmhub Plugin Generator, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download gtmhub-codegen --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade gtmhub-codegen -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade gtmhub-codegen -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install gtmhub-codegen
win_chocolatey:
name: gtmhub-codegen
version: '1.0.16'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'gtmhub-codegen' do
action :install
source 'INTERNAL REPO URL'
version '1.0.16'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller gtmhub-codegen
{
Name = "gtmhub-codegen"
Version = "1.0.16"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'gtmhub-codegen':
ensure => '1.0.16',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator Windos on 23 Mar 2022.
Generates example plugin connectors in YAML or HTML/JS format for communicating with the Gtmhub API.
md5: A67881E40B1BFCCB32E8741922A7F9F2 | sha1: 8C7605DFEEE40E27B97D3E10106B77B0CEFCF80A | sha256: 4BDDB4CCEEBB82C6A49EFBCCF642E1A24143118A042C7C6DD89A06D58BAB34C2 | sha512: A74D6D65FA2204A4F62484961BE47F826E532CA37A3DCEB90699A8FFFF35B50651DBB3225BE70D362FF5543D112818F8815E50180526194685D15679FE9661C5
# The MIT License (MIT)
Copyright © 2022 GtmHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# What is gtmhub-codegen?
This generates example plugin connectors in YAML or HTML/JS format for communicating with the Gtmhub API. Once you have the template, you can start building a plugin which will allow Gtmhub to consume your data and visualilize it.
More info about Gtmhub plugins is available here: https://developer-experiment.staging.gtmhub.com/apps/using-app-boilerplates.html
## Installing
gtmhub-codegen can be installed on all major operating systems.
### Windows
It is available from Chocolatey. Just run:
```
choco install gtmhub-codegen
```
### Mac
On Mac it can be installed using Homebrew. You may need to add the Gtmhub repo first. Use the commands below:
```
$ brew tap gtmhub/homebrew-gtmhub
$ brew install gtmhub-codegen
```
### Linux
- Go to the releases list on Github: https://github.com/gtmhub/gtmhub-codegen/releases.
- Choose a release version. For each release, there would be a tarball containing the binary file and named `gtmhub_codegen_linux.tar.gz`.
- Download the tarball of your choice.
## Basic usage
`gtmhub-codegen SUBCOMMAND [OPTIONS]`, where `SUBCOMMAND` is one of: `data, ui`.
Valid `OPTIONS` can be seen by passing the `-h` flag to a `SUBCOMMAND`.
## Why is it detected as a virus on Windows?
This tool is written in Go language and unfortunately, some antivirus software for Windows mistakes .exe files generated by the Go compiler with trojans. Here is some more info, from Go authors themselves: https://go.dev/doc/faq#virus
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
- This Plugin Code Generator is a closed source program by Gtmhub. For Windows it is delivered only as a Choco package.
- The package consists of:
- one .exe file
- a readme.txt file
- license.txt file
- this file
- Use powershell function "Get-Filehash" to verify the checksums of the .exe file. For example, "Get-FileHash gtmhub-codegen.exe" or "Get-FileHash -Algorithm SHA512 gtmhub-codegen.exe". If no "-Algorithm" is specified, "Get-FileHash" calculates SHA256 by default.
- SHA256: 4bddb4cceebb82c6a49efbccf642e1a24143118a042c7c6dd89a06d58bab34c2
- SHA384: fd56c79db1fb9390f871c2e367a681d4c603d3b76b09902ea68b6df0a3624dc3b930a5153f427ec199ff46a86f42a8a2
- SHA512: a74d6d65fa2204a4f62484961be47f826e532ca37a3dceb90699a8ffff35b50651dbb3225be70d362ff5543d112818f8815e50180526194685d15679fe9661c5
Log in or click on link to see number of positives.
- gtmhub-codegen.1.0.16.nupkg (6b0cf91e3262) - ## / 64
- gtmhub-codegen.exe (4bddb4cceebb) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Gtmhub Plugin Generator 1.0.16 | 263 | Monday, February 21, 2022 | Approved | |
Gtmhub Plugin Generator 1.0.13 | 102 | Friday, February 18, 2022 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Gtmhub Plugin Generator and the Gtmhub Plugin Generator package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Gtmhub Plugin Generator, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.