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.

Files changed (28) hide show
  1. pulumi_akamai/__init__.py +30 -0
  2. pulumi_akamai/_inputs.py +944 -0
  3. pulumi_akamai/app_sec_slow_post.py +7 -14
  4. pulumi_akamai/cloud_access_key.py +21 -56
  5. pulumi_akamai/cloudlets_application_load_balancer.py +7 -21
  6. pulumi_akamai/datastream.py +7 -14
  7. pulumi_akamai/edge_host_name.py +7 -14
  8. pulumi_akamai/get_clientlist_lists.py +0 -3
  9. pulumi_akamai/get_mtlskeystore_account_ca_certificates.py +97 -0
  10. pulumi_akamai/get_mtlskeystore_client_certificate.py +233 -0
  11. pulumi_akamai/get_mtlskeystore_client_certificates.py +82 -0
  12. pulumi_akamai/gtm_domain.py +7 -14
  13. pulumi_akamai/iam_api_client.py +25 -50
  14. pulumi_akamai/imaging_policy_image.py +7 -21
  15. pulumi_akamai/imaging_policy_video.py +7 -21
  16. pulumi_akamai/mtlskeystore_client_certificate_akamai.py +654 -0
  17. pulumi_akamai/mtlskeystore_client_certificate_third_party.py +562 -0
  18. pulumi_akamai/mtlskeystore_client_certificate_upload.py +451 -0
  19. pulumi_akamai/network_list.py +7 -14
  20. pulumi_akamai/outputs.py +14310 -11900
  21. pulumi_akamai/property.py +7 -14
  22. pulumi_akamai/property_bootstrap.py +7 -14
  23. pulumi_akamai/property_hostname_bucket.py +28 -56
  24. pulumi_akamai/pulumi-plugin.json +1 -1
  25. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/METADATA +1 -1
  26. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/RECORD +28 -22
  27. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/WHEEL +0 -0
  28. {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757435296.dist-info}/top_level.txt +0 -0
pulumi_akamai/property.py CHANGED
@@ -40,8 +40,7 @@ class PropertyArgs:
40
40
  :param pulumi.Input[_builtins.str] property_id: Property ID
41
41
  :param pulumi.Input[_builtins.str] rule_format: Specify the rule format version (defaults to latest version available when created)
42
42
  :param pulumi.Input[_builtins.str] rules: Property Rules as JSON
43
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
44
- incrementing property versions.
43
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
45
44
  :param pulumi.Input[_builtins.str] version_notes: Property version notes
46
45
  """
47
46
  pulumi.set(__self__, "contract_id", contract_id)
@@ -159,8 +158,7 @@ class PropertyArgs:
159
158
  @pulumi.getter(name="useHostnameBucket")
160
159
  def use_hostname_bucket(self) -> Optional[pulumi.Input[_builtins.bool]]:
161
160
  """
162
- Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
163
- incrementing property versions.
161
+ Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
164
162
  """
165
163
  return pulumi.get(self, "use_hostname_bucket")
166
164
 
@@ -216,8 +214,7 @@ class _PropertyState:
216
214
  :param pulumi.Input[Sequence[pulumi.Input['PropertyRuleWarningArgs']]] rule_warnings: Rule validation warnings
217
215
  :param pulumi.Input[_builtins.str] rules: Property Rules as JSON
218
216
  :param pulumi.Input[_builtins.int] staging_version: Property's version currently activated in staging (zero when not active in staging)
219
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
220
- incrementing property versions.
217
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
221
218
  :param pulumi.Input[_builtins.str] version_notes: Property version notes
222
219
  """
223
220
  if asset_id is not None:
@@ -433,8 +430,7 @@ class _PropertyState:
433
430
  @pulumi.getter(name="useHostnameBucket")
434
431
  def use_hostname_bucket(self) -> Optional[pulumi.Input[_builtins.bool]]:
435
432
  """
436
- Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
437
- incrementing property versions.
433
+ Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
438
434
  """
439
435
  return pulumi.get(self, "use_hostname_bucket")
440
436
 
@@ -483,8 +479,7 @@ class Property(pulumi.CustomResource):
483
479
  :param pulumi.Input[_builtins.str] property_id: Property ID
484
480
  :param pulumi.Input[_builtins.str] rule_format: Specify the rule format version (defaults to latest version available when created)
485
481
  :param pulumi.Input[_builtins.str] rules: Property Rules as JSON
486
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
487
- incrementing property versions.
482
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
488
483
  :param pulumi.Input[_builtins.str] version_notes: Property version notes
489
484
  """
490
485
  ...
@@ -601,8 +596,7 @@ class Property(pulumi.CustomResource):
601
596
  :param pulumi.Input[Sequence[pulumi.Input[Union['PropertyRuleWarningArgs', 'PropertyRuleWarningArgsDict']]]] rule_warnings: Rule validation warnings
602
597
  :param pulumi.Input[_builtins.str] rules: Property Rules as JSON
603
598
  :param pulumi.Input[_builtins.int] staging_version: Property's version currently activated in staging (zero when not active in staging)
604
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
605
- incrementing property versions.
599
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
606
600
  :param pulumi.Input[_builtins.str] version_notes: Property version notes
607
601
  """
