├── .editorconfig ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── NOTICE.txt ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── core ├── jazz-web │ ├── 3rdpartylicenses.txt │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── custom.css │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ └── header.jpg │ ├── index.html │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── ie10-viewport-bug-workaround.js │ │ ├── jquery-1.11.3.min.js │ │ └── jquery.easing.min.js ├── jazz_acl │ ├── README.md │ ├── build.api │ ├── components │ │ ├── casbin.js │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── scm │ │ │ ├── bitbucket.js │ │ │ ├── gitlab.js │ │ │ ├── index.js │ │ │ ├── login.js │ │ │ └── services.js │ │ └── utils │ │ │ ├── environment.js │ │ │ ├── getList.js │ │ │ ├── util.js │ │ │ ├── validation.js │ │ │ └── vault.js │ ├── config │ │ ├── dev-config.json │ │ ├── global-config.json │ │ ├── prod-config.json │ │ ├── rbac_model.conf │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_admin │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── post.js │ │ ├── error-handler.js │ │ ├── json-editor.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_apigee-proxy-aws │ ├── README.md │ ├── build.function │ ├── components │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── validation.js │ ├── deployment-env.yml │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── jazz_asset-event-handler │ ├── .gitignore │ ├── .jshintrc │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ └── logger.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── test │ │ ├── CREATE_ASSET.json │ │ ├── KINESIS_PAYLOAD.json │ │ ├── UPDATE_ASSET.json │ │ ├── response_payloads.js │ │ └── test.js │ └── utils │ │ ├── failure-codes.js │ │ └── utils.js ├── jazz_assets │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── create.js │ │ │ ├── get.js │ │ │ ├── getList.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── utils.js │ │ └── validation.js │ ├── config │ │ ├── dev-config.json │ │ ├── global-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_cloud-logs-streamer │ ├── .jshintrc │ ├── README.md │ ├── _ES │ │ ├── apilogs.json │ │ └── applicationlogs.json │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── global_config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── jazz_codeq │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── messages.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ ├── test │ │ └── test.js │ ├── utils.js │ └── validation.js ├── jazz_cognito-admin-authorizer │ ├── .jshintrc │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── jazz_cognito-authorizer │ ├── .jshintrc │ ├── README.md │ ├── build.function │ ├── components │ │ ├── acl-services.js │ │ ├── auth-policy.js │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── login.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── jazz_create-serverless-service │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── cron-parser.js │ │ ├── crud │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── validate-arn.js │ │ ├── validate-sls-yml.js │ │ └── whitelist.yml │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ ├── debug │ │ └── event_local.json │ │ ├── test.js │ │ └── validate-sls-yml-test.js ├── jazz_delete-serverless-service │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── events-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── invalidTest-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── validTest-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── jenkins-json.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_deployments-event-handler │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── test │ │ └── test.js │ └── utils │ │ └── failure-codes.js ├── jazz_deployments │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── getList.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── utils.js │ │ └── validation.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_email │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── local-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ ├── debug │ │ └── event_local.json │ │ └── test.js ├── jazz_environment-event-handler │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── safe.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── test │ │ ├── COMMIT_TEMPLATE.json │ │ ├── CREATE_BRANCH.json │ │ ├── DELETE_BRANCH.json │ │ ├── DELETE_ENVIRONMENT.json │ │ ├── INVALID_EVENT.json │ │ ├── INVALID_EVENT_TYPE.json │ │ ├── KINESIS_PAYLOAD.json │ │ ├── UPDATE_ENVIRONMENT.BRANCH.json │ │ ├── UPDATE_ENVIRONMENT.json │ │ ├── UPDATE_ENVIRONMENT_NOLOGICAL_ID.json │ │ ├── response_payloads.js │ │ └── test.js │ └── utils │ │ ├── failure-codes.js │ │ └── utils.js ├── jazz_environments │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── create.js │ │ │ ├── get.js │ │ │ ├── getList.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── utils.js │ │ ├── validate-sls-yml.js │ │ ├── validation │ │ │ ├── common.js │ │ │ ├── index.js │ │ │ ├── validate_create_payload.js │ │ │ ├── validate_environment.js │ │ │ └── validate_update_payload.js │ │ └── whitelist.yml │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ ├── test.js │ │ └── validate-sls-yaml-test.js ├── jazz_es-kinesis-log-streamer │ ├── README.md │ ├── _ES │ │ ├── apilogs.json │ │ └── applicationlogs.json │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── global_config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── jazz_events-handler │ ├── .jshintrc │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ └── logger.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── test │ │ └── test.js │ └── utils │ │ └── failure-codes.js ├── jazz_events │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── create.js │ │ │ ├── get.js │ │ │ ├── getList.js │ │ │ └── index.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── utils.js │ │ └── validation │ │ │ ├── index.js │ │ │ └── validate_event_data.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_is-service-available │ ├── .gitignore │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_is-slack-channel-available │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_login │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_logout │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_logs │ ├── .gitignore │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ ├── test │ │ ├── debug │ │ │ └── event_local.json │ │ └── test.js │ └── utils.js ├── jazz_metrics │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── metrics.json │ │ ├── response.js │ │ ├── utils.js │ │ └── validation.js │ ├── config │ │ ├── dev-config.json │ │ ├── global-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_scm-webhook │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_services-handler │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── error-handler.js │ │ └── logger.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── test-config.json │ ├── test │ │ └── test.js │ └── utils │ │ ├── failure-codes.js │ │ └── service-creation-events.js ├── jazz_services │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── crud │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── getList.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ ├── utils.js │ │ └── validation │ │ │ ├── common.js │ │ │ ├── index.js │ │ │ ├── validate_create_payload.js │ │ │ ├── validate_service.js │ │ │ └── validate_update_payload.js │ ├── config │ │ ├── dev-config.json │ │ ├── global-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_slack-channel │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_slack-event-handler │ ├── .jshintrc │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── custom-error-handler.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── test │ │ └── test.js │ └── utils │ │ └── failure-codes.js ├── jazz_splunk-kinesis-log-streamer │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── global-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── jazz_t-vault │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils │ │ │ ├── validations.js │ │ │ └── vault.js │ ├── config │ │ ├── dev-config.json │ │ ├── global-config.json │ │ ├── prod-config.json │ │ ├── stg-config.json │ │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ └── test.js ├── jazz_test-lambda │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ ├── response.js │ │ └── utils.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── swagger │ │ └── swagger.json │ └── test │ │ ├── test-http.js │ │ └── test.js ├── jazz_token-authorizer │ ├── README.md │ ├── build.function │ ├── components │ │ ├── config.js │ │ ├── error-handler.js │ │ ├── logger.js │ │ └── response.js │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── deployment-env.yml │ ├── index.js │ └── package.json ├── jazz_ui │ ├── .editorconfig │ ├── .gitignore │ ├── Jenkinsfile_Platform │ ├── README.md │ ├── angular-cli.json │ ├── build.website │ ├── deployment-env.yml │ ├── e2e │ │ ├── 01-register │ │ │ └── register.e2e-spec.ts │ │ ├── 02-forgotpassword │ │ │ └── forgotpassword.e2e-spec.ts │ │ ├── 03-login │ │ │ └── login.e2e-spec.ts │ │ ├── 04-apiservices │ │ │ └── apiservices.e2e-spec.ts │ │ ├── 05-lambdaservices │ │ │ └── lambdaservices.e2e-spec.ts │ │ ├── 06-websiteservices │ │ │ └── websiteservices.e2e-spec.ts │ │ ├── 07-slsappservices │ │ │ └── slsappservices.e2e-spec.ts │ │ ├── 08-multiaccountservices │ │ │ ├── secondeastservices.e2e-spec.ts │ │ │ └── secondwestservices.e2e-spec.ts │ │ ├── common │ │ │ └── commontest.ts │ │ ├── page-objects │ │ │ ├── forgotpassword.po.ts │ │ │ ├── jazzservices.po.ts │ │ │ ├── login.po.ts │ │ │ └── register.po.ts │ │ ├── tsconfig.e2e.json │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── ng2-datepicker.textClipping │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── IShared.ts │ │ │ ├── SharedService.service.ts │ │ │ ├── admin-module │ │ │ │ ├── admin.module.ts │ │ │ │ └── admin.route.ts │ │ │ ├── adv-filter.directive.ts │ │ │ ├── advanced-filter.service.spec.ts │ │ │ ├── advanced-filter.service.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── core │ │ │ │ ├── constants │ │ │ │ │ └── field-name-mapping.ts │ │ │ │ ├── helpers │ │ │ │ │ ├── cronparser.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── relaxed-json.service.ts │ │ │ │ │ └── session-storage.service.ts │ │ │ │ ├── pipes │ │ │ │ │ ├── order-by.pipe.ts │ │ │ │ │ ├── safe-html.pipe.ts │ │ │ │ │ └── safe-url.pipe.ts │ │ │ │ └── services │ │ │ │ │ ├── admin-utils.service.ts │ │ │ │ │ ├── authentication.service.spec.ts │ │ │ │ │ ├── authentication.service.ts │ │ │ │ │ ├── datacache.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── message.service.ts │ │ │ │ │ ├── rename-field.service.ts │ │ │ │ │ ├── request.service.ts │ │ │ │ │ ├── route-guard.service.ts │ │ │ │ │ └── utils.service.ts │ │ │ ├── docs │ │ │ │ ├── docs.component.html │ │ │ │ ├── docs.component.scss │ │ │ │ ├── docs.component.ts │ │ │ │ ├── docs.module.spec.ts │ │ │ │ ├── docs.module.ts │ │ │ │ └── docs.route.ts │ │ │ ├── environment-module │ │ │ │ ├── environment.module.ts │ │ │ │ └── environment.route.ts │ │ │ ├── oss │ │ │ │ └── oss.module.ts │ │ │ ├── pages │ │ │ │ ├── admin-dashboard │ │ │ │ │ ├── admin-dashboard.component.html │ │ │ │ │ ├── admin-dashboard.component.scss │ │ │ │ │ └── admin-dashboard.component.ts │ │ │ │ ├── admin │ │ │ │ │ ├── admin.component.html │ │ │ │ │ ├── admin.component.scss │ │ │ │ │ └── admin.component.ts │ │ │ │ ├── data-service │ │ │ │ │ └── data.service.ts │ │ │ │ ├── environment-assets │ │ │ │ │ ├── env-assets-section.component.html │ │ │ │ │ ├── env-assets-section.component.scss │ │ │ │ │ └── env-assets-section.component.ts │ │ │ │ ├── environment-codequality │ │ │ │ │ ├── env-codequality-section.component.html │ │ │ │ │ ├── env-codequality-section.component.scss │ │ │ │ │ └── env-codequality-section.component.ts │ │ │ │ ├── environment-deployment │ │ │ │ │ ├── env-deployments-section.component.html │ │ │ │ │ ├── env-deployments-section.component.scss │ │ │ │ │ └── env-deployments-section.component.ts │ │ │ │ ├── environment-detail │ │ │ │ │ ├── environment-detail.component.html │ │ │ │ │ ├── environment-detail.component.scss │ │ │ │ │ ├── environment-detail.component.spec.ts │ │ │ │ │ └── environment-detail.component.ts │ │ │ │ ├── environment-logs │ │ │ │ │ ├── env-logs-section.component.html │ │ │ │ │ ├── env-logs-section.component.scss │ │ │ │ │ └── env-logs-section.component.ts │ │ │ │ ├── environment-overview │ │ │ │ │ ├── env-overview-section.component.html │ │ │ │ │ ├── env-overview-section.component.scss │ │ │ │ │ └── env-overview-section.component.ts │ │ │ │ ├── error403 │ │ │ │ │ ├── error403.component.html │ │ │ │ │ ├── error403.component.scss │ │ │ │ │ └── error403.component.ts │ │ │ │ ├── error404 │ │ │ │ │ ├── error404.component.html │ │ │ │ │ ├── error404.component.scss │ │ │ │ │ └── error404.component.ts │ │ │ │ ├── jenkins-status │ │ │ │ │ ├── jenkins-status.component.html │ │ │ │ │ ├── jenkins-status.component.scss │ │ │ │ │ ├── jenkins-status.component.spec.ts │ │ │ │ │ └── jenkins-status.component.ts │ │ │ │ ├── landing │ │ │ │ │ ├── landing.component.html │ │ │ │ │ ├── landing.component.scss │ │ │ │ │ └── landing.component.ts │ │ │ │ ├── login │ │ │ │ │ └── oss │ │ │ │ │ │ ├── login.component.html │ │ │ │ │ │ ├── login.component.scss │ │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ │ └── login.component.ts │ │ │ │ ├── service-access-control │ │ │ │ │ ├── service-access-control.component.html │ │ │ │ │ ├── service-access-control.component.scss │ │ │ │ │ ├── service-access-control.component.spec.ts │ │ │ │ │ └── service-access-control.component.ts │ │ │ │ ├── service-cost │ │ │ │ │ ├── service-cost.component.html │ │ │ │ │ ├── service-cost.component.scss │ │ │ │ │ ├── service-cost.component.spec.ts │ │ │ │ │ └── service-cost.component.ts │ │ │ │ ├── service-detail │ │ │ │ │ ├── service-detail.component.html │ │ │ │ │ ├── service-detail.component.scss │ │ │ │ │ ├── service-detail.component.spec.ts │ │ │ │ │ └── service-detail.component.ts │ │ │ │ ├── service-logs │ │ │ │ │ ├── service-logs.component.html │ │ │ │ │ ├── service-logs.component.scss │ │ │ │ │ ├── service-logs.component.spec.ts │ │ │ │ │ └── service-logs.component.ts │ │ │ │ ├── service-metrics │ │ │ │ │ ├── data.ts │ │ │ │ │ ├── service-metrics.component.html │ │ │ │ │ ├── service-metrics.component.scss │ │ │ │ │ ├── service-metrics.component.spec.ts │ │ │ │ │ └── service-metrics.component.ts │ │ │ │ ├── service-overview │ │ │ │ │ ├── service-overview.component.html │ │ │ │ │ ├── service-overview.component.scss │ │ │ │ │ ├── service-overview.component.spec.ts │ │ │ │ │ └── service-overview.component.ts │ │ │ │ ├── services-list │ │ │ │ │ ├── service-list.ts │ │ │ │ │ ├── services-list.component.html │ │ │ │ │ ├── services-list.component.scss │ │ │ │ │ ├── services-list.component.spec.ts │ │ │ │ │ └── services-list.component.ts │ │ │ │ ├── services │ │ │ │ │ ├── services.component.html │ │ │ │ │ ├── services.component.scss │ │ │ │ │ ├── services.component.spec.ts │ │ │ │ │ └── services.component.ts │ │ │ │ ├── testapi │ │ │ │ │ ├── test-api.component.html │ │ │ │ │ ├── test-api.component.scss │ │ │ │ │ └── test-api.component.ts │ │ │ │ └── user-journey │ │ │ │ │ ├── user-journey.component.html │ │ │ │ │ ├── user-journey.component.scss │ │ │ │ │ ├── user-journey.component.spec.ts │ │ │ │ │ ├── user-journey.component.ts │ │ │ │ │ └── user-journey.ts │ │ │ ├── primary-components │ │ │ │ ├── amount │ │ │ │ │ ├── amount.component.html │ │ │ │ │ ├── amount.component.scss │ │ │ │ │ ├── amount.component.spec.ts │ │ │ │ │ └── amount.component.ts │ │ │ │ ├── btn-jazz-primary │ │ │ │ │ ├── btn-jazz-primary.component.html │ │ │ │ │ ├── btn-jazz-primary.component.scss │ │ │ │ │ └── btn-jazz-primary.component.ts │ │ │ │ ├── btn-jazz-secondary │ │ │ │ │ ├── btn-jazz-secondary.component.html │ │ │ │ │ ├── btn-jazz-secondary.component.scss │ │ │ │ │ └── btn-jazz-secondary.component.ts │ │ │ │ ├── btn-primary-with-icon │ │ │ │ │ ├── btn-primary-with-icon.component.html │ │ │ │ │ ├── btn-primary-with-icon.component.scss │ │ │ │ │ ├── btn-primary-with-icon.component.spec.ts │ │ │ │ │ └── btn-primary-with-icon.component.ts │ │ │ │ ├── checkbox-group-region │ │ │ │ │ ├── checkbox-group-region.component.html │ │ │ │ │ ├── checkbox-group-region.component.scss │ │ │ │ │ └── checkbox-group-region.component.ts │ │ │ │ ├── checkbox-group │ │ │ │ │ ├── checkbox-group.component.html │ │ │ │ │ ├── checkbox-group.component.scss │ │ │ │ │ └── checkbox-group.component.ts │ │ │ │ ├── custom-filter.ts │ │ │ │ ├── daterange-picker │ │ │ │ │ ├── daterange-picker.component.html │ │ │ │ │ ├── daterange-picker.component.scss │ │ │ │ │ ├── daterange-picker.component.spec.ts │ │ │ │ │ ├── daterange-picker.component.ts │ │ │ │ │ ├── ng2-datepicker │ │ │ │ │ │ ├── .angular-cli.json │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── e2e │ │ │ │ │ │ │ └── tsconfig.e2e.json │ │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ │ ├── lib-dist │ │ │ │ │ │ │ ├── ng2-datepicker.component.d.ts │ │ │ │ │ │ │ ├── ng2-datepicker.component.js │ │ │ │ │ │ │ ├── ng2-datepicker.component.js.map │ │ │ │ │ │ │ ├── ng2-datepicker.component.metadata.json │ │ │ │ │ │ │ ├── ng2-datepicker.module.d.ts │ │ │ │ │ │ │ ├── ng2-datepicker.module.js │ │ │ │ │ │ │ ├── ng2-datepicker.module.js.map │ │ │ │ │ │ │ ├── ng2-datepicker.module.metadata.json │ │ │ │ │ │ │ └── tsconfig-ngc.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── protractor.conf.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ └── app.component.html │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── ng2-datepicker │ │ │ │ │ │ │ │ ├── ng2-datepicker.component.html │ │ │ │ │ │ │ │ └── ng2-datepicker.component.sass │ │ │ │ │ │ │ ├── styles.css │ │ │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ │ │ └── tsconfig.spec.json │ │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ │ └── tslint.json │ │ │ │ │ ├── ng2-slimscroll │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.metadata.json │ │ │ │ │ │ ├── index.ngfactory.xts │ │ │ │ │ │ ├── index.ngsummary.json │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── ng2-slimscroll.ts │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ │ ├── slimscroll-options.class.d.ts │ │ │ │ │ │ │ │ ├── slimscroll-options.class.js │ │ │ │ │ │ │ │ ├── slimscroll-options.class.metadata.json │ │ │ │ │ │ │ │ ├── slimscroll-options.class.ngsummary.json │ │ │ │ │ │ │ │ └── slimscroll-options.class.ts │ │ │ │ │ │ │ └── directives │ │ │ │ │ │ │ │ ├── slimscroll.directive.d.ts │ │ │ │ │ │ │ │ ├── slimscroll.directive.js │ │ │ │ │ │ │ │ ├── slimscroll.directive.metadata.json │ │ │ │ │ │ │ │ ├── slimscroll.directive.ngsummary.json │ │ │ │ │ │ │ │ └── slimscroll.directive.ts │ │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ │ ├── tslint.json │ │ │ │ │ │ ├── webpack │ │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ │ └── yarn.lock │ │ │ │ │ └── ngx-slimscroll.zip │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdown.component.html │ │ │ │ │ ├── dropdown.component.scss │ │ │ │ │ ├── dropdown.component.spec.ts │ │ │ │ │ └── dropdown.component.ts │ │ │ │ ├── filter-tag │ │ │ │ │ ├── filter-tag.component.html │ │ │ │ │ ├── filter-tag.component.scss │ │ │ │ │ └── filter-tag.component.ts │ │ │ │ ├── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ ├── input.component.spec.ts │ │ │ │ │ └── input.component.ts │ │ │ │ ├── json-viewer │ │ │ │ │ ├── json-viewer.component.html │ │ │ │ │ ├── json-viewer.component.scss │ │ │ │ │ └── json-viewer.component.ts │ │ │ │ ├── radio-checkbox │ │ │ │ │ ├── radio-checkbox.component.html │ │ │ │ │ ├── radio-checkbox.component.scss │ │ │ │ │ ├── radio-checkbox.component.spec.ts │ │ │ │ │ └── radio-checkbox.component.ts │ │ │ │ ├── radio-group │ │ │ │ │ ├── radio-group.component.html │ │ │ │ │ ├── radio-group.component.scss │ │ │ │ │ ├── radio-group.component.spec.ts │ │ │ │ │ └── radio-group.component.ts │ │ │ │ ├── report-issue │ │ │ │ │ ├── report-issue.component.html │ │ │ │ │ ├── report-issue.component.scss │ │ │ │ │ ├── report-issue.component.spec.ts │ │ │ │ │ └── report-issue.component.ts │ │ │ │ ├── search-box │ │ │ │ │ ├── search-box.component.html │ │ │ │ │ ├── search-box.component.scss │ │ │ │ │ ├── search-box.component.spec.ts │ │ │ │ │ └── search-box.component.ts │ │ │ │ └── tabs │ │ │ │ │ ├── tabs.component.html │ │ │ │ │ ├── tabs.component.scss │ │ │ │ │ ├── tabs.component.spec.ts │ │ │ │ │ └── tabs.component.ts │ │ │ ├── secondary-components │ │ │ │ ├── advanced-filters │ │ │ │ │ ├── OSS │ │ │ │ │ │ ├── advanced-filters.component.html │ │ │ │ │ │ ├── advanced-filters.component.scss │ │ │ │ │ │ └── advanced-filters.component.ts │ │ │ │ │ └── internal │ │ │ │ │ │ ├── advanced-filters.component.html │ │ │ │ │ │ ├── advanced-filters.component.scss │ │ │ │ │ │ └── advanced-filters.component.ts │ │ │ │ ├── bar-graph │ │ │ │ │ ├── bar-graph.component.html │ │ │ │ │ ├── bar-graph.component.scss │ │ │ │ │ ├── bar-graph.component.spec.ts │ │ │ │ │ └── bar-graph.component.ts │ │ │ │ ├── chartjs-linegraph │ │ │ │ │ ├── chartjs-linegraph.component.html │ │ │ │ │ ├── chartjs-linegraph.component.scss │ │ │ │ │ ├── chartjs-linegraph.component.spec.ts │ │ │ │ │ └── chartjs-linegraph.component.ts │ │ │ │ ├── copy-element │ │ │ │ │ ├── copy-element.component.html │ │ │ │ │ ├── copy-element.component.scss │ │ │ │ │ ├── copy-element.component.spec.ts │ │ │ │ │ └── copy-element.component.ts │ │ │ │ ├── create-service │ │ │ │ │ ├── create-service.component.scss │ │ │ │ │ ├── focus.directive.ts │ │ │ │ │ ├── onlyNumbers.ts │ │ │ │ │ ├── oss │ │ │ │ │ │ ├── create-service.component.html │ │ │ │ │ │ ├── create-service.component.scss │ │ │ │ │ │ └── create-service.component.ts │ │ │ │ │ └── service-form-data.ts │ │ │ │ ├── env-try-service-sidebar │ │ │ │ │ ├── env-try-service-sidebar.component.html │ │ │ │ │ ├── env-try-service-sidebar.component.scss │ │ │ │ │ └── env-try-service-sidebar.component.ts │ │ │ │ ├── filter-metrics │ │ │ │ │ ├── filter-metrics.component.html │ │ │ │ │ ├── filter-metrics.component.scss │ │ │ │ │ ├── filter-metrics.component.spec.ts │ │ │ │ │ └── filter-metrics.component.ts │ │ │ │ ├── filter-modal │ │ │ │ │ ├── filter-modal.component.html │ │ │ │ │ ├── filter-modal.component.scss │ │ │ │ │ ├── filter-modal.component.spec.ts │ │ │ │ │ └── filter-modal.component.ts │ │ │ │ ├── filter-tags-services │ │ │ │ │ ├── filter-tags-services.component.html │ │ │ │ │ ├── filter-tags-services.component.scss │ │ │ │ │ └── filter-tags-services.component.ts │ │ │ │ ├── filter-tags │ │ │ │ │ ├── filter-tags.component.html │ │ │ │ │ ├── filter-tags.component.scss │ │ │ │ │ └── filter-tags.component.ts │ │ │ │ ├── filters │ │ │ │ │ ├── filters.component.html │ │ │ │ │ ├── filters.component.scss │ │ │ │ │ ├── filters.component.spec.ts │ │ │ │ │ └── filters.component.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ ├── footer.component.scss │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── jazz-header │ │ │ │ │ ├── jazz-header.component.html │ │ │ │ │ ├── jazz-header.component.scss │ │ │ │ │ ├── jazz-header.component.spec.ts │ │ │ │ │ ├── jazz-header.component.ts │ │ │ │ │ └── outside-click.ts │ │ │ │ ├── jazz-mob-header │ │ │ │ │ ├── jazz-mob-header.component.html │ │ │ │ │ ├── jazz-mob-header.component.scss │ │ │ │ │ ├── jazz-mob-header.component.spec.ts │ │ │ │ │ ├── jazz-mob-header.component.ts │ │ │ │ │ └── jazz-mob-header.module.ts │ │ │ │ ├── jazz-table │ │ │ │ │ ├── jazz-filter.ts │ │ │ │ │ ├── jazz-table-sort.ts │ │ │ │ │ ├── jazz-table.component.html │ │ │ │ │ ├── jazz-table.component.scss │ │ │ │ │ ├── jazz-table.component.spec.ts │ │ │ │ │ └── jazz-table.component.ts │ │ │ │ ├── jazz-toaster │ │ │ │ │ ├── jazz-toaster.component.css │ │ │ │ │ ├── jazz-toaster.component.html │ │ │ │ │ ├── jazz-toaster.component.spec.ts │ │ │ │ │ └── jazz-toaster.component.ts │ │ │ │ ├── line-graph │ │ │ │ │ ├── line-graph.component.html │ │ │ │ │ ├── line-graph.component.scss │ │ │ │ │ ├── line-graph.component.spec.ts │ │ │ │ │ └── line-graph.component.ts │ │ │ │ ├── metrics-carousel │ │ │ │ │ ├── metrics-carousel.component.html │ │ │ │ │ ├── metrics-carousel.component.scss │ │ │ │ │ ├── metrics-carousel.component.spec.ts │ │ │ │ │ └── metrics-carousel.component.ts │ │ │ │ ├── mobile-secondary-tab │ │ │ │ │ ├── mobile-secondary-tab.component.html │ │ │ │ │ ├── mobile-secondary-tab.component.scss │ │ │ │ │ ├── mobile-secondary-tab.component.spec.ts │ │ │ │ │ └── mobile-secondary-tab.component.ts │ │ │ │ ├── navigation-bar │ │ │ │ │ ├── navigation-bar.component.html │ │ │ │ │ ├── navigation-bar.component.scss │ │ │ │ │ ├── navigation-bar.component.spec.ts │ │ │ │ │ └── navigation-bar.component.ts │ │ │ │ ├── overview-sidebar │ │ │ │ │ ├── overview-sidebar.component.html │ │ │ │ │ ├── overview-sidebar.component.scss │ │ │ │ │ └── overview-sidebar.component.ts │ │ │ │ ├── service-overview-multienv │ │ │ │ │ ├── service-overview-multienv.component.html │ │ │ │ │ ├── service-overview-multienv.component.scss │ │ │ │ │ ├── service-overview-multienv.component.spec.ts │ │ │ │ │ └── service-overview-multienv.component.ts │ │ │ │ ├── service-overview-non-multienv │ │ │ │ │ ├── service-overview-non-multienv.component.html │ │ │ │ │ ├── service-overview-non-multienv.component.scss │ │ │ │ │ ├── service-overview-non-multienv.component.spec.ts │ │ │ │ │ └── service-overview-non-multienv.component.ts │ │ │ │ ├── side-tile-fixed │ │ │ │ │ ├── side-tile-fixed.component.html │ │ │ │ │ ├── side-tile-fixed.component.scss │ │ │ │ │ ├── side-tile-fixed.component.spec.ts │ │ │ │ │ └── side-tile-fixed.component.ts │ │ │ │ ├── sidebar │ │ │ │ │ ├── sidebar.component.html │ │ │ │ │ ├── sidebar.component.scss │ │ │ │ │ ├── sidebar.component.spec.ts │ │ │ │ │ └── sidebar.component.ts │ │ │ │ └── table-template │ │ │ │ │ ├── table-template.component.html │ │ │ │ │ ├── table-template.component.scss │ │ │ │ │ ├── table-template.component.spec.ts │ │ │ │ │ └── table-template.component.ts │ │ │ ├── service-module │ │ │ │ ├── service.module.declarations.common.ts │ │ │ │ ├── service.module.imports.common.ts │ │ │ │ ├── service.module.imports.internal.ts │ │ │ │ ├── service.module.imports.oss.ts │ │ │ │ ├── service.module.ts │ │ │ │ └── service.route.ts │ │ │ ├── shared-module │ │ │ │ └── shared.module.ts │ │ │ └── tsconfig.json │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── base.json │ │ │ ├── config.json │ │ │ ├── erser │ │ │ │ ├── icon-edit.png │ │ │ │ ├── icon-edit.svg │ │ │ │ ├── icon-edit@2x.png │ │ │ │ ├── icon-edit@3x.png │ │ │ │ ├── overlay.jpg │ │ │ │ ├── overlay.svg │ │ │ │ ├── robot.jpg │ │ │ │ ├── robot_redux.png │ │ │ │ └── whitebg.jpg │ │ │ ├── fonts │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.svg │ │ │ │ ├── icomoon.ttf │ │ │ │ ├── icomoon.woff │ │ │ │ └── lato │ │ │ │ │ ├── Lato-Black.eot │ │ │ │ │ ├── Lato-Black.ttf │ │ │ │ │ ├── Lato-Black.woff │ │ │ │ │ ├── Lato-Black.woff2 │ │ │ │ │ ├── Lato-BlackItalic.eot │ │ │ │ │ ├── Lato-BlackItalic.ttf │ │ │ │ │ ├── Lato-BlackItalic.woff │ │ │ │ │ ├── Lato-BlackItalic.woff2 │ │ │ │ │ ├── Lato-Bold.eot │ │ │ │ │ ├── Lato-Bold.ttf │ │ │ │ │ ├── Lato-Bold.woff │ │ │ │ │ ├── Lato-Bold.woff2 │ │ │ │ │ ├── Lato-BoldItalic.eot │ │ │ │ │ ├── Lato-BoldItalic.ttf │ │ │ │ │ ├── Lato-BoldItalic.woff │ │ │ │ │ ├── Lato-BoldItalic.woff2 │ │ │ │ │ ├── Lato-Hairline.eot │ │ │ │ │ ├── Lato-Hairline.ttf │ │ │ │ │ ├── Lato-Hairline.woff │ │ │ │ │ ├── Lato-Hairline.woff2 │ │ │ │ │ ├── Lato-HairlineItalic.eot │ │ │ │ │ ├── Lato-HairlineItalic.ttf │ │ │ │ │ ├── Lato-HairlineItalic.woff │ │ │ │ │ ├── Lato-HairlineItalic.woff2 │ │ │ │ │ ├── Lato-Heavy.eot │ │ │ │ │ ├── Lato-Heavy.ttf │ │ │ │ │ ├── Lato-Heavy.woff │ │ │ │ │ ├── Lato-Heavy.woff2 │ │ │ │ │ ├── Lato-HeavyItalic.eot │ │ │ │ │ ├── Lato-HeavyItalic.ttf │ │ │ │ │ ├── Lato-HeavyItalic.woff │ │ │ │ │ ├── Lato-HeavyItalic.woff2 │ │ │ │ │ ├── Lato-Italic.eot │ │ │ │ │ ├── Lato-Italic.ttf │ │ │ │ │ ├── Lato-Italic.woff │ │ │ │ │ ├── Lato-Italic.woff2 │ │ │ │ │ ├── Lato-Light.eot │ │ │ │ │ ├── Lato-Light.ttf │ │ │ │ │ ├── Lato-Light.woff │ │ │ │ │ ├── Lato-Light.woff2 │ │ │ │ │ ├── Lato-LightItalic.eot │ │ │ │ │ ├── Lato-LightItalic.ttf │ │ │ │ │ ├── Lato-LightItalic.woff │ │ │ │ │ ├── Lato-LightItalic.woff2 │ │ │ │ │ ├── Lato-Medium.eot │ │ │ │ │ ├── Lato-Medium.ttf │ │ │ │ │ ├── Lato-Medium.woff │ │ │ │ │ ├── Lato-Medium.woff2 │ │ │ │ │ ├── Lato-MediumItalic.eot │ │ │ │ │ ├── Lato-MediumItalic.ttf │ │ │ │ │ ├── Lato-MediumItalic.woff │ │ │ │ │ ├── Lato-MediumItalic.woff2 │ │ │ │ │ ├── Lato-Regular.eot │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ ├── Lato-Regular.woff │ │ │ │ │ ├── Lato-Regular.woff2 │ │ │ │ │ ├── Lato-Semibold.eot │ │ │ │ │ ├── Lato-Semibold.ttf │ │ │ │ │ ├── Lato-Semibold.woff │ │ │ │ │ ├── Lato-Semibold.woff2 │ │ │ │ │ ├── Lato-SemiboldItalic.eot │ │ │ │ │ ├── Lato-SemiboldItalic.ttf │ │ │ │ │ ├── Lato-SemiboldItalic.woff │ │ │ │ │ ├── Lato-SemiboldItalic.woff2 │ │ │ │ │ ├── Lato-Thin.eot │ │ │ │ │ ├── Lato-Thin.ttf │ │ │ │ │ ├── Lato-Thin.woff │ │ │ │ │ ├── Lato-Thin.woff2 │ │ │ │ │ ├── Lato-ThinItalic.eot │ │ │ │ │ ├── Lato-ThinItalic.ttf │ │ │ │ │ ├── Lato-ThinItalic.woff │ │ │ │ │ └── Lato-ThinItalic.woff2 │ │ │ ├── images │ │ │ │ ├── 403_Forbidden@2x.png │ │ │ │ ├── App_Services.svg │ │ │ │ ├── Azure_Cosmos_DB.svg │ │ │ │ ├── Azure_Database.svg │ │ │ │ ├── Azure_Service_Bus.svg │ │ │ │ ├── Azure_Service_Bus_Relays.svg │ │ │ │ ├── BG4@3x.png │ │ │ │ ├── Blob_Storage.svg │ │ │ │ ├── CDN_Profiles.svg │ │ │ │ ├── Event_Grid_Domains.svg │ │ │ │ ├── Event_Hubs.svg │ │ │ │ ├── Function_Apps.svg │ │ │ │ ├── Go.svg │ │ │ │ ├── Java.svg │ │ │ │ ├── Storage_Accounts.svg │ │ │ │ ├── Virtual_Clusters.svg │ │ │ │ ├── angular.png │ │ │ │ ├── aws-logo-alt.svg │ │ │ │ ├── aws-logo-small.jpg │ │ │ │ ├── aws-logo.svg │ │ │ │ ├── aws-watermark.png │ │ │ │ ├── azure-deselected.png │ │ │ │ ├── azure-logo-gray.svg │ │ │ │ ├── azure-logo.svg │ │ │ │ ├── azure-watermark.png │ │ │ │ ├── create-success.png │ │ │ │ ├── env-mask-01.png │ │ │ │ ├── env-mask-02.png │ │ │ │ ├── env-mask-03.png │ │ │ │ ├── env-mask-04.png │ │ │ │ ├── error-404.png │ │ │ │ ├── favicon.png │ │ │ │ ├── google-cloud-logo.svg │ │ │ │ ├── html-bade.png │ │ │ │ ├── icon-c.svg │ │ │ │ ├── icon-go.svg │ │ │ │ ├── icon-java.svg │ │ │ │ ├── icon-nodejs.svg │ │ │ │ ├── icon-python.svg │ │ │ │ ├── icons │ │ │ │ │ ├── 220px-DynamoDB.svg │ │ │ │ │ ├── Apigee.svg │ │ │ │ │ ├── Azure-Storage.svg │ │ │ │ │ ├── Azure.svg │ │ │ │ │ ├── Build-custom-gray.svg │ │ │ │ │ ├── Build-custom.svg │ │ │ │ │ ├── C.svg │ │ │ │ │ ├── Go.svg │ │ │ │ │ ├── Group.svg │ │ │ │ │ ├── Java.svg │ │ │ │ │ ├── Jazz-Logo.svg │ │ │ │ │ ├── Jazz_Logo.svg │ │ │ │ │ ├── Jazz_Logo@2x.png │ │ │ │ │ ├── Jazz_S.svg │ │ │ │ │ ├── Login.svg │ │ │ │ │ ├── aws-api-gateway.svg │ │ │ │ │ ├── aws-s3.svg │ │ │ │ │ ├── azure-deselected.png │ │ │ │ │ ├── azure-event-hub.svg │ │ │ │ │ ├── cosmos.svg │ │ │ │ │ ├── cron-glyph.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── fixed-rate-glyph.svg │ │ │ │ │ ├── function-glyph.svg │ │ │ │ │ ├── greyscale-icons │ │ │ │ │ │ ├── icon-api.svg │ │ │ │ │ │ ├── icon-apigee.svg │ │ │ │ │ │ ├── icon-aws.svg │ │ │ │ │ │ ├── icon-awsgateway.svg │ │ │ │ │ │ ├── icon-azure.svg │ │ │ │ │ │ ├── icon-buildcustom.svg │ │ │ │ │ │ ├── icon-c.svg │ │ │ │ │ │ ├── icon-function.svg │ │ │ │ │ │ ├── icon-go.svg │ │ │ │ │ │ ├── icon-googlecloud.svg │ │ │ │ │ │ ├── icon-java.svg │ │ │ │ │ │ ├── icon-nodejs.svg │ │ │ │ │ │ ├── icon-python.svg │ │ │ │ │ │ └── icon-website.svg │ │ │ │ │ ├── icon-alert@3x.png │ │ │ │ │ ├── icon-close@3x.png │ │ │ │ │ ├── icon-deployment@3x.png │ │ │ │ │ ├── icon-link.png │ │ │ │ │ ├── icon-link.svg │ │ │ │ │ ├── icon-merge@3x.png │ │ │ │ │ ├── icon-pendingapproval@3x.png │ │ │ │ │ ├── icon-traingle-ddd.svg │ │ │ │ │ ├── icon-traingle.svg │ │ │ │ │ ├── iconmonstr-info-2.svg │ │ │ │ │ ├── iconmonstr-lock-4.svg │ │ │ │ │ ├── input_number_arrow.png │ │ │ │ │ ├── kinesis.svg │ │ │ │ │ ├── loading.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── nodejs.svg │ │ │ │ │ ├── none-glyph.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── sqs.svg │ │ │ │ │ ├── success-glyph-green.png │ │ │ │ │ └── wait-glyph-white.png │ │ │ │ ├── mask-image.png │ │ │ │ ├── nda.png │ │ │ │ ├── new │ │ │ │ │ ├── 220px-DynamoDB.png │ │ │ │ │ ├── angular.png │ │ │ │ │ ├── aws-s3.svg │ │ │ │ │ ├── html-bade.png │ │ │ │ │ ├── kinesis.png │ │ │ │ │ ├── react.png │ │ │ │ │ └── sqs.png │ │ │ │ ├── nodejs.svg │ │ │ │ ├── none-glyph.svg │ │ │ │ ├── python.svg │ │ │ │ ├── react.png │ │ │ │ ├── recent-activity-mask.png │ │ │ │ ├── refresh.png │ │ │ │ ├── server.png │ │ │ │ ├── server.svg │ │ │ │ └── x.png │ │ │ └── landing │ │ │ │ ├── Asset 49@6x.png │ │ │ │ ├── Asset 50@6x.png │ │ │ │ ├── Asset 53@6x.png │ │ │ │ ├── Asset 56@6x.png │ │ │ │ ├── Asset 57@6x.png │ │ │ │ ├── Asset 58@6x.png │ │ │ │ ├── Asset 60@6x.png │ │ │ │ ├── Asset 61@6x.png │ │ │ │ ├── BG-AboutUs@1x.png.png │ │ │ │ ├── BG-AboutUs@2x.png.png │ │ │ │ ├── BG-AboutUs@3x.png.png │ │ │ │ ├── BG-Header@1x.png.png │ │ │ │ ├── BG-Header@2x.png.png │ │ │ │ ├── BG-Header@3x.png.png │ │ │ │ ├── Bankrupt.svg │ │ │ │ ├── Calendar@1x.png.png │ │ │ │ ├── Calendar@2x.png.png │ │ │ │ ├── Calendar@3x.png.png │ │ │ │ ├── Ci-CD.svg │ │ │ │ ├── Code-Secure.svg │ │ │ │ ├── Controlled-Access.svg │ │ │ │ ├── Focus-Code.svg │ │ │ │ ├── Hackathon-IMG-1@1x.png.png │ │ │ │ ├── Monitoring.svg │ │ │ │ ├── Pattern-2@1x.png.png │ │ │ │ ├── Pattern-2@2x.png.png │ │ │ │ ├── Pattern-2@3x.png.png │ │ │ │ ├── Pattern-3@-1x.png │ │ │ │ ├── Pattern-3@1x.png.png │ │ │ │ ├── Pattern-3@2x.png.png │ │ │ │ ├── Pattern-3@3x.png.png │ │ │ │ ├── Pattern-4@1x.png.png │ │ │ │ ├── Pattern-4@2x.png.png │ │ │ │ ├── Pattern-4@3x.png.png │ │ │ │ ├── Pattern-5@1x.png.png │ │ │ │ ├── Pattern-Header-01@1x.png.png │ │ │ │ ├── Pattern-Header-01@2x.png.png │ │ │ │ ├── Pattern-Header-01@3x.png.png │ │ │ │ ├── Pattern-Header-10@3x.png.png │ │ │ │ ├── Release Party Image@1x.png.png │ │ │ │ ├── Release Party Image@2x.png.png │ │ │ │ ├── Release Party Image@3x.png.png │ │ │ │ ├── SSIMG-bottom@1x.png.png │ │ │ │ ├── SSIMG-bottom@2x.png.png │ │ │ │ ├── SSIMG-bottom@3x.png.png │ │ │ │ ├── Serverless.svg │ │ │ │ ├── Slack_Mark.svg │ │ │ │ ├── Vendor.svg │ │ │ │ ├── jpg │ │ │ │ ├── BG-Header@1x.png.jpg │ │ │ │ ├── Hackathon-IMG-1@1x.png.jpg │ │ │ │ ├── Hackathon-IMG-1@2x.png.jpg │ │ │ │ ├── Hackathon-IMG-1@3x.png.jpg │ │ │ │ ├── Hackathon-IMG-2@1x.png.jpg │ │ │ │ ├── Hackathon-IMG-3@1x.png.jpg │ │ │ │ ├── Hackathon-IMG-3@2x.png.jpg │ │ │ │ ├── Hackathon-IMG-3@3x.png.jpg │ │ │ │ ├── Hackathon-IMG_4@1x.png.jpg │ │ │ │ ├── Pattern-Header-01@3x.png.jpg │ │ │ │ ├── Release Party Image@1x.png.jpg │ │ │ │ ├── Release Party Image@2x.png.jpg │ │ │ │ └── Release Party Image@3x.png.jpg │ │ │ │ ├── pattern-5.png │ │ │ │ ├── pattern-5@2x.png │ │ │ │ ├── pattern-5@3x.png │ │ │ │ ├── right_menu.png │ │ │ │ ├── self-service-1@1x.png │ │ │ │ ├── self-service-1@3x.png │ │ │ │ ├── self-service-2@1x.png │ │ │ │ ├── self-service-2@3x.png │ │ │ │ ├── self-service-3@1x.png │ │ │ │ ├── self-service-3@3x.png │ │ │ │ └── slack_only_icon.png │ │ ├── bower.json │ │ ├── config │ │ │ ├── config.dev.json │ │ │ ├── config.json │ │ │ ├── config.oss.json │ │ │ ├── configuration.ts │ │ │ ├── templates │ │ │ │ ├── go-yaml.ts │ │ │ │ ├── java-yaml.ts │ │ │ │ ├── nodejs-yaml.ts │ │ │ │ └── python-yaml.ts │ │ │ └── toastmessages.ts │ │ ├── environments │ │ │ ├── environment.dev.ts │ │ │ ├── environment.internal.ts │ │ │ └── environment.oss.ts │ │ ├── eraser.jquery.json │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main-styles.scss │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── styles │ │ │ ├── _bootstrap-compass.scss │ │ │ ├── _bootstrap-mincer.scss │ │ │ ├── _bootstrap-sprockets.scss │ │ │ ├── _bootstrap.scss │ │ │ ├── _fonts.scss │ │ │ ├── _page.scss │ │ │ ├── _toaster.scss │ │ │ ├── bootstrap │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _button-groups.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _component-animations.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _glyphicons.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _input-groups.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _responsive-embed.scss │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ ├── _scaffolding.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _theme.scss │ │ │ │ ├── _thumbnails.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _wells.scss │ │ │ │ └── mixins │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _panels.scss │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ └── _vendor-prefixes.scss │ │ │ └── smacss │ │ │ │ ├── _variables.scss │ │ │ │ ├── main.scss │ │ │ │ └── modules │ │ │ │ ├── _button.scss │ │ │ │ ├── _chart.scss │ │ │ │ ├── _checkbox.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _loader.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _utils.scss │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── variables.scss │ ├── tsconfig.json │ └── tslint.json └── jazz_usermanagement │ ├── .jshintrc │ ├── README.md │ ├── build.api │ ├── components │ ├── config.js │ ├── error-handler.js │ ├── logger.js │ ├── response.js │ └── utils │ │ ├── getList.js │ │ └── vault.js │ ├── config │ ├── dev-config.json │ ├── prod-config.json │ ├── stg-config.json │ └── test-config.json │ ├── deployment-env.yml │ ├── event.json │ ├── index.js │ ├── package.json │ ├── scm │ └── scmFactory.js │ ├── swagger │ └── swagger.json │ └── test │ ├── debug │ └── event_local.json │ └── test.js ├── misc ├── jazz-deployed-in-aws.png ├── jazz_logical_architecture.png ├── logo.png └── wiki │ ├── images │ ├── APISpec.jpg │ ├── Build_Java_Api_Dev_v1.PNG │ ├── Build_Java_Api_v1.PNG │ ├── CreateService.png │ ├── JazzUI_AccessControl.PNG │ ├── JazzUI_EditAccessControl.PNG │ ├── JazzUI_Login.JPG │ ├── JazzUI_Overview.png │ ├── Jenkins_Build_API.jpg │ ├── Jenkins_Build_API_Dev.jpg │ ├── Jenkins_Build_Pack_Lambda_Dev_v1.png │ ├── Jenkins_Build_Pack_Lambda_v1.jpg │ ├── Jenkins_Create_Service.jpg │ ├── Jenkins_Create_Service_Stage_API_URL.jpg │ ├── Jenkins_Delete_Service.jpg │ ├── Jenkins_at_installation_v1.png │ ├── Kibana_Index_Pattern_sc1.JPG │ ├── Kibana_Index_Pattern_sc2.JPG │ ├── Kibana_Index_Pattern_sc3.JPG │ ├── Kibana_Index_Pattern_sc4.JPG │ ├── create-service.png │ ├── createAzure.png │ ├── delete-service.png │ ├── environment-details.png │ ├── features │ │ └── multi-account-region │ │ │ ├── logs.jpg │ │ │ ├── metrics.jpg │ │ │ └── service-deployment.jpg │ ├── home-login.png │ ├── jazz-ui-assets.png │ ├── jazz-ui-env.jpg │ ├── jazz-ui-testFunction.jpg │ ├── security group for scenario 3.png │ ├── service-details.png │ ├── services-list.png │ ├── sls-app-arn-for-resources-in-whitelist-yml.png │ ├── sls-app-create-service-1.png │ ├── sls-app-create-service-2.png │ ├── sls-app-create-service-3.png │ ├── sls-app-create-service-4.png │ ├── sls-app-create-service-5.png │ ├── sls-app-create-service-application-definition-custom.png │ ├── sls-app-edit-service-application-definition-2.png │ ├── sls-app-edit-service-application-definition.png │ ├── sls-app-list-services.png │ ├── sls-app-logs-filter.png │ ├── sls-app-metrics-filter.png │ └── templates │ │ ├── api-go.png │ │ ├── api-java.png │ │ ├── api-nodejs.png │ │ ├── api-python.png │ │ ├── website-angular.png │ │ ├── website-react.png │ │ └── website-static.png │ └── swagger │ └── swagger.json └── templates ├── angular-website-template ├── .gitignore ├── app │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── logo.svg │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ ├── environment.stg.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json ├── build.website ├── deployment-env.yml └── readme.md ├── api-template-go ├── .gitignore ├── Gopkg.toml ├── README.MD ├── build.api ├── config.go ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json ├── deployment-env.yml ├── error-handler.go ├── logger.go ├── main.go ├── main_test.go └── swagger │ └── swagger.json ├── api-template-java ├── .gitignore ├── README.md ├── build.api ├── deployment-env.yml ├── event.json ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── slf │ │ │ │ ├── exceptions │ │ │ │ ├── BadRequestException.java │ │ │ │ ├── BaseException.java │ │ │ │ ├── ForbiddenException.java │ │ │ │ ├── InternalServerErrorException.java │ │ │ │ ├── NotFoundException.java │ │ │ │ └── UnauthorizedException.java │ │ │ │ ├── model │ │ │ │ ├── ErrorInfo.java │ │ │ │ └── Response.java │ │ │ │ ├── services │ │ │ │ ├── BaseJazzRequestHandler.java │ │ │ │ └── Handler.java │ │ │ │ └── util │ │ │ │ ├── EnvironmentConfig.java │ │ │ │ ├── ErrorUtil.java │ │ │ │ └── JsonUtil.java │ │ └── resources │ │ │ ├── dev.properties │ │ │ ├── log4j.properties │ │ │ ├── prod.properties │ │ │ └── stg.properties │ └── test │ │ ├── java │ │ └── com │ │ │ └── slf │ │ │ └── services │ │ │ └── HandlerTest.java │ │ └── resources │ │ ├── dev.properties │ │ ├── log4j.properties │ │ ├── prod.properties │ │ └── stg.properties ├── sun_checks.xml └── swagger │ └── swagger.json ├── api-template-nodejs ├── .gitignore ├── .jshintrc ├── README.md ├── build.api ├── components │ ├── config.js │ ├── error-handler.js │ ├── logger.js │ └── response.js ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json ├── deployment-env.yml ├── event.json ├── index.js ├── package.json ├── swagger │ └── swagger.json └── test │ └── test.js ├── api-template-python ├── .gitignore ├── README.md ├── build.api ├── components │ ├── __init__.py │ ├── config.py │ ├── dev-config.ini │ ├── errors.py │ ├── logger.py │ ├── prod-config.ini │ ├── response.py │ └── stg-config.ini ├── deployment-env.yml ├── event.json ├── index.py ├── library │ └── __init__.py ├── requirements-dev.txt ├── requirements.txt ├── swagger │ └── swagger.json └── test │ ├── __init__.py │ └── test_hello.py ├── azure-api-template-csharp ├── build.api ├── components │ ├── ConfigHandler.csx │ ├── Logger.csx │ └── model │ │ └── Response.csx ├── config │ ├── dev.properties │ ├── prod.properties │ └── stg.properties ├── deployment-env.yml ├── function.json ├── run.csx └── swagger │ └── swagger.json ├── azure-api-template-nodejs ├── .gitignore ├── .jshintrc ├── README.md ├── build.api ├── components │ ├── config.js │ ├── error-handler.js │ ├── logger.js │ └── response.js ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json ├── deployment-env.yml ├── event.json ├── function.json ├── index.js ├── package.json ├── swagger │ └── swagger.json └── test │ └── test.js ├── azure-function-template-csharp ├── Handler.csx ├── build.function ├── components │ ├── ConfigHandler.csx │ ├── Logger.csx │ └── model │ │ └── Response.csx ├── configs │ ├── dev.properties │ ├── prod.properties │ └── stg.properties └── deployment-env.yml ├── azure-function-template-nodejs ├── .gitignore ├── .jshintrc ├── README.md ├── build.function ├── components │ ├── config.js │ ├── error-handler.js │ ├── logger.js │ └── response.js ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json ├── deployment-env.yml ├── event.json ├── index.js ├── package.json └── test │ └── test.js ├── function-template-go ├── .gitignore ├── Gopkg.toml ├── README.MD ├── build.function ├── config.go ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json ├── deployment-env.yml ├── error-handler.go ├── logger.go ├── main.go └── main_test.go ├── function-template-java ├── .gitignore ├── README.md ├── build.function ├── deployment-env.yml ├── event.json ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── slf │ │ │ │ ├── exceptions │ │ │ │ ├── BadRequestException.java │ │ │ │ ├── BaseException.java │ │ │ │ ├── InternalServerErrorException.java │ │ │ │ └── NotFoundException.java │ │ │ │ ├── model │ │ │ │ ├── ErrorInfo.java │ │ │ │ └── Response.java │ │ │ │ ├── services │ │ │ │ ├── BaseRequestHandler.java │ │ │ │ └── Handler.java │ │ │ │ └── util │ │ │ │ ├── EnvironmentConfig.java │ │ │ │ ├── ErrorUtil.java │ │ │ │ └── JsonUtil.java │ │ └── resources │ │ │ ├── dev.properties │ │ │ ├── log4j.properties │ │ │ ├── prod.properties │ │ │ └── stg.properties │ └── test │ │ └── java │ │ └── com │ │ └── slf │ │ └── services │ │ └── HandlerTest.java └── sun_checks.xml ├── function-template-nodejs ├── .gitignore ├── README.md ├── build.function ├── components │ ├── config.js │ ├── error-handler.js │ ├── logger.js │ └── response.js ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json ├── deployment-env.yml ├── index.js ├── package.json └── test │ └── test.js ├── function-template-python ├── .gitignore ├── README.md ├── build.function ├── components │ ├── __init__.py │ ├── config.py │ ├── dev-config.ini │ ├── logger.py │ ├── prod-config.ini │ └── stg-config.ini ├── deployment-env.yml ├── event.json ├── index.py ├── requirements-dev.txt ├── requirements.txt └── test │ ├── __init__.py │ └── test_hello.py ├── react-website-template ├── .gitignore ├── app │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ └── serviceWorker.js ├── build.website ├── deployment-env.yml └── readme.md ├── sls-app-template-go ├── .gitignore ├── Gopkg.toml ├── README.MD ├── build.slsapp ├── components │ ├── config.go │ ├── error-handler.go │ └── logger.go ├── deployment-env.yml └── functions │ ├── function1 │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ ├── main.go │ └── main_test.go │ └── function2 │ ├── config │ ├── dev-config.json │ ├── prod-config.json │ └── stg-config.json │ ├── main.go │ └── main_test.go ├── sls-app-template-java ├── README.md ├── build.slsapp ├── deployment-env.yml ├── event.json ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── slf │ │ │ │ ├── exceptions │ │ │ │ ├── BadRequestException.java │ │ │ │ ├── BaseException.java │ │ │ │ ├── InternalServerErrorException.java │ │ │ │ └── NotFoundException.java │ │ │ │ ├── model │ │ │ │ ├── ErrorInfo.java │ │ │ │ └── Response.java │ │ │ │ ├── services │ │ │ │ ├── BaseRequestHandler.java │ │ │ │ └── functions │ │ │ │ │ ├── function1 │ │ │ │ │ └── Function1.java │ │ │ │ │ └── function2 │ │ │ │ │ └── Function2.java │ │ │ │ └── util │ │ │ │ └── EnvironmentConfig.java │ │ └── resources │ │ │ ├── functions │ │ │ ├── function1 │ │ │ │ ├── dev.properties │ │ │ │ ├── prod.properties │ │ │ │ └── stg.properties │ │ │ └── function2 │ │ │ │ ├── dev.properties │ │ │ │ ├── prod.properties │ │ │ │ └── stg.properties │ │ │ └── log4j.properties │ └── test │ │ └── java │ │ └── com │ │ └── slf │ │ ├── services │ │ └── functions │ │ │ ├── function1 │ │ │ └── Function1Test.java │ │ │ └── function2 │ │ │ └── Function2Test.java │ │ └── stubs │ │ └── ContextStub.java └── sun_checks.xml ├── sls-app-template-nodejs ├── build.slsapp ├── components │ ├── config.js │ ├── error-handler.js │ ├── logger.js │ └── response.js ├── deployment-env.yml ├── functions │ ├── function1 │ │ ├── config │ │ │ ├── dev-config.json │ │ │ ├── prod-config.json │ │ │ └── stg-config.json │ │ ├── index.js │ │ └── test │ │ │ └── test.js │ └── function2 │ │ ├── config │ │ ├── dev-config.json │ │ ├── prod-config.json │ │ └── stg-config.json │ │ ├── index.js │ │ └── test │ │ └── test.js └── package.json ├── sls-app-template-python ├── README.md ├── build.slsapp ├── components │ ├── __init__.py │ ├── config.py │ ├── errors.py │ ├── logger.py │ └── response.py ├── deployment-env.yml ├── event.json ├── functions │ ├── __init__.py │ ├── function1 │ │ ├── __init__.py │ │ ├── config │ │ │ ├── dev-config.ini │ │ │ ├── prod-config.ini │ │ │ └── stg-config.ini │ │ ├── index.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_hello.py │ └── function2 │ │ ├── __init__.py │ │ ├── config │ │ ├── dev-config.ini │ │ ├── prod-config.ini │ │ └── stg-config.ini │ │ ├── index.py │ │ └── test │ │ ├── __init__.py │ │ └── test_hello.py ├── library │ └── __init__.py ├── requirements-dev.txt └── requirements.txt └── static-website-template ├── app ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── custom.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── concert.jpg │ ├── header.jpg │ ├── iphone.jpg │ ├── microphone.jpg │ ├── pencil_sharpener.jpg │ └── writing.jpg ├── index.html └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── ie10-viewport-bug-workaround.js │ ├── jquery-1.11.3.min.js │ └── jquery.easing.min.js ├── build.website ├── deployment-env.yml └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/README.md -------------------------------------------------------------------------------- /core/jazz-web/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/3rdpartylicenses.txt -------------------------------------------------------------------------------- /core/jazz-web/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/css/bootstrap.css -------------------------------------------------------------------------------- /core/jazz-web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/css/bootstrap.min.css -------------------------------------------------------------------------------- /core/jazz-web/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/css/custom.css -------------------------------------------------------------------------------- /core/jazz-web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/favicon.ico -------------------------------------------------------------------------------- /core/jazz-web/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/images/header.jpg -------------------------------------------------------------------------------- /core/jazz-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/index.html -------------------------------------------------------------------------------- /core/jazz-web/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/js/bootstrap.js -------------------------------------------------------------------------------- /core/jazz-web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/js/bootstrap.min.js -------------------------------------------------------------------------------- /core/jazz-web/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/js/custom.js -------------------------------------------------------------------------------- /core/jazz-web/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /core/jazz-web/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /core/jazz-web/js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz-web/js/jquery.easing.min.js -------------------------------------------------------------------------------- /core/jazz_acl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/README.md -------------------------------------------------------------------------------- /core/jazz_acl/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_acl/components/casbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/casbin.js -------------------------------------------------------------------------------- /core/jazz_acl/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/config.js -------------------------------------------------------------------------------- /core/jazz_acl/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_acl/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/logger.js -------------------------------------------------------------------------------- /core/jazz_acl/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/response.js -------------------------------------------------------------------------------- /core/jazz_acl/components/scm/bitbucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/scm/bitbucket.js -------------------------------------------------------------------------------- /core/jazz_acl/components/scm/gitlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/scm/gitlab.js -------------------------------------------------------------------------------- /core/jazz_acl/components/scm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/scm/index.js -------------------------------------------------------------------------------- /core/jazz_acl/components/scm/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/scm/login.js -------------------------------------------------------------------------------- /core/jazz_acl/components/scm/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/scm/services.js -------------------------------------------------------------------------------- /core/jazz_acl/components/utils/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/utils/environment.js -------------------------------------------------------------------------------- /core/jazz_acl/components/utils/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/utils/getList.js -------------------------------------------------------------------------------- /core/jazz_acl/components/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/utils/util.js -------------------------------------------------------------------------------- /core/jazz_acl/components/utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/utils/validation.js -------------------------------------------------------------------------------- /core/jazz_acl/components/utils/vault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/components/utils/vault.js -------------------------------------------------------------------------------- /core/jazz_acl/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_acl/config/global-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/config/global-config.json -------------------------------------------------------------------------------- /core/jazz_acl/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_acl/config/rbac_model.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/config/rbac_model.conf -------------------------------------------------------------------------------- /core/jazz_acl/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_acl/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_acl/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_acl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/index.js -------------------------------------------------------------------------------- /core/jazz_acl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/package.json -------------------------------------------------------------------------------- /core/jazz_acl/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_acl/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_acl/test/test.js -------------------------------------------------------------------------------- /core/jazz_admin/README.md: -------------------------------------------------------------------------------- 1 | ## Core API to perform administrative tasks 2 | 3 | -------------------------------------------------------------------------------- /core/jazz_admin/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_admin/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/config.js -------------------------------------------------------------------------------- /core/jazz_admin/components/crud/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/crud/get.js -------------------------------------------------------------------------------- /core/jazz_admin/components/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/crud/index.js -------------------------------------------------------------------------------- /core/jazz_admin/components/crud/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/crud/post.js -------------------------------------------------------------------------------- /core/jazz_admin/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_admin/components/json-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/json-editor.js -------------------------------------------------------------------------------- /core/jazz_admin/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/logger.js -------------------------------------------------------------------------------- /core/jazz_admin/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/response.js -------------------------------------------------------------------------------- /core/jazz_admin/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/components/utils.js -------------------------------------------------------------------------------- /core/jazz_admin/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_admin/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_admin/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_admin/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_admin/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_admin/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/index.js -------------------------------------------------------------------------------- /core/jazz_admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/package.json -------------------------------------------------------------------------------- /core/jazz_admin/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_admin/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_admin/test/test.js -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_apigee-proxy-aws/README.md -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_apigee-proxy-aws/components/logger.js -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_apigee-proxy-aws/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_apigee-proxy-aws/index.js -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_apigee-proxy-aws/package.json -------------------------------------------------------------------------------- /core/jazz_apigee-proxy-aws/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_apigee-proxy-aws/test/test.js -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/.gitignore -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/.jshintrc -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/README.md -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/components/config.js -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/components/logger.js -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/event.json -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/index.js -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/package.json -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/test/test.js -------------------------------------------------------------------------------- /core/jazz_asset-event-handler/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_asset-event-handler/utils/utils.js -------------------------------------------------------------------------------- /core/jazz_assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/README.md -------------------------------------------------------------------------------- /core/jazz_assets/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_assets/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/config.js -------------------------------------------------------------------------------- /core/jazz_assets/components/crud/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/crud/create.js -------------------------------------------------------------------------------- /core/jazz_assets/components/crud/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/crud/get.js -------------------------------------------------------------------------------- /core/jazz_assets/components/crud/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/crud/getList.js -------------------------------------------------------------------------------- /core/jazz_assets/components/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/crud/index.js -------------------------------------------------------------------------------- /core/jazz_assets/components/crud/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/crud/update.js -------------------------------------------------------------------------------- /core/jazz_assets/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_assets/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/logger.js -------------------------------------------------------------------------------- /core/jazz_assets/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/response.js -------------------------------------------------------------------------------- /core/jazz_assets/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/utils.js -------------------------------------------------------------------------------- /core/jazz_assets/components/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/components/validation.js -------------------------------------------------------------------------------- /core/jazz_assets/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_assets/config/global-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/config/global-config.json -------------------------------------------------------------------------------- /core/jazz_assets/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_assets/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_assets/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_assets/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_assets/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/index.js -------------------------------------------------------------------------------- /core/jazz_assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/package.json -------------------------------------------------------------------------------- /core/jazz_assets/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_assets/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_assets/test/test.js -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/.jshintrc -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/README.md -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/_ES/apilogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/_ES/apilogs.json -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/components/config.js -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/components/logger.js -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/components/utils.js -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/config/dev-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ES_ENDPOINT": "{inst_elastic_search_hostname}" 3 | } -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/config/prod-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ES_ENDPOINT": "{inst_elastic_search_hostname}" 3 | } -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/config/stg-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ES_ENDPOINT": "{inst_elastic_search_hostname}" 3 | } -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/index.js -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/package.json -------------------------------------------------------------------------------- /core/jazz_cloud-logs-streamer/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cloud-logs-streamer/test/test.js -------------------------------------------------------------------------------- /core/jazz_codeq/README.md: -------------------------------------------------------------------------------- 1 | API for code quality 2 | -------------------------------------------------------------------------------- /core/jazz_codeq/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_codeq/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/components/config.js -------------------------------------------------------------------------------- /core/jazz_codeq/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_codeq/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/components/logger.js -------------------------------------------------------------------------------- /core/jazz_codeq/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/components/response.js -------------------------------------------------------------------------------- /core/jazz_codeq/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_codeq/config/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/config/messages.json -------------------------------------------------------------------------------- /core/jazz_codeq/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_codeq/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_codeq/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_codeq/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_codeq/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_codeq/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/index.js -------------------------------------------------------------------------------- /core/jazz_codeq/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/package.json -------------------------------------------------------------------------------- /core/jazz_codeq/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_codeq/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/test/test.js -------------------------------------------------------------------------------- /core/jazz_codeq/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/utils.js -------------------------------------------------------------------------------- /core/jazz_codeq/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_codeq/validation.js -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion":6 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/README.md: -------------------------------------------------------------------------------- 1 | Cognito authorizer for admin access. 2 | -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-admin-authorizer/index.js -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-admin-authorizer/package.json -------------------------------------------------------------------------------- /core/jazz_cognito-admin-authorizer/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-admin-authorizer/test/test.js -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/.jshintrc -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/README.md -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/components/config.js -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/components/logger.js -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/components/login.js -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/index.js -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/package.json -------------------------------------------------------------------------------- /core/jazz_cognito-authorizer/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_cognito-authorizer/test/test.js -------------------------------------------------------------------------------- /core/jazz_create-serverless-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_create-serverless-service/README.md -------------------------------------------------------------------------------- /core/jazz_create-serverless-service/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_create-serverless-service/event.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /core/jazz_create-serverless-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_create-serverless-service/index.js -------------------------------------------------------------------------------- /core/jazz_create-serverless-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_create-serverless-service/package.json -------------------------------------------------------------------------------- /core/jazz_create-serverless-service/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_create-serverless-service/test/test.js -------------------------------------------------------------------------------- /core/jazz_delete-serverless-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_delete-serverless-service/README.md -------------------------------------------------------------------------------- /core/jazz_delete-serverless-service/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_delete-serverless-service/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_delete-serverless-service/event.json -------------------------------------------------------------------------------- /core/jazz_delete-serverless-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_delete-serverless-service/index.js -------------------------------------------------------------------------------- /core/jazz_delete-serverless-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_delete-serverless-service/package.json -------------------------------------------------------------------------------- /core/jazz_delete-serverless-service/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_delete-serverless-service/test/test.js -------------------------------------------------------------------------------- /core/jazz_deployments-event-handler/README.md: -------------------------------------------------------------------------------- 1 | Subscriber for handling deployment related events -------------------------------------------------------------------------------- /core/jazz_deployments-event-handler/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_deployments-event-handler/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } -------------------------------------------------------------------------------- /core/jazz_deployments-event-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments-event-handler/index.js -------------------------------------------------------------------------------- /core/jazz_deployments-event-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments-event-handler/package.json -------------------------------------------------------------------------------- /core/jazz_deployments-event-handler/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments-event-handler/test/test.js -------------------------------------------------------------------------------- /core/jazz_deployments/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_deployments/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/config.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/crud/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/crud/create.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/crud/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/crud/delete.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/crud/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/crud/get.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/crud/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/crud/getList.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/crud/index.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/crud/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/crud/update.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/logger.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/response.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/utils.js -------------------------------------------------------------------------------- /core/jazz_deployments/components/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/components/validation.js -------------------------------------------------------------------------------- /core/jazz_deployments/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_deployments/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_deployments/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_deployments/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_deployments/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_deployments/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_deployments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/index.js -------------------------------------------------------------------------------- /core/jazz_deployments/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/package.json -------------------------------------------------------------------------------- /core/jazz_deployments/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_deployments/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_deployments/test/test.js -------------------------------------------------------------------------------- /core/jazz_email/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/.jshintrc -------------------------------------------------------------------------------- /core/jazz_email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/README.md -------------------------------------------------------------------------------- /core/jazz_email/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_email/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/components/config.js -------------------------------------------------------------------------------- /core/jazz_email/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_email/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/components/logger.js -------------------------------------------------------------------------------- /core/jazz_email/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/components/response.js -------------------------------------------------------------------------------- /core/jazz_email/config/dev-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "REGION": "{conf-region}" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_email/config/local-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "REGION": "{region}" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_email/config/prod-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "REGION": "{conf-region}" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_email/config/stg-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "REGION": "{conf-region}" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_email/config/test-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "REGION": "test-region" 3 | } -------------------------------------------------------------------------------- /core/jazz_email/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_email/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_email/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/index.js -------------------------------------------------------------------------------- /core/jazz_email/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/package.json -------------------------------------------------------------------------------- /core/jazz_email/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_email/test/debug/event_local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/test/debug/event_local.json -------------------------------------------------------------------------------- /core/jazz_email/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_email/test/test.js -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environment-event-handler/README.md -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environment-event-handler/event.json -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environment-event-handler/index.js -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environment-event-handler/package.json -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environment-event-handler/test/test.js -------------------------------------------------------------------------------- /core/jazz_environment-event-handler/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environment-event-handler/utils/utils.js -------------------------------------------------------------------------------- /core/jazz_environments/README.md: -------------------------------------------------------------------------------- 1 | Service environments catalog API for Jazz. -------------------------------------------------------------------------------- /core/jazz_environments/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_environments/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/config.js -------------------------------------------------------------------------------- /core/jazz_environments/components/crud/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/crud/create.js -------------------------------------------------------------------------------- /core/jazz_environments/components/crud/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/crud/get.js -------------------------------------------------------------------------------- /core/jazz_environments/components/crud/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/crud/getList.js -------------------------------------------------------------------------------- /core/jazz_environments/components/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/crud/index.js -------------------------------------------------------------------------------- /core/jazz_environments/components/crud/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/crud/update.js -------------------------------------------------------------------------------- /core/jazz_environments/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_environments/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/logger.js -------------------------------------------------------------------------------- /core/jazz_environments/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/response.js -------------------------------------------------------------------------------- /core/jazz_environments/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/utils.js -------------------------------------------------------------------------------- /core/jazz_environments/components/whitelist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/components/whitelist.yml -------------------------------------------------------------------------------- /core/jazz_environments/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_environments/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_environments/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_environments/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_environments/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_environments/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_environments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/index.js -------------------------------------------------------------------------------- /core/jazz_environments/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/package.json -------------------------------------------------------------------------------- /core/jazz_environments/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_environments/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_environments/test/test.js -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_es-kinesis-log-streamer/README.md -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/_ES/apilogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_es-kinesis-log-streamer/_ES/apilogs.json -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/config/test-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ES_ENDPOINT": "abc.us-east-1.es.amazonaws.com" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_es-kinesis-log-streamer/index.js -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_es-kinesis-log-streamer/package.json -------------------------------------------------------------------------------- /core/jazz_es-kinesis-log-streamer/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_es-kinesis-log-streamer/test/test.js -------------------------------------------------------------------------------- /core/jazz_events-handler/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/.jshintrc -------------------------------------------------------------------------------- /core/jazz_events-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/README.md -------------------------------------------------------------------------------- /core/jazz_events-handler/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_events-handler/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/components/config.js -------------------------------------------------------------------------------- /core/jazz_events-handler/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/components/logger.js -------------------------------------------------------------------------------- /core/jazz_events-handler/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_events-handler/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_events-handler/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_events-handler/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_events-handler/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_events-handler/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_events-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/index.js -------------------------------------------------------------------------------- /core/jazz_events-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/package.json -------------------------------------------------------------------------------- /core/jazz_events-handler/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/test/test.js -------------------------------------------------------------------------------- /core/jazz_events-handler/utils/failure-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events-handler/utils/failure-codes.js -------------------------------------------------------------------------------- /core/jazz_events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/README.md -------------------------------------------------------------------------------- /core/jazz_events/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_events/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/config.js -------------------------------------------------------------------------------- /core/jazz_events/components/crud/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/crud/create.js -------------------------------------------------------------------------------- /core/jazz_events/components/crud/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/crud/get.js -------------------------------------------------------------------------------- /core/jazz_events/components/crud/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/crud/getList.js -------------------------------------------------------------------------------- /core/jazz_events/components/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/crud/index.js -------------------------------------------------------------------------------- /core/jazz_events/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_events/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/logger.js -------------------------------------------------------------------------------- /core/jazz_events/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/response.js -------------------------------------------------------------------------------- /core/jazz_events/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/utils.js -------------------------------------------------------------------------------- /core/jazz_events/components/validation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/components/validation/index.js -------------------------------------------------------------------------------- /core/jazz_events/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_events/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_events/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_events/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_events/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_events/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/index.js -------------------------------------------------------------------------------- /core/jazz_events/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/package.json -------------------------------------------------------------------------------- /core/jazz_events/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_events/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_events/test/test.js -------------------------------------------------------------------------------- /core/jazz_is-service-available/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/.gitignore -------------------------------------------------------------------------------- /core/jazz_is-service-available/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/.jshintrc -------------------------------------------------------------------------------- /core/jazz_is-service-available/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/README.md -------------------------------------------------------------------------------- /core/jazz_is-service-available/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_is-service-available/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/components/utils.js -------------------------------------------------------------------------------- /core/jazz_is-service-available/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_is-service-available/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_is-service-available/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/index.js -------------------------------------------------------------------------------- /core/jazz_is-service-available/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/package.json -------------------------------------------------------------------------------- /core/jazz_is-service-available/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-service-available/test/test.js -------------------------------------------------------------------------------- /core/jazz_is-slack-channel-available/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-slack-channel-available/README.md -------------------------------------------------------------------------------- /core/jazz_is-slack-channel-available/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_is-slack-channel-available/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_is-slack-channel-available/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-slack-channel-available/index.js -------------------------------------------------------------------------------- /core/jazz_is-slack-channel-available/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_is-slack-channel-available/package.json -------------------------------------------------------------------------------- /core/jazz_login/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/.jshintrc -------------------------------------------------------------------------------- /core/jazz_login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/README.md -------------------------------------------------------------------------------- /core/jazz_login/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_login/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/components/config.js -------------------------------------------------------------------------------- /core/jazz_login/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_login/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/components/logger.js -------------------------------------------------------------------------------- /core/jazz_login/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/components/response.js -------------------------------------------------------------------------------- /core/jazz_login/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_login/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_login/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_login/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_login/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_login/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/index.js -------------------------------------------------------------------------------- /core/jazz_login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/package.json -------------------------------------------------------------------------------- /core/jazz_login/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_login/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_login/test/test.js -------------------------------------------------------------------------------- /core/jazz_logout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/README.md -------------------------------------------------------------------------------- /core/jazz_logout/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_logout/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/components/config.js -------------------------------------------------------------------------------- /core/jazz_logout/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_logout/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/components/logger.js -------------------------------------------------------------------------------- /core/jazz_logout/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/components/response.js -------------------------------------------------------------------------------- /core/jazz_logout/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_logout/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_logout/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_logout/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_logout/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_logout/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_logout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/index.js -------------------------------------------------------------------------------- /core/jazz_logout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/package.json -------------------------------------------------------------------------------- /core/jazz_logout/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_logout/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logout/test/test.js -------------------------------------------------------------------------------- /core/jazz_logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/.gitignore -------------------------------------------------------------------------------- /core/jazz_logs/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/.jshintrc -------------------------------------------------------------------------------- /core/jazz_logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/README.md -------------------------------------------------------------------------------- /core/jazz_logs/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_logs/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/components/config.js -------------------------------------------------------------------------------- /core/jazz_logs/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_logs/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/components/logger.js -------------------------------------------------------------------------------- /core/jazz_logs/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/components/response.js -------------------------------------------------------------------------------- /core/jazz_logs/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_logs/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_logs/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_logs/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_logs/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_logs/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_logs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/index.js -------------------------------------------------------------------------------- /core/jazz_logs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/package.json -------------------------------------------------------------------------------- /core/jazz_logs/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_logs/test/debug/event_local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/test/debug/event_local.json -------------------------------------------------------------------------------- /core/jazz_logs/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/test/test.js -------------------------------------------------------------------------------- /core/jazz_logs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_logs/utils.js -------------------------------------------------------------------------------- /core/jazz_metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/README.md -------------------------------------------------------------------------------- /core/jazz_metrics/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_metrics/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/config.js -------------------------------------------------------------------------------- /core/jazz_metrics/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_metrics/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/logger.js -------------------------------------------------------------------------------- /core/jazz_metrics/components/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/metrics.json -------------------------------------------------------------------------------- /core/jazz_metrics/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/response.js -------------------------------------------------------------------------------- /core/jazz_metrics/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/utils.js -------------------------------------------------------------------------------- /core/jazz_metrics/components/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/components/validation.js -------------------------------------------------------------------------------- /core/jazz_metrics/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_metrics/config/global-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/config/global-config.json -------------------------------------------------------------------------------- /core/jazz_metrics/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_metrics/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_metrics/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_metrics/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_metrics/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_metrics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/index.js -------------------------------------------------------------------------------- /core/jazz_metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/package.json -------------------------------------------------------------------------------- /core/jazz_metrics/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_metrics/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_metrics/test/test.js -------------------------------------------------------------------------------- /core/jazz_scm-webhook/README.md: -------------------------------------------------------------------------------- 1 | API to record SCM activity -------------------------------------------------------------------------------- /core/jazz_scm-webhook/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_scm-webhook/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/components/config.js -------------------------------------------------------------------------------- /core/jazz_scm-webhook/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/components/logger.js -------------------------------------------------------------------------------- /core/jazz_scm-webhook/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/components/response.js -------------------------------------------------------------------------------- /core/jazz_scm-webhook/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_scm-webhook/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_scm-webhook/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_scm-webhook/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_scm-webhook/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_scm-webhook/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_scm-webhook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/index.js -------------------------------------------------------------------------------- /core/jazz_scm-webhook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/package.json -------------------------------------------------------------------------------- /core/jazz_scm-webhook/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_scm-webhook/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_scm-webhook/test/test.js -------------------------------------------------------------------------------- /core/jazz_services-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/README.md -------------------------------------------------------------------------------- /core/jazz_services-handler/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_services-handler/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/components/config.js -------------------------------------------------------------------------------- /core/jazz_services-handler/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/components/logger.js -------------------------------------------------------------------------------- /core/jazz_services-handler/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_services-handler/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/event.json -------------------------------------------------------------------------------- /core/jazz_services-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/index.js -------------------------------------------------------------------------------- /core/jazz_services-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/package.json -------------------------------------------------------------------------------- /core/jazz_services-handler/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/test-config.json -------------------------------------------------------------------------------- /core/jazz_services-handler/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services-handler/test/test.js -------------------------------------------------------------------------------- /core/jazz_services/README.md: -------------------------------------------------------------------------------- 1 | Service catalog API for Jazz. 2 | -------------------------------------------------------------------------------- /core/jazz_services/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_services/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/config.js -------------------------------------------------------------------------------- /core/jazz_services/components/crud/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/crud/create.js -------------------------------------------------------------------------------- /core/jazz_services/components/crud/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/crud/delete.js -------------------------------------------------------------------------------- /core/jazz_services/components/crud/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/crud/get.js -------------------------------------------------------------------------------- /core/jazz_services/components/crud/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/crud/getList.js -------------------------------------------------------------------------------- /core/jazz_services/components/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/crud/index.js -------------------------------------------------------------------------------- /core/jazz_services/components/crud/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/crud/update.js -------------------------------------------------------------------------------- /core/jazz_services/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_services/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/logger.js -------------------------------------------------------------------------------- /core/jazz_services/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/response.js -------------------------------------------------------------------------------- /core/jazz_services/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/components/utils.js -------------------------------------------------------------------------------- /core/jazz_services/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_services/config/global-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/config/global-config.json -------------------------------------------------------------------------------- /core/jazz_services/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_services/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_services/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_services/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_services/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/index.js -------------------------------------------------------------------------------- /core/jazz_services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/package.json -------------------------------------------------------------------------------- /core/jazz_services/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_services/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_services/test/test.js -------------------------------------------------------------------------------- /core/jazz_slack-channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/README.md -------------------------------------------------------------------------------- /core/jazz_slack-channel/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_slack-channel/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/components/config.js -------------------------------------------------------------------------------- /core/jazz_slack-channel/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/components/logger.js -------------------------------------------------------------------------------- /core/jazz_slack-channel/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/components/response.js -------------------------------------------------------------------------------- /core/jazz_slack-channel/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_slack-channel/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_slack-channel/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_slack-channel/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_slack-channel/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_slack-channel/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_slack-channel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/index.js -------------------------------------------------------------------------------- /core/jazz_slack-channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/package.json -------------------------------------------------------------------------------- /core/jazz_slack-channel/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_slack-channel/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-channel/test/test.js -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-event-handler/.jshintrc -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/README.md: -------------------------------------------------------------------------------- 1 | Event handler for notifying events through slack. -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/event.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-event-handler/index.js -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-event-handler/package.json -------------------------------------------------------------------------------- /core/jazz_slack-event-handler/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_slack-event-handler/test/test.js -------------------------------------------------------------------------------- /core/jazz_splunk-kinesis-log-streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_splunk-kinesis-log-streamer/README.md -------------------------------------------------------------------------------- /core/jazz_splunk-kinesis-log-streamer/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_splunk-kinesis-log-streamer/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_splunk-kinesis-log-streamer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_splunk-kinesis-log-streamer/index.js -------------------------------------------------------------------------------- /core/jazz_t-vault/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion":6 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_t-vault/README.md: -------------------------------------------------------------------------------- 1 | ## Specification for APIs to manage secrets using Jazz & T-Vault -------------------------------------------------------------------------------- /core/jazz_t-vault/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_t-vault/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/components/config.js -------------------------------------------------------------------------------- /core/jazz_t-vault/components/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/components/error-handler.js -------------------------------------------------------------------------------- /core/jazz_t-vault/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/components/logger.js -------------------------------------------------------------------------------- /core/jazz_t-vault/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/components/response.js -------------------------------------------------------------------------------- /core/jazz_t-vault/components/utils/vault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/components/utils/vault.js -------------------------------------------------------------------------------- /core/jazz_t-vault/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_t-vault/config/global-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/config/global-config.json -------------------------------------------------------------------------------- /core/jazz_t-vault/config/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/config/prod-config.json -------------------------------------------------------------------------------- /core/jazz_t-vault/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_t-vault/config/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/config/test-config.json -------------------------------------------------------------------------------- /core/jazz_t-vault/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_t-vault/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_t-vault/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/index.js -------------------------------------------------------------------------------- /core/jazz_t-vault/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/package.json -------------------------------------------------------------------------------- /core/jazz_t-vault/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_t-vault/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_t-vault/test/test.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/.jshintrc -------------------------------------------------------------------------------- /core/jazz_test-lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/README.md -------------------------------------------------------------------------------- /core/jazz_test-lambda/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_test-lambda/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/components/config.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/components/logger.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/components/response.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/components/utils.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/config/dev-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_test-lambda/config/prod-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_test-lambda/config/stg-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_test-lambda/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_test-lambda/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_test-lambda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/index.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/package.json -------------------------------------------------------------------------------- /core/jazz_test-lambda/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_test-lambda/test/test-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/test/test-http.js -------------------------------------------------------------------------------- /core/jazz_test-lambda/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_test-lambda/test/test.js -------------------------------------------------------------------------------- /core/jazz_token-authorizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_token-authorizer/README.md -------------------------------------------------------------------------------- /core/jazz_token-authorizer/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_token-authorizer/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_token-authorizer/components/config.js -------------------------------------------------------------------------------- /core/jazz_token-authorizer/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_token-authorizer/components/logger.js -------------------------------------------------------------------------------- /core/jazz_token-authorizer/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_token-authorizer/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_token-authorizer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_token-authorizer/index.js -------------------------------------------------------------------------------- /core/jazz_token-authorizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_token-authorizer/package.json -------------------------------------------------------------------------------- /core/jazz_ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/.editorconfig -------------------------------------------------------------------------------- /core/jazz_ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/.gitignore -------------------------------------------------------------------------------- /core/jazz_ui/Jenkinsfile_Platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/Jenkinsfile_Platform -------------------------------------------------------------------------------- /core/jazz_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/README.md -------------------------------------------------------------------------------- /core/jazz_ui/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/angular-cli.json -------------------------------------------------------------------------------- /core/jazz_ui/build.website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/build.website -------------------------------------------------------------------------------- /core/jazz_ui/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_ui/e2e/03-login/login.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/e2e/03-login/login.e2e-spec.ts -------------------------------------------------------------------------------- /core/jazz_ui/e2e/common/commontest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/e2e/common/commontest.ts -------------------------------------------------------------------------------- /core/jazz_ui/e2e/page-objects/login.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/e2e/page-objects/login.po.ts -------------------------------------------------------------------------------- /core/jazz_ui/e2e/page-objects/register.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/e2e/page-objects/register.po.ts -------------------------------------------------------------------------------- /core/jazz_ui/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /core/jazz_ui/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/e2e/tsconfig.json -------------------------------------------------------------------------------- /core/jazz_ui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/karma.conf.js -------------------------------------------------------------------------------- /core/jazz_ui/ng2-datepicker.textClipping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/ng2-datepicker.textClipping -------------------------------------------------------------------------------- /core/jazz_ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/package.json -------------------------------------------------------------------------------- /core/jazz_ui/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/protractor.conf.js -------------------------------------------------------------------------------- /core/jazz_ui/src/app/IShared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/IShared.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/SharedService.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/SharedService.service.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/adv-filter.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/adv-filter.directive.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/advanced-filter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/advanced-filter.service.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.component.html -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.component.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.component.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.config.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.module.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/app.route.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/core/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cronparser.service'; 2 | -------------------------------------------------------------------------------- /core/jazz_ui/src/app/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/core/services/index.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/docs/docs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/docs/docs.component.html -------------------------------------------------------------------------------- /core/jazz_ui/src/app/docs/docs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/docs/docs.component.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/app/docs/docs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/docs/docs.component.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/docs/docs.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/docs/docs.module.spec.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/docs/docs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/docs/docs.module.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/docs/docs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/docs/docs.route.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/oss/oss.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/oss/oss.module.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/app/primary-components/daterange-picker/ng2-datepicker/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_ui/src/app/primary-components/daterange-picker/ng2-slimscroll/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /core/jazz_ui/src/app/primary-components/daterange-picker/ng2-slimscroll/ng2-slimscroll.ts: -------------------------------------------------------------------------------- 1 | export * from './index'; 2 | 3 | -------------------------------------------------------------------------------- /core/jazz_ui/src/app/secondary-components/bar-graph/bar-graph.component.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_ui/src/app/secondary-components/jazz-toaster/jazz-toaster.component.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/jazz_ui/src/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/app/tsconfig.json -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/base.json -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/config.json -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/icon-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/icon-edit.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/icon-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/icon-edit.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/icon-edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/icon-edit@2x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/icon-edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/icon-edit@3x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/overlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/overlay.jpg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/overlay.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/robot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/robot.jpg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/robot_redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/robot_redux.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/erser/whitebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/erser/whitebg.jpg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/App_Services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/App_Services.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/BG4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/BG4@3x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/Blob_Storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/Blob_Storage.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/CDN_Profiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/CDN_Profiles.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/Event_Hubs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/Event_Hubs.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/Go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/Go.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/Java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/Java.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/angular.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/aws-logo-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/aws-logo-alt.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/aws-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/aws-logo.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/azure-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/azure-logo.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/env-mask-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/env-mask-01.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/env-mask-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/env-mask-02.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/env-mask-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/env-mask-03.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/env-mask-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/env-mask-04.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/error-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/error-404.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/favicon.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/html-bade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/html-bade.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icon-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icon-c.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icon-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icon-go.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icon-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icon-java.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icon-nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icon-nodejs.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icon-python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icon-python.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Apigee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Apigee.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Azure.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/C.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Go.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Group.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Java.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Jazz_S.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Jazz_S.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/Login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/Login.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/aws-s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/aws-s3.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/cosmos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/cosmos.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/logo.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/nodejs.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/python.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/icons/sqs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/icons/sqs.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/mask-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/mask-image.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/nda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/nda.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/new/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/new/angular.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/new/aws-s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/new/aws-s3.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/new/kinesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/new/kinesis.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/new/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/new/react.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/new/sqs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/new/sqs.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/nodejs.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/none-glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/none-glyph.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/python.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/react.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/refresh.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/server.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/server.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/images/x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 49@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 49@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 50@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 50@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 53@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 53@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 56@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 56@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 57@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 57@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 58@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 58@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 60@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 60@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Asset 61@6x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Asset 61@6x.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Bankrupt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Bankrupt.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Ci-CD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Ci-CD.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Code-Secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Code-Secure.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Focus-Code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Focus-Code.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Monitoring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Monitoring.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Serverless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Serverless.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Slack_Mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Slack_Mark.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/Vendor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/Vendor.svg -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/pattern-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/pattern-5.png -------------------------------------------------------------------------------- /core/jazz_ui/src/assets/landing/right_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/assets/landing/right_menu.png -------------------------------------------------------------------------------- /core/jazz_ui/src/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/bower.json -------------------------------------------------------------------------------- /core/jazz_ui/src/config/config.dev.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_ui/src/config/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_ui/src/config/config.oss.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_ui/src/config/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/config/configuration.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/config/templates/go-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/config/templates/go-yaml.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/config/templates/java-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/config/templates/java-yaml.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/config/toastmessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/config/toastmessages.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/eraser.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/eraser.jquery.json -------------------------------------------------------------------------------- /core/jazz_ui/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/favicon.ico -------------------------------------------------------------------------------- /core/jazz_ui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/index.html -------------------------------------------------------------------------------- /core/jazz_ui/src/main-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/main-styles.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/main.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/polyfills.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles.css -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/_bootstrap-compass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/_bootstrap-compass.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/_bootstrap-mincer.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/_bootstrap.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/_fonts.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/_page.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/_toaster.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_badges.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_close.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_code.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_forms.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_grid.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_labels.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_media.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_modals.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_navs.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_pager.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_panels.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_print.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_tables.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_theme.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_type.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/bootstrap/_wells.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/smacss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/smacss/_variables.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/styles/smacss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/styles/smacss/main.scss -------------------------------------------------------------------------------- /core/jazz_ui/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/test.ts -------------------------------------------------------------------------------- /core/jazz_ui/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/src/tsconfig.json -------------------------------------------------------------------------------- /core/jazz_ui/src/variables.scss: -------------------------------------------------------------------------------- 1 | $magenta: #ed008c; 2 | -------------------------------------------------------------------------------- /core/jazz_ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/tsconfig.json -------------------------------------------------------------------------------- /core/jazz_ui/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_ui/tslint.json -------------------------------------------------------------------------------- /core/jazz_usermanagement/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/.jshintrc -------------------------------------------------------------------------------- /core/jazz_usermanagement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/README.md -------------------------------------------------------------------------------- /core/jazz_usermanagement/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/jazz_usermanagement/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/components/config.js -------------------------------------------------------------------------------- /core/jazz_usermanagement/components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/components/logger.js -------------------------------------------------------------------------------- /core/jazz_usermanagement/components/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/components/response.js -------------------------------------------------------------------------------- /core/jazz_usermanagement/config/dev-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/config/dev-config.json -------------------------------------------------------------------------------- /core/jazz_usermanagement/config/stg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/config/stg-config.json -------------------------------------------------------------------------------- /core/jazz_usermanagement/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/deployment-env.yml -------------------------------------------------------------------------------- /core/jazz_usermanagement/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /core/jazz_usermanagement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/index.js -------------------------------------------------------------------------------- /core/jazz_usermanagement/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/package.json -------------------------------------------------------------------------------- /core/jazz_usermanagement/scm/scmFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/scm/scmFactory.js -------------------------------------------------------------------------------- /core/jazz_usermanagement/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/swagger/swagger.json -------------------------------------------------------------------------------- /core/jazz_usermanagement/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/core/jazz_usermanagement/test/test.js -------------------------------------------------------------------------------- /misc/jazz-deployed-in-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/jazz-deployed-in-aws.png -------------------------------------------------------------------------------- /misc/jazz_logical_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/jazz_logical_architecture.png -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/logo.png -------------------------------------------------------------------------------- /misc/wiki/images/APISpec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/APISpec.jpg -------------------------------------------------------------------------------- /misc/wiki/images/Build_Java_Api_Dev_v1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Build_Java_Api_Dev_v1.PNG -------------------------------------------------------------------------------- /misc/wiki/images/Build_Java_Api_v1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Build_Java_Api_v1.PNG -------------------------------------------------------------------------------- /misc/wiki/images/CreateService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/CreateService.png -------------------------------------------------------------------------------- /misc/wiki/images/JazzUI_AccessControl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/JazzUI_AccessControl.PNG -------------------------------------------------------------------------------- /misc/wiki/images/JazzUI_EditAccessControl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/JazzUI_EditAccessControl.PNG -------------------------------------------------------------------------------- /misc/wiki/images/JazzUI_Login.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/JazzUI_Login.JPG -------------------------------------------------------------------------------- /misc/wiki/images/JazzUI_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/JazzUI_Overview.png -------------------------------------------------------------------------------- /misc/wiki/images/Jenkins_Build_API.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Jenkins_Build_API.jpg -------------------------------------------------------------------------------- /misc/wiki/images/Jenkins_Build_API_Dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Jenkins_Build_API_Dev.jpg -------------------------------------------------------------------------------- /misc/wiki/images/Jenkins_Create_Service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Jenkins_Create_Service.jpg -------------------------------------------------------------------------------- /misc/wiki/images/Jenkins_Delete_Service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Jenkins_Delete_Service.jpg -------------------------------------------------------------------------------- /misc/wiki/images/Jenkins_at_installation_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Jenkins_at_installation_v1.png -------------------------------------------------------------------------------- /misc/wiki/images/Kibana_Index_Pattern_sc1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Kibana_Index_Pattern_sc1.JPG -------------------------------------------------------------------------------- /misc/wiki/images/Kibana_Index_Pattern_sc2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Kibana_Index_Pattern_sc2.JPG -------------------------------------------------------------------------------- /misc/wiki/images/Kibana_Index_Pattern_sc3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Kibana_Index_Pattern_sc3.JPG -------------------------------------------------------------------------------- /misc/wiki/images/Kibana_Index_Pattern_sc4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/Kibana_Index_Pattern_sc4.JPG -------------------------------------------------------------------------------- /misc/wiki/images/create-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/create-service.png -------------------------------------------------------------------------------- /misc/wiki/images/createAzure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/createAzure.png -------------------------------------------------------------------------------- /misc/wiki/images/delete-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/delete-service.png -------------------------------------------------------------------------------- /misc/wiki/images/environment-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/environment-details.png -------------------------------------------------------------------------------- /misc/wiki/images/home-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/home-login.png -------------------------------------------------------------------------------- /misc/wiki/images/jazz-ui-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/jazz-ui-assets.png -------------------------------------------------------------------------------- /misc/wiki/images/jazz-ui-env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/jazz-ui-env.jpg -------------------------------------------------------------------------------- /misc/wiki/images/jazz-ui-testFunction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/jazz-ui-testFunction.jpg -------------------------------------------------------------------------------- /misc/wiki/images/service-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/service-details.png -------------------------------------------------------------------------------- /misc/wiki/images/services-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/services-list.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-create-service-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-create-service-1.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-create-service-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-create-service-2.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-create-service-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-create-service-3.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-create-service-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-create-service-4.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-create-service-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-create-service-5.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-list-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-list-services.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-logs-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-logs-filter.png -------------------------------------------------------------------------------- /misc/wiki/images/sls-app-metrics-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/sls-app-metrics-filter.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/api-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/api-go.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/api-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/api-java.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/api-nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/api-nodejs.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/api-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/api-python.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/website-angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/website-angular.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/website-react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/website-react.png -------------------------------------------------------------------------------- /misc/wiki/images/templates/website-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/images/templates/website-static.png -------------------------------------------------------------------------------- /misc/wiki/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/misc/wiki/swagger/swagger.json -------------------------------------------------------------------------------- /templates/angular-website-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/angular-website-template/.gitignore -------------------------------------------------------------------------------- /templates/angular-website-template/app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/angular-website-template/app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /templates/angular-website-template/build.website: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/angular-website-template/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/angular-website-template/readme.md -------------------------------------------------------------------------------- /templates/api-template-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/.gitignore -------------------------------------------------------------------------------- /templates/api-template-go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/Gopkg.toml -------------------------------------------------------------------------------- /templates/api-template-go/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/README.MD -------------------------------------------------------------------------------- /templates/api-template-go/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/api-template-go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/config.go -------------------------------------------------------------------------------- /templates/api-template-go/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/deployment-env.yml -------------------------------------------------------------------------------- /templates/api-template-go/error-handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/error-handler.go -------------------------------------------------------------------------------- /templates/api-template-go/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/logger.go -------------------------------------------------------------------------------- /templates/api-template-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/main.go -------------------------------------------------------------------------------- /templates/api-template-go/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/main_test.go -------------------------------------------------------------------------------- /templates/api-template-go/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-go/swagger/swagger.json -------------------------------------------------------------------------------- /templates/api-template-java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-java/.gitignore -------------------------------------------------------------------------------- /templates/api-template-java/README.md: -------------------------------------------------------------------------------- 1 | ## Java API template -------------------------------------------------------------------------------- /templates/api-template-java/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/api-template-java/deployment-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-java/deployment-env.yml -------------------------------------------------------------------------------- /templates/api-template-java/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-java/event.json -------------------------------------------------------------------------------- /templates/api-template-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-java/pom.xml -------------------------------------------------------------------------------- /templates/api-template-java/sun_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-java/sun_checks.xml -------------------------------------------------------------------------------- /templates/api-template-nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-nodejs/.gitignore -------------------------------------------------------------------------------- /templates/api-template-nodejs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion":6 3 | } 4 | -------------------------------------------------------------------------------- /templates/api-template-nodejs/README.md: -------------------------------------------------------------------------------- 1 | ## Node API template -------------------------------------------------------------------------------- /templates/api-template-nodejs/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/api-template-nodejs/deployment-env.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/api-template-nodejs/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /templates/api-template-nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-nodejs/index.js -------------------------------------------------------------------------------- /templates/api-template-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-nodejs/package.json -------------------------------------------------------------------------------- /templates/api-template-nodejs/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-nodejs/test/test.js -------------------------------------------------------------------------------- /templates/api-template-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-python/.gitignore -------------------------------------------------------------------------------- /templates/api-template-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-python/README.md -------------------------------------------------------------------------------- /templates/api-template-python/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/api-template-python/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/api-template-python/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-python/event.json -------------------------------------------------------------------------------- /templates/api-template-python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/api-template-python/index.py -------------------------------------------------------------------------------- /templates/api-template-python/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest -------------------------------------------------------------------------------- /templates/api-template-python/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /templates/api-template-python/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-api-template-csharp/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-api-template-csharp/deployment-env.yml: -------------------------------------------------------------------------------- 1 | providerRuntime: c# 2 | -------------------------------------------------------------------------------- /templates/azure-api-template-csharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/azure-api-template-csharp/run.csx -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/azure-api-template-nodejs/.gitignore -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion":6 3 | } 4 | -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/README.md: -------------------------------------------------------------------------------- 1 | ## Node API template -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/build.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/deployment-env.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /templates/azure-api-template-nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/azure-api-template-nodejs/index.js -------------------------------------------------------------------------------- /templates/azure-function-template-csharp/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-function-template-csharp/deployment-env.yml: -------------------------------------------------------------------------------- 1 | providerRuntime: c# 2 | -------------------------------------------------------------------------------- /templates/azure-function-template-nodejs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion":6 3 | } 4 | -------------------------------------------------------------------------------- /templates/azure-function-template-nodejs/README.md: -------------------------------------------------------------------------------- 1 | ## Node Function template -------------------------------------------------------------------------------- /templates/azure-function-template-nodejs/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-function-template-nodejs/deployment-env.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/azure-function-template-nodejs/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /templates/function-template-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/.gitignore -------------------------------------------------------------------------------- /templates/function-template-go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/Gopkg.toml -------------------------------------------------------------------------------- /templates/function-template-go/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/README.MD -------------------------------------------------------------------------------- /templates/function-template-go/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/function-template-go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/config.go -------------------------------------------------------------------------------- /templates/function-template-go/error-handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/error-handler.go -------------------------------------------------------------------------------- /templates/function-template-go/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/logger.go -------------------------------------------------------------------------------- /templates/function-template-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/main.go -------------------------------------------------------------------------------- /templates/function-template-go/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-go/main_test.go -------------------------------------------------------------------------------- /templates/function-template-java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-java/.gitignore -------------------------------------------------------------------------------- /templates/function-template-java/README.md: -------------------------------------------------------------------------------- 1 | ## Java Function template -------------------------------------------------------------------------------- /templates/function-template-java/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/function-template-java/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-java/event.json -------------------------------------------------------------------------------- /templates/function-template-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-java/pom.xml -------------------------------------------------------------------------------- /templates/function-template-java/sun_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-java/sun_checks.xml -------------------------------------------------------------------------------- /templates/function-template-nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-nodejs/.gitignore -------------------------------------------------------------------------------- /templates/function-template-nodejs/README.md: -------------------------------------------------------------------------------- 1 | ## Node Function template -------------------------------------------------------------------------------- /templates/function-template-nodejs/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/function-template-nodejs/deployment-env.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/function-template-nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-nodejs/index.js -------------------------------------------------------------------------------- /templates/function-template-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-nodejs/package.json -------------------------------------------------------------------------------- /templates/function-template-nodejs/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-nodejs/test/test.js -------------------------------------------------------------------------------- /templates/function-template-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-python/.gitignore -------------------------------------------------------------------------------- /templates/function-template-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-python/README.md -------------------------------------------------------------------------------- /templates/function-template-python/build.function: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/function-template-python/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-python/event.json -------------------------------------------------------------------------------- /templates/function-template-python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/function-template-python/index.py -------------------------------------------------------------------------------- /templates/function-template-python/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest -------------------------------------------------------------------------------- /templates/function-template-python/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /templates/react-website-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/react-website-template/.gitignore -------------------------------------------------------------------------------- /templates/react-website-template/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/react-website-template/app/README.md -------------------------------------------------------------------------------- /templates/react-website-template/app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/react-website-template/app/src/App.js -------------------------------------------------------------------------------- /templates/react-website-template/build.website: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/react-website-template/deployment-env.yml: -------------------------------------------------------------------------------- 1 | create_cloudfront_url: false -------------------------------------------------------------------------------- /templates/react-website-template/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/react-website-template/readme.md -------------------------------------------------------------------------------- /templates/sls-app-template-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-go/.gitignore -------------------------------------------------------------------------------- /templates/sls-app-template-go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-go/Gopkg.toml -------------------------------------------------------------------------------- /templates/sls-app-template-go/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-go/README.MD -------------------------------------------------------------------------------- /templates/sls-app-template-go/build.slsapp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-java/README.md -------------------------------------------------------------------------------- /templates/sls-app-template-java/build.slsapp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-java/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-java/event.json -------------------------------------------------------------------------------- /templates/sls-app-template-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-java/pom.xml -------------------------------------------------------------------------------- /templates/sls-app-template-java/sun_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-java/sun_checks.xml -------------------------------------------------------------------------------- /templates/sls-app-template-nodejs/build.slsapp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-nodejs/deployment-env.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-nodejs/package.json -------------------------------------------------------------------------------- /templates/sls-app-template-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-python/README.md -------------------------------------------------------------------------------- /templates/sls-app-template-python/build.slsapp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/sls-app-template-python/event.json -------------------------------------------------------------------------------- /templates/sls-app-template-python/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/functions/function1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/functions/function1/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/functions/function2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/functions/function2/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/sls-app-template-python/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest -------------------------------------------------------------------------------- /templates/sls-app-template-python/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /templates/static-website-template/build.website: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/static-website-template/deployment-env.yml: -------------------------------------------------------------------------------- 1 | create_cloudfront_url: false -------------------------------------------------------------------------------- /templates/static-website-template/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmobile/jazz/HEAD/templates/static-website-template/readme.md --------------------------------------------------------------------------------