pulumi-oci 1.20.0a1705991859__py3-none-any.whl → 1.21.0a1706309702__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 (31) hide show
  1. pulumi_oci/__init__.py +35 -0
  2. pulumi_oci/core/get_boot_volume_attachments.py +36 -2
  3. pulumi_oci/database/autonomous_database_wallet.py +18 -0
  4. pulumi_oci/database/vm_cluster_network.py +20 -7
  5. pulumi_oci/generativeai/__init__.py +18 -0
  6. pulumi_oci/generativeai/_inputs.py +534 -0
  7. pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
  8. pulumi_oci/generativeai/endpoint.py +717 -0
  9. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
  10. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
  11. pulumi_oci/generativeai/get_endpoint.py +275 -0
  12. pulumi_oci/generativeai/get_endpoints.py +183 -0
  13. pulumi_oci/generativeai/get_model.py +353 -0
  14. pulumi_oci/generativeai/get_models.py +220 -0
  15. pulumi_oci/generativeai/model.py +858 -0
  16. pulumi_oci/generativeai/outputs.py +1721 -0
  17. pulumi_oci/loadbalancer/_inputs.py +12 -0
  18. pulumi_oci/loadbalancer/outputs.py +12 -0
  19. pulumi_oci/marketplace/get_publication.py +14 -1
  20. pulumi_oci/marketplace/outputs.py +11 -0
  21. pulumi_oci/marketplace/publication.py +28 -0
  22. pulumi_oci/stackmonitoring/__init__.py +3 -0
  23. pulumi_oci/stackmonitoring/_inputs.py +143 -0
  24. pulumi_oci/stackmonitoring/get_process_set.py +236 -0
  25. pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
  26. pulumi_oci/stackmonitoring/outputs.py +422 -0
  27. pulumi_oci/stackmonitoring/process_set.py +548 -0
  28. {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/METADATA +1 -1
  29. {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/RECORD +31 -16
  30. {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/WHEEL +0 -0
  31. {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/top_level.txt +0 -0
@@ -45,6 +45,8 @@ __all__ = [
45
45
  'MonitoredResourcesSearchAssociationItemSourceResourceDetail',
46
46
  'MonitoredResourcesSearchItem',
47
47
  'MonitoredResourcesSearchItemProperty',
48
+ 'ProcessSetSpecification',
49
+ 'ProcessSetSpecificationItem',
48
50
  'GetBaselineableMetricsBaselineableMetricSummaryCollectionResult',
49
51
  'GetBaselineableMetricsBaselineableMetricSummaryCollectionItemResult',
50
52
  'GetBaselineableMetricsEvaluateDataPointResult',
@@ -120,6 +122,13 @@ __all__ = [
120
122
  'GetMonitoredResourcesMonitoredResourceCollectionItemCredentialPropertyResult',
121
123
  'GetMonitoredResourcesMonitoredResourceCollectionItemDatabaseConnectionDetailResult',
122
124
  'GetMonitoredResourcesMonitoredResourceCollectionItemPropertyResult',
125
+ 'GetProcessSetSpecificationResult',
126
+ 'GetProcessSetSpecificationItemResult',
127
+ 'GetProcessSetsFilterResult',
128
+ 'GetProcessSetsProcessSetCollectionResult',
129
+ 'GetProcessSetsProcessSetCollectionItemResult',
130
+ 'GetProcessSetsProcessSetCollectionItemSpecificationResult',
131
+ 'GetProcessSetsProcessSetCollectionItemSpecificationItemResult',
123
132
  ]
124
133
 
125
134
  @pulumi.output_type
@@ -2655,6 +2664,108 @@ class MonitoredResourcesSearchItemProperty(dict):
2655
2664
  return pulumi.get(self, "value")
2656
2665
 
2657
2666
 
2667
+ @pulumi.output_type
2668
+ class ProcessSetSpecification(dict):
2669
+ def __init__(__self__, *,
2670
+ items: Sequence['outputs.ProcessSetSpecificationItem']):
2671
+ """
2672
+ :param Sequence['ProcessSetSpecificationItemArgs'] items: (Updatable) List of Process Set specification details.
2673
+ """
2674
+ pulumi.set(__self__, "items", items)
2675
+
2676
+ @property
2677
+ @pulumi.getter
2678
+ def items(self) -> Sequence['outputs.ProcessSetSpecificationItem']:
2679
+ """
2680
+ (Updatable) List of Process Set specification details.
2681
+ """
2682
+ return pulumi.get(self, "items")
2683
+
2684
+
2685
+ @pulumi.output_type
2686
+ class ProcessSetSpecificationItem(dict):
2687
+ @staticmethod
2688
+ def __key_warning(key: str):
2689
+ suggest = None
2690
+ if key == "processCommand":
2691
+ suggest = "process_command"
2692
+ elif key == "processLineRegexPattern":
2693
+ suggest = "process_line_regex_pattern"
2694
+ elif key == "processUser":
2695
+ suggest = "process_user"
2696
+
2697
+ if suggest:
2698
+ pulumi.log.warn(f"Key '{key}' not found in ProcessSetSpecificationItem. Access the value via the '{suggest}' property getter instead.")
2699
+
2700
+ def __getitem__(self, key: str) -> Any:
2701
+ ProcessSetSpecificationItem.__key_warning(key)
2702
+ return super().__getitem__(key)
2703
+
2704
+ def get(self, key: str, default = None) -> Any:
2705
+ ProcessSetSpecificationItem.__key_warning(key)
2706
+ return super().get(key, default)
2707
+
2708
+ def __init__(__self__, *,
2709
+ label: Optional[str] = None,
2710
+ process_command: Optional[str] = None,
2711
+ process_line_regex_pattern: Optional[str] = None,
2712
+ process_user: Optional[str] = None):
2713
+ """
2714
+ :param str label: (Updatable) Optional label used to identify a single filter.
2715
+ :param str process_command: (Updatable) String literal used for exact matching on process name.
2716
+ :param str process_line_regex_pattern: (Updatable) Regex pattern matching on process arguments.
2717
+ :param str process_user: (Updatable) String literal used for exact matching on process user.
2718
+
2719
+
2720
+ ** IMPORTANT **
2721
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2722
+ """
2723
+ if label is not None:
2724
+ pulumi.set(__self__, "label", label)
2725
+ if process_command is not None:
2726
+ pulumi.set(__self__, "process_command", process_command)
2727
+ if process_line_regex_pattern is not None:
2728
+ pulumi.set(__self__, "process_line_regex_pattern", process_line_regex_pattern)
2729
+ if process_user is not None:
2730
+ pulumi.set(__self__, "process_user", process_user)
2731
+
2732
+ @property
2733
+ @pulumi.getter
2734
+ def label(self) -> Optional[str]:
2735
+ """
2736
+ (Updatable) Optional label used to identify a single filter.
2737
+ """
2738
+ return pulumi.get(self, "label")
2739
+
2740
+ @property
2741
+ @pulumi.getter(name="processCommand")
2742
+ def process_command(self) -> Optional[str]:
2743
+ """
2744
+ (Updatable) String literal used for exact matching on process name.
2745
+ """
2746
+ return pulumi.get(self, "process_command")
2747
+
2748
+ @property
2749
+ @pulumi.getter(name="processLineRegexPattern")
2750
+ def process_line_regex_pattern(self) -> Optional[str]:
2751
+ """
2752
+ (Updatable) Regex pattern matching on process arguments.
2753
+ """
2754
+ return pulumi.get(self, "process_line_regex_pattern")
2755
+
2756
+ @property
2757
+ @pulumi.getter(name="processUser")
2758
+ def process_user(self) -> Optional[str]:
2759
+ """
2760
+ (Updatable) String literal used for exact matching on process user.
2761
+
2762
+
2763
+ ** IMPORTANT **
2764
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2765
+ """
2766
+ return pulumi.get(self, "process_user")
2767
+
2768
+
2658
2769
  @pulumi.output_type
2659
2770
  class GetBaselineableMetricsBaselineableMetricSummaryCollectionResult(dict):
2660
2771
  def __init__(__self__, *,
@@ -6953,3 +7064,314 @@ class GetMonitoredResourcesMonitoredResourceCollectionItemPropertyResult(dict):
6953
7064
  return pulumi.get(self, "value")
6954
7065
 
6955
7066
 
7067
+ @pulumi.output_type
7068
+ class GetProcessSetSpecificationResult(dict):
7069
+ def __init__(__self__, *,
7070
+ items: Sequence['outputs.GetProcessSetSpecificationItemResult']):
7071
+ """
7072
+ :param Sequence['GetProcessSetSpecificationItemArgs'] items: List of Process Set specification details.
7073
+ """
7074
+ pulumi.set(__self__, "items", items)
7075
+
7076
+ @property
7077
+ @pulumi.getter
7078
+ def items(self) -> Sequence['outputs.GetProcessSetSpecificationItemResult']:
7079
+ """
7080
+ List of Process Set specification details.
7081
+ """
7082
+ return pulumi.get(self, "items")
7083
+
7084
+
7085
+ @pulumi.output_type
7086
+ class GetProcessSetSpecificationItemResult(dict):
7087
+ def __init__(__self__, *,
7088
+ label: str,
7089
+ process_command: str,
7090
+ process_line_regex_pattern: str,
7091
+ process_user: str):
7092
+ """
7093
+ :param str label: Optional label used to identify a single filter.
7094
+ :param str process_command: String literal used for exact matching on process name.
7095
+ :param str process_line_regex_pattern: Regex pattern matching on process arguments.
7096
+ :param str process_user: String literal used for exact matching on process user.
7097
+ """
7098
+ pulumi.set(__self__, "label", label)
7099
+ pulumi.set(__self__, "process_command", process_command)
7100
+ pulumi.set(__self__, "process_line_regex_pattern", process_line_regex_pattern)
7101
+ pulumi.set(__self__, "process_user", process_user)
7102
+
7103
+ @property
7104
+ @pulumi.getter
7105
+ def label(self) -> str:
7106
+ """
7107
+ Optional label used to identify a single filter.
7108
+ """
7109
+ return pulumi.get(self, "label")
7110
+
7111
+ @property
7112
+ @pulumi.getter(name="processCommand")
7113
+ def process_command(self) -> str:
7114
+ """
7115
+ String literal used for exact matching on process name.
7116
+ """
7117
+ return pulumi.get(self, "process_command")
7118
+
7119
+ @property
7120
+ @pulumi.getter(name="processLineRegexPattern")
7121
+ def process_line_regex_pattern(self) -> str:
7122
+ """
7123
+ Regex pattern matching on process arguments.
7124
+ """
7125
+ return pulumi.get(self, "process_line_regex_pattern")
7126
+
7127
+ @property
7128
+ @pulumi.getter(name="processUser")
7129
+ def process_user(self) -> str:
7130
+ """
7131
+ String literal used for exact matching on process user.
7132
+ """
7133
+ return pulumi.get(self, "process_user")
7134
+
7135
+
7136
+ @pulumi.output_type
7137
+ class GetProcessSetsFilterResult(dict):
7138
+ def __init__(__self__, *,
7139
+ name: str,
7140
+ values: Sequence[str],
7141
+ regex: Optional[bool] = None):
7142
+ pulumi.set(__self__, "name", name)
7143
+ pulumi.set(__self__, "values", values)
7144
+ if regex is not None:
7145
+ pulumi.set(__self__, "regex", regex)
7146
+
7147
+ @property
7148
+ @pulumi.getter
7149
+ def name(self) -> str:
7150
+ return pulumi.get(self, "name")
7151
+
7152
+ @property
7153
+ @pulumi.getter
7154
+ def values(self) -> Sequence[str]:
7155
+ return pulumi.get(self, "values")
7156
+
7157
+ @property
7158
+ @pulumi.getter
7159
+ def regex(self) -> Optional[bool]:
7160
+ return pulumi.get(self, "regex")
7161
+
7162
+
7163
+ @pulumi.output_type
7164
+ class GetProcessSetsProcessSetCollectionResult(dict):
7165
+ def __init__(__self__, *,
7166
+ items: Sequence['outputs.GetProcessSetsProcessSetCollectionItemResult']):
7167
+ """
7168
+ :param Sequence['GetProcessSetsProcessSetCollectionItemArgs'] items: List of Process Set specification details.
7169
+ """
7170
+ pulumi.set(__self__, "items", items)
7171
+
7172
+ @property
7173
+ @pulumi.getter
7174
+ def items(self) -> Sequence['outputs.GetProcessSetsProcessSetCollectionItemResult']:
7175
+ """
7176
+ List of Process Set specification details.
7177
+ """
7178
+ return pulumi.get(self, "items")
7179
+
7180
+
7181
+ @pulumi.output_type
7182
+ class GetProcessSetsProcessSetCollectionItemResult(dict):
7183
+ def __init__(__self__, *,
7184
+ compartment_id: str,
7185
+ defined_tags: Mapping[str, Any],
7186
+ display_name: str,
7187
+ freeform_tags: Mapping[str, Any],
7188
+ id: str,
7189
+ revision: str,
7190
+ specifications: Sequence['outputs.GetProcessSetsProcessSetCollectionItemSpecificationResult'],
7191
+ state: str,
7192
+ system_tags: Mapping[str, Any],
7193
+ time_created: str,
7194
+ time_updated: str):
7195
+ """
7196
+ :param str compartment_id: The ID of the compartment in which data is listed.
7197
+ :param 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"}`
7198
+ :param str display_name: A filter to return only resources that match the entire display name given.
7199
+ :param 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"}`
7200
+ :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Process Set.
7201
+ :param str revision: The current revision of the Process Set.
7202
+ :param Sequence['GetProcessSetsProcessSetCollectionItemSpecificationArgs'] specifications: Collection of regular expression specifications used to identify the processes to be monitored.
7203
+ :param str state: The current state of the Resource.
7204
+ :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7205
+ :param str time_created: The time the process set was created. An RFC3339 formatted datetime string.
7206
+ :param str time_updated: The time the process set was last updated. An RFC3339 formatted datetime string.
7207
+ """
7208
+ pulumi.set(__self__, "compartment_id", compartment_id)
7209
+ pulumi.set(__self__, "defined_tags", defined_tags)
7210
+ pulumi.set(__self__, "display_name", display_name)
7211
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
7212
+ pulumi.set(__self__, "id", id)
7213
+ pulumi.set(__self__, "revision", revision)
7214
+ pulumi.set(__self__, "specifications", specifications)
7215
+ pulumi.set(__self__, "state", state)
7216
+ pulumi.set(__self__, "system_tags", system_tags)
7217
+ pulumi.set(__self__, "time_created", time_created)
7218
+ pulumi.set(__self__, "time_updated", time_updated)
7219
+
7220
+ @property
7221
+ @pulumi.getter(name="compartmentId")
7222
+ def compartment_id(self) -> str:
7223
+ """
7224
+ The ID of the compartment in which data is listed.
7225
+ """
7226
+ return pulumi.get(self, "compartment_id")
7227
+
7228
+ @property
7229
+ @pulumi.getter(name="definedTags")
7230
+ def defined_tags(self) -> Mapping[str, Any]:
7231
+ """
7232
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
7233
+ """
7234
+ return pulumi.get(self, "defined_tags")
7235
+
7236
+ @property
7237
+ @pulumi.getter(name="displayName")
7238
+ def display_name(self) -> str:
7239
+ """
7240
+ A filter to return only resources that match the entire display name given.
7241
+ """
7242
+ return pulumi.get(self, "display_name")
7243
+
7244
+ @property
7245
+ @pulumi.getter(name="freeformTags")
7246
+ def freeform_tags(self) -> Mapping[str, Any]:
7247
+ """
7248
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
7249
+ """
7250
+ return pulumi.get(self, "freeform_tags")
7251
+
7252
+ @property
7253
+ @pulumi.getter
7254
+ def id(self) -> str:
7255
+ """
7256
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Process Set.
7257
+ """
7258
+ return pulumi.get(self, "id")
7259
+
7260
+ @property
7261
+ @pulumi.getter
7262
+ def revision(self) -> str:
7263
+ """
7264
+ The current revision of the Process Set.
7265
+ """
7266
+ return pulumi.get(self, "revision")
7267
+
7268
+ @property
7269
+ @pulumi.getter
7270
+ def specifications(self) -> Sequence['outputs.GetProcessSetsProcessSetCollectionItemSpecificationResult']:
7271
+ """
7272
+ Collection of regular expression specifications used to identify the processes to be monitored.
7273
+ """
7274
+ return pulumi.get(self, "specifications")
7275
+
7276
+ @property
7277
+ @pulumi.getter
7278
+ def state(self) -> str:
7279
+ """
7280
+ The current state of the Resource.
7281
+ """
7282
+ return pulumi.get(self, "state")
7283
+
7284
+ @property
7285
+ @pulumi.getter(name="systemTags")
7286
+ def system_tags(self) -> Mapping[str, Any]:
7287
+ """
7288
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7289
+ """
7290
+ return pulumi.get(self, "system_tags")
7291
+
7292
+ @property
7293
+ @pulumi.getter(name="timeCreated")
7294
+ def time_created(self) -> str:
7295
+ """
7296
+ The time the process set was created. An RFC3339 formatted datetime string.
7297
+ """
7298
+ return pulumi.get(self, "time_created")
7299
+
7300
+ @property
7301
+ @pulumi.getter(name="timeUpdated")
7302
+ def time_updated(self) -> str:
7303
+ """
7304
+ The time the process set was last updated. An RFC3339 formatted datetime string.
7305
+ """
7306
+ return pulumi.get(self, "time_updated")
7307
+
7308
+
7309
+ @pulumi.output_type
7310
+ class GetProcessSetsProcessSetCollectionItemSpecificationResult(dict):
7311
+ def __init__(__self__, *,
7312
+ items: Sequence['outputs.GetProcessSetsProcessSetCollectionItemSpecificationItemResult']):
7313
+ """
7314
+ :param Sequence['GetProcessSetsProcessSetCollectionItemSpecificationItemArgs'] items: List of Process Set specification details.
7315
+ """
7316
+ pulumi.set(__self__, "items", items)
7317
+
7318
+ @property
7319
+ @pulumi.getter
7320
+ def items(self) -> Sequence['outputs.GetProcessSetsProcessSetCollectionItemSpecificationItemResult']:
7321
+ """
7322
+ List of Process Set specification details.
7323
+ """
7324
+ return pulumi.get(self, "items")
7325
+
7326
+
7327
+ @pulumi.output_type
7328
+ class GetProcessSetsProcessSetCollectionItemSpecificationItemResult(dict):
7329
+ def __init__(__self__, *,
7330
+ label: str,
7331
+ process_command: str,
7332
+ process_line_regex_pattern: str,
7333
+ process_user: str):
7334
+ """
7335
+ :param str label: Optional label used to identify a single filter.
7336
+ :param str process_command: String literal used for exact matching on process name.
7337
+ :param str process_line_regex_pattern: Regex pattern matching on process arguments.
7338
+ :param str process_user: String literal used for exact matching on process user.
7339
+ """
7340
+ pulumi.set(__self__, "label", label)
7341
+ pulumi.set(__self__, "process_command", process_command)
7342
+ pulumi.set(__self__, "process_line_regex_pattern", process_line_regex_pattern)
7343
+ pulumi.set(__self__, "process_user", process_user)
7344
+
7345
+ @property
7346
+ @pulumi.getter
7347
+ def label(self) -> str:
7348
+ """
7349
+ Optional label used to identify a single filter.
7350
+ """
7351
+ return pulumi.get(self, "label")
7352
+
7353
+ @property
7354
+ @pulumi.getter(name="processCommand")
7355
+ def process_command(self) -> str:
7356
+ """
7357
+ String literal used for exact matching on process name.
7358
+ """
7359
+ return pulumi.get(self, "process_command")
7360
+
7361
+ @property
7362
+ @pulumi.getter(name="processLineRegexPattern")
7363
+ def process_line_regex_pattern(self) -> str:
7364
+ """
7365
+ Regex pattern matching on process arguments.
7366
+ """
7367
+ return pulumi.get(self, "process_line_regex_pattern")
7368
+
7369
+ @property
7370
+ @pulumi.getter(name="processUser")
7371
+ def process_user(self) -> str:
7372
+ """
7373
+ String literal used for exact matching on process user.
7374
+ """
7375
+ return pulumi.get(self, "process_user")
7376
+
7377
+