608
602
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -746,8 +740,7 @@ class Property(pulumi.CustomResource):
746
740
  @pulumi.getter(name="useHostnameBucket")
747
741
  def use_hostname_bucket(self) -> pulumi.Output[Optional[_builtins.bool]]:
748
742
  """
749
- Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
750
- incrementing property versions.
743
+ Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
751
744
  """
752
745
  return pulumi.get(self, "use_hostname_bucket")
753
746
 
@@ -30,8 +30,7 @@ class PropertyBootstrapArgs:
30
30
  :param pulumi.Input[_builtins.str] group_id: Group ID to be assigned to the Property
31
31
  :param pulumi.Input[_builtins.str] product_id: Product ID to be assigned to the Property
32
32
  :param pulumi.Input[_builtins.str] name: Name to give to the Property (must be unique)
33
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
34
- incrementing property versions.
33
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
35
34
  """
36
35
  pulumi.set(__self__, "contract_id", contract_id)
37
36
  pulumi.set(__self__, "group_id", group_id)
@@ -93,8 +92,7 @@ class PropertyBootstrapArgs:
93
92
  @pulumi.getter(name="useHostnameBucket")
94
93
  def use_hostname_bucket(self) -> Optional[pulumi.Input[_builtins.bool]]:
95
94
  """
96
- Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
97
- incrementing property versions.
95
+ Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
98
96
  """
99
97
  return pulumi.get(self, "use_hostname_bucket")
100
98
 
@@ -119,8 +117,7 @@ class _PropertyBootstrapState:
119
117
  :param pulumi.Input[_builtins.str] group_id: Group ID to be assigned to the Property
120
118
  :param pulumi.Input[_builtins.str] name: Name to give to the Property (must be unique)
121
119
  :param pulumi.Input[_builtins.str] product_id: Product ID to be assigned to the Property
122
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
123
- incrementing property versions.
120
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
124
121
  """
125
122
  if asset_id is not None:
126
123
  pulumi.set(__self__, "asset_id", asset_id)
@@ -199,8 +196,7 @@ class _PropertyBootstrapState:
199
196
  @pulumi.getter(name="useHostnameBucket")
200
197
  def use_hostname_bucket(self) -> Optional[pulumi.Input[_builtins.bool]]:
201
198
  """
202
- Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
203
- incrementing property versions.
199
+ Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
204
200
  """
205
201
  return pulumi.get(self, "use_hostname_bucket")
206
202
 
@@ -229,8 +225,7 @@ class PropertyBootstrap(pulumi.CustomResource):
229
225
  :param pulumi.Input[_builtins.str] group_id: Group ID to be assigned to the Property
230
226
  :param pulumi.Input[_builtins.str] name: Name to give to the Property (must be unique)
231
227
  :param pulumi.Input[_builtins.str] product_id: Product ID to be assigned to the Property
232
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
233
- incrementing property versions.
228
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
234
229
  """
235
230
  ...
236
231
  @overload
@@ -309,8 +304,7 @@ class PropertyBootstrap(pulumi.CustomResource):
309
304
  :param pulumi.Input[_builtins.str] group_id: Group ID to be assigned to the Property
310
305
  :param pulumi.Input[_builtins.str] name: Name to give to the Property (must be unique)
311
306
  :param pulumi.Input[_builtins.str] product_id: Product ID to be assigned to the Property
312
- :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
313
- incrementing property versions.
307
+ :param pulumi.Input[_builtins.bool] use_hostname_bucket: Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
314
308
  """
315
309
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
316
310
 
@@ -368,8 +362,7 @@ class PropertyBootstrap(pulumi.CustomResource):
368
362
  @pulumi.getter(name="useHostnameBucket")
369
363
  def use_hostname_bucket(self) -> pulumi.Output[_builtins.bool]:
370
364
  """
371
- Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without
372
- incrementing property versions.
365
+ Specifies whether hostname bucket is used with this property. It allows you to add or remove property hostnames without incrementing property versions.
373
366
  """
374
367
  return pulumi.get(self, "use_hostname_bucket")
375
368
 
@@ -32,16 +32,12 @@ class PropertyHostnameBucketArgs:
32
32
  timeout_for_activation: Optional[pulumi.Input[_builtins.int]] = None):
