UNPKG

etquia

Version:

Dummy package for the grpc-node repository

41 lines (37 loc) 1.26 kB
// Original file: deps/envoy-api/envoy/api/v2/core/base.proto import type { HttpUri as _envoy_api_v2_core_HttpUri, HttpUri__Output as _envoy_api_v2_core_HttpUri__Output } from '../../../../envoy/api/v2/core/HttpUri'; import type { RetryPolicy as _envoy_api_v2_core_RetryPolicy, RetryPolicy__Output as _envoy_api_v2_core_RetryPolicy__Output } from '../../../../envoy/api/v2/core/RetryPolicy'; /** * The message specifies how to fetch data from remote and how to verify it. */ export interface RemoteDataSource { /** * The HTTP URI to fetch the remote data. */ 'http_uri'?: (_envoy_api_v2_core_HttpUri | null); /** * SHA256 string for verifying data. */ 'sha256'?: (string); /** * Retry policy for fetching remote data. */ 'retry_policy'?: (_envoy_api_v2_core_RetryPolicy | null); } /** * The message specifies how to fetch data from remote and how to verify it. */ export interface RemoteDataSource__Output { /** * The HTTP URI to fetch the remote data. */ 'http_uri': (_envoy_api_v2_core_HttpUri__Output | null); /** * SHA256 string for verifying data. */ 'sha256': (string); /** * Retry policy for fetching remote data. */ 'retry_policy': (_envoy_api_v2_core_RetryPolicy__Output | null); }