pulumi-akamai 9.1.0a1756357789__py3-none-any.whl → 9.1.0a1757435296__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 +30 -0
- pulumi_akamai/_inputs.py +944 -0
- pulumi_akamai/app_sec_slow_post.py +7 -14
- pulumi_akamai/cloud_access_key.py +21 -56
- pulumi_akamai/cloudlets_application_load_balancer.py +7 -21
- pulumi_akamai/datastream.py +7 -14
- pulumi_akamai/edge_host_name.py +7 -14
- pulumi_akamai/get_clientlist_lists.py +0 -3
- pulumi_akamai/get_mtlskeystore_account_ca_certificates.py +97 -0
- pulumi_akamai/get_mtlskeystore_client_certificate.py +233 -0
- pulumi_akamai/get_mtlskeystore_client_certificates.py +82 -0
- pulumi_akamai/gtm_domain.py +7 -14
- pulumi_akamai/iam_api_client.py +25 -50
- pulumi_akamai/imaging_policy_image.py +7 -21
- pulumi_akamai/imaging_policy_video.py +7 -21
- pulumi_akamai/mtlskeystore_client_certificate_akamai.py +654 -0
- pulumi_akamai/mtlskeystore_client_certificate_third_party.py +562 -0
- pulumi_akamai/mtlskeystore_client_certificate_upload.py +451 -0
- pulumi_akamai/network_list.py +7 -14
- pulumi_akamai/outputs.py +14310 -11900
- pulumi_akamai/property.py +7 -14
- pulumi_akamai/property_bootstrap.py +7 -14
- pulumi_akamai/property_hostname_bucket.py +28 -56
- pulumi_akamai/pulumi-plugin.json +1 -1
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/METADATA +1 -1
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/RECORD +28 -22
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/WHEEL +0 -0
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/top_level.txt +0 -0
|
@@ -30,9 +30,7 @@ class ImagingPolicyImageArgs:
|
|
|
30
30
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
31
31
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
32
32
|
:param pulumi.Input[_builtins.str] policyset_id: Unique identifier for the Image & Video Manager Policy Set.
|
|
33
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
34
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
35
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
33
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
36
34
|
"""
|
|
37
35
|
pulumi.set(__self__, "contract_id", contract_id)
|
|
38
36
|
pulumi.set(__self__, "json", json)
|
|
@@ -93,9 +91,7 @@ class ImagingPolicyImageArgs:
|
|
|
93
91
|
@pulumi.getter(name="activateOnProduction")
|
|
94
92
|
def activate_on_production(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
95
93
|
"""
|
|
96
|
-
With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
97
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
98
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
94
|
+
With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
99
95
|
"""
|
|
100
96
|
return pulumi.get(self, "activate_on_production")
|
|
101
97
|
|
|
@@ -115,9 +111,7 @@ class _ImagingPolicyImageState:
|
|
|
115
111
|
version: Optional[pulumi.Input[_builtins.int]] = None):
|
|
116
112
|
"""
|
|
117
113
|
Input properties used for looking up and filtering ImagingPolicyImage resources.
|
|
118
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
119
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
120
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
114
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
121
115
|
:param pulumi.Input[_builtins.str] contract_id: Unique identifier for the Akamai Contract containing the Policy Set(s)
|
|
122
116
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
123
117
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
@@ -141,9 +135,7 @@ class _ImagingPolicyImageState:
|
|
|
141
135
|
@pulumi.getter(name="activateOnProduction")
|
|
142
136
|
def activate_on_production(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
143
137
|
"""
|
|
144
|
-
With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
145
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
146
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
138
|
+
With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
147
139
|
"""
|
|
148
140
|
return pulumi.get(self, "activate_on_production")
|
|
149
141
|
|
|
@@ -228,9 +220,7 @@ class ImagingPolicyImage(pulumi.CustomResource):
|
|
|
228
220
|
Create a ImagingPolicyImage resource with the given unique name, props, and options.
|
|
229
221
|
:param str resource_name: The name of the resource.
|
|
230
222
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
231
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
232
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
233
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
223
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
234
224
|
:param pulumi.Input[_builtins.str] contract_id: Unique identifier for the Akamai Contract containing the Policy Set(s)
|
|
235
225
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
236
226
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
@@ -310,9 +300,7 @@ class ImagingPolicyImage(pulumi.CustomResource):
|
|
|
310
300
|
:param str resource_name: The unique name of the resulting resource.
|
|
311
301
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
312
302
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
313
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
314
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
315
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
303
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
316
304
|
:param pulumi.Input[_builtins.str] contract_id: Unique identifier for the Akamai Contract containing the Policy Set(s)
|
|
317
305
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
318
306
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
@@ -335,9 +323,7 @@ class ImagingPolicyImage(pulumi.CustomResource):
|
|
|
335
323
|
@pulumi.getter(name="activateOnProduction")
|
|
336
324
|
def activate_on_production(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
337
325
|
"""
|
|
338
|
-
With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
339
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
340
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
326
|
+
With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
341
327
|
"""
|
|
342
328
|
return pulumi.get(self, "activate_on_production")
|
|
343
329
|
|
|
@@ -30,9 +30,7 @@ class ImagingPolicyVideoArgs:
|
|
|
30
30
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
31
31
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
32
32
|
:param pulumi.Input[_builtins.str] policyset_id: Unique identifier for the Image & Video Manager Policy Set.
|
|
33
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
34
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
35
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
33
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
36
34
|
"""
|
|
37
35
|
pulumi.set(__self__, "contract_id", contract_id)
|
|
38
36
|
pulumi.set(__self__, "json", json)
|
|
@@ -93,9 +91,7 @@ class ImagingPolicyVideoArgs:
|
|
|
93
91
|
@pulumi.getter(name="activateOnProduction")
|
|
94
92
|
def activate_on_production(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
95
93
|
"""
|
|
96
|
-
With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
97
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
98
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
94
|
+
With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
99
95
|
"""
|
|
100
96
|
return pulumi.get(self, "activate_on_production")
|
|
101
97
|
|
|
@@ -115,9 +111,7 @@ class _ImagingPolicyVideoState:
|
|
|
115
111
|
version: Optional[pulumi.Input[_builtins.int]] = None):
|
|
116
112
|
"""
|
|
117
113
|
Input properties used for looking up and filtering ImagingPolicyVideo resources.
|
|
118
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
119
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
120
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
114
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
121
115
|
:param pulumi.Input[_builtins.str] contract_id: Unique identifier for the Akamai Contract containing the Policy Set(s)
|
|
122
116
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
123
117
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
@@ -141,9 +135,7 @@ class _ImagingPolicyVideoState:
|
|
|
141
135
|
@pulumi.getter(name="activateOnProduction")
|
|
142
136
|
def activate_on_production(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
143
137
|
"""
|
|
144
|
-
With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
145
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
146
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
138
|
+
With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
147
139
|
"""
|
|
148
140
|
return pulumi.get(self, "activate_on_production")
|
|
149
141
|
|
|
@@ -228,9 +220,7 @@ class ImagingPolicyVideo(pulumi.CustomResource):
|
|
|
228
220
|
Create a ImagingPolicyVideo resource with the given unique name, props, and options.
|
|
229
221
|
:param str resource_name: The name of the resource.
|
|
230
222
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
231
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
232
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
233
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
223
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
234
224
|
:param pulumi.Input[_builtins.str] contract_id: Unique identifier for the Akamai Contract containing the Policy Set(s)
|
|
235
225
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
236
226
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
@@ -310,9 +300,7 @@ class ImagingPolicyVideo(pulumi.CustomResource):
|
|
|
310
300
|
:param str resource_name: The unique name of the resulting resource.
|
|
311
301
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
312
302
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
313
|
-
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
314
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
315
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
303
|
+
:param pulumi.Input[_builtins.bool] activate_on_production: With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
316
304
|
:param pulumi.Input[_builtins.str] contract_id: Unique identifier for the Akamai Contract containing the Policy Set(s)
|
|
317
305
|
:param pulumi.Input[_builtins.str] json: A JSON encoded policy
|
|
318
306
|
:param pulumi.Input[_builtins.str] policy_id: Unique identifier for a Policy. It is not possible to modify the id of the policy.
|
|
@@ -335,9 +323,7 @@ class ImagingPolicyVideo(pulumi.CustomResource):
|
|
|
335
323
|
@pulumi.getter(name="activateOnProduction")
|
|
336
324
|
def activate_on_production(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
337
325
|
"""
|
|
338
|
-
With this flag set to false, the user can perform modifications on staging without affecting the version already saved
|
|
339
|
-
to production. With this flag set to true, the policy will be saved on the production network. It is possible to change
|
|
340
|
-
it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
326
|
+
With this flag set to false, the user can perform modifications on staging without affecting the version already saved to production. With this flag set to true, the policy will be saved on the production network. It is possible to change it back to false only when there are any changes to the policy qualifying it for the new version.
|
|
341
327
|
"""
|
|
342
328
|
return pulumi.get(self, "activate_on_production")
|
|
343
329
|
|