Options
All
  • Public
  • Public/Protected
  • All
Menu

@azure/app-configuration

Package version

Index

Enumerations

Classes

Interfaces

Type aliases

Variables

Functions

Object literals

Type aliases

AggregationData

Authenticator

Authenticator: function

Type declaration

    • (challenge: object): Promise<string>
    • Parameters

      • challenge: object

      Returns Promise<string>

AzureClientLogger

AzureClientLogger: Debugger

An AzureClientLogger is a function that can log to an appropriate severity level.

AzureLogLevel

AzureLogLevel: "verbose" | "info" | "warning" | "error"

The log levels supported by the logger. The log levels in order of most verbose to least verbose are:

  • verbose
  • info
  • warning
  • error

BodyInit

BodyInit: ArrayBuffer | ArrayBufferView | ReadableStream | string | URLSearchParams

CheckKeyValueResponse

CheckKeyValueResponse: CheckKeyValueHeaders & object

Contains response data for the checkKeyValue operation.

CheckKeyValuesResponse

CheckKeyValuesResponse: CheckKeyValuesHeaders & object

Contains response data for the checkKeyValues operation.

CheckKeysResponse

CheckKeysResponse: CheckKeysHeaders & object

Contains response data for the checkKeys operation.

CheckLabelsResponse

CheckLabelsResponse: CheckLabelsHeaders & object

Contains response data for the checkLabels operation.

CheckRevisionsResponse

CheckRevisionsResponse: CheckRevisionsHeaders & object

Contains response data for the checkRevisions operation.

Config

ConfigurationSettingResponse

ConfigurationSettingResponse<HeadersT>: ConfigurationSetting & HttpResponseField<HeadersT> & Pick<HeadersT, Exclude<keyof HeadersT, "eTag">>

Standard base response for getting, deleting or updating a configuration setting

Type parameters

  • HeadersT

DeleteKeyValueResponse

DeleteKeyValueResponse: KeyValue & DeleteKeyValueHeaders & object

Contains response data for the deleteKeyValue operation.

DeleteLockResponse

DeleteLockResponse: KeyValue & DeleteLockHeaders & object

Contains response data for the deleteLock operation.

ExporterConfig

ExporterConfig: BufferConfig

Func

Func<T>: function

Default type for functions

Type parameters

  • T

Type declaration

    • (...args: any[]): T
    • Parameters

      • Rest ...args: any[]

      Returns T

GetKeyValueResponse

GetKeyValueResponse: KeyValue & GetKeyValueHeaders & object

Contains response data for the getKeyValue operation.

GetKeyValuesResponse

GetKeyValuesResponse: KeyValueListResult & GetKeyValuesHeaders & object

Contains response data for the getKeyValues operation.

GetKeysResponse

GetKeysResponse: KeyListResult & GetKeysHeaders & object

Contains response data for the getKeys operation.

GetLabelsResponse

GetLabelsResponse: LabelListResult & GetLabelsHeaders & object

Contains response data for the getLabels operation.

GetRevisionsResponse

GetRevisionsResponse: KeyValueListResult & GetRevisionsHeaders & object

Contains response data for the getRevisions operation.

HeaderInit

HeaderInit: HeadersInit

HeadersInit

HeadersInit: Headers | string[][] | object

HrTime

HrTime: [number, number]

High resolution HrTime: [seconds: number, nanoseconds: number]

HttpMethods

HttpMethods: "GET" | "PUT" | "POST" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | "TRACE"

HttpRequestBody

HttpRequestBody: Blob | string | ArrayBuffer | ArrayBufferView | function

LogFunction

LogFunction: function

Copyright 2019, OpenCensus Authors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Type declaration

    • (message: any, ...args: any[]): void
    • Parameters

      • message: any
      • Rest ...args: any[]

      Returns void

Mapper

MapperType

ParameterPath

ParameterPath: string | string[] | object

PropertyParent

PropertyParent: object

Type declaration

  • [propertyName: string]: any

ProxyOptions

ProxyOptions: ProxySettings

