tapis-pods 0.3.1

The Pods Service is a web service and distributed computing platform providing pods-as-a-service (PaaS). The service implements a message broker and processor model that requests pods, alongside a health module to poll for pod data, including logs, status, and health. The primary use of this service is to have quick to deploy long-lived services based on Docker images that are exposed via HTTP or TCP endpoints listed by the API. **The Pods service provides functionality for two types of pod solutions:** * **Templated Pods** for run-as-is popular images. Neo4J is one example, the template manages TCP ports, user creation, and permissions. * **Custom Pods** for arbitrary docker images with less functionality. In this case we will expose port 5000 and do nothing else. The live-docs act as the most up-to-date API reference. Visit the [documentation for more information](https://tapis.readthedocs.io/en/latest/technical/pods.html).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# NewSecret

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**secret_id** | **String** | Name of the secret. | 
**scope** | Option<**String**> | Scope of secret: 'user' or 'pod' | [optional][default to user]
**pod_id** | Option<**String**> |  | [optional]
**description** | Option<**String**> | Description of this secret. | [optional][default to ]
**readable** | Option<**bool**> | If True, secret value can be retrieved via GET /secrets/{id}/value. Pod injection always works regardless of this setting. | [optional][default to true]
**writable** | Option<**bool**> | If True, secret value can be updated via PUT or POST recreation. If False, secret is write-once. | [optional][default to true]
**secret_value** | **String** | The actual secret value to store. | 

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)