@pulumi/oci 2.6.0 → 2.7.0-alpha.1723624751

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 (47) hide show
  1. package/database/autonomousDatabase.d.ts +3 -3
  2. package/database/getAutonomousDatabase.d.ts +1 -1
  3. package/database/getAutonomousDatabases.d.ts +4 -2
  4. package/database/getAutonomousDatabases.js +4 -2
  5. package/database/getAutonomousDatabases.js.map +1 -1
  6. package/datasafe/calculateAuditVolumeAvailable.d.ts +133 -0
  7. package/datasafe/calculateAuditVolumeAvailable.js +87 -0
  8. package/datasafe/calculateAuditVolumeAvailable.js.map +1 -0
  9. package/datasafe/calculateAuditVolumeCollected.d.ts +120 -0
  10. package/datasafe/calculateAuditVolumeCollected.js +87 -0
  11. package/datasafe/calculateAuditVolumeCollected.js.map +1 -0
  12. package/datasafe/index.d.ts +6 -0
  13. package/datasafe/index.js +16 -6
  14. package/datasafe/index.js.map +1 -1
  15. package/disasterrecovery/getDrPlanExecutions.d.ts +0 -39
  16. package/disasterrecovery/getDrPlanExecutions.js +0 -31
  17. package/disasterrecovery/getDrPlanExecutions.js.map +1 -1
  18. package/integration/getIntegrationInstance.d.ts +6 -0
  19. package/integration/getIntegrationInstance.js.map +1 -1
  20. package/integration/integrationInstance.d.ts +12 -0
  21. package/integration/integrationInstance.js +2 -0
  22. package/integration/integrationInstance.js.map +1 -1
  23. package/limits/getLimitDefinitions.d.ts +13 -2
  24. package/limits/getLimitDefinitions.js +5 -2
  25. package/limits/getLimitDefinitions.js.map +1 -1
  26. package/limits/getLimitValues.d.ts +13 -2
  27. package/limits/getLimitValues.js +5 -2
  28. package/limits/getLimitValues.js.map +1 -1
  29. package/limits/getResourceAvailability.d.ts +15 -2
  30. package/limits/getResourceAvailability.js +7 -2
  31. package/limits/getResourceAvailability.js.map +1 -1
  32. package/limits/getServices.d.ts +13 -2
  33. package/limits/getServices.js +5 -2
  34. package/limits/getServices.js.map +1 -1
  35. package/networkloadbalancer/backendSet.d.ts +1 -1
  36. package/networkloadbalancer/backendSet.js +1 -1
  37. package/networkloadbalancer/getListener.d.ts +8 -0
  38. package/networkloadbalancer/getListener.js.map +1 -1
  39. package/networkloadbalancer/listener.d.ts +29 -3
  40. package/networkloadbalancer/listener.js +6 -0
  41. package/networkloadbalancer/listener.js.map +1 -1
  42. package/networkloadbalancer/networkLoadBalancer.d.ts +3 -3
  43. package/networkloadbalancer/networkLoadBalancersBackendSetsUnified.d.ts +1 -1
  44. package/networkloadbalancer/networkLoadBalancersBackendSetsUnified.js +1 -1
  45. package/package.json +2 -2
  46. package/types/input.d.ts +18 -0
  47. package/types/output.d.ts +48 -4
package/types/output.d.ts CHANGED
@@ -63628,6 +63628,24 @@ export declare namespace DataSafe {
63628
63628
  */
63629
63629
  workRequestId: string;
63630
63630
  }