PutKeyValueResponse

PutKeyValueResponse: KeyValue & PutKeyValueHeaders & object

Contains response data for the putKeyValue operation.

PutLockResponse

PutLockResponse: KeyValue & PutLockHeaders & object

Contains response data for the putLock operation.

RawHttpHeaders

RawHttpHeaders: object

A HttpHeaders collection represented as a simple JSON object.

Type declaration

  • [headerName: string]: string

RequestCache

RequestCache: "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload"

RequestContext

RequestContext: "audio" | "beacon" | "cspreport" | "download" | "embed" | "eventsource" | "favicon" | "fetch" | "font" | "form" | "frame" | "hyperlink" | "iframe" | "image" | "imageset" | "import" | "internal" | "location" | "manifest" | "object" | "ping" | "plugin" | "prefetch" | "script" | "serviceworker" | "sharedworker" | "style" | "subresource" | "track" | "video" | "worker" | "xmlhttprequest" | "xslt"

RequestCredentials

RequestCredentials: "omit" | "include" | "same-origin"

RequestInfo

RequestInfo: string | Request

RequestMode

RequestMode: "cors" | "no-cors" | "same-origin"

RequestPolicyFactory

RequestPolicyFactory: object

Creates a new RequestPolicy per-request that uses the provided nextPolicy.

Type declaration

RequestRedirect

RequestRedirect: "error" | "follow" | "manual"

ResponseType

ResponseType: "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"

TelemetryInfo

TelemetryInfo: object

Type declaration

TimeInput

TimeInput: HrTime | number | Date

Defines TimeInput.

hrtime, expoch milliseconds, performance.now() or Date

TraceState

TraceState: string

Tracestate carries system-specific configuration data, represented as a list of key-value pairs. TraceState allows multiple tracing systems to participate in the same trace.

get

  • get(key: string): string | undefined
  • Returns the value to which the specified key is mapped, or undefined if this map contains no mapping for the key.

    Parameters

    • key: string

      with which the specified value is to be associated.

    Returns string | undefined

    the value to which the specified key is mapped, or undefined if this map contains no mapping for the key.

serialize

  • serialize(): string
  • Serializes the TraceState to a list as defined below. The list is a series of list-members separated by commas ,, and a list-member is a key/value pair separated by an equals sign =. Spaces and horizontal tabs surrounding list-members are ignored. There can be a maximum of 32 list-members in a list.

    Returns string

    the serialized string.

set

  • set(key: string, value: string): void
  • Adds or updates the TraceState that has the given key if it is present. The new State will always be added in the front of the list of states.

    Parameters

    • key: string

      key of the TraceState entry.

    • value: string

      value of the TraceState entry.

    Returns void

unset

  • unset(key: string): void
  • Removes the TraceState Entry that has the given key if it is present.

    Parameters

    • key: string

      the key for the TraceState Entry to be removed.

    Returns void

TransferProgressEvent

TransferProgressEvent: object

Fired in response to upload or download progress.

Type declaration

Variables

Const AzureLogger

AzureLogger: AzureClientLogger

The AzureLogger provides a mechanism for overriding where logs are output to. By default, logs are sent to stderr. Override the log method to redirect logs to another location.

Const Constants

Constants: object

Type declaration

Const DefaultDeserializationOptions

DefaultDeserializationOptions: DeserializationOptions

Const DefaultKeepAliveOptions

DefaultKeepAliveOptions: KeepAliveOptions

Const DefaultRedirectOptions

DefaultRedirectOptions: RedirectOptions

Const DefaultRetryOptions

DefaultRetryOptions: RetryOptions

Const MapperType

MapperType: object

Type declaration

Const TokenRefreshBufferMs

TokenRefreshBufferMs: number

Defines the default token refresh buffer duration.

Const defaultJsonContentTypes

defaultJsonContentTypes: string[]

Const defaultXmlContentTypes

defaultXmlContentTypes: string[]

Const getDefaultUserAgentHeaderName

