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
import requests | |
import json | |
import logging | |
def getBootstrapStatus(context, inputs): | |
if "verify" not in inputs.keys(): | |
inputs["verify"] = True | |
headers = {'Content-type':'application/json','Accept':'application/json','Authorization':'vRealizeOpsToken '+ inputs["token"]} | |
r = requests.request('GET','https://'+inputs["vropsHost"]+'/suite-api/api/applications/agents/'+inputs["taskId"]+'/status', headers=headers, verify=inputs["verify"]) | |
if (r.status_code == 200): |
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
import requests | |
import json | |
def installAgent(context, inputs): | |
if "verify" not in inputs.keys(): | |
inputs["verify"] = True | |
print(inputs["verify"]) | |
headers = {'Content-type':'application/json','Accept':'application/json','Authorization':'vRealizeOpsToken '+ inputs["token"]} | |
payload = { | |
"resourceCredentials" : [ { |
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
import requests | |
import json | |
def getResourceId(context, inputs): | |
if "verify" not in inputs.keys(): | |
inputs["verify"] = True | |
headers = {'Content-type':'application/json','Accept':'application/json','Authorization':'vRealizeOpsToken '+ inputs["token"]} | |
payload = { | |
'propertyName':'summary|UUID', | |
'propertyValue':inputs["vmUUID"] |
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
import requests | |
import json | |
def getAuthToken(context, inputs): | |
if "verify" not in inputs.keys(): | |
inputs["verify"] = True | |
headers = {'Content-type':'application/json','Accept':'application/json'} | |
payload = { | |
'username':inputs["username"], | |
'authSource':inputs["authSource"], |
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
var epoch = (new Date).getTime(); | |
postman.setEnvironmentVariable("epoch", epoch); | |
var epochPrev24 = epoch - (24*60*60*1000) | |
postman.setEnvironmentVariable("epochPrev24", epochPrev24) |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<AdapterKinds> | |
<AdapterKind adapterKindKey="APPLICATIONDISCOVERY"> | |
<ResourceKind resourceKindKey="ApplicationDiscoveryAdapterInstance"> | |
<Metric attrkey="Instance Attributes|elapsed_collect_time" label="" unit="" yellow="" orange="" red=""/> | |
<Metric attrkey="Instance Attributes|new_metrics" label="" unit="" yellow="" orange="" red=""/> | |
<Metric attrkey="Instance Attributes|new_resources" label="" unit="" yellow="" orange="" red=""/> | |
<Metric attrkey="Instance Attributes|observations" label="" unit="" yellow="" orange="" red=""/> | |
</ResourceKind> | |
</AdapterKind> |
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
{ | |
"dashboards": [{ | |
"autoswitchEnabled": false, | |
"columnCount": 1, | |
"columnProportion": "1", | |
"creationTime": 1492613965544, | |
"description": "", | |
"disabled": false, | |
"id": "8abb8f61-f123-4ca4-8c56-dcfcaaa0aa17", | |
"importAttempts": 0, |
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
FROM photon:latest | |
MAINTAINER John Dias "[email protected]" | |
RUN tdnf install python2 python-xml -y \ | |
&& curl -s https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py \ | |
&& /usr/bin/python /tmp/get-pip.py \ | |
&& tdnf install git -y \ | |
&& git clone https://github.com/vmw-loginsight/webhook-shims.git ~/webhook-shims | |
WORKDIR /root/webhook-shims | |
RUN /usr/bin/pip install -r requirements.txt | |
#ENTRYPOINT ["python"] |
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
{ | |
"variables": [], | |
"info": { | |
"name": "vRealize Operations 6", | |
"_postman_id": "8725de8d-4ad6-2dc9-887a-54fe8e1f879b", | |
"description": "", | |
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
}, | |
"item": [ | |
{ |
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
var launchedFrom = eventPayloadProperties.get("lifecycleState"); | |
externalWFStub=launchedFrom.get("state")+":"+launchedFrom.get("phase"); |
NewerOlder