33
33
  """
34
34
  The set of arguments for constructing a PropertyHostnameBucket resource.
35
- :param pulumi.Input[Mapping[str, pulumi.Input['PropertyHostnameBucketHostnamesArgs']]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
36
- certificate provisioning type and edge hostname.
35
+ :param pulumi.Input[Mapping[str, pulumi.Input['PropertyHostnameBucketHostnamesArgs']]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
37
36
  :param pulumi.Input[_builtins.str] network: The network to activate on, either `STAGING` or `PRODUCTION`.
38
37
  :param pulumi.Input[_builtins.str] property_id: The unique identifier for the property.
39
- :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
40
- possible
41
- :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
42
- possible
43
- :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
44
- the number of hostnames that will be active after making the changes.
38
+ :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
39
+ :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
40
+ :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
45
41
  :param pulumi.Input[_builtins.str] note: Assigns a log message to the request.
46
42
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] notify_emails: Email addresses to notify when the activation status changes.
47
43
  :param pulumi.Input[_builtins.int] timeout_for_activation: The timeout value in minutes after which a single hostname activation will be canceled. Defaults to 50 minutes.
@@ -66,8 +62,7 @@ class PropertyHostnameBucketArgs:
66
62
  @pulumi.getter
67
63
  def hostnames(self) -> pulumi.Input[Mapping[str, pulumi.Input['PropertyHostnameBucketHostnamesArgs']]]:
68
64
  """
69
- The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
70
- certificate provisioning type and edge hostname.
65
+ The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
71
66
  """
72
67
  return pulumi.get(self, "hostnames")
73
68
 
@@ -103,8 +98,7 @@ class PropertyHostnameBucketArgs:
103
98
  @pulumi.getter(name="contractId")
104
99
  def contract_id(self) -> Optional[pulumi.Input[_builtins.str]]:
105
100
  """
106
- The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
107
- possible
101
+ The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
108
102
  """
109
103
  return pulumi.get(self, "contract_id")
110
104
 
@@ -116,8 +110,7 @@ class PropertyHostnameBucketArgs:
116
110
  @pulumi.getter(name="groupId")
117
111
  def group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
118
112
  """
119
- The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
120
- possible
113
+ The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
121
114
  """
122
115
  return pulumi.get(self, "group_id")
123
116
 
@@ -129,8 +122,7 @@ class PropertyHostnameBucketArgs:
129
122
  @pulumi.getter(name="hostnameCount")
130
123
  def hostname_count(self) -> Optional[pulumi.Input[_builtins.int]]:
131
124
  """
132
- The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
133
- the number of hostnames that will be active after making the changes.
125
+ The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
134
126
  """
135
127
  return pulumi.get(self, "hostname_count")
136
128
 
@@ -192,14 +184,10 @@ class _PropertyHostnameBucketState:
192
184
  """
193
185
  Input properties used for looking up and filtering PropertyHostnameBucket resources.
194
186
  :param pulumi.Input[_builtins.str] activation_id: The ID of the latest hostname bucket activation.
195
- :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
196
- possible
197
- :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
198
- possible
199
- :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
200
- the number of hostnames that will be active after making the changes.
201
- :param pulumi.Input[Mapping[str, pulumi.Input['PropertyHostnameBucketHostnamesArgs']]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
202
- certificate provisioning type and edge hostname.
187
+ :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
188
+ :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
189
+ :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
190
+ :param pulumi.Input[Mapping[str, pulumi.Input['PropertyHostnameBucketHostnamesArgs']]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
203
191
  :param pulumi.Input[_builtins.str] network: The network to activate on, either `STAGING` or `PRODUCTION`.
204
192
  :param pulumi.Input[_builtins.str] note: Assigns a log message to the request.
205
193
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] notify_emails: Email addresses to notify when the activation status changes.
@@ -246,8 +234,7 @@ class _PropertyHostnameBucketState:
246
234
  @pulumi.getter(name="contractId")
247
235
  def contract_id(self) -> Optional[pulumi.Input[_builtins.str]]:
248
236
  """
249
- The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
250
- possible
237
+ The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
251
238
  """
252
239
  return pulumi.get(self, "contract_id")
253
240
 
@@ -259,8 +246,7 @@ class _PropertyHostnameBucketState:
259
246
  @pulumi.getter(name="groupId")
260
247
  def group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
261
248
  """
262
- The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
263
- possible
249
+ The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
264
250
  """
265
251
  return pulumi.get(self, "group_id")
266
252
 
@@ -272,8 +258,7 @@ class _PropertyHostnameBucketState:
272
258
  @pulumi.getter(name="hostnameCount")
273
259
  def hostname_count(self) -> Optional[pulumi.Input[_builtins.int]]:
274
260
  """
275
- The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
276
- the number of hostnames that will be active after making the changes.
261
+ The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
277
262
  """
278
263
  return pulumi.get(self, "hostname_count")
279
264
 
@@ -285,8 +270,7 @@ class _PropertyHostnameBucketState:
285
270
  @pulumi.getter
286
271
  def hostnames(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['PropertyHostnameBucketHostnamesArgs']]]]:
287
272
  """
288
- The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
289
- certificate provisioning type and edge hostname.
273
+ The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
290
274
  """
291
275
  return pulumi.get(self, "hostnames")
292
276
 
@@ -387,14 +371,10 @@ class PropertyHostnameBucket(pulumi.CustomResource):
387
371
  Create a PropertyHostnameBucket resource with the given unique name, props, and options.
388
372
  :param str resource_name: The name of the resource.