63631
+ interface CalculateAuditVolumeAvailableAvailableAuditVolume {
63632
+ /**
63633
+ * The OCID of the audit.
63634
+ */
63635
+ auditProfileId: string;
63636
+ monthInConsideration: string;
63637
+ trailLocation: string;
63638
+ volume: string;
63639
+ }
63640
+ interface CalculateAuditVolumeCollectedCollectedAuditVolume {
63641
+ archivedVolume: string;
63642
+ /**
63643
+ * The OCID of the audit.
63644
+ */
63645
+ auditProfileId: string;
63646
+ monthInConsideration: string;
63647
+ onlineVolume: string;
63648
+ }
63631
63649
  interface DataSafeConfigurationGlobalSetting {
63632
63650
  /**
63633
63651
  * The paid usage option chosen by the customer admin.
@@ -81019,7 +81037,7 @@ export declare namespace Database {
81019
81037
  */
81020
81038
  isDedicated: boolean;
81021
81039
  /**
81022
- * This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
81040
+ * Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
81023
81041
  */
81024
81042
  isDevTier: boolean;
81025
81043
  /**
@@ -81824,7 +81842,7 @@ export declare namespace Database {
81824
81842
  */
81825
81843
  isDedicated: boolean;
81826
81844
  /**
81827
- * This project introduces Autonomous Database for Developers (ADB-Dev), a free tier on dedicated infrastructure, and Cloud@Customer for database development purposes. ADB-Dev enables ExaDB customers to experiment with ADB for free and incentivizes enterprises to use ADB for new development projects.Note that ADB-Dev have 4 CPU and 20GB of memory. For ADB-Dev , memory and CPU cannot be scaled
81845
+ * Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
81828
81846
  */
81829
81847
  isDevTier: boolean;
81830
81848
  /**
@@ -171737,6 +171755,12 @@ export declare namespace Integration {
171737
171755
  * An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
171738
171756
  */
171739
171757
  stateMessage: string;
171758
+ /**
171759
+ * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
171760
+ */
171761
+ systemTags: {
171762
+ [key: string]: any;
171763
+ };
171740
171764
  /**
171741
171765
  * The time the the Integration Instance was created. An RFC3339 formatted datetime string.
171742
171766
  */
@@ -175755,6 +175779,14 @@ export declare namespace Limits {
175755
175779
  * The target service name.
175756
175780
  */
175757
175781
  serviceName: string;
175782
+ /**
175783
+ * Supported quota family names for creation of quota policy.
175784
+ */
175785
+ supportedQuotaFamilies: string[];
175786
+ /**
175787
+ * An array of subscription types supported by the limit. e,g The type of subscription, such as 'SAAS', 'ERP', 'CRM'.
175788
+ */
175789
+ supportedSubscriptions: string[];
175758
175790
  }
175759
175791
  interface GetLimitValuesFilter {
175760
175792
  /**
@@ -175890,6 +175922,10 @@ export declare namespace Limits {
175890
175922
  * The service name. Use this when calling other APIs.
175891
175923
  */
175892
175924
  name: string;
175925
+ /**
175926
+ * An array of subscription types supported by the service. e,g The type of subscription, such as 'SAAS', 'ERP', 'CRM'.
175927
+ */
175928
+ supportedSubscriptions: string[];
175893
175929
  }
175894
175930
  interface QuotaLock {
175895
175931
  /**
@@ -191453,7 +191489,7 @@ export declare namespace NetworkLoadBalancer {
191453
191489
  */
191454
191490
  isBackup: boolean;
191455
191491
  /**
191456
- * Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
191492
+ * Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
191457
191493
  */
191458
191494
  isDrain: boolean;
191459
191495
  /**
@@ -191597,7 +191633,7 @@ export declare namespace NetworkLoadBalancer {
191597
191633
  */
191598
191634
  isBackup: boolean;
191599
191635
  /**
191600
- * Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
191636
+ * Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
191601
191637
  */
191602
191638
  isDrain: boolean;
191603
191639
  /**
@@ -191792,6 +191828,14 @@ export declare namespace NetworkLoadBalancer {
191792
191828
  * The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
191793
191829
  */
191794
191830
  protocol: string;
191831
+ /**
191832
+ * The duration for TCP idle timeout in seconds. Example: `300`
191833
+ */
191834
+ tcpIdleTimeout: number;
191835
+ /**
191836
+ * The duration for UDP idle timeout in seconds. Example: `120`
191837
+ */
191838
+ udpIdleTimeout: number;
191795
191839
  }
191796
191840
  interface GetNetworkLoadBalancerIpAddress {
191797
191841
  /**