# io.k8s.api.core.v1.SecretReference

From **Kubernetes**.

SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

- Type: `object`

## Properties

### `name`

- Required: false
- Type: `string`

name is unique within a namespace to reference a secret resource.

### `namespace`

- Required: false
- Type: `string`

namespace defines the space within which the secret name must be unique.

## JSON Schema

```json
{"description":"SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace","properties":{"name":{"description":"name is unique within a namespace to reference a secret resource.","type":"string"},"namespace":{"description":"namespace defines the space within which the secret name must be unique.","type":"string"}},"type":"object","x-kubernetes-map-type":"atomic"}
```
