aidp-typescript-client 4.1.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1398,6 +1398,91 @@ export declare class CredentialsClient {
1398
1398
  */
1399
1399
  updateCredential(updateCredentialRequest: requests.UpdateCredentialRequest): Promise<responses.UpdateCredentialResponse>;
1400
1400
  }
1401
+ export declare enum DataLineageApiKeys {
1402
+ }
1403
+ /**
1404
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
1405
+ */
1406
+ export declare class DataLineageClient {
1407
+ protected static serviceEndpointTemplate: string;
1408
+ protected static endpointServiceName: string;
1409
+ protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
1410
+ protected "_endpoint": string;
1411
+ protected "_defaultHeaders": any;
1412
+ protected "_clientConfiguration": common.ClientConfiguration;
1413
+ protected _circuitBreaker: typeof Breaker | null;
1414
+ protected _httpOptions: any;
1415
+ protected _bodyDuplexMode: any;
1416
+ targetService: string;
1417
+ protected _regionId: string;
1418
+ protected "_region": common.Region;
1419
+ protected _lastSetRegionOrRegionId: string;
1420
+ protected _httpClient: common.HttpClient;
1421
+ protected _authProvider: common.AuthenticationDetailsProvider | undefined;
1422
+ constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
1423
+ /**
1424
+ * Get the endpoint that is being used to call (ex, https://www.example.com).
1425
+ */
1426
+ get endpoint(): string;
1427
+ /**
1428
+ * Sets the endpoint to call (ex, https://www.example.com).
1429
+ * @param endpoint The endpoint of the service.
1430
+ */
1431
+ set endpoint(endpoint: string);
1432
+ get logger(): import("oci-common/lib/log").Logger;
1433
+ /**
1434
+ * Determines whether realm specific endpoint should be used or not.
1435
+ * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
1436
+ * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
1437
+ */
1438
+ set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
1439
+ /**
1440
+ * Sets the region to call (ex, Region.US_PHOENIX_1).
1441
+ * Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
1442
+ * @param region The region of the service.
1443
+ */
1444
+ set region(region: common.Region);
1445
+ /**
1446
+ * Sets the regionId to call (ex, 'us-phoenix-1').
1447
+ *
1448
+ * Note, this will first try to map the region ID to a known Region and call {@link #region(Region) region}.
1449
+ * If no known Region could be determined, it will create an endpoint assuming its in default Realm OC1
1450
+ * and then call {@link #endpoint(String) endpoint}.
1451
+ * @param regionId The public region ID.
1452
+ */
1453
+ set regionId(regionId: string);
1454
+ /**
1455
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1456
+ */
1457
+ shutdownCircuitBreaker(): void;
1458
+ /**
1459
+ * Close the provider if possible which in turn shuts down any associated circuit breaker
1460
+ */
1461
+ closeProvider(): void;
1462
+ /**
1463
+ * Close the client once it is no longer needed
1464
+ */
1465
+ close(): void;
1466
+ /**
1467
+ * (Preview) Returns complete lineage for the provided anchor node in CSV format.
1468
+ *
1469
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1470
+ * @param ExportLineageRequest
1471
+ * @return ExportLineageResponse
1472
+ * @throws OciError when an error occurs
1473
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/aidp/ExportLineage.ts.html |here} to see how to use ExportLineage API.
1474
+ */
1475
+ exportLineage(exportLineageRequest: requests.ExportLineageRequest): Promise<responses.ExportLineageResponse>;
1476
+ /**
1477
+ * (Preview) Returns lineage for a given entity object.
1478
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
1479
+ * @param FetchEntityLineageRequest
1480
+ * @return FetchEntityLineageResponse
1481
+ * @throws OciError when an error occurs
1482
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/aidp/FetchEntityLineage.ts.html |here} to see how to use FetchEntityLineage API.
1483
+ */
1484
+ fetchEntityLineage(fetchEntityLineageRequest: requests.FetchEntityLineageRequest): Promise<responses.FetchEntityLineageResponse>;
1485
+ }
1401
1486
  export declare enum DeltaShareApiKeys {
1402
1487
  }
