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
@@ -99,7 +99,6 @@ class _SenderState:
99
99
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
100
100
  is_spf: Optional[pulumi.Input[bool]] = None,
101
101
  state: Optional[pulumi.Input[str]] = None,
102
- system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
103
102
  time_created: Optional[pulumi.Input[str]] = None):
104
103
  """
105
104
  Input properties used for looking up and filtering Sender resources.
@@ -114,8 +113,7 @@ class _SenderState:
114
113
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
115
114
  :param pulumi.Input[bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
116
115
  :param pulumi.Input[str] state: The current status of the approved sender.
117
- :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
118
- :param pulumi.Input[str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
116
+ :param pulumi.Input[str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
119
117
  """
120
118
  if compartment_id is not None:
121
119
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -131,8 +129,6 @@ class _SenderState:
131
129
  pulumi.set(__self__, "is_spf", is_spf)
132
130
  if state is not None:
133
131
  pulumi.set(__self__, "state", state)
134
- if system_tags is not None:
135
- pulumi.set(__self__, "system_tags", system_tags)
136
132
  if time_created is not None:
137
133
  pulumi.set(__self__, "time_created", time_created)
138
134
 
@@ -224,23 +220,11 @@ class _SenderState:
224
220
  def state(self, value: Optional[pulumi.Input[str]]):
225
221
  pulumi.set(self, "state", value)
226
222
 
227
- @property
228
- @pulumi.getter(name="systemTags")
229
- def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
230
- """
231
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
232
- """
233
- return pulumi.get(self, "system_tags")
234
-
235
- @system_tags.setter
236
- def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
237
- pulumi.set(self, "system_tags", value)
238
-
239
223
  @property
240
224
  @pulumi.getter(name="timeCreated")
241
225
  def time_created(self) -> Optional[pulumi.Input[str]]:
242
226
  """
243
- The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
227
+ The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
244
228
  """
245
229
  return pulumi.get(self, "time_created")
246
230
 
@@ -379,7 +363,6 @@ class Sender(pulumi.CustomResource):
379
363
  __props__.__dict__["email_domain_id"] = None
380
364
  __props__.__dict__["is_spf"] = None
381
365
  __props__.__dict__["state"] = None
382
- __props__.__dict__["system_tags"] = None
383
366
  __props__.__dict__["time_created"] = None
384
367
  super(Sender, __self__).__init__(
385
368
  'oci:Email/sender:Sender',
@@ -398,7 +381,6 @@ class Sender(pulumi.CustomResource):
398
381
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
399
382
  is_spf: Optional[pulumi.Input[bool]] = None,
400
383
  state: Optional[pulumi.Input[str]] = None,
401
- system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
402
384
  time_created: Optional[pulumi.Input[str]] = None) -> 'Sender':
403
385
  """
404
386
  Get an existing Sender resource's state with the given name, id, and optional extra
@@ -418,8 +400,7 @@ class Sender(pulumi.CustomResource):
418
400
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
419
401
  :param pulumi.Input[bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
420
402
  :param pulumi.Input[str] state: The current status of the approved sender.
421
- :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
422
- :param pulumi.Input[str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
403
+ :param pulumi.Input[str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
423
404
  """
424
405
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
425
406
 
@@ -432,7 +413,6 @@ class Sender(pulumi.CustomResource):
432
413
  __props__.__dict__["freeform_tags"] = freeform_tags
433
414
  __props__.__dict__["is_spf"] = is_spf
434
415
  __props__.__dict__["state"] = state
435
- __props__.__dict__["system_tags"] = system_tags
436
416
  __props__.__dict__["time_created"] = time_created
437
417
  return Sender(resource_name, opts=opts, __props__=__props__)
438
418
 
@@ -496,19 +476,11 @@ class Sender(pulumi.CustomResource):
496
476
  """
497
477
  return pulumi.get(self, "state")
498
478
 
499
- @property
500
- @pulumi.getter(name="systemTags")
501
- def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
502
- """
503
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
504
- """
505
- return pulumi.get(self, "system_tags")
506
-
507
479
  @property
508
480
  @pulumi.getter(name="timeCreated")
509
481
  def time_created(self) -> pulumi.Output[str]:
510
482
  """
