oci-recovery 2.76.1 → 2.77.0

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.
Files changed (51) hide show
  1. package/lib/client.d.ts +23 -23
  2. package/lib/client.js +23 -23
  3. package/lib/model/create-protected-database-details.d.ts +2 -2
  4. package/lib/model/create-protection-policy-details.d.ts +2 -2
  5. package/lib/model/create-recovery-service-subnet-details.d.ts +2 -2
  6. package/lib/model/protected-database-summary.d.ts +3 -3
  7. package/lib/model/protected-database.d.ts +3 -3
  8. package/lib/model/protection-policy-summary.d.ts +3 -3
  9. package/lib/model/protection-policy.d.ts +3 -3
  10. package/lib/model/recovery-service-subnet-summary.d.ts +3 -3
  11. package/lib/model/recovery-service-subnet.d.ts +3 -3
  12. package/lib/model/update-protected-database-details.d.ts +2 -2
  13. package/lib/model/update-protection-policy-details.d.ts +2 -2
  14. package/lib/model/update-recovery-service-subnet-details.d.ts +2 -2
  15. package/lib/request/change-protected-database-compartment-request.d.ts +2 -2
  16. package/lib/request/change-protection-policy-compartment-request.d.ts +2 -2
  17. package/lib/request/change-recovery-service-subnet-compartment-request.d.ts +2 -2
  18. package/lib/request/create-protected-database-request.d.ts +1 -1
  19. package/lib/request/create-protection-policy-request.d.ts +1 -1
  20. package/lib/request/create-recovery-service-subnet-request.d.ts +1 -1
  21. package/lib/request/delete-protected-database-request.d.ts +2 -2
  22. package/lib/request/delete-protection-policy-request.d.ts +2 -2
  23. package/lib/request/delete-recovery-service-subnet-request.d.ts +2 -2
  24. package/lib/request/fetch-protected-database-configuration-request.d.ts +2 -2
  25. package/lib/request/get-protected-database-request.d.ts +1 -1
  26. package/lib/request/get-protection-policy-request.d.ts +1 -1
  27. package/lib/request/get-recovery-service-subnet-request.d.ts +1 -1
  28. package/lib/request/get-work-request-request.d.ts +1 -1
  29. package/lib/request/list-protected-databases-request.d.ts +1 -1
  30. package/lib/request/list-protection-policies-request.d.ts +1 -1
  31. package/lib/request/list-recovery-service-subnets-request.d.ts +1 -1
  32. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  33. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  34. package/lib/request/list-work-requests-request.d.ts +1 -1
  35. package/lib/request/update-protected-database-request.d.ts +2 -2
  36. package/lib/request/update-protection-policy-request.d.ts +2 -2
  37. package/lib/request/update-recovery-service-subnet-request.d.ts +2 -2
  38. package/lib/response/create-protected-database-response.d.ts +1 -1
  39. package/lib/response/create-protection-policy-response.d.ts +1 -1
  40. package/lib/response/create-recovery-service-subnet-response.d.ts +1 -1
  41. package/lib/response/fetch-protected-database-configuration-response.d.ts +1 -1
  42. package/lib/response/get-protected-database-response.d.ts +1 -1
  43. package/lib/response/get-protection-policy-response.d.ts +1 -1
  44. package/lib/response/get-recovery-service-subnet-response.d.ts +1 -1
  45. package/lib/response/list-protected-databases-response.d.ts +1 -1
  46. package/lib/response/list-protection-policies-response.d.ts +1 -1
  47. package/lib/response/list-recovery-service-subnets-response.d.ts +1 -1
  48. package/lib/response/list-work-request-errors-response.d.ts +1 -1
  49. package/lib/response/list-work-request-logs-response.d.ts +1 -1
  50. package/lib/response/list-work-requests-response.d.ts +1 -1
  51. package/package.json +3 -3
