Comparing version 2.79.1 to 2.80.0
@@ -32,3 +32,3 @@ /** | ||
protected static endpointServiceName: string; | ||
protected "_realmSpecificEndpointTemplateEnabled": boolean; | ||
protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined; | ||
protected "_endpoint": string; | ||
@@ -55,2 +55,3 @@ protected "_defaultHeaders": any; | ||
set endpoint(endpoint: string); | ||
get logger(): import("oci-common/lib/log").Logger; | ||
/** | ||
@@ -87,3 +88,3 @@ * Determines whether realm specific endpoint should be used or not. | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/CreateIncident.ts.html |here} to see how to use CreateIncident API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/CreateIncident.ts.html |here} to see how to use CreateIncident API. | ||
*/ | ||
@@ -97,3 +98,3 @@ createIncident(createIncidentRequest: requests.CreateIncidentRequest): Promise<responses.CreateIncidentResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumber API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumber API. | ||
*/ | ||
@@ -107,3 +108,3 @@ getCsiNumber(getCsiNumberRequest: requests.GetCsiNumberRequest): Promise<responses.GetCsiNumberResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetIncident.ts.html |here} to see how to use GetIncident API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetIncident.ts.html |here} to see how to use GetIncident API. | ||
*/ | ||
@@ -117,3 +118,3 @@ getIncident(getIncidentRequest: requests.GetIncidentRequest): Promise<responses.GetIncidentResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetStatus.ts.html |here} to see how to use GetStatus API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetStatus.ts.html |here} to see how to use GetStatus API. | ||
*/ | ||
@@ -127,3 +128,3 @@ getStatus(getStatusRequest: requests.GetStatusRequest): Promise<responses.GetStatusResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypes API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypes API. | ||
*/ | ||
@@ -169,3 +170,3 @@ listIncidentResourceTypes(listIncidentResourceTypesRequest: requests.ListIncidentResourceTypesRequest): Promise<responses.ListIncidentResourceTypesResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ListIncidents.ts.html |here} to see how to use ListIncidents API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ListIncidents.ts.html |here} to see how to use ListIncidents API. | ||
*/ | ||
@@ -211,3 +212,3 @@ listIncidents(listIncidentsRequest: requests.ListIncidentsRequest): Promise<responses.ListIncidentsResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncident API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncident API. | ||
*/ | ||
@@ -221,3 +222,3 @@ updateIncident(updateIncidentRequest: requests.UpdateIncidentRequest): Promise<responses.UpdateIncidentResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ValidateUser.ts.html |here} to see how to use ValidateUser API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ValidateUser.ts.html |here} to see how to use ValidateUser API. | ||
*/ | ||
@@ -224,0 +225,0 @@ validateUser(validateUserRequest: requests.ValidateUserRequest): Promise<responses.ValidateUserResponse>; |
@@ -66,3 +66,3 @@ "use strict"; | ||
constructor(params, clientConfiguration) { | ||
this["_realmSpecificEndpointTemplateEnabled"] = false; | ||
this["_realmSpecificEndpointTemplateEnabled"] = undefined; | ||
this["_endpoint"] = ""; | ||
@@ -126,4 +126,8 @@ this["_defaultHeaders"] = {}; | ||
this._endpoint = this._endpoint + "/20181231"; | ||
oci_common_2.logger.info(`IncidentClient endpoint set to ${this._endpoint}`); | ||
if (this.logger) | ||
this.logger.info(`IncidentClient endpoint set to ${this._endpoint}`); | ||
} | ||
get logger() { | ||
return common.LOG.logger; | ||
} | ||
/** | ||
@@ -136,3 +140,4 @@ * Determines whether realm specific endpoint should be used or not. | ||
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled; | ||
oci_common_2.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`); | ||
if (this.logger) | ||
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`); | ||
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) { | ||
@@ -182,7 +187,8 @@ this.endpoint = common.EndpointBuilder.createEndpointFromRegion(IncidentClient.serviceEndpointTemplate, this._region, IncidentClient.endpointServiceName); | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/CreateIncident.ts.html |here} to see how to use CreateIncident API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/CreateIncident.ts.html |here} to see how to use CreateIncident API. | ||
*/ | ||
createIncident(createIncidentRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#createIncident."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#createIncident."); | ||
const operationName = "createIncident"; | ||
@@ -204,2 +210,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/Incident/CreateIncident"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createIncidentRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -244,7 +252,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumber API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumber API. | ||
*/ | ||
getCsiNumber(getCsiNumberRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#getCsiNumber."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#getCsiNumber."); | ||
const operationName = "getCsiNumber"; | ||
@@ -269,2 +278,4 @@ const apiReferenceLink = ""; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getCsiNumberRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -308,7 +319,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetIncident.ts.html |here} to see how to use GetIncident API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetIncident.ts.html |here} to see how to use GetIncident API. | ||
*/ | ||
getIncident(getIncidentRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#getIncident."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#getIncident."); | ||
const operationName = "getIncident"; | ||
@@ -336,2 +348,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/Incident/GetIncident"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getIncidentRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -375,7 +389,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetStatus.ts.html |here} to see how to use GetStatus API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetStatus.ts.html |here} to see how to use GetStatus API. | ||
*/ | ||
getStatus(getStatusRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#getStatus."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#getStatus."); | ||
const operationName = "getStatus"; | ||
@@ -393,2 +408,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/Status/GetStatus"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getStatusRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -432,7 +449,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypes API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypes API. | ||
*/ | ||
listIncidentResourceTypes(listIncidentResourceTypesRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#listIncidentResourceTypes."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#listIncidentResourceTypes."); | ||
const operationName = "listIncidentResourceTypes"; | ||
@@ -460,2 +478,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/IncidentResourceType/ListIncidentResourceTypes"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listIncidentResourceTypesRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -544,7 +564,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ListIncidents.ts.html |here} to see how to use ListIncidents API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ListIncidents.ts.html |here} to see how to use ListIncidents API. | ||
*/ | ||
listIncidents(listIncidentsRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#listIncidents."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#listIncidents."); | ||
const operationName = "listIncidents"; | ||
@@ -575,2 +596,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/IncidentSummary/ListIncidents"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listIncidentsRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -669,7 +692,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncident API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncident API. | ||
*/ | ||
updateIncident(updateIncidentRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#updateIncident."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#updateIncident."); | ||
const operationName = "updateIncident"; | ||
@@ -697,2 +721,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/UpdateIncident/UpdateIncident"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateIncidentRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -737,7 +763,8 @@ baseEndpoint: this._endpoint, | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ValidateUser.ts.html |here} to see how to use ValidateUser API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ValidateUser.ts.html |here} to see how to use ValidateUser API. | ||
*/ | ||
validateUser(validateUserRequest) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
oci_common_2.logger.debug("Calling operation IncidentClient#validateUser."); | ||
if (this.logger) | ||
this.logger.debug("Calling operation IncidentClient#validateUser."); | ||
const operationName = "validateUser"; | ||
@@ -762,2 +789,4 @@ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/incidentmanagement/20181231/ValidationResponse/ValidateUser"; | ||
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, validateUserRequest.retryConfiguration, specRetryConfiguration); | ||
if (this.logger) | ||
retrier.logger = this.logger; | ||
const request = yield oci_common_2.composeRequest({ | ||
@@ -764,0 +793,0 @@ baseEndpoint: this._endpoint, |
@@ -64,3 +64,4 @@ "use strict"; | ||
default: | ||
common.logger.info(`Unknown value for: ${obj.type}`); | ||
if (common.LOG.logger) | ||
common.LOG.logger.info(`Unknown value for: ${obj.type}`); | ||
} | ||
@@ -92,3 +93,4 @@ } | ||
default: | ||
common.logger.info(`Unknown value for: ${obj.type}`); | ||
if (common.LOG.logger) | ||
common.LOG.logger.info(`Unknown value for: ${obj.type}`); | ||
} | ||
@@ -95,0 +97,0 @@ } |
@@ -62,3 +62,4 @@ "use strict"; | ||
default: | ||
common.logger.info(`Unknown value for: ${obj.type}`); | ||
if (common.LOG.logger) | ||
common.LOG.logger.info(`Unknown value for: ${obj.type}`); | ||
} | ||
@@ -90,3 +91,4 @@ } | ||
default: | ||
common.logger.info(`Unknown value for: ${obj.type}`); | ||
if (common.LOG.logger) | ||
common.LOG.logger.info(`Unknown value for: ${obj.type}`); | ||
} | ||
@@ -93,0 +95,0 @@ } |
@@ -52,3 +52,4 @@ "use strict"; | ||
default: | ||
common.logger.info(`Unknown value for: ${obj.type}`); | ||
if (common.LOG.logger) | ||
common.LOG.logger.info(`Unknown value for: ${obj.type}`); | ||
} | ||
@@ -66,3 +67,4 @@ } | ||
default: | ||
common.logger.info(`Unknown value for: ${obj.type}`); | ||
if (common.LOG.logger) | ||
common.LOG.logger.info(`Unknown value for: ${obj.type}`); | ||
} | ||
@@ -69,0 +71,0 @@ } |
@@ -16,3 +16,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/CreateIncident.ts.html |here} to see how to use CreateIncidentRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/CreateIncident.ts.html |here} to see how to use CreateIncidentRequest. | ||
*/ | ||
@@ -19,0 +19,0 @@ export interface CreateIncidentRequest extends common.BaseRequest { |
@@ -15,3 +15,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumberRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumberRequest. | ||
*/ | ||
@@ -18,0 +18,0 @@ export interface GetCsiNumberRequest extends common.BaseRequest { |
@@ -15,3 +15,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetIncident.ts.html |here} to see how to use GetIncidentRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetIncident.ts.html |here} to see how to use GetIncidentRequest. | ||
*/ | ||
@@ -18,0 +18,0 @@ export interface GetIncidentRequest extends common.BaseRequest { |
@@ -15,3 +15,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/GetStatus.ts.html |here} to see how to use GetStatusRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/GetStatus.ts.html |here} to see how to use GetStatusRequest. | ||
*/ | ||
@@ -18,0 +18,0 @@ export interface GetStatusRequest extends common.BaseRequest { |
@@ -16,3 +16,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypesRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypesRequest. | ||
*/ | ||
@@ -19,0 +19,0 @@ export interface ListIncidentResourceTypesRequest extends common.BaseRequest { |
@@ -16,3 +16,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ListIncidents.ts.html |here} to see how to use ListIncidentsRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ListIncidents.ts.html |here} to see how to use ListIncidentsRequest. | ||
*/ | ||
@@ -19,0 +19,0 @@ export interface ListIncidentsRequest extends common.BaseRequest { |
@@ -16,3 +16,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncidentRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncidentRequest. | ||
*/ | ||
@@ -19,0 +19,0 @@ export interface UpdateIncidentRequest extends common.BaseRequest { |
@@ -16,3 +16,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/cims/ValidateUser.ts.html |here} to see how to use ValidateUserRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/cims/ValidateUser.ts.html |here} to see how to use ValidateUserRequest. | ||
*/ | ||
@@ -19,0 +19,0 @@ export interface ValidateUserRequest extends common.BaseRequest { |
{ | ||
"name": "oci-cims", | ||
"version": "2.79.1", | ||
"version": "2.80.0", | ||
"description": "OCI NodeJS client for Cims ", | ||
@@ -18,4 +18,4 @@ "repository": { | ||
"dependencies": { | ||
"oci-common": "2.79.1", | ||
"oci-workrequests": "2.79.1" | ||
"oci-common": "2.80.0", | ||
"oci-workrequests": "2.80.0" | ||
}, | ||
@@ -22,0 +22,0 @@ "publishConfig": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
430150
7014
+ Addedoci-common@2.80.0(transitive)
+ Addedoci-workrequests@2.80.0(transitive)
- Removedoci-common@2.79.1(transitive)
- Removedoci-workrequests@2.79.1(transitive)
Updatedoci-common@2.80.0
Updatedoci-workrequests@2.80.0