389
373
  :param pulumi.ResourceOptions opts: Options for the resource.
390
- :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
391
- possible
392
- :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
393
- possible
394
- :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
395
- the number of hostnames that will be active after making the changes.
396
- :param pulumi.Input[Mapping[str, pulumi.Input[Union['PropertyHostnameBucketHostnamesArgs', 'PropertyHostnameBucketHostnamesArgsDict']]]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
397
- certificate provisioning type and edge hostname.
374
+ :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
375
+ :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
376
+ :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
377
+ :param pulumi.Input[Mapping[str, pulumi.Input[Union['PropertyHostnameBucketHostnamesArgs', 'PropertyHostnameBucketHostnamesArgsDict']]]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
398
378
  :param pulumi.Input[_builtins.str] network: The network to activate on, either `STAGING` or `PRODUCTION`.
399
379
  :param pulumi.Input[_builtins.str] note: Assigns a log message to the request.
400
380
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] notify_emails: Email addresses to notify when the activation status changes.
@@ -488,14 +468,10 @@ class PropertyHostnameBucket(pulumi.CustomResource):
488
468
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
489
469
  :param pulumi.ResourceOptions opts: Options for the resource.
490
470
  :param pulumi.Input[_builtins.str] activation_id: The ID of the latest hostname bucket activation.
491
- :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
492
- possible
493
- :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
494
- possible
495
- :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
496
- the number of hostnames that will be active after making the changes.
497
- :param pulumi.Input[Mapping[str, pulumi.Input[Union['PropertyHostnameBucketHostnamesArgs', 'PropertyHostnameBucketHostnamesArgsDict']]]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
498
- certificate provisioning type and edge hostname.
471
+ :param pulumi.Input[_builtins.str] contract_id: The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
472
+ :param pulumi.Input[_builtins.str] group_id: The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
473
+ :param pulumi.Input[_builtins.int] hostname_count: The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
474
+ :param pulumi.Input[Mapping[str, pulumi.Input[Union['PropertyHostnameBucketHostnamesArgs', 'PropertyHostnameBucketHostnamesArgsDict']]]] hostnames: The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
499
475
  :param pulumi.Input[_builtins.str] network: The network to activate on, either `STAGING` or `PRODUCTION`.
500
476
  :param pulumi.Input[_builtins.str] note: Assigns a log message to the request.
501
477
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] notify_emails: Email addresses to notify when the activation status changes.
@@ -532,8 +508,7 @@ class PropertyHostnameBucket(pulumi.CustomResource):
532
508
  @pulumi.getter(name="contractId")
533
509
  def contract_id(self) -> pulumi.Output[_builtins.str]:
534
510
  """
535
- The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not
536
- possible
511
+ The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
537
512
  """
538
513
  return pulumi.get(self, "contract_id")
539
514
 
@@ -541,8 +516,7 @@ class PropertyHostnameBucket(pulumi.CustomResource):
541
516
  @pulumi.getter(name="groupId")
542
517
  def group_id(self) -> pulumi.Output[_builtins.str]:
543
518
  """
544
- The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not
545
- possible
519
+ The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible
546
520
  """
547
521
  return pulumi.get(self, "group_id")
548
522
 
@@ -550,8 +524,7 @@ class PropertyHostnameBucket(pulumi.CustomResource):
550
524
  @pulumi.getter(name="hostnameCount")
551
525
  def hostname_count(self) -> pulumi.Output[_builtins.int]:
552
526
  """
553
- The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about
554
- the number of hostnames that will be active after making the changes.
527
+ The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes.
555
528
  """
556
529
  return pulumi.get(self, "hostname_count")
557
530
 
@@ -559,8 +532,7 @@ class PropertyHostnameBucket(pulumi.CustomResource):
559
532
  @pulumi.getter
560
533
  def hostnames(self) -> pulumi.Output[Mapping[str, 'outputs.PropertyHostnameBucketHostnames']]:
561
534
  """
562
- The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of
563
- certificate provisioning type and edge hostname.
535
+ The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname.
564
536
  """
565
537
  return pulumi.get(self, "hostnames")
566
538
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "akamai",
4
- "version": "9.1.0-alpha.1756357789"
4
+ "version": "9.1.0-alpha.1757435296"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_akamai
3
- Version: 9.1.0a1756357789
3
+ Version: 9.1.0a1757435296
4
4
  Summary: A Pulumi package for creating and managing akamai cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
- pulumi_akamai/__init__.py,sha256=5FYkYYQzihYEDcUBOvrOjCMmj81fcemT72YKApMnhL0,38863
2
- pulumi_akamai/_inputs.py,sha256=601SHz8Wdfm115KvyDBnexmzAct7ihQFlPBHuq6sb5o,1579226
1
+ pulumi_akamai/__init__.py,sha256=n2KW0pBZM1eyHkWPNT9Ce65yR10whCErfdUA6EsG8lk,39967
2
+ pulumi_akamai/_inputs.py,sha256=TANz0dAxjxSx5O9gbhWsUbepsgy0cVSPzk--PtHg-N0,1623911
3
3
  pulumi_akamai/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_akamai/app_sec_activations.py,sha256=fQVb5b-EdSVkg7tNrRho6_8aRg4b5GrB_01xJBwFITo,16662
5
5
  pulumi_akamai/app_sec_advanced_settings_evasive_path_match.py,sha256=LRxf6ovryOnZEE9AkZX6ix4CrPh83ms77E1zPaW4LaI,11569
@@ -40,7 +40,7 @@ pulumi_akamai/app_sec_rule_upgrade.py,sha256=IBxvS6jWV6Fql8jOUofF7YMNQnJDzEpGyO9
40
40
  pulumi_akamai/app_sec_security_policy.py,sha256=q0E5TE1wAxwgiIQfxnCC4HjX559a6R-rI938hDuJQYU,18272
41
41
  pulumi_akamai/app_sec_security_policy_rename.py,sha256=1-Q5e1pi96AlyAnXGhtkvjGxPtOymMlAMKqdOJGUdA4,11385
42
42
  pulumi_akamai/app_sec_siem_settings.py,sha256=iEnBfZJHTsyzNmGEvHRBgZwJAYes_hD-lyPici296WQ,21592
43
- pulumi_akamai/app_sec_slow_post.py,sha256=Xo4ttQQ2v4204GEbxS33F0pvALjS9dPgXOqc_igvjvc,20631
43
+ pulumi_akamai/app_sec_slow_post.py,sha256=BlDb5f3z9i--N4dN-9epu-rkibTmaxGKnBcTlGUKvGE,20547
44
44
  pulumi_akamai/app_sec_slow_post_protection.py,sha256=SRWk6ZP-wYHy5cbbeafnUBkyLkMZrqLOIWIqC0ZjuQ4,11920
45
45
  pulumi_akamai/app_sec_threat_intel.py,sha256=5bs-MTbJ7hzWZY0-XeDfSstyC9Xw84OuCMfsD9VHb0M,10997
46
46
  pulumi_akamai/app_sec_version_nodes.py,sha256=Y4PVMIGwuu7lw3DX2ELqRehIQstmshTtE6WAao9UryA,9736
@@ -82,8 +82,8 @@ pulumi_akamai/botman_transactional_endpoint.py,sha256=EsZgOWHVijbG5VeP8IBhIdEHVg
82
82
  pulumi_akamai/botman_transactional_endpoint_protection.py,sha256=A8DFoinUlp1tHkkgEWINkIY3neEW2DDeoNtAlhcjVtU,8340
83
83
  pulumi_akamai/clientlist_activation.py,sha256=xN3PBZPkVMH2XCCaIlBd5f24iTzFrpkxnGUq_YEHP5Q,18915
84
84
  pulumi_akamai/clientlist_list.py,sha256=L5FhXQGK8MKrlw-iy3EannDj86O01ARGvvF2SLIBEdY,21965
85
- pulumi_akamai/cloud_access_key.py,sha256=r-Z7e448l88WCi0hvtDSZggAJ5nR23hAJqxHRo7ksVQ,30791
86
- pulumi_akamai/cloudlets_application_load_balancer.py,sha256=7Pw4v_oHGrBU3GmusMGUG0yj-rrSOTwUnc5XQDryDxU,23413
85
+ pulumi_akamai/cloud_access_key.py,sha256=Kjjh3Q2VA2Xa7IP0yrZCM6G3IFnDOkE0DNZP-FZZXak,30371
86
+ pulumi_akamai/cloudlets_application_load_balancer.py,sha256=P9XeYgkFMaf4lQqAKGo2FSSggbbaK67ZLDCp4SWmFnE,23245
87
87
  pulumi_akamai/cloudlets_application_load_balancer_activation.py,sha256=Zw_vCFN9cub5ZHassowGxKImHklG4Sgdx3byjB6t58g,15513
88
88
  pulumi_akamai/cloudlets_policy.py,sha256=8NSFm9y89nYRZwx1PRHbxikDFMKz3OGXtHnQpOm539I,25535
89
89
  pulumi_akamai/cloudlets_policy_activation.py,sha256=w7SQYJ64vCMfTEYi3JW7IM3KkYMDse3Lu9VAO3fB6RY,18886
@@ -94,10 +94,10 @@ pulumi_akamai/cps_dv_enrollment.py,sha256=evRVhETFxzXRwtM813tUzJ1YR1zAZhXyxspJx1
94
94
  pulumi_akamai/cps_dv_validation.py,sha256=0jNK-AErWMBN0fPOmNdrLQchyyGNeMi270jAuaI0y_E,14800
95
95
  pulumi_akamai/cps_third_party_enrollment.py,sha256=n3xHQsBSjIFFT-n9dax_kc4dJVEU6Mh64zOWR_SXjI4,50167
96
96
  pulumi_akamai/cps_upload_certificate.py,sha256=nJwHgqvaKwgOOKfivbPKaBqsJSO0xKOlbJ2dewOESYE,30165
97
- pulumi_akamai/datastream.py,sha256=lHodsAkFBcZVsgHcd2WxmLa-9CG0rYYlFRNWXeTESk0,60050
97
+ pulumi_akamai/datastream.py,sha256=J0bPFaHH--Ii5OftGIBdIm_VqMXPHndEXWCBy2D7Kdg,59966
98
98
  pulumi_akamai/dns_record.py,sha256=HWNx6QaXuRn29zaZrBMiihScDyv6pQDSJKqO1MBG_ac,85097
99
99
  pulumi_akamai/dns_zone.py,sha256=DekSBVAzoy5sppvtUeXMSSieDEgbB9aQ5gWXT15dlbI,25931
100
- pulumi_akamai/edge_host_name.py,sha256=4268bXrLtBe2ski-cmZb-FNZig6VSrNDA9zBDkKJqJc,23276
100
+ pulumi_akamai/edge_host_name.py,sha256=CtWqvCd3jmNx3_tAYEkTSENQghVl1tCUXzwswBVJZvQ,23192
101
101
  pulumi_akamai/edge_kv.py,sha256=qz1FVfXvvP_qf0AJ8pDfPZ10US3it-GUye0_GywPNlE,15312
102
102
  pulumi_akamai/edge_worker.py,sha256=oyNRBt0x-Xdbecgp-5I9y_VP2Y5-78SUsajsmzxud08,19417
103
103
  pulumi_akamai/edge_workers_activation.py,sha256=d2dKMjon9Ly0OHsSNob0ha7liyWivjJoeUC95awBNCk,16050
@@ -188,7 +188,7 @@ pulumi_akamai/get_botman_response_action.py,sha256=zXmEJOXRIe2arvS61QdRyeNrBJSlJ
188
188
  pulumi_akamai/get_botman_serve_alternate_action.py,sha256=HDgwStkg7Cfixxfyw-EEBvHpQH48kmKubHsxxn6jPsc,4758
189
189
  pulumi_akamai/get_botman_transactional_endpoint.py,sha256=5D9TMxPaDbx-u3VE3MPHDIg_78aSmlj3dR9Zar9eCvY,5775
190
190
  pulumi_akamai/get_botman_transactional_endpoint_protection.py,sha256=GF7jhnPvOmZHuRR3JMqQB0XQkLY3JR-wI9orF9xNA90,4240
191
- pulumi_akamai/get_clientlist_lists.py,sha256=k3DvzAcR-yHIqigg_53iz55SrkVQJzODvwe3GINgOWg,5804
191
+ pulumi_akamai/get_clientlist_lists.py,sha256=POHT_xVDfbEpzRh_SYVeGuvQDeTkAmoSlPnp5q4qTN4,5713
192
192
  pulumi_akamai/get_cloudaccess_key.py,sha256=o7IZCqphZk1jJkL21-irIPvNRQCiKlUJPw_u3QbfhkQ,7484
193
193
  pulumi_akamai/get_cloudaccess_key_properties.py,sha256=k-tioItDRcnW7fkEKm8Fwg2PERY_4hgWUOfqM1EsLr4,4782
194
194
  pulumi_akamai/get_cloudaccess_key_versions.py,sha256=SjOyKQGz9oCHXrPUdTEadEGXphYmihu9a32A3BxwEQ0,4894
@@ -264,6 +264,9 @@ pulumi_akamai/get_iam_timezones.py,sha256=jn6BvKYwEuAPPlqfWaAKucN3PfDhifTxzkblXI
264
264
  pulumi_akamai/get_iam_users_affected_by_moving_group.py,sha256=480ik4uf3iM8qqCcaunU5LlLdQqXyP6BLVNBykFBnTg,6048
265
265
  pulumi_akamai/get_imaging_policy_image.py,sha256=V-MBXrnuYpCRVut1mw5zP5JgElz2l_2aAbEMaymW89s,3931
266
266
  pulumi_akamai/get_imaging_policy_video.py,sha256=OBYDsgT8h0ToryCllP6u6eXbgI5ttgrr30U55CrKFSw,3931
267
+ pulumi_akamai/get_mtlskeystore_account_ca_certificates.py,sha256=s7iWRXibZt7hwtE-xIy3eNjWaa9bt7Uo4m9RovdyotM,4361
268
+ pulumi_akamai/get_mtlskeystore_client_certificate.py,sha256=qrtvOQPPZoPM-LMu67tM8SUghzapDJvRW4qFezaN00w,11272
269
+ pulumi_akamai/get_mtlskeystore_client_certificates.py,sha256=y-6WNGWo_3Uid6thrZOFtkEb9ezQml5Ge4h834MJ0lU,3509
267
270
  pulumi_akamai/get_network_lists.py,sha256=jaRniL_KY-_UR35IVTKLsO8JtqBdtxYXzU2dfUO9sts,7503
268
271
  pulumi_akamai/get_properties.py,sha256=WVu6TQ0RENfOUTTITGvlj7wW2ydNdY6bCgJtxejgPFw,4477
269
272
  pulumi_akamai/get_properties_search.py,sha256=nTKg6xk1TYWeIR5oOyNpOS3so_yqwxezTeS5AsCBTkg,4390
@@ -286,39 +289,42 @@ pulumi_akamai/get_zone_dnssec_status.py,sha256=svvokJDRsr5a_dcrGtbUGRVbgkvjzQZ1v
286
289
  pulumi_akamai/gtm_asmap.py,sha256=cUpzD4u55ggZ6jUy7wRqLTRnRCIhWeHXifjV3gL1FwA,12415
287
290
  pulumi_akamai/gtm_cidrmap.py,sha256=-dpQMVQ81zEDk5KU2l4kcUsfxMogNTbOhC5u5ewGhfU,12519
288
291
  pulumi_akamai/gtm_datacenter.py,sha256=O-tbf8KlKooCB49J2ywfUtTbwM0qWwdYqGxGI-73OCo,32224
289
- pulumi_akamai/gtm_domain.py,sha256=8AuGMaY4IZ3RpNvoF8S5Z8KcughbAE7FeuHxDn3yVY4,54609
292
+ pulumi_akamai/gtm_domain.py,sha256=WrLk6haJeqg0pPCdnv9KEsFONWAPjaAP9IRPcogF3LU,54525
290
293
  pulumi_akamai/gtm_geomap.py,sha256=pK-SHbc8mtTjdn4Vi7i4qUHKlTosRPThDMPljyT8NAU,12467
291
294
  pulumi_akamai/gtm_property.py,sha256=VdNg82bDnV97zKKOtrlDJbRCLCZg22epEkxzA37Mf2k,58264
292
295
  pulumi_akamai/gtm_resource.py,sha256=tZKHuo6LMqvw2Y-kWxof85UJhPs1Ff6Xkur8QFvu1N0,28928
293
- pulumi_akamai/iam_api_client.py,sha256=gHaV3uJUaAgGZ9d2IJmmJoHdJy3_WmonlDWH0U1tLBs,47638
296
+ pulumi_akamai/iam_api_client.py,sha256=-SQjCVePTHtLv8j62sAah13cAiC5VEfyfziYR3NxD5k,47340
294
297
  pulumi_akamai/iam_blocked_user_properties.py,sha256=qwkOxr3-2LGXijCPQP5Bbzo4-l-JIEx8QKwE0RWb5dA,11602
295
298
  pulumi_akamai/iam_cidr_block.py,sha256=o2SmJ3h_dJTruoQDpr6f2gPrybv0t7gyv0gwfA9kbrg,17699
296
299
  pulumi_akamai/iam_group.py,sha256=04_yM4UT6rQxYT37kJBDy0Ja_GImq2vID-Pzi0oSnvQ,9206
297
300
  pulumi_akamai/iam_ip_allowlist.py,sha256=Pgro9-U1_vfdWm7vAeo2URpwptfo4NFQFSv3pwRn0aY,6045
298
301
  pulumi_akamai/iam_role.py,sha256=M5dxpNlra8din2QuksRuE5m1XsW0vaYisKN9sPsSN94,12715
299
302
  pulumi_akamai/iam_user.py,sha256=wOkTXqa5F1a8wZQpsPDIG3LwwLQnEUnOg2oYcXSlvyU,58007
300
- pulumi_akamai/imaging_policy_image.py,sha256=2MQM4WpXMf4MmknJngOTAGGKU7X8BurlXI1rFxKcDYg,18810
303
+ pulumi_akamai/imaging_policy_image.py,sha256=sqobvgBmUNa7xbAUMARnn5Io0VnTXkIoQRQwVu2aRcY,18642
301
304
  pulumi_akamai/imaging_policy_set.py,sha256=Qz93fITORv6r7PO4zS7JNZlG5l8rgmn-7jmjpNDlkV8,12353
302
- pulumi_akamai/imaging_policy_video.py,sha256=1NASu6M62eImAGN7w9lkXhLrS5rsE8VvJwjdWf1VrTg,18810
303
- pulumi_akamai/network_list.py,sha256=gXk7ZAMdlYMXy4oFd7xrac1YL9bLLWDh2gz670xWP8M,21974
305
+ pulumi_akamai/imaging_policy_video.py,sha256=ekXC2m_Qu3lhhdfwhNzkfRJ-0xYFcg9VneExaVgRi4M,18642
306
+ pulumi_akamai/mtlskeystore_client_certificate_akamai.py,sha256=1NUiW5r-RiLdUL-FvmLtwM5Si_ZzZ7q58Kuz8Ffs3-A,34804
307
+ pulumi_akamai/mtlskeystore_client_certificate_third_party.py,sha256=CC3WVy-FxSwIlsnuJpEidDJjXqr1xsu48pffW6tQe6U,32052
308
+ pulumi_akamai/mtlskeystore_client_certificate_upload.py,sha256=d3onIDNOEW2IyV8lAkssLYw8TtSDkxpLwLDA_JAgauE,23462
309
+ pulumi_akamai/network_list.py,sha256=vm2DrnzpateXGeGC9PHZ3jhLcbkLGYZy0qF-J1nGVD0,21890
304
310
  pulumi_akamai/network_list_activations.py,sha256=BAWx_dM4uZrO-nsxUsYrS-31GqFZWRoWmZFxiN0cHqo,17416
305
311
  pulumi_akamai/network_list_description.py,sha256=DTr9mSo__MkiCrxniju9t28hU27sZHfJi6D_o--N_HI,8681
306
312
  pulumi_akamai/network_list_subscription.py,sha256=8X_FTBjmrgF7tbVjTpl-6dpXBmrxhAU7Wk737-n08rE,7816
307
- pulumi_akamai/outputs.py,sha256=0B5WDuYEXUq8RjJS0d1TX1gdviSiV-PSeau320abToI,1291589
308
- pulumi_akamai/property.py,sha256=eOOdTPi2WE9r9CRnWs-XlWumQT3Z29vz8ar8w-IicEE,34670
313
+ pulumi_akamai/outputs.py,sha256=GGGdAKpSrleYxm0E4H7stEVu6A6PEgNef30GHjwCeao,1395454
314
+ pulumi_akamai/property.py,sha256=hP0hcOJKoMpZaHHsGBwsbv2Evm0N2DsfNwJ1z47StUY,34586
309
315
  pulumi_akamai/property_activation.py,sha256=BH1KpM3Vz2zErVf0UzyoBC-quvRw2xh2GKvOvGFHqts,31210
310
- pulumi_akamai/property_bootstrap.py,sha256=dshDs4FDfs2JrFhXLEfE8RFk5d63UNJgEwTkT2ogoqs,16820
311
- pulumi_akamai/property_hostname_bucket.py,sha256=Oq8gpekbcNnbBinTUt_VZa6B8NVictJnShenBCYndeY,31609
316
+ pulumi_akamai/property_bootstrap.py,sha256=Q9bqhYGn96sRll-Nx2C6l5lvQXy8DGGu-Qja_rjMKFY,16736
317
+ pulumi_akamai/property_hostname_bucket.py,sha256=llLYDmhEJmTYBP-Jd3siJNgHHJNYInjQ1gvWYMt4dQU,31273
312
318
  pulumi_akamai/property_include.py,sha256=23-MxQmrrfYw3c-DxXVTammrrEJNFSJKKjBs4JI_Wk4,25990
313
319
  pulumi_akamai/property_include_activation.py,sha256=2qw66YjgXXRrFc8yBh_ShYv5mKvVl5n2e5LRLq6MaPA,29495
314
320
  pulumi_akamai/provider.py,sha256=BjZvGH07MSFd7BvO_02llgZotn4lIzfC549Tj_pRvHk,14237
315
- pulumi_akamai/pulumi-plugin.json,sha256=R3nS-TNJwOW1riOclJK4HH2ZrULSNsbnlwiQQpwIjF8,82
321
+ pulumi_akamai/pulumi-plugin.json,sha256=RAh7aztv8h0Nhwc0aQZGvdYTV5mnM5UiyWyYuKqcTrs,82
316
322
  pulumi_akamai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
323
  pulumi_akamai/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
318
324
  pulumi_akamai/config/__init__.pyi,sha256=SJqpKnoj7URVVed49JnP6ImsPa-Vn4LfJD7eyyOgoM8,1245
319
325
  pulumi_akamai/config/outputs.py,sha256=q965HuUGKV7vEQXwheFZVctS1ZPPrJuinQbkO1alE-k,2239
320
326
  pulumi_akamai/config/vars.py,sha256=J4QRr0ZpCCwsJlU98QNpqsWoNzUVTr6-CZ2WgrvbKr0,2289
321
- pulumi_akamai-9.1.0a1756357789.dist-info/METADATA,sha256=ev65wauzONXqoteMAT1aaQi0GNuXYv3GDCY3DqXpt5Q,2640
322
- pulumi_akamai-9.1.0a1756357789.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
323
- pulumi_akamai-9.1.0a1756357789.dist-info/top_level.txt,sha256=EvyTMGuBJb5olnB8z5jYPg5Q7wUuF44xkc_CkZQqJ8I,14
324
- pulumi_akamai-9.1.0a1756357789.dist-info/RECORD,,
327
+ pulumi_akamai-9.1.0a1757435296.dist-info/METADATA,sha256=grC5xH9RcQg7kS0lAI671-SUaj6xgHxOskNuPnSmYW8,2640
328
+ pulumi_akamai-9.1.0a1757435296.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
329
+ pulumi_akamai-9.1.0a1757435296.dist-info/top_level.txt,sha256=EvyTMGuBJb5olnB8z5jYPg5Q7wUuF44xkc_CkZQqJ8I,14
330
+ pulumi_akamai-9.1.0a1757435296.dist-info/RECORD,,