getDefaultUserAgentHeaderName: getDefaultUserAgentKey

Const isNode

isNode: boolean

A constant that indicates whether the environment is node.js or browser based.

Const load

load: config
deprecated

since v7.0.0 Use config instead.

Const packageVersion

packageVersion: "1.0.0-preview.7" = "1.0.0-preview.7"

Functions

__assign

  • __assign(t: any, ...sources: any[]): any
  • Parameters

    • t: any
    • Rest ...sources: any[]

    Returns any

__asyncDelegator

  • __asyncDelegator(o: any): any
  • Parameters

    • o: any

    Returns any

__asyncGenerator

  • __asyncGenerator(thisArg: any, _arguments: any, generator: Function): any
  • Parameters

    • thisArg: any
    • _arguments: any
    • generator: Function

    Returns any

__asyncValues

  • __asyncValues(o: any): any
  • Parameters

    • o: any

    Returns any

__await

  • __await(v: any): any
  • Parameters

    • v: any

    Returns any

__awaiter

  • __awaiter(thisArg: any, _arguments: any, P: Function, generator: Function): any
  • Parameters

    • thisArg: any
    • _arguments: any
    • P: Function
    • generator: Function

    Returns any

__decorate

  • __decorate(decorators: Function[], target: any, key?: string | symbol, desc?: any): any
  • Parameters

    • decorators: Function[]
    • target: any
    • Optional key: string | symbol
    • Optional desc: any

    Returns any

__exportStar

  • __exportStar(m: any, exports: any): void
  • Parameters

    • m: any
    • exports: any

    Returns void

__extends

  • __extends(d: Function, b: Function): void
  • Parameters

    • d: Function
    • b: Function

    Returns void

__generator

  • __generator(thisArg: any, body: Function): any
  • Parameters

    • thisArg: any
    • body: Function

    Returns any

__importDefault

  • __importDefault<T>(mod: T): T | object
  • Type parameters

    • T

    Parameters

    • mod: T

    Returns T | object

__importStar

  • __importStar<T>(mod: T): T
  • Type parameters

    • T

    Parameters

    • mod: T

    Returns T

__makeTemplateObject

  • __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray
  • Parameters

    • cooked: string[]
    • raw: string[]

    Returns TemplateStringsArray

__metadata

  • __metadata(metadataKey: any, metadataValue: any): Function
  • Parameters

    • metadataKey: any
    • metadataValue: any

    Returns Function

__param

  • __param(paramIndex: number, decorator: Function): Function
  • Parameters

    • paramIndex: number
    • decorator: Function

    Returns Function

__read

  • __read(o: any, n?: undefined | number): any[]
  • Parameters

    • o: any
    • Optional n: undefined | number

    Returns any[]

__rest

  • __rest(t: any, propertyNames: (string | symbol)[]): any
  • Parameters

    • t: any
    • propertyNames: (string | symbol)[]

    Returns any

__spread

  • __spread(...args: any[][]): any[]
  • Parameters

    • Rest ...args: any[][]

    Returns any[]

__spreadArrays

  • __spreadArrays(...args: any[][]): any[]
  • Parameters

    • Rest ...args: any[][]

    Returns any[]

__values

  • __values(o: any): any
  • Parameters

    • o: any

    Returns any

applyMixins

  • applyMixins(targetCtor: any, sourceCtors: any[]): void
  • Applies the properties on the prototype of sourceCtors to the prototype of targetCtor

    Parameters

    • targetCtor: any

      The target object on which the properties need to be applied.

    • sourceCtors: any[]

      An array of source objects from which the properties need to be taken.

    Returns void

bearerTokenAuthenticationPolicy

  • Creates a new BearerTokenAuthenticationPolicy factory.

    Parameters

    • credential: TokenCredential

      The TokenCredential implementation that can supply the bearer token.

    • scopes: string | string[]

      The scopes for which the bearer token applies.

    Returns RequestPolicyFactory

