---
title: "Cloud Export APIs"
slug: "cloud-export-apis"
description: "Learn how to utilize Kentik's Cloud Export APIs for managing network flow logs across various cloud providers with secure configurations and status tracking."
updated: 2026-02-20T15:32:19Z
published: 2026-02-20T15:32:19Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://kb.kentik.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cloud Export APIs

This article covers how to get started with the Cloud Export APIs.

> [!NOTE]
> **Notes:**
> 
> - The [**API Tester**](https://portal.kentik.com/v4/core/api-tester) in the v4 Portal enables you to securely call the methods of these APIs using your organization's Kentik data.
> - For information about cloud exports, start with [**Cloud Overview**](/v1/docs/cloud-overview).
> - Protobuf and OpenAPI specifications for Kentik’s v6 APIs are available in our [**api-schema-public**](https://github.com/kentik/api-schema-public) repository.

## Cloud Export Usage

The topics below provide important background information for the use of these APIs.

### Overview

In Kentik, a "cloud export" is an object whose properties are the values that Kentik needs to access network flow logs from a given set of resources in a given cloud provider (see [**Cloud Exports and Devices**](/v1/docs/cloud-overview#cloud-exports-and-devices)). The Cloud Export API enables programmatic management of cloud exports, serving two primary functions:

- Configuration of the Kentik resources required to export network flow logs and metadata from [**Public Clouds**](/v1/docs/cloud-overview#public-clouds-and-flow-logs).
- Basic status information on active export processes.

#### Supported Cloud Providers

The functionality and configuration parameters supported by this API differ by cloud provider. The API currently supports the following providers:

- [**Amazon Web Services**](/v1/docs/kentik-for-aws) (AWS)
- [**Microsoft Azure**](/v1/docs/kentik-for-azure)
- [**Google Cloud**](/v1/docs/kentik-for-gcp) (GCP)
- [**Oracle Cloud Infrastructure**](/v1/docs/kentik-for-oci) (OCI)

#### Additional Public Resources

The following additional resources are available for working with this API:

- Kentik community [**Python**](https://github.com/kentik/community_sdk_python) and [**Go**](https://github.com/kentik/community_sdk_golang) SDKs provide language-specific support for using this and other Kentik APIs. These SDKs can be also used as example code for development.
- A [**Terraform provider**](https://registry.terraform.io/providers/kentik/kentik-cloudexport) is available for configuring `cloud_export` instances in Kentik. Terraform modules are available for [**AWS**](https://github.com/kentik/config-snippets-cloud/tree/master/cloud_AWS/terraform/module), [**Azure**](https://github.com/kentik/config-snippets-cloud/tree/master/cloud_Azure/terraform/module) and [**GCP**](https://github.com/kentik/config-snippets-cloud/tree/master/cloud_GCP/terraform/module). These modules support onboarding and ongoing management of all resources (in public clouds and in Kentik) required to export flow logs to Kentik.

### Anatomy of a Cloud Export

Configuration and status of a `cloud_export` instance is represented by the `CloudExport` object, which contains three categories of attributes:

- Common Configuration Attributes
- Cloud Provider Configuration Attributes
- Metadata and Status Attributes

#### Common Configuration Attributes

The configuration attributes in the table below are common to `CloudExport` objects for all cloud providers.

| Attribute | Required | Default |
| --- | --- | --- |
| enabled | No | False |
| name | Yes |  |
| description | No | <empty string> |
| type | Yes |  |
| cloud_provider | Yes |  |
| plan_id | Yes |  |

#### Cloud Provider Specific Attributes

The attributes listed in the table below are objects whose parameters are specific to each cloud provider.

| Cloud Provider | Attribute | Object Name |
| --- | --- | --- |
| AWS | aws | AwsProperties |
| Azure | azure | AzureProperties |
| Google Cloud | gce | GceProperties |
| Oracle Cloud Infrastructure | oci | OciProperties |

#### Metadata and Status Attributes

The attributes in the table below provide read-only metadata and status for a `cloud_export` instance.

| Attribute | Purpose |
| --- | --- |
| id | System-generated unique identifier of the instance |
| cdate | Creation timestamp |
| edate | Last-modification timestamp |
| current_status | Runtime status of the flow and metadata collection process |

## Cloud Export RPCs

The tables below provide a quick reference to key information about each Remote Procedure Call in these APIs. Use the links in the tables to see schemas for the request and/or response body (if any).

> **Note:** To test methods using your own Kentik data, use the portal's [**API Tester**](https://portal.kentik.com/v4/core/api-tester).

### ListCloudExports

**API: CloudExportAdminService**

| REST Method | REST Endpoint | Description |
| --- | --- | --- |
| GET | /cloud_export/v202210 /exports | Returns a list of all cloud exports in the account. |
| \| **Request body**: None **Parameters**: None \| **Response body**: [v202210ListCloudExportsResponse](/v1/docs/cloud-export-apis#listcloudexportsresponse) \| \| --- \| --- \| |
| **Request body**: None **Parameters**: None | **Response body**: [v202210ListCloudExportsResponse](/v1/docs/cloud-export-apis#listcloudexportsresponse) |

### CreateCloudExport

API: CloudExportAdminService

| REST Method | REST Endpoint | Description |
| --- | --- | --- |
| POST | /cloud_export/v202210 /exports | Create new cloud export based on configuration in the request. |
| \| **Request body**: [v202210CreateCloudExportRequest](/v1/docs/cloud-export-apis#createcloudexportrequest) **Parameters**: None \| **Response body**: [v202210CreateCloudExportResponse](/v1/docs/cloud-export-apis#createcloudexportresponse) \| \| --- \| --- \| |
| **Request body**: [v202210CreateCloudExportRequest](/v1/docs/cloud-export-apis#createcloudexportrequest) **Parameters**: None | **Response body**: [v202210CreateCloudExportResponse](/v1/docs/cloud-export-apis#createcloudexportresponse) |

### UpdateCloudExport

API: CloudExportAdminService

| REST Method | REST Endpoint | Description |
| --- | --- | --- |
| PUT | /cloud_export/v202210 /exports/{export.id} | Replace complete configuration of a cloud export with data in the request. |
| \| **Request body**: [v202210UpdateCloudExportRequest](/v1/docs/cloud-export-apis#updatecloudexportrequest) \| **Response body**: [v202210UpdateCloudExportResponse](/v1/docs/cloud-export-apis#updatecloudexportresponse) \| \| --- \| --- \| **Parameters**: \| Name \| Description \| Required \| Type \| \| --- \| --- \| --- \| --- \| \| export.id \| Unique identifier of the instance \| true \| string \| |
| **Request body**: [v202210UpdateCloudExportRequest](/v1/docs/cloud-export-apis#updatecloudexportrequest) | **Response body**: [v202210UpdateCloudExportResponse](/v1/docs/cloud-export-apis#updatecloudexportresponse) |
| Name | Description | Required | Type |
| export.id | Unique identifier of the instance | true | string |

### GetCloudExport

**API: CloudExportAdminService**

| REST Method | REST Endpoint | Description |
| --- | --- | --- |
| GET | /cloud_export/v202210 /exports/{export.id} | Returns configuration and status of cloud export with specified ID. |
| \| **Request body**: None \| **Response body**: [v202210GetCloudExportResponse](/v1/docs/cloud-export-apis#getcloudexportresponse) \| \| --- \| --- \| **Parameters**: \| Name \| Description \| Required \| Type \| \| --- \| --- \| --- \| --- \| \| export.id \| ID of the cloud export to be retrieved. \| true \| string \| |
| **Request body**: None | **Response body**: [v202210GetCloudExportResponse](/v1/docs/cloud-export-apis#getcloudexportresponse) |
| Name | Description | Required | Type |
| export.id | ID of the cloud export to be retrieved. | true | string |

### DeleteCloudExport

**API: CloudExportAdminService**

| REST Method | REST Endpoint | Description |
| --- | --- | --- |
| DELETE | /cloud_export/v202210 /exports/{export.id} | Delete cloud export with specified ID. |
| \| **Request body**: None \| **Response body**: [v202210DeleteCloudExportResponse](/v1/docs/cloud-export-apis#deletecloudexportresponse) \| \| --- \| --- \| **Parameters**: \| Name \| Description \| Required \| Type \| \| --- \| --- \| --- \| --- \| \| export.id \| ID of the cloud export to be deleted. \| true \| string \| |
| **Request body**: None | **Response body**: [v202210DeleteCloudExportResponse](/v1/docs/cloud-export-apis#deletecloudexportresponse) |
| Name | Description | Required | Type |
| export.id | ID of the cloud export to be deleted. | true | string |

## Cloud Export Schemas

This API uses the following schemas:

#### protobufAny

| **Schema:** protobufAny | **Type:** object |
| --- | --- |
| **Properties:** \| Name \| Value \| \| --- \| --- \| \| typeUrl \| type: string \| \| value \| type: string format: byte \| |
| Name | Value |
| typeUrl | type: string |
| value | type: string format: byte |

#### rpcStatus

| **Schema:** rpcStatus | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| code \| type: integer format: int32 \| \| message \| type: string \| \| details \| type: array items: $ref: [protobufAny](/v1/docs/cloud-export-apis#protobufany) \| |
| Name | Value |
| code | type: integer format: int32 |
| message | type: string |
| details | type: array items: $ref: [protobufAny](/v1/docs/cloud-export-apis#protobufany) |

#### AwsProperties

| **Schema:** v202210AwsProperties | **Type:** object |
| --- | --- |
| **Properties**(* = required) \| Name \| Value \| \| --- \| --- \| \| bucket \| type: string description: Name of S3 bucket from which flow logs are to be exported. \| \| iamRoleArn * \| type: string description: ARN of the IAM role granted access to the S3 bucket and describe API end-points. \| \| region * \| type: string description: Name of AWS region from which to export flow logs. \| \| deleteAfterRead \| type: boolean description: Delete from logs from the S3 bucket after export (default false). \| \| metadataOnly \| type: boolean description: Import only metadata without any flows (default false). \| \| awsIamRoleArnIsOrg \| type: boolean description: Iam role is organization role (default false). \| \| secondaryAwsAccounts \| type: array items: type: string description: Accounts ids granted access to the describe API end-points. \| \| secondaryAwsBlockedAccounts \| type: array items: type: string description: Accounts ids that should be filtered from organization when running describe API end-points. \| \| secondaryAwsRegions \| type: array items: type: string description: Regions that secondary accounts to scrape. \| \| secondaryAwsSuffix \| type: string description: Used to generate secondary account ARN based on template arn:aws:iam::<>:role/<> \| |
| Name | Value |
| bucket | type: string description: Name of S3 bucket from which flow logs are to be exported. |
| iamRoleArn * | type: string description: ARN of the IAM role granted access to the S3 bucket and describe API end-points. |
| region * | type: string description: Name of AWS region from which to export flow logs. |
| deleteAfterRead | type: boolean description: Delete from logs from the S3 bucket after export (default false). |
| metadataOnly | type: boolean description: Import only metadata without any flows (default false). |
| awsIamRoleArnIsOrg | type: boolean description: Iam role is organization role (default false). |
| secondaryAwsAccounts | type: array items: type: string description: Accounts ids granted access to the describe API end-points. |
| secondaryAwsBlockedAccounts | type: array items: type: string description: Accounts ids that should be filtered from organization when running describe API end-points. |
| secondaryAwsRegions | type: array items: type: string description: Regions that secondary accounts to scrape. |
| secondaryAwsSuffix | type: string description: Used to generate secondary account ARN based on template arn:aws:iam::<>:role/<> |

#### AzureProperties

| **Schema:** v202210AzureProperties | **Type:** object |
| --- | --- |
| **Properties** (* = required) \| Name \| Value \| \| --- \| --- \| \| location * \| type: string description: Azure region/location from which to export flow logs. \| \| resourceGroup * \| type: string description: Resource group containing the NSG generating flow logs. \| \| storageAccount * \| type: string description: Storage account from which flow logs are to be extracted. \| \| subscriptionId * \| type: string description: ID of Azure account from which flows logs are to be exported. \| \| securityPrincipalEnabled \| type: boolean description: Indication whether security principal for the Kentik flow export application has been authorized. \| |
| Name | Value |
| location * | type: string description: Azure region/location from which to export flow logs. |
| resourceGroup * | type: string description: Resource group containing the NSG generating flow logs. |
| storageAccount * | type: string description: Storage account from which flow logs are to be extracted. |
| subscriptionId * | type: string description: ID of Azure account from which flows logs are to be exported. |
| securityPrincipalEnabled | type: boolean description: Indication whether security principal for the Kentik flow export application has been authorized. |

#### CloudExport

| **Schema:** v202210CloudExport | **Type:** object |
| --- | --- |
| **Properties** (* = required) \| Name \| Value \| \| --- \| --- \| \| id \| type: string description: Unique identifier of the instance readOnly: true \| \| type \| $ref: [v202210CloudExportType](/v1/docs/cloud-export-apis#cloudexporttype) \| \| enabled * \| type: boolean description: Attribute controlling whether the instance is active \| \| name * \| type: string description: User selected name of the instance \| \| description \| type: string description: Description of the instance \| \| planId * \| type: string description: Identifier of the billing plan for the instance \| \| cloudProvider \| $ref: [v202210CloudProvider](/v1/docs/cloud-export-apis#cloudprovider) \| \| aws \| $ref: [v202210AwsProperties](/v1/docs/cloud-export-apis#awsproperties) \| \| azure \| $ref: [v202210AzureProperties](/v1/docs/cloud-export-apis#azureproperties) \| \| gce \| $ref: [v202210GceProperties](/v1/docs/cloud-export-apis#gceproperties) \| \| ibm \| $ref: [v202210IbmProperties](/v1/docs/cloud-export-apis#ibmproperties) description: Deprecated: IBM Cloud exports are no longer supported. \| \| oci \| $ref: [v202210OciProperties](/v1/docs/cloud-export-apis#ociproperties) \| \| currentStatus \| $ref: [v202210CloudExportStatus](/v1/docs/cloud-export-apis#cloudexportstatus) \| \| cdate \| type: string format: date-time description: Creation timestamp (UTC) readOnly: true \| \| edate \| type: string format: date-time description: Last modification timestamp (UTC) readOnly: true \| |
| Name | Value |
| id | type: string description: Unique identifier of the instance readOnly: true |
| type | $ref: [v202210CloudExportType](/v1/docs/cloud-export-apis#cloudexporttype) |
| enabled * | type: boolean description: Attribute controlling whether the instance is active |
| name * | type: string description: User selected name of the instance |
| description | type: string description: Description of the instance |
| planId * | type: string description: Identifier of the billing plan for the instance |
| cloudProvider | $ref: [v202210CloudProvider](/v1/docs/cloud-export-apis#cloudprovider) |
| aws | $ref: [v202210AwsProperties](/v1/docs/cloud-export-apis#awsproperties) |
| azure | $ref: [v202210AzureProperties](/v1/docs/cloud-export-apis#azureproperties) |
| gce | $ref: [v202210GceProperties](/v1/docs/cloud-export-apis#gceproperties) |
| ibm | $ref: [v202210IbmProperties](/v1/docs/cloud-export-apis#ibmproperties) description: Deprecated: IBM Cloud exports are no longer supported. |
| oci | $ref: [v202210OciProperties](/v1/docs/cloud-export-apis#ociproperties) |
| currentStatus | $ref: [v202210CloudExportStatus](/v1/docs/cloud-export-apis#cloudexportstatus) |
| cdate | type: string format: date-time description: Creation timestamp (UTC) readOnly: true |
| edate | type: string format: date-time description: Last modification timestamp (UTC) readOnly: true |

#### CloudExportStatus

| **Schema:** v202210CloudExportStatus | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| status \| type: string description: Status of the export task. readOnly: true \| \| errorMessage \| type: string description: Text of the last error message (empty if status is OK). readOnly: true \| \| flowFound \| type: boolean description: Indication whether any flow data were exported. readOnly: true \| \| apiAccess \| type: boolean description: Indication whether the export process is able to access cloud API. readOnly: true \| \| storageAccountAccess \| type: boolean description: Indication whether the export process is able to access storage account containing flow logs. readOnly: true \| |
| Name | Value |
| status | type: string description: Status of the export task. readOnly: true |
| errorMessage | type: string description: Text of the last error message (empty if status is OK). readOnly: true |
| flowFound | type: boolean description: Indication whether any flow data were exported. readOnly: true |
| apiAccess | type: boolean description: Indication whether the export process is able to access cloud API. readOnly: true |
| storageAccountAccess | type: boolean description: Indication whether the export process is able to access storage account containing flow logs. readOnly: true |

#### CloudExportType

| **Schema:** v202210CloudExportType | **Type:** string |
| --- | --- |
| **Attributes**: \| Key \| Value \| \| --- \| --- \| \| enum \| CLOUD_EXPORT_TYPE_UNSPECIFIED, CLOUD_EXPORT_TYPE_KENTIK_MANAGED, CLOUD_EXPORT_TYPE_CUSTOMER_MANAGED \| \| default \| CLOUD_EXPORT_TYPE_UNSPECIFIED \| \| description \| • CLOUD_EXPORT_TYPE_UNSPECIFIED: Invalid value. • CLOUD_EXPORT_TYPE_KENTIK_MANAGED: Cloud export process is managed by Kentik • CLOUD_EXPORT_TYPE_CUSTOMER_MANAGED: Cloud export process is managed by customer \| |
| Key | Value |
| enum | CLOUD_EXPORT_TYPE_UNSPECIFIED, CLOUD_EXPORT_TYPE_KENTIK_MANAGED, CLOUD_EXPORT_TYPE_CUSTOMER_MANAGED |
| default | CLOUD_EXPORT_TYPE_UNSPECIFIED |
| description | • CLOUD_EXPORT_TYPE_UNSPECIFIED: Invalid value. • CLOUD_EXPORT_TYPE_KENTIK_MANAGED: Cloud export process is managed by Kentik • CLOUD_EXPORT_TYPE_CUSTOMER_MANAGED: Cloud export process is managed by customer |

#### CloudProvider

| **Schema:** v202210CloudProvider | **Type:** string |
| --- | --- |
| **Attributes**: \| Key \| Value \| \| --- \| --- \| \| enum \| CLOUD_PROVIDER_UNSPECIFIED, CLOUD_PROVIDER_AWS, CLOUD_PROVIDER_AZURE, CLOUD_PROVIDER_GCE, CLOUD_PROVIDER_IBM, CLOUD_PROVIDER_OCI \| \| default \| CLOUD_PROVIDER_UNSPECIFIED \| \| description \| • CLOUD_PROVIDER_UNSPECIFIED: Invalid value. • CLOUD_PROVIDER_AWS: Amazon Web Services • CLOUD_PROVIDER_AZURE: Microsoft Azure • CLOUD_PROVIDER_GCE: Google Cloud • CLOUD_PROVIDER_IBM: IBM Cloud Deprecated: IBM Cloud exports are no longer supported. • CLOUD_PROVIDER_OCI: OCI \| |
| Key | Value |
| enum | CLOUD_PROVIDER_UNSPECIFIED, CLOUD_PROVIDER_AWS, CLOUD_PROVIDER_AZURE, CLOUD_PROVIDER_GCE, CLOUD_PROVIDER_IBM, CLOUD_PROVIDER_OCI |
| default | CLOUD_PROVIDER_UNSPECIFIED |
| description | • CLOUD_PROVIDER_UNSPECIFIED: Invalid value. • CLOUD_PROVIDER_AWS: Amazon Web Services • CLOUD_PROVIDER_AZURE: Microsoft Azure • CLOUD_PROVIDER_GCE: Google Cloud • CLOUD_PROVIDER_IBM: IBM Cloud Deprecated: IBM Cloud exports are no longer supported. • CLOUD_PROVIDER_OCI: OCI |

#### CreateCloudExportRequest

| **Schema:** v202210CreateCloudExportRequest | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| export \| $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) \| |
| Name | Value |
| export | $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) |

#### CreateCloudExportResponse

| **Schema:** v202210CreateCloudExportResponse | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| export \| $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) \| |
| Name | Value |
| export | $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) |

#### DeleteCloudExportResponse

| **Schema:** v202210DeleteCloudExportResponse | **Type:** object |
| --- | --- |
| **Properties**: None. |

#### GceProperties

| **Schema:** v202210GceProperties | **Type:** object |
| --- | --- |
| **Properties** (* = required) \| Name \| Value \| \| --- \| --- \| \| project * \| type: string description: Name of the project from which to export flow logs. \| \| subscription * \| type: string description: GCP Pub/Sub subscription providing flow logs. \| |
| Name | Value |
| project * | type: string description: Name of the project from which to export flow logs. |
| subscription * | type: string description: GCP Pub/Sub subscription providing flow logs. |

#### GetCloudExportResponse

| **Schema:** v202210GetCloudExportResponse | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| export \| $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) \| |
| Name | Value |
| export | $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) |

#### IbmProperties ![](https://cdn.us.document360.io/082e25b5-afce-42d4-8f47-70bd3f1d02b7/Images/Documentation/image(715).png)

| **Schema:** v202210IbmProperties | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| bucket \| type: string description: Storage bucket from which flow logs are to be extracted. \| |
| Name | Value |
| bucket | type: string description: Storage bucket from which flow logs are to be extracted. |

#### ListCloudExportsResponse

| **Schema:** v202210ListCloudExportsResponse | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| exports \| type: array items: $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) description: List of cloud export objects. \| \| invalidExportsCount \| type: integer format: int64 description: Number of objects with invalid data (which are not returned in the response). \| |
| Name | Value |
| exports | type: array items: $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) description: List of cloud export objects. |
| invalidExportsCount | type: integer format: int64 description: Number of objects with invalid data (which are not returned in the response). |

#### OciProperties

| **Schema:** v202210OciProperties | **Type:** object |
| --- | --- |
| **Properties**(* = required) \| Name \| Value \| \| --- \| --- \| \| ociUserId * \| type: string description: ID of the user created to represent the Kentik cloud export tool. \| \| ociTenancyId * \| type: string description: OCI Tenancy details. \| \| ociCompartmentId \| type: array items: type: string description: Compartment IDs to scrape metadata from. \| \| ociDefaultRegion * \| type: string description: Default Enabled Region to scrape.. \| \| ociCollectFlowLogs \| type: boolean description: Default Enabled Region to scrape.. \| \| ociBucketName \| type: string description: Default Enabled Region to scrape.. \| \| ociBucketNamespaceName \| type: string description: Default Enabled Region to scrape.. \| \| ociServiceConnectorOcid \| type: string description: Default Enabled Region to scrape.. \| \| ociFlowObjectNamePrefix \| type: string description: We will look for files in the bucket whose names start with {%prefix%}/{%service_connector_ocid%} \| |
| Name | Value |
| ociUserId * | type: string description: ID of the user created to represent the Kentik cloud export tool. |
| ociTenancyId * | type: string description: OCI Tenancy details. |
| ociCompartmentId | type: array items: type: string description: Compartment IDs to scrape metadata from. |
| ociDefaultRegion * | type: string description: Default Enabled Region to scrape.. |
| ociCollectFlowLogs | type: boolean description: Default Enabled Region to scrape.. |
| ociBucketName | type: string description: Default Enabled Region to scrape.. |
| ociBucketNamespaceName | type: string description: Default Enabled Region to scrape.. |
| ociServiceConnectorOcid | type: string description: Default Enabled Region to scrape.. |
| ociFlowObjectNamePrefix | type: string description: We will look for files in the bucket whose names start with {%prefix%}/{%service_connector_ocid%} |

#### UpdateCloudExportRequest

| **Schema:** v202210UpdateCloudExportRequest | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Value \| \| --- \| --- \| \| export \| $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) \| |
| Name | Value |
| export | $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) |

#### UpdateCloudExportResponse

| **Schema:** v202210UpdateCloudExportResponse | **Type:** object |
| --- | --- |
| **Properties**: \| Name \| Name \| \| --- \| --- \| \| export \| $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) \| |
| Name | Name |
| export | $ref: [v202210CloudExport](/v1/docs/cloud-export-apis#cloudexport) |
