pulumi-oci 1.29.0a1711606977__py3-none-any.whl → 1.29.0a1711616250__py3-none-any.whl

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 (41) hide show
  1. pulumi_oci/__init__.py +8 -0
  2. pulumi_oci/database/autonomous_database.py +155 -14
  3. pulumi_oci/database/get_autonomous_database.py +41 -2
  4. pulumi_oci/database/get_autonomous_databases.py +1 -1
  5. pulumi_oci/database/outputs.py +68 -2
  6. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
  7. pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
  8. pulumi_oci/databasemanagement/outputs.py +267 -75
  9. pulumi_oci/dataintegration/__init__.py +3 -0
  10. pulumi_oci/dataintegration/_inputs.py +4504 -0
  11. pulumi_oci/dataintegration/get_workspace_task.py +443 -0
  12. pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
  13. pulumi_oci/dataintegration/outputs.py +16511 -4723
  14. pulumi_oci/dataintegration/workspace_task.py +1364 -0
  15. pulumi_oci/devops/_inputs.py +18 -2
  16. pulumi_oci/devops/deploy_artifact.py +2 -0
  17. pulumi_oci/devops/deploy_stage.py +141 -0
  18. pulumi_oci/devops/get_deploy_stage.py +40 -1
  19. pulumi_oci/devops/outputs.py +75 -6
  20. pulumi_oci/logging/_inputs.py +2751 -187
  21. pulumi_oci/logging/outputs.py +4981 -768
  22. pulumi_oci/logging/unified_agent_configuration.py +34 -208
  23. pulumi_oci/monitoring/_inputs.py +136 -0
  24. pulumi_oci/monitoring/alarm.py +173 -0
  25. pulumi_oci/monitoring/get_alarm.py +40 -1
  26. pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
  27. pulumi_oci/monitoring/outputs.py +305 -0
  28. pulumi_oci/networkloadbalancer/_inputs.py +20 -20
  29. pulumi_oci/networkloadbalancer/backend.py +7 -7
  30. pulumi_oci/networkloadbalancer/backend_set.py +11 -11
  31. pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
  32. pulumi_oci/networkloadbalancer/get_listener.py +1 -1
  33. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
  34. pulumi_oci/networkloadbalancer/listener.py +7 -7
  35. pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
  36. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
  37. pulumi_oci/networkloadbalancer/outputs.py +41 -34
  38. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/METADATA +1 -1
  39. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/RECORD +41 -38
  40. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/WHEEL +0 -0
  41. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/top_level.txt +0 -0
@@ -85,17 +85,17 @@ class BackendSetBackend(dict):
85
85
  weight: Optional[int] = None):
86
86
  """
87
87
  :param int port: (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
88
- :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
89
- :param bool is_backup: Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
90
- :param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
91
- :param bool is_offline: Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
88
+ :param str ip_address: (Updatable) The IP address of the backend server. Example: `10.0.0.3`
89
+ :param bool is_backup: (Updatable) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
90
+ :param bool is_drain: (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
91
+ :param bool is_offline: (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
92
92
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
93
93
 
94
94
  Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
95
95
 
96
96
  Example: `example_backend_set`
97
- :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
98
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
97
+ :param str target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
98
+ :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
99
99
  """
100
100
  pulumi.set(__self__, "port", port)
101
101
  if ip_address is not None:
@@ -125,7 +125,7 @@ class BackendSetBackend(dict):
125
125
  @pulumi.getter(name="ipAddress")
126
126
  def ip_address(self) -> Optional[str]:
127
127
  """
128
- The IP address of the backend server. Example: `10.0.0.3`
128
+ (Updatable) The IP address of the backend server. Example: `10.0.0.3`
129
129
  """
130
130
  return pulumi.get(self, "ip_address")
131
131
 
@@ -133,7 +133,7 @@ class BackendSetBackend(dict):
133
133
  @pulumi.getter(name="isBackup")
134
134
  def is_backup(self) -> Optional[bool]:
135
135
  """
136
- Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
136
+ (Updatable) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
137
137
  """
138
138
  return pulumi.get(self, "is_backup")
139
139
 
@@ -141,7 +141,7 @@ class BackendSetBackend(dict):
141
141
  @pulumi.getter(name="isDrain")
142
142
  def is_drain(self) -> Optional[bool]:
143
143
  """
144
- Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
144
+ (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
145
145
  """
146
146
  return pulumi.get(self, "is_drain")
147
147
 
@@ -149,7 +149,7 @@ class BackendSetBackend(dict):
149
149
  @pulumi.getter(name="isOffline")
150
150
  def is_offline(self) -> Optional[bool]:
151
151
  """
152
- Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
152
+ (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
153
153
  """
154
154
  return pulumi.get(self, "is_offline")
155
155
 
@@ -169,7 +169,7 @@ class BackendSetBackend(dict):
169
169
  @pulumi.getter(name="targetId")
170
170
  def target_id(self) -> Optional[str]:
171
171
  """
172
- The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
172
+ (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
173
173
  """
174
174
  return pulumi.get(self, "target_id")
175
175
 
@@ -177,7 +177,7 @@ class BackendSetBackend(dict):
177
177
  @pulumi.getter
178
178
  def weight(self) -> Optional[int]:
179
179
  """
180
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
180
+ (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
181
181
  """
182
182
  return pulumi.get(self, "weight")
183
183
 
@@ -368,8 +368,8 @@ class NetworkLoadBalancerIpAddress(dict):
368
368
  is_public: Optional[bool] = None,
369
369
  reserved_ips: Optional[Sequence['outputs.NetworkLoadBalancerIpAddressReservedIp']] = None):
370
370
  """
371
- :param str ip_address: An IP address. Example: `192.168.0.3`
372
- :param str ip_version: IP version associated with this IP address.
371
+ :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
372
+ :param str ip_version: IP version associated with the backend set.
373
373
  :param bool is_public: Whether the IP address is public or private.
374
374
  :param Sequence['NetworkLoadBalancerIpAddressReservedIpArgs'] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
375
375
  """
@@ -386,7 +386,7 @@ class NetworkLoadBalancerIpAddress(dict):
386
386
  @pulumi.getter(name="ipAddress")
387
387
  def ip_address(self) -> Optional[str]:
388
388
  """
389
- An IP address. Example: `192.168.0.3`
389
+ The IP address of the backend server. Example: `10.0.0.3`
390
390
  """
391
391
  return pulumi.get(self, "ip_address")
392
392
 
@@ -394,7 +394,7 @@ class NetworkLoadBalancerIpAddress(dict):
394
394
  @pulumi.getter(name="ipVersion")
395
395
  def ip_version(self) -> Optional[str]:
396
396
  """
397
- IP version associated with this IP address.
397
+ IP version associated with the backend set.
398
398
  """
399
399
  return pulumi.get(self, "ip_version")
400
400
 
@@ -525,7 +525,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
525
525
  :param int port: (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
526
526
  :param str ip_address: (Updatable) The IP address of the backend server. Example: `10.0.0.3`
527
527
  :param bool is_backup: (Updatable) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
528
- :param bool is_drain: (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
528
+ :param bool is_drain: (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
529
529
  :param bool is_offline: (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
530
530
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
531
531
 
@@ -533,7 +533,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
533
533
 
534
534
  Example: `example_backend_set`
535
535
  :param str target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
536
- :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
536
+ :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
537
537
  """
538
538
  pulumi.set(__self__, "port", port)
539
539
  if ip_address is not None:
@@ -579,7 +579,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
579
579
  @pulumi.getter(name="isDrain")
580
580
  def is_drain(self) -> Optional[bool]:
581
581
  """
582
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
582
+ (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
583
583
  """
584
584
  return pulumi.get(self, "is_drain")
585
585
 
@@ -615,7 +615,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
615
615
  @pulumi.getter
616
616
  def weight(self) -> Optional[int]:
617
617
  """
618
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
618
+ (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
619
619
  """
620
620
  return pulumi.get(self, "weight")
621
621
 
@@ -818,12 +818,12 @@ class GetBackendSetBackendResult(dict):
818
818
  """
819
819
  :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
820
820
  :param bool is_backup: Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
821
- :param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
821
+ :param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
822
822
  :param bool is_offline: Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
823
823
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
824
824
  :param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
825
825
  :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
826
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
826
+ :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
827
827
  """
828
828
  pulumi.set(__self__, "ip_address", ip_address)
829
829
  pulumi.set(__self__, "is_backup", is_backup)
@@ -854,7 +854,7 @@ class GetBackendSetBackendResult(dict):
854
854
  @pulumi.getter(name="isDrain")
855
855
  def is_drain(self) -> bool:
856
856
  """
857
- Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
857
+ Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
858
858
  """
859
859
  return pulumi.get(self, "is_drain")
860
860
 
@@ -894,7 +894,7 @@ class GetBackendSetBackendResult(dict):
894
894
  @pulumi.getter
895
895
  def weight(self) -> int:
896
896
  """
897
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
897
+ The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
898
898
  """
899
899
  return pulumi.get(self, "weight")
900
900
 
@@ -1041,7 +1041,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
1041
1041
  policy: str):
1042
1042
  """
1043
1043
  :param Sequence['GetBackendSetsBackendSetCollectionItemBackendArgs'] backends: Array of backends.
1044
- :param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
1044
+ :param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
1045
1045
  :param str ip_version: IP version associated with the backend set.
1046
1046
  :param bool is_preserve_source: If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
1047
1047
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
@@ -1069,7 +1069,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
1069
1069
  @pulumi.getter(name="healthCheckers")
1070
1070
  def health_checkers(self) -> Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerResult']:
1071
1071
  """
1072
- The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
1072
+ The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
1073
1073
  """
1074
1074
  return pulumi.get(self, "health_checkers")
1075
1075
 
@@ -1133,12 +1133,12 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
1133
1133
  """
1134
1134
  :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
1135
1135
  :param bool is_backup: Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
1136
- :param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
1136
+ :param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
1137
1137
  :param bool is_offline: Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
1138
1138
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
1139
1139
  :param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
1140
1140
  :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
1141
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1141
+ :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
1142
1142
  """
1143
1143
  pulumi.set(__self__, "ip_address", ip_address)
1144
1144
  pulumi.set(__self__, "is_backup", is_backup)
@@ -1169,7 +1169,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
1169
1169
  @pulumi.getter(name="isDrain")
1170
1170
  def is_drain(self) -> bool:
1171
1171
  """
1172
- Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
1172
+ Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
1173
1173
  """
1174
1174
  return pulumi.get(self, "is_drain")
1175
1175
 
@@ -1209,7 +1209,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
1209
1209
  @pulumi.getter
1210
1210
  def weight(self) -> int:
1211
1211
  """
1212
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1212
+ The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
1213
1213
  """
1214
1214
  return pulumi.get(self, "weight")
1215
1215
 
@@ -1400,7 +1400,7 @@ class GetBackendsBackendCollectionItemResult(dict):
1400
1400
  :param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
1401
1401
  :param int port: The communication port for the backend server. Example: `8080`
1402
1402
  :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
1403
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1403
+ :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
1404
1404
  """
1405
1405
  pulumi.set(__self__, "backend_set_name", backend_set_name)
1406
1406
  pulumi.set(__self__, "id", id)
@@ -1495,7 +1495,7 @@ class GetBackendsBackendCollectionItemResult(dict):
1495
1495
  @pulumi.getter
1496
1496
  def weight(self) -> int:
1497
1497
  """
1498
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1498
+ The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
1499
1499
  """
1500
1500
  return pulumi.get(self, "weight")
1501
1501
 
@@ -1594,7 +1594,7 @@ class GetListenersListenerCollectionItemResult(dict):
1594
1594
  :param str name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
1595
1595
  :param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
1596
1596
  :param int port: The communication port for the listener. Example: `80`
1597
- :param str protocol: The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the [ListNetworkLoadBalancersProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/NetworkLoadBalancer/20200501/networkLoadBalancerProtocol/ListNetworkLoadBalancersProtocols) operation. Example: `TCP`
1597
+ :param str protocol: 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`
1598
1598
  """
1599
1599
  pulumi.set(__self__, "default_backend_set_name", default_backend_set_name)
1600
1600
  pulumi.set(__self__, "id", id)
@@ -1653,7 +1653,7 @@ class GetListenersListenerCollectionItemResult(dict):
1653
1653
  @pulumi.getter
1654
1654
  def protocol(self) -> str:
1655
1655
  """
1656
- The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the [ListNetworkLoadBalancersProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/NetworkLoadBalancer/20200501/networkLoadBalancerProtocol/ListNetworkLoadBalancersProtocols) operation. Example: `TCP`
1656
+ 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`
1657
1657
  """
1658
1658
  return pulumi.get(self, "protocol")
1659
1659
 
@@ -1795,6 +1795,7 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
1795
1795
  ip_addresses: Sequence['outputs.GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddressResult'],
1796
1796
  is_preserve_source_destination: bool,
1797
1797
  is_private: bool,
1798
+ is_symmetric_hash_enabled: bool,
1798
1799
  lifecycle_details: str,
1799
1800
  network_security_group_ids: Sequence[str],
1800
1801
  nlb_ip_version: str,
@@ -1830,6 +1831,7 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
1830
1831
  pulumi.set(__self__, "ip_addresses", ip_addresses)
1831
1832
  pulumi.set(__self__, "is_preserve_source_destination", is_preserve_source_destination)
1832
1833
  pulumi.set(__self__, "is_private", is_private)
1834
+ pulumi.set(__self__, "is_symmetric_hash_enabled", is_symmetric_hash_enabled)
1833
1835
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1834
1836
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
1835
1837
  pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
@@ -1904,6 +1906,11 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
1904
1906
  """
1905
1907
  return pulumi.get(self, "is_private")
1906
1908
 
1909
+ @property
1910
+ @pulumi.getter(name="isSymmetricHashEnabled")
1911
+ def is_symmetric_hash_enabled(self) -> bool:
1912
+ return pulumi.get(self, "is_symmetric_hash_enabled")
1913
+
1907
1914
  @property
1908
1915
  @pulumi.getter(name="lifecycleDetails")
1909
1916
  def lifecycle_details(self) -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 1.29.0a1711606977
3
+ Version: 1.29.0a1711616250
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -1,4 +1,4 @@
1
- pulumi_oci/__init__.py,sha256=qYvxF6G6BJOX60cu-P_z47mp_YsQLIJ791o7F5Hk49A,146630
1
+ pulumi_oci/__init__.py,sha256=Pu6dHyXHtJ65FkaMVA5Wgy0jL3mc5uYgBqWtpyVb4hg,146823
2
2
  pulumi_oci/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
3
3
  pulumi_oci/provider.py,sha256=xb4xvGxOAQDmgHlar9M1AaiSt9ZiwtfITBZBtsdkfbg,24464
4
4
  pulumi_oci/pulumi-plugin.json,sha256=M43fXbtz4Dlbv_jxw-1L4SOTGFmJN2lYa7ePzB7DmBs,40
@@ -641,7 +641,7 @@ pulumi_oci/database/autonomous_container_database.py,sha256=6SpVtLgsbVbNx_X4fwpg
641
641
  pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=x5zRCQ3O-770BK_qKDxXjr7br4DaarWnfZ6SoJEOY3w,75981
642
642
  pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=6jrD_HRtGgP216BOlnjttB0mkeIwZ9DMHDkVYBcklDI,18247
643
643
  pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=dAjgy90q3k5T6dtvfFzJFXQrKECSyK08MCECei2BJ1k,12249
644
- pulumi_oci/database/autonomous_database.py,sha256=XhueV4DpPjUc3NbfQS95o0Mc0dK-6Zw4uuM5WWXB8Ls,440069
644
+ pulumi_oci/database/autonomous_database.py,sha256=a3ZRG3H2WYR1SvWI1WH39KEiqjU0yRcZf_gAH3Fq1Sg,451181
645
645
  pulumi_oci/database/autonomous_database_backup.py,sha256=cb2oUMQz69XNWieiksL5OjWb6BiuqqpNxi7Tcs5xW40,42603
646
646
  pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=NJQ8f8c89kd4ghibqVyife627c-kATdeCibzAvZej4Q,18817
647
647
  pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=ua0QRA3fDiZQQ4kTHTW5U__HAFdULmnKOomEvMiRpMU,15757
@@ -695,7 +695,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=-
695
695
  pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=rKzBpB0nWww9rSIiNOSBXT9Xfgau8H5ULlkIOfMhcjo,7238
696
696
  pulumi_oci/database/get_autonomous_container_databases.py,sha256=fJfAC_XlRSz93nUgTRBWtjw9YcXB_n56xL1Jw50DGT0,17306
697
697
  pulumi_oci/database/get_autonomous_container_patches.py,sha256=gKo5X3qAqTHlrFleGWVO2-t7zoL1SuP_-lgd6dr7thA,8402
698
- pulumi_oci/database/get_autonomous_database.py,sha256=i7nSKC-85TdSH2159lCq7jxH1Oco4nXDaicRNulNCAc,98723
698
+ pulumi_oci/database/get_autonomous_database.py,sha256=_Cy6PJkEnwoboQPVRhW-H7eepPt1wTjVYhLRpAR9B20,101657
699
699
  pulumi_oci/database/get_autonomous_database_backup.py,sha256=-BjhVBKnBqTKIASPkeof5pIvT2XTHegD2qVRp0IcMnc,17720
700
700
  pulumi_oci/database/get_autonomous_database_backups.py,sha256=QBDI61YbjGaYRQAvFX1gqPO_6AEVfX6ZdGR-8KlQocg,10420
701
701
  pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=N_6X14aXBly_6KzE5uGm4216bfsQ-Akl2atqQUKwSCU,13761
@@ -704,7 +704,7 @@ pulumi_oci/database/get_autonomous_database_instance_wallet_management.py,sha256
704
704
  pulumi_oci/database/get_autonomous_database_refreshable_clones.py,sha256=iy7uDoAHdBFW9jp2RXREISitqDiK_fCsCWXXYZX2SVk,6415
705
705
  pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256=AnFrgtqRbvyARmT8XfWlp6NHaDoYKJ_L6q8cIAIP6GQ,5231
706
706
  pulumi_oci/database/get_autonomous_database_wallet.py,sha256=Wimzb5_gcFv-j2W0v5zw3bkomxkuy5B4PoAxfIYI2IY,7487
707
- pulumi_oci/database/get_autonomous_databases.py,sha256=0973IgbU6IrV12MjuW9V794tVaGsxs2_Fq-PJuDfGJ0,21696
707
+ pulumi_oci/database/get_autonomous_databases.py,sha256=cx3NrluP3sr7IorwbrYwwcmf6T6YPNLnNKrj-TOpVOQ,21626
708
708
  pulumi_oci/database/get_autonomous_databases_clones.py,sha256=98GJ-2Ka3Q8HRmLnTr9CLnW5kUV12_U8b80Yi0bjHwU,10128
709
709
  pulumi_oci/database/get_autonomous_db_preview_versions.py,sha256=FVNQRSGpLrLUI4qcMA135rJgpYUrTpgPiD7g7O_m5qU,6067
710
710
  pulumi_oci/database/get_autonomous_db_versions.py,sha256=HYVC1XRVjoV8sAokyD_kKTbkMMnKwtDL6vuWQegp6-s,6790
@@ -810,7 +810,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=oNDBSSJjyz8bMQPesLPBTPTcysF9xZUUZo
810
810
  pulumi_oci/database/key_store.py,sha256=Wmrh5W4zSMxDK81B1NLT3osJTc2FqEDMElQKgieHA0U,25712
811
811
  pulumi_oci/database/maintenance_run.py,sha256=kIJoBN-1pZix6sRD94U5OUPlgZSb2vhBIe3mkxBD64U,58772
812
812
  pulumi_oci/database/oneoff_patch.py,sha256=6_XXLH-PoBvGQVVaB5kzIWq7vgWOvGVcq4K59QRT1qA,38652
813
- pulumi_oci/database/outputs.py,sha256=E9fxK6DCwzqS0K2nsm8DYswU66tGDw37NdhYtOGFU5s,2055880
813
+ pulumi_oci/database/outputs.py,sha256=twLd1WhXYxRWmgBMncW95uOqfJWQwBMi4lDG49j94Wc,2061574
814
814
  pulumi_oci/database/pluggable_database.py,sha256=UYXCRUig97Hz22B-0KChjDoWaxdFPgNNbwfUpcVRM5g,71689
815
815
  pulumi_oci/database/pluggable_database_managements_management.py,sha256=ASic1y903gVSRrAJqHY7CIWvjMvqFiOoMVXLzt2DGlY,52657
816
816
  pulumi_oci/database/pluggable_databases_local_clone.py,sha256=J4p1pkt1NUBateXMDzeIM4qQDTAxPNDqVXIuQlAbXDo,50628
@@ -933,9 +933,9 @@ pulumi_oci/databasemanagement/get_managed_databases_user_proxy_user.py,sha256=9A
933
933
  pulumi_oci/databasemanagement/get_managed_databases_user_proxy_users.py,sha256=PZzUayokA4FEYRBhN2rsqJkWPl3z8qwgXGYQDx2XaWE,9034
934
934
  pulumi_oci/databasemanagement/get_managed_databases_user_system_privilege.py,sha256=AhX9EUzMBnNJBmqUCzHMkvecjLbsCvWGjOGAAEkNkLI,6941
935
935
  pulumi_oci/databasemanagement/get_managed_databases_user_system_privileges.py,sha256=s-JbPJq2hdMinxd49IyCoh5JdTTCbP4Ea85LBo2_86I,9375
936
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py,sha256=GnnVjKAPu0CeRbEm27iEWmyPbUZjQYft_Eccp4qrEfM,6622
936
+ pulumi_oci/databasemanagement/get_managed_my_sql_database.py,sha256=qnWtmzcu-jDDVAr4GRyGo_o3LsZnjKpu_2JPtxQMZj8,11950
937
937
  pulumi_oci/databasemanagement/get_managed_my_sql_database_configuration_data.py,sha256=Tx1wcnG8Sfag6SFdWtekmSOe7pRMed7qVKxVEwi-iyo,6463
938
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py,sha256=t_5KAGhcIK3hXvhrgCRSrvmPoRQUWWCLKv-aFg7b0C4,9200
938
+ pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py,sha256=sNhQfAMcHdoNSF_jLBSvmjFjdNk9n-Km2YAN4UoHxwc,10064
939
939
  pulumi_oci/databasemanagement/get_managed_my_sql_databases.py,sha256=-jrjXtmiWJAEC--ZkGSKTvfGw5ijSxDUlbt2G8mooe8,5752
940
940
  pulumi_oci/databasemanagement/get_named_credential.py,sha256=q8XwrROwAaq1BdtTKEnpCjMFO330vAHGIDbUgtcz9ik,11428
941
941
  pulumi_oci/databasemanagement/get_named_credentials.py,sha256=QnPEhlqsDgnIT5DjsjyJzqR_Qh2msT_s1Ze_WVXS5hw,9343
@@ -944,7 +944,7 @@ pulumi_oci/databasemanagement/managed_database_group.py,sha256=paBqWsqe03bcHfun1
944
944
  pulumi_oci/databasemanagement/managed_databases_change_database_parameter.py,sha256=K0gO8LSBy3KRbDWtLoiMpzM4CD9Ii8Nd2LxlakTLUr8,29500
945
945
  pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py,sha256=t7w-8oXpew0rnw8muR_UeAJgZVKziTL226D1MrKwOsc,26828
946
946
  pulumi_oci/databasemanagement/named_credential.py,sha256=0djE6l7qT2iEr7RdeXbN12rcmpdh58K4bsbNH_24v8s,37514
947
- pulumi_oci/databasemanagement/outputs.py,sha256=uxkAbZD2ySDWNzQPhb2tj1Vtj388AeubFLII8brymKQ,1141972
947
+ pulumi_oci/databasemanagement/outputs.py,sha256=psxwGwfJb5gnl_1PGNaDDf3mnOdZVmvHPpAV4teFsIg,1149470
948
948
  pulumi_oci/databasemigration/__init__.py,sha256=wq-hZhb2rxiz9X5A9L-7N8RfkwhB3NXCbKKHsqsNolI,614
949
949
  pulumi_oci/databasemigration/_inputs.py,sha256=j96cYLCY-ht1_Mm5mS_1hgdKhz0oVBU-biz2BXvXQhk,112963
950
950
  pulumi_oci/databasemigration/connection.py,sha256=MIlmLlxojXMye_5kSR2Owg9I1U-BQX4K47mUDKa33o4,65640
@@ -1012,8 +1012,8 @@ pulumi_oci/dataflow/pool.py,sha256=ItcdyJ__DYupjKvS1QXRHdZ1mo2RgROlm6SA9TcybcY,4
1012
1012
  pulumi_oci/dataflow/private_endpoint.py,sha256=9vkBMocvIS8HBvsQlVoYVcBhOK7c_qZUL68sqE2eRcY,42899
1013
1013
  pulumi_oci/dataflow/run_statement.py,sha256=KTLzz41T67R0967vFDAtG6ENsFIrsFx5O-nhbCzF56w,16592
1014
1014
  pulumi_oci/dataflow/sql_endpoint.py,sha256=Zp8UIlX2E6GVQp8wRCnwGH4bFhxD00v3w4ekebWe4ho,59793
1015
- pulumi_oci/dataintegration/__init__.py,sha256=jBIUSXZ6PEQ2CPZ_bllHplRFLDumIG01HOEvUgKpA9s,1437
1016
- pulumi_oci/dataintegration/_inputs.py,sha256=-k9zjogrcD3AbHV_jimYfeUv2ODrGx3vkHNA47B_NIc,226970
1015
+ pulumi_oci/dataintegration/__init__.py,sha256=2H-D_UY8QH4dHOjznmx3CPkiTg4aqtJKeuaKcN7Ypu8,1536
1016
+ pulumi_oci/dataintegration/_inputs.py,sha256=-KeS8oWRpqQdPmVFcF_54_tlZXsydxpPyES3mUDZhwY,415660
1017
1017
  pulumi_oci/dataintegration/get_workspace.py,sha256=b1oFGp_4kUfWKLHI5VP-OFWh_5RXSEX9Fnl0OeiEtNQ,17095
1018
1018
  pulumi_oci/dataintegration/get_workspace_application.py,sha256=LkcsRr2Kbodje53Eb5G36KuAGk1HsccGuL4McEpX6jw,19355
1019
1019
  pulumi_oci/dataintegration/get_workspace_application_patch.py,sha256=HNkh4f1o7tZECKG1xHC45JfrNkNQ7D55ZCrTXR9duT4,17104
@@ -1031,8 +1031,10 @@ pulumi_oci/dataintegration/get_workspace_import_request.py,sha256=bpytrqhX2rV5qz
1031
1031
  pulumi_oci/dataintegration/get_workspace_import_requests.py,sha256=W4Ta0FOoDfqdjcJznoweKMOYCXc0Db-Uev0yJD3bMgY,11428
1032
1032
  pulumi_oci/dataintegration/get_workspace_project.py,sha256=j344GDO8wDQoRpPjoO7FhmqDrkCycazzOeZtEh8GAFs,10915
1033
1033
  pulumi_oci/dataintegration/get_workspace_projects.py,sha256=E6w-c6k3VGjD07g0Fn0Y01bYbWDeIMEtS8HmAprfbL4,9158
1034
+ pulumi_oci/dataintegration/get_workspace_task.py,sha256=8ExB_MqcqYvLvrAAa-5LtDQ3OazOE1guGqn1rLNU6kY,20265
1035
+ pulumi_oci/dataintegration/get_workspace_tasks.py,sha256=w8tA2y7eg1xi-dPPZC3VC4Rp9jr75Lon-kh73YlwUII,11466
1034
1036
  pulumi_oci/dataintegration/get_workspaces.py,sha256=_m69iDNzWYdJMdSYAVCIyTjGG1SwrwAp7jwpTRWm__A,7548
1035
- pulumi_oci/dataintegration/outputs.py,sha256=evypMmPUXh-OYO6myDq9lBJWGZEoMZIBMJMYPtGZLMM,573236
1037
+ pulumi_oci/dataintegration/outputs.py,sha256=RQm3Kgdtd2igj4OWS_XE5iOnzPGOuoJFfbnROQKM2wQ,1043323
1036
1038
  pulumi_oci/dataintegration/workspace.py,sha256=vS-0Xk5HTplSjx4CDiT8nAdIOVsj6uaUxOcu6rNpwUw,58656
1037
1039
  pulumi_oci/dataintegration/workspace_application.py,sha256=imt50Ovy34xVPGTeVdhjS5-N8FCaIJrSNGU_IcrxgdU,61824
1038
1040
  pulumi_oci/dataintegration/workspace_application_patch.py,sha256=llYFqUwTqaBnJciG-UFflgfVt9sPdjH6_coohk21kGo,49623
@@ -1042,6 +1044,7 @@ pulumi_oci/dataintegration/workspace_export_request.py,sha256=sPR8Fq4V4tmboHBUu_
1042
1044
  pulumi_oci/dataintegration/workspace_folder.py,sha256=zayThQZZOw1nO6lMNEPjFiDdbsooTDwUyJOe-q9ozn8,37488
1043
1045
  pulumi_oci/dataintegration/workspace_import_request.py,sha256=h0BDP7W4XUQz-9uHWQRNz0SfEuw3XpfqUXPLbT4Bptw,39286
1044
1046
  pulumi_oci/dataintegration/workspace_project.py,sha256=Zx3Xsbo27wAfEELpmlbNTdXZktZlRrDUYAy3RfNZTA8,35503
1047
+ pulumi_oci/dataintegration/workspace_task.py,sha256=QVAMjy9Sp0vl1X1YWCHUonxmpXM9MGKHW2s1WHxoSPI,72494
1045
1048
  pulumi_oci/datalabellingservice/__init__.py,sha256=ivrNYSeOSla5du0Cj1m5VItkxhTMEQvFHlJInBuSLrY,467
1046
1049
  pulumi_oci/datalabellingservice/_inputs.py,sha256=_paH8XKCsHSv_dH74R2I8xzDe6j8hm4BqEY8HoUmJFk,17530
1047
1050
  pulumi_oci/datalabellingservice/dataset.py,sha256=cvLV8SiMVBxzREFbNjmXjFqS956HwGBO6gRQocFM76s,57206
@@ -1250,15 +1253,15 @@ pulumi_oci/datascience/pipeline_run.py,sha256=1qzVXbpQ2HItNJYSgzU9IaDZk3A55533K-
1250
1253
  pulumi_oci/datascience/private_endpoint.py,sha256=40drPJ0upXdRDmetkaW3-2QKBCtOVWLQxRj6STnXpwQ,40655
1251
1254
  pulumi_oci/datascience/project.py,sha256=0J3VfKLy-gUvqdZtN7alsrPqhsvZMJM6rW4E_Z7_L7A,26929
1252
1255
  pulumi_oci/devops/__init__.py,sha256=jGVaG5GgMDYniHsVYgCiOln8YZzQTBIMnWiXDrDeGe0,2195
1253
- pulumi_oci/devops/_inputs.py,sha256=35zZAwD2wSIaLitv_bHIlSaXeDEhO6XAvkyULylWfXE,200846
1256
+ pulumi_oci/devops/_inputs.py,sha256=01HO-AbBABuubo_oYs8CnhBo96cRhdAz63DVpYAVwQM,201644
1254
1257
  pulumi_oci/devops/build_pipeline.py,sha256=SyrNwnoYRfw7RAbjr407Wwx9lb59Y8SeJtBBcc6qVbY,33790
1255
1258
  pulumi_oci/devops/build_pipeline_stage.py,sha256=3tWDN28_5pbI2lBJYaRHcHPLeLa_V1LtkpJT1D_jGTs,75415
1256
1259
  pulumi_oci/devops/build_run.py,sha256=8VQZRinqTJQvWsUU6bI_sEvrJGH1FLU8-MoSToekfw8,39805
1257
1260
  pulumi_oci/devops/connection.py,sha256=IzsUZHBF0D3y8mVoOEiscZGzN4h-5QEuofgNGIsFhMk,44068
1258
- pulumi_oci/devops/deploy_artifact.py,sha256=7ubSBtxfuHJTf_CBIrtRfP-cnI7wuCP9TSxqtJB65bY,40917
1261
+ pulumi_oci/devops/deploy_artifact.py,sha256=LjOtan5jr9YYveY6zvjyShIRt-6vvtztsezSqa90VjI,41147
1259
1262
  pulumi_oci/devops/deploy_environment.py,sha256=xOLgOZzuPQMKMsH_Kx_SynObQ7QLX9sWbo802fvBrd4,45455
1260
1263
  pulumi_oci/devops/deploy_pipeline.py,sha256=6OA_kzYKSc5FTR4x4Cn-42HGwCgcGD9_ItJRvsrqvtU,38079
1261
- pulumi_oci/devops/deploy_stage.py,sha256=uhWMbDesqPPSHH-SA5boPnufOz54l0KVapwa-1lhsns,184710
1264
+ pulumi_oci/devops/deploy_stage.py,sha256=9R2ucKuu6vZcqvbNkaQgi6pEUgIYAGV7PCE-wDK5SYk,192040
1262
1265
  pulumi_oci/devops/deployment.py,sha256=C1J_tH2LiYnbjzuBwT42snybzj7WB2SEy4Xrv8joPhc,55625
1263
1266
  pulumi_oci/devops/get_build_pipeline.py,sha256=yxAedRJKIsNq78D7VDOdUhd7xmmpqzXwni960B2Gstw,11247
1264
1267
  pulumi_oci/devops/get_build_pipeline_stage.py,sha256=n8Ry42j5-AW5juGyLhIXmCqGeTiu6z1bvbxNF-1OpEs,21015
@@ -1274,7 +1277,7 @@ pulumi_oci/devops/get_deploy_environment.py,sha256=JUhqfTgAHtNN9TRewU1lOh2cBDjRP
1274
1277
  pulumi_oci/devops/get_deploy_environments.py,sha256=ovxMI4i_kpHc-3c3i_CR-fUG0EOSPuILYLVUVpNMy3E,8765
1275
1278
  pulumi_oci/devops/get_deploy_pipeline.py,sha256=6TJMJsenPhEXXAEzvEIbjoibNU1Jy3AP66wNtkiFw7Y,12940
1276
1279
  pulumi_oci/devops/get_deploy_pipelines.py,sha256=xdVC8ZF1XT7Hcrj1I7ejp0u_yfiDZVgglnIIn7rMlOw,8596
1277
- pulumi_oci/devops/get_deploy_stage.py,sha256=bhyehe87VgxujMjynmeQgWED4oNoXo2ZtCLCiKWIqys,50873
1280
+ pulumi_oci/devops/get_deploy_stage.py,sha256=Pb9vo4jcCjErOGMOuyr6I8VDu3lqj_A02wsEdOye9jI,52776
1278
1281
  pulumi_oci/devops/get_deploy_stages.py,sha256=b3VzdJriHFvRxLTcMxP4do-7fCVfXnJJ4HL14EN6_R0,8634
1279
1282
  pulumi_oci/devops/get_deployment.py,sha256=gjmWTL18tOeem2mUNGcYNCqA6A6FAAvYgUA1fst0OgU,17595
1280
1283
  pulumi_oci/devops/get_deployments.py,sha256=w6nPJVgDpSQrrduuPisJhAh6sJpbBVui44O73XuZV0I,13150
@@ -1302,7 +1305,7 @@ pulumi_oci/devops/get_repository_ref.py,sha256=DbASOfvYVk6vGQdbanzBknLsKbeBjT6vA
1302
1305
  pulumi_oci/devops/get_repository_refs.py,sha256=iqBXsaLhUxI7NrQf4dzMIoEij74wPOXrHJWctue9rfQ,8011
1303
1306
  pulumi_oci/devops/get_trigger.py,sha256=rJtZ9qpCpEuXU3djykDUK94j3EuJv_zqhdXR3hQaHGg,12576
1304
1307
  pulumi_oci/devops/get_triggers.py,sha256=za-JhjPUDkhf2R1YlAgiXOLc5pUg4XAH_2TkuSsOOTI,8243
1305
- pulumi_oci/devops/outputs.py,sha256=TmJAqzFJ_ZAvM4jpHgrtA0ISdtCQZ6sTWfya1PUuz7k,626905
1308
+ pulumi_oci/devops/outputs.py,sha256=VKw8lvn4kMnOAoSpMFzWafDKXEZthXepn01HIZiamgU,629864
1306
1309
  pulumi_oci/devops/project.py,sha256=Eriwh8x3XNvV45BhgaJZo2hhC6I8Yxa43XxOPYfRdL0,29689
1307
1310
  pulumi_oci/devops/repository.py,sha256=zEpkJx1ri_tcCLMAbpvBSYoSoiSM3U4Z1jUWK1bsJL8,47080
1308
1311
  pulumi_oci/devops/repository_mirror.py,sha256=gNYFITXwxsCbjirNPTj5UnygqQCKgWGRKb5ZeX6ey04,8564
@@ -1902,7 +1905,7 @@ pulumi_oci/loganalytics/namespace_ingest_time_rules_management.py,sha256=S_MdVAA
1902
1905
  pulumi_oci/loganalytics/namespace_scheduled_task.py,sha256=xF_uDmUrjjswfXdtUW6zC5pGXXZoIIi6X0aSJ2gZ9Qc,39299
1903
1906
  pulumi_oci/loganalytics/outputs.py,sha256=wQd6fRJju0mIlu_GL4V5yhvxaGEY3fUARjC7sfH7LJ4,171459
1904
1907
  pulumi_oci/logging/__init__.py,sha256=Lzrjx_8ufVDmjgbkpTQHnipgODYc4a8FY6KtTXl5qRU,708
1905
- pulumi_oci/logging/_inputs.py,sha256=_4WONulSPrduL-X3AbzYDTY26K9fan-dB52czt3J9Ks,52406
1908
+ pulumi_oci/logging/_inputs.py,sha256=v8xGr3VRb4IJDj-0SIeYpE0A6FdPpd3NYNsgWqHhkPI,168219
1906
1909
  pulumi_oci/logging/get_log.py,sha256=KG3v786li0qR5xybl0Q2wxOEdPcJZkCJqQPQRnn222g,11033
1907
1910
  pulumi_oci/logging/get_log_group.py,sha256=ZMwv8riaZpo5tJyMLTkEaW2XDZ20FMqXIb6D1O8Eiy8,8141
1908
1911
  pulumi_oci/logging/get_log_groups.py,sha256=pD3FSSuXrDMbeAfZ4vN4Q53d9fCP15r6SPlpM1QNYJM,7288
@@ -1914,8 +1917,8 @@ pulumi_oci/logging/get_unified_agent_configurations.py,sha256=eyl7wyFXdkOLMoPfvi
1914
1917
  pulumi_oci/logging/log.py,sha256=XcjN0a-8TC-Pr4EE8sKxyAX0AHrFEIB_7nFHwJMWBE4,35069
1915
1918
  pulumi_oci/logging/log_group.py,sha256=Oz4p5rw88EpEX7YIYl-vcI53zed2IXBBp_D-Vthrfsk,24817
1916
1919
  pulumi_oci/logging/log_saved_search.py,sha256=62QVB7UCnO732ZFok569LOZmqG9hRNKB3EZjSjd8VQo,26203
1917
- pulumi_oci/logging/outputs.py,sha256=1OuZWROXOhdgrAHtH801P0T00Dy-wqYNKmgEE2gUfX8,105549
1918
- pulumi_oci/logging/unified_agent_configuration.py,sha256=euIa5z1_lWtSBt6mdB-zgqlmrmipHFIhZFsfScxa4lE,48217
1920
+ pulumi_oci/logging/outputs.py,sha256=GZmbRChQBDg444nT6uwmtyNeozBQsazaEPdoquuL_YQ,282774
1921
+ pulumi_oci/logging/unified_agent_configuration.py,sha256=clUdesJWYIDzKuaj4qkS11HzoJ9fZVRvgQJVv0aKA6E,32138
1919
1922
  pulumi_oci/managementagent/__init__.py,sha256=bpFmeztqSBwuPQZDXXW0deLSXXdocRC6M6YH1JRvpc4,998
1920
1923
  pulumi_oci/managementagent/_inputs.py,sha256=Mm9UFFnnNUM7-TL-GVKgCF5JohHEtimnOC1isvBY9qo,31459
1921
1924
  pulumi_oci/managementagent/get_management_agent.py,sha256=NbT-utTfr-6sZqbE6Z8yOQeA5UFC0d4XHoK08VSzUMw,20653
@@ -2010,18 +2013,18 @@ pulumi_oci/meteringcomputation/usage.py,sha256=mQoH5JRVvThRk4KmgAWwna8eChEBKSONL
2010
2013
  pulumi_oci/meteringcomputation/usage_carbon_emission.py,sha256=EDao6nuV2B0QVWKqTe9SyYXulCAEKX341Jsp-uGmOhk,30790
2011
2014
  pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py,sha256=G2_PlAEpygHjzr2tJhHdBqTmFSl-f_OObpCkQ0U8iCw,14943
2012
2015
  pulumi_oci/monitoring/__init__.py,sha256=pxwgZhWmpTpbldRtkppXsIZ4Xm_FNNHvlIjr1jYMcl4,630
2013
- pulumi_oci/monitoring/_inputs.py,sha256=-jz_dixdRm77TbMINlg1GzVlpCwzxcKQTk-FKPPA9hc,10791
2014
- pulumi_oci/monitoring/alarm.py,sha256=kxGZqumDU0xqi_Rj6rm7lakyLqoCP2ipqHDrfcDKMSM,90192
2016
+ pulumi_oci/monitoring/_inputs.py,sha256=T68GHXDiLhCTGJxlfaaRT4YW_RdQ8y4zVQueTRO8dLw,19957
2017
+ pulumi_oci/monitoring/alarm.py,sha256=bLeKFqpVMK1ivMhsCAABcDO-XJlH-2CdTX0JQlnY_FU,104246
2015
2018
  pulumi_oci/monitoring/alarm_suppression.py,sha256=mS24imsXWirCsbCSBM9_DhowUextvTOv-yz__0HOGSA,42648
2016
- pulumi_oci/monitoring/get_alarm.py,sha256=1hYLRMvKO9C4W-ZniT6vIG1dpKDN_HwwA2fdW_aU2ag,20951
2017
- pulumi_oci/monitoring/get_alarm_history_collection.py,sha256=v-l4nGVgcsUwC-QOZ9vHC5cLAOklSh-0JB5U7xKBEuI,10801
2019
+ pulumi_oci/monitoring/get_alarm.py,sha256=vww1Uh0sOcvXef2qkbfj8YEgPmj-cZre2tSfyRskD68,23141
2020
+ pulumi_oci/monitoring/get_alarm_history_collection.py,sha256=TBEuNWfCUsl3ds9S4G2UmPeDNRxKCIHDaPKoDLFwSqU,10959
2018
2021
  pulumi_oci/monitoring/get_alarm_statuses.py,sha256=tNYaALU3GOOmNdSI5jnCHmA6h0KEbJnOV1toJIL17qk,15978
2019
2022
  pulumi_oci/monitoring/get_alarm_suppression.py,sha256=uNBhcxrFQtsPxEJfGBpujOG3I3eDWKOgmN3fPx0Eivg,12716
2020
2023
  pulumi_oci/monitoring/get_alarm_suppressions.py,sha256=0YGXNlumxZ_vZdzRPSkJ7GqC-CoG6oHwoqWFtdmwDeQ,9245
2021
2024
  pulumi_oci/monitoring/get_alarms.py,sha256=7fZo8FrR5Np19U44f9x7IuKDoS25rFIxmMOnA0EfoR8,10625
2022
2025
  pulumi_oci/monitoring/get_metric_data.py,sha256=1SL9EZ9lIYE2Ubn7w5BtP0jUDkKw0cv2KIH1qyGTEMM,19831
2023
2026
  pulumi_oci/monitoring/get_metrics.py,sha256=-YMR49bdZrEaXvElclBq0nhx2iwc7NfGVuOmo-tuTEk,15343
2024
- pulumi_oci/monitoring/outputs.py,sha256=uNZYYiOjWAlC5xV6tw5A7gZQYELdr9sacnkdShhaLuo,70684
2027
+ pulumi_oci/monitoring/outputs.py,sha256=Vj8m14weEQYGfN8CtG7Iq3ZDGxVMkQul_nPNWXqUC3E,95483
2025
2028
  pulumi_oci/mysql/__init__.py,sha256=NePAVofUEJFnzHsogn-BAX3FEUTLAqx3umifZgO-SUs,908
2026
2029
  pulumi_oci/mysql/_inputs.py,sha256=6gQtBEh59yaOc00jIAS_8ghLVwEWW8cbrs29DT-NR1M,235800
2027
2030
  pulumi_oci/mysql/channel.py,sha256=61VkJrZu0XH15ftoHRaVitGFpqgYB6lgebVOobqyZkg,28772
@@ -2084,25 +2087,25 @@ pulumi_oci/networkfirewall/network_firewall_policy_service_list.py,sha256=d8UFHO
2084
2087
  pulumi_oci/networkfirewall/network_firewall_policy_url_list.py,sha256=KPrXn8LzCP0evMhCyHVTrANr_qveRCXMxPQGUvTh7rI,15708
2085
2088
  pulumi_oci/networkfirewall/outputs.py,sha256=W8ofmRT47pU7altaT_gKWtZgp7Wd4aEnXWwOwF9A1_4,102732
2086
2089
  pulumi_oci/networkloadbalancer/__init__.py,sha256=urfLKBZti02PqzrKDjUdZ8SZHck_DsNXj1KDF6-BYtk,938
2087
- pulumi_oci/networkloadbalancer/_inputs.py,sha256=HRYvdr58pCoDG4V9gfhI7ShY06RZmX4XQGsxQvoz-0o,47130
2088
- pulumi_oci/networkloadbalancer/backend.py,sha256=XJ76Thm2DjYo0O__VpdLo2W14NLCAGja4nuBJkvsh0M,35252
2089
- pulumi_oci/networkloadbalancer/backend_set.py,sha256=2qldKUGMYasfeUTfFlmyuuxeB3uoATAYCdfj2YKlm70,28796
2090
+ pulumi_oci/networkloadbalancer/_inputs.py,sha256=cr-sT9r2ERzt2AoZWexDXxY0qq6wxCM4dz2N5qQ1Wk8,47360
2091
+ pulumi_oci/networkloadbalancer/backend.py,sha256=fVzNi2vO9rrMzwUxb5kp15mYuYJj3TI4X2zFyXgzIhE,35336
2092
+ pulumi_oci/networkloadbalancer/backend_set.py,sha256=HjrMfe4QWox7xyxOx0cpEyTX_tr8FYCr0DQ02zT1afM,29274
2090
2093
  pulumi_oci/networkloadbalancer/get_backend_health.py,sha256=yVNgH8yHjBuuJpHCN01l9G8H6d75Y1mQBpJpTLsTy9U,8869
2091
- pulumi_oci/networkloadbalancer/get_backend_set.py,sha256=pi0K9eograrshqXIv0gS5rGeaAoSra3qO8VGY-eatdE,7843
2094
+ pulumi_oci/networkloadbalancer/get_backend_set.py,sha256=Do4ZW8TztIDF9rqrVdtyh5419UFWQqU_YsQn9uU1loI,7881
2092
2095
  pulumi_oci/networkloadbalancer/get_backend_set_health.py,sha256=YVc_nZWVdFEA30MWj3xk-y9D33JUCqTSWNKqjRcVNfQ,6547
2093
2096
  pulumi_oci/networkloadbalancer/get_backend_sets.py,sha256=6Pf0-8_oudFAc3ZXbqMzZiVViSy346eJwVYmyywA5tQ,5546
2094
2097
  pulumi_oci/networkloadbalancer/get_backends.py,sha256=lKyV71dcUd7wHtruAxjVHP8pVcDzL6Mx8rsPzEErrbk,6527
2095
- pulumi_oci/networkloadbalancer/get_listener.py,sha256=oUpwLGs-qT7yXK7xzcqitWkQOMMzWm7D_E1MJSLMA0M,8040
2098
+ pulumi_oci/networkloadbalancer/get_listener.py,sha256=rr8XmuBvkXjuv7BM2cRA39MOGjHQamNTYivzvdV_Ib8,7984
2096
2099
  pulumi_oci/networkloadbalancer/get_listeners.py,sha256=GeU5GNvmTbLPRA4wlqmfhKhfq4fd8TRJVPBx2n2MS88,5418
2097
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=TuxCHrWLpZ1akvtTS_Fo4hFxlcdnUOucYmgJJN0UP_M,14692
2100
+ pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=tKzC3mQdSt8eRQc0MPC2teh5yEwXEEtQgiASLC9ZHag,15559
2098
2101
  pulumi_oci/networkloadbalancer/get_network_load_balancer_health.py,sha256=M4tdAWz7xX9Lp7MF-gI2IrcWsQFdRK_MejvJUqYZahQ,9566
2099
2102
  pulumi_oci/networkloadbalancer/get_network_load_balancers.py,sha256=TLTC2azkv0W6SepNXMRrmzSyfheD1e47cOzizBF0GV0,7905
2100
2103
  pulumi_oci/networkloadbalancer/get_network_load_balancers_policies.py,sha256=Y3MpFq89RRzcvuGaPXsTR9woS6v2nmMlbUVoTfSV77g,4920
2101
2104
  pulumi_oci/networkloadbalancer/get_network_load_balancers_protocols.py,sha256=Z7OYWxZ1UG4GOQoeq_SvTYXmh4G32x0c-UdV0yINfok,5138
2102
- pulumi_oci/networkloadbalancer/listener.py,sha256=sYzua340KbccOtlodOHdPZ0IAszlEs5O5pvNegRRcAQ,24100
2103
- pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=zJZiWquEZXUV1ZZ4Kc-sKFyMuWz1UqtCcencXzKCsVc,54964
2104
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=_Ej1IusSYM2k9vZI0YdcL4Dz5AP5PPEOgYeS4O6wCGE,34628
2105
- pulumi_oci/networkloadbalancer/outputs.py,sha256=kLxeCa5vez0N0dbStgOnOQ1JgHm66CLBcj_HSRPmG_4,101039
2105
+ pulumi_oci/networkloadbalancer/listener.py,sha256=0nT9NpTCSQ8Xt26zv1RXvvFwk29MAp9ysAuBG0ZNAGU,23708
2106
+ pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=D-OY38j9RYXfcOIn1dXta5fI5Bhzdx4JAZfh0_tmwck,58574
2107
+ pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=AGrCap980cNthR7D6Dk6jYNlMbyZ8XW8_96-gllQ9vU,34894
2108
+ pulumi_oci/networkloadbalancer/outputs.py,sha256=86C8duPstoZHbPM_UUO3f4Zzrh60eK8bdOI8jVgRv-c,101611
2106
2109
  pulumi_oci/nosql/__init__.py,sha256=-ek2jAAWYNxuP3L92fUIFWteYxUOBDcs1fLMbUC_Eug,488
2107
2110
  pulumi_oci/nosql/_inputs.py,sha256=UGERTjYw4FJw8rYdKn8QwAjnHvJlrIr5bfW7AwgZGEQ,21829
2108
2111
  pulumi_oci/nosql/get_index.py,sha256=5M3aBxDn69iH6i_KtSotI1O1z9bzXYVQVZbFzCB6Km8,8709
@@ -2644,7 +2647,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=w4BfPa3_MHLImHTqz_eTHWcgT
2644
2647
  pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=LfjsBam9uc4uT6xy9jvdA_sIRBxI-vJmkYiX0fFCpL0,14380
2645
2648
  pulumi_oci/waf/network_address_list.py,sha256=kbj6jS11KnGJj-ey2RUaFNWJJHYG0_ZLVxUhja1vVx0,32809
2646
2649
  pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
2647
- pulumi_oci-1.29.0a1711606977.dist-info/METADATA,sha256=yymVZ0XOfR6vffJriKsQcSW6HAAVuBYqYqta5xFV5Yk,3899
2648
- pulumi_oci-1.29.0a1711606977.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
2649
- pulumi_oci-1.29.0a1711606977.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2650
- pulumi_oci-1.29.0a1711606977.dist-info/RECORD,,
2650
+ pulumi_oci-1.29.0a1711616250.dist-info/METADATA,sha256=T64xirKjkf4dpcPHlb2r5-qS8erVtE8IwzWstTmxG9I,3899
2651
+ pulumi_oci-1.29.0a1711616250.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
2652
+ pulumi_oci-1.29.0a1711616250.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2653
+ pulumi_oci-1.29.0a1711616250.dist-info/RECORD,,