oci-functions 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 (43) hide show
  1. package/lib/client.d.ts +17 -17
  2. package/lib/client.js +17 -17
  3. package/lib/model/application-summary.d.ts +8 -8
  4. package/lib/model/application.d.ts +10 -10
  5. package/lib/model/create-application-details.d.ts +8 -8
  6. package/lib/model/create-function-details.d.ts +5 -5
  7. package/lib/model/function-summary.d.ts +7 -7
  8. package/lib/model/function.d.ts +8 -8
  9. package/lib/model/pbf-listing-summary.d.ts +3 -3
  10. package/lib/model/pbf-listing-version-summary.d.ts +3 -3
  11. package/lib/model/pbf-listing-version.d.ts +3 -3
  12. package/lib/model/pbf-listing.d.ts +3 -3
  13. package/lib/model/update-application-details.d.ts +4 -4
  14. package/lib/model/update-function-details.d.ts +5 -5
  15. package/lib/request/change-application-compartment-request.d.ts +2 -2
  16. package/lib/request/create-application-request.d.ts +1 -1
  17. package/lib/request/create-function-request.d.ts +1 -1
  18. package/lib/request/delete-application-request.d.ts +2 -2
  19. package/lib/request/delete-function-request.d.ts +2 -2
  20. package/lib/request/get-application-request.d.ts +1 -1
  21. package/lib/request/get-function-request.d.ts +1 -1
  22. package/lib/request/get-pbf-listing-request.d.ts +1 -1
  23. package/lib/request/get-pbf-listing-version-request.d.ts +1 -1
  24. package/lib/request/invoke-function-request.d.ts +1 -1
  25. package/lib/request/list-applications-request.d.ts +3 -3
  26. package/lib/request/list-functions-request.d.ts +3 -3
  27. package/lib/request/list-pbf-listing-versions-request.d.ts +1 -1
  28. package/lib/request/list-pbf-listings-request.d.ts +1 -1
  29. package/lib/request/list-triggers-request.d.ts +1 -1
  30. package/lib/request/update-application-request.d.ts +2 -2
  31. package/lib/request/update-function-request.d.ts +2 -2
  32. package/lib/response/create-application-response.d.ts +2 -2
  33. package/lib/response/create-function-response.d.ts +2 -2
  34. package/lib/response/get-application-response.d.ts +2 -2
  35. package/lib/response/get-function-response.d.ts +2 -2
  36. package/lib/response/get-pbf-listing-response.d.ts +1 -1
  37. package/lib/response/get-pbf-listing-version-response.d.ts +1 -1
  38. package/lib/response/list-pbf-listing-versions-response.d.ts +1 -1
  39. package/lib/response/list-pbf-listings-response.d.ts +1 -1
  40. package/lib/response/list-triggers-response.d.ts +1 -1
  41. package/lib/response/update-application-response.d.ts +2 -2
  42. package/lib/response/update-function-response.d.ts +2 -2
  43. package/package.json +3 -3
