openapi: 3.2.0 info: description: API for Oracle Cloud Bridge service. title: Oracle Cloud Bridge Discovery API version: '20220509' x-provenance: method: harvested first_party: true publisher: Oracle source: https://docs.oracle.com/en-us/iaas/api/specs/c321f3149c29b4ca6e4030a39208852a1148785c372d569ef4b147e313ee18a3.yaml harvested: '2026-08-04' note: Published by Oracle as the contract for the Oracle Cloud Bridge API OCI service and stored verbatim; API Evangelist added only this provenance block. x-evidence: - url: https://docs.oracle.com/en-us/iaas/api/specs/index.json what: Oracle's own index of every OCI service specification - url: https://docs.oracle.com/en-us/iaas/api/specs/c321f3149c29b4ca6e4030a39208852a1148785c372d569ef4b147e313ee18a3.yaml what: the harvested document for Oracle Cloud Bridge API servers: - url: http://127.0.0.1/20220509 - url: https://127.0.0.1/20220509 tags: - name: discovery paths: /assetSources: get: description: 'Returns a list of asset sources. ' operationId: ListAssetSources parameters: - $ref: '#/components/parameters/AssetSourceIdQueryParam' - $ref: '#/components/parameters/AssetSourceSortByQueryParam' - $ref: '#/components/parameters/AssetSourceLifecycleStateQueryParam' - $ref: '#/components/parameters/SortOrderQueryParam' - $ref: '#/components/parameters/DisplayNameQueryParam' - $ref: '#/components/parameters/CompartmentIdQueryParam' - $ref: '#/components/parameters/PaginationLimitQueryParam' - $ref: '#/components/parameters/PaginationTokenQueryParam' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: A list of AssetSourceSummary objects. headers: opc-next-page: description: 'For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/AssetSourceCollection' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Gets a list of all asset sources in a compartment. tags: - discovery x-related-resource: '#/definitions/AssetSource' post: description: 'Creates an asset source. ' operationId: CreateAssetSource parameters: - $ref: '#/components/parameters/RetryTokenHeader' - $ref: '#/components/parameters/RequestIdHeader' responses: 201: description: The asset source was successfully created. headers: Location: description: URL of the newly asynchronously created resource. You can use this to query its status. schema: type: string etag: description: 'For optimistic concurrency control. See `if-match`. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string opc-work-request-id: description: 'Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/AssetSource' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 409: $ref: '#/components/responses/409' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Creates an asset source. tags: - discovery x-related-resource: '#/definitions/AssetSource' requestBody: content: application/json: schema: $ref: '#/components/schemas/CreateAssetSourceDetails' description: Details for the new asset source. required: true /assetSources/{assetSourceId}: delete: description: Deletes the asset source by ID. operationId: DeleteAssetSource parameters: - $ref: '#/components/parameters/AssetSourceIdentifierPathParam' - $ref: '#/components/parameters/IfMatchHeader' - $ref: '#/components/parameters/RequestIdHeader' responses: 202: description: Asset source deletion has been initiated. headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string opc-work-request-id: description: 'Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation. ' schema: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 412: $ref: '#/components/responses/412' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Deletes the provisioned asset source. tags: - discovery x-related-resource: '#/definitions/AssetSource' get: description: Gets the asset source by ID. operationId: GetAssetSource parameters: - $ref: '#/components/parameters/AssetSourceIdentifierPathParam' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: Returns the asset source for the given ID. headers: etag: description: 'For optimistic concurrency control. See `if-match`. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/AssetSource' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Gets the asset source. tags: - discovery put: description: Updates the asset source. operationId: UpdateAssetSource parameters: - $ref: '#/components/parameters/AssetSourceIdentifierPathParam' - $ref: '#/components/parameters/IfMatchHeader' - $ref: '#/components/parameters/RequestIdHeader' responses: 202: description: Asset source update has been initiated. headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string opc-work-request-id: description: 'Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation. ' schema: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 412: $ref: '#/components/responses/412' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Updates the asset source. tags: - discovery x-related-resource: '#/definitions/AssetSource' requestBody: content: application/json: schema: $ref: '#/components/schemas/UpdateAssetSourceDetails' description: Asset source information to be updated. required: true /assetSources/{assetSourceId}/actions/changeCompartment: post: description: Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. operationId: ChangeAssetSourceCompartment parameters: - $ref: '#/components/parameters/IfMatchHeader' - $ref: '#/components/parameters/RequestIdHeader' - $ref: '#/components/parameters/RetryTokenHeader' - $ref: '#/components/parameters/AssetSourceIdentifierPathParam' responses: 204: description: The resource has been moved. headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 409: $ref: '#/components/responses/409' 412: $ref: '#/components/responses/412' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' summary: Moves a resource into a different compartment. tags: - discovery x-related-resource: '#/definitions/AssetSource' requestBody: content: application/json: schema: $ref: '#/components/schemas/ChangeAssetSourceCompartmentDetails' description: Details for the compartment move. required: true /assetSources/{assetSourceId}/actions/listConnections: post: description: Gets known connections to the asset source by the asset source ID. operationId: ListAssetSourceConnections parameters: - $ref: '#/components/parameters/AssetSourceIdentifierPathParam' - $ref: '#/components/parameters/PaginationLimitQueryParam' - $ref: '#/components/parameters/PaginationTokenQueryParam' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: Connections to the provided asset source. headers: opc-next-page: description: 'For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/AssetSourceConnectionCollection' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Gets connections to the asset source. tags: - discovery x-related-resource: '#/definitions/AssetSource' /assetSources/{assetSourceId}/actions/refresh: post: description: Initiates the process of asset metadata synchronization with the related asset source. operationId: RefreshAssetSource parameters: - $ref: '#/components/parameters/RequestIdHeader' - $ref: '#/components/parameters/RetryTokenHeader' - $ref: '#/components/parameters/AssetSourceIdentifierPathParam' responses: 202: description: Asset source refresh is initiated successfully. headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string opc-work-request-id: description: 'Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation. ' schema: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 409: $ref: '#/components/responses/409' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Initiates the process of asset metadata synchronization with the related asset source. tags: - discovery x-related-resource: '#/definitions/AssetSource' /discoverySchedules: get: description: Lists discovery schedules. operationId: ListDiscoverySchedules parameters: - $ref: '#/components/parameters/DiscoveryScheduleIdQueryParam' - $ref: '#/components/parameters/DiscoveryScheduleLifecycleStateQueryParam' - $ref: '#/components/parameters/DiscoveryScheduleSortByQueryParam' - $ref: '#/components/parameters/SortOrderQueryParam' - $ref: '#/components/parameters/DisplayNameQueryParam' - $ref: '#/components/parameters/CompartmentIdQueryParam' - $ref: '#/components/parameters/PaginationLimitQueryParam' - $ref: '#/components/parameters/PaginationTokenQueryParam' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: Discovery schedules found. headers: opc-next-page: description: 'For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/DiscoveryScheduleCollection' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Lists discovery schedules. tags: - discovery x-related-resource: '#/definitions/DiscoverySchedule' post: description: Creates the discovery schedule. operationId: CreateDiscoverySchedule parameters: - $ref: '#/components/parameters/RetryTokenHeader' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: Discovery schedule is created successfully. headers: etag: description: 'For optimistic concurrency control. See `if-match`. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/DiscoverySchedule' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 409: $ref: '#/components/responses/409' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Creates the discovery schedule. tags: - discovery x-related-resource: '#/definitions/DiscoverySchedule' requestBody: content: application/json: schema: $ref: '#/components/schemas/CreateDiscoveryScheduleDetails' description: Information about the discovery schedule being created. required: true /discoverySchedules/{discoveryScheduleId}: delete: description: Deletes the specified discovery schedule. operationId: DeleteDiscoverySchedule parameters: - $ref: '#/components/parameters/DiscoveryScheduleIdentifierPathParam' - $ref: '#/components/parameters/IfMatchHeader' - $ref: '#/components/parameters/RequestIdHeader' responses: 204: description: Discovery schedule deleted. headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 412: $ref: '#/components/responses/412' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Deletes the specified discovery schedule. tags: - discovery x-related-resource: '#/definitions/DiscoverySchedule' get: description: Reads information about the specified discovery schedule. operationId: GetDiscoverySchedule parameters: - $ref: '#/components/parameters/DiscoveryScheduleIdentifierPathParam' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: Discovery schedule found. headers: etag: description: 'For optimistic concurrency control. See `if-match`. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/DiscoverySchedule' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Reads information about the specified discovery schedule. tags: - discovery put: description: Updates the specified discovery schedule. operationId: UpdateDiscoverySchedule parameters: - $ref: '#/components/parameters/DiscoveryScheduleIdentifierPathParam' - $ref: '#/components/parameters/IfMatchHeader' - $ref: '#/components/parameters/RequestIdHeader' responses: 200: description: Discovery schedule updated. headers: etag: description: 'For optimistic concurrency control. See `if-match`. ' schema: type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/DiscoverySchedule' 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 412: $ref: '#/components/responses/412' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' default: $ref: '#/components/responses/default' summary: Updates the specified discovery schedule. tags: - discovery x-related-resource: '#/definitions/DiscoverySchedule' requestBody: content: application/json: schema: $ref: '#/components/schemas/UpdateDiscoveryScheduleDetails' description: Discovery schedule information to be updated. required: true /discoverySchedules/{discoveryScheduleId}/actions/changeCompartment: post: description: Moves the specified discovery schedule into a different compartment. When provided, If-Match is checked against ETag values of the resource. operationId: ChangeDiscoveryScheduleCompartment parameters: - $ref: '#/components/parameters/IfMatchHeader' - $ref: '#/components/parameters/RequestIdHeader' - $ref: '#/components/parameters/RetryTokenHeader' - $ref: '#/components/parameters/DiscoveryScheduleIdentifierPathParam' responses: 204: description: The resource has been successfully moved. headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 404: $ref: '#/components/responses/404' 409: $ref: '#/components/responses/409' 412: $ref: '#/components/responses/412' 429: $ref: '#/components/responses/429' 500: $ref: '#/components/responses/500' summary: Moves the specified discovery schedule into a different compartment. tags: - discovery x-related-resource: '#/definitions/DiscoverySchedule' requestBody: content: application/json: schema: $ref: '#/components/schemas/ChangeDiscoveryScheduleCompartmentDetails' description: Information about the compartment in to which the discovery schedule should be moved. required: true components: schemas: AssetSource: description: Asset source. discriminator: propertyName: type properties: assetsCompartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment that is going to be used to create assets. maxLength: 255 minLength: 1 type: string compartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment for the resource. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object discoveryScheduleId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of an attached discovery schedule. maxLength: 255 minLength: 1 type: string displayName: description: 'A user-friendly name for the asset source. Does not have to be unique, and it''s mutable. Avoid entering confidential information. ' type: string environmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the environment. maxLength: 255 minLength: 1 type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object id: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the resource. maxLength: 255 minLength: 1 type: string inventoryId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the inventory that will contain created assets. maxLength: 255 minLength: 1 type: string lifecycleDetails: description: The detailed state of the asset source. type: string lifecycleState: description: The current state of the asset source. enum: - CREATING - ACTIVE - DELETING - DELETED - FAILED - UPDATING - NEEDS_ATTENTION type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceLifecycleState' systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object timeCreated: description: The time when the asset source was created in the RFC3339 format. format: date-time type: string timeUpdated: description: The point in time that the asset source was last updated in the RFC3339 format. format: date-time type: string type: description: The type of asset source. Indicates external origin of the assets that are read by assigning this asset source. enum: - VMWARE type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceType' required: - type - id - displayName - compartmentId - environmentId - inventoryId - assetsCompartmentId - lifecycleState - lifecycleDetails - timeCreated - timeUpdated type: object Error: description: Error Information. properties: code: description: A short error code that defines the error, meant for programmatic parsing. type: string message: description: A human-readable error string. type: string required: - code - message AssetSourceCollection: description: Results of an asset source search. Contains asset source items. properties: items: description: List of asset sources. items: $ref: '#/components/schemas/AssetSourceSummary' type: array required: - items type: object AssetSourceSummary: description: Summary of an asset source provided in the list. discriminator: propertyName: type properties: assetsCompartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment that is going to be used to create assets. maxLength: 255 minLength: 1 type: string compartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment for the resource. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object displayName: description: 'A user-friendly name for the asset source. Does not have to be unique, and it''s mutable. Avoid entering confidential information. ' type: string environmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the environment. maxLength: 255 minLength: 1 type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object id: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the resource. maxLength: 255 minLength: 1 type: string inventoryId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the inventory that will contain created assets. maxLength: 255 minLength: 1 type: string lifecycleDetails: description: The detailed state of the asset source. type: string lifecycleState: description: The current state of the asset source. enum: - CREATING - ACTIVE - DELETING - DELETED - FAILED - UPDATING - NEEDS_ATTENTION type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceLifecycleState' systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object timeCreated: description: The time when the asset source was created in RFC3339 format. format: date-time type: string timeUpdated: description: The point in time that the asset source was last updated in RFC3339 format. format: date-time type: string type: description: The type of asset source. Indicates external origin of the assets that are read by assigning this asset source. enum: - VMWARE type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceType' required: - type - id - compartmentId - environmentId - displayName - lifecycleState - lifecycleDetails - inventoryId - assetsCompartmentId type: object ChangeAssetSourceCompartmentDetails: description: Details for which compartment to move the resource to. properties: compartmentId: description: 'The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment into which the resource should be moved. ' maxLength: 255 minLength: 1 type: string required: - compartmentId type: object DiscoveryScheduleCollection: description: Results of a discovery schedule search. Contains discovery schedule summaries. properties: items: description: Discovery schedule summaries. items: $ref: '#/components/schemas/DiscoveryScheduleSummary' type: array required: - items type: object AssetSourceConnection: description: Descriptor of a connection to an asset source. properties: assetSourceKey: description: Type-specific identifier for an asset source. type: string connectionType: description: The type of connection for an asset source. enum: - DISCOVERY - REPLICATION type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceConnectionType' connectorId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the cloud bridge connector used for migration operations. maxLength: 255 minLength: 1 type: string lifecycleDetails: description: The detailed sub-state of the connection. type: string lifecycleState: description: The current state of the connection. enum: - ACTIVE - UPDATING - NEEDS_ATTENTION - DELETED - CREATING type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceConnectionLifecycleState' required: - connectionType - connectorId - assetSourceKey - lifecycleState - lifecycleDetails type: object ChangeDiscoveryScheduleCompartmentDetails: description: Information about the compartment into which the discovery schedule should be moved. properties: compartmentId: description: 'The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment into which the discovery schedule should be moved. ' maxLength: 255 minLength: 1 type: string required: - compartmentId type: object CreateAssetSourceDetails: description: Asset source creation request. discriminator: propertyName: type properties: assetsCompartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment that is going to be used to create assets. maxLength: 255 minLength: 1 type: string compartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment for the resource. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object discoveryScheduleId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the discovery schedule that is going to be attached to the created asset. maxLength: 255 minLength: 1 type: string displayName: description: 'A user-friendly name for the asset source. Does not have to be unique, and it''s mutable. Avoid entering confidential information. The name is generated by the service if it is not explicitly provided. ' maxLength: 255 minLength: 1 type: string environmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the environment. maxLength: 255 minLength: 1 type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object inventoryId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the inventory that will contain created assets. maxLength: 255 minLength: 1 type: string systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object type: description: Asset source type. enum: - VMWARE type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceType' required: - type - compartmentId - environmentId - inventoryId - assetsCompartmentId type: object DiscoveryScheduleSummary: description: Summarized information about a discovery schedule. properties: compartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment in which the discovery schedule exists. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object displayName: description: 'A user-friendly name for the discovery schedule. Does not have to be unique, and it''s mutable. Avoid entering confidential information. ' maxLength: 255 minLength: 1 type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object id: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the discovery schedule. maxLength: 255 minLength: 1 type: string lifecycleDetails: description: The detailed state of the discovery schedule. type: string lifecycleState: description: Current state of the discovery schedule. enum: - ACTIVE - DELETED type: string x-obmcs-top-level-enum: '#/definitions/DiscoveryScheduleLifecycleState' systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object timeCreated: description: The time when the discovery schedule was created in RFC3339 format. format: date-time type: string timeUpdated: description: The time when the discovery schedule was last updated in RFC3339 format. format: date-time type: string required: - id - compartmentId - displayName - lifecycleState - lifecycleDetails - timeCreated - timeUpdated type: object CreateDiscoveryScheduleDetails: description: Information about discovery schedule to be created. properties: compartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment in which the discovery schedule is created. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object displayName: description: 'A user-friendly name for the discovery schedule. Does not have to be unique, and it''s mutable. Avoid entering confidential information. The name is generated by the service if it is not explicitly provided. ' maxLength: 255 minLength: 1 type: string executionRecurrences: description: Recurrence specification for the discovery schedule execution. format: x-obmcs-recurring-time type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object required: - compartmentId - executionRecurrences type: object UpdateDiscoveryScheduleDetails: description: Information about discovery schedule to be updated. properties: definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object displayName: description: 'A user-friendly name for the discovery schedule. Does not have to be unique, and it''s mutable. Avoid entering confidential information. ' maxLength: 255 minLength: 1 type: string executionRecurrences: description: Recurrence specification for the discovery schedule execution. format: x-obmcs-recurring-time type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object type: object AssetSourceConnectionCollection: description: List of connections for an asset source. properties: items: description: List of connections. items: $ref: '#/components/schemas/AssetSourceConnection' type: array required: - items type: object UpdateAssetSourceDetails: description: Asset source update request. discriminator: propertyName: type properties: assetsCompartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment that is going to be used to create assets. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object discoveryScheduleId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the discovery schedule that is going to be assigned to an asset source. maxLength: 255 minLength: 0 type: string displayName: description: 'A user-friendly name for the asset source. Does not have to be unique, and it''s mutable. Avoid entering confidential information. ' maxLength: 255 minLength: 1 type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object type: description: Source type. enum: - VMWARE type: string x-obmcs-top-level-enum: '#/definitions/AssetSourceType' required: - type type: object DiscoverySchedule: description: Discovery schedule. properties: compartmentId: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the compartment in which the discovery schedule exists. maxLength: 255 minLength: 1 type: string definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object displayName: description: 'A user-friendly name for the discovery schedule. Does not have to be unique, and it''s mutable. Avoid entering confidential information. ' maxLength: 255 minLength: 1 type: string executionRecurrences: description: Recurrence specification for the discovery schedule execution. format: x-obmcs-recurring-time type: string freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object id: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the discovery schedule. maxLength: 255 minLength: 1 type: string lifecycleDetails: description: The detailed state of the discovery schedule. type: string lifecycleState: description: Current state of the discovery schedule. enum: - ACTIVE - DELETED type: string x-obmcs-top-level-enum: '#/definitions/DiscoveryScheduleLifecycleState' systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object timeCreated: description: The time when the discovery schedule was created in RFC3339 format. format: date-time type: string timeUpdated: description: The time when the discovery schedule was last updated in RFC3339 format. format: date-time type: string required: - id - compartmentId - displayName - executionRecurrences - lifecycleState - lifecycleDetails - timeCreated - timeUpdated type: object parameters: AssetSourceSortByQueryParam: description: 'The field to sort by. Only one sort order may be provided. By default, the timeCreated is in descending order and displayName is in ascending order. ' in: query name: sortBy schema: type: string enum: - timeCreated - displayName default: timeCreated PaginationTokenQueryParam: description: A token representing the position at which to start retrieving results. This must come from the `opc-next-page` header field of a previous response. in: query name: page x-default-description: 'null' schema: type: string minLength: 1 DiscoveryScheduleSortByQueryParam: description: 'The field to sort by. Only one sort order may be provided. By default, the timeCreated is in descending order and displayName is in ascending order. ' in: query name: sortBy schema: type: string enum: - timeCreated - displayName default: timeCreated AssetSourceIdentifierPathParam: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the asset source. in: path name: assetSourceId required: true schema: type: string maxLength: 255 minLength: 1 DiscoveryScheduleLifecycleStateQueryParam: description: The current state of the discovery schedule. in: query name: lifecycleState x-obmcs-top-level-enum: '#/definitions/DiscoveryScheduleLifecycleState' schema: type: string enum: - ACTIVE - DELETED IfMatchHeader: description: 'For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource''s current etag value. ' in: header name: if-match required: false schema: type: string CompartmentIdQueryParam: description: The ID of the compartment in which to list resources. in: query name: compartmentId required: true schema: type: string PaginationLimitQueryParam: description: The maximum number of items to return. in: query name: limit schema: type: integer default: 10 maximum: 100 minimum: 1 DiscoveryScheduleIdentifierPathParam: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the discovery schedule. in: path name: discoveryScheduleId required: true schema: type: string maxLength: 255 minLength: 1 SortOrderQueryParam: description: The sort order to use, either 'ASC' or 'DESC'. in: query name: sortOrder x-default-description: 'The default value depends upon `sortBy`, and in general is ''DESC'' when sorting by time and ''ASC'' otherwise. ' x-obmcs-top-level-enum: '#/definitions/SortOrders' schema: type: string enum: - ASC - DESC AssetSourceIdQueryParam: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the asset source. in: query name: assetSourceId schema: type: string maxLength: 255 minLength: 1 AssetSourceLifecycleStateQueryParam: description: The current state of the asset source. in: query name: lifecycleState x-obmcs-top-level-enum: '#/definitions/AssetSourceLifecycleState' schema: type: string enum: - CREATING - ACTIVE - DELETING - DELETED - FAILED - UPDATING - NEEDS_ATTENTION DiscoveryScheduleIdQueryParam: description: The [OCID](/Content/General/Concepts/identifiers.htm) of the discovery schedule. in: query name: discoveryScheduleId schema: type: string maxLength: 255 minLength: 1 RetryTokenHeader: description: 'A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing the same action again. Retry tokens expire after 24 hours, but can be invalidated before 24 hours due to conflicting operations. For example, if a resource has been deleted and purged from the system, a retry of the original creation request might be rejected. ' in: header name: opc-retry-token required: false schema: type: string maxLength: 64 minLength: 1 DisplayNameQueryParam: description: A filter to return only resources that match the entire display name given. in: query name: displayName x-default-description: 'null' schema: type: string maxLength: 255 minLength: 1 RequestIdHeader: description: The client request ID for tracing. in: header name: opc-request-id schema: type: string responses: default: description: Unknown Error headers: opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' schema: type: string content: application/json: schema: $ref: '#/components/schemas/Error' x-anchors: x-allowed-tenancies: - ocid1.tenancy.oc1..aaaaaaaaygoijofmkbtcrutsh5qo6ov3ksxa52ao7sthgr7yf4y25qea3ygq - ocid1.tenancy.oc1..aaaaaaaay323a6sswz6cuw2mr5eedczmeorn5yycybkhfwvbgmgy2ct3ybua - ocid1.tenancy.oc1..aaaaaaaaxwkwm64osdnmhpvu3vpd4ob2s3eewy2kmnztq7nbgo57ablx5bzq - ocid1.tenancy.oc1..aaaaaaaapynjgyvwaxdms7czbrcsuntvvzhex452aebkzo5cqa5jaycjvpzq - ocid1.tenancy.oc1..aaaaaaaahr2xcduf4knzkzhkzt442t66bpqt3aazss6cy2ll6x4xj3ci7tiq - ocid1.tenancy.oc1..aaaaaaaaz6poe72rkvim33pokoivtpx7obta5bi5vew54oneuc7tw7bs2sva - ocid1.tenancy.oc4..aaaaaaaatarbopzhejne3w73ekmxdl4rigfpgk2tql2axozj6nrq2oqn3mtq - ocid1.tenancy.oc4..aaaaaaaatyktwbyjeub6snw6pgyfqiwgcjq4q5kr6tg6x6ovw52neelfwq4a - ocid1.tenancy.oc5..aaaaaaaab7gdnudsz6r4jeeuaxxdqy6wvqotjirsclweuve2ywe6il2jl3ta - ocid1.tenancy.oc5..aaaaaaaacm62wd4rfb7t2sshbwci5dzwnm665weqvxbqtnysiwwtxiwgj4ha - ocid1.tenancy.oc8..aaaaaaaamkdo3htfnq7mxc5rhneeza6xkidayiofslkjcnwh3lac7rbfk2eq - ocid1.tenancy.oc8..aaaaaaaa43mogprfdapygtbdodvaikhxaigudltod2ekl7ocyej6jyvpfkfq - ocid1.tenancy.oc9..aaaaaaaa7noxantrtqaih4xnkdkhvzoayh77ucxb753n65bo5a4lzlvssoca - ocid1.tenancy.oc9..aaaaaaaai7tpd5tl57zpha3qeaxgugbdnspll5efpjtncxn53idak6ol7vxa - ocid1.tenancy.oc10..aaaaaaaam7lxohmjck47huobhkivar2kgwwkoyuhenijydso3n3ldndoboea - ocid1.tenancy.oc10..aaaaaaaapzu7l23jbz4ya77nrzzw7mk26zggkznp4ivndnhad2cf7cmxn2oa - ocid1.tenancy.oc14..aaaaaaaa6hfipjujgte4r2zpjv3kl2qvt3c77c5in5nfa3tul7lr26f7qggq - ocid1.tenancy.oc14..aaaaaaaa2waiw7okanpguwhf5gb7vvnri37hvn3tessqv6sc5iu4xp6evxha - ocid1.tenancy.oc16..aaaaaaaaazv5l7zbx6ubpvcwvmp2zvdtey6j6an4sdzzgpe4d755tvx2z2lq - ocid1.tenancy.oc16..aaaaaaaansltu2vnzmp6tcg43pgmkdpss6myb5tqloobqpilmemge5fxxtgq - ocid1.tenancy.oc17..aaaaaaaa4a46zl5lftaa67j4esbjhgaomgyor4i4ouok3e2bxiokymt7t72a - ocid1.tenancy.oc17..aaaaaaaafsquc4pej5zt4yhqykfbrigniieknyt3abj7p23jfuqckynug55q - ocid1.tenancy.oc19..aaaaaaaaocdn6ywf5j2k27vfbayhzc52rl4p5ssu4p2h2u7xjiefw4qhhl4a - ocid1.tenancy.oc19..aaaaaaaa7h4h3ntmiwvvoa3ekca5cmw55cxtk2z7gyu6pjvlqyk7ewy2opfa - ocid1.tenancy.oc20..aaaaaaaaam73fgmj7pdxokgfyomvhdckjar5sm6e465mh3maqyhat3iinunq - ocid1.tenancy.oc20..aaaaaaaaujxvjssx77l42dq6ptcaerm7kavzdpypdbi56zvsxwxmritqp65a - ocid1.tenancy.region1..aaaaaaaaann26zl32kkth2yxmf33csbrgnjrmyat44olp5gno4emdhktcwva - ocid1.tenancy.region1..aaaaaaaada63ksfiw33rfvlluvysfvqfwkeeu5t2ka3hbzqaxmltcwnwmyla - ocid1.tenancy.oc1..aaaaaaaaasnr5i3j7qqxr64fbzxf363nxzcyxyu3ctoffojyx4wdn5p6vzaq - ocid1.tenancy.oc1..aaaaaaaa5d2dju6cfnxmiydob6wobvw5l4wdalb4tgqiyqdh2vovhqfzhbma - ocid1.tenancy.oc1..aaaaaaaachdpgyy6f4kigtezapgualiuanek5am2voulsdzvawwgxqjtj5da - ocid1.tenancy.oc1..aaaaaaaafc225uqmgx2oma5z442fce3nh3jjnb75xygogmajw47njezolzia - ocid1.tenancy.oc4..aaaaaaaaph7jhogsn2xrs6suzih7tqvj3tfbbjbaxiu2aneabwuc42br4noa - ocid1.tenancy.oc4..aaaaaaaa4hhw6fkd3e26ixnpn3vrsnn7queu4vfzsmvimi3qt2uoytf6gana - ocid1.tenancy.oc5..aaaaaaaats7kk6ddqard5w4wbsctkc2xrhqu27gf3m6dt2kwoiypay64th5q - ocid1.tenancy.oc5..aaaaaaaalhu4qomiyar5phvtksgoga23hmrpr4et566wgys7tzx5tt3wr53q - ocid1.tenancy.oc8..aaaaaaaajgrnesy2mqz2hdf5bu2ao6njraxjjcniqpyimd2uwtbbri3zvnlq - ocid1.tenancy.oc8..aaaaaaaa5gyygmmwi4nnqrekiewalxcvc4gszsxe5ynp7dxobykgrwin7vtq - ocid1.tenancy.oc9..aaaaaaaakq5rqxkpxlreim5wwzsjszx7pe5hgb5o5wph4kitlwzn66qzzdwq - ocid1.tenancy.oc9..aaaaaaaa2l3nlgpsqekuwj6elgo3oxq5peafobx5dokqoexif5efi3unr3ya - ocid1.tenancy.oc10..aaaaaaaaatitljwoun5csbwn5cxfnatdlud4on4akbedlbitgced2iqvp5ra - ocid1.tenancy.oc10..aaaaaaaahwel42yh5nx2zfkhh2b5z4osz4mnewnxtfffpnl7amrpqqlkhubq - ocid1.tenancy.oc14..aaaaaaaatubnqwmu7chcrwon6t3bs67xnfwkc64qmlsmftygnih2a2ztf24q - ocid1.tenancy.oc14..aaaaaaaabhlq6agzsw6miuwhin27ygx5ukrmwxbrqhkf2irgosuo4b3a7szq - ocid1.tenancy.oc16..aaaaaaaaxkt4ckjowgj3m5oxuvitpd3vx6fei5epup6gp2t3ppleeao6lhba - ocid1.tenancy.oc16..aaaaaaaa2uklh7ekvzyw462mglzj3o2fkv7p6oxwcvyikc6frarz2xwuf72a - ocid1.tenancy.oc17..aaaaaaaanyrio4kmt2nj5lcmbnoa3lkouyg6z35qsuazbumirncq6iyyfcsa - ocid1.tenancy.oc17..aaaaaaaaz6mh4y3uzwcscgaeprwqg6hkigxweeyl3rkdmcgm6ev56iry3wna - ocid1.tenancy.oc19..aaaaaaaawbsimpiwwrb74ushxhxp2fn7f7oabxwm35hljlzpamrlg5trotvq - ocid1.tenancy.oc19..aaaaaaaaenqiv7qsi7cpcw326pwbdl46356byjqoa2tsmqamqemdl36d7koq - ocid1.tenancy.oc20..aaaaaaaabhdl6ztoavfdst5gipqtotk66qnfdhoyurhlrfoomeqfkkvzvohq - ocid1.tenancy.oc20..aaaaaaaam2e3sdkgg42ctapcwk3wdo4nrfmvbx5gtzinuezo556vgj3ofoxq - ocid1.tenancy.region1..aaaaaaaaghe2rzfj245axceigol3iko2lbmztp7i2jk4uuifqsrwkpvius5q - ocid1.tenancy.region1..aaaaaaaa4fqzmpqa5wlv7memcteya5jhqjgioarjpebglghgrgkphnbvw6aq - ocid1.tenancy.oc1..aaaaaaaaic463fmg625fezvzeosmm4f6wiexdgnasm5xhinhm575wuyml7ea - ocid1.tenancy.oc1..aaaaaaaartv6j5muce2s4djz7rvfn2vwceq3cnue33d72isntnlfmi7huv7q - ocid1.tenancy.oc4..aaaaaaaaykurmmyfjwsrnm2gcjwr7vvgwsdyzoyhxllabjavrbpk6us3tk2q - ocid1.tenancy.oc5..aaaaaaaamtu46djvokzv4zw7wj32blz4ftbjnp6wo5hozemt7mrgkucivcra - ocid1.tenancy.oc8..aaaaaaaamkxizodo6t3wnqzymrjgyjxu4bhnmd65awz3x2isaxkm4gkkpyza - ocid1.tenancy.oc9..aaaaaaaaimlhydjbpwwyfbuem3hhwf3j5jjfyhgjn5sbkqcoqko53wf77iqq - ocid1.tenancy.oc10..aaaaaaaayqfholaircj7jfgg5ywqlapv4oylugev5olwu6si3mmnkmirnfya - ocid1.tenancy.oc14..aaaaaaaajfujnvfdzqf2pi3lwugr2nayovmectesygake4sscdop65upusva - ocid1.tenancy.oc16..aaaaaaaagmong2nldsdc3ksfxx5pckgyf23mz2krhivmnhvxd62gviuf43ba - ocid1.tenancy.oc17..aaaaaaaakfug5hc2mkd6evrjgiqfzlfao3hupdx52bt4cdecybrnyj2si64a - ocid1.tenancy.oc19..aaaaaaaamgknwl7bxuwuodcytylxngeic4xj66tlr5rzqjx425iljpm5aita - ocid1.tenancy.oc20..aaaaaaaau4ils255vwllbgtil4ybgy45qtaw6v5ni2phbvaowmczp7wogfeq - ocid1.tenancy.region1..aaaaaaaacubxsqf4fqbsld7l4cne3wprluuxyu7l7k7jpukfxc63iirbwuka x-headers: etag: description: 'For optimistic concurrency control. See `if-match`. ' type: string location: description: URL of the newly asynchronously created resource. You can use this to query its status. type: string opc-next-page: description: 'For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items. ' type: string opc-request-id: description: 'Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. ' type: string opc-work-request-id: description: 'Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation. ' type: string retry-after: description: A decimal number representing the number of seconds the client should wait before polling this endpoint again. type: integer x-properties: definedTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing predefined tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations": {"CostCenter": "42"}}` ' type: object freeformTags: additionalProperties: type: string description: 'The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` ' type: object systemTags: additionalProperties: additionalProperties: description: 'The value of the tag. Only string, integer and boolean types are supported. ' type: object description: 'Key-value pair representing system tags'' keys and values scoped to a namespace. Example: `{"bar-key": "value"}` ' type: object description: 'The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` ' type: object x-obmcs-client-retries-enabled: true x-oracle-package: com.oracle.pic.cloudbridge