pulumi-akamai 9.2.0a1759209024__py3-none-any.whl → 10.2.0a1762837730__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.
Potentially problematic release.
This version of pulumi-akamai might be problematic. Click here for more details.
- pulumi_akamai/__init__.py +118 -0
- pulumi_akamai/_inputs.py +611 -0
- pulumi_akamai/apidefinitions_activation.py +415 -0
- pulumi_akamai/apidefinitions_api.py +368 -0
- pulumi_akamai/apidefinitions_resource_operations.py +226 -0
- pulumi_akamai/app_sec_ip_geo.py +156 -107
- pulumi_akamai/app_sec_siem_settings.py +47 -0
- pulumi_akamai/appsec_advanced_settings_ase_penalty_box.py +248 -0
- pulumi_akamai/appsec_advanced_settings_ja4_fingerprint.py +197 -0
- pulumi_akamai/apr_general_settings.py +233 -0
- pulumi_akamai/apr_protected_operations.py +281 -0
- pulumi_akamai/apr_user_allow_list.py +184 -0
- pulumi_akamai/apr_user_risk_response_strategy.py +185 -0
- pulumi_akamai/clientlist_list.py +7 -7
- pulumi_akamai/cloud_access_key.py +7 -7
- pulumi_akamai/get_apidefinitions_api.py +152 -0
- pulumi_akamai/get_apidefinitions_openapi.py +115 -0
- pulumi_akamai/get_apidefinitions_resource_operations.py +137 -0
- pulumi_akamai/get_app_sec_ip_geo.py +40 -28
- pulumi_akamai/get_appsec_advanced_settings_ase_penalty_box.py +107 -0
- pulumi_akamai/get_appsec_advanced_settings_ja4_fingerprint.py +107 -0
- pulumi_akamai/get_appsec_custom_rules_usage.py +134 -0
- pulumi_akamai/get_appsec_rapid_rules.py +16 -1
- pulumi_akamai/get_apr_general_settings.py +111 -0
- pulumi_akamai/get_apr_protected_operations.py +126 -0
- pulumi_akamai/get_apr_user_allow_list.py +96 -0
- pulumi_akamai/get_apr_user_risk_response_strategy.py +96 -0
- pulumi_akamai/get_clientlist_list.py +119 -0
- pulumi_akamai/get_dns_record_set.py +16 -16
- pulumi_akamai/get_mtlstruststore_ca_set.py +267 -0
- pulumi_akamai/get_mtlstruststore_ca_set_activation.py +189 -0
- pulumi_akamai/get_mtlstruststore_ca_set_activations.py +172 -0
- pulumi_akamai/get_mtlstruststore_ca_set_activities.py +183 -0
- pulumi_akamai/get_mtlstruststore_ca_set_associations.py +124 -0
- pulumi_akamai/get_mtlstruststore_ca_set_certificates.py +173 -0
- pulumi_akamai/get_mtlstruststore_ca_set_versions.py +128 -0
- pulumi_akamai/get_mtlstruststore_ca_sets.py +112 -0
- pulumi_akamai/mtlskeystore_client_certificate_akamai.py +129 -1
- pulumi_akamai/mtlskeystore_client_certificate_third_party.py +56 -0
- pulumi_akamai/mtlstruststore_ca_set.py +654 -0
- pulumi_akamai/mtlstruststore_ca_set_activation.py +394 -0
- pulumi_akamai/outputs.py +12656 -10706
- pulumi_akamai/property_hostname_bucket.py +7 -7
- pulumi_akamai/pulumi-plugin.json +1 -1
- {pulumi_akamai-9.2.0a1759209024.dist-info → pulumi_akamai-10.2.0a1762837730.dist-info}/METADATA +1 -1
- {pulumi_akamai-9.2.0a1759209024.dist-info → pulumi_akamai-10.2.0a1762837730.dist-info}/RECORD +48 -18
- {pulumi_akamai-9.2.0a1759209024.dist-info → pulumi_akamai-10.2.0a1762837730.dist-info}/WHEEL +0 -0
- {pulumi_akamai-9.2.0a1759209024.dist-info → pulumi_akamai-10.2.0a1762837730.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,183 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetMtlstruststoreCaSetActivitiesResult',
|
|
20
|
+
'AwaitableGetMtlstruststoreCaSetActivitiesResult',
|
|
21
|
+
'get_mtlstruststore_ca_set_activities',
|
|
22
|
+
'get_mtlstruststore_ca_set_activities_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetMtlstruststoreCaSetActivitiesResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getMtlstruststoreCaSetActivities.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, activities=None, created_by=None, created_date=None, deleted_by=None, deleted_date=None, end=None, id=None, name=None, start=None, status=None):
|
|
31
|
+
if activities and not isinstance(activities, list):
|
|
32
|
+
raise TypeError("Expected argument 'activities' to be a list")
|
|
33
|
+
pulumi.set(__self__, "activities", activities)
|
|
34
|
+
if created_by and not isinstance(created_by, str):
|
|
35
|
+
raise TypeError("Expected argument 'created_by' to be a str")
|
|
36
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
37
|
+
if created_date and not isinstance(created_date, str):
|
|
38
|
+
raise TypeError("Expected argument 'created_date' to be a str")
|
|
39
|
+
pulumi.set(__self__, "created_date", created_date)
|
|
40
|
+
if deleted_by and not isinstance(deleted_by, str):
|
|
41
|
+
raise TypeError("Expected argument 'deleted_by' to be a str")
|
|
42
|
+
pulumi.set(__self__, "deleted_by", deleted_by)
|
|
43
|
+
if deleted_date and not isinstance(deleted_date, str):
|
|
44
|
+
raise TypeError("Expected argument 'deleted_date' to be a str")
|
|
45
|
+
pulumi.set(__self__, "deleted_date", deleted_date)
|
|
46
|
+
if end and not isinstance(end, str):
|
|
47
|
+
raise TypeError("Expected argument 'end' to be a str")
|
|
48
|
+
pulumi.set(__self__, "end", end)
|
|
49
|
+
if id and not isinstance(id, str):
|
|
50
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
51
|
+
pulumi.set(__self__, "id", id)
|
|
52
|
+
if name and not isinstance(name, str):
|
|
53
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
54
|
+
pulumi.set(__self__, "name", name)
|
|
55
|
+
if start and not isinstance(start, str):
|
|
56
|
+
raise TypeError("Expected argument 'start' to be a str")
|
|
57
|
+
pulumi.set(__self__, "start", start)
|
|
58
|
+
if status and not isinstance(status, str):
|
|
59
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
60
|
+
pulumi.set(__self__, "status", status)
|
|
61
|
+
|
|
62
|
+
@_builtins.property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def activities(self) -> Sequence['outputs.GetMtlstruststoreCaSetActivitiesActivityResult']:
|
|
65
|
+
return pulumi.get(self, "activities")
|
|
66
|
+
|
|
67
|
+
@_builtins.property
|
|
68
|
+
@pulumi.getter(name="createdBy")
|
|
69
|
+
def created_by(self) -> _builtins.str:
|
|
70
|
+
return pulumi.get(self, "created_by")
|
|
71
|
+
|
|
72
|
+
@_builtins.property
|
|
73
|
+
@pulumi.getter(name="createdDate")
|
|
74
|
+
def created_date(self) -> _builtins.str:
|
|
75
|
+
return pulumi.get(self, "created_date")
|
|
76
|
+
|
|
77
|
+
@_builtins.property
|
|
78
|
+
@pulumi.getter(name="deletedBy")
|
|
79
|
+
def deleted_by(self) -> _builtins.str:
|
|
80
|
+
return pulumi.get(self, "deleted_by")
|
|
81
|
+
|
|
82
|
+
@_builtins.property
|
|
83
|
+
@pulumi.getter(name="deletedDate")
|
|
84
|
+
def deleted_date(self) -> _builtins.str:
|
|
85
|
+
return pulumi.get(self, "deleted_date")
|
|
86
|
+
|
|
87
|
+
@_builtins.property
|
|
88
|
+
@pulumi.getter
|
|
89
|
+
def end(self) -> Optional[_builtins.str]:
|
|
90
|
+
return pulumi.get(self, "end")
|
|
91
|
+
|
|
92
|
+
@_builtins.property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def id(self) -> _builtins.str:
|
|
95
|
+
return pulumi.get(self, "id")
|
|
96
|
+
|
|
97
|
+
@_builtins.property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def name(self) -> _builtins.str:
|
|
100
|
+
return pulumi.get(self, "name")
|
|
101
|
+
|
|
102
|
+
@_builtins.property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def start(self) -> Optional[_builtins.str]:
|
|
105
|
+
return pulumi.get(self, "start")
|
|
106
|
+
|
|
107
|
+
@_builtins.property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def status(self) -> _builtins.str:
|
|
110
|
+
return pulumi.get(self, "status")
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class AwaitableGetMtlstruststoreCaSetActivitiesResult(GetMtlstruststoreCaSetActivitiesResult):
|
|
114
|
+
# pylint: disable=using-constant-test
|
|
115
|
+
def __await__(self):
|
|
116
|
+
if False:
|
|
117
|
+
yield self
|
|
118
|
+
return GetMtlstruststoreCaSetActivitiesResult(
|
|
119
|
+
activities=self.activities,
|
|
120
|
+
created_by=self.created_by,
|
|
121
|
+
created_date=self.created_date,
|
|
122
|
+
deleted_by=self.deleted_by,
|
|
123
|
+
deleted_date=self.deleted_date,
|
|
124
|
+
end=self.end,
|
|
125
|
+
id=self.id,
|
|
126
|
+
name=self.name,
|
|
127
|
+
start=self.start,
|
|
128
|
+
status=self.status)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def get_mtlstruststore_ca_set_activities(end: Optional[_builtins.str] = None,
|
|
132
|
+
id: Optional[_builtins.str] = None,
|
|
133
|
+
name: Optional[_builtins.str] = None,
|
|
134
|
+
start: Optional[_builtins.str] = None,
|
|
135
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMtlstruststoreCaSetActivitiesResult:
|
|
136
|
+
"""
|
|
137
|
+
Use this data source to access information about an existing resource.
|
|
138
|
+
"""
|
|
139
|
+
__args__ = dict()
|
|
140
|
+
__args__['end'] = end
|
|
141
|
+
__args__['id'] = id
|
|
142
|
+
__args__['name'] = name
|
|
143
|
+
__args__['start'] = start
|
|
144
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
145
|
+
__ret__ = pulumi.runtime.invoke('akamai:index/getMtlstruststoreCaSetActivities:getMtlstruststoreCaSetActivities', __args__, opts=opts, typ=GetMtlstruststoreCaSetActivitiesResult).value
|
|
146
|
+
|
|
147
|
+
return AwaitableGetMtlstruststoreCaSetActivitiesResult(
|
|
148
|
+
activities=pulumi.get(__ret__, 'activities'),
|
|
149
|
+
created_by=pulumi.get(__ret__, 'created_by'),
|
|
150
|
+
created_date=pulumi.get(__ret__, 'created_date'),
|
|
151
|
+
deleted_by=pulumi.get(__ret__, 'deleted_by'),
|
|
152
|
+
deleted_date=pulumi.get(__ret__, 'deleted_date'),
|
|
153
|
+
end=pulumi.get(__ret__, 'end'),
|
|
154
|
+
id=pulumi.get(__ret__, 'id'),
|
|
155
|
+
name=pulumi.get(__ret__, 'name'),
|
|
156
|
+
start=pulumi.get(__ret__, 'start'),
|
|
157
|
+
status=pulumi.get(__ret__, 'status'))
|
|
158
|
+
def get_mtlstruststore_ca_set_activities_output(end: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
159
|
+
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
160
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
161
|
+
start: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
162
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMtlstruststoreCaSetActivitiesResult]:
|
|
163
|
+
"""
|
|
164
|
+
Use this data source to access information about an existing resource.
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['end'] = end
|
|
168
|
+
__args__['id'] = id
|
|
169
|
+
__args__['name'] = name
|
|
170
|
+
__args__['start'] = start
|
|
171
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
172
|
+
__ret__ = pulumi.runtime.invoke_output('akamai:index/getMtlstruststoreCaSetActivities:getMtlstruststoreCaSetActivities', __args__, opts=opts, typ=GetMtlstruststoreCaSetActivitiesResult)
|
|
173
|
+
return __ret__.apply(lambda __response__: GetMtlstruststoreCaSetActivitiesResult(
|
|
174
|
+
activities=pulumi.get(__response__, 'activities'),
|
|
175
|
+
created_by=pulumi.get(__response__, 'created_by'),
|
|
176
|
+
created_date=pulumi.get(__response__, 'created_date'),
|
|
177
|
+
deleted_by=pulumi.get(__response__, 'deleted_by'),
|
|
178
|
+
deleted_date=pulumi.get(__response__, 'deleted_date'),
|
|
179
|
+
end=pulumi.get(__response__, 'end'),
|
|
180
|
+
id=pulumi.get(__response__, 'id'),
|
|
181
|
+
name=pulumi.get(__response__, 'name'),
|
|
182
|
+
start=pulumi.get(__response__, 'start'),
|
|
183
|
+
status=pulumi.get(__response__, 'status')))
|
|
@@ -0,0 +1,124 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetMtlstruststoreCaSetAssociationsResult',
|
|
20
|
+
'AwaitableGetMtlstruststoreCaSetAssociationsResult',
|
|
21
|
+
'get_mtlstruststore_ca_set_associations',
|
|
22
|
+
'get_mtlstruststore_ca_set_associations_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetMtlstruststoreCaSetAssociationsResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getMtlstruststoreCaSetAssociations.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, association_type=None, enrollments=None, id=None, name=None, properties=None):
|
|
31
|
+
if association_type and not isinstance(association_type, str):
|
|
32
|
+
raise TypeError("Expected argument 'association_type' to be a str")
|
|
33
|
+
pulumi.set(__self__, "association_type", association_type)
|
|
34
|
+
if enrollments and not isinstance(enrollments, list):
|
|
35
|
+
raise TypeError("Expected argument 'enrollments' to be a list")
|
|
36
|
+
pulumi.set(__self__, "enrollments", enrollments)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
if name and not isinstance(name, str):
|
|
41
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
43
|
+
if properties and not isinstance(properties, list):
|
|
44
|
+
raise TypeError("Expected argument 'properties' to be a list")
|
|
45
|
+
pulumi.set(__self__, "properties", properties)
|
|
46
|
+
|
|
47
|
+
@_builtins.property
|
|
48
|
+
@pulumi.getter(name="associationType")
|
|
49
|
+
def association_type(self) -> Optional[_builtins.str]:
|
|
50
|
+
return pulumi.get(self, "association_type")
|
|
51
|
+
|
|
52
|
+
@_builtins.property
|
|
53
|
+
@pulumi.getter
|
|
54
|
+
def enrollments(self) -> Sequence['outputs.GetMtlstruststoreCaSetAssociationsEnrollmentResult']:
|
|
55
|
+
return pulumi.get(self, "enrollments")
|
|
56
|
+
|
|
57
|
+
@_builtins.property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def id(self) -> _builtins.str:
|
|
60
|
+
return pulumi.get(self, "id")
|
|
61
|
+
|
|
62
|
+
@_builtins.property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def name(self) -> _builtins.str:
|
|
65
|
+
return pulumi.get(self, "name")
|
|
66
|
+
|
|
67
|
+
@_builtins.property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def properties(self) -> Sequence['outputs.GetMtlstruststoreCaSetAssociationsPropertyResult']:
|
|
70
|
+
return pulumi.get(self, "properties")
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class AwaitableGetMtlstruststoreCaSetAssociationsResult(GetMtlstruststoreCaSetAssociationsResult):
|
|
74
|
+
# pylint: disable=using-constant-test
|
|
75
|
+
def __await__(self):
|
|
76
|
+
if False:
|
|
77
|
+
yield self
|
|
78
|
+
return GetMtlstruststoreCaSetAssociationsResult(
|
|
79
|
+
association_type=self.association_type,
|
|
80
|
+
enrollments=self.enrollments,
|
|
81
|
+
id=self.id,
|
|
82
|
+
name=self.name,
|
|
83
|
+
properties=self.properties)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def get_mtlstruststore_ca_set_associations(association_type: Optional[_builtins.str] = None,
|
|
87
|
+
id: Optional[_builtins.str] = None,
|
|
88
|
+
name: Optional[_builtins.str] = None,
|
|
89
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMtlstruststoreCaSetAssociationsResult:
|
|
90
|
+
"""
|
|
91
|
+
Use this data source to access information about an existing resource.
|
|
92
|
+
"""
|
|
93
|
+
__args__ = dict()
|
|
94
|
+
__args__['associationType'] = association_type
|
|
95
|
+
__args__['id'] = id
|
|
96
|
+
__args__['name'] = name
|
|
97
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
98
|
+
__ret__ = pulumi.runtime.invoke('akamai:index/getMtlstruststoreCaSetAssociations:getMtlstruststoreCaSetAssociations', __args__, opts=opts, typ=GetMtlstruststoreCaSetAssociationsResult).value
|
|
99
|
+
|
|
100
|
+
return AwaitableGetMtlstruststoreCaSetAssociationsResult(
|
|
101
|
+
association_type=pulumi.get(__ret__, 'association_type'),
|
|
102
|
+
enrollments=pulumi.get(__ret__, 'enrollments'),
|
|
103
|
+
id=pulumi.get(__ret__, 'id'),
|
|
104
|
+
name=pulumi.get(__ret__, 'name'),
|
|
105
|
+
properties=pulumi.get(__ret__, 'properties'))
|
|
106
|
+
def get_mtlstruststore_ca_set_associations_output(association_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
107
|
+
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
108
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
109
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMtlstruststoreCaSetAssociationsResult]:
|
|
110
|
+
"""
|
|
111
|
+
Use this data source to access information about an existing resource.
|
|
112
|
+
"""
|
|
113
|
+
__args__ = dict()
|
|
114
|
+
__args__['associationType'] = association_type
|
|
115
|
+
__args__['id'] = id
|
|
116
|
+
__args__['name'] = name
|
|
117
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
118
|
+
__ret__ = pulumi.runtime.invoke_output('akamai:index/getMtlstruststoreCaSetAssociations:getMtlstruststoreCaSetAssociations', __args__, opts=opts, typ=GetMtlstruststoreCaSetAssociationsResult)
|
|
119
|
+
return __ret__.apply(lambda __response__: GetMtlstruststoreCaSetAssociationsResult(
|
|
120
|
+
association_type=pulumi.get(__response__, 'association_type'),
|
|
121
|
+
enrollments=pulumi.get(__response__, 'enrollments'),
|
|
122
|
+
id=pulumi.get(__response__, 'id'),
|
|
123
|
+
name=pulumi.get(__response__, 'name'),
|
|
124
|
+
properties=pulumi.get(__response__, 'properties')))
|
|
@@ -0,0 +1,173 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetMtlstruststoreCaSetCertificatesResult',
|
|
20
|
+
'AwaitableGetMtlstruststoreCaSetCertificatesResult',
|
|
21
|
+
'get_mtlstruststore_ca_set_certificates',
|
|
22
|
+
'get_mtlstruststore_ca_set_certificates_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetMtlstruststoreCaSetCertificatesResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getMtlstruststoreCaSetCertificates.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, certificates=None, id=None, include_active=None, include_expired=None, include_expiring_by_date=None, include_expiring_in_days=None, name=None, version=None):
|
|
31
|
+
if certificates and not isinstance(certificates, list):
|
|
32
|
+
raise TypeError("Expected argument 'certificates' to be a list")
|
|
33
|
+
pulumi.set(__self__, "certificates", certificates)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if include_active and not isinstance(include_active, bool):
|
|
38
|
+
raise TypeError("Expected argument 'include_active' to be a bool")
|
|
39
|
+
pulumi.set(__self__, "include_active", include_active)
|
|
40
|
+
if include_expired and not isinstance(include_expired, bool):
|
|
41
|
+
raise TypeError("Expected argument 'include_expired' to be a bool")
|
|
42
|
+
pulumi.set(__self__, "include_expired", include_expired)
|
|
43
|
+
if include_expiring_by_date and not isinstance(include_expiring_by_date, str):
|
|
44
|
+
raise TypeError("Expected argument 'include_expiring_by_date' to be a str")
|
|
45
|
+
pulumi.set(__self__, "include_expiring_by_date", include_expiring_by_date)
|
|
46
|
+
if include_expiring_in_days and not isinstance(include_expiring_in_days, int):
|
|
47
|
+
raise TypeError("Expected argument 'include_expiring_in_days' to be a int")
|
|
48
|
+
pulumi.set(__self__, "include_expiring_in_days", include_expiring_in_days)
|
|
49
|
+
if name and not isinstance(name, str):
|
|
50
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
51
|
+
pulumi.set(__self__, "name", name)
|
|
52
|
+
if version and not isinstance(version, int):
|
|
53
|
+
raise TypeError("Expected argument 'version' to be a int")
|
|
54
|
+
pulumi.set(__self__, "version", version)
|
|
55
|
+
|
|
56
|
+
@_builtins.property
|
|
57
|
+
@pulumi.getter
|
|
58
|
+
def certificates(self) -> Sequence['outputs.GetMtlstruststoreCaSetCertificatesCertificateResult']:
|
|
59
|
+
return pulumi.get(self, "certificates")
|
|
60
|
+
|
|
61
|
+
@_builtins.property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def id(self) -> _builtins.str:
|
|
64
|
+
return pulumi.get(self, "id")
|
|
65
|
+
|
|
66
|
+
@_builtins.property
|
|
67
|
+
@pulumi.getter(name="includeActive")
|
|
68
|
+
def include_active(self) -> Optional[_builtins.bool]:
|
|
69
|
+
return pulumi.get(self, "include_active")
|
|
70
|
+
|
|
71
|
+
@_builtins.property
|
|
72
|
+
@pulumi.getter(name="includeExpired")
|
|
73
|
+
def include_expired(self) -> Optional[_builtins.bool]:
|
|
74
|
+
return pulumi.get(self, "include_expired")
|
|
75
|
+
|
|
76
|
+
@_builtins.property
|
|
77
|
+
@pulumi.getter(name="includeExpiringByDate")
|
|
78
|
+
def include_expiring_by_date(self) -> Optional[_builtins.str]:
|
|
79
|
+
return pulumi.get(self, "include_expiring_by_date")
|
|
80
|
+
|
|
81
|
+
@_builtins.property
|
|
82
|
+
@pulumi.getter(name="includeExpiringInDays")
|
|
83
|
+
def include_expiring_in_days(self) -> Optional[_builtins.int]:
|
|
84
|
+
return pulumi.get(self, "include_expiring_in_days")
|
|
85
|
+
|
|
86
|
+
@_builtins.property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def name(self) -> _builtins.str:
|
|
89
|
+
return pulumi.get(self, "name")
|
|
90
|
+
|
|
91
|
+
@_builtins.property
|
|
92
|
+
@pulumi.getter
|
|
93
|
+
def version(self) -> _builtins.int:
|
|
94
|
+
return pulumi.get(self, "version")
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
class AwaitableGetMtlstruststoreCaSetCertificatesResult(GetMtlstruststoreCaSetCertificatesResult):
|
|
98
|
+
# pylint: disable=using-constant-test
|
|
99
|
+
def __await__(self):
|
|
100
|
+
if False:
|
|
101
|
+
yield self
|
|
102
|
+
return GetMtlstruststoreCaSetCertificatesResult(
|
|
103
|
+
certificates=self.certificates,
|
|
104
|
+
id=self.id,
|
|
105
|
+
include_active=self.include_active,
|
|
106
|
+
include_expired=self.include_expired,
|
|
107
|
+
include_expiring_by_date=self.include_expiring_by_date,
|
|
108
|
+
include_expiring_in_days=self.include_expiring_in_days,
|
|
109
|
+
name=self.name,
|
|
110
|
+
version=self.version)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_mtlstruststore_ca_set_certificates(id: Optional[_builtins.str] = None,
|
|
114
|
+
include_active: Optional[_builtins.bool] = None,
|
|
115
|
+
include_expired: Optional[_builtins.bool] = None,
|
|
116
|
+
include_expiring_by_date: Optional[_builtins.str] = None,
|
|
117
|
+
include_expiring_in_days: Optional[_builtins.int] = None,
|
|
118
|
+
name: Optional[_builtins.str] = None,
|
|
119
|
+
version: Optional[_builtins.int] = None,
|
|
120
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMtlstruststoreCaSetCertificatesResult:
|
|
121
|
+
"""
|
|
122
|
+
Use this data source to access information about an existing resource.
|
|
123
|
+
"""
|
|
124
|
+
__args__ = dict()
|
|
125
|
+
__args__['id'] = id
|
|
126
|
+
__args__['includeActive'] = include_active
|
|
127
|
+
__args__['includeExpired'] = include_expired
|
|
128
|
+
__args__['includeExpiringByDate'] = include_expiring_by_date
|
|
129
|
+
__args__['includeExpiringInDays'] = include_expiring_in_days
|
|
130
|
+
__args__['name'] = name
|
|
131
|
+
__args__['version'] = version
|
|
132
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
133
|
+
__ret__ = pulumi.runtime.invoke('akamai:index/getMtlstruststoreCaSetCertificates:getMtlstruststoreCaSetCertificates', __args__, opts=opts, typ=GetMtlstruststoreCaSetCertificatesResult).value
|
|
134
|
+
|
|
135
|
+
return AwaitableGetMtlstruststoreCaSetCertificatesResult(
|
|
136
|
+
certificates=pulumi.get(__ret__, 'certificates'),
|
|
137
|
+
id=pulumi.get(__ret__, 'id'),
|
|
138
|
+
include_active=pulumi.get(__ret__, 'include_active'),
|
|
139
|
+
include_expired=pulumi.get(__ret__, 'include_expired'),
|
|
140
|
+
include_expiring_by_date=pulumi.get(__ret__, 'include_expiring_by_date'),
|
|
141
|
+
include_expiring_in_days=pulumi.get(__ret__, 'include_expiring_in_days'),
|
|
142
|
+
name=pulumi.get(__ret__, 'name'),
|
|
143
|
+
version=pulumi.get(__ret__, 'version'))
|
|
144
|
+
def get_mtlstruststore_ca_set_certificates_output(id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
145
|
+
include_active: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
146
|
+
include_expired: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
147
|
+
include_expiring_by_date: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
148
|
+
include_expiring_in_days: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
149
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
150
|
+
version: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
151
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMtlstruststoreCaSetCertificatesResult]:
|
|
152
|
+
"""
|
|
153
|
+
Use this data source to access information about an existing resource.
|
|
154
|
+
"""
|
|
155
|
+
__args__ = dict()
|
|
156
|
+
__args__['id'] = id
|
|
157
|
+
__args__['includeActive'] = include_active
|
|
158
|
+
__args__['includeExpired'] = include_expired
|
|
159
|
+
__args__['includeExpiringByDate'] = include_expiring_by_date
|
|
160
|
+
__args__['includeExpiringInDays'] = include_expiring_in_days
|
|
161
|
+
__args__['name'] = name
|
|
162
|
+
__args__['version'] = version
|
|
163
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
164
|
+
__ret__ = pulumi.runtime.invoke_output('akamai:index/getMtlstruststoreCaSetCertificates:getMtlstruststoreCaSetCertificates', __args__, opts=opts, typ=GetMtlstruststoreCaSetCertificatesResult)
|
|
165
|
+
return __ret__.apply(lambda __response__: GetMtlstruststoreCaSetCertificatesResult(
|
|
166
|
+
certificates=pulumi.get(__response__, 'certificates'),
|
|
167
|
+
id=pulumi.get(__response__, 'id'),
|
|
168
|
+
include_active=pulumi.get(__response__, 'include_active'),
|
|
169
|
+
include_expired=pulumi.get(__response__, 'include_expired'),
|
|
170
|
+
include_expiring_by_date=pulumi.get(__response__, 'include_expiring_by_date'),
|
|
171
|
+
include_expiring_in_days=pulumi.get(__response__, 'include_expiring_in_days'),
|
|
172
|
+
name=pulumi.get(__response__, 'name'),
|
|
173
|
+
version=pulumi.get(__response__, 'version')))
|
|
@@ -0,0 +1,128 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetMtlstruststoreCaSetVersionsResult',
|
|
20
|
+
'AwaitableGetMtlstruststoreCaSetVersionsResult',
|
|
21
|
+
'get_mtlstruststore_ca_set_versions',
|
|
22
|
+
'get_mtlstruststore_ca_set_versions_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetMtlstruststoreCaSetVersionsResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getMtlstruststoreCaSetVersions.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, active_versions_only=None, id=None, include_certificates=None, name=None, versions=None):
|
|
31
|
+
if active_versions_only and not isinstance(active_versions_only, bool):
|
|
32
|
+
raise TypeError("Expected argument 'active_versions_only' to be a bool")
|
|
33
|
+
pulumi.set(__self__, "active_versions_only", active_versions_only)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if include_certificates and not isinstance(include_certificates, bool):
|
|
38
|
+
raise TypeError("Expected argument 'include_certificates' to be a bool")
|
|
39
|
+
pulumi.set(__self__, "include_certificates", include_certificates)
|
|
40
|
+
if name and not isinstance(name, str):
|
|
41
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
43
|
+
if versions and not isinstance(versions, list):
|
|
44
|
+
raise TypeError("Expected argument 'versions' to be a list")
|
|
45
|
+
pulumi.set(__self__, "versions", versions)
|
|
46
|
+
|
|
47
|
+
@_builtins.property
|
|
48
|
+
@pulumi.getter(name="activeVersionsOnly")
|
|
49
|
+
def active_versions_only(self) -> Optional[_builtins.bool]:
|
|
50
|
+
return pulumi.get(self, "active_versions_only")
|
|
51
|
+
|
|
52
|
+
@_builtins.property
|
|
53
|
+
@pulumi.getter
|
|
54
|
+
def id(self) -> _builtins.str:
|
|
55
|
+
return pulumi.get(self, "id")
|
|
56
|
+
|
|
57
|
+
@_builtins.property
|
|
58
|
+
@pulumi.getter(name="includeCertificates")
|
|
59
|
+
def include_certificates(self) -> Optional[_builtins.bool]:
|
|
60
|
+
return pulumi.get(self, "include_certificates")
|
|
61
|
+
|
|
62
|
+
@_builtins.property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def name(self) -> _builtins.str:
|
|
65
|
+
return pulumi.get(self, "name")
|
|
66
|
+
|
|
67
|
+
@_builtins.property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def versions(self) -> Sequence['outputs.GetMtlstruststoreCaSetVersionsVersionResult']:
|
|
70
|
+
return pulumi.get(self, "versions")
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class AwaitableGetMtlstruststoreCaSetVersionsResult(GetMtlstruststoreCaSetVersionsResult):
|
|
74
|
+
# pylint: disable=using-constant-test
|
|
75
|
+
def __await__(self):
|
|
76
|
+
if False:
|
|
77
|
+
yield self
|
|
78
|
+
return GetMtlstruststoreCaSetVersionsResult(
|
|
79
|
+
active_versions_only=self.active_versions_only,
|
|
80
|
+
id=self.id,
|
|
81
|
+
include_certificates=self.include_certificates,
|
|
82
|
+
name=self.name,
|
|
83
|
+
versions=self.versions)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def get_mtlstruststore_ca_set_versions(active_versions_only: Optional[_builtins.bool] = None,
|
|
87
|
+
id: Optional[_builtins.str] = None,
|
|
88
|
+
include_certificates: Optional[_builtins.bool] = None,
|
|
89
|
+
name: Optional[_builtins.str] = None,
|
|
90
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMtlstruststoreCaSetVersionsResult:
|
|
91
|
+
"""
|
|
92
|
+
Use this data source to access information about an existing resource.
|
|
93
|
+
"""
|
|
94
|
+
__args__ = dict()
|
|
95
|
+
__args__['activeVersionsOnly'] = active_versions_only
|
|
96
|
+
__args__['id'] = id
|
|
97
|
+
__args__['includeCertificates'] = include_certificates
|
|
98
|
+
__args__['name'] = name
|
|
99
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
100
|
+
__ret__ = pulumi.runtime.invoke('akamai:index/getMtlstruststoreCaSetVersions:getMtlstruststoreCaSetVersions', __args__, opts=opts, typ=GetMtlstruststoreCaSetVersionsResult).value
|
|
101
|
+
|
|
102
|
+
return AwaitableGetMtlstruststoreCaSetVersionsResult(
|
|
103
|
+
active_versions_only=pulumi.get(__ret__, 'active_versions_only'),
|
|
104
|
+
id=pulumi.get(__ret__, 'id'),
|
|
105
|
+
include_certificates=pulumi.get(__ret__, 'include_certificates'),
|
|
106
|
+
name=pulumi.get(__ret__, 'name'),
|
|
107
|
+
versions=pulumi.get(__ret__, 'versions'))
|
|
108
|
+
def get_mtlstruststore_ca_set_versions_output(active_versions_only: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
109
|
+
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
110
|
+
include_certificates: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
111
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
112
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMtlstruststoreCaSetVersionsResult]:
|
|
113
|
+
"""
|
|
114
|
+
Use this data source to access information about an existing resource.
|
|
115
|
+
"""
|
|
116
|
+
__args__ = dict()
|
|
117
|
+
__args__['activeVersionsOnly'] = active_versions_only
|
|
118
|
+
__args__['id'] = id
|
|
119
|
+
__args__['includeCertificates'] = include_certificates
|
|
120
|
+
__args__['name'] = name
|
|
121
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
122
|
+
__ret__ = pulumi.runtime.invoke_output('akamai:index/getMtlstruststoreCaSetVersions:getMtlstruststoreCaSetVersions', __args__, opts=opts, typ=GetMtlstruststoreCaSetVersionsResult)
|
|
123
|
+
return __ret__.apply(lambda __response__: GetMtlstruststoreCaSetVersionsResult(
|
|
124
|
+
active_versions_only=pulumi.get(__response__, 'active_versions_only'),
|
|
125
|
+
id=pulumi.get(__response__, 'id'),
|
|
126
|
+
include_certificates=pulumi.get(__response__, 'include_certificates'),
|
|
127
|
+
name=pulumi.get(__response__, 'name'),
|
|
128
|
+
versions=pulumi.get(__response__, 'versions')))
|