1403
1488
  /**
@@ -2970,91 +3055,6 @@ export declare class SchemaClient {
2970
3055
  */
2971
3056
  updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
2972
3057
  }
2973
- export declare enum SemanticCatalogApiKeys {
2974
- }
2975
- /**
2976
- * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
2977
- */
2978
- export declare class SemanticCatalogClient {
2979
- protected static serviceEndpointTemplate: string;
2980
- protected static endpointServiceName: string;
2981
- protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
2982
- protected "_endpoint": string;
2983
- protected "_defaultHeaders": any;
2984
- protected "_clientConfiguration": common.ClientConfiguration;
2985
- protected _circuitBreaker: typeof Breaker | null;
2986
- protected _httpOptions: any;
2987
- protected _bodyDuplexMode: any;
2988
- targetService: string;
2989
- protected _regionId: string;
2990
- protected "_region": common.Region;
2991
- protected _lastSetRegionOrRegionId: string;
2992
- protected _httpClient: common.HttpClient;
2993
- protected _authProvider: common.AuthenticationDetailsProvider | undefined;
2994
- constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
2995
- /**
2996
- * Get the endpoint that is being used to call (ex, https://www.example.com).
2997
- */
2998
- get endpoint(): string;
2999
- /**
3000
- * Sets the endpoint to call (ex, https://www.example.com).
3001
- * @param endpoint The endpoint of the service.
3002
- */
3003
- set endpoint(endpoint: string);
3004
- get logger(): import("oci-common/lib/log").Logger;
3005
- /**
3006
- * Determines whether realm specific endpoint should be used or not.
3007
- * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
3008
- * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
3009
- */
3010
- set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
3011
- /**
3012
- * Sets the region to call (ex, Region.US_PHOENIX_1).
3013
- * Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
3014
- * @param region The region of the service.
3015
- */
3016
- set region(region: common.Region);
3017
- /**
3018
- * Sets the regionId to call (ex, 'us-phoenix-1').
3019
- *
3020
- * Note, this will first try to map the region ID to a known Region and call {@link #region(Region) region}.
3021
- * If no known Region could be determined, it will create an endpoint assuming its in default Realm OC1
3022
- * and then call {@link #endpoint(String) endpoint}.
3023
- * @param regionId The public region ID.
3024
- */
3025
- set regionId(regionId: string);
3026
- /**
3027
- * Shutdown the circuit breaker used by the client when it is no longer needed
3028
- */
3029
- shutdownCircuitBreaker(): void;
3030
- /**
3031
- * Close the provider if possible which in turn shuts down any associated circuit breaker
3032
- */
3033
- closeProvider(): void;
3034
- /**
3035
- * Close the client once it is no longer needed
3036
- */
3037
- close(): void;
3038
- /**
3039
- * (Preview) Returns complete lineage for the provided anchor node in CSV format.
3040
- *
3041
- * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3042
- * @param ExportLineageRequest
3043
- * @return ExportLineageResponse
3044
- * @throws OciError when an error occurs
3045
- * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/aidp/ExportLineage.ts.html |here} to see how to use ExportLineage API.
3046
- */
3047
- exportLineage(exportLineageRequest: requests.ExportLineageRequest): Promise<responses.ExportLineageResponse>;
3048
- /**
3049
- * (Preview) Returns lineage for a given entity object.
3050
- * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3051
- * @param FetchEntityLineageRequest
3052
- * @return FetchEntityLineageResponse
3053
- * @throws OciError when an error occurs
3054
- * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/aidp/FetchEntityLineage.ts.html |here} to see how to use FetchEntityLineage API.
3055
- */
3056
- fetchEntityLineage(fetchEntityLineageRequest: requests.FetchEntityLineageRequest): Promise<responses.FetchEntityLineageResponse>;
3057
- }
3058
3058
  export declare enum UserSettingApiKeys {
3059
3059
  }
3060
3060
  /**