type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigGoogle class. * @constructor * Google notification configuration. * * @member {string} googleApiKey GCM API key. */ export interface NotificationConfigGoogle extends NotificationConfig { googleApiKey: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigWindows class. * @constructor * WNS notification configuration. * * @member {string} packageSid Package security identifier (SID). * @member {string} secretKey Secret key. */ export interface NotificationConfigWindows extends NotificationConfig ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigResult class. * @constructor * Generic notification configuration result. * * @member {string} type Polymorphic Discriminator */ export interface NotificationConfigResult { type: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigAppleResult class. * @constructor * Apple notification certificate configuration result. * * @member {string} endpointType Possible values include: 'production', * 'sandbox' * @member {date} certExpiration Certificate expiration date. * @member...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigAppleTokenResult class. * @constructor * Apple notification auth token configuration result. * * @member {string} keyId A 10-character key identifier (kid). * @member {string} id Application ID. * @member {string} prefix Application Prefix. * @...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigGoogleResult class. * @constructor * Google notification configuration result. * * @member {string} googleApiKey GCM API key. */ export interface NotificationConfigGoogleResult extends NotificationConfigResult { googleApiKey: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigWindowsResult class. * @constructor * WNS notification configuration result. * * @member {string} packageSid Package security identifier (SID). * @member {string} [secretKey] windows push configuration secret key. */ export interface Notificatio...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfiguration class. * @constructor * Export configuration * * @member {string} [resourceName] The resource name on azure * @member {string} [resourceGroup] The resource group name on azure * @member {string} type Polymorphic Discriminator */ export interf...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfigurationBlobStorageConnectionString class. * @constructor * Configuration for export to Blob Storage with customer provided connection * string * * @member {string} connectionString Connection string for blob storage account */ export interface ExportC...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfigurationAppInsightsKey class. * @constructor * Configuration for export to Application Insights resource with customer * provided intrumentation key * * @member {string} instrumentationKey Instrumentation key for Application * Insights resource */ exp...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfigurationBlobStorageLinkedSubscription class. * @constructor * Configuration for export to Blob Storage with customer linked subscription. * * @member {string} subscriptionId Id of customer subscription linked in App * Center */ export interface ExportC...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfigurationAppInsightsLinkedSubscription class. * @constructor * Configuration for export to Application Insights resource with customer * linked subscription. * * @member {string} subscriptionId Id of customer subscription linked in App * Center */ expo...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfigurationResult class. * @constructor * Export configuration result * * @member {string} id Export configuration id * @member {string} exportType Target resource type of export configuration. * Possible values include: 'BlobStorage', 'AppInsights' * @m...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ExportConfigurationListResult class. * @constructor * List of export configurations * * @member {array} values * @member {number} [total] the total count of exports * @member {string} [nextLink] */ export interface ExportConfigurationListResult { values: Expor...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceConfigurationImage class. * @constructor * @member {string} [full] * @member {string} [thumb] */ export interface DeviceConfigurationImage { full?: string; thumb?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceDimensions class. * @constructor * Physical device dimensions * * @member {object} [depth] * @member {object} [height] * @member {object} [width] */ export interface DeviceDimensions { depth?: any; height?: any; width?: any; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceResolution class. * @constructor * Device screen resolution * * @member {string} [height] * @member {string} [width] * @member {string} [ppi] */ export interface DeviceResolution { height?: string; width?: string; ppi?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceScreenSize class. * @constructor * Physical device screen dimensions * * @member {string} [cm] * @member {string} [inProperty] */ export interface DeviceScreenSize { cm?: string; inProperty?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceCpu class. * @constructor * CPU data for device * * @member {string} [frequency] * @member {string} [core] */ export interface DeviceCpu { frequency?: string; core?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceMemory class. * @constructor * Memory data for device * * @member {string} [formattedSize] */ export interface DeviceMemory { formattedSize?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceFrameDefinition class. * @constructor * @member {number} [width] * @member {number} [height] * @member {string} [frameUrl] * @member {array} [screen] */ export interface DeviceFrameDefinition { width?: number; height?: number; frameUrl?: string; scr...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceFrame class. * @constructor * @member {object} [grid] * @member {number} [grid.width] * @member {number} [grid.height] * @member {string} [grid.frameUrl] * @member {array} [grid.screen] * @member {object} [full] * @member {number} [full.width] * @member ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceModel class. * @constructor * @member {string} [name] * @member {string} [manufacturer] * @member {string} [model] * @member {string} [platform] * @member {object} [dimensions] * @member {object} [dimensions.depth] * @member {object} [dimensions.height] ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceConfiguration class. * @constructor * @member {string} [name] The name of the device model and OS version * @member {uuid} [id] The unique id of the device configuration * @member {number} [tier] The tier * @member {object} [image] * @member {string} [image...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSetConfigurationImage class. * @constructor * @member {string} [thumb] */ export interface DeviceSetConfigurationImage { thumb?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSetModel class. * @constructor * @member {string} [name] * @member {string} [manufacturer] * @member {string} [releaseDate] * @member {string} [formFactor] */ export interface DeviceSetModel { name?: string; manufacturer?: string; releaseDate?: string...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSetConfiguration class. * @constructor * @member {uuid} [id] The unique id of the device configuration * @member {object} [image] * @member {string} [image.thumb] * @member {object} [model] * @member {string} [model.name] * @member {string} [model.manufact...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestRunStatistics class. * @constructor * @summary Test Run Statistics * * Summary single test run on Xamarin Test Cloud * * @member {number} [devices] Number of devices running the test * @member {number} [devicesFinished] Number of finished devices * @member ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestRun class. * @constructor * @summary Test Run * * Summary single test run on Xamarin Test Cloud * * @member {uuid} [id] The unique id of the test upload * @member {string} [date] The date and time the test was uploaded * @member {string} [appVersion] The co...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestRunSummary class. * @constructor * @summary Test Run Summary * * Most important information about a test run. * * @member {string} [date] Date of the test run. * @member {string} [statusDescription] Human-readable status of the test run. * @member {number} ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestSeries class. * @constructor * @summary Test Series * * Summary of a single test series * * @member {string} slug Unique, human-readable identifier of the test series * @member {string} name Name of the test series * @member {string} [mostRecentActivity] Da...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestSeriesName class. * @constructor * @summary Name of the test series * * @member {string} name Name of the new test series */ export interface TestSeriesName { name: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceList class. * @constructor * @summary Device List * * A list of device IDs * * @member {array} devices */ export interface DeviceList { devices: string[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSelection class. * @constructor * @summary Device Selection * * Short ID for a list of device IDs * * @member {string} shortId Identifier of the device selection */ export interface DeviceSelection { shortId: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSetUpdate class. * @constructor * @summary Device Set update information * * The name of the device set and the list of device IDs * * @member {array} devices List of device IDs * @member {string} name The name of the device set */ export interface Device...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSetOwner class. * @constructor * @summary Device Set Owner * * The owner of a device set * * @member {string} type Type of account * @member {string} id Account ID * @member {string} [displayName] Display name of the account * @member {string} name Name ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeviceSet class. * @constructor * @summary Device Set * * The name and devices of the device set * * @member {string} id Identifier of the device set * @member {number} [manufacturerCount] The number of manufacturers in the * device set's device selection * @m...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Tier class. * @constructor * @summary Subscription Tier * * @member {string} [name] The name of the tier */ export interface Tier { name?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Subscription class. * @constructor * @summary Subscription * * Subscription information * * @member {string} [startsAt] The date the subscription began * @member {string} [endsAt] The date the subscription will end or ended * @member {number} [daysLeft] The num...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportStats class. * @constructor * @member {number} os * @member {number} devices * @member {number} filesize * @member {number} totalDeviceMinutes * @member {number} devicesNotRunned * @member {number} failed * @member {number} skipped * @member {number}...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportFeaturesItemTestsItemRunsItemStepsItemStepExecutionsItem class. * @constructor * @member {string} [deviceSnapshotId] * @member {string} [status] * @member {number} [timestamp] */ export interface TestReportFeaturesItemTestsItemRunsItemStepsItemStepExecut...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportFeaturesItemTestsItemRunsItemStepsItem class. * @constructor * @member {string} [stepName] * @member {string} [id] * @member {array} [stepExecutions] * @member {number} [failed] * @member {number} [skipped] * @member {string} [stepReportUrl] */ export...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportFeaturesItemTestsItemRunsItem class. * @constructor * @member {number} [number] * @member {array} [steps] * @member {number} [failed] * @member {number} [skipped] * @member {string} [reportUrl] * @member {string} [id] */ export interface TestReportFea...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportFeaturesItemTestsItem class. * @constructor * @member {string} [testName] * @member {array} [runs] * @member {number} [peakMemory] * @member {number} [peakDuration] */ export interface TestReportFeaturesItemTestsItem { testName?: string; runs?: Test...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportFeaturesItem class. * @constructor * @member {string} [name] * @member {array} [tests] * @member {number} [failed] * @member {number} [skipped] * @member {number} [peakMemory] * @member {number} [peakDuration] */ export interface TestReportFeaturesIte...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReportDeviceLogsItem class. * @constructor * @member {string} [deviceSnapshotId] * @member {string} [deviceLog] * @member {string} [testLog] * @member {string} [appiumLog] */ export interface TestReportDeviceLogsItem { deviceSnapshotId?: string; deviceLog...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestReport class. * @constructor * @member {string} appUploadId * @member {string} date * @member {string} testType * @member {string} platform * @member {object} stats * @member {number} [stats.os] * @member {number} [stats.devices] * @member {number} [stats....
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the StepReportDeviceScreenshotsItemScreenshotUrls class. * @constructor * @member {string} original * @member {string} small * @member {string} medium * @member {string} large */ export interface StepReportDeviceScreenshotsItemScreenshotUrls { original: string; s...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the StepReportDeviceScreenshotsItemScreenshot class. * @constructor * @member {object} urls * @member {string} [urls.original] * @member {string} [urls.small] * @member {string} [urls.medium] * @member {string} [urls.large] * @member {number} rotation * @member {bo...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the StepReportDeviceScreenshotsItem class. * @constructor * @member {string} [id] * @member {string} [deviceSnapshotId] * @member {array} [stacktrace] * @member {array} [crashData] * @member {string} [status] * @member {string} [title] * @member {object} [screensho...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the StepReport class. * @constructor * @member {array} finishedSnapshots * @member {array} deviceScreenshots */ export interface StepReport { finishedSnapshots: string[]; deviceScreenshots: StepReportDeviceScreenshotsItem[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudErrorDetails class. * @constructor * @summary Test Cloud Error Details * * Details of a failed operation * * @member {string} status Status of the operation * @member {string} message Human-readable message that describes the error */ export interface ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudFileHashDeprecated class. * @constructor * @summary Test Cloud File Hash * * Hash, type, path and byte range of a file that is required in test run * * @member {string} fileType Type of the file. Possible values include: * 'dsym-file', 'app-file', 'test...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudFileHash class. * @constructor * @summary Test Cloud File Hash * * Hash, type, path and byte range of a file that is required in test run * * @member {string} fileType Type of the file. Possible values include: * 'dsym-file', 'app-file', 'test-file' * ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudHashUploadStatus class. * @constructor * @summary Test Cloud Hash Upload Status * * Result of uploading a single file hash * * @member {number} statusCode HTTP status code that represent result of upload * @member {string} [location] URI that should be ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudFileHashResponse class. * @constructor * @summary Test Cloud File Hash Response * * Response message for single uploaded file hash * * @member {string} fileType Type of the file. Possible values include: * 'dsym-file', 'app-file', 'test-file' * @member...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudStartTestRunOptions class. * @constructor * @summary Test Cloud Start Test Run Options * * Options required to start the test run * * @member {string} testFramework Test framework used by tests. * @member {string} deviceSelection Device selection string...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestCloudStartTestRunResult class. * @constructor * @summary Test Cloud Test Run Start Result * * Result of starting a test run * * @member {array} [acceptedDevices] List with names of accepted devices * @member {array} [rejectedDevices] List with names and desc...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the TestRunState class. * @constructor * @summary Test Run State * * Current status of a test run * * @member {array} [message] Multi-line message that describes the status * @member {number} [waitTime] Time (in seconds) that the client should wait * for before che...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReportPerformanceDataStepsItemSamplesItem class. * @constructor * @member {number} [cpu] * @member {number} [mem] * @member {number} [elapsedSecs] */ export interface PerformanceReportPerformanceDataStepsItemSamplesItem { cpu?: number; mem?: number;...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReportPerformanceDataStepsItem class. * @constructor * @member {number} [avgCpu] * @member {number} [avgMem] * @member {array} [samples] * @member {number} [elapsedSecsEnd] * @member {number} [elapsedSecsStart] * @member {number} [elapsedSecs] * @mem...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReportPerformanceData class. * @constructor * @member {array} steps * @member {number} elapsedSecsEnd * @member {number} elapsedSecsStart * @member {number} elapsedSecs * @member {string} id */ export interface PerformanceReportPerformanceData { ste...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReportVideoVideoMetadataEventsItem class. * @constructor * @member {string} [id] * @member {number} [millis] * @member {string} [name] * @member {string} [type] */ export interface PerformanceReportVideoVideoMetadataEventsItem { id?: string; millis...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReportVideoVideoMetadata class. * @constructor * @member {array} [events] */ export interface PerformanceReportVideoVideoMetadata { events?: PerformanceReportVideoVideoMetadataEventsItem[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReportVideo class. * @constructor * @member {object} videoMetadata * @member {array} [videoMetadata.events] * @member {string} videoUrl */ export interface PerformanceReportVideo { videoMetadata: PerformanceReportVideoVideoMetadata; videoUrl: string...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the PerformanceReport class. * @constructor * @summary Performance Report * * Report data for a single test (a.k.a. scenario) * * @member {string} [deviceSnapshotId] * @member {object} [performanceData] * @member {array} [performanceData.steps] * @member {number} ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the BlobInfo class. * @constructor * @member {number} size * @member {string} url */ export interface BlobInfo { size: number; url: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushReleaseInfo class. * @constructor * @member {string} [targetBinaryRange] * @member {string} [description] * @member {boolean} [isDisabled] * @member {boolean} [isMandatory] * @member {number} [rollout] */ export interface CodePushReleaseInfo { targetBi...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushRelease class. * @constructor * @member {string} [label] * @member {string} [packageHash] * @member {string} [blobUrl] * @member {object} [diffPackageMap] * @member {string} [originalDeployment] Set on 'Promote' * @member {string} [originalLabel] Set on ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Deployment class. * @constructor * @member {string} [key] * @member {string} name * @member {object} [latestRelease] * @member {string} [latestRelease.label] * @member {string} [latestRelease.packageHash] * @member {string} [latestRelease.blobUrl] * @member {ob...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeploymentModification class. * @constructor * @member {string} name */ export interface DeploymentModification { name: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushReleaseLabel class. * @constructor * @member {string} [label] */ export interface CodePushReleaseLabel { label?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushReleaseModification class. * @constructor */ export interface CodePushReleaseModification extends CodePushReleaseInfo { }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushReleasePromote class. * @constructor * @member {string} [label] */ export interface CodePushReleasePromote extends CodePushReleaseInfo { label?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushReleaseMetric class. * @constructor * @member {string} label * @member {number} active * @member {number} [downloaded] * @member {number} [failed] * @member {number} [installed] */ export interface CodePushReleaseMetric { label: string; active: numbe...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CodePushStatusMetricMetadata class. * @constructor * @member {string} deploymentKey * @member {string} [label] * @member {string} [appVersion] * @member {string} [previousDeploymentKey] * @member {string} [previousLabelOrAppVersion] * @member {string} [status] ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the UpdateCheckResponse class. * @constructor * @member {string} [downloadUrl] * @member {boolean} isAvailable * @member {number} [packageSize] * @member {boolean} [shouldRunBinaryVersion] * @member {boolean} [updateAppVersion] * @member {string} [packageHash] * @m...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AcquisitionStatusSuccessResponse class. * @constructor * @member {string} code The code indicating the status * @member {string} message The message indicating the status */ export interface AcquisitionStatusSuccessResponse { code: string; message: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertOperationResult class. * @constructor * Generic result for any alerting API operation * * @member {string} requestId Unique request identifier for tracking */ export interface AlertOperationResult { requestId: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertWebhook class. * @constructor * Alerting webhook * * @member {string} [id] The unique id (UUID) of the webhook * @member {string} name display name of the webhook * @member {string} url target url of the webhook * @member {boolean} [enabled] Allows eanble/d...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertWebhookListResult class. * @constructor * List of alerting webhooks wrapped as operation result * * @member {array} values */ export interface AlertWebhookListResult { values: AlertWebhook[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertWebhookPingResult class. * @constructor * Alerting webhook ping operation result * * @member {number} responseStatusCode HTTP status code returned in response * from calling webhook * @member {string} [responseReason] Reason returned in response from calling...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventSetting class. * @constructor * Event Setting * * @member {string} value Frequency of event. Possible values include: * 'Disabled', 'Individual', 'Daily', 'DailyAndIndividual', 'Default' * @member {string} [defaultValue] Default frequency of event. Possible ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertEmailSettings class. * @constructor * Alerting Email Settings * * @member {array} settings The settings the user has for the app */ export interface AlertEmailSettings { settings: EventSetting[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertUserEmailSettingsResult class. * @constructor * Alerting Default Email Settings of the user * * @member {string} eTag The ETag of the entity * @member {boolean} enabled Allows to forcefully disable emails on app or user * level * @member {string} userId The...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertUserAppEmailSettingsResult class. * @constructor * Alerting Email Settings of the user for a particular app * * @member {string} appId Application ID * @member {boolean} userEnabled A flag indicating if settings are enabled at * user/global level */ export ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingBugtrackerSettings class. * @constructor * Bugtracker specific settings * * @member {string} [callbackUrl] * @member {string} ownerName * @member {string} type Polymorphic Discriminator */ export interface AlertingBugtrackerSettings { callbackUrl?: str...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingVstsBugtrackerSettings class. * @constructor * VSTS bugtracker specific settings * * @member {string} vstsProjectId * @member {string} vstsProjectUri * @member {string} [vstsProjectName] * @member {string} [vstsAccountName] * @member {string} [vstsAreaP...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingGithubBugtrackerSettings class. * @constructor * Github bugtracker specific settings * * @member {number} githubRepoId * @member {string} githubRepoName * @member {string} [githubLabel] */ export interface AlertingGithubBugtrackerSettings extends Alertin...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingJiraBugtrackerSettings class. * @constructor * Jira bugtracker specific settings * * @member {number} jiraProjectId * @member {string} jiraProjectName */ export interface AlertingJiraBugtrackerSettings extends AlertingBugtrackerSettings { jiraProjectId:...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingBugtracker class. * @constructor * Alerting bugtracker resource * * @member {string} [type] type of bugtracker. Possible values include: * 'github', 'vsts', 'jira' * @member {string} [state] bugtracker state. Possible values include: * 'enabled', 'disabl...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertBugTrackerRepoOwner class. * @constructor * Repository owner object * * @member {string} [name] * @member {string} [id] * @member {string} [login] */ export interface AlertBugTrackerRepoOwner { name?: string; id?: string; login?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertBugTrackerRepo class. * @constructor * Repostiory object * * @member {string} name * @member {string} url * @member {string} id * @member {string} [description] * @member {boolean} [privateProperty] * @member {object} [owner] * @member {string} [owner.na...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertBugTrackerReposResult class. * @constructor * List of bug tracker repositories * * @member {string} [repoType] Possible values include: 'github', 'vsts', * 'jira' * @member {array} repositories */ export interface AlertBugTrackerReposResult { repoType?: s...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertCrashGroupStateChange class. * @constructor * AlertCrashGroup patching parameter * * @member {string} [state] Possible values include: 'Open', 'Closed', * 'Ignored' */ export interface AlertCrashGroupStateChange { state?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingAccessTokenResponse class. * @constructor * Access token details * * @member {string} accessTokenId ID of the access token * @member {string} externalProviderName External provider name. Possible * values include: 'github', 'vsts', 'jira' * @member {stri...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AlertingEvent class. * @constructor * Alerting event * * @member {string} eventTimestamp ISO 8601 date time when event was generated * @member {string} eventId A unique identifier for this event instance. Useful * for deduplication * @member {object} [properties...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NewCrashGroupAlertingEventCrashGroupProperties class. * @constructor * Properties of new crash group * * @member {string} id * @member {string} name * @member {string} reason * @member {string} url * @member {string} appDisplayName * @member {string} appPlatfo...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NewCrashGroupAlertingEvent class. * @constructor * New crash group alerting event * * @member {object} [crashGroupProperties] Properties of new crash group * @member {string} [crashGroupProperties.id] * @member {string} [crashGroupProperties.name] * @member {str...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NewAppReleaseAlertingEventAppReleaseProperties class. * @constructor * Properties of new application release * * @member {string} appName * @member {string} appDisplayName * @member {string} releaseId * @member {string} platform * @member {string} uploadedAt Da...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript