// This is an automatically generated code sample.
// To make this code sample work in your Oracle Cloud tenancy,
// please replace the values for any parameters whose current values do not fit
// your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
// boolean, number, and enum parameters with values not fitting your use case).
import * as core from "oci-core";
import common = require("oci-common");
// Create a default authentication provider that uses the DEFAULT
// profile in the configuration file.
// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();
(async () => {
try {
// Create a service client
const client = new core.VirtualNetworkClient({ authenticationDetailsProvider: provider });
// Create a request and dependent object(s).
const createSecurityListDetails = {
compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
definedTags: {
EXAMPLE_KEY_6CfxQ :{
EXAMPLE_KEY_wW72A :"EXAMPLE--Value"
}
},
displayName: "EXAMPLE-displayName-Value",
egressSecurityRules: [{
destination: "EXAMPLE-destination-Value",
destinationType: core.models.EgressSecurityRule.DestinationType.ServiceCidrBlock,
icmpOptions: {
code: 7,
type: 47,
}
,
isStateless: false,
protocol: "EXAMPLE-protocol-Value",
tcpOptions: {
destinationPortRange: {
max: 44619,
min: 33670,
}
,
sourcePortRange: {
max: 44157,
min: 9860,
}
,
}
,
udpOptions: {
destinationPortRange: {
max: 10735,
min: 12926,
}
,
sourcePortRange: {
max: 22635,
min: 54607,
}
,
}
,
description: "EXAMPLE-description-Value",
}
],
freeformTags: {
EXAMPLE_KEY_25iC4 :"EXAMPLE_VALUE_2D6A57pn0Fh9edan3nV5"
},
ingressSecurityRules: [{
icmpOptions: {
code: 3,
type: 103,
}
,
isStateless: false,
protocol: "EXAMPLE-protocol-Value",
source: "EXAMPLE-source-Value",
sourceType: core.models.IngressSecurityRule.SourceType.CidrBlock,
tcpOptions: {
destinationPortRange: {
max: 39394,
min: 20942,
}
,
sourcePortRange: {
max: 25604,
min: 58506,
}
,
}
,
udpOptions: {
destinationPortRange: {
max: 50834,
min: 1546,
}
,
sourcePortRange: {
max: 54297,
min: 1723,
}
,
}
,
description: "EXAMPLE-description-Value",
}
],
vcnId: "ocid1.test.oc1..<unique_ID>EXAMPLE-vcnId-Value",
}
const createSecurityListRequest: core.requests.CreateSecurityListRequest = {
createSecurityListDetails: createSecurityListDetails,
opcRetryToken: "EXAMPLE-opcRetryToken-Value",
};
// Send request to the Client.
const createSecurityListResponse = await client.createSecurityList(createSecurityListRequest);
}
catch (error) {
console.log("createSecurityList Failed with error " + error);
}
})();