UNPKG

@itentialopensource/adapter-terraform_enterprise

Version:

This adapter integrates with system described as: terraform Enterprise.

79 lines 2.07 kB
{ "$id": "schema.json", "type": "object", "schema": "http://json-schema.org/draft-07/schema#", "translate": true, "dynamicfields": true, "properties": { "ph_request_type": { "type": "string", "description": "type of request (internal to adapter)", "default": "createPolicy", "enum": [ "createPolicy", "listPolicies", "showPolicy", "updatePolicy", "deletePolicy", "uploadPolicy" ], "external_name": "ph_request_type" }, "organizationName": { "type": "string", "description": "The organization to list policies for.", "parse": false, "encode": false, "encrypt": { "type": "AES", "key": "" }, "external_name": "organization_name" }, "pageNumber": { "type": "string", "description": "Optional. If omitted, the endpoint will return the first page.", "parse": false, "encode": false, "encrypt": { "type": "AES", "key": "" }, "external_name": "page[number]" }, "pageSize": { "type": "string", "description": "Optional. If omitted, the endpoint will return 20 policies per page.", "parse": false, "encode": false, "encrypt": { "type": "AES", "key": "" }, "external_name": "page[size]" }, "searchName": { "type": "string", "description": "Optional. Allows searching the organization's policies by name.", "parse": false, "encode": false, "encrypt": { "type": "AES", "key": "" }, "external_name": "search[name]" }, "policyId": { "type": "string", "description": "The ID of the policy to upload code to. Use the "List Policies" endpoint (or the response to a "Create Policy" request) to find IDs.", "parse": false, "encode": false, "encrypt": { "type": "AES", "key": "" }, "external_name": "policy_id" } }, "definitions": {} }