@@ -66,7 +66,7 @@ export interface RecoveryServiceSubnet {
66
66
  "lifecycleDetails"?: string;
67
67
  /**
68
68
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
69
- * Example: `{\"bar-key\": \"value\"}`
69
+ * Example: {@code {\"bar-key\": \"value\"}}
70
70
  *
71
71
  */
72
72
  "freeformTags"?: {
@@ -74,7 +74,7 @@ export interface RecoveryServiceSubnet {
74
74
  };
75
75
  /**
76
76
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
77
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
77
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
78
78
  *
79
79
  */
80
80
  "definedTags"?: {
@@ -84,7 +84,7 @@ export interface RecoveryServiceSubnet {
84
84
  };
85
85
  /**
86
86
  * Usage of system tag keys. These predefined keys are scoped to namespaces.
87
- * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
87
+ * Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
88
88
  *
89
89
  */
90
90
  "systemTags"?: {
@@ -52,7 +52,7 @@ export interface UpdateProtectedDatabaseDetails {
52
52
  "isRedoLogsShipped"?: boolean;
53
53
  /**
54
54
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
55
- * Example: `{\"bar-key\": \"value\"}`
55
+ * Example: {@code {\"bar-key\": \"value\"}}
56
56
  *
57
57
  */
58
58
  "freeformTags"?: {
@@ -60,7 +60,7 @@ export interface UpdateProtectedDatabaseDetails {
60
60
  };
61
61
  /**
62
62
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
63
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
63
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
64
64
  *
65
65
  */
66
66
  "definedTags"?: {
@@ -24,7 +24,7 @@ export interface UpdateProtectionPolicyDetails {
24
24
  "backupRetentionPeriodInDays"?: number;
25
25
  /**
26
26
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
27
- * Example: `{\"bar-key\": \"value\"}`
27
+ * Example: {@code {\"bar-key\": \"value\"}}
28
28
  *
29
29
  */
30
30
  "freeformTags"?: {
@@ -32,7 +32,7 @@ export interface UpdateProtectionPolicyDetails {
32
32
  };
33
33
  /**
34
34
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
35
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
35
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
36
36
  *
37
37
  */
38
38
  "definedTags"?: {
@@ -20,7 +20,7 @@ export interface UpdateRecoveryServiceSubnetDetails {
20
20
  "displayName"?: string;
21
21
  /**
22
22
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
23
- * Example: `{\"bar-key\": \"value\"}`
23
+ * Example: {@code {\"bar-key\": \"value\"}}
24
24
  *
25
25
  */
26
26
  "freeformTags"?: {
@@ -28,7 +28,7 @@ export interface UpdateRecoveryServiceSubnetDetails {
28
28
  };
29
29
  /**
30
30
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
31
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
31
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
32
32
  *
33
33
  */
34
34
  "definedTags"?: {
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ChangeProtectedDatabaseCompartment.ts.html |here} to see how to use ChangeProtectedDatabaseCompartmentRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ChangeProtectedDatabaseCompartment.ts.html |here} to see how to use ChangeProtectedDatabaseCompartmentRequest.
17
17
  */
18
18
  export interface ChangeProtectedDatabaseCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface ChangeProtectedDatabaseCompartmentRequest extends common.BaseRe
26
26
  "changeProtectedDatabaseCompartmentDetails": model.ChangeProtectedDatabaseCompartmentDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call
29
- * for a resource, set the `if-match` parameter to the value of the
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
30
  * etag from a previous GET or POST response for that resource.
31
31
  * The resource will be updated or deleted only if the etag you
32
32
  * provide matches the resource's current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ChangeProtectionPolicyCompartment.ts.html |here} to see how to use ChangeProtectionPolicyCompartmentRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ChangeProtectionPolicyCompartment.ts.html |here} to see how to use ChangeProtectionPolicyCompartmentRequest.
17
17
  */
18
18
  export interface ChangeProtectionPolicyCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface ChangeProtectionPolicyCompartmentRequest extends common.BaseReq
26
26
  "changeProtectionPolicyCompartmentDetails": model.ChangeProtectionPolicyCompartmentDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call
29
- * for a resource, set the `if-match` parameter to the value of the
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
30
  * etag from a previous GET or POST response for that resource.
31
31
  * The resource will be updated or deleted only if the etag you
32
32
  * provide matches the resource's current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ChangeRecoveryServiceSubnetCompartment.ts.html |here} to see how to use ChangeRecoveryServiceSubnetCompartmentRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ChangeRecoveryServiceSubnetCompartment.ts.html |here} to see how to use ChangeRecoveryServiceSubnetCompartmentRequest.
17
17
  */
18
18
  export interface ChangeRecoveryServiceSubnetCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface ChangeRecoveryServiceSubnetCompartmentRequest extends common.Ba
26
26
  "changeRecoveryServiceSubnetCompartmentDetails": model.ChangeRecoveryServiceSubnetCompartmentDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call
29
- * for a resource, set the `if-match` parameter to the value of the
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
30
  * etag from a previous GET or POST response for that resource.
31
31
  * The resource will be updated or deleted only if the etag you
32
32
  * provide matches the resource's current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/CreateProtectedDatabase.ts.html |here} to see how to use CreateProtectedDatabaseRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/CreateProtectedDatabase.ts.html |here} to see how to use CreateProtectedDatabaseRequest.
17
17
  */
18
18
  export interface CreateProtectedDatabaseRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/CreateProtectionPolicy.ts.html |here} to see how to use CreateProtectionPolicyRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/CreateProtectionPolicy.ts.html |here} to see how to use CreateProtectionPolicyRequest.
17
17
  */
18
18
  export interface CreateProtectionPolicyRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/CreateRecoveryServiceSubnet.ts.html |here} to see how to use CreateRecoveryServiceSubnetRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/CreateRecoveryServiceSubnet.ts.html |here} to see how to use CreateRecoveryServiceSubnetRequest.
17
17
  */
18
18
  export interface CreateRecoveryServiceSubnetRequest extends common.BaseRequest {
19
19
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/DeleteProtectedDatabase.ts.html |here} to see how to use DeleteProtectedDatabaseRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/DeleteProtectedDatabase.ts.html |here} to see how to use DeleteProtectedDatabaseRequest.
16
16
  */
17
17
  export interface DeleteProtectedDatabaseRequest extends common.BaseRequest {
18
18
  /**
@@ -21,7 +21,7 @@ export interface DeleteProtectedDatabaseRequest extends common.BaseRequest {
21
21
  "protectedDatabaseId": string;
22
22
  /**
23
23
  * For optimistic concurrency control. In the PUT or DELETE call
24
- * for a resource, set the `if-match` parameter to the value of the
24
+ * for a resource, set the {@code if-match} parameter to the value of the
25
25
  * etag from a previous GET or POST response for that resource.
26
26
  * The resource will be updated or deleted only if the etag you
27
27
  * provide matches the resource's current etag value.
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/DeleteProtectionPolicy.ts.html |here} to see how to use DeleteProtectionPolicyRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/DeleteProtectionPolicy.ts.html |here} to see how to use DeleteProtectionPolicyRequest.
16
16
  */
17
17
  export interface DeleteProtectionPolicyRequest extends common.BaseRequest {
18
18
  /**
@@ -21,7 +21,7 @@ export interface DeleteProtectionPolicyRequest extends common.BaseRequest {
21
21
  "protectionPolicyId": string;
22
22
  /**
23
23
  * For optimistic concurrency control. In the PUT or DELETE call
24
- * for a resource, set the `if-match` parameter to the value of the
24
+ * for a resource, set the {@code if-match} parameter to the value of the
25
25
  * etag from a previous GET or POST response for that resource.
26
26
  * The resource will be updated or deleted only if the etag you
27
27
  * provide matches the resource's current etag value.
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/DeleteRecoveryServiceSubnet.ts.html |here} to see how to use DeleteRecoveryServiceSubnetRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/DeleteRecoveryServiceSubnet.ts.html |here} to see how to use DeleteRecoveryServiceSubnetRequest.
16
16
  */
17
17
  export interface DeleteRecoveryServiceSubnetRequest extends common.BaseRequest {
18
18
  /**
@@ -21,7 +21,7 @@ export interface DeleteRecoveryServiceSubnetRequest extends common.BaseRequest {
21
21
  "recoveryServiceSubnetId": string;
22
22
  /**
23
23
  * For optimistic concurrency control. In the PUT or DELETE call
24
- * for a resource, set the `if-match` parameter to the value of the
24
+ * for a resource, set the {@code if-match} parameter to the value of the
25
25
  * etag from a previous GET or POST response for that resource.
26
26
  * The resource will be updated or deleted only if the etag you
27
27
  * provide matches the resource's current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/FetchProtectedDatabaseConfiguration.ts.html |here} to see how to use FetchProtectedDatabaseConfigurationRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/FetchProtectedDatabaseConfiguration.ts.html |here} to see how to use FetchProtectedDatabaseConfigurationRequest.
17
17
  */
18
18
  export interface FetchProtectedDatabaseConfigurationRequest extends common.BaseRequest {
19
19
  /**
@@ -30,7 +30,7 @@ export interface FetchProtectedDatabaseConfigurationRequest extends common.BaseR
30
30
  "opcRequestId"?: string;
31
31
  /**
32
32
  * For optimistic concurrency control. In the PUT or DELETE call
33
- * for a resource, set the `if-match` parameter to the value of the
33
+ * for a resource, set the {@code if-match} parameter to the value of the
34
34
  * etag from a previous GET or POST response for that resource.
35
35
  * The resource will be updated or deleted only if the etag you
36
36
  * provide matches the resource's current etag value.
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/GetProtectedDatabase.ts.html |here} to see how to use GetProtectedDatabaseRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/GetProtectedDatabase.ts.html |here} to see how to use GetProtectedDatabaseRequest.
16
16
  */
17
17
  export interface GetProtectedDatabaseRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/GetProtectionPolicy.ts.html |here} to see how to use GetProtectionPolicyRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/GetProtectionPolicy.ts.html |here} to see how to use GetProtectionPolicyRequest.
16
16
  */
17
17
  export interface GetProtectionPolicyRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/GetRecoveryServiceSubnet.ts.html |here} to see how to use GetRecoveryServiceSubnetRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/GetRecoveryServiceSubnet.ts.html |here} to see how to use GetRecoveryServiceSubnetRequest.
16
16
  */
17
17
  export interface GetRecoveryServiceSubnetRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
16
16
  */
17
17
  export interface GetWorkRequestRequest extends common.BaseRequest {
18
18
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ListProtectedDatabases.ts.html |here} to see how to use ListProtectedDatabasesRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ListProtectedDatabases.ts.html |here} to see how to use ListProtectedDatabasesRequest.
17
17
  */
18
18
  export interface ListProtectedDatabasesRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ListProtectionPolicies.ts.html |here} to see how to use ListProtectionPoliciesRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ListProtectionPolicies.ts.html |here} to see how to use ListProtectionPoliciesRequest.
17
17
  */
18
18
  export interface ListProtectionPoliciesRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ListRecoveryServiceSubnets.ts.html |here} to see how to use ListRecoveryServiceSubnetsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ListRecoveryServiceSubnets.ts.html |here} to see how to use ListRecoveryServiceSubnetsRequest.
17
17
  */
18
18
  export interface ListRecoveryServiceSubnetsRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
17
17
  */
18
18
  export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
17
17
  */
18
18
  export interface ListWorkRequestLogsRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
17
17
  */
18
18
  export interface ListWorkRequestsRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/UpdateProtectedDatabase.ts.html |here} to see how to use UpdateProtectedDatabaseRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/UpdateProtectedDatabase.ts.html |here} to see how to use UpdateProtectedDatabaseRequest.
