type stringclasses 7
values | content stringlengths 4 9.55k | repo stringlengths 7 96 | path stringlengths 4 178 | language stringclasses 1
value |
|---|---|---|---|---|
MethodDeclaration |
public getAcceptanceScenarios(): Array<Scenario> {
let acceptanceScenarios: Array<Scenario> = this.scenarios.filter((value, index, array): boolean => {
return value.isAcceptance();
})
return acceptanceScenarios;
} | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
public getJson() {
return JSON.stringify(this.rawData);
} | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
public searchScenariosBySummary(criteria: string): Array<Scenario> {
return this.scenarios.filter((scenario) => {
return scenario.getSummary().toLowerCase().indexOf(criteria.toLowerCase()) > -1
})
} | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
private hasUITag(featuresTags: Object[]): boolean {
return <boolean>featuresTags.find(function (value, index, array) {
let valueAny: any = value;
return valueAny.name === '@ui'
})
} | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
private hasAPITag(featuresTags: Object[]): boolean {
return <boolean>featuresTags.find(function (value, index, array) {
let valueAny: any = value;
return valueAny.name === '@api'
})
} | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
private buildTags(featuresTags: Object[]): void {
if (featuresTags === undefined)
return;
featuresTags.forEach((value, index, array) => {
let valueAny: any = value;
this.tags.push(<string>valueAny.name)
})
} | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
private buildTCMId(featuresTags: Object[]) {
let tcmid = featuresTags.find(function (value, index, array) {
let valueAny: any = value;
let tagSplit = valueAny.name.split('=');
return tagSplit[0] === '@jiraid'
})
if (tcmid === undefined)
return un... | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
private buildProcessId(featuresTags: Object[]) {
let process = featuresTags.find(function (value, index, array) {
let valueAny: any = value;
let tagSplit = valueAny.name.split('=');
return tagSplit[0] === '@process'
})
if (process === undefined)
... | pragma81/kites | app/models/Feature.ts | TypeScript |
MethodDeclaration |
private buildFeatureId(featuresTags: Object[]) {
let featureId = featuresTags.find(function (value, index, array) {
let valueAny: any = value;
let tagSplit = valueAny.name.split('=');
return tagSplit[0] === '@featureid'
})
if (featureId === undefined) {
... | pragma81/kites | app/models/Feature.ts | TypeScript |
ClassDeclaration | /**
* Android Management API
*
* The Android Management API provides remote enterprise management of Android devices and apps.
*
* @example
* ```js
* const {google} = require('googleapis');
* const androidmanagement = google.androidmanagement('v1');
* ```
*/
export class Androidmanagement ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
ClassDeclaration |
export class Resource$Enterprises$Applications {
context: APIRequestContext;
constructor(context: APIRequestContext) {
this.context = context;
}
/**
* Gets info about an application.
* @example
* ```js
* // Before running the sample:
* // - Enable the API at:
* // ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
ClassDeclaration |
export class Resource$Enterprises$Webtokens {
context: APIRequestContext;
constructor(context: APIRequestContext) {
this.context = context;
}
/**
* Creates a web token to access an embeddable managed Google Play web UI for a given enterprise.
* @example
* ```js
* // Before ru... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
ClassDeclaration |
export class Resource$Signupurls {
context: APIRequestContext;
constructor(context: APIRequestContext) {
this.context = context;
}
/**
* Creates an enterprise signup URL.
* @example
* ```js
* // Before running the sample:
* // - Enable the API at:
* // https://con... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Security policies set to the most secure values by default. To maintain the security posture of a device, we don't recommend overriding any of the default values.
*/
export interface Schema$AdvancedSecurityOverrides {
/**
* Controls Common Criteria Mode—security standards defined in the Common Crit... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Configuration for an always-on VPN connection.
*/
export interface Schema$AlwaysOnVpnPackage {
/**
* Disallows networking when the VPN is not connected.
*/
lockdownEnabled?: boolean | null;
/**
* The package name of the VPN app.
*/
packageName?: string | null;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A compliance rule condition which is satisfied if the Android Framework API level on the device doesn't meet a minimum requirement. There can only be one rule with this type of condition per policy.
*/
export interface Schema$ApiLevelCondition {
/**
* The minimum desired Android Framework API level... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about an app.
*/
export interface Schema$Application {
/**
* Application tracks visible to the enterprise.
*/
appTracks?: Schema$AppTrackInfo[];
/**
* The set of managed properties available to be pre-configured for the app.
*/
managedProperties?: Schema$Manag... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An app-related event.
*/
export interface Schema$ApplicationEvent {
/**
* The creation time of the event.
*/
createTime?: string | null;
/**
* App event type.
*/
eventType?: string | null;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A permission required by the app.
*/
export interface Schema$ApplicationPermission {
/**
* A longer description of the permission, providing more detail on what it affects. Localized.
*/
description?: string | null;
/**
* The name of the permission. Localized.
*/
name?: s... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Policy for an individual app.
*/
export interface Schema$ApplicationPolicy {
/**
* List of the app’s track IDs that a device belonging to the enterprise can access. If the list contains multiple track IDs, devices receive the latest version among all accessible tracks. If the list contains no track... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information reported about an installed app.
*/
export interface Schema$ApplicationReport {
/**
* The source of the package.
*/
applicationSource?: string | null;
/**
* The display name of the app.
*/
displayName?: string | null;
/**
* List of app events. The mos... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Settings controlling the behavior of application reports.
*/
export interface Schema$ApplicationReportingSettings {
/**
* Whether removed apps are included in application reports.
*/
includeRemovedApps?: boolean | null;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Id to name association of a app track.
*/
export interface Schema$AppTrackInfo {
/**
* The track name associated with the trackId, set in the Play Console. The name is modifiable from Play Console.
*/
trackAlias?: string | null;
/**
* The unmodifiable unique track identifier, take... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An action to block access to apps and data on a fully managed device or in a work profile. This action also triggers a device or work profile to displays a user-facing notification with information (where possible) on how to correct the compliance issue. Note: wipeAction must also be specified.
*/
export in... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Controls apps' access to private keys. The rule determines which private key, if any, Android Device Policy grants to the specified app. Access is granted either when the app calls KeyChain.choosePrivateKeyAlias (https://developer.android.com/reference/android/security/KeyChain#choosePrivateKeyAlias%28android.... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A command.
*/
export interface Schema$Command {
/**
* The timestamp at which the command was created. The timestamp is automatically generated by the server.
*/
createTime?: string | null;
/**
* The duration for which the command is valid. The command will expire if not executed b... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about Common Criteria Mode—security standards defined in the Common Criteria for Information Technology Security Evaluation (https://www.commoncriteriaportal.org/) (CC).This information is only available if statusReportingSettings.commonCriteriaModeEnabled is true in the device's policy.
*/
expo... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A rule declaring which mitigating actions to take when a device is not compliant with its policy. For every rule, there is always an implicit mitigating action to set policy_compliant to false for the Device resource, and display a message on the device indicating that the device is not compliant with its poli... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Contact details for managed Google Play enterprises.
*/
export interface Schema$ContactInfo {
/**
* Email address for a point of contact, which will be used to send important announcements related to managed Google Play.
*/
contactEmail?: string | null;
/**
* The email of the data... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* This feature is not generally available.
*/
export interface Schema$ContentProviderEndpoint {
/**
* This feature is not generally available.
*/
packageName?: string | null;
/**
* Required. This feature is not generally available.
*/
signingCertsSha256?: string[] | null;
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Cross-profile policies applied on the device.
*/
export interface Schema$CrossProfilePolicies {
/**
* Whether text copied from one profile (personal or work) can be pasted in the other profile.
*/
crossProfileCopyPaste?: string | null;
/**
* Whether data from one profile (personal... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: A full date, with non-zero year, month, and day values A month and day val... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A device owned by an enterprise. Unless otherwise noted, all fields are read-only and can't be modified by enterprises.devices.patch.
*/
export interface Schema$Device {
/**
* The API level of the Android platform version running on the device.
*/
apiLevel?: number | null;
/**
* R... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about security related device settings on device.
*/
export interface Schema$DeviceSettings {
/**
* Whether ADB (https://developer.android.com/studio/command-line/adb.html) is enabled on the device.
*/
adbEnabled?: boolean | null;
/**
* Whether developer mode is enable... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Device display information.
*/
export interface Schema$Display {
/**
* Display density expressed as dots-per-inch.
*/
density?: number | null;
/**
* Unique display id.
*/
displayId?: number | null;
/**
* Display height in pixels.
*/
height?: number | nul... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \} The JSON representation for E... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An enrollment token.
*/
export interface Schema$EnrollmentToken {
/**
* Optional, arbitrary data associated with the enrollment token. This could contain, for example, the ID of an org unit the device is assigned to after enrollment. After a device enrolls with the token, this data will be exposed ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* The configuration applied to an enterprise.
*/
export interface Schema$Enterprise {
/**
* Deprecated and unused.
*/
appAutoApprovalEnabled?: boolean | null;
/**
* The enterprise contact info of an EMM-managed enterprise.
*/
contactInfo?: Schema$ContactInfo;
/**
*... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Data hosted at an external location. The data is to be downloaded by Android Device Policy and verified against the hash.
*/
export interface Schema$ExternalData {
/**
* The base-64 encoded SHA-256 hash of the content hosted at url. If the content doesn't match this hash, Android Device Policy won'... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A system freeze period. When a device’s clock is within the freeze period, all incoming system updates (including security patches) are blocked and won’t be installed. When a device is outside the freeze period, normal update behavior applies. Leap years are ignored in freeze period calculations, in particular... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about device hardware. The fields related to temperature thresholds are only available if hardwareStatusEnabled is true in the device's policy.
*/
export interface Schema$HardwareInfo {
/**
* Battery shutdown temperature thresholds in Celsius for each battery on the device.
*/
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Hardware status. Temperatures may be compared to the temperature thresholds available in hardwareInfo to determine hardware health.
*/
export interface Schema$HardwareStatus {
/**
* Current battery temperatures in Celsius for each battery on the device.
*/
batteryTemperatures?: number[] | ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Response on issuing a command. This is currently empty as a placeholder.
*/
export interface Schema$IssueCommandResponse {} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Keyed app state reported by the app.
*/
export interface Schema$KeyedAppState {
/**
* The creation time of the app state on the device.
*/
createTime?: string | null;
/**
* Optionally, a machine-readable value to be read by the EMM. For example, setting values that the admin can c... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Settings controlling the behavior of a device in kiosk mode. To enable kiosk mode, set kioskCustomLauncherEnabled to true or specify an app in the policy with installType KIOSK.
*/
export interface Schema$KioskCustomization {
/**
* Specifies whether the Settings app is allowed in kiosk mode.
*... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An action to launch an app.
*/
export interface Schema$LaunchAppAction {
/**
* Package name of app to be launched
*/
packageName?: string | null;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Response to a request to list devices for a given enterprise.
*/
export interface Schema$ListDevicesResponse {
/**
* The list of devices.
*/
devices?: Schema$Device[];
/**
* If there are more results, a token to retrieve next page of results.
*/
nextPageToken?: string | n... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Response to a request to list enterprises.
*/
export interface Schema$ListEnterprisesResponse {
/**
* The list of enterprises.
*/
enterprises?: Schema$Enterprise[];
/**
* If there are more results, a token to retrieve next page of results.
*/
nextPageToken?: string | null... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Response to a request to list policies for a given enterprise.
*/
export interface Schema$ListPoliciesResponse {
/**
* If there are more results, a token to retrieve next page of results.
*/
nextPageToken?: string | null;
/**
* The list of policies.
*/
policies?: Schema$P... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Response to a request to list web apps for a given enterprise.
*/
export interface Schema$ListWebAppsResponse {
/**
* If there are more results, a token to retrieve next page of results.
*/
nextPageToken?: string | null;
/**
* The list of web apps.
*/
webApps?: Schema$Web... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* The managed configurations template for the app, saved from the managed configurations iframe.
*/
export interface Schema$ManagedConfigurationTemplate {
/**
* Optional, a map containing configuration variables defined for the configuration.
*/
configurationVariables?: {[key: string]: strin... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Managed property.
*/
export interface Schema$ManagedProperty {
/**
* The default value of the property. BUNDLE_ARRAY properties don't have a default value.
*/
defaultValue?: any | null;
/**
* A longer description of the property, providing more detail of what it affects. Localized... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An entry of a managed property.
*/
export interface Schema$ManagedPropertyEntry {
/**
* The human-readable name of the value. Localized.
*/
name?: string | null;
/**
* The machine-readable value of the entry, which should be used in the configuration. Not localized.
*/
va... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An event related to memory and storage measurements.
*/
export interface Schema$MemoryEvent {
/**
* The number of free bytes in the medium, or for EXTERNAL_STORAGE_DETECTED, the total capacity in bytes of the storage medium.
*/
byteCount?: string | null;
/**
* The creation time of... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about device memory and storage.
*/
export interface Schema$MemoryInfo {
/**
* Total internal storage on device in bytes.
*/
totalInternalStorage?: string | null;
/**
* Total RAM on device in bytes.
*/
totalRam?: string | null;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Device network info.
*/
export interface Schema$NetworkInfo {
/**
* IMEI number of the GSM device. For example, A1000031212.
*/
imei?: string | null;
/**
* MEID number of the CDMA device. For example, A00000292788E1.
*/
meid?: string | null;
/**
* Alphabetic name... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Provides detail about non-compliance with a policy setting.
*/
export interface Schema$NonComplianceDetail {
/**
* If the policy setting could not be applied, the current value of the setting on the device.
*/
currentValue?: any | null;
/**
* For settings with nested fields, if a ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A compliance rule condition which is satisfied if there exists any matching NonComplianceDetail for the device. A NonComplianceDetail matches a NonComplianceDetailCondition if all the fields which are set within the NonComplianceDetailCondition match the corresponding NonComplianceDetail fields.
*/
export i... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* This feature is not generally available.
*/
export interface Schema$OncCertificateProvider {
/**
* This feature is not generally available.
*/
certificateReferences?: string[] | null;
/**
* This feature is not generally available.
*/
contentProviderEndpoint?: Schema$Conte... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* This resource represents a long-running operation that is the result of a network API call.
*/
export interface Schema$Operation {
/**
* If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.
*/
do... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A list of package names.
*/
export interface Schema$PackageNameList {
/**
* A list of package names.
*/
packageNames?: string[] | null;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Requirements for the password used to unlock a device.
*/
export interface Schema$PasswordRequirements {
/**
* Number of incorrect device-unlock passwords that can be entered before a device is wiped. A value of 0 means there is no restriction.
*/
maximumFailedPasswordsForWipe?: number | n... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Configuration for an Android permission and its grant state.
*/
export interface Schema$PermissionGrant {
/**
* The Android permission or group, e.g. android.permission.READ_CALENDAR or android.permission_group.CALENDAR.
*/
permission?: string | null;
/**
* The policy for granting... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A default activity for handling intents that match a particular intent filter. Note: To set up a kiosk, use InstallType to KIOSK rather than use persistent preferred activities.
*/
export interface Schema$PersistentPreferredActivity {
/**
* The intent actions to match in the filter. If any actions ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Policies for apps in the personal profile of a company-owned device with a work profile.
*/
export interface Schema$PersonalApplicationPolicy {
/**
* The type of installation to perform.
*/
installType?: string | null;
/**
* The package name of the application.
*/
package... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Policies controlling personal usage on a company-owned device with a work profile.
*/
export interface Schema$PersonalUsagePolicies {
/**
* Account types that can't be managed by the user.
*/
accountTypesWithManagementDisabled?: string[] | null;
/**
* Whether camera is disabled.
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A rule that defines the actions to take if a device or work profile is not compliant with the policy specified in settingName.
*/
export interface Schema$PolicyEnforcementRule {
/**
* An action to block access to apps and data on a fully managed device or in a work profile. This action also trigger... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Additional details regarding the security posture of the device.
*/
export interface Schema$PostureDetail {
/**
* Corresponding admin-facing advice to mitigate this security risk and improve the security posture of the device.
*/
advice?: Schema$UserFacingMessage[];
/**
* A specif... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A power management event.
*/
export interface Schema$PowerManagementEvent {
/**
* For BATTERY_LEVEL_COLLECTED events, the battery level as a percentage.
*/
batteryLevel?: number | null;
/**
* The creation time of the event.
*/
createTime?: string | null;
/**
* Ev... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Configuration info for an HTTP proxy. For a direct proxy, set the host, port, and excluded_hosts fields. For a PAC script proxy, set the pac_uri field.
*/
export interface Schema$ProxyInfo {
/**
* For a direct proxy, the hosts for which the proxy is bypassed. The host names may contain wildcards su... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* The security posture of the device, as determined by the current device state and the policies applied.
*/
export interface Schema$SecurityPosture {
/**
* Device's security posture value.
*/
devicePosture?: string | null;
/**
* Additional details regarding the security posture of ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An action executed during setup.
*/
export interface Schema$SetupAction {
/**
* Description of this action.
*/
description?: Schema$UserFacingMessage;
/**
* An action to launch an app.
*/
launchApp?: Schema$LaunchAppAction;
/**
* Title of this action.
*/
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A resource containing sign in details for an enterprise.
*/
export interface Schema$SigninDetail {
/**
* Controls whether personal usage is allowed on a device provisioned with this enrollment token.For company-owned devices: Enabling personal usage allows the user to set up a work profile on the d... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An enterprise signup URL.
*/
export interface Schema$SignupUrl {
/**
* The name of the resource. Use this value in the signupUrl field when calling enterprises.create to complete the enterprise signup flow.
*/
name?: string | null;
/**
* A URL where an enterprise admin can registe... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about device software.
*/
export interface Schema$SoftwareInfo {
/**
* Android build ID string meant for displaying to the user. For example, shamu-userdebug 6.0.1 MOB30I 2756745 dev-keys.
*/
androidBuildNumber?: string | null;
/**
* Build time.
*/
androidBuil... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each Status message contains three pieces of data: error code, error message, and error details.You can find out more about this... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Settings controlling the behavior of status reports.
*/
export interface Schema$StatusReportingSettings {
/**
* Application reporting settings. Only applicable if application_reports_enabled is true.
*/
applicationReportingSettings?: Schema$ApplicationReportingSettings;
/**
* Whet... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Configuration for managing system updates
*/
export interface Schema$SystemUpdate {
/**
* If the type is WINDOWED, the end of the maintenance window, measured as the number of minutes after midnight in device's local time. This value must be between 0 and 1439, inclusive. If this value is less than... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Information about a potential pending system update.
*/
export interface Schema$SystemUpdateInfo {
/**
* The time when the update was first available. A zero value indicates that this field is not set. This field is set only if an update is available (that is, updateStatus is neither UPDATE_STATUS_... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Telephony information associated with a given SIM card on the device. Only supported on fully managed devices starting from Android API level 23.
*/
export interface Schema$TelephonyInfo {
/**
* The carrier name associated with this SIM card.
*/
carrierName?: string | null;
/**
* ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A terms and conditions page to be accepted during provisioning.
*/
export interface Schema$TermsAndConditions {
/**
* A well-formatted HTML string. It will be parsed on the client with android.text.Html#fromHtml.
*/
content?: Schema$UserFacingMessage;
/**
* A short header which ap... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A user belonging to an enterprise.
*/
export interface Schema$User {
/**
* A unique identifier you create for this user, such as user342 or asset#44418. This field must be set when the user is created and can't be updated. This field must not contain personally identifiable information (PII). This ... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* Provides a user-facing message with locale info. The maximum message length is 4096 characters.
*/
export interface Schema$UserFacingMessage {
/**
* The default message displayed if no localized message is specified or the user's locale doesn't match with any of the localized messages. A default me... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A web app.
*/
export interface Schema$WebApp {
/**
* The display mode of the web app.
*/
displayMode?: string | null;
/**
* A list of icons for the web app. Must have at least one element.
*/
icons?: Schema$WebAppIcon[];
/**
* The name of the web app, which is ge... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An icon for a web app. Supported formats are: png, jpg and webp.
*/
export interface Schema$WebAppIcon {
/**
* The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet"). - The image type can be png or jpg. - The imag... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* A web token used to access the managed Google Play iframe.
*/
export interface Schema$WebToken {
/**
* The features to enable. Use this if you want to control exactly which feature(s) will be activated; leave empty to allow all features.Restrictions / things to note: - If no features are listed her... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration | /**
* An action to reset a fully managed device or delete a work profile. Note: blockAction must also be specified.
*/
export interface Schema$WipeAction {
/**
* Whether the factory-reset protection data is preserved on the device. This setting doesn’t apply to work profiles.
*/
preserveFrp?: bo... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Create
extends StandardParameters {
/**
* Whether the enterprise admin has seen and agreed to the managed Google Play Agreement (https://www.android.com/enterprise/terms/). Always set this to true when creating an EMM-managed enterprise. Do not create the enter... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Delete
extends StandardParameters {
/**
* The name of the enterprise in the form enterprises/{enterpriseId\}.
*/
name?: string;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Get extends StandardParameters {
/**
* The name of the enterprise in the form enterprises/{enterpriseId\}.
*/
name?: string;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$List extends StandardParameters {
/**
* The requested page size. The actual page size may be fixed to a min or max value.
*/
pageSize?: number;
/**
* A token identifying a page of results returned by the server.
*/
pageToken?: string;
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Patch
extends StandardParameters {
/**
* The name of the enterprise in the form enterprises/{enterpriseId\}.
*/
name?: string;
/**
* The field mask indicating the fields to update. If not set, all modifiable fields will be modified.
*/
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Applications$Get
extends StandardParameters {
/**
* The preferred language for localized application info, as a BCP47 tag (e.g. "en-US", "de"). If not specified the default language of the application will be used.
*/
languageCode?: string;
/**
... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$Delete
extends StandardParameters {
/**
* The name of the device in the form enterprises/{enterpriseId\}/devices/{deviceId\}.
*/
name?: string;
/**
* Optional flags that control the device wiping behavior.
*/
wipeDataFlags?: s... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$Get
extends StandardParameters {
/**
* The name of the device in the form enterprises/{enterpriseId\}/devices/{deviceId\}.
*/
name?: string;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$Issuecommand
extends StandardParameters {
/**
* The name of the device in the form enterprises/{enterpriseId\}/devices/{deviceId\}.
*/
name?: string;
/**
* Request body metadata
*/
requestBody?: Schema$Command;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$List
extends StandardParameters {
/**
* The requested page size. The actual page size may be fixed to a min or max value.
*/
pageSize?: number;
/**
* A token identifying a page of results returned by the server.
*/
pageToken?:... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$Patch
extends StandardParameters {
/**
* The name of the device in the form enterprises/{enterpriseId\}/devices/{deviceId\}.
*/
name?: string;
/**
* The field mask indicating the fields to update. If not set, all modifiable fields will... | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$Operations$Cancel
extends StandardParameters {
/**
* The name of the operation resource to be cancelled.
*/
name?: string;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
InterfaceDeclaration |
export interface Params$Resource$Enterprises$Devices$Operations$Delete
extends StandardParameters {
/**
* The name of the operation resource to be deleted.
*/
name?: string;
} | GazeDev/google-api-nodejs-client | src/apis/androidmanagement/v1.ts | TypeScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.