config

  • Loads .env file contents into process.env. Example: 'KEY=value' becomes { parsed: { KEY: 'value' } }

    Parameters

    Returns DotenvConfigOutput

    an object with a parsed key if successful or error key if an error occurred

createPipelineFromOptions

delay

  • delay<T>(t: number, value?: T): Promise<T>
  • A wrapper for setTimeout that resolves a promise after t milliseconds.

    Type parameters

    • T

    Parameters

    • t: number

      The number of milliseconds to be delayed.

    • Optional value: T

      The value to be resolved with after a timeout of t milliseconds.

    Returns Promise<T>

    Resolved promise

deserializationPolicy

  • Create a new serialization RequestPolicyCreator that will serialized HTTP request bodies as they pass through the HTTP pipeline.

    Parameters

    Returns RequestPolicyFactory

deserializeResponseBody

  • Parameters

    Returns Promise<HttpOperationResponse>

encodeUri

  • encodeUri(uri: string): string
  • Encodes an URI.

    Parameters

    • uri: string

      The URI to be encoded.

    Returns string

    The encoded URI.

executePromisesSequentially

  • executePromisesSequentially(promiseFactories: Array<any>, kickstart: any): Promise<any>
  • Executes an array of promises sequentially. Inspiration of this method is here: https://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html. An awesome blog on promises!

    Parameters

    • promiseFactories: Array<any>

      An array of promise factories(A function that return a promise)

    • kickstart: any

    Returns Promise<any>

    A chain of resolved or rejected promises

exponentialRetryPolicy

  • exponentialRetryPolicy(retryCount?: undefined | number, retryInterval?: undefined | number, maxRetryInterval?: undefined | number): RequestPolicyFactory
  • Parameters

    • Optional retryCount: undefined | number
    • Optional retryInterval: undefined | number
    • Optional maxRetryInterval: undefined | number

    Returns RequestPolicyFactory

extractSpanContextFromTraceParentHeader

  • extractSpanContextFromTraceParentHeader(traceParentHeader: string): SpanContext | undefined
  • Generates a SpanContext given a traceparent header value.

    Parameters

    • traceParentHeader: string

    Returns SpanContext | undefined

    The SpanContext generated from the traceparent value.

flattenResponse

generateClientRequestIdPolicy

  • Parameters

    • Optional requestIdHeaderName: undefined | string

    Returns RequestPolicyFactory

generateUuid

  • generateUuid(): string
  • Generated UUID

    Returns string

    RFC4122 v4 UUID.

getDefaultProxySettings

  • getDefaultProxySettings(proxyUrl?: undefined | string): ProxySettings | undefined
  • Parameters

    • Optional proxyUrl: undefined | string

    Returns ProxySettings | undefined

getDefaultUserAgentKey

  • getDefaultUserAgentKey(): string
  • Returns string

getDefaultUserAgentValue

  • getDefaultUserAgentValue(): string
  • Returns string

getLogLevel

  • getLogLevel(): "verbose" | "info" | "warning" | "error" | undefined
  • Retrieves the currently specified log level.

    Returns "verbose" | "info" | "warning" | "error" | undefined

getOperationArgumentValueFromParameterPath

getPathStringFromParameter

  • Get the path to this parameter's value as a dotted string (a.b.c).

    Parameters

    Returns string

    The path to this parameter's value as a dotted string.

getPathStringFromParameterPath

  • Parameters

    Returns string

getPlatformSpecificData

  • Returns TelemetryInfo[]

getPropertyParent

  • Get the property parent for the property at the provided path when starting with the provided parent object.

    Parameters

    Returns PropertyParent

getTraceParentHeader

  • getTraceParentHeader(spanContext: SpanContext): string | undefined
  • Generates a traceparent value given a span context.

    Parameters

    • spanContext: SpanContext

      Contains context for a specific span.

    Returns string | undefined

    The spanContext represented as a traceparent value.

getTracer

  • getTracer(): Tracer
  • Retrieves the active tracer, or returns a no-op implementation if one is not set.

    Returns Tracer

isAlphaNumericCharacter

  • isAlphaNumericCharacter(character: string): boolean
  • Get whether or not the provided character (single character string) is an alphanumeric (letter or digit) character.

    Parameters

    • character: string

    Returns boolean

isDuration

  • isDuration(value: string): boolean
  • Indicates whether the given string is in ISO 8601 format.

    Parameters

    • value: string

      The value to be validated for ISO 8601 duration format.

    Returns boolean

    true if valid, false otherwise.

isPrimitiveType

  • isPrimitiveType(value: any): boolean
  • Determines whether the given entity is a basic/primitive type (string, number, boolean, null, undefined).

    Parameters

    • value: any

      Any entity

    Returns boolean

    • true is it is primitive type, false otherwise.

isStreamOperation

  • Parameters

    Returns boolean

isTokenCredential

  • isTokenCredential(credential: any): boolean
  • Tests an object to determine whether it implements TokenCredential.

    Parameters

    • credential: any

      The assumed TokenCredential to be tested.

    Returns boolean

isValidUuid

  • isValidUuid(uuid: string): boolean
  • Validates the given uuid as a string

    Parameters

    • uuid: string

      The uuid as a string that needs to be validated

    Returns boolean

    True if the uuid is valid; false otherwise.

keepAlivePolicy

  • Parameters

    Returns object

logPolicy

makeConfigurationSettingEmpty

  • makeConfigurationSettingEmpty(configurationSetting: Partial<Record<Exclude<keyof ConfigurationSetting, "key">, any>>): void
  • Makes a ConfigurationSetting-based response throw for all of the data members. Used primarily to prevent possible errors by the user in accessing a model that is uninitialized. This can happen in cases like HTTP status code 204 or 304, which return an empty response body.

    Parameters

    • configurationSetting: Partial<Record<Exclude<keyof ConfigurationSetting, "key">, any>>

      The configuration setting to alter

    Returns void

operationOptionsToRequestOptionsBase

  • Converts an OperationOptions to a RequestOptionsBase

    Type parameters

    • T: OperationOptions

    Parameters

    • opts: T

      OperationOptions object to convert to RequestOptionsBase

    Returns RequestOptionsBase

parse

  • Parses a string or buffer in the .env file format into an object.

    Parameters

    • src: string | Buffer

      contents to be parsed

    • Optional options: DotenvParseOptions

      additional options

    Returns DotenvParseOutput

    an object with keys and values based on src

parseHeaders

  • Parameters

    • headers: Headers

    Returns HttpHeaders

parseXML

  • parseXML(str: string, opts?: undefined | object): Promise<any>
  • Converts given XML string into JSON

    Parameters

    • str: string

      String containing the XML content to be parsed into JSON

    • Optional opts: undefined | object

      Options that govern the parsing of given xml string includeRoot indicates whether the root element is to be included or not in the output

    Returns Promise<any>

prepareXMLRootList

  • prepareXMLRootList(obj: any, elementName: string): object
  • Parameters

    • obj: any
    • elementName: string

    Returns object

    • [x: string]: any

promiseToCallback

  • promiseToCallback(promise: Promise<any>): Function
  • Converts a Promise to a callback.

    deprecated

    generated code should instead depend on responseToBody

    Parameters

    • promise: Promise<any>

      The Promise to be converted to a callback

    Returns Function

    A function that takes the callback (cb: Function): void

promiseToServiceCallback

  • Converts a Promise to a service callback.

    Type parameters

    • T

    Parameters

    • promise: Promise<HttpOperationResponse>

      The Promise of HttpOperationResponse to be converted to a service callback

    Returns Function

    A function that takes the service callback (cb: ServiceCallback): void

proxyPolicy

redirectPolicy

  • Parameters

    • Optional maximumRetries: undefined | number

    Returns RequestPolicyFactory

replaceAll

  • replaceAll(value: string | undefined, searchValue: string, replaceValue: string): string | undefined
  • Replace all of the instances of searchValue in value with the provided replaceValue.

    Parameters

    • value: string | undefined

      The value to search and replace in.

    • searchValue: string

      The value to search for in the value argument.

    • replaceValue: string

      The value to replace searchValue with in the value argument.

    Returns string | undefined

    The value where each instance of searchValue was replaced with replacedValue.

