pulumi-akamai 9.1.0a1756357789__py3-none-any.whl → 9.1.0a1757049021__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/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/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/network_list.py +7 -14
- 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.0a1757049021.dist-info}/METADATA +1 -1
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757049021.dist-info}/RECORD +18 -18
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757049021.dist-info}/WHEEL +0 -0
- {pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757049021.dist-info}/top_level.txt +0 -0
|
@@ -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
|
-
|
|
41
|
-
:param pulumi.Input[_builtins.
|
|
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
|
-
|
|
197
|
-
:param pulumi.Input[_builtins.
|
|
198
|
-
|
|
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
|
-
|
|
392
|
-
:param pulumi.Input[_builtins.
|
|
393
|
-
|
|
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
|
-
|
|
493
|
-
:param pulumi.Input[_builtins.
|
|
494
|
-
|
|
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
|
|
pulumi_akamai/pulumi-plugin.json
CHANGED
{pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757049021.dist-info}/RECORD
RENAMED
|
@@ -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=
|
|
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=
|
|
86
|
-
pulumi_akamai/cloudlets_application_load_balancer.py,sha256=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -286,39 +286,39 @@ pulumi_akamai/get_zone_dnssec_status.py,sha256=svvokJDRsr5a_dcrGtbUGRVbgkvjzQZ1v
|
|
|
286
286
|
pulumi_akamai/gtm_asmap.py,sha256=cUpzD4u55ggZ6jUy7wRqLTRnRCIhWeHXifjV3gL1FwA,12415
|
|
287
287
|
pulumi_akamai/gtm_cidrmap.py,sha256=-dpQMVQ81zEDk5KU2l4kcUsfxMogNTbOhC5u5ewGhfU,12519
|
|
288
288
|
pulumi_akamai/gtm_datacenter.py,sha256=O-tbf8KlKooCB49J2ywfUtTbwM0qWwdYqGxGI-73OCo,32224
|
|
289
|
-
pulumi_akamai/gtm_domain.py,sha256=
|
|
289
|
+
pulumi_akamai/gtm_domain.py,sha256=WrLk6haJeqg0pPCdnv9KEsFONWAPjaAP9IRPcogF3LU,54525
|
|
290
290
|
pulumi_akamai/gtm_geomap.py,sha256=pK-SHbc8mtTjdn4Vi7i4qUHKlTosRPThDMPljyT8NAU,12467
|
|
291
291
|
pulumi_akamai/gtm_property.py,sha256=VdNg82bDnV97zKKOtrlDJbRCLCZg22epEkxzA37Mf2k,58264
|
|
292
292
|
pulumi_akamai/gtm_resource.py,sha256=tZKHuo6LMqvw2Y-kWxof85UJhPs1Ff6Xkur8QFvu1N0,28928
|
|
293
|
-
pulumi_akamai/iam_api_client.py,sha256
|
|
293
|
+
pulumi_akamai/iam_api_client.py,sha256=-SQjCVePTHtLv8j62sAah13cAiC5VEfyfziYR3NxD5k,47340
|
|
294
294
|
pulumi_akamai/iam_blocked_user_properties.py,sha256=qwkOxr3-2LGXijCPQP5Bbzo4-l-JIEx8QKwE0RWb5dA,11602
|
|
295
295
|
pulumi_akamai/iam_cidr_block.py,sha256=o2SmJ3h_dJTruoQDpr6f2gPrybv0t7gyv0gwfA9kbrg,17699
|
|
296
296
|
pulumi_akamai/iam_group.py,sha256=04_yM4UT6rQxYT37kJBDy0Ja_GImq2vID-Pzi0oSnvQ,9206
|
|
297
297
|
pulumi_akamai/iam_ip_allowlist.py,sha256=Pgro9-U1_vfdWm7vAeo2URpwptfo4NFQFSv3pwRn0aY,6045
|
|
298
298
|
pulumi_akamai/iam_role.py,sha256=M5dxpNlra8din2QuksRuE5m1XsW0vaYisKN9sPsSN94,12715
|
|
299
299
|
pulumi_akamai/iam_user.py,sha256=wOkTXqa5F1a8wZQpsPDIG3LwwLQnEUnOg2oYcXSlvyU,58007
|
|
300
|
-
pulumi_akamai/imaging_policy_image.py,sha256=
|
|
300
|
+
pulumi_akamai/imaging_policy_image.py,sha256=sqobvgBmUNa7xbAUMARnn5Io0VnTXkIoQRQwVu2aRcY,18642
|
|
301
301
|
pulumi_akamai/imaging_policy_set.py,sha256=Qz93fITORv6r7PO4zS7JNZlG5l8rgmn-7jmjpNDlkV8,12353
|
|
302
|
-
pulumi_akamai/imaging_policy_video.py,sha256=
|
|
303
|
-
pulumi_akamai/network_list.py,sha256=
|
|
302
|
+
pulumi_akamai/imaging_policy_video.py,sha256=ekXC2m_Qu3lhhdfwhNzkfRJ-0xYFcg9VneExaVgRi4M,18642
|
|
303
|
+
pulumi_akamai/network_list.py,sha256=vm2DrnzpateXGeGC9PHZ3jhLcbkLGYZy0qF-J1nGVD0,21890
|
|
304
304
|
pulumi_akamai/network_list_activations.py,sha256=BAWx_dM4uZrO-nsxUsYrS-31GqFZWRoWmZFxiN0cHqo,17416
|
|
305
305
|
pulumi_akamai/network_list_description.py,sha256=DTr9mSo__MkiCrxniju9t28hU27sZHfJi6D_o--N_HI,8681
|
|
306
306
|
pulumi_akamai/network_list_subscription.py,sha256=8X_FTBjmrgF7tbVjTpl-6dpXBmrxhAU7Wk737-n08rE,7816
|
|
307
307
|
pulumi_akamai/outputs.py,sha256=0B5WDuYEXUq8RjJS0d1TX1gdviSiV-PSeau320abToI,1291589
|
|
308
|
-
pulumi_akamai/property.py,sha256=
|
|
308
|
+
pulumi_akamai/property.py,sha256=hP0hcOJKoMpZaHHsGBwsbv2Evm0N2DsfNwJ1z47StUY,34586
|
|
309
309
|
pulumi_akamai/property_activation.py,sha256=BH1KpM3Vz2zErVf0UzyoBC-quvRw2xh2GKvOvGFHqts,31210
|
|
310
|
-
pulumi_akamai/property_bootstrap.py,sha256=
|
|
311
|
-
pulumi_akamai/property_hostname_bucket.py,sha256=
|
|
310
|
+
pulumi_akamai/property_bootstrap.py,sha256=Q9bqhYGn96sRll-Nx2C6l5lvQXy8DGGu-Qja_rjMKFY,16736
|
|
311
|
+
pulumi_akamai/property_hostname_bucket.py,sha256=llLYDmhEJmTYBP-Jd3siJNgHHJNYInjQ1gvWYMt4dQU,31273
|
|
312
312
|
pulumi_akamai/property_include.py,sha256=23-MxQmrrfYw3c-DxXVTammrrEJNFSJKKjBs4JI_Wk4,25990
|
|
313
313
|
pulumi_akamai/property_include_activation.py,sha256=2qw66YjgXXRrFc8yBh_ShYv5mKvVl5n2e5LRLq6MaPA,29495
|
|
314
314
|
pulumi_akamai/provider.py,sha256=BjZvGH07MSFd7BvO_02llgZotn4lIzfC549Tj_pRvHk,14237
|
|
315
|
-
pulumi_akamai/pulumi-plugin.json,sha256=
|
|
315
|
+
pulumi_akamai/pulumi-plugin.json,sha256=WK-YGxZVgBcqXTay8xOa31bQRkDwpVZo1J4ukAq-N6A,82
|
|
316
316
|
pulumi_akamai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
317
|
pulumi_akamai/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
318
318
|
pulumi_akamai/config/__init__.pyi,sha256=SJqpKnoj7URVVed49JnP6ImsPa-Vn4LfJD7eyyOgoM8,1245
|
|
319
319
|
pulumi_akamai/config/outputs.py,sha256=q965HuUGKV7vEQXwheFZVctS1ZPPrJuinQbkO1alE-k,2239
|
|
320
320
|
pulumi_akamai/config/vars.py,sha256=J4QRr0ZpCCwsJlU98QNpqsWoNzUVTr6-CZ2WgrvbKr0,2289
|
|
321
|
-
pulumi_akamai-9.1.
|
|
322
|
-
pulumi_akamai-9.1.
|
|
323
|
-
pulumi_akamai-9.1.
|
|
324
|
-
pulumi_akamai-9.1.
|
|
321
|
+
pulumi_akamai-9.1.0a1757049021.dist-info/METADATA,sha256=VzYLdRfUj3Lkm8TtOfap3YlcaLRsJYFPN8aCu8MYxxQ,2640
|
|
322
|
+
pulumi_akamai-9.1.0a1757049021.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
323
|
+
pulumi_akamai-9.1.0a1757049021.dist-info/top_level.txt,sha256=EvyTMGuBJb5olnB8z5jYPg5Q7wUuF44xkc_CkZQqJ8I,14
|
|
324
|
+
pulumi_akamai-9.1.0a1757049021.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_akamai-9.1.0a1756357789.dist-info → pulumi_akamai-9.1.0a1757049021.dist-info}/top_level.txt
RENAMED
|
File without changes
|