pulumi-oci 2.6.0__py3-none-any.whl → 2.6.0a1722924801__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.
- pulumi_oci/__init__.py +0 -32
- pulumi_oci/bigdataservice/_inputs.py +14 -157
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +3 -64
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +30 -257
- pulumi_oci/devops/__init__.py +0 -6
- pulumi_oci/devops/_inputs.py +32 -531
- pulumi_oci/devops/get_build_runs.py +5 -0
- pulumi_oci/devops/get_repositories.py +1 -1
- pulumi_oci/devops/get_repository.py +4 -17
- pulumi_oci/devops/get_repository_diffs.py +3 -20
- pulumi_oci/devops/get_repository_ref.py +2 -2
- pulumi_oci/devops/get_triggers.py +5 -0
- pulumi_oci/devops/outputs.py +162 -1198
- pulumi_oci/devops/repository.py +75 -66
- pulumi_oci/devops/repository_ref.py +2 -2
- pulumi_oci/jms/__init__.py +0 -4
- pulumi_oci/jms/_inputs.py +0 -80
- pulumi_oci/jms/get_fleet_blocklists.py +2 -2
- pulumi_oci/jms/get_fleet_crypto_analysis_result.py +3 -29
- pulumi_oci/jms/get_fleet_crypto_analysis_results.py +3 -97
- pulumi_oci/jms/get_fleet_export_setting.py +3 -3
- pulumi_oci/jms/get_fleet_export_status.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_result.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_results.py +5 -45
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +5 -25
- pulumi_oci/jms/get_fleets.py +2 -2
- pulumi_oci/jms/get_installation_site.py +4 -4
- pulumi_oci/jms/get_installation_sites.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_download_tokens.py +2 -2
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py +2 -2
- pulumi_oci/jms/get_java_family.py +1 -14
- pulumi_oci/jms/outputs.py +32 -488
- pulumi_oci/osmanagementhub/get_software_source.py +1 -19
- pulumi_oci/osmanagementhub/software_source.py +0 -82
- pulumi_oci/psql/_inputs.py +4 -8
- pulumi_oci/psql/backup.py +4 -4
- pulumi_oci/psql/configuration.py +38 -141
- pulumi_oci/psql/db_system.py +55 -53
- pulumi_oci/psql/get_backup.py +1 -1
- pulumi_oci/psql/get_configuration.py +1 -27
- pulumi_oci/psql/get_configurations.py +2 -2
- pulumi_oci/psql/get_default_configuration.py +2 -15
- pulumi_oci/psql/get_default_configurations.py +2 -2
- pulumi_oci/psql/outputs.py +13 -176
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/METADATA +1 -1
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/RECORD +52 -62
- pulumi_oci/devops/get_project_repository_setting.py +0 -129
- pulumi_oci/devops/get_repository_protected_branches.py +0 -150
- pulumi_oci/devops/get_repository_setting.py +0 -142
- pulumi_oci/devops/project_repository_setting.py +0 -338
- pulumi_oci/devops/repository_protected_branch_management.py +0 -333
- pulumi_oci/devops/repository_setting.py +0 -391
- pulumi_oci/jms/get_agent_installers.py +0 -190
- pulumi_oci/jms/get_jms_plugin.py +0 -313
- pulumi_oci/jms/get_jms_plugins.py +0 -291
- pulumi_oci/jms/jms_plugin.py +0 -731
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/top_level.txt +0 -0
pulumi_oci/devops/repository.py
CHANGED
@@ -23,12 +23,11 @@ class RepositoryArgs:
|
|
23
23
|
description: Optional[pulumi.Input[str]] = None,
|
24
24
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
25
25
|
mirror_repository_config: Optional[pulumi.Input['RepositoryMirrorRepositoryConfigArgs']] = None,
|
26
|
-
name: Optional[pulumi.Input[str]] = None
|
27
|
-
parent_repository_id: Optional[pulumi.Input[str]] = None):
|
26
|
+
name: Optional[pulumi.Input[str]] = None):
|
28
27
|
"""
|
29
28
|
The set of arguments for constructing a Repository resource.
|
30
29
|
:param pulumi.Input[str] project_id: The OCID of the DevOps project containing the repository.
|
31
|
-
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
30
|
+
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
32
31
|
|
33
32
|
|
34
33
|
** IMPORTANT **
|
@@ -38,8 +37,7 @@ class RepositoryArgs:
|
|
38
37
|
:param pulumi.Input[str] description: (Updatable) Details of the repository. Avoid entering confidential information.
|
39
38
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
|
40
39
|
:param pulumi.Input['RepositoryMirrorRepositoryConfigArgs'] mirror_repository_config: (Updatable) Configuration information for mirroring the repository.
|
41
|
-
:param pulumi.Input[str] name: (Updatable)
|
42
|
-
:param pulumi.Input[str] parent_repository_id: The OCID of the parent repository.
|
40
|
+
:param pulumi.Input[str] name: (Updatable) Unique name of a repository.
|
43
41
|
"""
|
44
42
|
pulumi.set(__self__, "project_id", project_id)
|
45
43
|
pulumi.set(__self__, "repository_type", repository_type)
|
@@ -55,8 +53,6 @@ class RepositoryArgs:
|
|
55
53
|
pulumi.set(__self__, "mirror_repository_config", mirror_repository_config)
|
56
54
|
if name is not None:
|
57
55
|
pulumi.set(__self__, "name", name)
|
58
|
-
if parent_repository_id is not None:
|
59
|
-
pulumi.set(__self__, "parent_repository_id", parent_repository_id)
|
60
56
|
|
61
57
|
@property
|
62
58
|
@pulumi.getter(name="projectId")
|
@@ -74,7 +70,7 @@ class RepositoryArgs:
|
|
74
70
|
@pulumi.getter(name="repositoryType")
|
75
71
|
def repository_type(self) -> pulumi.Input[str]:
|
76
72
|
"""
|
77
|
-
(Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
73
|
+
(Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
78
74
|
|
79
75
|
|
80
76
|
** IMPORTANT **
|
@@ -150,7 +146,7 @@ class RepositoryArgs:
|
|
150
146
|
@pulumi.getter
|
151
147
|
def name(self) -> Optional[pulumi.Input[str]]:
|
152
148
|
"""
|
153
|
-
(Updatable)
|
149
|
+
(Updatable) Unique name of a repository.
|
154
150
|
"""
|
155
151
|
return pulumi.get(self, "name")
|
156
152
|
|
@@ -158,18 +154,6 @@ class RepositoryArgs:
|
|
158
154
|
def name(self, value: Optional[pulumi.Input[str]]):
|
159
155
|
pulumi.set(self, "name", value)
|
160
156
|
|
161
|
-
@property
|
162
|
-
@pulumi.getter(name="parentRepositoryId")
|
163
|
-
def parent_repository_id(self) -> Optional[pulumi.Input[str]]:
|
164
|
-
"""
|
165
|
-
The OCID of the parent repository.
|
166
|
-
"""
|
167
|
-
return pulumi.get(self, "parent_repository_id")
|
168
|
-
|
169
|
-
@parent_repository_id.setter
|
170
|
-
def parent_repository_id(self, value: Optional[pulumi.Input[str]]):
|
171
|
-
pulumi.set(self, "parent_repository_id", value)
|
172
|
-
|
173
157
|
|
174
158
|
@pulumi.input_type
|
175
159
|
class _RepositoryState:
|
@@ -186,7 +170,6 @@ class _RepositoryState:
|
|
186
170
|
mirror_repository_config: Optional[pulumi.Input['RepositoryMirrorRepositoryConfigArgs']] = None,
|
187
171
|
name: Optional[pulumi.Input[str]] = None,
|
188
172
|
namespace: Optional[pulumi.Input[str]] = None,
|
189
|
-
parent_repository_id: Optional[pulumi.Input[str]] = None,
|
190
173
|
project_id: Optional[pulumi.Input[str]] = None,
|
191
174
|
project_name: Optional[pulumi.Input[str]] = None,
|
192
175
|
repository_type: Optional[pulumi.Input[str]] = None,
|
@@ -209,12 +192,11 @@ class _RepositoryState:
|
|
209
192
|
:param pulumi.Input[str] http_url: HTTP URL that you use to git clone, pull and push.
|
210
193
|
:param pulumi.Input[str] lifecyle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
211
194
|
:param pulumi.Input['RepositoryMirrorRepositoryConfigArgs'] mirror_repository_config: (Updatable) Configuration information for mirroring the repository.
|
212
|
-
:param pulumi.Input[str] name: (Updatable)
|
195
|
+
:param pulumi.Input[str] name: (Updatable) Unique name of a repository.
|
213
196
|
:param pulumi.Input[str] namespace: Tenancy unique namespace.
|
214
|
-
:param pulumi.Input[str] parent_repository_id: The OCID of the parent repository.
|
215
197
|
:param pulumi.Input[str] project_id: The OCID of the DevOps project containing the repository.
|
216
198
|
:param pulumi.Input[str] project_name: Unique project name in a namespace.
|
217
|
-
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
199
|
+
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
218
200
|
|
219
201
|
|
220
202
|
** IMPORTANT **
|
@@ -225,7 +207,7 @@ class _RepositoryState:
|
|
225
207
|
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
226
208
|
:param pulumi.Input[str] time_created: The time the repository was created. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
227
209
|
:param pulumi.Input[str] time_updated: The time the repository was updated. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
228
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] trigger_build_events: Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs.
|
210
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] trigger_build_events: Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
|
229
211
|
"""
|
230
212
|
if branch_count is not None:
|
231
213
|
pulumi.set(__self__, "branch_count", branch_count)
|
@@ -251,8 +233,6 @@ class _RepositoryState:
|
|
251
233
|
pulumi.set(__self__, "name", name)
|
252
234
|
if namespace is not None:
|
253
235
|
pulumi.set(__self__, "namespace", namespace)
|
254
|
-
if parent_repository_id is not None:
|
255
|
-
pulumi.set(__self__, "parent_repository_id", parent_repository_id)
|
256
236
|
if project_id is not None:
|
257
237
|
pulumi.set(__self__, "project_id", project_id)
|
258
238
|
if project_name is not None:
|
@@ -398,7 +378,7 @@ class _RepositoryState:
|
|
398
378
|
@pulumi.getter
|
399
379
|
def name(self) -> Optional[pulumi.Input[str]]:
|
400
380
|
"""
|
401
|
-
(Updatable)
|
381
|
+
(Updatable) Unique name of a repository.
|
402
382
|
"""
|
403
383
|
return pulumi.get(self, "name")
|
404
384
|
|
@@ -418,18 +398,6 @@ class _RepositoryState:
|
|
418
398
|
def namespace(self, value: Optional[pulumi.Input[str]]):
|
419
399
|
pulumi.set(self, "namespace", value)
|
420
400
|
|
421
|
-
@property
|
422
|
-
@pulumi.getter(name="parentRepositoryId")
|
423
|
-
def parent_repository_id(self) -> Optional[pulumi.Input[str]]:
|
424
|
-
"""
|
425
|
-
The OCID of the parent repository.
|
426
|
-
"""
|
427
|
-
return pulumi.get(self, "parent_repository_id")
|
428
|
-
|
429
|
-
@parent_repository_id.setter
|
430
|
-
def parent_repository_id(self, value: Optional[pulumi.Input[str]]):
|
431
|
-
pulumi.set(self, "parent_repository_id", value)
|
432
|
-
|
433
401
|
@property
|
434
402
|
@pulumi.getter(name="projectId")
|
435
403
|
def project_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -458,7 +426,7 @@ class _RepositoryState:
|
|
458
426
|
@pulumi.getter(name="repositoryType")
|
459
427
|
def repository_type(self) -> Optional[pulumi.Input[str]]:
|
460
428
|
"""
|
461
|
-
(Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
429
|
+
(Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
462
430
|
|
463
431
|
|
464
432
|
** IMPORTANT **
|
@@ -546,7 +514,7 @@ class _RepositoryState:
|
|
546
514
|
@pulumi.getter(name="triggerBuildEvents")
|
547
515
|
def trigger_build_events(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
548
516
|
"""
|
549
|
-
Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs.
|
517
|
+
Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
|
550
518
|
"""
|
551
519
|
return pulumi.get(self, "trigger_build_events")
|
552
520
|
|
@@ -566,7 +534,6 @@ class Repository(pulumi.CustomResource):
|
|
566
534
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
567
535
|
mirror_repository_config: Optional[pulumi.Input[pulumi.InputType['RepositoryMirrorRepositoryConfigArgs']]] = None,
|
568
536
|
name: Optional[pulumi.Input[str]] = None,
|
569
|
-
parent_repository_id: Optional[pulumi.Input[str]] = None,
|
570
537
|
project_id: Optional[pulumi.Input[str]] = None,
|
571
538
|
repository_type: Optional[pulumi.Input[str]] = None,
|
572
539
|
__props__=None):
|
@@ -575,6 +542,34 @@ class Repository(pulumi.CustomResource):
|
|
575
542
|
|
576
543
|
Creates a new repository.
|
577
544
|
|
545
|
+
## Example Usage
|
546
|
+
|
547
|
+
```python
|
548
|
+
import pulumi
|
549
|
+
import pulumi_oci as oci
|
550
|
+
|
551
|
+
test_repository = oci.dev_ops.Repository("test_repository",
|
552
|
+
name=repository_name,
|
553
|
+
project_id=test_project["id"],
|
554
|
+
repository_type=repository_repository_type,
|
555
|
+
default_branch=repository_default_branch,
|
556
|
+
defined_tags={
|
557
|
+
"foo-namespace.bar-key": "value",
|
558
|
+
},
|
559
|
+
description=repository_description,
|
560
|
+
freeform_tags={
|
561
|
+
"bar-key": "value",
|
562
|
+
},
|
563
|
+
mirror_repository_config=oci.dev_ops.RepositoryMirrorRepositoryConfigArgs(
|
564
|
+
connector_id=test_connector["id"],
|
565
|
+
repository_url=repository_mirror_repository_config_repository_url,
|
566
|
+
trigger_schedule=oci.dev_ops.RepositoryMirrorRepositoryConfigTriggerScheduleArgs(
|
567
|
+
schedule_type=repository_mirror_repository_config_trigger_schedule_schedule_type,
|
568
|
+
custom_schedule=repository_mirror_repository_config_trigger_schedule_custom_schedule,
|
569
|
+
),
|
570
|
+
))
|
571
|
+
```
|
572
|
+
|
578
573
|
## Import
|
579
574
|
|
580
575
|
Repositories can be imported using the `id`, e.g.
|
@@ -590,10 +585,9 @@ class Repository(pulumi.CustomResource):
|
|
590
585
|
:param pulumi.Input[str] description: (Updatable) Details of the repository. Avoid entering confidential information.
|
591
586
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
|
592
587
|
:param pulumi.Input[pulumi.InputType['RepositoryMirrorRepositoryConfigArgs']] mirror_repository_config: (Updatable) Configuration information for mirroring the repository.
|
593
|
-
:param pulumi.Input[str] name: (Updatable)
|
594
|
-
:param pulumi.Input[str] parent_repository_id: The OCID of the parent repository.
|
588
|
+
:param pulumi.Input[str] name: (Updatable) Unique name of a repository.
|
595
589
|
:param pulumi.Input[str] project_id: The OCID of the DevOps project containing the repository.
|
596
|
-
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
590
|
+
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
597
591
|
|
598
592
|
|
599
593
|
** IMPORTANT **
|
@@ -610,6 +604,34 @@ class Repository(pulumi.CustomResource):
|
|
610
604
|
|
611
605
|
Creates a new repository.
|
612
606
|
|
607
|
+
## Example Usage
|
608
|
+
|
609
|
+
```python
|
610
|
+
import pulumi
|
611
|
+
import pulumi_oci as oci
|
612
|
+
|
613
|
+
test_repository = oci.dev_ops.Repository("test_repository",
|
614
|
+
name=repository_name,
|
615
|
+
project_id=test_project["id"],
|
616
|
+
repository_type=repository_repository_type,
|
617
|
+
default_branch=repository_default_branch,
|
618
|
+
defined_tags={
|
619
|
+
"foo-namespace.bar-key": "value",
|
620
|
+
},
|
621
|
+
description=repository_description,
|
622
|
+
freeform_tags={
|
623
|
+
"bar-key": "value",
|
624
|
+
},
|
625
|
+
mirror_repository_config=oci.dev_ops.RepositoryMirrorRepositoryConfigArgs(
|
626
|
+
connector_id=test_connector["id"],
|
627
|
+
repository_url=repository_mirror_repository_config_repository_url,
|
628
|
+
trigger_schedule=oci.dev_ops.RepositoryMirrorRepositoryConfigTriggerScheduleArgs(
|
629
|
+
schedule_type=repository_mirror_repository_config_trigger_schedule_schedule_type,
|
630
|
+
custom_schedule=repository_mirror_repository_config_trigger_schedule_custom_schedule,
|
631
|
+
),
|
632
|
+
))
|
633
|
+
```
|
634
|
+
|
613
635
|
## Import
|
614
636
|
|
615
637
|
Repositories can be imported using the `id`, e.g.
|
@@ -639,7 +661,6 @@ class Repository(pulumi.CustomResource):
|
|
639
661
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
640
662
|
mirror_repository_config: Optional[pulumi.Input[pulumi.InputType['RepositoryMirrorRepositoryConfigArgs']]] = None,
|
641
663
|
name: Optional[pulumi.Input[str]] = None,
|
642
|
-
parent_repository_id: Optional[pulumi.Input[str]] = None,
|
643
664
|
project_id: Optional[pulumi.Input[str]] = None,
|
644
665
|
repository_type: Optional[pulumi.Input[str]] = None,
|
645
666
|
__props__=None):
|
@@ -657,7 +678,6 @@ class Repository(pulumi.CustomResource):
|
|
657
678
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
658
679
|
__props__.__dict__["mirror_repository_config"] = mirror_repository_config
|
659
680
|
__props__.__dict__["name"] = name
|
660
|
-
__props__.__dict__["parent_repository_id"] = parent_repository_id
|
661
681
|
if project_id is None and not opts.urn:
|
662
682
|
raise TypeError("Missing required property 'project_id'")
|
663
683
|
__props__.__dict__["project_id"] = project_id
|
@@ -700,7 +720,6 @@ class Repository(pulumi.CustomResource):
|
|
700
720
|
mirror_repository_config: Optional[pulumi.Input[pulumi.InputType['RepositoryMirrorRepositoryConfigArgs']]] = None,
|
701
721
|
name: Optional[pulumi.Input[str]] = None,
|
702
722
|
namespace: Optional[pulumi.Input[str]] = None,
|
703
|
-
parent_repository_id: Optional[pulumi.Input[str]] = None,
|
704
723
|
project_id: Optional[pulumi.Input[str]] = None,
|
705
724
|
project_name: Optional[pulumi.Input[str]] = None,
|
706
725
|
repository_type: Optional[pulumi.Input[str]] = None,
|
@@ -728,12 +747,11 @@ class Repository(pulumi.CustomResource):
|
|
728
747
|
:param pulumi.Input[str] http_url: HTTP URL that you use to git clone, pull and push.
|
729
748
|
:param pulumi.Input[str] lifecyle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
730
749
|
:param pulumi.Input[pulumi.InputType['RepositoryMirrorRepositoryConfigArgs']] mirror_repository_config: (Updatable) Configuration information for mirroring the repository.
|
731
|
-
:param pulumi.Input[str] name: (Updatable)
|
750
|
+
:param pulumi.Input[str] name: (Updatable) Unique name of a repository.
|
732
751
|
:param pulumi.Input[str] namespace: Tenancy unique namespace.
|
733
|
-
:param pulumi.Input[str] parent_repository_id: The OCID of the parent repository.
|
734
752
|
:param pulumi.Input[str] project_id: The OCID of the DevOps project containing the repository.
|
735
753
|
:param pulumi.Input[str] project_name: Unique project name in a namespace.
|
736
|
-
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
754
|
+
:param pulumi.Input[str] repository_type: (Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
737
755
|
|
738
756
|
|
739
757
|
** IMPORTANT **
|
@@ -744,7 +762,7 @@ class Repository(pulumi.CustomResource):
|
|
744
762
|
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
745
763
|
:param pulumi.Input[str] time_created: The time the repository was created. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
746
764
|
:param pulumi.Input[str] time_updated: The time the repository was updated. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
747
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] trigger_build_events: Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs.
|
765
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] trigger_build_events: Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
|
748
766
|
"""
|
749
767
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
750
768
|
|
@@ -762,7 +780,6 @@ class Repository(pulumi.CustomResource):
|
|
762
780
|
__props__.__dict__["mirror_repository_config"] = mirror_repository_config
|
763
781
|
__props__.__dict__["name"] = name
|
764
782
|
__props__.__dict__["namespace"] = namespace
|
765
|
-
__props__.__dict__["parent_repository_id"] = parent_repository_id
|
766
783
|
__props__.__dict__["project_id"] = project_id
|
767
784
|
__props__.__dict__["project_name"] = project_name
|
768
785
|
__props__.__dict__["repository_type"] = repository_type
|
@@ -859,7 +876,7 @@ class Repository(pulumi.CustomResource):
|
|
859
876
|
@pulumi.getter
|
860
877
|
def name(self) -> pulumi.Output[str]:
|
861
878
|
"""
|
862
|
-
(Updatable)
|
879
|
+
(Updatable) Unique name of a repository.
|
863
880
|
"""
|
864
881
|
return pulumi.get(self, "name")
|
865
882
|
|
@@ -871,14 +888,6 @@ class Repository(pulumi.CustomResource):
|
|
871
888
|
"""
|
872
889
|
return pulumi.get(self, "namespace")
|
873
890
|
|
874
|
-
@property
|
875
|
-
@pulumi.getter(name="parentRepositoryId")
|
876
|
-
def parent_repository_id(self) -> pulumi.Output[str]:
|
877
|
-
"""
|
878
|
-
The OCID of the parent repository.
|
879
|
-
"""
|
880
|
-
return pulumi.get(self, "parent_repository_id")
|
881
|
-
|
882
891
|
@property
|
883
892
|
@pulumi.getter(name="projectId")
|
884
893
|
def project_id(self) -> pulumi.Output[str]:
|
@@ -899,7 +908,7 @@ class Repository(pulumi.CustomResource):
|
|
899
908
|
@pulumi.getter(name="repositoryType")
|
900
909
|
def repository_type(self) -> pulumi.Output[str]:
|
901
910
|
"""
|
902
|
-
(Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
911
|
+
(Updatable) Type of repository. Allowed values: `MIRRORED` `HOSTED`
|
903
912
|
|
904
913
|
|
905
914
|
** IMPORTANT **
|
@@ -959,7 +968,7 @@ class Repository(pulumi.CustomResource):
|
|
959
968
|
@pulumi.getter(name="triggerBuildEvents")
|
960
969
|
def trigger_build_events(self) -> pulumi.Output[Sequence[str]]:
|
961
970
|
"""
|
962
|
-
Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs.
|
971
|
+
Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
|
963
972
|
"""
|
964
973
|
return pulumi.get(self, "trigger_build_events")
|
965
974
|
|
@@ -262,7 +262,7 @@ class RepositoryRef(pulumi.CustomResource):
|
|
262
262
|
"""
|
263
263
|
This resource provides the Repository Ref resource in Oracle Cloud Infrastructure Devops service.
|
264
264
|
|
265
|
-
Creates a new reference or updates an existing one.
|
265
|
+
Creates a new reference or updates an existing one.
|
266
266
|
|
267
267
|
## Example Usage
|
268
268
|
|
@@ -307,7 +307,7 @@ class RepositoryRef(pulumi.CustomResource):
|
|
307
307
|
"""
|
308
308
|
This resource provides the Repository Ref resource in Oracle Cloud Infrastructure Devops service.
|
309
309
|
|
310
|
-
Creates a new reference or updates an existing one.
|
310
|
+
Creates a new reference or updates an existing one.
|
311
311
|
|
312
312
|
## Example Usage
|
313
313
|
|
pulumi_oci/jms/__init__.py
CHANGED
@@ -7,7 +7,6 @@ import typing
|
|
7
7
|
# Export this package's modules as members:
|
8
8
|
from .fleet import *
|
9
9
|
from .fleet_advanced_feature_configuration import *
|
10
|
-
from .get_agent_installers import *
|
11
10
|
from .get_announcements import *
|
12
11
|
from .get_fleet import *
|
13
12
|
from .get_fleet_advanced_feature_configuration import *
|
@@ -40,13 +39,10 @@ from .get_java_families import *
|
|
40
39
|
from .get_java_family import *
|
41
40
|
from .get_java_release import *
|
42
41
|
from .get_java_releases import *
|
43
|
-
from .get_jms_plugin import *
|
44
|
-
from .get_jms_plugins import *
|
45
42
|
from .get_list_jre_usage import *
|
46
43
|
from .get_summarize_resource_inventory import *
|
47
44
|
from .java_downloads_java_download_report import *
|
48
45
|
from .java_downloads_java_download_token import *
|
49
46
|
from .java_downloads_java_license_acceptance_record import *
|
50
|
-
from .jms_plugin import *
|
51
47
|
from ._inputs import *
|
52
48
|
from . import outputs
|
pulumi_oci/jms/_inputs.py
CHANGED
@@ -30,7 +30,6 @@ __all__ = [
|
|
30
30
|
'JavaDownloadsJavaDownloadTokenLastUpdatedByArgs',
|
31
31
|
'JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs',
|
32
32
|
'JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs',
|
33
|
-
'GetAgentInstallersFilterArgs',
|
34
33
|
'GetAnnouncementsFilterArgs',
|
35
34
|
'GetFleetBlocklistsFilterArgs',
|
36
35
|
'GetFleetCryptoAnalysisResultsFilterArgs',
|
@@ -47,7 +46,6 @@ __all__ = [
|
|
47
46
|
'GetJavaDownloadsJavaLicensesFilterArgs',
|
48
47
|
'GetJavaFamiliesFilterArgs',
|
49
48
|
'GetJavaReleasesFilterArgs',
|
50
|
-
'GetJmsPluginsFilterArgs',
|
51
49
|
]
|
52
50
|
|
53
51
|
@pulumi.input_type
|
@@ -1066,45 +1064,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs:
|
|
1066
1064
|
pulumi.set(self, "id", value)
|
1067
1065
|
|
1068
1066
|
|
1069
|
-
@pulumi.input_type
|
1070
|
-
class GetAgentInstallersFilterArgs:
|
1071
|
-
def __init__(__self__, *,
|
1072
|
-
name: str,
|
1073
|
-
values: Sequence[str],
|
1074
|
-
regex: Optional[bool] = None):
|
1075
|
-
pulumi.set(__self__, "name", name)
|
1076
|
-
pulumi.set(__self__, "values", values)
|
1077
|
-
if regex is not None:
|
1078
|
-
pulumi.set(__self__, "regex", regex)
|
1079
|
-
|
1080
|
-
@property
|
1081
|
-
@pulumi.getter
|
1082
|
-
def name(self) -> str:
|
1083
|
-
return pulumi.get(self, "name")
|
1084
|
-
|
1085
|
-
@name.setter
|
1086
|
-
def name(self, value: str):
|
1087
|
-
pulumi.set(self, "name", value)
|
1088
|
-
|
1089
|
-
@property
|
1090
|
-
@pulumi.getter
|
1091
|
-
def values(self) -> Sequence[str]:
|
1092
|
-
return pulumi.get(self, "values")
|
1093
|
-
|
1094
|
-
@values.setter
|
1095
|
-
def values(self, value: Sequence[str]):
|
1096
|
-
pulumi.set(self, "values", value)
|
1097
|
-
|
1098
|
-
@property
|
1099
|
-
@pulumi.getter
|
1100
|
-
def regex(self) -> Optional[bool]:
|
1101
|
-
return pulumi.get(self, "regex")
|
1102
|
-
|
1103
|
-
@regex.setter
|
1104
|
-
def regex(self, value: Optional[bool]):
|
1105
|
-
pulumi.set(self, "regex", value)
|
1106
|
-
|
1107
|
-
|
1108
1067
|
@pulumi.input_type
|
1109
1068
|
class GetAnnouncementsFilterArgs:
|
1110
1069
|
def __init__(__self__, *,
|
@@ -1735,42 +1694,3 @@ class GetJavaReleasesFilterArgs:
|
|
1735
1694
|
pulumi.set(self, "regex", value)
|
1736
1695
|
|
1737
1696
|
|
1738
|
-
@pulumi.input_type
|
1739
|
-
class GetJmsPluginsFilterArgs:
|
1740
|
-
def __init__(__self__, *,
|
1741
|
-
name: str,
|
1742
|
-
values: Sequence[str],
|
1743
|
-
regex: Optional[bool] = None):
|
1744
|
-
pulumi.set(__self__, "name", name)
|
1745
|
-
pulumi.set(__self__, "values", values)
|
1746
|
-
if regex is not None:
|
1747
|
-
pulumi.set(__self__, "regex", regex)
|
1748
|
-
|
1749
|
-
@property
|
1750
|
-
@pulumi.getter
|
1751
|
-
def name(self) -> str:
|
1752
|
-
return pulumi.get(self, "name")
|
1753
|
-
|
1754
|
-
@name.setter
|
1755
|
-
def name(self, value: str):
|
1756
|
-
pulumi.set(self, "name", value)
|
1757
|
-
|
1758
|
-
@property
|
1759
|
-
@pulumi.getter
|
1760
|
-
def values(self) -> Sequence[str]:
|
1761
|
-
return pulumi.get(self, "values")
|
1762
|
-
|
1763
|
-
@values.setter
|
1764
|
-
def values(self, value: Sequence[str]):
|
1765
|
-
pulumi.set(self, "values", value)
|
1766
|
-
|
1767
|
-
@property
|
1768
|
-
@pulumi.getter
|
1769
|
-
def regex(self) -> Optional[bool]:
|
1770
|
-
return pulumi.get(self, "regex")
|
1771
|
-
|
1772
|
-
@regex.setter
|
1773
|
-
def regex(self, value: Optional[bool]):
|
1774
|
-
pulumi.set(self, "regex", value)
|
1775
|
-
|
1776
|
-
|
@@ -120,7 +120,7 @@ def get_fleet_blocklists(filters: Optional[Sequence[pulumi.InputType['GetFleetBl
|
|
120
120
|
import pulumi_oci as oci
|
121
121
|
|
122
122
|
test_fleet_blocklists = oci.Jms.get_fleet_blocklists(fleet_id=test_fleet["id"],
|
123
|
-
managed_instance_id=
|
123
|
+
managed_instance_id=test_managed_instance["id"],
|
124
124
|
operation=fleet_blocklist_operation)
|
125
125
|
```
|
126
126
|
|
@@ -164,7 +164,7 @@ def get_fleet_blocklists_output(filters: Optional[pulumi.Input[Optional[Sequence
|
|
164
164
|
import pulumi_oci as oci
|
165
165
|
|
166
166
|
test_fleet_blocklists = oci.Jms.get_fleet_blocklists(fleet_id=test_fleet["id"],
|
167
|
-
managed_instance_id=
|
167
|
+
managed_instance_id=test_managed_instance["id"],
|
168
168
|
operation=fleet_blocklist_operation)
|
169
169
|
```
|
170
170
|
|
@@ -21,7 +21,7 @@ class GetFleetCryptoAnalysisResultResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getFleetCryptoAnalysisResult.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, aggregation_mode=None, bucket=None, crypto_analysis_result_id=None, crypto_roadmap_version=None, finding_count=None, fleet_id=None, host_name=None, id=None, managed_instance_id=None, namespace=None, non_compliant_finding_count=None, object=None, summarized_event_count=None, time_created=None,
|
24
|
+
def __init__(__self__, aggregation_mode=None, bucket=None, crypto_analysis_result_id=None, crypto_roadmap_version=None, finding_count=None, fleet_id=None, host_name=None, id=None, managed_instance_id=None, namespace=None, non_compliant_finding_count=None, object=None, summarized_event_count=None, time_created=None, time_first_event=None, time_last_event=None, total_event_count=None, work_request_id=None):
|
25
25
|
if aggregation_mode and not isinstance(aggregation_mode, str):
|
26
26
|
raise TypeError("Expected argument 'aggregation_mode' to be a str")
|
27
27
|
pulumi.set(__self__, "aggregation_mode", aggregation_mode)
|
@@ -64,18 +64,12 @@ class GetFleetCryptoAnalysisResultResult:
|
|
64
64
|
if time_created and not isinstance(time_created, str):
|
65
65
|
raise TypeError("Expected argument 'time_created' to be a str")
|
66
66
|
pulumi.set(__self__, "time_created", time_created)
|
67
|
-
if time_finished and not isinstance(time_finished, str):
|
68
|
-
raise TypeError("Expected argument 'time_finished' to be a str")
|
69
|
-
pulumi.set(__self__, "time_finished", time_finished)
|
70
67
|
if time_first_event and not isinstance(time_first_event, str):
|
71
68
|
raise TypeError("Expected argument 'time_first_event' to be a str")
|
72
69
|
pulumi.set(__self__, "time_first_event", time_first_event)
|
73
70
|
if time_last_event and not isinstance(time_last_event, str):
|
74
71
|
raise TypeError("Expected argument 'time_last_event' to be a str")
|
75
72
|
pulumi.set(__self__, "time_last_event", time_last_event)
|
76
|
-
if time_started and not isinstance(time_started, str):
|
77
|
-
raise TypeError("Expected argument 'time_started' to be a str")
|
78
|
-
pulumi.set(__self__, "time_started", time_started)
|
79
73
|
if total_event_count and not isinstance(total_event_count, int):
|
80
74
|
raise TypeError("Expected argument 'total_event_count' to be a int")
|
81
75
|
pulumi.set(__self__, "total_event_count", total_event_count)
|
@@ -192,14 +186,6 @@ class GetFleetCryptoAnalysisResultResult:
|
|
192
186
|
"""
|
193
187
|
return pulumi.get(self, "time_created")
|
194
188
|
|
195
|
-
@property
|
196
|
-
@pulumi.getter(name="timeFinished")
|
197
|
-
def time_finished(self) -> str:
|
198
|
-
"""
|
199
|
-
The time the JFR recording has finished.
|
200
|
-
"""
|
201
|
-
return pulumi.get(self, "time_finished")
|
202
|
-
|
203
189
|
@property
|
204
190
|
@pulumi.getter(name="timeFirstEvent")
|
205
191
|
def time_first_event(self) -> str:
|
@@ -216,14 +202,6 @@ class GetFleetCryptoAnalysisResultResult:
|
|
216
202
|
"""
|
217
203
|
return pulumi.get(self, "time_last_event")
|
218
204
|
|
219
|
-
@property
|
220
|
-
@pulumi.getter(name="timeStarted")
|
221
|
-
def time_started(self) -> str:
|
222
|
-
"""
|
223
|
-
The time the JFR recording has started.
|
224
|
-
"""
|
225
|
-
return pulumi.get(self, "time_started")
|
226
|
-
|
227
205
|
@property
|
228
206
|
@pulumi.getter(name="totalEventCount")
|
229
207
|
def total_event_count(self) -> int:
|
@@ -261,10 +239,8 @@ class AwaitableGetFleetCryptoAnalysisResultResult(GetFleetCryptoAnalysisResultRe
|
|
261
239
|
object=self.object,
|
262
240
|
summarized_event_count=self.summarized_event_count,
|
263
241
|
time_created=self.time_created,
|
264
|
-
time_finished=self.time_finished,
|
265
242
|
time_first_event=self.time_first_event,
|
266
243
|
time_last_event=self.time_last_event,
|
267
|
-
time_started=self.time_started,
|
268
244
|
total_event_count=self.total_event_count,
|
269
245
|
work_request_id=self.work_request_id)
|
270
246
|
|
@@ -283,7 +259,7 @@ def get_fleet_crypto_analysis_result(crypto_analysis_result_id: Optional[str] =
|
|
283
259
|
import pulumi
|
284
260
|
import pulumi_oci as oci
|
285
261
|
|
286
|
-
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=
|
262
|
+
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=test_result["id"],
|
287
263
|
fleet_id=test_fleet["id"])
|
288
264
|
```
|
289
265
|
|
@@ -312,10 +288,8 @@ def get_fleet_crypto_analysis_result(crypto_analysis_result_id: Optional[str] =
|
|
312
288
|
object=pulumi.get(__ret__, 'object'),
|
313
289
|
summarized_event_count=pulumi.get(__ret__, 'summarized_event_count'),
|
314
290
|
time_created=pulumi.get(__ret__, 'time_created'),
|
315
|
-
time_finished=pulumi.get(__ret__, 'time_finished'),
|
316
291
|
time_first_event=pulumi.get(__ret__, 'time_first_event'),
|
317
292
|
time_last_event=pulumi.get(__ret__, 'time_last_event'),
|
318
|
-
time_started=pulumi.get(__ret__, 'time_started'),
|
319
293
|
total_event_count=pulumi.get(__ret__, 'total_event_count'),
|
320
294
|
work_request_id=pulumi.get(__ret__, 'work_request_id'))
|
321
295
|
|
@@ -335,7 +309,7 @@ def get_fleet_crypto_analysis_result_output(crypto_analysis_result_id: Optional[
|
|
335
309
|
import pulumi
|
336
310
|
import pulumi_oci as oci
|
337
311
|
|
338
|
-
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=
|
312
|
+
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=test_result["id"],
|
339
313
|
fleet_id=test_fleet["id"])
|
340
314
|
```
|
341
315
|
|