serializeObject

  • serializeObject(toSerialize: any): any
  • Parameters

    • toSerialize: any

    Returns any

serializeRequestBody

setLogLevel

  • Immediately enables logging at the specified log level.

    Parameters

    • Optional level: AzureLogLevel

      The log level to enable for logging. Options from most verbose to least verbose are:

      • verbose
      • info
      • warning
      • error

    Returns void

setTracer

  • setTracer(tracer: Tracer): void
  • Sets the global tracer, enabling tracing for the Azure SDK.

    Parameters

    • tracer: Tracer

      An OpenTelemetry Tracer instance.

    Returns void

signingPolicy

stringifyXML

  • stringifyXML(obj: any, opts?: undefined | object): string
  • Converts given JSON object to XML string

    Parameters

    • obj: any

      JSON object to be converted into XML string

    • Optional opts: undefined | object

      Options that govern the parsing of given JSON object rootName indicates the name of the root element in the resulting XML

    Returns string

stripRequest

  • Returns a stripped version of the Http Request that does not contain the Authorization header.

    Parameters

    Returns WebResource

    The stripped version of Http Request.

stripResponse

  • Returns a stripped version of the Http Response which only contains body, headers and the status.

    Parameters

    Returns any

    The stripped version of Http Response.

systemErrorRetryPolicy

  • systemErrorRetryPolicy(retryCount?: undefined | number, retryInterval?: undefined | number, minRetryInterval?: undefined | number, maxRetryInterval?: undefined | number): RequestPolicyFactory
  • Parameters

    • Optional retryCount: undefined | number
    • Optional retryInterval: undefined | number
    • Optional minRetryInterval: undefined | number
    • Optional maxRetryInterval: undefined | number

    Returns RequestPolicyFactory

throttlingRetryPolicy

  • Returns RequestPolicyFactory

tracingPolicy

  • Returns RequestPolicyFactory

urlIsHTTPS

  • urlIsHTTPS(urlToCheck: object): boolean
  • Checks if a parsed URL is HTTPS

    Parameters

    • urlToCheck: object

      The url to check

    Returns boolean

    True if the URL is HTTPS; false otherwise.

userAgentPolicy

  • Parameters

    Returns RequestPolicyFactory

Object literals

Const CheckKeyValueHeaders

CheckKeyValueHeaders: object

serializedName

serializedName: string = "checkkeyvalue-headers"

type

type: object

className

className: string = "CheckKeyValueHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

eTag

eTag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

lastModified

lastModified: object

serializedName

serializedName: string = "last-modified"

type

type: object

name

name: "String" = "String"

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const CheckKeyValuesHeaders

CheckKeyValuesHeaders: object

serializedName

serializedName: string = "checkkeyvalues-headers"

type

type: object

className

className: string = "CheckKeyValuesHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const CheckKeysHeaders

CheckKeysHeaders: object

serializedName

serializedName: string = "checkkeys-headers"

type

type: object

className

className: string = "CheckKeysHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const CheckLabelsHeaders

CheckLabelsHeaders: object

serializedName

serializedName: string = "checklabels-headers"

type

type: object

className

className: string = "CheckLabelsHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const CheckRevisionsHeaders

CheckRevisionsHeaders: object

serializedName

serializedName: string = "checkrevisions-headers"

type

type: object

className

className: string = "CheckRevisionsHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const DeleteKeyValueHeaders

DeleteKeyValueHeaders: object

serializedName

serializedName: string = "deletekeyvalue-headers"

type

type: object

className

className: string = "DeleteKeyValueHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

eTag

eTag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const DeleteLockHeaders

DeleteLockHeaders: object

serializedName

serializedName: string = "deletelock-headers"

type

type: object

className

className: string = "DeleteLockHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

eTag

eTag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const ErrorModel

ErrorModel: object

