pulumi-oci 3.8.0__py3-none-any.whl → 3.9.0__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 +24 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +550 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_exadata_infrastructure_configure_exascale_management.py +1308 -0
- pulumi_oci/database/cloud_vm_cluster.py +77 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +29 -1
- pulumi_oci/database/outputs.py +515 -0
- pulumi_oci/datasafe/_inputs.py +180 -0
- pulumi_oci/datasafe/audit_policy_management.py +7 -7
- pulumi_oci/datasafe/audit_trail_management.py +2 -0
- pulumi_oci/datasafe/discovery_jobs_result.py +40 -0
- pulumi_oci/datasafe/get_data_safe_configuration.py +2 -2
- pulumi_oci/datasafe/get_discovery_jobs_result.py +29 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +23 -1
- pulumi_oci/datasafe/get_masking_reports.py +20 -1
- pulumi_oci/datasafe/get_security_assessment_finding.py +16 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +26 -3
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py +30 -1
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py +44 -3
- pulumi_oci/datasafe/outputs.py +400 -2
- pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py +58 -0
- pulumi_oci/jms/__init__.py +16 -0
- pulumi_oci/jms/_inputs.py +2068 -29
- pulumi_oci/jms/fleet.py +56 -0
- pulumi_oci/jms/get_fleet.py +29 -1
- pulumi_oci/jms/get_fleet_containers.py +289 -0
- pulumi_oci/jms/get_fleet_export_setting.py +16 -1
- pulumi_oci/jms/get_fleet_library_applications.py +280 -0
- pulumi_oci/jms/get_fleet_library_managed_instances.py +280 -0
- pulumi_oci/jms/get_fleet_summarize_library_inventory.py +211 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_applications.py +239 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_managed_instances.py +242 -0
- pulumi_oci/jms/get_fleet_uncorrelated_packages.py +242 -0
- pulumi_oci/jms/get_java_family.py +15 -1
- pulumi_oci/jms/get_jms_plugin.py +2 -2
- pulumi_oci/jms/get_jms_plugins.py +4 -4
- pulumi_oci/jms/get_task_schedule.py +262 -0
- pulumi_oci/jms/get_task_schedules.py +218 -0
- pulumi_oci/jms/get_utils_analyze_applications_configuration.py +153 -0
- pulumi_oci/jms/get_utils_java_migration_analysi.py +316 -0
- pulumi_oci/jms/get_utils_java_migration_analysis.py +177 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysi.py +274 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysis.py +196 -0
- pulumi_oci/jms/get_utils_subscription_acknowledgment_configuration.py +161 -0
- pulumi_oci/jms/jms_plugin.py +36 -15
- pulumi_oci/jms/outputs.py +8500 -3920
- pulumi_oci/jms/task_schedule.py +658 -0
- pulumi_oci/marketplace/__init__.py +2 -0
- pulumi_oci/marketplace/_inputs.py +49 -0
- pulumi_oci/marketplace/get_marketplace_metadata_public_keys.py +144 -0
- pulumi_oci/marketplace/marketplace_external_attested_metadata.py +298 -0
- pulumi_oci/marketplace/outputs.py +124 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +29 -1
- pulumi_oci/redis/outputs.py +22 -0
- pulumi_oci/redis/redis_cluster.py +56 -0
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/RECORD +62 -43
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/top_level.txt +0 -0
@@ -16,12 +16,14 @@ from .get_listing_package_agreements import *
|
|
16
16
|
from .get_listing_packages import *
|
17
17
|
from .get_listing_taxes import *
|
18
18
|
from .get_listings import *
|
19
|
+
from .get_marketplace_metadata_public_keys import *
|
19
20
|
from .get_publication import *
|
20
21
|
from .get_publication_package import *
|
21
22
|
from .get_publication_packages import *
|
22
23
|
from .get_publications import *
|
23
24
|
from .get_publishers import *
|
24
25
|
from .listing_package_agreement import *
|
26
|
+
from .marketplace_external_attested_metadata import *
|
25
27
|
from .publication import *
|
26
28
|
from ._inputs import *
|
27
29
|
from . import outputs
|
@@ -39,6 +39,8 @@ __all__ = [
|
|
39
39
|
'GetListingTaxesFilterArgsDict',
|
40
40
|
'GetListingsFilterArgs',
|
41
41
|
'GetListingsFilterArgsDict',
|
42
|
+
'GetMarketplaceMetadataPublicKeysFilterArgs',
|
43
|
+
'GetMarketplaceMetadataPublicKeysFilterArgsDict',
|
42
44
|
'GetPublicationPackagesFilterArgs',
|
43
45
|
'GetPublicationPackagesFilterArgsDict',
|
44
46
|
'GetPublicationsFilterArgs',
|
@@ -786,6 +788,53 @@ class GetListingsFilterArgs:
|
|
786
788
|
pulumi.set(self, "regex", value)
|
787
789
|
|
788
790
|
|
791
|
+
if not MYPY:
|
792
|
+
class GetMarketplaceMetadataPublicKeysFilterArgsDict(TypedDict):
|
793
|
+
name: _builtins.str
|
794
|
+
values: Sequence[_builtins.str]
|
795
|
+
regex: NotRequired[_builtins.bool]
|
796
|
+
elif False:
|
797
|
+
GetMarketplaceMetadataPublicKeysFilterArgsDict: TypeAlias = Mapping[str, Any]
|
798
|
+
|
799
|
+
@pulumi.input_type
|
800
|
+
class GetMarketplaceMetadataPublicKeysFilterArgs:
|
801
|
+
def __init__(__self__, *,
|
802
|
+
name: _builtins.str,
|
803
|
+
values: Sequence[_builtins.str],
|
804
|
+
regex: Optional[_builtins.bool] = None):
|
805
|
+
pulumi.set(__self__, "name", name)
|
806
|
+
pulumi.set(__self__, "values", values)
|
807
|
+
if regex is not None:
|
808
|
+
pulumi.set(__self__, "regex", regex)
|
809
|
+
|
810
|
+
@_builtins.property
|
811
|
+
@pulumi.getter
|
812
|
+
def name(self) -> _builtins.str:
|
813
|
+
return pulumi.get(self, "name")
|
814
|
+
|
815
|
+
@name.setter
|
816
|
+
def name(self, value: _builtins.str):
|
817
|
+
pulumi.set(self, "name", value)
|
818
|
+
|
819
|
+
@_builtins.property
|
820
|
+
@pulumi.getter
|
821
|
+
def values(self) -> Sequence[_builtins.str]:
|
822
|
+
return pulumi.get(self, "values")
|
823
|
+
|
824
|
+
@values.setter
|
825
|
+
def values(self, value: Sequence[_builtins.str]):
|
826
|
+
pulumi.set(self, "values", value)
|
827
|
+
|
828
|
+
@_builtins.property
|
829
|
+
@pulumi.getter
|
830
|
+
def regex(self) -> Optional[_builtins.bool]:
|
831
|
+
return pulumi.get(self, "regex")
|
832
|
+
|
833
|
+
@regex.setter
|
834
|
+
def regex(self, value: Optional[_builtins.bool]):
|
835
|
+
pulumi.set(self, "regex", value)
|
836
|
+
|
837
|
+
|
789
838
|
if not MYPY:
|
790
839
|
class GetPublicationPackagesFilterArgsDict(TypedDict):
|
791
840
|
name: _builtins.str
|
@@ -0,0 +1,144 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetMarketplaceMetadataPublicKeysResult',
|
21
|
+
'AwaitableGetMarketplaceMetadataPublicKeysResult',
|
22
|
+
'get_marketplace_metadata_public_keys',
|
23
|
+
'get_marketplace_metadata_public_keys_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetMarketplaceMetadataPublicKeysResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getMarketplaceMetadataPublicKeys.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, filters=None, id=None, marketplace_metadata_public_keys=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if filters and not isinstance(filters, list):
|
36
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
37
|
+
pulumi.set(__self__, "filters", filters)
|
38
|
+
if id and not isinstance(id, str):
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
40
|
+
pulumi.set(__self__, "id", id)
|
41
|
+
if marketplace_metadata_public_keys and not isinstance(marketplace_metadata_public_keys, list):
|
42
|
+
raise TypeError("Expected argument 'marketplace_metadata_public_keys' to be a list")
|
43
|
+
pulumi.set(__self__, "marketplace_metadata_public_keys", marketplace_metadata_public_keys)
|
44
|
+
|
45
|
+
@_builtins.property
|
46
|
+
@pulumi.getter(name="compartmentId")
|
47
|
+
def compartment_id(self) -> Optional[_builtins.str]:
|
48
|
+
return pulumi.get(self, "compartment_id")
|
49
|
+
|
50
|
+
@_builtins.property
|
51
|
+
@pulumi.getter
|
52
|
+
def filters(self) -> Optional[Sequence['outputs.GetMarketplaceMetadataPublicKeysFilterResult']]:
|
53
|
+
return pulumi.get(self, "filters")
|
54
|
+
|
55
|
+
@_builtins.property
|
56
|
+
@pulumi.getter
|
57
|
+
def id(self) -> _builtins.str:
|
58
|
+
"""
|
59
|
+
The provider-assigned unique ID for this managed resource.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "id")
|
62
|
+
|
63
|
+
@_builtins.property
|
64
|
+
@pulumi.getter(name="marketplaceMetadataPublicKeys")
|
65
|
+
def marketplace_metadata_public_keys(self) -> Sequence['outputs.GetMarketplaceMetadataPublicKeysMarketplaceMetadataPublicKeyResult']:
|
66
|
+
"""
|
67
|
+
The list of marketplace_metadata_public_keys.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "marketplace_metadata_public_keys")
|
70
|
+
|
71
|
+
|
72
|
+
class AwaitableGetMarketplaceMetadataPublicKeysResult(GetMarketplaceMetadataPublicKeysResult):
|
73
|
+
# pylint: disable=using-constant-test
|
74
|
+
def __await__(self):
|
75
|
+
if False:
|
76
|
+
yield self
|
77
|
+
return GetMarketplaceMetadataPublicKeysResult(
|
78
|
+
compartment_id=self.compartment_id,
|
79
|
+
filters=self.filters,
|
80
|
+
id=self.id,
|
81
|
+
marketplace_metadata_public_keys=self.marketplace_metadata_public_keys)
|
82
|
+
|
83
|
+
|
84
|
+
def get_marketplace_metadata_public_keys(compartment_id: Optional[_builtins.str] = None,
|
85
|
+
filters: Optional[Sequence[Union['GetMarketplaceMetadataPublicKeysFilterArgs', 'GetMarketplaceMetadataPublicKeysFilterArgsDict']]] = None,
|
86
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMarketplaceMetadataPublicKeysResult:
|
87
|
+
"""
|
88
|
+
This data source provides the list of Marketplace Metadata Public Keys in Oracle Cloud Infrastructure Marketplace service.
|
89
|
+
|
90
|
+
Get public certificates used in JWT signing, in JSON Web Key Sets format
|
91
|
+
|
92
|
+
## Example Usage
|
93
|
+
|
94
|
+
```python
|
95
|
+
import pulumi
|
96
|
+
import pulumi_oci as oci
|
97
|
+
|
98
|
+
test_marketplace_metadata_public_keys = oci.Marketplace.get_marketplace_metadata_public_keys(compartment_id=compartment_id)
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
:param _builtins.str compartment_id: The unique identifier for the compartment.
|
103
|
+
"""
|
104
|
+
__args__ = dict()
|
105
|
+
__args__['compartmentId'] = compartment_id
|
106
|
+
__args__['filters'] = filters
|
107
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
108
|
+
__ret__ = pulumi.runtime.invoke('oci:Marketplace/getMarketplaceMetadataPublicKeys:getMarketplaceMetadataPublicKeys', __args__, opts=opts, typ=GetMarketplaceMetadataPublicKeysResult).value
|
109
|
+
|
110
|
+
return AwaitableGetMarketplaceMetadataPublicKeysResult(
|
111
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
112
|
+
filters=pulumi.get(__ret__, 'filters'),
|
113
|
+
id=pulumi.get(__ret__, 'id'),
|
114
|
+
marketplace_metadata_public_keys=pulumi.get(__ret__, 'marketplace_metadata_public_keys'))
|
115
|
+
def get_marketplace_metadata_public_keys_output(compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
116
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetMarketplaceMetadataPublicKeysFilterArgs', 'GetMarketplaceMetadataPublicKeysFilterArgsDict']]]]] = None,
|
117
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMarketplaceMetadataPublicKeysResult]:
|
118
|
+
"""
|
119
|
+
This data source provides the list of Marketplace Metadata Public Keys in Oracle Cloud Infrastructure Marketplace service.
|
120
|
+
|
121
|
+
Get public certificates used in JWT signing, in JSON Web Key Sets format
|
122
|
+
|
123
|
+
## Example Usage
|
124
|
+
|
125
|
+
```python
|
126
|
+
import pulumi
|
127
|
+
import pulumi_oci as oci
|
128
|
+
|
129
|
+
test_marketplace_metadata_public_keys = oci.Marketplace.get_marketplace_metadata_public_keys(compartment_id=compartment_id)
|
130
|
+
```
|
131
|
+
|
132
|
+
|
133
|
+
:param _builtins.str compartment_id: The unique identifier for the compartment.
|
134
|
+
"""
|
135
|
+
__args__ = dict()
|
136
|
+
__args__['compartmentId'] = compartment_id
|
137
|
+
__args__['filters'] = filters
|
138
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
139
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Marketplace/getMarketplaceMetadataPublicKeys:getMarketplaceMetadataPublicKeys', __args__, opts=opts, typ=GetMarketplaceMetadataPublicKeysResult)
|
140
|
+
return __ret__.apply(lambda __response__: GetMarketplaceMetadataPublicKeysResult(
|
141
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
142
|
+
filters=pulumi.get(__response__, 'filters'),
|
143
|
+
id=pulumi.get(__response__, 'id'),
|
144
|
+
marketplace_metadata_public_keys=pulumi.get(__response__, 'marketplace_metadata_public_keys')))
|
@@ -0,0 +1,298 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = ['MarketplaceExternalAttestedMetadataArgs', 'MarketplaceExternalAttestedMetadata']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class MarketplaceExternalAttestedMetadataArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
compartment_id: pulumi.Input[_builtins.str],
|
23
|
+
instance_id: pulumi.Input[_builtins.str]):
|
24
|
+
"""
|
25
|
+
The set of arguments for constructing a MarketplaceExternalAttestedMetadata resource.
|
26
|
+
:param pulumi.Input[_builtins.str] compartment_id: compartment that associated instance is in
|
27
|
+
:param pulumi.Input[_builtins.str] instance_id: unique id that identifies the associated instance
|
28
|
+
|
29
|
+
|
30
|
+
** IMPORTANT **
|
31
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
32
|
+
"""
|
33
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
34
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
35
|
+
|
36
|
+
@_builtins.property
|
37
|
+
@pulumi.getter(name="compartmentId")
|
38
|
+
def compartment_id(self) -> pulumi.Input[_builtins.str]:
|
39
|
+
"""
|
40
|
+
compartment that associated instance is in
|
41
|
+
"""
|
42
|
+
return pulumi.get(self, "compartment_id")
|
43
|
+
|
44
|
+
@compartment_id.setter
|
45
|
+
def compartment_id(self, value: pulumi.Input[_builtins.str]):
|
46
|
+
pulumi.set(self, "compartment_id", value)
|
47
|
+
|
48
|
+
@_builtins.property
|
49
|
+
@pulumi.getter(name="instanceId")
|
50
|
+
def instance_id(self) -> pulumi.Input[_builtins.str]:
|
51
|
+
"""
|
52
|
+
unique id that identifies the associated instance
|
53
|
+
|
54
|
+
|
55
|
+
** IMPORTANT **
|
56
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
57
|
+
"""
|
58
|
+
return pulumi.get(self, "instance_id")
|
59
|
+
|
60
|
+
@instance_id.setter
|
61
|
+
def instance_id(self, value: pulumi.Input[_builtins.str]):
|
62
|
+
pulumi.set(self, "instance_id", value)
|
63
|
+
|
64
|
+
|
65
|
+
@pulumi.input_type
|
66
|
+
class _MarketplaceExternalAttestedMetadataState:
|
67
|
+
def __init__(__self__, *,
|
68
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
69
|
+
instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
70
|
+
serialized_jwt: Optional[pulumi.Input[_builtins.str]] = None):
|
71
|
+
"""
|
72
|
+
Input properties used for looking up and filtering MarketplaceExternalAttestedMetadata resources.
|
73
|
+
:param pulumi.Input[_builtins.str] compartment_id: compartment that associated instance is in
|
74
|
+
:param pulumi.Input[_builtins.str] instance_id: unique id that identifies the associated instance
|
75
|
+
|
76
|
+
|
77
|
+
** IMPORTANT **
|
78
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
79
|
+
:param pulumi.Input[_builtins.str] serialized_jwt: The serialized JWT token, containing header, payload, signature
|
80
|
+
"""
|
81
|
+
if compartment_id is not None:
|
82
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
83
|
+
if instance_id is not None:
|
84
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
85
|
+
if serialized_jwt is not None:
|
86
|
+
pulumi.set(__self__, "serialized_jwt", serialized_jwt)
|
87
|
+
|
88
|
+
@_builtins.property
|
89
|
+
@pulumi.getter(name="compartmentId")
|
90
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
91
|
+
"""
|
92
|
+
compartment that associated instance is in
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "compartment_id")
|
95
|
+
|
96
|
+
@compartment_id.setter
|
97
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
98
|
+
pulumi.set(self, "compartment_id", value)
|
99
|
+
|
100
|
+
@_builtins.property
|
101
|
+
@pulumi.getter(name="instanceId")
|
102
|
+
def instance_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
103
|
+
"""
|
104
|
+
unique id that identifies the associated instance
|
105
|
+
|
106
|
+
|
107
|
+
** IMPORTANT **
|
108
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "instance_id")
|
111
|
+
|
112
|
+
@instance_id.setter
|
113
|
+
def instance_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
114
|
+
pulumi.set(self, "instance_id", value)
|
115
|
+
|
116
|
+
@_builtins.property
|
117
|
+
@pulumi.getter(name="serializedJwt")
|
118
|
+
def serialized_jwt(self) -> Optional[pulumi.Input[_builtins.str]]:
|
119
|
+
"""
|
120
|
+
The serialized JWT token, containing header, payload, signature
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "serialized_jwt")
|
123
|
+
|
124
|
+
@serialized_jwt.setter
|
125
|
+
def serialized_jwt(self, value: Optional[pulumi.Input[_builtins.str]]):
|
126
|
+
pulumi.set(self, "serialized_jwt", value)
|
127
|
+
|
128
|
+
|
129
|
+
@pulumi.type_token("oci:Marketplace/marketplaceExternalAttestedMetadata:MarketplaceExternalAttestedMetadata")
|
130
|
+
class MarketplaceExternalAttestedMetadata(pulumi.CustomResource):
|
131
|
+
@overload
|
132
|
+
def __init__(__self__,
|
133
|
+
resource_name: str,
|
134
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
135
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
136
|
+
instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
137
|
+
__props__=None):
|
138
|
+
"""
|
139
|
+
This resource provides the Marketplace External Attested Metadata resource in Oracle Cloud Infrastructure Marketplace service.
|
140
|
+
|
141
|
+
Generates attested marketplace metadata
|
142
|
+
|
143
|
+
## Example Usage
|
144
|
+
|
145
|
+
```python
|
146
|
+
import pulumi
|
147
|
+
import pulumi_oci as oci
|
148
|
+
|
149
|
+
test_marketplace_external_attested_metadata = oci.marketplace.MarketplaceExternalAttestedMetadata("test_marketplace_external_attested_metadata",
|
150
|
+
compartment_id=compartment_id,
|
151
|
+
instance_id=test_instance["id"])
|
152
|
+
```
|
153
|
+
|
154
|
+
## Import
|
155
|
+
|
156
|
+
MarketplaceExternalAttestedMetadata can be imported using the `id`, e.g.
|
157
|
+
|
158
|
+
```sh
|
159
|
+
$ pulumi import oci:Marketplace/marketplaceExternalAttestedMetadata:MarketplaceExternalAttestedMetadata test_marketplace_external_attested_metadata "id"
|
160
|
+
```
|
161
|
+
|
162
|
+
:param str resource_name: The name of the resource.
|
163
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
164
|
+
:param pulumi.Input[_builtins.str] compartment_id: compartment that associated instance is in
|
165
|
+
:param pulumi.Input[_builtins.str] instance_id: unique id that identifies the associated instance
|
166
|
+
|
167
|
+
|
168
|
+
** IMPORTANT **
|
169
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
170
|
+
"""
|
171
|
+
...
|
172
|
+
@overload
|
173
|
+
def __init__(__self__,
|
174
|
+
resource_name: str,
|
175
|
+
args: MarketplaceExternalAttestedMetadataArgs,
|
176
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
177
|
+
"""
|
178
|
+
This resource provides the Marketplace External Attested Metadata resource in Oracle Cloud Infrastructure Marketplace service.
|
179
|
+
|
180
|
+
Generates attested marketplace metadata
|
181
|
+
|
182
|
+
## Example Usage
|
183
|
+
|
184
|
+
```python
|
185
|
+
import pulumi
|
186
|
+
import pulumi_oci as oci
|
187
|
+
|
188
|
+
test_marketplace_external_attested_metadata = oci.marketplace.MarketplaceExternalAttestedMetadata("test_marketplace_external_attested_metadata",
|
189
|
+
compartment_id=compartment_id,
|
190
|
+
instance_id=test_instance["id"])
|
191
|
+
```
|
192
|
+
|
193
|
+
## Import
|
194
|
+
|
195
|
+
MarketplaceExternalAttestedMetadata can be imported using the `id`, e.g.
|
196
|
+
|
197
|
+
```sh
|
198
|
+
$ pulumi import oci:Marketplace/marketplaceExternalAttestedMetadata:MarketplaceExternalAttestedMetadata test_marketplace_external_attested_metadata "id"
|
199
|
+
```
|
200
|
+
|
201
|
+
:param str resource_name: The name of the resource.
|
202
|
+
:param MarketplaceExternalAttestedMetadataArgs args: The arguments to use to populate this resource's properties.
|
203
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
204
|
+
"""
|
205
|
+
...
|
206
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
207
|
+
resource_args, opts = _utilities.get_resource_args_opts(MarketplaceExternalAttestedMetadataArgs, pulumi.ResourceOptions, *args, **kwargs)
|
208
|
+
if resource_args is not None:
|
209
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
210
|
+
else:
|
211
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
212
|
+
|
213
|
+
def _internal_init(__self__,
|
214
|
+
resource_name: str,
|
215
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
216
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
217
|
+
instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
218
|
+
__props__=None):
|
219
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
220
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
221
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
222
|
+
if opts.id is None:
|
223
|
+
if __props__ is not None:
|
224
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
225
|
+
__props__ = MarketplaceExternalAttestedMetadataArgs.__new__(MarketplaceExternalAttestedMetadataArgs)
|
226
|
+
|
227
|
+
if compartment_id is None and not opts.urn:
|
228
|
+
raise TypeError("Missing required property 'compartment_id'")
|
229
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
230
|
+
if instance_id is None and not opts.urn:
|
231
|
+
raise TypeError("Missing required property 'instance_id'")
|
232
|
+
__props__.__dict__["instance_id"] = instance_id
|
233
|
+
__props__.__dict__["serialized_jwt"] = None
|
234
|
+
super(MarketplaceExternalAttestedMetadata, __self__).__init__(
|
235
|
+
'oci:Marketplace/marketplaceExternalAttestedMetadata:MarketplaceExternalAttestedMetadata',
|
236
|
+
resource_name,
|
237
|
+
__props__,
|
238
|
+
opts)
|
239
|
+
|
240
|
+
@staticmethod
|
241
|
+
def get(resource_name: str,
|
242
|
+
id: pulumi.Input[str],
|
243
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
244
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
245
|
+
instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
246
|
+
serialized_jwt: Optional[pulumi.Input[_builtins.str]] = None) -> 'MarketplaceExternalAttestedMetadata':
|
247
|
+
"""
|
248
|
+
Get an existing MarketplaceExternalAttestedMetadata resource's state with the given name, id, and optional extra
|
249
|
+
properties used to qualify the lookup.
|
250
|
+
|
251
|
+
:param str resource_name: The unique name of the resulting resource.
|
252
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
253
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
254
|
+
:param pulumi.Input[_builtins.str] compartment_id: compartment that associated instance is in
|
255
|
+
:param pulumi.Input[_builtins.str] instance_id: unique id that identifies the associated instance
|
256
|
+
|
257
|
+
|
258
|
+
** IMPORTANT **
|
259
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
260
|
+
:param pulumi.Input[_builtins.str] serialized_jwt: The serialized JWT token, containing header, payload, signature
|
261
|
+
"""
|
262
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
263
|
+
|
264
|
+
__props__ = _MarketplaceExternalAttestedMetadataState.__new__(_MarketplaceExternalAttestedMetadataState)
|
265
|
+
|
266
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
267
|
+
__props__.__dict__["instance_id"] = instance_id
|
268
|
+
__props__.__dict__["serialized_jwt"] = serialized_jwt
|
269
|
+
return MarketplaceExternalAttestedMetadata(resource_name, opts=opts, __props__=__props__)
|
270
|
+
|
271
|
+
@_builtins.property
|
272
|
+
@pulumi.getter(name="compartmentId")
|
273
|
+
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
274
|
+
"""
|
275
|
+
compartment that associated instance is in
|
276
|
+
"""
|
277
|
+
return pulumi.get(self, "compartment_id")
|
278
|
+
|
279
|
+
@_builtins.property
|
280
|
+
@pulumi.getter(name="instanceId")
|
281
|
+
def instance_id(self) -> pulumi.Output[_builtins.str]:
|
282
|
+
"""
|
283
|
+
unique id that identifies the associated instance
|
284
|
+
|
285
|
+
|
286
|
+
** IMPORTANT **
|
287
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "instance_id")
|
290
|
+
|
291
|
+
@_builtins.property
|
292
|
+
@pulumi.getter(name="serializedJwt")
|
293
|
+
def serialized_jwt(self) -> pulumi.Output[_builtins.str]:
|
294
|
+
"""
|
295
|
+
The serialized JWT token, containing header, payload, signature
|
296
|
+
"""
|
297
|
+
return pulumi.get(self, "serialized_jwt")
|
298
|
+
|
@@ -67,6 +67,8 @@ __all__ = [
|
|
67
67
|
'GetListingsListingRegionResult',
|
68
68
|
'GetListingsListingRegionCountryResult',
|
69
69
|
'GetListingsListingSupportedOperatingSystemResult',
|
70
|
+
'GetMarketplaceMetadataPublicKeysFilterResult',
|
71
|
+
'GetMarketplaceMetadataPublicKeysMarketplaceMetadataPublicKeyResult',
|
70
72
|
'GetPublicationIconResult',
|
71
73
|
'GetPublicationPackageDetailResult',
|
72
74
|
'GetPublicationPackageDetailEulaResult',
|
@@ -2469,6 +2471,128 @@ class GetListingsListingSupportedOperatingSystemResult(dict):
|
|
2469
2471
|
return pulumi.get(self, "name")
|
2470
2472
|
|
2471
2473
|
|
2474
|
+
@pulumi.output_type
|
2475
|
+
class GetMarketplaceMetadataPublicKeysFilterResult(dict):
|
2476
|
+
def __init__(__self__, *,
|
2477
|
+
name: _builtins.str,
|
2478
|
+
values: Sequence[_builtins.str],
|
2479
|
+
regex: Optional[_builtins.bool] = None):
|
2480
|
+
pulumi.set(__self__, "name", name)
|
2481
|
+
pulumi.set(__self__, "values", values)
|
2482
|
+
if regex is not None:
|
2483
|
+
pulumi.set(__self__, "regex", regex)
|
2484
|
+
|
2485
|
+
@_builtins.property
|
2486
|
+
@pulumi.getter
|
2487
|
+
def name(self) -> _builtins.str:
|
2488
|
+
return pulumi.get(self, "name")
|
2489
|
+
|
2490
|
+
@_builtins.property
|
2491
|
+
@pulumi.getter
|
2492
|
+
def values(self) -> Sequence[_builtins.str]:
|
2493
|
+
return pulumi.get(self, "values")
|
2494
|
+
|
2495
|
+
@_builtins.property
|
2496
|
+
@pulumi.getter
|
2497
|
+
def regex(self) -> Optional[_builtins.bool]:
|
2498
|
+
return pulumi.get(self, "regex")
|
2499
|
+
|
2500
|
+
|
2501
|
+
@pulumi.output_type
|
2502
|
+
class GetMarketplaceMetadataPublicKeysMarketplaceMetadataPublicKeyResult(dict):
|
2503
|
+
def __init__(__self__, *,
|
2504
|
+
certificate_chains: Sequence[_builtins.str],
|
2505
|
+
certificate_thumbprint: _builtins.str,
|
2506
|
+
exponent: _builtins.str,
|
2507
|
+
key_algorithm: _builtins.str,
|
2508
|
+
key_id: _builtins.str,
|
2509
|
+
key_type: _builtins.str,
|
2510
|
+
key_use: _builtins.str,
|
2511
|
+
modulus: _builtins.str):
|
2512
|
+
"""
|
2513
|
+
:param Sequence[_builtins.str] certificate_chains: chain of certificates used to sign JWT
|
2514
|
+
:param _builtins.str certificate_thumbprint: unique identifier of associated X509 certificate
|
2515
|
+
:param _builtins.str exponent: base64 encoded exponent for public key
|
2516
|
+
:param _builtins.str key_algorithm: algorithm for public key (i.e. RS256)
|
2517
|
+
:param _builtins.str key_id: unique id that maps to public certificate, directs user which certificate to use to verfiy
|
2518
|
+
:param _builtins.str key_type: key type (i.e. RSA)
|
2519
|
+
:param _builtins.str key_use: how key is to be used
|
2520
|
+
:param _builtins.str modulus: RSA public modulus
|
2521
|
+
"""
|
2522
|
+
pulumi.set(__self__, "certificate_chains", certificate_chains)
|
2523
|
+
pulumi.set(__self__, "certificate_thumbprint", certificate_thumbprint)
|
2524
|
+
pulumi.set(__self__, "exponent", exponent)
|
2525
|
+
pulumi.set(__self__, "key_algorithm", key_algorithm)
|
2526
|
+
pulumi.set(__self__, "key_id", key_id)
|
2527
|
+
pulumi.set(__self__, "key_type", key_type)
|
2528
|
+
pulumi.set(__self__, "key_use", key_use)
|
2529
|
+
pulumi.set(__self__, "modulus", modulus)
|
2530
|
+
|
2531
|
+
@_builtins.property
|
2532
|
+
@pulumi.getter(name="certificateChains")
|
2533
|
+
def certificate_chains(self) -> Sequence[_builtins.str]:
|
2534
|
+
"""
|
2535
|
+
chain of certificates used to sign JWT
|
2536
|
+
"""
|
2537
|
+
return pulumi.get(self, "certificate_chains")
|
2538
|
+
|
2539
|
+
@_builtins.property
|
2540
|
+
@pulumi.getter(name="certificateThumbprint")
|
2541
|
+
def certificate_thumbprint(self) -> _builtins.str:
|
2542
|
+
"""
|
2543
|
+
unique identifier of associated X509 certificate
|
2544
|
+
"""
|
2545
|
+
return pulumi.get(self, "certificate_thumbprint")
|
2546
|
+
|
2547
|
+
@_builtins.property
|
2548
|
+
@pulumi.getter
|
2549
|
+
def exponent(self) -> _builtins.str:
|
2550
|
+
"""
|
2551
|
+
base64 encoded exponent for public key
|
2552
|
+
"""
|
2553
|
+
return pulumi.get(self, "exponent")
|
2554
|
+
|
2555
|
+
@_builtins.property
|
2556
|
+
@pulumi.getter(name="keyAlgorithm")
|
2557
|
+
def key_algorithm(self) -> _builtins.str:
|
2558
|
+
"""
|
2559
|
+
algorithm for public key (i.e. RS256)
|
2560
|
+
"""
|
2561
|
+
return pulumi.get(self, "key_algorithm")
|
2562
|
+
|
2563
|
+
@_builtins.property
|
2564
|
+
@pulumi.getter(name="keyId")
|
2565
|
+
def key_id(self) -> _builtins.str:
|
2566
|
+
"""
|
2567
|
+
unique id that maps to public certificate, directs user which certificate to use to verfiy
|
2568
|
+
"""
|
2569
|
+
return pulumi.get(self, "key_id")
|
2570
|
+
|
2571
|
+
@_builtins.property
|
2572
|
+
@pulumi.getter(name="keyType")
|
2573
|
+
def key_type(self) -> _builtins.str:
|
2574
|
+
"""
|
2575
|
+
key type (i.e. RSA)
|
2576
|
+
"""
|
2577
|
+
return pulumi.get(self, "key_type")
|
2578
|
+
|
2579
|
+
@_builtins.property
|
2580
|
+
@pulumi.getter(name="keyUse")
|
2581
|
+
def key_use(self) -> _builtins.str:
|
2582
|
+
"""
|
2583
|
+
how key is to be used
|
2584
|
+
"""
|
2585
|
+
return pulumi.get(self, "key_use")
|
2586
|
+
|
2587
|
+
@_builtins.property
|
2588
|
+
@pulumi.getter
|
2589
|
+
def modulus(self) -> _builtins.str:
|
2590
|
+
"""
|
2591
|
+
RSA public modulus
|
2592
|
+
"""
|
2593
|
+
return pulumi.get(self, "modulus")
|
2594
|
+
|
2595
|
+
|
2472
2596
|
@pulumi.output_type
|
2473
2597
|
class GetPublicationIconResult(dict):
|
2474
2598
|
def __init__(__self__, *,
|
pulumi_oci/pulumi-plugin.json
CHANGED