17
17
  */
18
18
  export interface UpdateProtectedDatabaseRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface UpdateProtectedDatabaseRequest extends common.BaseRequest {
26
26
  "updateProtectedDatabaseDetails": model.UpdateProtectedDatabaseDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call
29
- * for a resource, set the `if-match` parameter to the value of the
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
30
  * etag from a previous GET or POST response for that resource.
31
31
  * The resource will be updated or deleted only if the etag you
32
32
  * provide matches the resource's current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/UpdateProtectionPolicy.ts.html |here} to see how to use UpdateProtectionPolicyRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/UpdateProtectionPolicy.ts.html |here} to see how to use UpdateProtectionPolicyRequest.
17
17
  */
18
18
  export interface UpdateProtectionPolicyRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface UpdateProtectionPolicyRequest extends common.BaseRequest {
26
26
  "updateProtectionPolicyDetails": model.UpdateProtectionPolicyDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call
29
- * for a resource, set the `if-match` parameter to the value of the
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
30
  * etag from a previous GET or POST response for that resource.
31
31
  * The resource will be updated or deleted only if the etag you
32
32
  * provide matches the resource's current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/recovery/UpdateRecoveryServiceSubnet.ts.html |here} to see how to use UpdateRecoveryServiceSubnetRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/recovery/UpdateRecoveryServiceSubnet.ts.html |here} to see how to use UpdateRecoveryServiceSubnetRequest.
17
17
  */
18
18
  export interface UpdateRecoveryServiceSubnetRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface UpdateRecoveryServiceSubnetRequest extends common.BaseRequest {
26
26
  "updateRecoveryServiceSubnetDetails": model.UpdateRecoveryServiceSubnetDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call
29
- * for a resource, set the `if-match` parameter to the value of the
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
30
  * etag from a previous GET or POST response for that resource.
31
31
  * The resource will be updated or deleted only if the etag you
32
32
  * provide matches the resource's current etag value.
@@ -18,7 +18,7 @@ export interface CreateProtectedDatabaseResponse {
18
18
  */
19
19
  "location": string;
20
20
  /**
21
- * For optimistic concurrency control. See `if-match`.
21
+ * For optimistic concurrency control. See {@code if-match}.
22
22
  *
23
23
  */
24
24
  "etag": string;
@@ -18,7 +18,7 @@ export interface CreateProtectionPolicyResponse {
18
18
  */
19
19
  "location": string;
20
20
  /**
21
- * For optimistic concurrency control. See `if-match`.
21
+ * For optimistic concurrency control. See {@code if-match}.
22
22
  *
23
23
  */
24
24
  "etag": string;
@@ -18,7 +18,7 @@ export interface CreateRecoveryServiceSubnetResponse {
18
18
  */
19
19
  "location": string;
20
20
  /**
21
- * For optimistic concurrency control. See `if-match`.
21
+ * For optimistic concurrency control. See {@code if-match}.
22
22
  *
23
23
  */
24
24
  "etag": string;
@@ -14,7 +14,7 @@
14
14
  import stream = require("stream");
15
15
  export interface FetchProtectedDatabaseConfigurationResponse {
16
16
  /**
17
- * For optimistic concurrency control. See `if-match`.
17
+ * For optimistic concurrency control. See {@code if-match}.
18
18
  *
19
19
  */
20
20
  "etag": string;
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  export interface GetProtectedDatabaseResponse {
15
15
  /**
16
- * For optimistic concurrency control. See `if-match`.
16
+ * For optimistic concurrency control. See {@code if-match}.
17
17
  *
18
18
  */
19
19
  "etag": string;
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  export interface GetProtectionPolicyResponse {
15
15
  /**
16
- * For optimistic concurrency control. See `if-match`.
16
+ * For optimistic concurrency control. See {@code if-match}.
17
17
  *
18
18
  */
19
19
  "etag": string;
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  export interface GetRecoveryServiceSubnetResponse {
15
15
  /**
16
- * For optimistic concurrency control. See `if-match`.
16
+ * For optimistic concurrency control. See {@code if-match}.
17
17
  *
18
18
  */
19
19
  "etag": string;
@@ -20,7 +20,7 @@ export interface ListProtectedDatabasesResponse {
20
20
  "opcRequestId": string;
21
21
  /**
22
22
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
- * then a partial list might have been returned. Include this value as the `page` parameter for the
23
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
24
24
  * subsequent GET request to get the next batch of items.
25
25
  *
26
26
  */
@@ -20,7 +20,7 @@ export interface ListProtectionPoliciesResponse {
20
20
  "opcRequestId": string;
21
21
  /**
22
22
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
- * then a partial list might have been returned. Include this value as the `page` parameter for the
23
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
24
24
  * subsequent GET request to get the next batch of items.
25
25
  *
26
26
  */
@@ -20,7 +20,7 @@ export interface ListRecoveryServiceSubnetsResponse {
20
20
  "opcRequestId": string;
21
21
  /**
22
22
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
- * then a partial list might have been returned. Include this value as the `page` parameter for the
23
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
24
24
  * subsequent GET request to get the next batch of items.
25
25
  *
26
26
  */
@@ -14,7 +14,7 @@ import * as model from "../model";
14
14
  export interface ListWorkRequestErrorsResponse {
15
15
  /**
16
16
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
17
- * then a partial list might have been returned. Include this value as the `page` parameter for the
17
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
18
18
  * subsequent GET request to get the next batch of items.
19
19
  *
20
20
  */
@@ -14,7 +14,7 @@ import * as model from "../model";
14
14
  export interface ListWorkRequestLogsResponse {
15
15
  /**
16
16
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
17
- * then a partial list might have been returned. Include this value as the `page` parameter for the
17
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
18
18
  * subsequent GET request to get the next batch of items.
19
19
  *
20
20
  */
@@ -20,7 +20,7 @@ export interface ListWorkRequestsResponse {
20
20
  "opcRequestId": string;
21
21
  /**
22
22
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
- * then a partial list might have been returned. Include this value as the `page` parameter for the
23
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
24
24
  * subsequent GET request to get the next batch of items.
25
25
  *
26
26
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-recovery",
3
- "version": "2.76.1",
3
+ "version": "2.77.0",
4
4
  "description": "OCI NodeJS client for Recovery Service",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "license": "(UPL-1.0 OR Apache-2.0)",
17
17
  "dependencies": {
18
- "oci-common": "2.76.1",
19
- "oci-workrequests": "2.76.1"
18
+ "oci-common": "2.77.0",
19
+ "oci-workrequests": "2.77.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"