Unspecific representation of a service as read from VCAP_SERVICES (for Cloud Foundry) or mounted secrets (for K8S).

interface Service {
    credentials: ServiceCredentials;
    label: string;
    name: string;
    tags: string[];
    [other: string]: any;
}

Indexable

[other: string]: any

Properties

credentials: ServiceCredentials

The service credentials.

label: string

The label of the service.

name: string

The name of the service.

tags: string[]

The tags of the service.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.