pulumi-oci 1.30.0__py3-none-any.whl → 1.30.0a1711740723__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 (44) hide show
  1. pulumi_oci/cloudguard/_inputs.py +2 -10
  2. pulumi_oci/cloudguard/cloud_guard_configuration.py +2 -2
  3. pulumi_oci/cloudguard/cloud_guard_data_source.py +24 -45
  4. pulumi_oci/cloudguard/data_mask_rule.py +2 -2
  5. pulumi_oci/cloudguard/detector_recipe.py +2 -2
  6. pulumi_oci/cloudguard/get_cloud_guard_configuration.py +2 -2
  7. pulumi_oci/cloudguard/get_data_mask_rule.py +2 -2
  8. pulumi_oci/cloudguard/get_data_mask_rules.py +2 -2
  9. pulumi_oci/cloudguard/get_detector_recipe.py +2 -2
  10. pulumi_oci/cloudguard/get_detector_recipes.py +2 -2
  11. pulumi_oci/cloudguard/get_managed_list.py +2 -2
  12. pulumi_oci/cloudguard/get_managed_lists.py +2 -2
  13. pulumi_oci/cloudguard/managed_list.py +2 -2
  14. pulumi_oci/cloudguard/outputs.py +2 -10
  15. pulumi_oci/disasterrecovery/dr_protection_group.py +1 -1
  16. pulumi_oci/email/__init__.py +0 -1
  17. pulumi_oci/email/dkim.py +21 -21
  18. pulumi_oci/email/email_domain.py +7 -7
  19. pulumi_oci/email/get_dkim.py +2 -2
  20. pulumi_oci/email/get_dkims.py +2 -2
  21. pulumi_oci/email/get_email_domain.py +2 -2
  22. pulumi_oci/email/get_email_domains.py +1 -1
  23. pulumi_oci/email/get_sender.py +2 -15
  24. pulumi_oci/email/get_suppression.py +2 -2
  25. pulumi_oci/email/get_suppressions.py +4 -4
  26. pulumi_oci/email/outputs.py +12 -23
  27. pulumi_oci/email/sender.py +4 -32
  28. pulumi_oci/email/suppression.py +8 -8
  29. pulumi_oci/loadbalancer/_inputs.py +2 -2
  30. pulumi_oci/loadbalancer/outputs.py +4 -4
  31. pulumi_oci/loadbalancer/ssl_cipher_suite.py +0 -42
  32. pulumi_oci/managementagent/_inputs.py +44 -0
  33. pulumi_oci/managementagent/get_management_agents.py +3 -20
  34. pulumi_oci/managementagent/management_agent.py +79 -27
  35. pulumi_oci/managementagent/outputs.py +44 -0
  36. pulumi_oci/networkloadbalancer/_inputs.py +4 -4
  37. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -31
  38. pulumi_oci/networkloadbalancer/network_load_balancer.py +23 -184
  39. pulumi_oci/networkloadbalancer/outputs.py +4 -25
  40. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/METADATA +1 -1
  41. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/RECORD +43 -44
  42. pulumi_oci/email/get_configuration.py +0 -138
  43. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/WHEEL +0 -0
  44. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/top_level.txt +0 -0
@@ -24,9 +24,13 @@ class ManagementAgentArgs:
24
24
  """
25
25
  The set of arguments for constructing a ManagementAgent resource.
26
26
  :param pulumi.Input[str] managed_agent_id: Unique Management Agent identifier
27
- :param pulumi.Input[Mapping[str, Any]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
28
- :param pulumi.Input[str] display_name: Management Agent Name
29
- :param pulumi.Input[Mapping[str, Any]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
27
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
28
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] deploy_plugins_ids: (Updatable) Plugin Id list
29
+
30
+ ** IMPORTANT **
31
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
33
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
30
34
  """
31
35
  pulumi.set(__self__, "managed_agent_id", managed_agent_id)
32
36
  if defined_tags is not None:
@@ -54,7 +58,7 @@ class ManagementAgentArgs:
54
58
  @pulumi.getter(name="definedTags")
55
59
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
56
60
  """
57
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
61
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
58
62
  """
59
63
  return pulumi.get(self, "defined_tags")
60
64
 
@@ -65,6 +69,12 @@ class ManagementAgentArgs:
65
69
  @property
66
70
  @pulumi.getter(name="deployPluginsIds")
67
71
  def deploy_plugins_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
