|
8 | 8 | import com.oracle.bmc.apmconfig.responses.*;
|
9 | 9 |
|
10 | 10 | /**
|
11 |
| - * An API for the APM Configuration service. Use this API to query and set APM configuration. |
| 11 | + * Use the Application Performance Monitoring Configuration API to query and set Application Performance Monitoring |
| 12 | + * configuration. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html). |
| 13 | + * |
12 | 14 | * This service client uses CircuitBreakerUtils.DEFAULT_CIRCUIT_BREAKER for all the operations by default if no circuit breaker configuration is defined by the user.
|
13 | 15 | */
|
14 | 16 | @javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210201")
|
@@ -47,59 +49,59 @@ public interface Config extends AutoCloseable {
|
47 | 49 | void setRegion(String regionId);
|
48 | 50 |
|
49 | 51 | /**
|
50 |
| - * Creates a new Configuration item. |
| 52 | + * Creates a new configuration item. |
51 | 53 | * @param request The request object containing the details to send
|
52 | 54 | * @return A response object containing details about the completed operation
|
53 | 55 | * @throws BmcException when an error occurs.
|
54 |
| - * This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. |
| 56 | + * This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. |
55 | 57 | * The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries
|
56 | 58 | *
|
57 | 59 | * <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/CreateConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use CreateConfig API.
|
58 | 60 | */
|
59 | 61 | CreateConfigResponse createConfig(CreateConfigRequest request);
|
60 | 62 |
|
61 | 63 | /**
|
62 |
| - * Deletes the specified configuration item |
| 64 | + * Deletes the configuration item identified by the OCID. |
63 | 65 | * @param request The request object containing the details to send
|
64 | 66 | * @return A response object containing details about the completed operation
|
65 | 67 | * @throws BmcException when an error occurs.
|
66 |
| - * This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. |
| 68 | + * This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. |
67 | 69 | * The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries
|
68 | 70 | *
|
69 | 71 | * <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/DeleteConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DeleteConfig API.
|
70 | 72 | */
|
71 | 73 | DeleteConfigResponse deleteConfig(DeleteConfigRequest request);
|
72 | 74 |
|
73 | 75 | /**
|
74 |
| - * Get the configuration of the item identified by the OCID. |
| 76 | + * Gets the configuration item identified by the OCID. |
75 | 77 | * @param request The request object containing the details to send
|
76 | 78 | * @return A response object containing details about the completed operation
|
77 | 79 | * @throws BmcException when an error occurs.
|
78 |
| - * This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. |
| 80 | + * This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. |
79 | 81 | * The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries
|
80 | 82 | *
|
81 | 83 | * <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/GetConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use GetConfig API.
|
82 | 84 | */
|
83 | 85 | GetConfigResponse getConfig(GetConfigRequest request);
|
84 | 86 |
|
85 | 87 | /**
|
86 |
| - * Returns all configured items optionally filtered by configuration type |
| 88 | + * Returns all configuration items, which can optionally be filtered by configuration type. |
87 | 89 | * @param request The request object containing the details to send
|
88 | 90 | * @return A response object containing details about the completed operation
|
89 | 91 | * @throws BmcException when an error occurs.
|
90 |
| - * This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. |
| 92 | + * This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. |
91 | 93 | * The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries
|
92 | 94 | *
|
93 | 95 | * <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/ListConfigsExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use ListConfigs API.
|
94 | 96 | */
|
95 | 97 | ListConfigsResponse listConfigs(ListConfigsRequest request);
|
96 | 98 |
|
97 | 99 | /**
|
98 |
| - * Updates the item. |
| 100 | + * Updates the details of the configuration item identified by the OCID. |
99 | 101 | * @param request The request object containing the details to send
|
100 | 102 | * @return A response object containing details about the completed operation
|
101 | 103 | * @throws BmcException when an error occurs.
|
102 |
| - * This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. |
| 104 | + * This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. |
103 | 105 | * The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries
|
104 | 106 | *
|
105 | 107 | * <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/UpdateConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use UpdateConfig API.
|
|
0 commit comments