-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing version 2.89.4
- Loading branch information
Showing
284 changed files
with
3,839 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
lib/apmsynthetics/lib/model/basic-authentication-details.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** | ||
* Application Performance Monitoring Synthetic Monitoring API | ||
* Use the Application Performance Monitoring Synthetic Monitoring API to query synthetic scripts and monitors. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html). | ||
* OpenAPI spec version: 20200630 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OracleSDKGenerator. | ||
* Do not edit the class manually. | ||
* | ||
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
import * as model from "../model"; | ||
import common = require("oci-common"); | ||
|
||
/** | ||
* Details for basic authentication. | ||
*/ | ||
export interface BasicAuthenticationDetails { | ||
/** | ||
* Username for authentication. | ||
*/ | ||
"username": string; | ||
"password": model.PasswordInText | model.PasswordInVault; | ||
} | ||
|
||
export namespace BasicAuthenticationDetails { | ||
export function getJsonObj(obj: BasicAuthenticationDetails): object { | ||
const jsonObj = { | ||
...obj, | ||
...{ | ||
"password": obj.password ? model.Password.getJsonObj(obj.password) : undefined | ||
} | ||
}; | ||
|
||
return jsonObj; | ||
} | ||
export function getDeserializedJsonObj(obj: BasicAuthenticationDetails): object { | ||
const jsonObj = { | ||
...obj, | ||
...{ | ||
"password": obj.password ? model.Password.getDeserializedJsonObj(obj.password) : undefined | ||
} | ||
}; | ||
|
||
return jsonObj; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
* Application Performance Monitoring Synthetic Monitoring API | ||
* Use the Application Performance Monitoring Synthetic Monitoring API to query synthetic scripts and monitors. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html). | ||
* OpenAPI spec version: 20200630 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OracleSDKGenerator. | ||
* Do not edit the class manually. | ||
* | ||
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
import * as model from "../model"; | ||
import common = require("oci-common"); | ||
|
||
/** | ||
* Type of database connection. | ||
**/ | ||
export enum DatabaseConnectionType { | ||
CloudWallet = "CLOUD_WALLET", | ||
CustomJdbc = "CUSTOM_JDBC", | ||
|
||
/** | ||
* This value is used if a service returns a value for this enum that is not recognized by this | ||
* version of the SDK. | ||
*/ | ||
UnknownValue = "UNKNOWN_VALUE" | ||
} | ||
|
||
export namespace DatabaseConnectionType { | ||
export function getJsonObj(obj: DatabaseConnectionType): DatabaseConnectionType { | ||
return obj; | ||
} | ||
export function getDeserializedJsonObj(obj: DatabaseConnectionType): DatabaseConnectionType { | ||
return obj; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
* Application Performance Monitoring Synthetic Monitoring API | ||
* Use the Application Performance Monitoring Synthetic Monitoring API to query synthetic scripts and monitors. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html). | ||
* OpenAPI spec version: 20200630 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OracleSDKGenerator. | ||
* Do not edit the class manually. | ||
* | ||
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
import * as model from "../model"; | ||
import common = require("oci-common"); | ||
|
||
/** | ||
* Type of database. | ||
**/ | ||
export enum DatabaseType { | ||
Oracle = "ORACLE", | ||
Mysql = "MYSQL", | ||
|
||
/** | ||
* This value is used if a service returns a value for this enum that is not recognized by this | ||
* version of the SDK. | ||
*/ | ||
UnknownValue = "UNKNOWN_VALUE" | ||
} | ||
|
||
export namespace DatabaseType { | ||
export function getJsonObj(obj: DatabaseType): DatabaseType { | ||
return obj; | ||
} | ||
export function getDeserializedJsonObj(obj: DatabaseType): DatabaseType { | ||
return obj; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/** | ||
* Application Performance Monitoring Synthetic Monitoring API | ||
* Use the Application Performance Monitoring Synthetic Monitoring API to query synthetic scripts and monitors. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html). | ||
* OpenAPI spec version: 20200630 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OracleSDKGenerator. | ||
* Do not edit the class manually. | ||
* | ||
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
import * as model from "../model"; | ||
import common = require("oci-common"); | ||
|
||
/** | ||
* Details for database wallet. | ||
*/ | ||
export interface DatabaseWalletDetails { | ||
/** | ||
* The database wallet configuration zip file. | ||
*/ | ||
"databaseWallet": string; | ||
/** | ||
* Service name of the database. | ||
*/ | ||
"serviceName": string; | ||
} | ||
|
||
export namespace DatabaseWalletDetails { | ||
export function getJsonObj(obj: DatabaseWalletDetails): object { | ||
const jsonObj = { ...obj, ...{} }; | ||
|
||
return jsonObj; | ||
} | ||
export function getDeserializedJsonObj(obj: DatabaseWalletDetails): object { | ||
const jsonObj = { ...obj, ...{} }; | ||
|
||
return jsonObj; | ||
} | ||
} |
Oops, something went wrong.