72
+ """
73
+ (Updatable) Plugin Id list
74
+
75
+ ** IMPORTANT **
76
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
77
+ """
68
78
  return pulumi.get(self, "deploy_plugins_ids")
69
79
 
70
80
  @deploy_plugins_ids.setter
@@ -75,7 +85,7 @@ class ManagementAgentArgs:
75
85
  @pulumi.getter(name="displayName")
76
86
  def display_name(self) -> Optional[pulumi.Input[str]]:
77
87
  """
78
- Management Agent Name
88
+ (Updatable) New displayName of Agent.
79
89
  """
80
90
  return pulumi.get(self, "display_name")
81
91
 
@@ -87,7 +97,7 @@ class ManagementAgentArgs:
87
97
  @pulumi.getter(name="freeformTags")
88
98
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
89
99
  """
90
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
100
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
91
101
  """
92
102
  return pulumi.get(self, "freeform_tags")
93
103
 
@@ -129,9 +139,16 @@ class _ManagementAgentState:
129
139
  version: Optional[pulumi.Input[str]] = None):
130
140
  """
131
141
  Input properties used for looking up and filtering ManagementAgent resources.
132
- :param pulumi.Input[Mapping[str, Any]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
133
- :param pulumi.Input[str] display_name: Management Agent Name
134
- :param pulumi.Input[Mapping[str, Any]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
142
+ :param pulumi.Input[str] availability_status: The current availability status of managementAgent
143
+ :param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
144
+ :param pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListArgs']]] data_source_lists: list of dataSources associated with the agent
145
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
146
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] deploy_plugins_ids: (Updatable) Plugin Id list
147
+
148
+ ** IMPORTANT **
149
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
150
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
151
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
135
152
  :param pulumi.Input[str] host: Management Agent host machine name
136
153
  :param pulumi.Input[str] host_id: Host resource ocid
137
154
  :param pulumi.Input[str] install_key_id: agent install key identifier
@@ -213,6 +230,9 @@ class _ManagementAgentState:
213
230
  @property
214
231
  @pulumi.getter(name="availabilityStatus")
215
232
  def availability_status(self) -> Optional[pulumi.Input[str]]:
233
+ """
234
+ The current availability status of managementAgent
235
+ """
216
236
  return pulumi.get(self, "availability_status")
217
237
 
218
238
  @availability_status.setter
@@ -222,6 +242,9 @@ class _ManagementAgentState:
222
242
  @property
223
243
  @pulumi.getter(name="compartmentId")
224
244
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
245
+ """
246
+ Compartment owning this DataSource.
247
+ """
225
248
  return pulumi.get(self, "compartment_id")
226
249
 
227
250
  @compartment_id.setter
@@ -231,6 +254,9 @@ class _ManagementAgentState:
231
254
  @property
232
255
  @pulumi.getter(name="dataSourceLists")
233
256
  def data_source_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListArgs']]]]:
257
+ """
258
+ list of dataSources associated with the agent
259
+ """
234
260
  return pulumi.get(self, "data_source_lists")
235
261
 
236
262
  @data_source_lists.setter
@@ -250,7 +276,7 @@ class _ManagementAgentState:
250
276
  @pulumi.getter(name="definedTags")
251
277
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
252
278
  """
253
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
279
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
254
280
  """
255
281
  return pulumi.get(self, "defined_tags")
256
282
 
@@ -261,6 +287,12 @@ class _ManagementAgentState:
261
287
  @property
262
288
  @pulumi.getter(name="deployPluginsIds")
263
289
  def deploy_plugins_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
290
+ """
291
+ (Updatable) Plugin Id list
292
+
293
+ ** IMPORTANT **
294
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
295
+ """
264
296
  return pulumi.get(self, "deploy_plugins_ids")
265
297
 
266
298
  @deploy_plugins_ids.setter
@@ -271,7 +303,7 @@ class _ManagementAgentState:
271
303
  @pulumi.getter(name="displayName")
272
304
  def display_name(self) -> Optional[pulumi.Input[str]]:
273
305
  """
274
- Management Agent Name
306
+ (Updatable) New displayName of Agent.
275
307
  """
276
308
  return pulumi.get(self, "display_name")
277
309
 
@@ -283,7 +315,7 @@ class _ManagementAgentState:
283
315
  @pulumi.getter(name="freeformTags")
284
316
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
285
317
  """