511
- The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
483
+ The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
512
484
  """
513
485
  return pulumi.get(self, "time_created")
514
486
 
@@ -80,8 +80,8 @@ class _SuppressionState:
80
80
  :param pulumi.Input[str] error_source: DNS name of the source of the error that caused the suppression. Will be set to either the remote-mta or reporting-mta field from a delivery status notification (RFC 3464) when available. Not provided for all types of suppressions, and not always known.
81
81
  :param pulumi.Input[str] message_id: The value of the Message-ID header from the email that triggered a suppression. This value is as defined in RFC 5322 section 3.6.4, excluding angle-brackets. Not provided for all types of suppressions.
82
82
  :param pulumi.Input[str] reason: The reason that the email address was suppressed. For more information on the types of bounces, see [Suppression List](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
83
- :param pulumi.Input[str] time_created: The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
84
- :param pulumi.Input[str] time_last_suppressed: The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
83
+ :param pulumi.Input[str] time_created: The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
84
+ :param pulumi.Input[str] time_last_suppressed: The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
85
85
  """
86
86
  if compartment_id is not None:
87
87
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -180,7 +180,7 @@ class _SuppressionState:
180
180
  @pulumi.getter(name="timeCreated")
181
181
  def time_created(self) -> Optional[pulumi.Input[str]]:
182
182
  """
183
- The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
183
+ The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
184
184
  """
185
185
  return pulumi.get(self, "time_created")
186
186
 
@@ -192,7 +192,7 @@ class _SuppressionState:
192
192
  @pulumi.getter(name="timeLastSuppressed")
193
193
  def time_last_suppressed(self) -> Optional[pulumi.Input[str]]:
194
194
  """
195
- The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
195
+ The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
196
196
  """
197
197
  return pulumi.get(self, "time_last_suppressed")
198
198
 
@@ -355,8 +355,8 @@ class Suppression(pulumi.CustomResource):
355
355
  :param pulumi.Input[str] error_source: DNS name of the source of the error that caused the suppression. Will be set to either the remote-mta or reporting-mta field from a delivery status notification (RFC 3464) when available. Not provided for all types of suppressions, and not always known.
356
356
  :param pulumi.Input[str] message_id: The value of the Message-ID header from the email that triggered a suppression. This value is as defined in RFC 5322 section 3.6.4, excluding angle-brackets. Not provided for all types of suppressions.
