oci-core 2.94.0 → 2.95.1

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 (31) hide show
  1. package/lib/client.d.ts +11 -2
  2. package/lib/client.js +12 -3
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/add-network-security-group-security-rules-details.d.ts +4 -1
  5. package/lib/model/add-network-security-group-security-rules-details.js.map +1 -1
  6. package/lib/model/create-service-gateway-details.d.ts +1 -1
  7. package/lib/model/create-vcn-details.d.ts +11 -0
  8. package/lib/model/create-vcn-details.js.map +1 -1
  9. package/lib/model/create-vnic-details.d.ts +11 -0
  10. package/lib/model/create-vnic-details.js.map +1 -1
  11. package/lib/model/instance-configuration-create-vnic-details.d.ts +11 -0
  12. package/lib/model/instance-configuration-create-vnic-details.js.map +1 -1
  13. package/lib/model/instance-configuration-launch-instance-details.d.ts +11 -0
  14. package/lib/model/instance-configuration-launch-instance-details.js.map +1 -1
  15. package/lib/model/instance.d.ts +24 -0
  16. package/lib/model/instance.js +10 -0
  17. package/lib/model/instance.js.map +1 -1
  18. package/lib/model/launch-instance-details.d.ts +11 -0
  19. package/lib/model/launch-instance-details.js.map +1 -1
  20. package/lib/model/service-gateway.d.ts +4 -4
  21. package/lib/model/update-instance-details.d.ts +11 -0
  22. package/lib/model/update-instance-details.js.map +1 -1
  23. package/lib/model/update-vcn-details.d.ts +11 -0
  24. package/lib/model/update-vcn-details.js.map +1 -1
  25. package/lib/model/update-vnic-details.d.ts +11 -0
  26. package/lib/model/update-vnic-details.js.map +1 -1
  27. package/lib/model/vcn.d.ts +11 -0
  28. package/lib/model/vcn.js.map +1 -1
  29. package/lib/model/vnic.d.ts +11 -0
  30. package/lib/model/vnic.js.map +1 -1
  31. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -1977,6 +1977,12 @@ export declare class ComputeClient {
1977
1977
  * with the signature. To get the image ID for the LaunchInstance operation, call
1978
1978
  * {@link #getAppCatalogListingResourceVersion(GetAppCatalogListingResourceVersionRequest) getAppCatalogListingResourceVersion}.
1979
1979
  * <p>
1980
+ When launching an instance, you may provide the `securityAttributes` parameter in
1981
+ * {@link LaunchInstanceDetails} to manage security attributes via the instance,
1982
+ * or in the embedded {@link CreateVnicDetails} to manage security attributes
1983
+ * via the VNIC directly, but not both. Providing `securityAttributes` in both locations will return a
1984
+ * 400 Bad Request response.
1985
+ * <p>
1980
1986
  To determine whether capacity is available for a specific shape before you create an instance,
1981
1987
  * use the {@link #createComputeCapacityReport(CreateComputeCapacityReportRequest) createComputeCapacityReport}
1982
1988
  * operation.
@@ -3971,7 +3977,7 @@ export declare class VirtualNetworkClient {
3971
3977
  */
3972
3978
  addIpv6VcnCidr(addIpv6VcnCidrRequest: requests.AddIpv6VcnCidrRequest): Promise<responses.AddIpv6VcnCidrResponse>;
3973
3979
  /**
3974
- * Adds one or more security rules to the specified network security group.
3980
+ * Adds up to 25 security rules to the specified network security group. Adding more than 25 rules requires multiple operations.
3975
3981
  *
3976
3982
  * This operation does not retry by default if the user has not defined a retry configuration.
3977
3983
  * @param AddNetworkSecurityGroupSecurityRulesRequest
@@ -4792,6 +4798,9 @@ export declare class VirtualNetworkClient {
4792
4798
  * <p>
4793
4799
  You may optionally specify a *display name* for the service gateway, otherwise a default is provided.
4794
4800
  * It does not have to be unique, and you can change it. Avoid entering confidential information.
4801
+ * <p>
4802
+ Use the {@link #listServices(ListServicesRequest) listServices} operation to find service CIDR labels
4803
+ * available in the region.
4795
4804
  *
4796
4805
  * This operation does not retry by default if the user has not defined a retry configuration.
4797
4806
  * @param CreateServiceGatewayRequest
@@ -7748,7 +7757,7 @@ export declare class VirtualNetworkClient {
7748
7757
  */
7749
7758
  listVirtualCircuitAssociatedTunnelsResponseIterator(request: requests.ListVirtualCircuitAssociatedTunnelsRequest): AsyncIterableIterator<responses.ListVirtualCircuitAssociatedTunnelsResponse>;
7750
7759
  /**
7751
- * The deprecated operation lists available bandwidth levels for virtual circuits. For the compartment ID, provide the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of your tenancy (the root compartment).
7760
+ * The operation lists available bandwidth levels for virtual circuits. For the compartment ID, provide the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of your tenancy (the root compartment).
7752
7761
  *
7753
7762
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
7754
7763
  * @param ListVirtualCircuitBandwidthShapesRequest
package/lib/client.js CHANGED
@@ -8534,6 +8534,12 @@ class ComputeClient {
8534
8534
  * with the signature. To get the image ID for the LaunchInstance operation, call
8535
8535
  * {@link #getAppCatalogListingResourceVersion(GetAppCatalogListingResourceVersionRequest) getAppCatalogListingResourceVersion}.
8536
8536
  * <p>
8537
+ When launching an instance, you may provide the `securityAttributes` parameter in
8538
+ * {@link LaunchInstanceDetails} to manage security attributes via the instance,
8539
+ * or in the embedded {@link CreateVnicDetails} to manage security attributes
8540
+ * via the VNIC directly, but not both. Providing `securityAttributes` in both locations will return a
8541
+ * 400 Bad Request response.
8542
+ * <p>
8537
8543
  To determine whether capacity is available for a specific shape before you create an instance,
8538
8544
  * use the {@link #createComputeCapacityReport(CreateComputeCapacityReportRequest) createComputeCapacityReport}
8539
8545
  * operation.
@@ -15366,7 +15372,7 @@ class VirtualNetworkClient {
15366
15372
  });
15367
15373
  }
15368
15374
  /**
15369
- * Adds one or more security rules to the specified network security group.
15375
+ * Adds up to 25 security rules to the specified network security group. Adding more than 25 rules requires multiple operations.
15370
15376
  *
15371
15377
  * This operation does not retry by default if the user has not defined a retry configuration.
15372
15378
  * @param AddNetworkSecurityGroupSecurityRulesRequest
@@ -18992,6 +18998,9 @@ class VirtualNetworkClient {
18992
18998
  * <p>
18993
18999
  You may optionally specify a *display name* for the service gateway, otherwise a default is provided.
18994
19000
  * It does not have to be unique, and you can change it. Avoid entering confidential information.
19001
+ * <p>
19002
+ Use the {@link #listServices(ListServicesRequest) listServices} operation to find service CIDR labels
19003
+ * available in the region.
18995
19004
  *
18996
19005
  * This operation does not retry by default if the user has not defined a retry configuration.
18997
19006
  * @param CreateServiceGatewayRequest
@@ -27560,7 +27569,7 @@ class VirtualNetworkClient {
27560
27569
  if (this.logger)
27561
27570
  this.logger.debug("Calling operation VirtualNetworkClient#listIpInventory.");
27562
27571
  const operationName = "listIpInventory";
27563
- const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/ListIpInventory";
27572
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/iaas/20160918/IpInventoryCollection/ListIpInventory";
27564
27573
  const pathParams = {};
27565
27574
  const queryParams = {};
27566
27575
  let headerParams = {
@@ -29495,7 +29504,7 @@ class VirtualNetworkClient {
29495
29504
  return oci_common_1.paginateResponses(request, req => this.listVirtualCircuitAssociatedTunnels(req));
29496
29505
  }
29497
29506
  /**
29498
- * The deprecated operation lists available bandwidth levels for virtual circuits. For the compartment ID, provide the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of your tenancy (the root compartment).
29507
+ * The operation lists available bandwidth levels for virtual circuits. For the compartment ID, provide the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of your tenancy (the root compartment).
29499
29508
  *
29500
29509
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
29501
29510
  * @param ListVirtualCircuitBandwidthShapesRequest