286
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
318
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
287
319
  """
288
320
  return pulumi.get(self, "freeform_tags")
289
321
 
@@ -556,10 +588,7 @@ class ManagementAgent(pulumi.CustomResource):
556
588
  test_management_agent = oci.management_agent.ManagementAgent("testManagementAgent", managed_agent_id=oci_management_agent_managed_agent["test_managed_agent"]["id"])
557
589
  ```
558
590
  <!--End PulumiCodeChooser -->
559
- ***
560
- Add plugin to Management Agent created via OCI Compute instance.
561
591
 
562
- Compute instance must have OCA Plugin "Management Agent" enabled
563
592
  ## Import
564
593
 
565
594
  ManagementAgents can be imported using the `id`, e.g.
@@ -570,9 +599,13 @@ class ManagementAgent(pulumi.CustomResource):
570
599
 
571
600
  :param str resource_name: The name of the resource.
572
601
  :param pulumi.ResourceOptions opts: Options for the resource.
573
- :param pulumi.Input[Mapping[str, Any]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
574
- :param pulumi.Input[str] display_name: Management Agent Name
575
- :param pulumi.Input[Mapping[str, Any]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
602
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
603
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] deploy_plugins_ids: (Updatable) Plugin Id list
604
+
605
+ ** IMPORTANT **
606
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
607
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
608
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
576
609
  :param pulumi.Input[str] managed_agent_id: Unique Management Agent identifier
577
610
  """
578
611
  ...
@@ -594,10 +627,7 @@ class ManagementAgent(pulumi.CustomResource):
594
627
  test_management_agent = oci.management_agent.ManagementAgent("testManagementAgent", managed_agent_id=oci_management_agent_managed_agent["test_managed_agent"]["id"])