357
357
  :param pulumi.Input[str] reason: The reason that the email address was suppressed. For more information on the types of bounces, see [Suppression List](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
358
- :param pulumi.Input[str] time_created: The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
359
- :param pulumi.Input[str] time_last_suppressed: The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
358
+ :param pulumi.Input[str] time_created: The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
359
+ :param pulumi.Input[str] time_last_suppressed: The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
360
360
  """
361
361
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
362
362
 
@@ -428,7 +428,7 @@ class Suppression(pulumi.CustomResource):
428
428
  @pulumi.getter(name="timeCreated")
429
429
  def time_created(self) -> pulumi.Output[str]:
430
430
  """
431
- The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
431
+ The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
432
432
  """
433
433
  return pulumi.get(self, "time_created")
434
434
 
@@ -436,7 +436,7 @@ class Suppression(pulumi.CustomResource):
436
436
  @pulumi.getter(name="timeLastSuppressed")
437
437
  def time_last_suppressed(self) -> pulumi.Output[str]:
438
438
  """
439
- The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
439
+ The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
440
440
  """
441
441
  return pulumi.get(self, "time_last_suppressed")
442
442
 
@@ -2219,7 +2219,7 @@ class GetLoadBalancersFilterArgs:
2219
2219
  values: Sequence[str],
2220
2220
  regex: Optional[bool] = None):
2221
2221
  """
2222
- :param str name: A friendly name for the SSL cipher suite. It must be unique and it cannot be changed.
2222
+ :param str name: A unique name for the routing policy rule. Avoid entering confidential information.
2223
2223
  """
2224
2224
  pulumi.set(__self__, "name", name)
2225
2225
  pulumi.set(__self__, "values", values)
@@ -2230,7 +2230,7 @@ class GetLoadBalancersFilterArgs:
2230
2230
  @pulumi.getter
2231
2231
  def name(self) -> str:
2232
2232
  """
2233
- A friendly name for the SSL cipher suite. It must be unique and it cannot be changed.
2233
+ A unique name for the routing policy rule. Avoid entering confidential information.
2234
2234
  """
2235
2235
  return pulumi.get(self, "name")
2236
2236
 
@@ -3458,7 +3458,7 @@ class GetLoadBalancersFilterResult(dict):
3458
3458
  values: Sequence[str],
3459
3459
  regex: Optional[bool] = None):
3460
3460
  """
3461
- :param str name: A friendly name for the SSL cipher suite. It must be unique and it cannot be changed.
3461
+ :param str name: A unique name for the routing policy rule. Avoid entering confidential information.
3462
3462
  """
3463
3463
  pulumi.set(__self__, "name", name)
3464
3464
  pulumi.set(__self__, "values", values)
@@ -3469,7 +3469,7 @@ class GetLoadBalancersFilterResult(dict):
3469
3469
  @pulumi.getter
3470
3470
  def name(self) -> str:
3471
3471
  """
3472
- A friendly name for the SSL cipher suite. It must be unique and it cannot be changed.
3472
+ A unique name for the routing policy rule. Avoid entering confidential information.
3473
3473
  """
3474
3474
  return pulumi.get(self, "name")
3475
3475
 
@@ -3756,7 +3756,7 @@ class GetLoadBalancersLoadBalancerShapeDetailResult(dict):
3756
3756
  minimum_bandwidth_in_mbps: int):
3757
3757
  """
3758
3758
  :param int maximum_bandwidth_in_mbps: Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.
3759
- :param int minimum_bandwidth_in_mbps: Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: `150`
3759
+ :param int minimum_bandwidth_in_mbps: Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in [Service Limits](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm). Example: `150`
3760
3760
  """
3761
3761
  pulumi.set(__self__, "maximum_bandwidth_in_mbps", maximum_bandwidth_in_mbps)
3762
3762
  pulumi.set(__self__, "minimum_bandwidth_in_mbps", minimum_bandwidth_in_mbps)
@@ -3773,7 +3773,7 @@ class GetLoadBalancersLoadBalancerShapeDetailResult(dict):
3773
3773
  @pulumi.getter(name="minimumBandwidthInMbps")
3774
3774
  def minimum_bandwidth_in_mbps(self) -> int:
3775
3775
  """
3776
- Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: `150`
3776
+ Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in [Service Limits](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm). Example: `150`
3777
3777
  """
3778
3778
  return pulumi.get(self, "minimum_bandwidth_in_mbps")
3779
3779
 
@@ -28,12 +28,6 @@ class SslCipherSuiteArgs:
28
28
  * oci-compatible-ssl-cipher-suite-v1
29
29
  * oci-wider-compatible-ssl-cipher-suite-v1
30
30
  * oci-customized-ssl-cipher-suite
31
- * oci-default-http2-ssl-cipher-suite-v1
32
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
33
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
34
- * oci-tls-13-recommended-ssl-cipher-suite-v1
35
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
36
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
37
31
 
38
32
  example: `example_cipher_suite`
39
33
 
@@ -79,12 +73,6 @@ class SslCipherSuiteArgs:
79
73
  * oci-compatible-ssl-cipher-suite-v1
80
74
  * oci-wider-compatible-ssl-cipher-suite-v1
81
75
  * oci-customized-ssl-cipher-suite
82
- * oci-default-http2-ssl-cipher-suite-v1
83
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
84
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
85
- * oci-tls-13-recommended-ssl-cipher-suite-v1
86
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
87
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
88
76
 
89
77
  example: `example_cipher_suite`
90
78
 
@@ -117,12 +105,6 @@ class _SslCipherSuiteState:
117
105
  * oci-compatible-ssl-cipher-suite-v1
118
106
  * oci-wider-compatible-ssl-cipher-suite-v1
119
107
  * oci-customized-ssl-cipher-suite
120
- * oci-default-http2-ssl-cipher-suite-v1
121
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
122
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
123
- * oci-tls-13-recommended-ssl-cipher-suite-v1
124
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
125
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
126
108
 
127
109
  example: `example_cipher_suite`
128
110
 
@@ -172,12 +154,6 @@ class _SslCipherSuiteState:
172
154
  * oci-compatible-ssl-cipher-suite-v1
173
155
  * oci-wider-compatible-ssl-cipher-suite-v1
174
156
  * oci-customized-ssl-cipher-suite
175
- * oci-default-http2-ssl-cipher-suite-v1
176
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
177
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
178
- * oci-tls-13-recommended-ssl-cipher-suite-v1
179
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
180
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
181
157
 
182
158
  example: `example_cipher_suite`
183
159
 
@@ -247,12 +223,6 @@ class SslCipherSuite(pulumi.CustomResource):
247
223
  * oci-compatible-ssl-cipher-suite-v1
248
224
  * oci-wider-compatible-ssl-cipher-suite-v1
249
225
  * oci-customized-ssl-cipher-suite
250
- * oci-default-http2-ssl-cipher-suite-v1
251
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
252
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
253
- * oci-tls-13-recommended-ssl-cipher-suite-v1
254
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
255
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
256
226
 
257
227
  example: `example_cipher_suite`
258
228
 
@@ -357,12 +327,6 @@ class SslCipherSuite(pulumi.CustomResource):
357
327
  * oci-compatible-ssl-cipher-suite-v1
358
328
  * oci-wider-compatible-ssl-cipher-suite-v1
359
329
  * oci-customized-ssl-cipher-suite
360
- * oci-default-http2-ssl-cipher-suite-v1
361
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
362
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
363
- * oci-tls-13-recommended-ssl-cipher-suite-v1
364
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
365
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
366
330
 
367
331
  example: `example_cipher_suite`
368
332
 
@@ -405,12 +369,6 @@ class SslCipherSuite(pulumi.CustomResource):
405
369
  * oci-compatible-ssl-cipher-suite-v1
406
370
  * oci-wider-compatible-ssl-cipher-suite-v1
407
371
  * oci-customized-ssl-cipher-suite
408
- * oci-default-http2-ssl-cipher-suite-v1
409
- * oci-default-http2-tls-13-ssl-cipher-suite-v1
410
- * oci-default-http2-tls-12-13-ssl-cipher-suite-v1
411
- * oci-tls-13-recommended-ssl-cipher-suite-v1
412
- * oci-tls-12-13-wider-ssl-cipher-suite-v1
413
- * oci-tls-11-12-13-wider-ssl-cipher-suite-v1
414
372
 
415
373
  example: `example_cipher_suite`
416
374
 
@@ -46,7 +46,15 @@ class ManagementAgentDataSourceListArgs:
46
46
  type: Optional[pulumi.Input[str]] = None,
47
47
  url: Optional[pulumi.Input[str]] = None):
48
48
  """
49
+ :param pulumi.Input[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.
50
+ :param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
51
+ :param pulumi.Input[int] connection_timeout: Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
52
+ :param pulumi.Input[bool] is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
53
+ :param pulumi.Input[str] key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
54
+ :param pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListMetricDimensionArgs']]] metric_dimensions: The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
49
55
  :param pulumi.Input[str] name: Name of the property
56
+ :param pulumi.Input[str] namespace: The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
57
+ :param pulumi.Input[str] proxy_url: The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
50
58
  :param pulumi.Input[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).
51
59
  :param pulumi.Input[int] read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
52
60
  :param pulumi.Input[str] resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
@@ -97,6 +105,9 @@ class ManagementAgentDataSourceListArgs:
97
105
  @property
98
106
  @pulumi.getter(name="allowMetrics")
99
107
  def allow_metrics(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
110
+ """
100
111
  return pulumi.get(self, "allow_metrics")
101
112
 
102
113
  @allow_metrics.setter
@@ -106,6 +117,9 @@ class ManagementAgentDataSourceListArgs:
106
117
  @property
107
118
  @pulumi.getter(name="compartmentId")
108
119
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
120
+ """
121
+ Compartment owning this DataSource.
122
+ """
109
123
  return pulumi.get(self, "compartment_id")
110
124
 
111
125
  @compartment_id.setter
@@ -115,6 +129,9 @@ class ManagementAgentDataSourceListArgs:
115
129
  @property
116
130
  @pulumi.getter(name="connectionTimeout")
117
131
  def connection_timeout(self) -> Optional[pulumi.Input[int]]:
132
+ """
133
+ Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
134
+ """
118
135
  return pulumi.get(self, "connection_timeout")
119
136
 
120
137
  @connection_timeout.setter
@@ -124,6 +141,9 @@ class ManagementAgentDataSourceListArgs:
124
141
  @property
125
142
  @pulumi.getter(name="isDaemonSet")
126
143
  def is_daemon_set(self) -> Optional[pulumi.Input[bool]]:
144
+ """
145
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
146
+ """
127
147
  return pulumi.get(self, "is_daemon_set")
128
148
 
129
149
  @is_daemon_set.setter
@@ -133,6 +153,9 @@ class ManagementAgentDataSourceListArgs:
133
153
  @property
134
154
  @pulumi.getter
135
155
  def key(self) -> Optional[pulumi.Input[str]]:
156
+ """
157
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
158
+ """
136
159
  return pulumi.get(self, "key")
137
160
 
138
161
  @key.setter
@@ -142,6 +165,9 @@ class ManagementAgentDataSourceListArgs:
142
165
  @property
143
166
  @pulumi.getter(name="metricDimensions")
144
167
  def metric_dimensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListMetricDimensionArgs']]]]:
168
+ """
169
+ The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
170
+ """
145
171
  return pulumi.get(self, "metric_dimensions")
146
172
 
147
173
  @metric_dimensions.setter
@@ -163,6 +189,9 @@ class ManagementAgentDataSourceListArgs:
163
189
  @property
164
190
  @pulumi.getter
165
191
  def namespace(self) -> Optional[pulumi.Input[str]]:
192
+ """
193
+ The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
194
+ """
166
195
  return pulumi.get(self, "namespace")
167
196
 
168
197
  @namespace.setter
@@ -172,6 +201,9 @@ class ManagementAgentDataSourceListArgs:
172
201
  @property
173
202
  @pulumi.getter(name="proxyUrl")
174
203
  def proxy_url(self) -> Optional[pulumi.Input[str]]:
204
+ """
205
+ The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
206
+ """
175
207
  return pulumi.get(self, "proxy_url")
176
208
 
177
209
  @proxy_url.setter
@@ -294,6 +326,7 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
294
326
  value: Optional[pulumi.Input[str]] = None):
295
327
  """
296
328
  :param pulumi.Input[str] name: Name of the property
329
+ :param pulumi.Input[str] value: Value of the metric dimension
297
330
  """
298
331
  if name is not None:
299
332
  pulumi.set(__self__, "name", name)
@@ -315,6 +348,9 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
315
348
  @property
316
349
  @pulumi.getter
317
350
  def value(self) -> Optional[pulumi.Input[str]]:
351
+ """
352
+ Value of the metric dimension
353
+ """
318
354
  return pulumi.get(self, "value")
319
355
 
320
356
  @value.setter
@@ -367,6 +403,8 @@ class ManagementAgentDataSourceSummaryListArgs:
367
403
  name: Optional[pulumi.Input[str]] = None,
368
404
  type: Optional[pulumi.Input[str]] = None):
369
405
  """
406
+ :param pulumi.Input[bool] is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
407
+ :param pulumi.Input[str] key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
370
408
  :param pulumi.Input[str] name: Name of the property
371
409
  :param pulumi.Input[str] type: The type of the DataSource.
372
410
  """
@@ -382,6 +420,9 @@ class ManagementAgentDataSourceSummaryListArgs:
382
420
  @property
383
421
  @pulumi.getter(name="isDaemonSet")
384
422
  def is_daemon_set(self) -> Optional[pulumi.Input[bool]]:
423
+ """
424
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
425
+ """
385
426
  return pulumi.get(self, "is_daemon_set")
386
427
 
387
428
  @is_daemon_set.setter
@@ -391,6 +432,9 @@ class ManagementAgentDataSourceSummaryListArgs:
391
432
  @property
392
433
  @pulumi.getter
393
434
  def key(self) -> Optional[pulumi.Input[str]]:
435
+ """
436
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
437
+ """
394
438
  return pulumi.get(self, "key")
395
439
 
396
440
  @key.setter
@@ -23,7 +23,7 @@ class GetManagementAgentsResult:
23
23
  """
24
24
  A collection of values returned by getManagementAgents.
25
25
  """
26
- def __init__(__self__, access_level=None, availability_status=None, compartment_id=None, compartment_id_in_subtree=None, data_source_names=None, data_source_type=None, display_name=None, filters=None, gateway_ids=None, host_id=None, id=None, install_type=None, is_customer_deployed=None, management_agents=None, platform_types=None, plugin_names=None, state=None, versions=None, wait_for_host_id=None):
26
+ def __init__(__self__, access_level=None, availability_status=None, compartment_id=None, compartment_id_in_subtree=None, data_source_names=None, data_source_type=None, display_name=None, filters=None, gateway_ids=None, host_id=None, id=None, install_type=None, is_customer_deployed=None, management_agents=None, platform_types=None, plugin_names=None, state=None, versions=None):
27
27
  if access_level and not isinstance(access_level, str):
28
28
  raise TypeError("Expected argument 'access_level' to be a str")
29
29
  pulumi.set(__self__, "access_level", access_level)
@@ -78,9 +78,6 @@ class GetManagementAgentsResult:
78
78
  if versions and not isinstance(versions, list):
79
79
  raise TypeError("Expected argument 'versions' to be a list")
80
80
  pulumi.set(__self__, "versions", versions)
81
- if wait_for_host_id and not isinstance(wait_for_host_id, int):
82
- raise TypeError("Expected argument 'wait_for_host_id' to be a int")
83
- pulumi.set(__self__, "wait_for_host_id", wait_for_host_id)
84
81
 
85
82
  @property
86
83
  @pulumi.getter(name="accessLevel")
@@ -208,11 +205,6 @@ class GetManagementAgentsResult:
208
205
  """
209
206
  return pulumi.get(self, "versions")
210
207
 
211
- @property
212
- @pulumi.getter(name="waitForHostId")
213
- def wait_for_host_id(self) -> Optional[int]:
214
- return pulumi.get(self, "wait_for_host_id")
215
-
216
208
 
217
209
  class AwaitableGetManagementAgentsResult(GetManagementAgentsResult):
218
210
  # pylint: disable=using-constant-test
@@ -237,8 +229,7 @@ class AwaitableGetManagementAgentsResult(GetManagementAgentsResult):
237
229
  platform_types=self.platform_types,
238
230
  plugin_names=self.plugin_names,
239
231
  state=self.state,
240
- versions=self.versions,
241
- wait_for_host_id=self.wait_for_host_id)
232
+ versions=self.versions)
242
233
 
243
234
 
244
235
  def get_management_agents(access_level: Optional[str] = None,
@@ -257,7 +248,6 @@ def get_management_agents(access_level: Optional[str] = None,
257
248
  plugin_names: Optional[Sequence[str]] = None,
258
249
  state: Optional[str] = None,
259
250
  versions: Optional[Sequence[str]] = None,
260
- wait_for_host_id: Optional[int] = None,
261
251
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagementAgentsResult:
262
252
  """
263
253
  This data source provides the list of Management Agents in Oracle Cloud Infrastructure Management Agent service.
@@ -282,7 +272,6 @@ def get_management_agents(access_level: Optional[str] = None,
282
272
  display_name=var["management_agent_display_name"],
283
273
  gateway_ids=oci_apigateway_gateway["test_gateway"]["id"],
284
274
  host_id=oci_management_agent_host["test_host"]["id"],
285
- wait_for_host_id=10,
286
275
  install_type=var["management_agent_install_type"],
287
276
  is_customer_deployed=var["management_agent_is_customer_deployed"],
288
277
  platform_types=var["management_agent_platform_type"],
@@ -308,7 +297,6 @@ def get_management_agents(access_level: Optional[str] = None,
308
297
  :param Sequence[str] plugin_names: Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
309
298
  :param str state: Filter to return only Management Agents in the particular lifecycle state.
310
299
  :param Sequence[str] versions: Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
311
- :param int wait_for_host_id: When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
312
300
  """
313
301
  __args__ = dict()
314
302
  __args__['accessLevel'] = access_level
@@ -327,7 +315,6 @@ def get_management_agents(access_level: Optional[str] = None,
327
315
  __args__['pluginNames'] = plugin_names
328
316
  __args__['state'] = state
329
317
  __args__['versions'] = versions
330
- __args__['waitForHostId'] = wait_for_host_id
331
318
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
332
319
  __ret__ = pulumi.runtime.invoke('oci:ManagementAgent/getManagementAgents:getManagementAgents', __args__, opts=opts, typ=GetManagementAgentsResult).value
333
320
 
@@ -349,8 +336,7 @@ def get_management_agents(access_level: Optional[str] = None,
349
336
  platform_types=pulumi.get(__ret__, 'platform_types'),
350
337
  plugin_names=pulumi.get(__ret__, 'plugin_names'),
351
338
  state=pulumi.get(__ret__, 'state'),
352
- versions=pulumi.get(__ret__, 'versions'),
353
- wait_for_host_id=pulumi.get(__ret__, 'wait_for_host_id'))
339
+ versions=pulumi.get(__ret__, 'versions'))
354
340
 
355
341
 
356
342
  @_utilities.lift_output_func(get_management_agents)
@@ -370,7 +356,6 @@ def get_management_agents_output(access_level: Optional[pulumi.Input[Optional[st
370
356
  plugin_names: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
371
357
  state: Optional[pulumi.Input[Optional[str]]] = None,
372
358
  versions: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
373
- wait_for_host_id: Optional[pulumi.Input[Optional[int]]] = None,
374
359
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetManagementAgentsResult]:
375
360
  """
376
361
  This data source provides the list of Management Agents in Oracle Cloud Infrastructure Management Agent service.
@@ -395,7 +380,6 @@ def get_management_agents_output(access_level: Optional[pulumi.Input[Optional[st
395
380
  display_name=var["management_agent_display_name"],
396
381
  gateway_ids=oci_apigateway_gateway["test_gateway"]["id"],
397
382
  host_id=oci_management_agent_host["test_host"]["id"],
398
- wait_for_host_id=10,
399
383
  install_type=var["management_agent_install_type"],
400
384
  is_customer_deployed=var["management_agent_is_customer_deployed"],
401
385
  platform_types=var["management_agent_platform_type"],
@@ -421,6 +405,5 @@ def get_management_agents_output(access_level: Optional[pulumi.Input[Optional[st
421
405
  :param Sequence[str] plugin_names: Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
422
406
  :param str state: Filter to return only Management Agents in the particular lifecycle state.
423
407
  :param Sequence[str] versions: Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
424
- :param int wait_for_host_id: When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
425
408
  """
426
409
  ...