Skip to content

Commit b129bce

Browse files
Releasing version 2.84.1
Releasing version 2.84.1
2 parents da53e95 + 2fee7bc commit b129bce

File tree

354 files changed

+2554
-160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+2554
-160
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
6+
## 2.84.1 - 2024-04-09
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the ap-dcc-gazipur-1 region
9+
- Support for the DNS-based backend health check in the Network Load Balancer service
10+
- Support for Fail Open in the Network Load Balancer service
11+
- Support for adding and updating Instant failover in the Network Load Balancer service
12+
- Support for adding and updating source type and resource category for resource types in the Stack Monitoring service
13+
- Support for searching resources based on resource category, source type, multiple compartments, multiple lifecycle states in the Stack Monitoring service
14+
- Support for filtering listed resources based on lifecycle status in the Stack Monitoring service
15+
- Support for creating tasks with new config parameters in the Stack Monitoring service
16+
- Support for Composite Resource Principal integration in the Data Flow service
17+
18+
619
## 2.84.0 - 2024-04-02
720
### Added
821
- Support for assigned private IP and single stack IPV6 feature for Network Load Balancer Service

examples/typescript/add-new-region.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ identityClient.region = newRegion;
2222
(async () => {
2323
const response = await listUsers(compartmentId);
2424
console.log("List User response " + response);
25+
identityClient.close();
2526
})();
2627

2728
async function listUsers(compartmentId: string): Promise<identity.responses.ListUsersResponse> {

examples/typescript/audit.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,7 @@ async function getAuditEvents(
9898
const auditEvents = await getAuditEvents(auditClient, compartments, startTime, endTime);
9999
console.log("auditEvent: ", auditEvents);
100100
}
101+
102+
identityClient.close();
103+
auditClient.close();
101104
})();

examples/typescript/circuit-breaker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ const compartmentId = provider.getTenantId();
5959
}
6060

6161
// Shut down circuit breakers used by clients if they are no longer needed
62-
identityClient.shutdownCircuitBreaker();
63-
auditClient.shutdownCircuitBreaker();
62+
identityClient.close();
63+
auditClient.close();
6464
})();

examples/typescript/conatinerengine-cluster.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ async function main() {
126126
} catch (error) {
127127
throw "Error Executing container engine example";
128128
}
129+
130+
containerEngineClient.close();
131+
vcnClient.close();
132+
identityClient.close();
133+
workRequestClient.close();
129134
}
130135

131136
async function getAvailabilityDomains(

examples/typescript/containerengine-node-pool.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ let nodePool: oke.models.NodePool;
180180
} catch (error) {
181181
throw "Error running Container Engine nodepool example";
182182
}
183+
184+
containerEngineClient.close();
185+
vcnClient.close();
186+
identityClient.close();
187+
workRequestClient.close();
183188
})();
184189

185190
async function getAvailabilityDomains(

examples/typescript/create-preauth-req.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,6 @@ const client = new ObjectStorageClient({ authenticationDetailsProvider: provider
7373
} catch (ex) {
7474
console.error(`Failed due to ${ex}`);
7575
}
76+
77+
client.close();
7678
})();

examples/typescript/custom-retry.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,6 @@ async function getAvailabilityDomain(): Promise<identity.models.AvailabilityDoma
5151
} finally {
5252
console.debug("DONE");
5353
}
54+
55+
identityClient.close();
5456
})();

examples/typescript/data-labeling.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,7 @@ async function listAnnotation(id: string) {
237237
await deleteDataset();
238238
}
239239
console.debug("DONE");
240+
241+
dlsCPClient.close();
242+
dlsDPClient.close();
240243
})();

examples/typescript/database.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,10 @@ async function terminateDbSystem() {
230230
await deleteVcn();
231231

232232
console.debug("DONE");
233+
234+
virtualNetworkClient.close();
235+
workRequestClient.close();
236+
identityClient.close();
237+
databaseClient.close();
233238
}
234239
})();

0 commit comments

Comments
 (0)