Move device
Relative path: /v1/devices/{deviceUuid}:move
Move [Device] under new [Group].
It is possible to move Groups only in the scope of the same tenant.
The assignment of policies is updated according to the new hierarchy.
Request body
Display Schema instead of an Example or vice-versa
Type |
Required |
Example |
Schema |
---|---|---|---|
application/json |
No |
{ "newParentUuid": "string" } |
{
"$ref": "DevicesMoveDeviceBody",
"newParentUuid": {
"type": "string",
"description": "Reference to the new parent [Group] for the [Device] being moved. type: DeviceGroup"
}
} |
Parameters in path
Name |
Type |
Required |
Description |
---|---|---|---|
deviceUuid |
string |
Yes |
Reference to the [Device] to move. type: Device |
Responses
Display Schema instead of an Example or vice-versa
Code |
Description |
Example |
Schema |
---|---|---|---|
200 |
Successful response. |
{ "device": { "activeProducts": [ { "activateDate": { "year": 0, "month": 0, "day": 0 }, "subscriptionUuid": "string", "unitPoolUuid": "string", "validityDate": { "year": 0, "month": 0, "day": 0 }, "id": 0, "name": "string" } ], "deployedComponents": [ { "displayName": "string", "version": { "id": "string", "major": 0, "minor": 0, "name": "string", "patch": 0 }, "id": 0, "name": "string" } ], "description": "string", "deviceToken": "string", "deviceType": "DEVICE_TYPE_UNSPECIFIED", "displayName": "string", "enrollmentStatus": "DEVICE_ENROLLMENT_STATUS_UNSPECIFIED", "functionalityProblemCount": 0, "functionalityStatus": "DEVICE_FUNCTIONALITY_STATUS_UNSPECIFIED", "hardwareProfiles": [ { "bios": { "manufacturer": "string", "serialNumber": "string", "uuid": "string" }, "hardDrives": [ { "capacityBytes": "string", "displayName": "string", "driveType": "DRIVE_TYPE_UNSPECIFIED", "hardwareEncryptionSupported": true, "malformedData": "string", "manufacturerName": "string", "serialNumber": "string" } ], "malformedData": "string", "manufacturer": "string", "model": "string", "networkAdapters": [ { "caption": "string", "macAddress": "string", "malformedData": "string" } ], "processors": [ { "architecture": "CPU_ARCHITECTURE_UNSPECIFIED", "caption": "string", "id": "string", "malformedData": "string", "manufacturer": "string" } ], "resettableIdentifier": "string", "salt": "string" } ], "isMobile": true, "isMuted": true, "lastSyncTime": "string", "managementDomain": "string", "operatingSystem": { "bitness": 0, "displayName": "string", "editionId": 0, "familyId": 0, "version": { "id": "string", "major": 0, "minor": 0, "name": "string", "patch": 0 } }, "originalDisplayName": "string", "parentGroupUuid": "string", "primaryLocalIpAddress": "string", "publicIpAddress": "string", "tags": [ "string" ], "uuid": "string", "createTime": "string", "revisionId": "string", "updateTime": "string" } } |
{ "$ref": "v1MoveDeviceResponse", "device": { "$ref": "v1Device", "description": { "type": "string", "description": "Device description." }, "activeProducts": [ { "$ref": "v1ActiveDeviceProduct", "description": "A product activated on device. For example ESET Mobile Security product is activated on device.", "activateDate": { "$ref": "typeDate", "description": "A full date, with non-zero year, month, and day values A month and day value, with a zero year, such as an anniversary A year on its own, with zero month and day values A year and month value, with a zero day, such as a credit card expiration date Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and google.protobuf.Timestamp.", "year": { "type": "integer", "description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.", "format": "int32" }, "month": { "type": "integer", "description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.", "format": "int32" }, "day": { "type": "integer", "description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.", "format": "int32" } }, "subscriptionUuid": { "type": "string", "description": "Reference to [subscription], used for product activation. type: subscription_management.v1.Subscription" }, "unitPoolUuid": { "type": "string", "description": "Reference to [unit pool], used for product activation. Unit pools contain units available for product activation. type: unit_management.v1.UnitPool" }, "validityDate": { "$ref": "typeDate", "description": "A full date, with non-zero year, month, and day values A month and day value, with a zero year, such as an anniversary A year on its own, with zero month and day values A year and month value, with a zero day, such as a credit card expiration date Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and google.protobuf.Timestamp.", "year": { "type": "integer", "description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.", "format": "int32" }, "month": { "type": "integer", "description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.", "format": "int32" }, "day": { "type": "integer", "description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.", "format": "int32" } }, "id": { "type": "integer", "description": "Identifier of governed resource. Can be seen as a value of item in enumerated type. It can be derived from name by some algorithm such as CRC32.", "format": "int64" }, "name": { "type": "string", "description": "Name of the governed item. Can be seen as a name of enumeration item, with id being its numerical value. Note: Not to be confused with display_name, which is purposed for UI." } } ], "deployedComponents": [ { "$ref": "v1PlatformComponent", "description": "Descriptor of platform component with version. Info: Should we track modules, they will be here.", "displayName": { "type": "string", "description": "Human readable name of the component. Derived from package display_name.", "readOnly": true }, "version": { "$ref": "v1Version", "description": "Version descriptor. Both values are required to completely reconstruct version information.", "id": { "type": "string", "description": "[Version id] determines whether one version is more recent than another. More recent versions have higher numbers. Can be processed by machine. If human readable version_name meets certain criteria, it can be converted to version_id automatically. The cases are: A.B.C.D => VersionId = (A & 0xffff) << 48 | (B & 0xffff) << 32 | (C & 0xffff) << 16 | (D & 0xffff) A.B.C => VersionId = (A & 0xffff ) << 48 | (B & 0xffff) << 32 | (C & 0xffff) <<16 Major.Minor.Patch => VersionId = (Major & 0xffff ) << 48 | (Minor & 0xffff) << 32 | (Patch & 0xffff) <<16 Eula.VersionId = Eula.MajorVersion << 48 | Eula.MinorVersion << 32 | EulaPatch << 16 Windows.VersionId = MajorVersion << 48 | MinorVersion << 32 | ServicePackMajor << 24 | ServicePackMinor << 16 | CurrentBuildNumber WindowsPhone.VersionId = A << 48 | B << 32 | C << 12 | D openSUSE Tumbleweed.VersionId = YYYY << 48 | MM << 64 | DD < 32 | 0x0000 Amazon Linux.VersionId = YYYY << 48 | MM << 64 | 0x00000000", "format": "uint64" }, "major": { "type": "integer", "description": "Major version if version.name adheres to semantic versioning. Empty otherwise.", "format": "int64" }, "minor": { "type": "integer", "description": "Minor version if version.name adheres to semantic versioning. Empty otherwise.", "format": "int64" }, "name": { "type": "string", "description": "Human readable name of the version. E.g. '10.2.3.145'" }, "patch": { "type": "integer", "description": "Patch if version.name adheres to semantic versioning. Empty otherwise.", "format": "int64" } }, "id": { "type": "integer", "description": "Identifier of the governed resource. Can be seen as a value of item in enumerated type. It can be derived from the name by some algorithm such as CRC32.", "format": "int64" }, "name": { "type": "string", "description": "Name of the governed item. Can be seen as the name of an enumeration item, with id being its numerical value. Note: Not to be confused with display_name, which is purposed for UI." } } ], "deviceToken": { "title": "Identity token for the device", "type": "string", "readOnly": true }, "deviceType": { "$ref": "v1DeviceType", "type": "string", "description": "Represents the type or category of a device. This enum is used to classify devices into predefined categories. DEVICE_TYPE_UNSPECIFIED: fallback DEVICE_TYPE_SMARTPHONE: Handheld device primarily used for communication, apps, and multimedia. DEVICE_TYPE_NOTEBOOK: Portable computer designed for personal or professional tasks. DEVICE_TYPE_IOT: Connected smart device, such as a smart thermostat or smart light bulb. DEVICE_TYPE_TABLET: Touchscreen device larger than a smartphone but smaller than a laptop. DEVICE_TYPE_DESKTOP: Stationary computer typically used in offices or as a personal workstation. DEVICE_TYPE_SMART_TV: Television with integrated internet and interactive features for streaming. DEVICE_TYPE_WEARABLE: Device worn on the body, such as a smartwatch or fitness tracker. DEVICE_TYPE_GAMING_CONSOLE: Device designed for playing video games, such as PlayStation or Xbox. DEVICE_TYPE_ROUTER: Networking device that forwards data packets between computer networks, including internetworks such as the global Internet. DEVICE_TYPE_PRINTER: Device used for printing documents, including home or office printers. DEVICE_TYPE_SECURITY_CAMERA: Camera used for surveillance and security monitoring. DEVICE_TYPE_VIRTUAL_MACHINE: Software-based instance that emulates a physical device. DEVICE_TYPE_SERVER: Device used in enterprise or data center environments to host services. DEVICE_TYPE_SMART_SPEAKER: Voice-activated speaker with integrated assistant features, like Amazon Echo.", "default": "DEVICE_TYPE_UNSPECIFIED", "enum": [ "DEVICE_TYPE_UNSPECIFIED", "DEVICE_TYPE_SMARTPHONE", "DEVICE_TYPE_NOTEBOOK", "DEVICE_TYPE_IOT", "DEVICE_TYPE_TABLET", "DEVICE_TYPE_DESKTOP", "DEVICE_TYPE_SMART_TV", "DEVICE_TYPE_WEARABLE", "DEVICE_TYPE_GAMING_CONSOLE", "DEVICE_TYPE_ROUTER", "DEVICE_TYPE_PRINTER", "DEVICE_TYPE_SECURITY_CAMERA", "DEVICE_TYPE_VIRTUAL_MACHINE", "DEVICE_TYPE_SERVER", "DEVICE_TYPE_SMART_SPEAKER" ] }, "displayName": { "title": "Name given by the user to identify the device", "type": "string" }, "enrollmentStatus": { "$ref": "v1DeviceEnrollmentStatus", "type": "string", "description": "Devices are enrolled in a process with managed devices being fully enrolled. DEVICE_ENROLLMENT_STATUS_UNSPECIFIED: Status is unknown. DEVICE_ENROLLMENT_STATUS_PENDING: The device is not enrolled yet. This status is typical for: - placeholder devices created for the enrollment links to be generated later on - devices just imported from other device managements - rogue devices discovered in the network - DEVICE_ENROLLMENT_STATUS_FINISHED: Enrollment is finished and the device can be managed. - DEVICE_ENROLLMENT_STATUS_FAILED: Enrollment process started, but failed.", "default": "DEVICE_ENROLLMENT_STATUS_UNSPECIFIED", "enum": [ "DEVICE_ENROLLMENT_STATUS_UNSPECIFIED", "DEVICE_ENROLLMENT_STATUS_PENDING", "DEVICE_ENROLLMENT_STATUS_FINISHED", "DEVICE_ENROLLMENT_STATUS_FAILED" ] }, "functionalityProblemCount": { "type": "integer", "description": "Aggregated count of functionality problems or issues on the device, regardless of their security risk.", "format": "int64", "readOnly": true }, "functionalityStatus": { "$ref": "v1DeviceFunctionalityStatus", "type": "string", "description": "The functionality status is determined by the severity of the worst issue currently occurring on the device. DEVICE_FUNCTIONALITY_STATUS_UNSPECIFIED: fallback DEVICE_FUNCTIONALITY_STATUS_OK: The device is functioning normally, with no issues that require attention. DEVICE_FUNCTIONALITY_STATUS_ATTENTION_RECOMMENDED: There are issues that may not be critical (for example, medium security risks), but they should be addressed to avoid potential future problems. DEVICE_FUNCTIONALITY_STATUS_ATTENTION_REQUIRED: Critical issues exist (for example, severe security risks), and immediate action is necessary to maintain system integrity or security.", "default": "DEVICE_FUNCTIONALITY_STATUS_UNSPECIFIED", "enum": [ "DEVICE_FUNCTIONALITY_STATUS_UNSPECIFIED", "DEVICE_FUNCTIONALITY_STATUS_OK", "DEVICE_FUNCTIONALITY_STATUS_ATTENTION_RECOMMENDED", "DEVICE_FUNCTIONALITY_STATUS_ATTENTION_REQUIRED" ] }, "hardwareProfiles": [ { "$ref": "v1Hardware", "description": "It can also be used to uniquely identify the device within the pool of all devices seen by ESET. Warning: For the fingerprint use-case, the values must be anonymized by using [SHA-256] hash and passed as 7-bit ASCII strings (containing only hexadecimal numbers and dashes possibly). This is a GDPR requirement.", "bios": { "$ref": "v1Bios", "description": "Information about BIOS (or UEFI in later systems).", "manufacturer": { "title": "BIOS manufacturer", "type": "string", "description": "For example, value LENOVO obtained by calling: wmic path win32_computersystemproduct get vendor" }, "serialNumber": { "title": "BIOS serial number", "type": "string", "description": "For example, value MP10DQAF obtained by calling: wmic path win32_computersystemproduct get IdentifyingNumber" }, "uuid": { "title": "UUID of BIOS", "type": "string", "description": "For example, value 99AAEECC-2C47-12CC-F85C-A0080C7BDC23 obtained by calling: wmic path win32_computersystemproduct get uuid" } }, "hardDrives": [ { "$ref": "v1HardDrive", "description": "Descriptor of hard drive.", "capacityBytes": { "type": "string", "description": "Use EIC multiples for conversion. For example, 500GB would be represented as 500 * 1024 * 1024 * 1024 bytes.", "format": "uint64" }, "displayName": { "type": "string", "description": "Human-readable name of the drive, such as 'Seagate Barracuda 2TB' or 'Samsung EVO 970 1TB SSD'." }, "driveType": { "$ref": "v1DriveType", "type": "string", "description": "Specifies the type of the drive, categorizing storage devices based on their underlying technology and functionality. DRIVE_TYPE_UNSPECIFIED: fallback DRIVE_TYPE_HDD: Hard Disk Drive (for example, traditional spinning disk drives used in desktops and servers). DRIVE_TYPE_SSD: Solid State Drive (for example, high-speed flash-based storage used in modern laptops). DRIVE_TYPE_OPTICAL: Optical Drive (for example, CD, DVD, or Blu-ray drives used for reading and writing discs).", "default": "DRIVE_TYPE_UNSPECIFIED", "enum": [ "DRIVE_TYPE_UNSPECIFIED", "DRIVE_TYPE_HDD", "DRIVE_TYPE_SSD", "DRIVE_TYPE_OPTICAL" ] }, "hardwareEncryptionSupported": { "type": "boolean", "description": "Indicates whether the drive supports encryption. For instance, built-in AES-256 encryption." }, "malformedData": { "type": "string", "description": "List of singular attributes where reading failed or returned a strange value. For more information about FiledMask usage, see Protocol Buffers Documentation: FieldMask" }, "manufacturerName": { "type": "string", "description": "The company that manufactured the drive, such as 'Western Digital', 'Seagate', or 'Kingston'." }, "serialNumber": { "title": "Drive serial number", "type": "string", "description": "For example, value 0025_3865_6AE0_AF38 obtained by calling: wmic diskdrive get SerialNumber" } } ], "malformedData": { "type": "string", "description": "List of singular attributes where reading failed or returned a strange value. Info: FieldMask cannot address array members, so it must be present in every nested repeated field. In case of this message: hard_drives, network_adapters and processors have their nested masks too. For more information about FieldMask usage, refer to Protocol Buffers Documentation: FieldMask" }, "manufacturer": { "title": "Vendor of the hardware", "type": "string" }, "model": { "title": "Model identifier of the hardware", "type": "string" }, "networkAdapters": [ { "$ref": "v1NetworkAdapter", "description": "Descriptor of network adapter. It can also be a virtual adapter (e.g. VPN).", "caption": { "title": "Name of adapter", "type": "string", "description": "For example, value Intel(R) Dual Band Wireless-AC 8260 obtained by calling: wmic nic get Caption" }, "macAddress": { "title": "MAC address - can be changed manually", "type": "string", "description": "For example, value 24:3A:21:52:41:53 obtained by calling: wmic nic get MACAddress" }, "malformedData": { "type": "string", "description": "List of singular attributes where reading failed or returned a strange value. For more information about FiledMask usage, see Protocol Buffers Documentation: FieldMask" } } ], "processors": [ { "$ref": "v1Processor", "description": "Descriptor of CPU.", "architecture": { "$ref": "v1CpuArchitecture", "title": "Processor architecture", "type": "string", "description": "Note: Cannot be named ProcessorArchitecture because of the conflict with Windows SDK, winnt.h, BUILD Version 0072. Series of macros prefixed PROCESSOR_ARCHITECTURE at line 12703 partially eclipse proto definition. Moreover, UKNOWN value is of value 0xffff, which makes it incompatible with the proto requirement to have it 0x0000. CPU_ARCHITECTURE_UNSPECIFIED: fallback CPU_ARCHITECTURE_X86: 32-bit x86 architecture CPU_ARCHITECTURE_X64: 64-bit x86 architecture CPU_ARCHITECTURE_ARM32: 32-bit ARM architecture CPU_ARCHITECTURE_ARM64: 64-bit ARM architecture", "default": "CPU_ARCHITECTURE_UNSPECIFIED", "enum": [ "CPU_ARCHITECTURE_UNSPECIFIED", "CPU_ARCHITECTURE_X86", "CPU_ARCHITECTURE_X64", "CPU_ARCHITECTURE_ARM32", "CPU_ARCHITECTURE_ARM64" ] }, "caption": { "title": "CPU/GPU name", "type": "string", "description": "For example, value Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz obtained by calling: wmic cpu get Name" }, "id": { "title": "wmic cpu get ProcessorId", "type": "string", "description": "ProcessorId" }, "malformedData": { "type": "string", "description": "List of singular attributes where reading failed or returned a strange value. Info: FieldMask cannot address array members, so it must be present in every nested repeated field. For more information about FieldMask usage, see Protocol Buffers Documentation: FieldMask" }, "manufacturer": { "title": "CPU/GPU vendor", "type": "string", "description": "For example, value GenuineIntel obtained by calling: wmic cpu get manufacturer" } } ], "resettableIdentifier": { "type": "string", "description": "Resettable hardware identifier (for example, might not survive factory reset). Some operating systems do not provide access to non-resettable hardware identifiers at all, or they do in a restricted manner. For more information, see: Best practices for working with Android identifiers or Apple Developer Documentation: identifierForVendor" }, "salt": { "title": "Salt used for unreliable hardware to make it visible among other unreliable hardware", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$", "type": "string", "format": "byte" } } ], "isMobile": { "type": "boolean", "description": "The device is marked as mobile. A mobile device is a portable handheld computer small enough to be carried easily, which can function without being physically connected to a network and power source." }, "isMuted": { "type": "boolean", "description": "It defines whether the device is Muted or not. Muted devices are purposed to not attract user's attention, even if they reach a noteworthy state (for example, they report a functionality problem). In practice that means they might get excluded from dashboards or lists. Default value: false - means the device is not muted.", "readOnly": true }, "lastSyncTime": { "type": "string", "description": "When the device was synchronized for the last time. For remote management, this time also means LastSeenTime, LastActiveTime, LastConnectTime etc.", "format": "date-time", "readOnly": true }, "managementDomain": { "type": "string", "description": "It provides affiliation mapping between devices and the accounts they belong to, regardless of the originating system (ESMC, EPC, ECA, Home...). It enables tenant binding, ensuring that each device is correctly associated. Note: Domain does not scope uniqueness of hardware identifiers. They are still globally unique. Domain helps the clustering algorithm to better determine the right identity by limiting the scope of possibilities. Feedback commands ([i-ecp] Report Hardware Idenity Crisis and [i-ecp] Report Hardware Identity Collision) improve detection within the domain." }, "operatingSystem": { "$ref": "v1OperatingSystem", "description": "Descriptor of operating system present on the device.", "bitness": { "type": "integer", "description": "Bitness of the operating system. For example: - 32 - 64", "format": "int64" }, "displayName": { "type": "string", "description": "Human readable name of the operating system. For example: - Mac OS X 10.8 Mountain Lion - Microsoft Windows 10 Enterprise 2015 LTSB" }, "editionId": { "type": "integer", "description": "Server or Desktop? That's the question. Id comes from [os_catalog]. Well known values are: 0 = unspecified (fallback) 1 = Server edition of operating system, for example, Red Hat Enterprise Linux Server 2 = Client edition of operating system, for example, Windows 11 3 = Mobile edition of operating system, for example, Android or iOS 4 = Core edition without GUI, for example, Microsoft Server Core", "format": "int64" }, "familyId": { "type": "integer", "description": "Family of operating system from [os_catalog]. Info: Modeled after Category: Operating system families. Well known values are: 0 = unspecified (fallback) 1 = Windows family of operating systems 2 = Linux family of operating systems 3 = Apple family of operating systems, for example, OS X or iOS 4 = Android family of operating systems 5 = Windows mobile family 6 = Symbian family 7 = UNIX, including FreeBSD", "format": "int64" }, "version": { "$ref": "v1Version", "description": "Version descriptor. Both values are required to completely reconstruct version information.", "id": { "type": "string", "description": "[Version id] determines whether one version is more recent than another. More recent versions have higher numbers. Can be processed by machine. If human readable version_name meets certain criteria, it can be converted to version_id automatically. The cases are: A.B.C.D => VersionId = (A & 0xffff) << 48 | (B & 0xffff) << 32 | (C & 0xffff) << 16 | (D & 0xffff) A.B.C => VersionId = (A & 0xffff ) << 48 | (B & 0xffff) << 32 | (C & 0xffff) <<16 Major.Minor.Patch => VersionId = (Major & 0xffff ) << 48 | (Minor & 0xffff) << 32 | (Patch & 0xffff) <<16 Eula.VersionId = Eula.MajorVersion << 48 | Eula.MinorVersion << 32 | EulaPatch << 16 Windows.VersionId = MajorVersion << 48 | MinorVersion << 32 | ServicePackMajor << 24 | ServicePackMinor << 16 | CurrentBuildNumber WindowsPhone.VersionId = A << 48 | B << 32 | C << 12 | D openSUSE Tumbleweed.VersionId = YYYY << 48 | MM << 64 | DD < 32 | 0x0000 Amazon Linux.VersionId = YYYY << 48 | MM << 64 | 0x00000000", "format": "uint64" }, "major": { "type": "integer", "description": "Major version if version.name adheres to semantic versioning. Empty otherwise.", "format": "int64" }, "minor": { "type": "integer", "description": "Minor version if version.name adheres to semantic versioning. Empty otherwise.", "format": "int64" }, "name": { "type": "string", "description": "Human readable name of the version. E.g. '10.2.3.145'" }, "patch": { "type": "integer", "description": "Patch if version.name adheres to semantic versioning. Empty otherwise.", "format": "int64" } } }, "originalDisplayName": { "type": "string", "description": "The original display name shows the name of the device as it was originally retrieved from the source (for example, operating system). This name is likely used in the device directory (for example, Active Directory), and it is useful in support scenarios. Example: 'BTS9955454' (such a name would likely get renamed by a user to something more friendly).", "readOnly": true }, "parentGroupUuid": { "type": "string", "description": "Reference to the parent [device group] that exclusively contains the device. type: DeviceGroup" }, "primaryLocalIpAddress": { "type": "string", "description": "Primary IP address of the endpoint retrieved from all available Ethernet interfaces on the device. The process for determining this IP address differs based on the operating system in two steps: Enumeration of all Ethernet interfaces and their associated IP addresses by using: - Android: NetworkInterface.getNetworkInterfaces() method from the Android API. - Apple macOS: IOServiceMatching function provided by the macOS I/O Kit framework. - Linux: getifaddrs() system call. - Microsoft Windows: GetAdaptersInfo() function from the IP Helper API. The Ethernet interfaces and their associated IP addresses are ordered based on the operating system's internal logic. Selection of the primary local IP address from the list of Ethernet interfaces: - among all Ethernet interfaces, IPv4 addresses are prioritized. The first IPv4 address encountered across all Ethernet interfaces is selected as the primary_local_ip_address. - if no Ethernet interface has an IPv4 address, the first available IPv6 address from the list is selected instead. Info: For Apple iOS the primary_local_ip_address is not available. This attribute serves as the primary local IP address that represents the endpoint within its local network." }, "publicIpAddress": { "type": "string", "description": "The public_IP_address represents the public-facing IP address of the endpoint as resolved and identified by the server communicating with the endpoint. This address reflects the endpoint's presence on the wider internet and is often the IP address assigned by the network's NAT (Network Address Translation) or gateway device. This attribute is used to uniquely identify the endpoint from the perspective of external servers or services, providing the public IP address that is visible outside the local network." }, "tags": [ { "type": "string" } ], "uuid": { "type": "string", "description": "Unique identifier of the entity. Must be collision-free - two identifiers created anywhere in the world must not collide within the entity parent scope. Unless a member of aggregate, the entity scope is always global. Although most of the times compliant with RFC 4122: A Universally Unique IDentifier (UUID) URN Namespace, do not rely on it being a RFC UUID. Treat it as an opaque identifier. RFC UUID can be recognized by being formatted according to the template xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx, as explained on Wikipedia. UUID is used for referencing an entity, even across domains. Example: '123e4567-e89b-12d3-a456-426614174000'" }, "createTime": { "type": "string", "description": "The creation timestamp of an entity.", "format": "date-time" }, "revisionId": { "type": "string", "description": "Identifier of entity revision. Every change to internal state of the entity leads to increase of this number. Every time this number changes, update_time must change as well. [Revision id] also determines whether one revision is more recent than another. More recent revisions have higher numbers. Info: Similar concepts are - change sequence number (CSN) - version_id Info: Modeled after: https://google.aip.dev/162 revision_create_time is delivered by update_time of https://google.aip.dev/148#timestamps", "format": "uint64" }, "updateTime": { "type": "string", "description": "Represents the timestamp when the resource was most recently updated. Any change to the resource made by users (create/update/delete) must update this value; changes to a resource made internally by the service should refresh this value unless specified otherwise on entity level. Info: Modeled after: https://google.aip.dev/148#timestamps", "format": "date-time" } } } |
202 |
Response took too long; request cached. Response can be retrieved later using the response-id header. |
null |
[] |
400 |
One of the errors: 1. Bad or missing authorization. 2. Validation error. Invalid argument provided. |
null |
[] |
401 |
Token has expired or is invalid. |
null |
[] |
403 |
Access denied. Check permissions. |
null |
[] |
404 |
Requested resource not found. |
null |
[] |
429 |
Rate limit reached. Try again later. |
null |
[] |
500 |
Internal server failure. Try again later. |
null |
[] |
502 |
Internal server failure. Try again later. |
null |
[] |
503 |
Environment under maintenance. Try again later. |
null |
[] |
504 |
Action took too long; timeout reached |
null |
[] |