595
628
  ```
596
629
  <!--End PulumiCodeChooser -->
597
- ***
598
- Add plugin to Management Agent created via OCI Compute instance.
599
630
 
600
- Compute instance must have OCA Plugin "Management Agent" enabled
601
631
  ## Import
602
632
 
603
633
  ManagementAgents can be imported using the `id`, e.g.
@@ -710,9 +740,16 @@ class ManagementAgent(pulumi.CustomResource):
710
740
  :param str resource_name: The unique name of the resulting resource.
711
741
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
712
742
  :param pulumi.ResourceOptions opts: Options for the resource.
713
- :param pulumi.Input[Mapping[str, Any]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
714
- :param pulumi.Input[str] display_name: Management Agent Name
715
- :param pulumi.Input[Mapping[str, Any]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
743
+ :param pulumi.Input[str] availability_status: The current availability status of managementAgent
744
+ :param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
745
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ManagementAgentDataSourceListArgs']]]] data_source_lists: list of dataSources associated with the agent
746
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
747
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] deploy_plugins_ids: (Updatable) Plugin Id list
748
+
749
+ ** IMPORTANT **
750
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
751
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
752
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
716
753
  :param pulumi.Input[str] host: Management Agent host machine name
717
754
  :param pulumi.Input[str] host_id: Host resource ocid
718
755
  :param pulumi.Input[str] install_key_id: agent install key identifier
@@ -771,16 +808,25 @@ class ManagementAgent(pulumi.CustomResource):
771
808
  @property
772
809
  @pulumi.getter(name="availabilityStatus")
773
810
  def availability_status(self) -> pulumi.Output[str]:
811
+ """
812
+ The current availability status of managementAgent
813
+ """
774
814
  return pulumi.get(self, "availability_status")
775
815
 
776
816
  @property
777
817
  @pulumi.getter(name="compartmentId")
778
818
  def compartment_id(self) -> pulumi.Output[str]:
819
+ """
820
+ Compartment owning this DataSource.
821
+ """
779
822
  return pulumi.get(self, "compartment_id")
780
823
 
781
824
  @property
782
825
  @pulumi.getter(name="dataSourceLists")
783
826
  def data_source_lists(self) -> pulumi.Output[Sequence['outputs.ManagementAgentDataSourceList']]:
827
+ """
828
+ list of dataSources associated with the agent
829
+ """
784
830
  return pulumi.get(self, "data_source_lists")
785
831
 
786
832
  @property
@@ -792,20 +838,26 @@ class ManagementAgent(pulumi.CustomResource):
792
838
  @pulumi.getter(name="definedTags")
793
839
  def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
794
840
  """
795
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
841
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
796
842
  """
797
843
  return pulumi.get(self, "defined_tags")
798
844
 
799
845
  @property
800
846
  @pulumi.getter(name="deployPluginsIds")
801
847
  def deploy_plugins_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
848
+ """
849
+ (Updatable) Plugin Id list
850
+
851
+ ** IMPORTANT **
852
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
853
+ """
802
854
  return pulumi.get(self, "deploy_plugins_ids")
803
855
 
804
856
  @property
805
857
  @pulumi.getter(name="displayName")
806
858
  def display_name(self) -> pulumi.Output[str]:
807
859
  """
808
- Management Agent Name
860
+ (Updatable) New displayName of Agent.
809
861
  """
810
862
  return pulumi.get(self, "display_name")
811
863
 
@@ -813,7 +865,7 @@ class ManagementAgent(pulumi.CustomResource):
813
865
  @pulumi.getter(name="freeformTags")
814
866
  def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]:
815
867
  """
816
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
868
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
817
869
  """
818
870
  return pulumi.get(self, "freeform_tags")
819
871
 
@@ -108,7 +108,15 @@ class ManagementAgentDataSourceList(dict):
108
108
  type: Optional[str] = None,
109
109
  url: Optional[str] = None):
110
110
  """
111
+ :param str allow_metrics: Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
112
+ :param str compartment_id: Compartment owning this DataSource.
113
+ :param int connection_timeout: Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
114
+ :param bool is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
115
+ :param str key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
116
+ :param Sequence['ManagementAgentDataSourceListMetricDimensionArgs'] metric_dimensions: The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
111
117
  :param str name: Name of the property
118
+ :param str namespace: The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
119
+ :param str proxy_url: The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
112
120
  :param int read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
113
121
  :param int read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
114
122
  :param str resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
@@ -159,31 +167,49 @@ class ManagementAgentDataSourceList(dict):
159
167
  @property
160
168
  @pulumi.getter(name="allowMetrics")
161
169
  def allow_metrics(self) -> Optional[str]:
170
+ """
171
+ Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
172
+ """
162
173
  return pulumi.get(self, "allow_metrics")
163
174
 
164
175
  @property
165
176
  @pulumi.getter(name="compartmentId")
166
177
  def compartment_id(self) -> Optional[str]:
178
+ """
179
+ Compartment owning this DataSource.
180
+ """
167
181
  return pulumi.get(self, "compartment_id")
168
182
 
169
183
  @property
170
184
  @pulumi.getter(name="connectionTimeout")
171
185
  def connection_timeout(self) -> Optional[int]:
186
+ """
187
+ Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
188
+ """
172
189
  return pulumi.get(self, "connection_timeout")
173
190
 
174
191
  @property
175
192
  @pulumi.getter(name="isDaemonSet")
176
193
  def is_daemon_set(self) -> Optional[bool]:
194
+ """
195
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
196
+ """
177
197
  return pulumi.get(self, "is_daemon_set")
178
198
 
179
199
  @property
180
200
  @pulumi.getter
181
201
  def key(self) -> Optional[str]:
202
+ """
203
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
204
+ """
182
205
  return pulumi.get(self, "key")
183
206
 
184
207
  @property
185
208
  @pulumi.getter(name="metricDimensions")
186
209
  def metric_dimensions(self) -> Optional[Sequence['outputs.ManagementAgentDataSourceListMetricDimension']]:
210
+ """
211
+ The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
212
+ """
187
213
  return pulumi.get(self, "metric_dimensions")
188
214
 
189
215
  @property
@@ -197,11 +223,17 @@ class ManagementAgentDataSourceList(dict):
197
223
  @property
198
224
  @pulumi.getter
199
225
  def namespace(self) -> Optional[str]:
226
+ """
227
+ The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
228
+ """
200
229
  return pulumi.get(self, "namespace")
201
230
 
202
231
  @property
203
232
  @pulumi.getter(name="proxyUrl")
204
233
  def proxy_url(self) -> Optional[str]:
234
+ """
235
+ The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
236
+ """
205
237
  return pulumi.get(self, "proxy_url")
206
238
 
207
239
  @property
@@ -284,6 +316,7 @@ class ManagementAgentDataSourceListMetricDimension(dict):
284
316
  value: Optional[str] = None):
285
317
  """
286
318
  :param str name: Name of the property
319
+ :param str value: Value of the metric dimension
287
320
  """
288
321
  if name is not None:
289
322
  pulumi.set(__self__, "name", name)
@@ -301,6 +334,9 @@ class ManagementAgentDataSourceListMetricDimension(dict):
301
334
  @property
302
335
  @pulumi.getter
303
336
  def value(self) -> Optional[str]:
337
+ """
338
+ Value of the metric dimension
339
+ """
304
340
  return pulumi.get(self, "value")
305
341
 
306
342
 
@@ -358,6 +394,8 @@ class ManagementAgentDataSourceSummaryList(dict):
358
394
  name: Optional[str] = None,
359
395
  type: Optional[str] = None):
360
396
  """
397
+ :param bool is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
398
+ :param str key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
361
399
  :param str name: Name of the property
362
400
  :param str type: The type of the DataSource.
363
401
  """
@@ -373,11 +411,17 @@ class ManagementAgentDataSourceSummaryList(dict):
373
411
  @property
374
412
  @pulumi.getter(name="isDaemonSet")
375
413
  def is_daemon_set(self) -> Optional[bool]:
414
+ """
415
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
416
+ """
376
417
  return pulumi.get(self, "is_daemon_set")
377
418
 
378
419
  @property
379
420
  @pulumi.getter
380
421
  def key(self) -> Optional[str]:
422
+ """
423
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
424
+ """
381
425
  return pulumi.get(self, "key")
382
426
 
383
427
  @property
@@ -341,8 +341,8 @@ class NetworkLoadBalancerIpAddressArgs:
341
341
  is_public: Optional[pulumi.Input[bool]] = None,
342
342
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerIpAddressReservedIpArgs']]]] = None):
343
343
  """
344
- :param pulumi.Input[str] ip_address: An IP address. Example: `192.168.0.3`
345
- :param pulumi.Input[str] ip_version: IP version associated with this IP address.
344
+ :param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
345
+ :param pulumi.Input[str] ip_version: IP version associated with the backend set.
346
346
  :param pulumi.Input[bool] is_public: Whether the IP address is public or private.
347
347
  :param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerIpAddressReservedIpArgs']]] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
348
348
  """
@@ -359,7 +359,7 @@ class NetworkLoadBalancerIpAddressArgs:
359
359
  @pulumi.getter(name="ipAddress")
360
360
  def ip_address(self) -> Optional[pulumi.Input[str]]:
361
361
  """
362
- An IP address. Example: `192.168.0.3`
362
+ The IP address of the backend server. Example: `10.0.0.3`
363
363
  """
364
364
  return pulumi.get(self, "ip_address")
365
365
 
@@ -371,7 +371,7 @@ class NetworkLoadBalancerIpAddressArgs:
371
371
  @pulumi.getter(name="ipVersion")
372
372
  def ip_version(self) -> Optional[pulumi.Input[str]]:
373
373
  """
374
- IP version associated with this IP address.
374
+ IP version associated with the backend set.
375
375
  """
376
376
  return pulumi.get(self, "ip_version")
377
377
 
@@ -22,13 +22,7 @@ class GetNetworkLoadBalancerResult:
22
22
  """
23
23
  A collection of values returned by getNetworkLoadBalancer.
24
24
  """
25
- def __init__(__self__, assigned_ipv6=None, assigned_private_ipv4=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_addresses=None, is_preserve_source_destination=None, is_private=None, is_symmetric_hash_enabled=None, lifecycle_details=None, network_load_balancer_id=None, network_security_group_ids=None, nlb_ip_version=None, reserved_ips=None, state=None, subnet_id=None, subnet_ipv6cidr=None, system_tags=None, time_created=None, time_updated=None):
26
- if assigned_ipv6 and not isinstance(assigned_ipv6, str):
27
- raise TypeError("Expected argument 'assigned_ipv6' to be a str")
28
- pulumi.set(__self__, "assigned_ipv6", assigned_ipv6)
29
- if assigned_private_ipv4 and not isinstance(assigned_private_ipv4, str):
30
- raise TypeError("Expected argument 'assigned_private_ipv4' to be a str")
31
- pulumi.set(__self__, "assigned_private_ipv4", assigned_private_ipv4)
25
+ def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_addresses=None, is_preserve_source_destination=None, is_private=None, is_symmetric_hash_enabled=None, lifecycle_details=None, network_load_balancer_id=None, network_security_group_ids=None, nlb_ip_version=None, reserved_ips=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
32
26
  if compartment_id and not isinstance(compartment_id, str):
33
27
  raise TypeError("Expected argument 'compartment_id' to be a str")
34
28
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -77,9 +71,6 @@ class GetNetworkLoadBalancerResult:
77
71
  if subnet_id and not isinstance(subnet_id, str):
78
72
  raise TypeError("Expected argument 'subnet_id' to be a str")
79
73
  pulumi.set(__self__, "subnet_id", subnet_id)
80
- if subnet_ipv6cidr and not isinstance(subnet_ipv6cidr, str):
81
- raise TypeError("Expected argument 'subnet_ipv6cidr' to be a str")
82
- pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
83
74
  if system_tags and not isinstance(system_tags, dict):
84
75
  raise TypeError("Expected argument 'system_tags' to be a dict")
85
76
  pulumi.set(__self__, "system_tags", system_tags)
@@ -90,16 +81,6 @@ class GetNetworkLoadBalancerResult:
90
81
  raise TypeError("Expected argument 'time_updated' to be a str")
91
82
  pulumi.set(__self__, "time_updated", time_updated)
92
83
 
93
- @property
94
- @pulumi.getter(name="assignedIpv6")
95
- def assigned_ipv6(self) -> str:
96
- return pulumi.get(self, "assigned_ipv6")
97
-
98
- @property
99
- @pulumi.getter(name="assignedPrivateIpv4")
100
- def assigned_private_ipv4(self) -> str:
101
- return pulumi.get(self, "assigned_private_ipv4")
102
-
103
84
  @property
104
85
  @pulumi.getter(name="compartmentId")
105
86
  def compartment_id(self) -> str:
@@ -222,11 +203,6 @@ class GetNetworkLoadBalancerResult:
222
203
  """
223
204
  return pulumi.get(self, "subnet_id")
224
205
 
225
- @property
226
- @pulumi.getter(name="subnetIpv6cidr")
227
- def subnet_ipv6cidr(self) -> str:
228
- return pulumi.get(self, "subnet_ipv6cidr")
229
-
230
206
  @property
231
207
  @pulumi.getter(name="systemTags")
232
208
  def system_tags(self) -> Mapping[str, Any]:
@@ -258,8 +234,6 @@ class AwaitableGetNetworkLoadBalancerResult(GetNetworkLoadBalancerResult):
258
234
  if False:
259
235
  yield self
260
236
  return GetNetworkLoadBalancerResult(
261
- assigned_ipv6=self.assigned_ipv6,
262
- assigned_private_ipv4=self.assigned_private_ipv4,
263
237
  compartment_id=self.compartment_id,
264
238
  defined_tags=self.defined_tags,
265
239
  display_name=self.display_name,
@@ -276,7 +250,6 @@ class AwaitableGetNetworkLoadBalancerResult(GetNetworkLoadBalancerResult):
276
250
  reserved_ips=self.reserved_ips,
277
251
  state=self.state,
278
252
  subnet_id=self.subnet_id,
279
- subnet_ipv6cidr=self.subnet_ipv6cidr,
280
253
  system_tags=self.system_tags,
281
254
  time_created=self.time_created,
282
255
  time_updated=self.time_updated)
@@ -309,8 +282,6 @@ def get_network_load_balancer(network_load_balancer_id: Optional[str] = None,
309
282
  __ret__ = pulumi.runtime.invoke('oci:NetworkLoadBalancer/getNetworkLoadBalancer:getNetworkLoadBalancer', __args__, opts=opts, typ=GetNetworkLoadBalancerResult).value
310
283
 
311
284
  return AwaitableGetNetworkLoadBalancerResult(
312
- assigned_ipv6=pulumi.get(__ret__, 'assigned_ipv6'),
313
- assigned_private_ipv4=pulumi.get(__ret__, 'assigned_private_ipv4'),
314
285
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
315
286
  defined_tags=pulumi.get(__ret__, 'defined_tags'),
316
287
  display_name=pulumi.get(__ret__, 'display_name'),
@@ -327,7 +298,6 @@ def get_network_load_balancer(network_load_balancer_id: Optional[str] = None,
327
298
  reserved_ips=pulumi.get(__ret__, 'reserved_ips'),
328
299
  state=pulumi.get(__ret__, 'state'),
329
300
  subnet_id=pulumi.get(__ret__, 'subnet_id'),
330
- subnet_ipv6cidr=pulumi.get(__ret__, 'subnet_ipv6cidr'),
331
301
  system_tags=pulumi.get(__ret__, 'system_tags'),
332
302
  time_created=pulumi.get(__ret__, 'time_created'),
333
303
  time_updated=pulumi.get(__ret__, 'time_updated'))