serializedName

serializedName: string = "Error"

type

type: object

className

className: string = "ErrorModel"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

detail

detail: object

serializedName

serializedName: string = "detail"

type

type: object

name

name: "String" = "String"

name

name: object

serializedName

serializedName: string = "name"

type

type: object

name

name: "String" = "String"

status

status: object

serializedName

serializedName: string = "status"

type

type: object

name

name: "Number" = "Number"

title

title: object

serializedName

serializedName: string = "title"

type

type: object

name

name: "String" = "String"

type

type: object

serializedName

serializedName: string = "type"

type

type: object

name

name: "String" = "String"

Const GetKeyValueHeaders

GetKeyValueHeaders: object

serializedName

serializedName: string = "getkeyvalue-headers"

type

type: object

className

className: string = "GetKeyValueHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

eTag

eTag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

lastModifiedHeader

lastModifiedHeader: object

serializedName

serializedName: string = "last-modified"

type

type: object

name

name: "String" = "String"

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const GetKeyValuesHeaders

GetKeyValuesHeaders: object

serializedName

serializedName: string = "getkeyvalues-headers"

type

type: object

className

className: string = "GetKeyValuesHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const GetKeysHeaders

GetKeysHeaders: object

serializedName

serializedName: string = "getkeys-headers"

type

type: object

className

className: string = "GetKeysHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const GetLabelsHeaders

GetLabelsHeaders: object

serializedName

serializedName: string = "getlabels-headers"

type

type: object

className

className: string = "GetLabelsHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const GetRevisionsHeaders

GetRevisionsHeaders: object

serializedName

serializedName: string = "getrevisions-headers"

type

type: object

className

className: string = "GetRevisionsHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const Key

Key: object

serializedName

serializedName: string = "Key"

type

type: object

className

className: string = "Key"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

name

name: object

readOnly

readOnly: true = true

serializedName

serializedName: string = "name"

type

type: object

name

name: "String" = "String"

Const KeyListResult

KeyListResult: object

serializedName

serializedName: string = "KeyListResult"

type

type: object

className

className: string = "KeyListResult"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

items

items: object

serializedName

serializedName: string = "items"

type

type: object

name

name: "Sequence" = "Sequence"

element

element: object

type

type: object

className

className: string = "Key"

name

name: "Composite" = "Composite"

nextLink

nextLink: object

serializedName

serializedName: string = "@nextLink"

type

type: object

name

name: "String" = "String"

Const KeyValue

KeyValue: object

serializedName

serializedName: string = "KeyValue"

type

type: object

className

className: string = "KeyValue"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

contentType

contentType: object

serializedName

serializedName: string = "content_type"

type

type: object

name

name: "String" = "String"

etag

etag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

key

key: object

required

required: true = true

serializedName

serializedName: string = "key"

type

type: object

name

name: "String" = "String"

label

label: object

serializedName

serializedName: string = "label"

type

type: object

name

name: "String" = "String"

lastModified

lastModified: object

serializedName

serializedName: string = "last_modified"

type

type: object

name

name: "DateTime" = "DateTime"

locked

locked: object

serializedName

serializedName: string = "locked"

type

type: object

name

name: "Boolean" = "Boolean"

tags

tags: object

serializedName

serializedName: string = "tags"

type

type: object

name

name: "Dictionary" = "Dictionary"

value

value: object

type

type: object

name

name: "String" = "String"

value

value: object

serializedName

serializedName: string = "value"

type

type: object

name

name: "String" = "String"

Const KeyValueListResult

KeyValueListResult: object

serializedName

serializedName: string = "KeyValueListResult"

type

type: object

className

className: string = "KeyValueListResult"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

items

items: object

serializedName

serializedName: string = "items"

type

type: object

name

name: "Sequence" = "Sequence"

element

element: object

type

type: object

className

className: string = "KeyValue"

name

name: "Composite" = "Composite"

nextLink

nextLink: object

serializedName

serializedName: string = "@nextLink"

type

type: object

name

name: "String" = "String"

Const Label

Label: object

serializedName

serializedName: string = "Label"

type

type: object

className

className: string = "Label"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

name

name: object

readOnly

readOnly: true = true

serializedName

serializedName: string = "name"

type

type: object

name

name: "String" = "String"

Const LabelListResult

LabelListResult: object

serializedName

serializedName: string = "LabelListResult"

type

type: object

className

className: string = "LabelListResult"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

items

items: object

serializedName

serializedName: string = "items"

type

type: object

name

name: "Sequence" = "Sequence"

element

element: object

type

type: object

className

className: string = "Label"

name

name: "Composite" = "Composite"

nextLink

nextLink: object

serializedName

serializedName: string = "@nextLink"

type

type: object

name

name: "String" = "String"

Const PutKeyValueHeaders

PutKeyValueHeaders: object

serializedName

serializedName: string = "putkeyvalue-headers"

type

type: object

className

className: string = "PutKeyValueHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

eTag

eTag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const PutLockHeaders

PutLockHeaders: object

serializedName

serializedName: string = "putlock-headers"

type

type: object

className

className: string = "PutLockHeaders"

name

name: "Composite" = "Composite"

modelProperties

modelProperties: object

eTag

eTag: object

serializedName

serializedName: string = "etag"

type

type: object

name

name: "String" = "String"

syncToken

syncToken: object

serializedName

serializedName: string = "sync-token"

type

type: object

name

name: "String" = "String"

Const acceptDatetime

acceptDatetime: object

parameterPath

parameterPath: string[] = ["options","acceptDatetime"]

mapper

mapper: object

serializedName

serializedName: string = "Accept-Datetime"

type

type: object

name

name: "String" = "String"

Const after

after: object

parameterPath

parameterPath: string[] = ["options","after"]

mapper

mapper: object

serializedName

serializedName: string = "After"

type

type: object

name

name: "String" = "String"

Const apiVersion

apiVersion: object

parameterPath

parameterPath: string = "apiVersion"

mapper

mapper: object

required

required: true = true

serializedName

serializedName: string = "api-version"

type

type: object

name

name: "String" = "String"

Const ifMatch

ifMatch: object

parameterPath

parameterPath: string[] = ["options","ifMatch"]

mapper

mapper: object

serializedName

serializedName: string = "If-Match"

type

type: object

name

name: "String" = "String"

Const ifNoneMatch

ifNoneMatch: object

parameterPath

parameterPath: string[] = ["options","ifNoneMatch"]

mapper

mapper: object

serializedName

serializedName: string = "If-None-Match"

type

type: object

name

name: "String" = "String"

Const key0

key0: object

parameterPath

parameterPath: string[] = ["options","key"]

mapper

mapper: object

serializedName

serializedName: string = "key"

type

type: object

name

name: "String" = "String"

Const key1

key1: object

parameterPath

parameterPath: string = "key"

mapper

mapper: object

required

required: true = true

serializedName

serializedName: string = "key"

type

type: object

name

name: "String" = "String"

Const label

label: object

parameterPath

parameterPath: string[] = ["options","label"]

mapper

mapper: object

serializedName

serializedName: string = "label"

type

type: object

name

name: "String" = "String"

Const name

name: object

parameterPath

parameterPath: string[] = ["options","name"]

mapper

mapper: object

serializedName

serializedName: string = "name"

type

type: object

name

name: "String" = "String"

Const select

select: object

collectionFormat

collectionFormat: Csv = coreHttp.QueryCollectionFormat.Csv

parameterPath

parameterPath: string[] = ["options","select"]

mapper

mapper: object

serializedName

serializedName: string = "$Select"

type

type: object

name

name: "Sequence" = "Sequence"

element

element: object

type

type: object

name

name: "String" = "String"

Const syncToken

syncToken: object

parameterPath

parameterPath: string = "syncToken"

mapper

mapper: object

serializedName

serializedName: string = "Sync-Token"

type

type: object

name

name: "String" = "String"

Generated using TypeDoc