DiscoveryObjectStatus
Stay organized with collections
Save and categorize content based on your preferences.
The status of a discovery object.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-01 UTC."],[[["\u003cp\u003eDiscovery objects can have one of five statuses: unspecified, active, paused, removed, or archived.\u003c/p\u003e\n"],["\u003cp\u003eActive objects are actively being used; paused objects are temporarily inactive; and archived objects are considered deleted.\u003c/p\u003e\n"],["\u003cp\u003eThe 'removed' status is reserved for internal use and should not be manually set.\u003c/p\u003e\n"],["\u003cp\u003eWhile 'removed' is used by the system, users should use 'archived' to indicate deletion.\u003c/p\u003e\n"],["\u003cp\u003e'Unspecified' status is invalid and should not be used.\u003c/p\u003e\n"]]],["Discovery object statuses are defined by several states: `UNSPECIFIED` (unknown), `ACTIVE` (operational), `PAUSED` (temporarily inactive), `REMOVED` (no longer valid, set internally), and `ARCHIVED` (deleted from the exchange). Objects can be activated, paused, or archived. `REMOVED` is set by the system, while `ARCHIVED` signifies deletion. `UNSPECIFIED` is not a valid input state. The user can modify the status by using `ACTIVE`, `PAUSED` or `ARCHIVED` status.\n"],null,["# DiscoveryObjectStatus\n\nThe status of a discovery object.\n\n| Enums ||\n|---------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| `DISCOVERY_OBJECT_STATUS_UNSPECIFIED` | Discovery object status unknown or unspecified. Not valid input value. |\n| `DISCOVERY_OBJECT_STATUS_ACTIVE` | Discovery object status active. |\n| `DISCOVERY_OBJECT_STATUS_PAUSED` | Discovery object status paused. Temporarily pause entity that will be set to active later. |\n| `DISCOVERY_OBJECT_STATUS_REMOVED` | Discovery object status removed. Not valid for input. Removed status can only be set by DV3. Use Archive if entity is no longer needed. |\n| `DISCOVERY_OBJECT_STATUS_ARCHIVED` | Discovery object status archived. ARCHIVED should be considered as deleted from exchange side. |"]]