@@ -44,20 +44,20 @@ export interface Function {
44
44
  /**
45
45
  * The qualified name of the Docker image to use in the function, including the image tag.
46
46
  * The image should be in the OCI Registry that is in the same region as the function itself.
47
- * Example: `phx.ocir.io/ten/functions/function:0.0.1`
47
+ * Example: {@code phx.ocir.io/ten/functions/function:0.0.1}
48
48
  *
49
49
  */
50
50
  "image"?: string;
51
51
  /**
52
52
  * The image digest for the version of the image that will be pulled when invoking this function.
53
53
  * If no value is specified, the digest currently associated with the image in the OCI Registry will be used.
54
- * Example: `sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7`
54
+ * Example: {@code sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7}
55
55
  *
56
56
  */
57
57
  "imageDigest"?: string;
58
58
  "sourceDetails"?: model.PreBuiltFunctionSourceDetails;
59
59
  /**
60
- * The processor shape (`GENERIC_X86`/`GENERIC_ARM`) on which to run functions in the application, extracted from the image manifest.
60
+ * The processor shape ({@code GENERIC_X86}/{@code GENERIC_ARM}) on which to run functions in the application, extracted from the image manifest.
61
61
  *
62
62
  */
63
63
  "shape"?: Function.Shape;
@@ -69,7 +69,7 @@ export interface Function {
69
69
  * Function configuration. Overrides application configuration.
70
70
  * Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters.
71
71
  * <p>
72
- Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}`
72
+ Example: {@code {\"MY_FUNCTION_CONFIG\": \"ConfVal\"}}
73
73
  * <p>
74
74
  The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
75
75
  *
@@ -87,7 +87,7 @@ export interface Function {
87
87
  * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
88
88
  * For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
89
89
  * <p>
90
- Example: `{\"Department\": \"Finance\"}`
90
+ Example: {@code {\"Department\": \"Finance\"}}
91
91
  *
92
92
  */
93
93
  "freeformTags"?: {
@@ -101,7 +101,7 @@ export interface Function {
101
101
  /**
102
102
  * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
103
103
  * <p>
104
- Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
104
+ Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
105
105
  *
106
106
  */
107
107
  "definedTags"?: {
@@ -113,7 +113,7 @@ export interface Function {
113
113
  * The time the function was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339)
114
114
  * timestamp format.
115
115
  * <p>
116
- Example: `2018-09-12T22:47:12.613Z`
116
+ Example: {@code 2018-09-12T22:47:12.613Z}
117
117
  *
118
118
  */
119
119
  "timeCreated"?: Date;
@@ -121,7 +121,7 @@ export interface Function {
121
121
  * The time the function was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339)
122
122
  * timestamp format.
123
123
  * <p>
124
- Example: `2018-09-12T22:47:12.613Z`
124
+ Example: {@code 2018-09-12T22:47:12.613Z}
125
125
  *
126
126
  */
127
127
  "timeUpdated"?: Date;
@@ -49,7 +49,7 @@ export interface PbfListingSummary {
49
49
  "lifecycleState": string;
50
50
  /**
51
51
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
52
- * Example: `{\"bar-key\": \"value\"}`
52
+ * Example: {@code {\"bar-key\": \"value\"}}
53
53
  *
54
54
  */
55
55
  "freeformTags"?: {
@@ -57,7 +57,7 @@ export interface PbfListingSummary {
57
57
  };
58
58
  /**
59
59
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
60
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
60
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
61
61
  *
62
62
  */
63
63
  "definedTags"?: {
@@ -67,7 +67,7 @@ export interface PbfListingSummary {
67
67
  };
68
68
  /**
69
69
  * System tags for this resource. Each key is predefined and scoped to a namespace.
70
- * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
70
+ * Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
71
71
  *
72
72
  */
73
73
  "systemTags"?: {
@@ -56,7 +56,7 @@ export interface PbfListingVersionSummary {
56
56
  "lifecycleState": string;
57
57
  /**
58
58
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
59
- * Example: `{\"bar-key\": \"value\"}`
59
+ * Example: {@code {\"bar-key\": \"value\"}}
60
60
  *
61
61
  */
62
62
  "freeformTags"?: {
@@ -64,7 +64,7 @@ export interface PbfListingVersionSummary {
64
64
  };
65
65
  /**
66
66
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
67
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
67
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
68
68
  *
69
69
  */
70
70
  "definedTags"?: {
@@ -74,7 +74,7 @@ export interface PbfListingVersionSummary {
74
74
  };
75
75
  /**
76
76
  * System tags for this resource. Each key is predefined and scoped to a namespace.
77
- * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
77
+ * Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
78
78
  *
79
79
  */
80
80
  "systemTags"?: {
@@ -58,7 +58,7 @@ export interface PbfListingVersion {
58
58
  "lifecycleState": PbfListingVersion.LifecycleState;
59
59
  /**
60
60
  * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
61
- * Example: `{\"bar-key\": \"value\"}`
61
+ * Example: {@code {\"bar-key\": \"value\"}}
62
62
  *
63
63
  */
64
64
  "freeformTags"?: {
@@ -66,7 +66,7 @@ export interface PbfListingVersion {
66
66
  };
67
67
  /**
68
68
  * Defined tags for this resource. Each key is predefined and scoped to a namespace.
69
- * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
69
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
70
70
  *
71
71
  */
72
72
  "definedTags"?: {
@@ -76,7 +76,7 @@ export interface PbfListingVersion {
76
76
  };
77
77
  /**
78
78
  * System tags for this resource. Each key is predefined and scoped to a namespace.
79
- * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
79
+ * Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
80
80
  *
81
81
  */
82
82
  "systemTags"?: {
@@ -52,7 +52,7 @@ export interface PbfListing {
52
52
  "lifecycleState": PbfListing.LifecycleState;
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 PbfListing {
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\"}}`
63
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
64
64
  *
65
65
  */
66
66
  "definedTags"?: {
@@ -70,7 +70,7 @@ export interface PbfListing {
70
70
  };
71
71
  /**
72
72
  * System tags for this resource. Each key is predefined and scoped to a namespace.
73
- * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
73
+ * Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
74
74
  *
75
75
  */
76
76
  "systemTags"?: {
@@ -21,7 +21,7 @@ export interface UpdateApplicationDetails {
21
21
  * Application configuration. These values are passed on to the function as environment variables, functions may override application configuration.
22
22
  * Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters.
23
23
  * <p>
24
- Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}`
24
+ Example: {@code {\"MY_FUNCTION_CONFIG\": \"ConfVal\"}}
25
25
  * <p>
26
26
  The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
27
27
  *
@@ -39,7 +39,7 @@ export interface UpdateApplicationDetails {
39
39
  * The syslog URL must be reachable from all of the subnets configured for the application.
40
40
  * Note: If you enable the OCI Logging service for this application, the syslogUrl value is ignored. Function logs are sent to the OCI Logging service, and not to the syslog URL.
41
41
  * <p>
42
- Example: `tcp://logserver.myserver:1234`
42
+ Example: {@code tcp://logserver.myserver:1234}
43
43
  *
44
44
  */
45
45
  "syslogUrl"?: string;
@@ -48,7 +48,7 @@ export interface UpdateApplicationDetails {
48
48
  * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
49
49
  * For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
50
50
  * <p>
51
- Example: `{\"Department\": \"Finance\"}`
51
+ Example: {@code {\"Department\": \"Finance\"}}
52
52
  *
53
53
  */
54
54
  "freeformTags"?: {
@@ -57,7 +57,7 @@ export interface UpdateApplicationDetails {
57
57
  /**
58
58
  * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
59
59
  * <p>
60
- Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
60
+ Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
61
61
  *
62
62
  */
63
63
  "definedTags"?: {
@@ -21,13 +21,13 @@ export interface UpdateFunctionDetails {
21
21
  * The qualified name of the Docker image to use in the function, including the image tag.
22
22
  * The image should be in the OCI Registry that is in the same region as the function itself.
23
23
  * If an image is specified but no value for imageDigest is provided, the digest currently associated with the image tag in the OCI Registry will be used.
24
- * Example: `phx.ocir.io/ten/functions/function:0.0.1`
24
+ * Example: {@code phx.ocir.io/ten/functions/function:0.0.1}
25
25
  *
26
26
  */
27
27
  "image"?: string;
28
28
  /**
29
29
  * The image digest for the version of the image that will be pulled when invoking this function.
30
- * Example: `sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7`
30
+ * Example: {@code sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7}
31
31
  *
32
32
  */
33
33
  "imageDigest"?: string;
@@ -39,7 +39,7 @@ export interface UpdateFunctionDetails {
39
39
  * Function configuration. These values are passed on to the function as environment variables, this overrides application configuration values.
40
40
  * Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters.
41
41
  * <p>
42
- Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}`
42
+ Example: {@code {\"MY_FUNCTION_CONFIG\": \"ConfVal\"}}
43
43
  * <p>
44
44
  The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
45
45
  *
@@ -56,7 +56,7 @@ export interface UpdateFunctionDetails {
56
56
  /**
57
57
  * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
58
58
  * For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
59
- * Example: `{\"Department\": \"Finance\"}`
59
+ * Example: {@code {\"Department\": \"Finance\"}}
60
60
  *
61
61
  */
62
62
  "freeformTags"?: {
@@ -65,7 +65,7 @@ export interface UpdateFunctionDetails {
65
65
  /**
66
66
  * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
67
67
  * <p>
68
- Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
68
+ Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
69
69
  *
70
70
  */
71
71
  "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/functions/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartmentRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartmentRequest.
17
17
  */
18
18
  export interface ChangeApplicationCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface ChangeApplicationCompartmentRequest extends common.BaseRequest
26
26
  */
27
27
  "changeApplicationCompartmentDetails": model.ChangeApplicationCompartmentDetails;
28
28
  /**
29
- * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
29
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
30
30
  * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
31
31
  * will be updated or deleted only if the etag you provide matches the resource's current etag value.
32
32
  *
@@ -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/functions/CreateApplication.ts.html |here} to see how to use CreateApplicationRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/CreateApplication.ts.html |here} to see how to use CreateApplicationRequest.
17
17
  */
18
18
  export interface CreateApplicationRequest 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/functions/CreateFunction.ts.html |here} to see how to use CreateFunctionRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/CreateFunction.ts.html |here} to see how to use CreateFunctionRequest.
17
17
  */
18
18
  export interface CreateFunctionRequest 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/functions/DeleteApplication.ts.html |here} to see how to use DeleteApplicationRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/DeleteApplication.ts.html |here} to see how to use DeleteApplicationRequest.
16
16
  */
17
17
  export interface DeleteApplicationRequest extends common.BaseRequest {
18
18
  /**
@@ -21,7 +21,7 @@ export interface DeleteApplicationRequest extends common.BaseRequest {
21
21
  */
22
22
  "applicationId": string;
23
23
  /**
24
- * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
24
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
25
25
  * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
26
26
  * will be updated or deleted only if the etag you provide matches the resource's current etag value.
27
27
  *
@@ -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/functions/DeleteFunction.ts.html |here} to see how to use DeleteFunctionRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/DeleteFunction.ts.html |here} to see how to use DeleteFunctionRequest.
16
16
  */
17
17
  export interface DeleteFunctionRequest extends common.BaseRequest {
18
18
  /**
@@ -21,7 +21,7 @@ export interface DeleteFunctionRequest extends common.BaseRequest {
21
21
  */
22
22
  "functionId": string;
23
23
  /**
24
- * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
24
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
25
25
  * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
26
26
  * will be updated or deleted only if the etag you provide matches the resource's current etag value.
27
27
  *
@@ -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/functions/GetApplication.ts.html |here} to see how to use GetApplicationRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/GetApplication.ts.html |here} to see how to use GetApplicationRequest.
16
16
  */
17
17
  export interface GetApplicationRequest 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/functions/GetFunction.ts.html |here} to see how to use GetFunctionRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/GetFunction.ts.html |here} to see how to use GetFunctionRequest.
16
16
  */
17
17
  export interface GetFunctionRequest 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/functions/GetPbfListing.ts.html |here} to see how to use GetPbfListingRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/GetPbfListing.ts.html |here} to see how to use GetPbfListingRequest.
16
16
  */
17
17
  export interface GetPbfListingRequest 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/functions/GetPbfListingVersion.ts.html |here} to see how to use GetPbfListingVersionRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/GetPbfListingVersion.ts.html |here} to see how to use GetPbfListingVersionRequest.
16
16
  */
17
17
  export interface GetPbfListingVersionRequest extends common.BaseRequest {
18
18
  /**
@@ -14,7 +14,7 @@
14
14
  import common = require("oci-common");
15
15
  import stream = require("stream");
16
16
  /**
17
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/functions/InvokeFunction.ts.html |here} to see how to use InvokeFunctionRequest.
17
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/InvokeFunction.ts.html |here} to see how to use InvokeFunctionRequest.
18
18
  */
19
19
  export interface InvokeFunctionRequest extends common.BaseRequest {
20
20
  /**
@@ -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/functions/ListApplications.ts.html |here} to see how to use ListApplicationsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/ListApplications.ts.html |here} to see how to use ListApplicationsRequest.
16
16
  */
17
17
  export interface ListApplicationsRequest extends common.BaseRequest {
18
18
  /**
@@ -40,7 +40,7 @@ export interface ListApplicationsRequest extends common.BaseRequest {
40
40
  "opcRequestId"?: string;
41
41
  /**
42
42
  * A filter to return only applications that match the lifecycle state in this parameter.
43
- * Example: `Creating`
43
+ * Example: {@code Creating}
44
44
  *
45
45
  */
46
46
  "lifecycleState"?: string;
@@ -65,7 +65,7 @@ export interface ListApplicationsRequest extends common.BaseRequest {
65
65
  /**
66
66
  * Specifies the attribute with which to sort the rules.
67
67
  * <p>
68
- Default: `displayName`
68
+ Default: {@code displayName}
69
69
  * <p>
70
70
  * **timeCreated:** Sorts by timeCreated.
71
71
  * * **displayName:** Sorts by displayName.
@@ -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/functions/ListFunctions.ts.html |here} to see how to use ListFunctionsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/ListFunctions.ts.html |here} to see how to use ListFunctionsRequest.
16
16
  */
17
17
  export interface ListFunctionsRequest extends common.BaseRequest {
18
18
  /**
@@ -40,7 +40,7 @@ export interface ListFunctionsRequest extends common.BaseRequest {
40
40
  "opcRequestId"?: string;
41
41
  /**
42
42
  * A filter to return only functions that match the lifecycle state in this parameter.
43
- * Example: `Creating`
43
+ * Example: {@code Creating}
44
44
  *
45
45
  */
46
46
  "lifecycleState"?: string;
@@ -65,7 +65,7 @@ export interface ListFunctionsRequest extends common.BaseRequest {
65
65
  /**
66
66
  * Specifies the attribute with which to sort the rules.
67
67
  * <p>
68
- Default: `displayName`
68
+ Default: {@code displayName}
69
69
  * <p>
70
70
  * **timeCreated:** Sorts by timeCreated.
71
71
  * * **displayName:** Sorts by displayName.
@@ -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/functions/ListPbfListingVersions.ts.html |here} to see how to use ListPbfListingVersionsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/ListPbfListingVersions.ts.html |here} to see how to use ListPbfListingVersionsRequest.
16
16
  */
17
17
  export interface ListPbfListingVersionsRequest 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/functions/ListPbfListings.ts.html |here} to see how to use ListPbfListingsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/ListPbfListings.ts.html |here} to see how to use ListPbfListingsRequest.
16
16
  */
17
17
  export interface ListPbfListingsRequest 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/functions/ListTriggers.ts.html |here} to see how to use ListTriggersRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/ListTriggers.ts.html |here} to see how to use ListTriggersRequest.
16
16
  */
17
17
  export interface ListTriggersRequest 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/functions/UpdateApplication.ts.html |here} to see how to use UpdateApplicationRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/UpdateApplication.ts.html |here} to see how to use UpdateApplicationRequest.
17
17
  */
18
18
  export interface UpdateApplicationRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface UpdateApplicationRequest extends common.BaseRequest {
26
26
  */
27
27
  "updateApplicationDetails": model.UpdateApplicationDetails;
28
28
  /**
29
- * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
29
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
30
30
  * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
31
31
  * will be updated or deleted only if the etag you provide matches the resource's current etag value.
32
32
  *
@@ -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/functions/UpdateFunction.ts.html |here} to see how to use UpdateFunctionRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/functions/UpdateFunction.ts.html |here} to see how to use UpdateFunctionRequest.
17
17
  */
18
18
  export interface UpdateFunctionRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface UpdateFunctionRequest extends common.BaseRequest {
26
26
  */
27
27
  "updateFunctionDetails": model.UpdateFunctionDetails;
28
28
  /**
29
- * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
29
+ * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
30
30
  * parameter to the value of the etag from a previous GET or POST response for that resource. The resource
31
31
  * will be updated or deleted only if the etag you provide matches the resource's current etag value.
32
32
  *
@@ -13,9 +13,9 @@
13
13
  import * as model from "../model";
14
14
  export interface CreateApplicationResponse {
15
15
  /**
16
- * For optimistic concurrency control. Add this value to the `if-match` parameter
16
+ * For optimistic concurrency control. Add this value to the {@code if-match} parameter
17
17
  * in a PUT or DELETE operation. The resource will be updated only if the value you
18
- * provide matches the `etag` on the resource.
18
+ * provide matches the {@code etag} on the resource.
19
19
  *
20
20
  */
21
21
  "etag": string;
@@ -13,9 +13,9 @@
13
13
  import * as model from "../model";
14
14
  export interface CreateFunctionResponse {
15
15
  /**
16
- * For optimistic concurrency control. Add this value to the `if-match` parameter
16
+ * For optimistic concurrency control. Add this value to the {@code if-match} parameter
17
17
  * in a PUT or DELETE operation. The resource will be updated only if the value you
18
- * provide matches the `etag` on the resource.
18
+ * provide matches the {@code etag} on the resource.
19
19
  *
20
20
  */
21
21
  "etag": string;
@@ -13,9 +13,9 @@
13
13
  import * as model from "../model";
14
14
  export interface GetApplicationResponse {
15
15
  /**
16
- * For optimistic concurrency control. Add this value to the `if-match` parameter
16
+ * For optimistic concurrency control. Add this value to the {@code if-match} parameter
17
17
  * in a PUT or DELETE operation. The resource will be updated only if the value you
18
- * provide matches the `etag` on the resource.
18
+ * provide matches the {@code etag} on the resource.
19
19
  *
20
20
  */
21
21
  "etag": string;
@@ -13,9 +13,9 @@
13
13
  import * as model from "../model";
14
14
  export interface GetFunctionResponse {
15
15
  /**
16
- * For optimistic concurrency control. Add this value to the `if-match` parameter
16
+ * For optimistic concurrency control. Add this value to the {@code if-match} parameter
17
17
  * in a PUT or DELETE operation. The resource will be updated only if the value you
18
- * provide matches the `etag` on the resource.
18
+ * provide matches the {@code etag} on the resource.
19
19
  *
20
20
  */
21
21
  "etag": string;
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  export interface GetPbfListingResponse {
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 GetPbfListingVersionResponse {
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 ListPbfListingVersionsResponse {
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 ListPbfListingsResponse {
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 ListTriggersResponse {
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
  */
@@ -13,9 +13,9 @@
13
13
  import * as model from "../model";
14
14
  export interface UpdateApplicationResponse {
15
15
  /**
16
- * For optimistic concurrency control. Add this value to the `if-match` parameter
16
+ * For optimistic concurrency control. Add this value to the {@code if-match} parameter
17
17
  * in a PUT or DELETE operation. The resource will be updated only if the value you
18
- * provide matches the `etag` on the resource.
18
+ * provide matches the {@code etag} on the resource.
19
19
  *
20
20
  */
21
21
  "etag": string;