pulumi-oci 3.4.0a1755585924__py3-none-any.whl → 3.4.0a1755922408__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.
Files changed (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,10 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'ApiLock',
19
20
  'ApiValidationResult',
21
+ 'CertificateLock',
22
+ 'DeploymentLock',
20
23
  'DeploymentSpecification',
21
24
  'DeploymentSpecificationLoggingPolicies',
22
25
  'DeploymentSpecificationLoggingPoliciesAccessLog',
@@ -116,13 +119,16 @@ __all__ = [
116
119
  'DeploymentSpecificationRouteResponsePoliciesResponseCacheStore',
117
120
  'GatewayCaBundle',
118
121
  'GatewayIpAddress',
122
+ 'GatewayLock',
119
123
  'GatewayResponseCacheDetails',
120
124
  'GatewayResponseCacheDetailsServer',
121
125
  'SubscriberClient',
126
+ 'SubscriberLock',
122
127
  'UsagePlanEntitlement',
123
128
  'UsagePlanEntitlementQuota',
124
129
  'UsagePlanEntitlementRateLimit',
125
130
  'UsagePlanEntitlementTarget',
131
+ 'UsagePlanLock',
126
132
  'GetApiDeploymentSpecificationLoggingPolicyResult',
127
133
  'GetApiDeploymentSpecificationLoggingPolicyAccessLogResult',
128
134
  'GetApiDeploymentSpecificationLoggingPolicyExecutionLogResult',
@@ -219,17 +225,22 @@ __all__ = [
219
225
  'GetApiDeploymentSpecificationRouteResponsePolicyHeaderTransformationSetHeaderResult',
220
226
  'GetApiDeploymentSpecificationRouteResponsePolicyHeaderTransformationSetHeaderItemResult',
221
227
  'GetApiDeploymentSpecificationRouteResponsePolicyResponseCacheStoreResult',
228
+ 'GetApiLockResult',
222
229
  'GetApiValidationResultResult',
223
230
  'GetApiValidationValidationResult',
224
231
  'GetApiValidationValidationDetailResult',
225
232
  'GetApiValidationValidationDetailSrcResult',
226
233
  'GetApisApiCollectionResult',
227
234
  'GetApisApiCollectionItemResult',
235
+ 'GetApisApiCollectionItemLockResult',
228
236
  'GetApisApiCollectionItemValidationResultResult',
229
237
  'GetApisFilterResult',
238
+ 'GetCertificateLockResult',
230
239
  'GetCertificatesCertificateCollectionResult',
231
240
  'GetCertificatesCertificateCollectionItemResult',
241
+ 'GetCertificatesCertificateCollectionItemLockResult',
232
242
  'GetCertificatesFilterResult',
243
+ 'GetDeploymentLockResult',
233
244
  'GetDeploymentSpecificationResult',
234
245
  'GetDeploymentSpecificationLoggingPolicyResult',
235
246
  'GetDeploymentSpecificationLoggingPolicyAccessLogResult',
@@ -328,6 +339,7 @@ __all__ = [
328
339
  'GetDeploymentSpecificationRouteResponsePolicyHeaderTransformationSetHeaderItemResult',
329
340
  'GetDeploymentSpecificationRouteResponsePolicyResponseCacheStoreResult',
330
341
  'GetDeploymentsDeploymentCollectionResult',
342
+ 'GetDeploymentsDeploymentCollectionLockResult',
331
343
  'GetDeploymentsDeploymentCollectionSpecificationResult',
332
344
  'GetDeploymentsDeploymentCollectionSpecificationLoggingPolicyResult',
333
345
  'GetDeploymentsDeploymentCollectionSpecificationLoggingPolicyAccessLogResult',
@@ -428,23 +440,28 @@ __all__ = [
428
440
  'GetDeploymentsFilterResult',
429
441
  'GetGatewayCaBundleResult',
430
442
  'GetGatewayIpAddressResult',
443
+ 'GetGatewayLockResult',
431
444
  'GetGatewayResponseCacheDetailResult',
432
445
  'GetGatewayResponseCacheDetailServerResult',
433
446
  'GetGatewaysFilterResult',
434
447
  'GetGatewaysGatewayCollectionResult',
435
448
  'GetGatewaysGatewayCollectionCaBundleResult',
436
449
  'GetGatewaysGatewayCollectionIpAddressResult',
450
+ 'GetGatewaysGatewayCollectionLockResult',
437
451
  'GetGatewaysGatewayCollectionResponseCacheDetailResult',
438
452
  'GetGatewaysGatewayCollectionResponseCacheDetailServerResult',
439
453
  'GetSubscriberClientResult',
454
+ 'GetSubscriberLockResult',
440
455
  'GetSubscribersFilterResult',
441
456
  'GetSubscribersSubscriberCollectionResult',
442
457
  'GetSubscribersSubscriberCollectionItemResult',
443
458
  'GetSubscribersSubscriberCollectionItemClientResult',
459
+ 'GetSubscribersSubscriberCollectionItemLockResult',
444
460
  'GetUsagePlanEntitlementResult',
445
461
  'GetUsagePlanEntitlementQuotaResult',
446
462
  'GetUsagePlanEntitlementRateLimitResult',
447
463
  'GetUsagePlanEntitlementTargetResult',
464
+ 'GetUsagePlanLockResult',
448
465
  'GetUsagePlansFilterResult',
449
466
  'GetUsagePlansUsagePlanCollectionResult',
450
467
  'GetUsagePlansUsagePlanCollectionItemResult',
@@ -452,8 +469,90 @@ __all__ = [
452
469
  'GetUsagePlansUsagePlanCollectionItemEntitlementQuotaResult',
453
470
  'GetUsagePlansUsagePlanCollectionItemEntitlementRateLimitResult',
454
471
  'GetUsagePlansUsagePlanCollectionItemEntitlementTargetResult',
472
+ 'GetUsagePlansUsagePlanCollectionItemLockResult',
455
473
  ]
456
474
 
475
+ @pulumi.output_type
476
+ class ApiLock(dict):
477
+ @staticmethod
478
+ def __key_warning(key: str):
479
+ suggest = None
480
+ if key == "relatedResourceId":
481
+ suggest = "related_resource_id"
482
+ elif key == "timeCreated":
483
+ suggest = "time_created"
484
+
485
+ if suggest:
486
+ pulumi.log.warn(f"Key '{key}' not found in ApiLock. Access the value via the '{suggest}' property getter instead.")
487
+
488
+ def __getitem__(self, key: str) -> Any:
489
+ ApiLock.__key_warning(key)
490
+ return super().__getitem__(key)
491
+
492
+ def get(self, key: str, default = None) -> Any:
493
+ ApiLock.__key_warning(key)
494
+ return super().get(key, default)
495
+
496
+ def __init__(__self__, *,
497
+ type: _builtins.str,
498
+ message: Optional[_builtins.str] = None,
499
+ related_resource_id: Optional[_builtins.str] = None,
500
+ time_created: Optional[_builtins.str] = None):
501
+ """
502
+ :param _builtins.str type: Type of the lock.
503
+
504
+
505
+ ** IMPORTANT **
506
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
507
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
508
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
509
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
510
+ """
511
+ pulumi.set(__self__, "type", type)
512
+ if message is not None:
513
+ pulumi.set(__self__, "message", message)
514
+ if related_resource_id is not None:
515
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
516
+ if time_created is not None:
517
+ pulumi.set(__self__, "time_created", time_created)
518
+
519
+ @_builtins.property
520
+ @pulumi.getter
521
+ def type(self) -> _builtins.str:
522
+ """
523
+ Type of the lock.
524
+
525
+
526
+ ** IMPORTANT **
527
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
528
+ """
529
+ return pulumi.get(self, "type")
530
+
531
+ @_builtins.property
532
+ @pulumi.getter
533
+ def message(self) -> Optional[_builtins.str]:
534
+ """
535
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
536
+ """
537
+ return pulumi.get(self, "message")
538
+
539
+ @_builtins.property
540
+ @pulumi.getter(name="relatedResourceId")
541
+ def related_resource_id(self) -> Optional[_builtins.str]:
542
+ """
543
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
544
+ """
545
+ return pulumi.get(self, "related_resource_id")
546
+
547
+ @_builtins.property
548
+ @pulumi.getter(name="timeCreated")
549
+ def time_created(self) -> Optional[_builtins.str]:
550
+ """
551
+ The time this resource was created. An RFC3339 formatted datetime string.
552
+ """
553
+ return pulumi.get(self, "time_created")
554
+
555
+
457
556
  @pulumi.output_type
458
557
  class ApiValidationResult(dict):
459
558
  def __init__(__self__, *,
@@ -485,6 +584,152 @@ class ApiValidationResult(dict):
485
584
  return pulumi.get(self, "result")
486
585
 
487
586
 
587
+ @pulumi.output_type
588
+ class CertificateLock(dict):
589
+ @staticmethod
590
+ def __key_warning(key: str):
591
+ suggest = None
592
+ if key == "relatedResourceId":
593
+ suggest = "related_resource_id"
594
+ elif key == "timeCreated":
595
+ suggest = "time_created"
596
+
597
+ if suggest:
598
+ pulumi.log.warn(f"Key '{key}' not found in CertificateLock. Access the value via the '{suggest}' property getter instead.")
599
+
600
+ def __getitem__(self, key: str) -> Any:
601
+ CertificateLock.__key_warning(key)
602
+ return super().__getitem__(key)
603
+
604
+ def get(self, key: str, default = None) -> Any:
605
+ CertificateLock.__key_warning(key)
606
+ return super().get(key, default)
607
+
608
+ def __init__(__self__, *,
609
+ type: _builtins.str,
610
+ message: Optional[_builtins.str] = None,
611
+ related_resource_id: Optional[_builtins.str] = None,
612
+ time_created: Optional[_builtins.str] = None):
613
+ """
614
+ :param _builtins.str type: Type of the lock.
615
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
616
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
617
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
618
+ """
619
+ pulumi.set(__self__, "type", type)
620
+ if message is not None:
621
+ pulumi.set(__self__, "message", message)
622
+ if related_resource_id is not None:
623
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
624
+ if time_created is not None:
625
+ pulumi.set(__self__, "time_created", time_created)
626
+
627
+ @_builtins.property
628
+ @pulumi.getter
629
+ def type(self) -> _builtins.str:
630
+ """
631
+ Type of the lock.
632
+ """
633
+ return pulumi.get(self, "type")
634
+
635
+ @_builtins.property
636
+ @pulumi.getter
637
+ def message(self) -> Optional[_builtins.str]:
638
+ """
639
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
640
+ """
641
+ return pulumi.get(self, "message")
642
+
643
+ @_builtins.property
644
+ @pulumi.getter(name="relatedResourceId")
645
+ def related_resource_id(self) -> Optional[_builtins.str]:
646
+ """
647
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
648
+ """
649
+ return pulumi.get(self, "related_resource_id")
650
+
651
+ @_builtins.property
652
+ @pulumi.getter(name="timeCreated")
653
+ def time_created(self) -> Optional[_builtins.str]:
654
+ """
655
+ The time this resource was created. An RFC3339 formatted datetime string.
656
+ """
657
+ return pulumi.get(self, "time_created")
658
+
659
+
660
+ @pulumi.output_type
661
+ class DeploymentLock(dict):
662
+ @staticmethod
663
+ def __key_warning(key: str):
664
+ suggest = None
665
+ if key == "relatedResourceId":
666
+ suggest = "related_resource_id"
667
+ elif key == "timeCreated":
668
+ suggest = "time_created"
669
+
670
+ if suggest:
671
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentLock. Access the value via the '{suggest}' property getter instead.")
672
+
673
+ def __getitem__(self, key: str) -> Any:
674
+ DeploymentLock.__key_warning(key)
675
+ return super().__getitem__(key)
676
+
677
+ def get(self, key: str, default = None) -> Any:
678
+ DeploymentLock.__key_warning(key)
679
+ return super().get(key, default)
680
+
681
+ def __init__(__self__, *,
682
+ type: _builtins.str,
683
+ message: Optional[_builtins.str] = None,
684
+ related_resource_id: Optional[_builtins.str] = None,
685
+ time_created: Optional[_builtins.str] = None):
686
+ """
687
+ :param _builtins.str type: Type of the lock.
688
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
689
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
690
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
691
+ """
692
+ pulumi.set(__self__, "type", type)
693
+ if message is not None:
694
+ pulumi.set(__self__, "message", message)
695
+ if related_resource_id is not None:
696
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
697
+ if time_created is not None:
698
+ pulumi.set(__self__, "time_created", time_created)
699
+
700
+ @_builtins.property
701
+ @pulumi.getter
702
+ def type(self) -> _builtins.str:
703
+ """
704
+ Type of the lock.
705
+ """
706
+ return pulumi.get(self, "type")
707
+
708
+ @_builtins.property
709
+ @pulumi.getter
710
+ def message(self) -> Optional[_builtins.str]:
711
+ """
712
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
713
+ """
714
+ return pulumi.get(self, "message")
715
+
716
+ @_builtins.property
717
+ @pulumi.getter(name="relatedResourceId")
718
+ def related_resource_id(self) -> Optional[_builtins.str]:
719
+ """
720
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
721
+ """
722
+ return pulumi.get(self, "related_resource_id")
723
+
724
+ @_builtins.property
725
+ @pulumi.getter(name="timeCreated")
726
+ def time_created(self) -> Optional[_builtins.str]:
727
+ """
728
+ The time this resource was created. An RFC3339 formatted datetime string.
729
+ """
730
+ return pulumi.get(self, "time_created")
731
+
732
+
488
733
  @pulumi.output_type
489
734
  class DeploymentSpecification(dict):
490
735
  @staticmethod
@@ -4522,7 +4767,7 @@ class DeploymentSpecificationRouteBackend(dict):
4522
4767
  url: Optional[_builtins.str] = None):
4523
4768
  """
4524
4769
  :param _builtins.str type: (Updatable) Type of the API backend.
4525
- :param Sequence[_builtins.str] allowed_post_logout_uris: (Updatable)
4770
+ :param Sequence[_builtins.str] allowed_post_logout_uris: (Updatable) A list of allowed post-logout URLs to which a request can be redirected after revoke access
4526
4771
  :param _builtins.str body: (Updatable) The body of the stock response from the mock backend.
4527
4772
  :param _builtins.float connect_timeout_in_seconds: (Updatable) Defines a timeout for establishing a connection with a proxied server.
4528
4773
  :param _builtins.str function_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
@@ -4534,7 +4779,7 @@ class DeploymentSpecificationRouteBackend(dict):
4534
4779
  :param 'DeploymentSpecificationRouteBackendSelectionSourceArgs' selection_source: (Updatable) Information around selector used for branching among routes/ authentication servers while dynamic routing/ authentication.
4535
4780
  :param _builtins.float send_timeout_in_seconds: (Updatable) Defines a timeout for transmitting a request to the proxied server.
4536
4781
  :param _builtins.int status: (Updatable) The status code of the stock response from the mock backend.
4537
- :param _builtins.str url: (Updatable)
4782
+ :param _builtins.str url: (Updatable) The url of the HTTP Backend
4538
4783
  """
4539
4784
  pulumi.set(__self__, "type", type)
4540
4785
  if allowed_post_logout_uris is not None:
@@ -4576,7 +4821,7 @@ class DeploymentSpecificationRouteBackend(dict):
4576
4821
  @pulumi.getter(name="allowedPostLogoutUris")
4577
4822
  def allowed_post_logout_uris(self) -> Optional[Sequence[_builtins.str]]:
4578
4823
  """
4579
- (Updatable)
4824
+ (Updatable) A list of allowed post-logout URLs to which a request can be redirected after revoke access
4580
4825
  """
4581
4826
  return pulumi.get(self, "allowed_post_logout_uris")
4582
4827
 
@@ -4672,7 +4917,7 @@ class DeploymentSpecificationRouteBackend(dict):
4672
4917
  @pulumi.getter
4673
4918
  def url(self) -> Optional[_builtins.str]:
4674
4919
  """
4675
- (Updatable)
4920
+ (Updatable) The url of the HTTP Backend
4676
4921
  """
4677
4922
  return pulumi.get(self, "url")
4678
4923
 
@@ -4782,10 +5027,12 @@ class DeploymentSpecificationRouteBackendRoutingBackendBackend(dict):
4782
5027
  :param _builtins.str body: The body of the stock response from the mock backend.
4783
5028
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
4784
5029
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
5030
+ :param Sequence['DeploymentSpecificationRouteBackendRoutingBackendBackendHeaderArgs'] headers: The List of Headers
4785
5031
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
4786
5032
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
4787
5033
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
4788
5034
  :param _builtins.int status: The status code of the stock response from the mock backend.
5035
+ :param _builtins.str url: The url of the HTTP Backend
4789
5036
  """
4790
5037
  pulumi.set(__self__, "type", type)
4791
5038
  if body is not None:
@@ -4842,6 +5089,9 @@ class DeploymentSpecificationRouteBackendRoutingBackendBackend(dict):
4842
5089
  @_builtins.property
4843
5090
  @pulumi.getter
4844
5091
  def headers(self) -> Optional[Sequence['outputs.DeploymentSpecificationRouteBackendRoutingBackendBackendHeader']]:
5092
+ """
5093
+ The List of Headers
5094
+ """
4845
5095
  return pulumi.get(self, "headers")
4846
5096
 
4847
5097
  @_builtins.property
@@ -4879,6 +5129,9 @@ class DeploymentSpecificationRouteBackendRoutingBackendBackend(dict):
4879
5129
  @_builtins.property
4880
5130
  @pulumi.getter
4881
5131
  def url(self) -> Optional[_builtins.str]:
5132
+ """
5133
+ The url of the HTTP Backend
5134
+ """
4882
5135
  return pulumi.get(self, "url")
4883
5136
 
4884
5137
 
@@ -5865,7 +6118,7 @@ class DeploymentSpecificationRouteRequestPoliciesHeaderValidations(dict):
5865
6118
  headers: Optional[Sequence['outputs.DeploymentSpecificationRouteRequestPoliciesHeaderValidationsHeader']] = None,
5866
6119
  validation_mode: Optional[_builtins.str] = None):
5867
6120
  """
5868
- :param Sequence['DeploymentSpecificationRouteRequestPoliciesHeaderValidationsHeaderArgs'] headers: (Updatable)
6121
+ :param Sequence['DeploymentSpecificationRouteRequestPoliciesHeaderValidationsHeaderArgs'] headers: (Updatable) The List of Headers
5869
6122
  :param _builtins.str validation_mode: (Updatable) Validation behavior mode.
5870
6123
 
5871
6124
  In `ENFORCING` mode, upon a validation failure, the request will be rejected with a 4xx response and not sent to the backend.
@@ -5883,7 +6136,7 @@ class DeploymentSpecificationRouteRequestPoliciesHeaderValidations(dict):
5883
6136
  @pulumi.getter
5884
6137
  def headers(self) -> Optional[Sequence['outputs.DeploymentSpecificationRouteRequestPoliciesHeaderValidationsHeader']]:
5885
6138
  """
5886
- (Updatable)
6139
+ (Updatable) The List of Headers
5887
6140
  """
5888
6141
  return pulumi.get(self, "headers")
5889
6142
 
@@ -6206,7 +6459,7 @@ class DeploymentSpecificationRouteRequestPoliciesQueryParameterValidations(dict)
6206
6459
  parameters: Optional[Sequence['outputs.DeploymentSpecificationRouteRequestPoliciesQueryParameterValidationsParameter']] = None,
6207
6460
  validation_mode: Optional[_builtins.str] = None):
6208
6461
  """
6209
- :param Sequence['DeploymentSpecificationRouteRequestPoliciesQueryParameterValidationsParameterArgs'] parameters: (Updatable)
6462
+ :param Sequence['DeploymentSpecificationRouteRequestPoliciesQueryParameterValidationsParameterArgs'] parameters: (Updatable) The List of Query Parameters
6210
6463
  :param _builtins.str validation_mode: (Updatable) Validation behavior mode.
6211
6464
 
6212
6465
  In `ENFORCING` mode, upon a validation failure, the request will be rejected with a 4xx response and not sent to the backend.
@@ -6224,7 +6477,7 @@ class DeploymentSpecificationRouteRequestPoliciesQueryParameterValidations(dict)
6224
6477
  @pulumi.getter
6225
6478
  def parameters(self) -> Optional[Sequence['outputs.DeploymentSpecificationRouteRequestPoliciesQueryParameterValidationsParameter']]:
6226
6479
  """
6227
- (Updatable)
6480
+ (Updatable) The List of Query Parameters
6228
6481
  """
6229
6482
  return pulumi.get(self, "parameters")
6230
6483
 
@@ -6808,6 +7061,79 @@ class GatewayIpAddress(dict):
6808
7061
  return pulumi.get(self, "ip_address")
6809
7062
 
6810
7063
 
7064
+ @pulumi.output_type
7065
+ class GatewayLock(dict):
7066
+ @staticmethod
7067
+ def __key_warning(key: str):
7068
+ suggest = None
7069
+ if key == "relatedResourceId":
7070
+ suggest = "related_resource_id"
7071
+ elif key == "timeCreated":
7072
+ suggest = "time_created"
7073
+
7074
+ if suggest:
7075
+ pulumi.log.warn(f"Key '{key}' not found in GatewayLock. Access the value via the '{suggest}' property getter instead.")
7076
+
7077
+ def __getitem__(self, key: str) -> Any:
7078
+ GatewayLock.__key_warning(key)
7079
+ return super().__getitem__(key)
7080
+
7081
+ def get(self, key: str, default = None) -> Any:
7082
+ GatewayLock.__key_warning(key)
7083
+ return super().get(key, default)
7084
+
7085
+ def __init__(__self__, *,
7086
+ type: _builtins.str,
7087
+ message: Optional[_builtins.str] = None,
7088
+ related_resource_id: Optional[_builtins.str] = None,
7089
+ time_created: Optional[_builtins.str] = None):
7090
+ """
7091
+ :param _builtins.str type: Type of the lock.
7092
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7093
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
7094
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
7095
+ """
7096
+ pulumi.set(__self__, "type", type)
7097
+ if message is not None:
7098
+ pulumi.set(__self__, "message", message)
7099
+ if related_resource_id is not None:
7100
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
7101
+ if time_created is not None:
7102
+ pulumi.set(__self__, "time_created", time_created)
7103
+
7104
+ @_builtins.property
7105
+ @pulumi.getter
7106
+ def type(self) -> _builtins.str:
7107
+ """
7108
+ Type of the lock.
7109
+ """
7110
+ return pulumi.get(self, "type")
7111
+
7112
+ @_builtins.property
7113
+ @pulumi.getter
7114
+ def message(self) -> Optional[_builtins.str]:
7115
+ """
7116
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7117
+ """
7118
+ return pulumi.get(self, "message")
7119
+
7120
+ @_builtins.property
7121
+ @pulumi.getter(name="relatedResourceId")
7122
+ def related_resource_id(self) -> Optional[_builtins.str]:
7123
+ """
7124
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
7125
+ """
7126
+ return pulumi.get(self, "related_resource_id")
7127
+
7128
+ @_builtins.property
7129
+ @pulumi.getter(name="timeCreated")
7130
+ def time_created(self) -> Optional[_builtins.str]:
7131
+ """
7132
+ The time this resource was created. An RFC3339 formatted datetime string.
7133
+ """
7134
+ return pulumi.get(self, "time_created")
7135
+
7136
+
6811
7137
  @pulumi.output_type
6812
7138
  class GatewayResponseCacheDetails(dict):
6813
7139
  @staticmethod
@@ -7011,6 +7337,79 @@ class SubscriberClient(dict):
7011
7337
  return pulumi.get(self, "token")
7012
7338
 
7013
7339
 
7340
+ @pulumi.output_type
7341
+ class SubscriberLock(dict):
7342
+ @staticmethod
7343
+ def __key_warning(key: str):
7344
+ suggest = None
7345
+ if key == "relatedResourceId":
7346
+ suggest = "related_resource_id"
7347
+ elif key == "timeCreated":
7348
+ suggest = "time_created"
7349
+
7350
+ if suggest:
7351
+ pulumi.log.warn(f"Key '{key}' not found in SubscriberLock. Access the value via the '{suggest}' property getter instead.")
7352
+
7353
+ def __getitem__(self, key: str) -> Any:
7354
+ SubscriberLock.__key_warning(key)
7355
+ return super().__getitem__(key)
7356
+
7357
+ def get(self, key: str, default = None) -> Any:
7358
+ SubscriberLock.__key_warning(key)
7359
+ return super().get(key, default)
7360
+
7361
+ def __init__(__self__, *,
7362
+ type: _builtins.str,
7363
+ message: Optional[_builtins.str] = None,
7364
+ related_resource_id: Optional[_builtins.str] = None,
7365
+ time_created: Optional[_builtins.str] = None):
7366
+ """
7367
+ :param _builtins.str type: Type of the lock.
7368
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7369
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
7370
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
7371
+ """
7372
+ pulumi.set(__self__, "type", type)
7373
+ if message is not None:
7374
+ pulumi.set(__self__, "message", message)
7375
+ if related_resource_id is not None:
7376
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
7377
+ if time_created is not None:
7378
+ pulumi.set(__self__, "time_created", time_created)
7379
+
7380
+ @_builtins.property
7381
+ @pulumi.getter
7382
+ def type(self) -> _builtins.str:
7383
+ """
7384
+ Type of the lock.
7385
+ """
7386
+ return pulumi.get(self, "type")
7387
+
7388
+ @_builtins.property
7389
+ @pulumi.getter
7390
+ def message(self) -> Optional[_builtins.str]:
7391
+ """
7392
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7393
+ """
7394
+ return pulumi.get(self, "message")
7395
+
7396
+ @_builtins.property
7397
+ @pulumi.getter(name="relatedResourceId")
7398
+ def related_resource_id(self) -> Optional[_builtins.str]:
7399
+ """
7400
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
7401
+ """
7402
+ return pulumi.get(self, "related_resource_id")
7403
+
7404
+ @_builtins.property
7405
+ @pulumi.getter(name="timeCreated")
7406
+ def time_created(self) -> Optional[_builtins.str]:
7407
+ """
7408
+ The time this resource was created. An RFC3339 formatted datetime string.
7409
+ """
7410
+ return pulumi.get(self, "time_created")
7411
+
7412
+
7014
7413
  @pulumi.output_type
7015
7414
  class UsagePlanEntitlement(dict):
7016
7415
  @staticmethod
@@ -7229,15 +7628,96 @@ class UsagePlanEntitlementTarget(dict):
7229
7628
 
7230
7629
 
7231
7630
  @pulumi.output_type
7232
- class GetApiDeploymentSpecificationLoggingPolicyResult(dict):
7631
+ class UsagePlanLock(dict):
7632
+ @staticmethod
7633
+ def __key_warning(key: str):
7634
+ suggest = None
7635
+ if key == "relatedResourceId":
7636
+ suggest = "related_resource_id"
7637
+ elif key == "timeCreated":
7638
+ suggest = "time_created"
7639
+
7640
+ if suggest:
7641
+ pulumi.log.warn(f"Key '{key}' not found in UsagePlanLock. Access the value via the '{suggest}' property getter instead.")
7642
+
7643
+ def __getitem__(self, key: str) -> Any:
7644
+ UsagePlanLock.__key_warning(key)
7645
+ return super().__getitem__(key)
7646
+
7647
+ def get(self, key: str, default = None) -> Any:
7648
+ UsagePlanLock.__key_warning(key)
7649
+ return super().get(key, default)
7650
+
7233
7651
  def __init__(__self__, *,
7234
- access_logs: Sequence['outputs.GetApiDeploymentSpecificationLoggingPolicyAccessLogResult'],
7235
- execution_logs: Sequence['outputs.GetApiDeploymentSpecificationLoggingPolicyExecutionLogResult']):
7652
+ type: _builtins.str,
7653
+ message: Optional[_builtins.str] = None,
7654
+ related_resource_id: Optional[_builtins.str] = None,
7655
+ time_created: Optional[_builtins.str] = None):
7236
7656
  """
7237
- :param Sequence['GetApiDeploymentSpecificationLoggingPolicyAccessLogArgs'] access_logs: Configures the logging policies for the access logs of an API Deployment.
7238
- :param Sequence['GetApiDeploymentSpecificationLoggingPolicyExecutionLogArgs'] execution_logs: Configures the logging policies for the execution logs of an API Deployment.
7657
+ :param _builtins.str type: Type of the lock.
7658
+
7659
+
7660
+ ** IMPORTANT **
7661
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
7662
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7663
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
7664
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
7239
7665
  """
7240
- pulumi.set(__self__, "access_logs", access_logs)
7666
+ pulumi.set(__self__, "type", type)
7667
+ if message is not None:
7668
+ pulumi.set(__self__, "message", message)
7669
+ if related_resource_id is not None:
7670
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
7671
+ if time_created is not None:
7672
+ pulumi.set(__self__, "time_created", time_created)
7673
+
7674
+ @_builtins.property
7675
+ @pulumi.getter
7676
+ def type(self) -> _builtins.str:
7677
+ """
7678
+ Type of the lock.
7679
+
7680
+
7681
+ ** IMPORTANT **
7682
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
7683
+ """
7684
+ return pulumi.get(self, "type")
7685
+
7686
+ @_builtins.property
7687
+ @pulumi.getter
7688
+ def message(self) -> Optional[_builtins.str]:
7689
+ """
7690
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7691
+ """
7692
+ return pulumi.get(self, "message")
7693
+
7694
+ @_builtins.property
7695
+ @pulumi.getter(name="relatedResourceId")
7696
+ def related_resource_id(self) -> Optional[_builtins.str]:
7697
+ """
7698
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
7699
+ """
7700
+ return pulumi.get(self, "related_resource_id")
7701
+
7702
+ @_builtins.property
7703
+ @pulumi.getter(name="timeCreated")
7704
+ def time_created(self) -> Optional[_builtins.str]:
7705
+ """
7706
+ The time this resource was created. An RFC3339 formatted datetime string.
7707
+ """
7708
+ return pulumi.get(self, "time_created")
7709
+
7710
+
7711
+ @pulumi.output_type
7712
+ class GetApiDeploymentSpecificationLoggingPolicyResult(dict):
7713
+ def __init__(__self__, *,
7714
+ access_logs: Sequence['outputs.GetApiDeploymentSpecificationLoggingPolicyAccessLogResult'],
7715
+ execution_logs: Sequence['outputs.GetApiDeploymentSpecificationLoggingPolicyExecutionLogResult']):
7716
+ """
7717
+ :param Sequence['GetApiDeploymentSpecificationLoggingPolicyAccessLogArgs'] access_logs: Configures the logging policies for the access logs of an API Deployment.
7718
+ :param Sequence['GetApiDeploymentSpecificationLoggingPolicyExecutionLogArgs'] execution_logs: Configures the logging policies for the execution logs of an API Deployment.
7719
+ """
7720
+ pulumi.set(__self__, "access_logs", access_logs)
7241
7721
  pulumi.set(__self__, "execution_logs", execution_logs)
7242
7722
 
7243
7723
  @_builtins.property
@@ -7402,6 +7882,7 @@ class GetApiDeploymentSpecificationRequestPolicyAuthenticationResult(dict):
7402
7882
  :param _builtins.bool is_anonymous_access_allowed: Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.
7403
7883
  :param Sequence[_builtins.str] issuers: A list of parties that could have issued the token.
7404
7884
  :param _builtins.float max_clock_skew_in_seconds: The maximum expected time difference between the system clocks of the token issuer and the API Gateway.
7885
+ :param Mapping[str, _builtins.str] parameters: The List of Query Parameters
7405
7886
  :param Sequence['GetApiDeploymentSpecificationRequestPolicyAuthenticationPublicKeyArgs'] public_keys: A set of Public Keys that will be used to verify the JWT signature.
7406
7887
  :param _builtins.str token_auth_scheme: The authentication scheme that is to be used when authenticating the token. This must to be provided if "tokenHeader" is specified.
7407
7888
  :param _builtins.str token_header: The name of the header containing the authentication token.
@@ -7478,6 +7959,9 @@ class GetApiDeploymentSpecificationRequestPolicyAuthenticationResult(dict):
7478
7959
  @_builtins.property
7479
7960
  @pulumi.getter
7480
7961
  def parameters(self) -> Mapping[str, _builtins.str]:
7962
+ """
7963
+ The List of Query Parameters
7964
+ """
7481
7965
  return pulumi.get(self, "parameters")
7482
7966
 
7483
7967
  @_builtins.property
@@ -8703,6 +9187,7 @@ class GetApiDeploymentSpecificationRequestPolicyDynamicAuthenticationAuthenticat
8703
9187
  :param _builtins.bool is_anonymous_access_allowed: Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.
8704
9188
  :param Sequence[_builtins.str] issuers: A list of parties that could have issued the token.
8705
9189
  :param _builtins.float max_clock_skew_in_seconds: The maximum expected time difference between the system clocks of the token issuer and the API Gateway.
9190
+ :param Mapping[str, _builtins.str] parameters: The List of Query Parameters
8706
9191
  :param Sequence['GetApiDeploymentSpecificationRequestPolicyDynamicAuthenticationAuthenticationServerAuthenticationServerDetailPublicKeyArgs'] public_keys: A set of Public Keys that will be used to verify the JWT signature.
8707
9192
  :param _builtins.str token_auth_scheme: The authentication scheme that is to be used when authenticating the token. This must to be provided if "tokenHeader" is specified.
8708
9193
  :param _builtins.str token_header: The name of the header containing the authentication token.
@@ -8779,6 +9264,9 @@ class GetApiDeploymentSpecificationRequestPolicyDynamicAuthenticationAuthenticat
8779
9264
  @_builtins.property
8780
9265
  @pulumi.getter
8781
9266
  def parameters(self) -> Mapping[str, _builtins.str]:
9267
+ """
9268
+ The List of Query Parameters
9269
+ """
8782
9270
  return pulumi.get(self, "parameters")
8783
9271
 
8784
9272
  @_builtins.property
@@ -10114,9 +10602,11 @@ class GetApiDeploymentSpecificationRouteBackendResult(dict):
10114
10602
  type: _builtins.str,
10115
10603
  url: _builtins.str):
10116
10604
  """
10605
+ :param Sequence[_builtins.str] allowed_post_logout_uris: A list of allowed post-logout URLs to which a request can be redirected after revoke access
10117
10606
  :param _builtins.str body: The body of the stock response from the mock backend.
10118
10607
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
10119
10608
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
10609
+ :param Sequence['GetApiDeploymentSpecificationRouteBackendHeaderArgs'] headers: The List of Headers
10120
10610
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
10121
10611
  :param _builtins.str post_logout_state: Defines a state that should be shared on redirecting to postLogout URL.
10122
10612
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
@@ -10125,6 +10615,7 @@ class GetApiDeploymentSpecificationRouteBackendResult(dict):
10125
10615
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
10126
10616
  :param _builtins.int status: The status code of the stock response from the mock backend.
10127
10617
  :param _builtins.str type: Type of the Response Cache Store Policy.
10618
+ :param _builtins.str url: The url of the HTTP Backend
10128
10619
  """
10129
10620
  pulumi.set(__self__, "allowed_post_logout_uris", allowed_post_logout_uris)
10130
10621
  pulumi.set(__self__, "body", body)
@@ -10144,6 +10635,9 @@ class GetApiDeploymentSpecificationRouteBackendResult(dict):
10144
10635
  @_builtins.property
10145
10636
  @pulumi.getter(name="allowedPostLogoutUris")
10146
10637
  def allowed_post_logout_uris(self) -> Sequence[_builtins.str]:
10638
+ """
10639
+ A list of allowed post-logout URLs to which a request can be redirected after revoke access
10640
+ """
10147
10641
  return pulumi.get(self, "allowed_post_logout_uris")
10148
10642
 
10149
10643
  @_builtins.property
@@ -10173,6 +10667,9 @@ class GetApiDeploymentSpecificationRouteBackendResult(dict):
10173
10667
  @_builtins.property
10174
10668
  @pulumi.getter
10175
10669
  def headers(self) -> Sequence['outputs.GetApiDeploymentSpecificationRouteBackendHeaderResult']:
10670
+ """
10671
+ The List of Headers
10672
+ """
10176
10673
  return pulumi.get(self, "headers")
10177
10674
 
10178
10675
  @_builtins.property
@@ -10242,6 +10739,9 @@ class GetApiDeploymentSpecificationRouteBackendResult(dict):
10242
10739
  @_builtins.property
10243
10740
  @pulumi.getter
10244
10741
  def url(self) -> _builtins.str:
10742
+ """
10743
+ The url of the HTTP Backend
10744
+ """
10245
10745
  return pulumi.get(self, "url")
10246
10746
 
10247
10747
 
@@ -10320,11 +10820,13 @@ class GetApiDeploymentSpecificationRouteBackendRoutingBackendBackendResult(dict)
10320
10820
  :param _builtins.str body: The body of the stock response from the mock backend.
10321
10821
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
10322
10822
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
10823
+ :param Sequence['GetApiDeploymentSpecificationRouteBackendRoutingBackendBackendHeaderArgs'] headers: The List of Headers
10323
10824
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
10324
10825
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
10325
10826
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
10326
10827
  :param _builtins.int status: The status code of the stock response from the mock backend.
10327
10828
  :param _builtins.str type: Type of the Response Cache Store Policy.
10829
+ :param _builtins.str url: The url of the HTTP Backend
10328
10830
  """
10329
10831
  pulumi.set(__self__, "body", body)
10330
10832
  pulumi.set(__self__, "connect_timeout_in_seconds", connect_timeout_in_seconds)
@@ -10364,6 +10866,9 @@ class GetApiDeploymentSpecificationRouteBackendRoutingBackendBackendResult(dict)
10364
10866
  @_builtins.property
10365
10867
  @pulumi.getter
10366
10868
  def headers(self) -> Sequence['outputs.GetApiDeploymentSpecificationRouteBackendRoutingBackendBackendHeaderResult']:
10869
+ """
10870
+ The List of Headers
10871
+ """
10367
10872
  return pulumi.get(self, "headers")
10368
10873
 
10369
10874
  @_builtins.property
@@ -10409,6 +10914,9 @@ class GetApiDeploymentSpecificationRouteBackendRoutingBackendBackendResult(dict)
10409
10914
  @_builtins.property
10410
10915
  @pulumi.getter
10411
10916
  def url(self) -> _builtins.str:
10917
+ """
10918
+ The url of the HTTP Backend
10919
+ """
10412
10920
  return pulumi.get(self, "url")
10413
10921
 
10414
10922
 
@@ -11072,6 +11580,7 @@ class GetApiDeploymentSpecificationRouteRequestPolicyHeaderValidationResult(dict
11072
11580
  headers: Sequence['outputs.GetApiDeploymentSpecificationRouteRequestPolicyHeaderValidationHeaderResult'],
11073
11581
  validation_mode: _builtins.str):
11074
11582
  """
11583
+ :param Sequence['GetApiDeploymentSpecificationRouteRequestPolicyHeaderValidationHeaderArgs'] headers: The List of Headers
11075
11584
  :param _builtins.str validation_mode: Validation behavior mode.
11076
11585
  """
11077
11586
  pulumi.set(__self__, "headers", headers)
@@ -11080,6 +11589,9 @@ class GetApiDeploymentSpecificationRouteRequestPolicyHeaderValidationResult(dict
11080
11589
  @_builtins.property
11081
11590
  @pulumi.getter
11082
11591
  def headers(self) -> Sequence['outputs.GetApiDeploymentSpecificationRouteRequestPolicyHeaderValidationHeaderResult']:
11592
+ """
11593
+ The List of Headers
11594
+ """
11083
11595
  return pulumi.get(self, "headers")
11084
11596
 
11085
11597
  @_builtins.property
@@ -11318,6 +11830,7 @@ class GetApiDeploymentSpecificationRouteRequestPolicyQueryParameterValidationRes
11318
11830
  parameters: Sequence['outputs.GetApiDeploymentSpecificationRouteRequestPolicyQueryParameterValidationParameterResult'],
11319
11831
  validation_mode: _builtins.str):
11320
11832
  """
11833
+ :param Sequence['GetApiDeploymentSpecificationRouteRequestPolicyQueryParameterValidationParameterArgs'] parameters: The List of Query Parameters
11321
11834
  :param _builtins.str validation_mode: Validation behavior mode.
11322
11835
  """
11323
11836
  pulumi.set(__self__, "parameters", parameters)
@@ -11326,6 +11839,9 @@ class GetApiDeploymentSpecificationRouteRequestPolicyQueryParameterValidationRes
11326
11839
  @_builtins.property
11327
11840
  @pulumi.getter
11328
11841
  def parameters(self) -> Sequence['outputs.GetApiDeploymentSpecificationRouteRequestPolicyQueryParameterValidationParameterResult']:
11842
+ """
11843
+ The List of Query Parameters
11844
+ """
11329
11845
  return pulumi.get(self, "parameters")
11330
11846
 
11331
11847
  @_builtins.property
@@ -11667,6 +12183,57 @@ class GetApiDeploymentSpecificationRouteResponsePolicyResponseCacheStoreResult(d
11667
12183
  return pulumi.get(self, "type")
11668
12184
 
11669
12185
 
12186
+ @pulumi.output_type
12187
+ class GetApiLockResult(dict):
12188
+ def __init__(__self__, *,
12189
+ message: _builtins.str,
12190
+ related_resource_id: _builtins.str,
12191
+ time_created: _builtins.str,
12192
+ type: _builtins.str):
12193
+ """
12194
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12195
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12196
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
12197
+ :param _builtins.str type: Type of the lock.
12198
+ """
12199
+ pulumi.set(__self__, "message", message)
12200
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
12201
+ pulumi.set(__self__, "time_created", time_created)
12202
+ pulumi.set(__self__, "type", type)
12203
+
12204
+ @_builtins.property
12205
+ @pulumi.getter
12206
+ def message(self) -> _builtins.str:
12207
+ """
12208
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12209
+ """
12210
+ return pulumi.get(self, "message")
12211
+
12212
+ @_builtins.property
12213
+ @pulumi.getter(name="relatedResourceId")
12214
+ def related_resource_id(self) -> _builtins.str:
12215
+ """
12216
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12217
+ """
12218
+ return pulumi.get(self, "related_resource_id")
12219
+
12220
+ @_builtins.property
12221
+ @pulumi.getter(name="timeCreated")
12222
+ def time_created(self) -> _builtins.str:
12223
+ """
12224
+ The time this resource was created. An RFC3339 formatted datetime string.
12225
+ """
12226
+ return pulumi.get(self, "time_created")
12227
+
12228
+ @_builtins.property
12229
+ @pulumi.getter
12230
+ def type(self) -> _builtins.str:
12231
+ """
12232
+ Type of the lock.
12233
+ """
12234
+ return pulumi.get(self, "type")
12235
+
12236
+
11670
12237
  @pulumi.output_type
11671
12238
  class GetApiValidationResultResult(dict):
11672
12239
  def __init__(__self__, *,
@@ -11809,9 +12376,12 @@ class GetApisApiCollectionItemResult(dict):
11809
12376
  display_name: _builtins.str,
11810
12377
  freeform_tags: Mapping[str, _builtins.str],
11811
12378
  id: _builtins.str,
12379
+ is_lock_override: _builtins.bool,
11812
12380
  lifecycle_details: _builtins.str,
12381
+ locks: Sequence['outputs.GetApisApiCollectionItemLockResult'],
11813
12382
  specification_type: _builtins.str,
11814
12383
  state: _builtins.str,
12384
+ system_tags: Mapping[str, _builtins.str],
11815
12385
  time_created: _builtins.str,
11816
12386
  time_updated: _builtins.str,
11817
12387
  validation_results: Sequence['outputs.GetApisApiCollectionItemValidationResultResult']):
@@ -11829,8 +12399,10 @@ class GetApisApiCollectionItemResult(dict):
11829
12399
  * 'Error' the document has been validated and contains errors
11830
12400
  * 'Failed' the document validation failed
11831
12401
  * 'Canceled' the document validation was canceled
12402
+ :param Sequence['GetApisApiCollectionItemLockArgs'] locks: Locks associated with this resource.
11832
12403
  :param _builtins.str specification_type: Type of API Specification file.
11833
12404
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `ACTIVE`
12405
+ :param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
11834
12406
  :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
11835
12407
  :param _builtins.str time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
11836
12408
  :param Sequence['GetApisApiCollectionItemValidationResultArgs'] validation_results: Status of each feature available from the API.
@@ -11841,9 +12413,12 @@ class GetApisApiCollectionItemResult(dict):
11841
12413
  pulumi.set(__self__, "display_name", display_name)
11842
12414
  pulumi.set(__self__, "freeform_tags", freeform_tags)
11843
12415
  pulumi.set(__self__, "id", id)
12416
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
11844
12417
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
12418
+ pulumi.set(__self__, "locks", locks)
11845
12419
  pulumi.set(__self__, "specification_type", specification_type)
11846
12420
  pulumi.set(__self__, "state", state)
12421
+ pulumi.set(__self__, "system_tags", system_tags)
11847
12422
  pulumi.set(__self__, "time_created", time_created)
11848
12423
  pulumi.set(__self__, "time_updated", time_updated)
11849
12424
  pulumi.set(__self__, "validation_results", validation_results)
@@ -11893,6 +12468,11 @@ class GetApisApiCollectionItemResult(dict):
11893
12468
  """
11894
12469
  return pulumi.get(self, "id")
11895
12470
 
12471
+ @_builtins.property
12472
+ @pulumi.getter(name="isLockOverride")
12473
+ def is_lock_override(self) -> _builtins.bool:
12474
+ return pulumi.get(self, "is_lock_override")
12475
+
11896
12476
  @_builtins.property
11897
12477
  @pulumi.getter(name="lifecycleDetails")
11898
12478
  def lifecycle_details(self) -> _builtins.str:
@@ -11908,6 +12488,14 @@ class GetApisApiCollectionItemResult(dict):
11908
12488
  """
11909
12489
  return pulumi.get(self, "lifecycle_details")
11910
12490
 
12491
+ @_builtins.property
12492
+ @pulumi.getter
12493
+ def locks(self) -> Sequence['outputs.GetApisApiCollectionItemLockResult']:
12494
+ """
12495
+ Locks associated with this resource.
12496
+ """
12497
+ return pulumi.get(self, "locks")
12498
+
11911
12499
  @_builtins.property
11912
12500
  @pulumi.getter(name="specificationType")
11913
12501
  def specification_type(self) -> _builtins.str:
@@ -11924,6 +12512,14 @@ class GetApisApiCollectionItemResult(dict):
11924
12512
  """
11925
12513
  return pulumi.get(self, "state")
11926
12514
 
12515
+ @_builtins.property
12516
+ @pulumi.getter(name="systemTags")
12517
+ def system_tags(self) -> Mapping[str, _builtins.str]:
12518
+ """
12519
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
12520
+ """
12521
+ return pulumi.get(self, "system_tags")
12522
+
11927
12523
  @_builtins.property
11928
12524
  @pulumi.getter(name="timeCreated")
11929
12525
  def time_created(self) -> _builtins.str:
@@ -11949,6 +12545,57 @@ class GetApisApiCollectionItemResult(dict):
11949
12545
  return pulumi.get(self, "validation_results")
11950
12546
 
11951
12547
 
12548
+ @pulumi.output_type
12549
+ class GetApisApiCollectionItemLockResult(dict):
12550
+ def __init__(__self__, *,
12551
+ message: _builtins.str,
12552
+ related_resource_id: _builtins.str,
12553
+ time_created: _builtins.str,
12554
+ type: _builtins.str):
12555
+ """
12556
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12557
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12558
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
12559
+ :param _builtins.str type: Type of the lock.
12560
+ """
12561
+ pulumi.set(__self__, "message", message)
12562
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
12563
+ pulumi.set(__self__, "time_created", time_created)
12564
+ pulumi.set(__self__, "type", type)
12565
+
12566
+ @_builtins.property
12567
+ @pulumi.getter
12568
+ def message(self) -> _builtins.str:
12569
+ """
12570
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12571
+ """
12572
+ return pulumi.get(self, "message")
12573
+
12574
+ @_builtins.property
12575
+ @pulumi.getter(name="relatedResourceId")
12576
+ def related_resource_id(self) -> _builtins.str:
12577
+ """
12578
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12579
+ """
12580
+ return pulumi.get(self, "related_resource_id")
12581
+
12582
+ @_builtins.property
12583
+ @pulumi.getter(name="timeCreated")
12584
+ def time_created(self) -> _builtins.str:
12585
+ """
12586
+ The time this resource was created. An RFC3339 formatted datetime string.
12587
+ """
12588
+ return pulumi.get(self, "time_created")
12589
+
12590
+ @_builtins.property
12591
+ @pulumi.getter
12592
+ def type(self) -> _builtins.str:
12593
+ """
12594
+ Type of the lock.
12595
+ """
12596
+ return pulumi.get(self, "type")
12597
+
12598
+
11952
12599
  @pulumi.output_type
11953
12600
  class GetApisApiCollectionItemValidationResultResult(dict):
11954
12601
  def __init__(__self__, *,
@@ -12011,6 +12658,57 @@ class GetApisFilterResult(dict):
12011
12658
  return pulumi.get(self, "regex")
12012
12659
 
12013
12660
 
12661
+ @pulumi.output_type
12662
+ class GetCertificateLockResult(dict):
12663
+ def __init__(__self__, *,
12664
+ message: _builtins.str,
12665
+ related_resource_id: _builtins.str,
12666
+ time_created: _builtins.str,
12667
+ type: _builtins.str):
12668
+ """
12669
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12670
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12671
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
12672
+ :param _builtins.str type: Type of the lock.
12673
+ """
12674
+ pulumi.set(__self__, "message", message)
12675
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
12676
+ pulumi.set(__self__, "time_created", time_created)
12677
+ pulumi.set(__self__, "type", type)
12678
+
12679
+ @_builtins.property
12680
+ @pulumi.getter
12681
+ def message(self) -> _builtins.str:
12682
+ """
12683
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12684
+ """
12685
+ return pulumi.get(self, "message")
12686
+
12687
+ @_builtins.property
12688
+ @pulumi.getter(name="relatedResourceId")
12689
+ def related_resource_id(self) -> _builtins.str:
12690
+ """
12691
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12692
+ """
12693
+ return pulumi.get(self, "related_resource_id")
12694
+
12695
+ @_builtins.property
12696
+ @pulumi.getter(name="timeCreated")
12697
+ def time_created(self) -> _builtins.str:
12698
+ """
12699
+ The time this resource was created. An RFC3339 formatted datetime string.
12700
+ """
12701
+ return pulumi.get(self, "time_created")
12702
+
12703
+ @_builtins.property
12704
+ @pulumi.getter
12705
+ def type(self) -> _builtins.str:
12706
+ """
12707
+ Type of the lock.
12708
+ """
12709
+ return pulumi.get(self, "type")
12710
+
12711
+
12014
12712
  @pulumi.output_type
12015
12713
  class GetCertificatesCertificateCollectionResult(dict):
12016
12714
  def __init__(__self__, *,
@@ -12033,10 +12731,13 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12033
12731
  freeform_tags: Mapping[str, _builtins.str],
12034
12732
  id: _builtins.str,
12035
12733
  intermediate_certificates: _builtins.str,
12734
+ is_lock_override: _builtins.bool,
12036
12735
  lifecycle_details: _builtins.str,
12736
+ locks: Sequence['outputs.GetCertificatesCertificateCollectionItemLockResult'],
12037
12737
  private_key: _builtins.str,
12038
12738
  state: _builtins.str,
12039
12739
  subject_names: Sequence[_builtins.str],
12740
+ system_tags: Mapping[str, _builtins.str],
12040
12741
  time_created: _builtins.str,
12041
12742
  time_not_valid_after: _builtins.str,
12042
12743
  time_updated: _builtins.str):
@@ -12049,8 +12750,10 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12049
12750
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource.
12050
12751
  :param _builtins.str intermediate_certificates: The intermediate certificate data associated with the certificate in pem format.
12051
12752
  :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
12753
+ :param Sequence['GetCertificatesCertificateCollectionItemLockArgs'] locks: Locks associated with this resource.
12052
12754
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `ACTIVE` or `DELETED`
12053
12755
  :param Sequence[_builtins.str] subject_names: The entity to be secured by the certificate and additional host names.
12756
+ :param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
12054
12757
  :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
12055
12758
  :param _builtins.str time_not_valid_after: The date and time the certificate will expire.
12056
12759
  :param _builtins.str time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
@@ -12062,10 +12765,13 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12062
12765
  pulumi.set(__self__, "freeform_tags", freeform_tags)
12063
12766
  pulumi.set(__self__, "id", id)
12064
12767
  pulumi.set(__self__, "intermediate_certificates", intermediate_certificates)
12768
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
12065
12769
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
12770
+ pulumi.set(__self__, "locks", locks)
12066
12771
  pulumi.set(__self__, "private_key", private_key)
12067
12772
  pulumi.set(__self__, "state", state)
12068
12773
  pulumi.set(__self__, "subject_names", subject_names)
12774
+ pulumi.set(__self__, "system_tags", system_tags)
12069
12775
  pulumi.set(__self__, "time_created", time_created)
12070
12776
  pulumi.set(__self__, "time_not_valid_after", time_not_valid_after)
12071
12777
  pulumi.set(__self__, "time_updated", time_updated)
@@ -12126,6 +12832,11 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12126
12832
  """
12127
12833
  return pulumi.get(self, "intermediate_certificates")
12128
12834
 
12835
+ @_builtins.property
12836
+ @pulumi.getter(name="isLockOverride")
12837
+ def is_lock_override(self) -> _builtins.bool:
12838
+ return pulumi.get(self, "is_lock_override")
12839
+
12129
12840
  @_builtins.property
12130
12841
  @pulumi.getter(name="lifecycleDetails")
12131
12842
  def lifecycle_details(self) -> _builtins.str:
@@ -12134,6 +12845,14 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12134
12845
  """
12135
12846
  return pulumi.get(self, "lifecycle_details")
12136
12847
 
12848
+ @_builtins.property
12849
+ @pulumi.getter
12850
+ def locks(self) -> Sequence['outputs.GetCertificatesCertificateCollectionItemLockResult']:
12851
+ """
12852
+ Locks associated with this resource.
12853
+ """
12854
+ return pulumi.get(self, "locks")
12855
+
12137
12856
  @_builtins.property
12138
12857
  @pulumi.getter(name="privateKey")
12139
12858
  def private_key(self) -> _builtins.str:
@@ -12155,6 +12874,14 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12155
12874
  """
12156
12875
  return pulumi.get(self, "subject_names")
12157
12876
 
12877
+ @_builtins.property
12878
+ @pulumi.getter(name="systemTags")
12879
+ def system_tags(self) -> Mapping[str, _builtins.str]:
12880
+ """
12881
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
12882
+ """
12883
+ return pulumi.get(self, "system_tags")
12884
+
12158
12885
  @_builtins.property
12159
12886
  @pulumi.getter(name="timeCreated")
12160
12887
  def time_created(self) -> _builtins.str:
@@ -12180,6 +12907,57 @@ class GetCertificatesCertificateCollectionItemResult(dict):
12180
12907
  return pulumi.get(self, "time_updated")
12181
12908
 
12182
12909
 
12910
+ @pulumi.output_type
12911
+ class GetCertificatesCertificateCollectionItemLockResult(dict):
12912
+ def __init__(__self__, *,
12913
+ message: _builtins.str,
12914
+ related_resource_id: _builtins.str,
12915
+ time_created: _builtins.str,
12916
+ type: _builtins.str):
12917
+ """
12918
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12919
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12920
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
12921
+ :param _builtins.str type: Type of the lock.
12922
+ """
12923
+ pulumi.set(__self__, "message", message)
12924
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
12925
+ pulumi.set(__self__, "time_created", time_created)
12926
+ pulumi.set(__self__, "type", type)
12927
+
12928
+ @_builtins.property
12929
+ @pulumi.getter
12930
+ def message(self) -> _builtins.str:
12931
+ """
12932
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12933
+ """
12934
+ return pulumi.get(self, "message")
12935
+
12936
+ @_builtins.property
12937
+ @pulumi.getter(name="relatedResourceId")
12938
+ def related_resource_id(self) -> _builtins.str:
12939
+ """
12940
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12941
+ """
12942
+ return pulumi.get(self, "related_resource_id")
12943
+
12944
+ @_builtins.property
12945
+ @pulumi.getter(name="timeCreated")
12946
+ def time_created(self) -> _builtins.str:
12947
+ """
12948
+ The time this resource was created. An RFC3339 formatted datetime string.
12949
+ """
12950
+ return pulumi.get(self, "time_created")
12951
+
12952
+ @_builtins.property
12953
+ @pulumi.getter
12954
+ def type(self) -> _builtins.str:
12955
+ """
12956
+ Type of the lock.
12957
+ """
12958
+ return pulumi.get(self, "type")
12959
+
12960
+
12183
12961
  @pulumi.output_type
12184
12962
  class GetCertificatesFilterResult(dict):
12185
12963
  def __init__(__self__, *,
@@ -12208,47 +12986,98 @@ class GetCertificatesFilterResult(dict):
12208
12986
 
12209
12987
 
12210
12988
  @pulumi.output_type
12211
- class GetDeploymentSpecificationResult(dict):
12989
+ class GetDeploymentLockResult(dict):
12212
12990
  def __init__(__self__, *,
12213
- logging_policies: Sequence['outputs.GetDeploymentSpecificationLoggingPolicyResult'],
12214
- request_policies: Sequence['outputs.GetDeploymentSpecificationRequestPolicyResult'],
12215
- routes: Sequence['outputs.GetDeploymentSpecificationRouteResult']):
12991
+ message: _builtins.str,
12992
+ related_resource_id: _builtins.str,
12993
+ time_created: _builtins.str,
12994
+ type: _builtins.str):
12216
12995
  """
12217
- :param Sequence['GetDeploymentSpecificationLoggingPolicyArgs'] logging_policies: Policies controlling the pushing of logs to Oracle Cloud Infrastructure Public Logging.
12218
- :param Sequence['GetDeploymentSpecificationRequestPolicyArgs'] request_policies: Behavior applied to any requests received by the API on this route.
12219
- :param Sequence['GetDeploymentSpecificationRouteArgs'] routes: A list of routes that this API exposes.
12996
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12997
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12998
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
12999
+ :param _builtins.str type: Type of the Response Cache Store Policy.
12220
13000
  """
12221
- pulumi.set(__self__, "logging_policies", logging_policies)
12222
- pulumi.set(__self__, "request_policies", request_policies)
12223
- pulumi.set(__self__, "routes", routes)
13001
+ pulumi.set(__self__, "message", message)
13002
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
13003
+ pulumi.set(__self__, "time_created", time_created)
13004
+ pulumi.set(__self__, "type", type)
12224
13005
 
12225
13006
  @_builtins.property
12226
- @pulumi.getter(name="loggingPolicies")
12227
- def logging_policies(self) -> Sequence['outputs.GetDeploymentSpecificationLoggingPolicyResult']:
13007
+ @pulumi.getter
13008
+ def message(self) -> _builtins.str:
12228
13009
  """
12229
- Policies controlling the pushing of logs to Oracle Cloud Infrastructure Public Logging.
13010
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
12230
13011
  """
12231
- return pulumi.get(self, "logging_policies")
13012
+ return pulumi.get(self, "message")
12232
13013
 
12233
13014
  @_builtins.property
12234
- @pulumi.getter(name="requestPolicies")
12235
- def request_policies(self) -> Sequence['outputs.GetDeploymentSpecificationRequestPolicyResult']:
13015
+ @pulumi.getter(name="relatedResourceId")
13016
+ def related_resource_id(self) -> _builtins.str:
12236
13017
  """
12237
- Behavior applied to any requests received by the API on this route.
13018
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
12238
13019
  """
12239
- return pulumi.get(self, "request_policies")
13020
+ return pulumi.get(self, "related_resource_id")
12240
13021
 
12241
13022
  @_builtins.property
12242
- @pulumi.getter
12243
- def routes(self) -> Sequence['outputs.GetDeploymentSpecificationRouteResult']:
13023
+ @pulumi.getter(name="timeCreated")
13024
+ def time_created(self) -> _builtins.str:
12244
13025
  """
12245
- A list of routes that this API exposes.
13026
+ The time this resource was created. An RFC3339 formatted datetime string.
12246
13027
  """
12247
- return pulumi.get(self, "routes")
12248
-
13028
+ return pulumi.get(self, "time_created")
12249
13029
 
12250
- @pulumi.output_type
12251
- class GetDeploymentSpecificationLoggingPolicyResult(dict):
13030
+ @_builtins.property
13031
+ @pulumi.getter
13032
+ def type(self) -> _builtins.str:
13033
+ """
13034
+ Type of the Response Cache Store Policy.
13035
+ """
13036
+ return pulumi.get(self, "type")
13037
+
13038
+
13039
+ @pulumi.output_type
13040
+ class GetDeploymentSpecificationResult(dict):
13041
+ def __init__(__self__, *,
13042
+ logging_policies: Sequence['outputs.GetDeploymentSpecificationLoggingPolicyResult'],
13043
+ request_policies: Sequence['outputs.GetDeploymentSpecificationRequestPolicyResult'],
13044
+ routes: Sequence['outputs.GetDeploymentSpecificationRouteResult']):
13045
+ """
13046
+ :param Sequence['GetDeploymentSpecificationLoggingPolicyArgs'] logging_policies: Policies controlling the pushing of logs to Oracle Cloud Infrastructure Public Logging.
13047
+ :param Sequence['GetDeploymentSpecificationRequestPolicyArgs'] request_policies: Behavior applied to any requests received by the API on this route.
13048
+ :param Sequence['GetDeploymentSpecificationRouteArgs'] routes: A list of routes that this API exposes.
13049
+ """
13050
+ pulumi.set(__self__, "logging_policies", logging_policies)
13051
+ pulumi.set(__self__, "request_policies", request_policies)
13052
+ pulumi.set(__self__, "routes", routes)
13053
+
13054
+ @_builtins.property
13055
+ @pulumi.getter(name="loggingPolicies")
13056
+ def logging_policies(self) -> Sequence['outputs.GetDeploymentSpecificationLoggingPolicyResult']:
13057
+ """
13058
+ Policies controlling the pushing of logs to Oracle Cloud Infrastructure Public Logging.
13059
+ """
13060
+ return pulumi.get(self, "logging_policies")
13061
+
13062
+ @_builtins.property
13063
+ @pulumi.getter(name="requestPolicies")
13064
+ def request_policies(self) -> Sequence['outputs.GetDeploymentSpecificationRequestPolicyResult']:
13065
+ """
13066
+ Behavior applied to any requests received by the API on this route.
13067
+ """
13068
+ return pulumi.get(self, "request_policies")
13069
+
13070
+ @_builtins.property
13071
+ @pulumi.getter
13072
+ def routes(self) -> Sequence['outputs.GetDeploymentSpecificationRouteResult']:
13073
+ """
13074
+ A list of routes that this API exposes.
13075
+ """
13076
+ return pulumi.get(self, "routes")
13077
+
13078
+
13079
+ @pulumi.output_type
13080
+ class GetDeploymentSpecificationLoggingPolicyResult(dict):
12252
13081
  def __init__(__self__, *,
12253
13082
  access_logs: Sequence['outputs.GetDeploymentSpecificationLoggingPolicyAccessLogResult'],
12254
13083
  execution_logs: Sequence['outputs.GetDeploymentSpecificationLoggingPolicyExecutionLogResult']):
@@ -12421,6 +13250,7 @@ class GetDeploymentSpecificationRequestPolicyAuthenticationResult(dict):
12421
13250
  :param _builtins.bool is_anonymous_access_allowed: Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.
12422
13251
  :param Sequence[_builtins.str] issuers: A list of parties that could have issued the token.
12423
13252
  :param _builtins.float max_clock_skew_in_seconds: The maximum expected time difference between the system clocks of the token issuer and the API Gateway.
13253
+ :param Mapping[str, _builtins.str] parameters: The List of Query Parameters
12424
13254
  :param Sequence['GetDeploymentSpecificationRequestPolicyAuthenticationPublicKeyArgs'] public_keys: A set of Public Keys that will be used to verify the JWT signature.
12425
13255
  :param _builtins.str token_auth_scheme: The authentication scheme that is to be used when authenticating the token. This must to be provided if "tokenHeader" is specified.
12426
13256
  :param _builtins.str token_header: The name of the header containing the authentication token.
@@ -12497,6 +13327,9 @@ class GetDeploymentSpecificationRequestPolicyAuthenticationResult(dict):
12497
13327
  @_builtins.property
12498
13328
  @pulumi.getter
12499
13329
  def parameters(self) -> Mapping[str, _builtins.str]:
13330
+ """
13331
+ The List of Query Parameters
13332
+ """
12500
13333
  return pulumi.get(self, "parameters")
12501
13334
 
12502
13335
  @_builtins.property
@@ -13722,6 +14555,7 @@ class GetDeploymentSpecificationRequestPolicyDynamicAuthenticationAuthentication
13722
14555
  :param _builtins.bool is_anonymous_access_allowed: Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.
13723
14556
  :param Sequence[_builtins.str] issuers: A list of parties that could have issued the token.
13724
14557
  :param _builtins.float max_clock_skew_in_seconds: The maximum expected time difference between the system clocks of the token issuer and the API Gateway.
14558
+ :param Mapping[str, _builtins.str] parameters: The List of Query Parameters
13725
14559
  :param Sequence['GetDeploymentSpecificationRequestPolicyDynamicAuthenticationAuthenticationServerAuthenticationServerDetailPublicKeyArgs'] public_keys: A set of Public Keys that will be used to verify the JWT signature.
13726
14560
  :param _builtins.str token_auth_scheme: The authentication scheme that is to be used when authenticating the token. This must to be provided if "tokenHeader" is specified.
13727
14561
  :param _builtins.str token_header: The name of the header containing the authentication token.
@@ -13798,6 +14632,9 @@ class GetDeploymentSpecificationRequestPolicyDynamicAuthenticationAuthentication
13798
14632
  @_builtins.property
13799
14633
  @pulumi.getter
13800
14634
  def parameters(self) -> Mapping[str, _builtins.str]:
14635
+ """
14636
+ The List of Query Parameters
14637
+ """
13801
14638
  return pulumi.get(self, "parameters")
13802
14639
 
13803
14640
  @_builtins.property
@@ -15133,9 +15970,11 @@ class GetDeploymentSpecificationRouteBackendResult(dict):
15133
15970
  type: _builtins.str,
15134
15971
  url: _builtins.str):
15135
15972
  """
15973
+ :param Sequence[_builtins.str] allowed_post_logout_uris: A list of allowed post-logout URLs to which a request can be redirected after revoke access
15136
15974
  :param _builtins.str body: The body of the stock response from the mock backend.
15137
15975
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
15138
15976
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
15977
+ :param Sequence['GetDeploymentSpecificationRouteBackendHeaderArgs'] headers: The List of Headers
15139
15978
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
15140
15979
  :param _builtins.str post_logout_state: Defines a state that should be shared on redirecting to postLogout URL.
15141
15980
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
@@ -15144,6 +15983,7 @@ class GetDeploymentSpecificationRouteBackendResult(dict):
15144
15983
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
15145
15984
  :param _builtins.int status: The status code of the stock response from the mock backend.
15146
15985
  :param _builtins.str type: Type of the Response Cache Store Policy.
15986
+ :param _builtins.str url: The url of the HTTP Backend
15147
15987
  """
15148
15988
  pulumi.set(__self__, "allowed_post_logout_uris", allowed_post_logout_uris)
15149
15989
  pulumi.set(__self__, "body", body)
@@ -15163,6 +16003,9 @@ class GetDeploymentSpecificationRouteBackendResult(dict):
15163
16003
  @_builtins.property
15164
16004
  @pulumi.getter(name="allowedPostLogoutUris")
15165
16005
  def allowed_post_logout_uris(self) -> Sequence[_builtins.str]:
16006
+ """
16007
+ A list of allowed post-logout URLs to which a request can be redirected after revoke access
16008
+ """
15166
16009
  return pulumi.get(self, "allowed_post_logout_uris")
15167
16010
 
15168
16011
  @_builtins.property
@@ -15192,6 +16035,9 @@ class GetDeploymentSpecificationRouteBackendResult(dict):
15192
16035
  @_builtins.property
15193
16036
  @pulumi.getter
15194
16037
  def headers(self) -> Sequence['outputs.GetDeploymentSpecificationRouteBackendHeaderResult']:
16038
+ """
16039
+ The List of Headers
16040
+ """
15195
16041
  return pulumi.get(self, "headers")
15196
16042
 
15197
16043
  @_builtins.property
@@ -15261,6 +16107,9 @@ class GetDeploymentSpecificationRouteBackendResult(dict):
15261
16107
  @_builtins.property
15262
16108
  @pulumi.getter
15263
16109
  def url(self) -> _builtins.str:
16110
+ """
16111
+ The url of the HTTP Backend
16112
+ """
15264
16113
  return pulumi.get(self, "url")
15265
16114
 
15266
16115
 
@@ -15339,11 +16188,13 @@ class GetDeploymentSpecificationRouteBackendRoutingBackendBackendResult(dict):
15339
16188
  :param _builtins.str body: The body of the stock response from the mock backend.
15340
16189
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
15341
16190
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
16191
+ :param Sequence['GetDeploymentSpecificationRouteBackendRoutingBackendBackendHeaderArgs'] headers: The List of Headers
15342
16192
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
15343
16193
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
15344
16194
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
15345
16195
  :param _builtins.int status: The status code of the stock response from the mock backend.
15346
16196
  :param _builtins.str type: Type of the Response Cache Store Policy.
16197
+ :param _builtins.str url: The url of the HTTP Backend
15347
16198
  """
15348
16199
  pulumi.set(__self__, "body", body)
15349
16200
  pulumi.set(__self__, "connect_timeout_in_seconds", connect_timeout_in_seconds)
@@ -15383,6 +16234,9 @@ class GetDeploymentSpecificationRouteBackendRoutingBackendBackendResult(dict):
15383
16234
  @_builtins.property
15384
16235
  @pulumi.getter
15385
16236
  def headers(self) -> Sequence['outputs.GetDeploymentSpecificationRouteBackendRoutingBackendBackendHeaderResult']:
16237
+ """
16238
+ The List of Headers
16239
+ """
15386
16240
  return pulumi.get(self, "headers")
15387
16241
 
15388
16242
  @_builtins.property
@@ -15428,6 +16282,9 @@ class GetDeploymentSpecificationRouteBackendRoutingBackendBackendResult(dict):
15428
16282
  @_builtins.property
15429
16283
  @pulumi.getter
15430
16284
  def url(self) -> _builtins.str:
16285
+ """
16286
+ The url of the HTTP Backend
16287
+ """
15431
16288
  return pulumi.get(self, "url")
15432
16289
 
15433
16290
 
@@ -16091,6 +16948,7 @@ class GetDeploymentSpecificationRouteRequestPolicyHeaderValidationResult(dict):
16091
16948
  headers: Sequence['outputs.GetDeploymentSpecificationRouteRequestPolicyHeaderValidationHeaderResult'],
16092
16949
  validation_mode: _builtins.str):
16093
16950
  """
16951
+ :param Sequence['GetDeploymentSpecificationRouteRequestPolicyHeaderValidationHeaderArgs'] headers: The List of Headers
16094
16952
  :param _builtins.str validation_mode: Validation behavior mode.
16095
16953
  """
16096
16954
  pulumi.set(__self__, "headers", headers)
@@ -16099,6 +16957,9 @@ class GetDeploymentSpecificationRouteRequestPolicyHeaderValidationResult(dict):
16099
16957
  @_builtins.property
16100
16958
  @pulumi.getter
16101
16959
  def headers(self) -> Sequence['outputs.GetDeploymentSpecificationRouteRequestPolicyHeaderValidationHeaderResult']:
16960
+ """
16961
+ The List of Headers
16962
+ """
16102
16963
  return pulumi.get(self, "headers")
16103
16964
 
16104
16965
  @_builtins.property
@@ -16337,6 +17198,7 @@ class GetDeploymentSpecificationRouteRequestPolicyQueryParameterValidationResult
16337
17198
  parameters: Sequence['outputs.GetDeploymentSpecificationRouteRequestPolicyQueryParameterValidationParameterResult'],
16338
17199
  validation_mode: _builtins.str):
16339
17200
  """
17201
+ :param Sequence['GetDeploymentSpecificationRouteRequestPolicyQueryParameterValidationParameterArgs'] parameters: The List of Query Parameters
16340
17202
  :param _builtins.str validation_mode: Validation behavior mode.
16341
17203
  """
16342
17204
  pulumi.set(__self__, "parameters", parameters)
@@ -16345,6 +17207,9 @@ class GetDeploymentSpecificationRouteRequestPolicyQueryParameterValidationResult
16345
17207
  @_builtins.property
16346
17208
  @pulumi.getter
16347
17209
  def parameters(self) -> Sequence['outputs.GetDeploymentSpecificationRouteRequestPolicyQueryParameterValidationParameterResult']:
17210
+ """
17211
+ The List of Query Parameters
17212
+ """
16348
17213
  return pulumi.get(self, "parameters")
16349
17214
 
16350
17215
  @_builtins.property
@@ -16696,10 +17561,13 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16696
17561
  freeform_tags: Mapping[str, _builtins.str],
16697
17562
  gateway_id: _builtins.str,
16698
17563
  id: _builtins.str,
17564
+ is_lock_override: _builtins.bool,
16699
17565
  lifecycle_details: _builtins.str,
17566
+ locks: Sequence['outputs.GetDeploymentsDeploymentCollectionLockResult'],
16700
17567
  path_prefix: _builtins.str,
16701
17568
  specifications: Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationResult'],
16702
17569
  state: _builtins.str,
17570
+ system_tags: Mapping[str, _builtins.str],
16703
17571
  time_created: _builtins.str,
16704
17572
  time_updated: _builtins.str):
16705
17573
  """
@@ -16711,9 +17579,11 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16711
17579
  :param _builtins.str gateway_id: Filter deployments by the gateway ocid.
16712
17580
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource.
16713
17581
  :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
17582
+ :param Sequence['GetDeploymentsDeploymentCollectionLockArgs'] locks: Locks associated with this resource.
16714
17583
  :param _builtins.str path_prefix: A path on which to deploy all routes contained in the API deployment specification. For more information, see [Deploying an API on an API Gateway by Creating an API Deployment](https://docs.cloud.oracle.com/iaas/Content/APIGateway/Tasks/apigatewaycreatingdeployment.htm).
16715
17584
  :param Sequence['GetDeploymentsDeploymentCollectionSpecificationArgs'] specifications: The logical configuration of the API exposed by a deployment.
16716
17585
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `SUCCEEDED`
17586
+ :param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
16717
17587
  :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
16718
17588
  :param _builtins.str time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
16719
17589
  """
@@ -16724,10 +17594,13 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16724
17594
  pulumi.set(__self__, "freeform_tags", freeform_tags)
16725
17595
  pulumi.set(__self__, "gateway_id", gateway_id)
16726
17596
  pulumi.set(__self__, "id", id)
17597
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
16727
17598
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
17599
+ pulumi.set(__self__, "locks", locks)
16728
17600
  pulumi.set(__self__, "path_prefix", path_prefix)
16729
17601
  pulumi.set(__self__, "specifications", specifications)
16730
17602
  pulumi.set(__self__, "state", state)
17603
+ pulumi.set(__self__, "system_tags", system_tags)
16731
17604
  pulumi.set(__self__, "time_created", time_created)
16732
17605
  pulumi.set(__self__, "time_updated", time_updated)
16733
17606
 
@@ -16787,6 +17660,11 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16787
17660
  """
16788
17661
  return pulumi.get(self, "id")
16789
17662
 
17663
+ @_builtins.property
17664
+ @pulumi.getter(name="isLockOverride")
17665
+ def is_lock_override(self) -> _builtins.bool:
17666
+ return pulumi.get(self, "is_lock_override")
17667
+
16790
17668
  @_builtins.property
16791
17669
  @pulumi.getter(name="lifecycleDetails")
16792
17670
  def lifecycle_details(self) -> _builtins.str:
@@ -16795,6 +17673,14 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16795
17673
  """
16796
17674
  return pulumi.get(self, "lifecycle_details")
16797
17675
 
17676
+ @_builtins.property
17677
+ @pulumi.getter
17678
+ def locks(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionLockResult']:
17679
+ """
17680
+ Locks associated with this resource.
17681
+ """
17682
+ return pulumi.get(self, "locks")
17683
+
16798
17684
  @_builtins.property
16799
17685
  @pulumi.getter(name="pathPrefix")
16800
17686
  def path_prefix(self) -> _builtins.str:
@@ -16819,6 +17705,14 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16819
17705
  """
16820
17706
  return pulumi.get(self, "state")
16821
17707
 
17708
+ @_builtins.property
17709
+ @pulumi.getter(name="systemTags")
17710
+ def system_tags(self) -> Mapping[str, _builtins.str]:
17711
+ """
17712
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
17713
+ """
17714
+ return pulumi.get(self, "system_tags")
17715
+
16822
17716
  @_builtins.property
16823
17717
  @pulumi.getter(name="timeCreated")
16824
17718
  def time_created(self) -> _builtins.str:
@@ -16836,6 +17730,57 @@ class GetDeploymentsDeploymentCollectionResult(dict):
16836
17730
  return pulumi.get(self, "time_updated")
16837
17731
 
16838
17732
 
17733
+ @pulumi.output_type
17734
+ class GetDeploymentsDeploymentCollectionLockResult(dict):
17735
+ def __init__(__self__, *,
17736
+ message: _builtins.str,
17737
+ related_resource_id: _builtins.str,
17738
+ time_created: _builtins.str,
17739
+ type: _builtins.str):
17740
+ """
17741
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
17742
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
17743
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
17744
+ :param _builtins.str type: Type of the Response Cache Store Policy.
17745
+ """
17746
+ pulumi.set(__self__, "message", message)
17747
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
17748
+ pulumi.set(__self__, "time_created", time_created)
17749
+ pulumi.set(__self__, "type", type)
17750
+
17751
+ @_builtins.property
17752
+ @pulumi.getter
17753
+ def message(self) -> _builtins.str:
17754
+ """
17755
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
17756
+ """
17757
+ return pulumi.get(self, "message")
17758
+
17759
+ @_builtins.property
17760
+ @pulumi.getter(name="relatedResourceId")
17761
+ def related_resource_id(self) -> _builtins.str:
17762
+ """
17763
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
17764
+ """
17765
+ return pulumi.get(self, "related_resource_id")
17766
+
17767
+ @_builtins.property
17768
+ @pulumi.getter(name="timeCreated")
17769
+ def time_created(self) -> _builtins.str:
17770
+ """
17771
+ The time this resource was created. An RFC3339 formatted datetime string.
17772
+ """
17773
+ return pulumi.get(self, "time_created")
17774
+
17775
+ @_builtins.property
17776
+ @pulumi.getter
17777
+ def type(self) -> _builtins.str:
17778
+ """
17779
+ Type of the Response Cache Store Policy.
17780
+ """
17781
+ return pulumi.get(self, "type")
17782
+
17783
+
16839
17784
  @pulumi.output_type
16840
17785
  class GetDeploymentsDeploymentCollectionSpecificationResult(dict):
16841
17786
  def __init__(__self__, *,
@@ -17050,6 +17995,7 @@ class GetDeploymentsDeploymentCollectionSpecificationRequestPolicyAuthentication
17050
17995
  :param _builtins.bool is_anonymous_access_allowed: Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.
17051
17996
  :param Sequence[_builtins.str] issuers: A list of parties that could have issued the token.
17052
17997
  :param _builtins.float max_clock_skew_in_seconds: The maximum expected time difference between the system clocks of the token issuer and the API Gateway.
17998
+ :param Mapping[str, _builtins.str] parameters: The List of Query Parameters
17053
17999
  :param Sequence['GetDeploymentsDeploymentCollectionSpecificationRequestPolicyAuthenticationPublicKeyArgs'] public_keys: A set of Public Keys that will be used to verify the JWT signature.
17054
18000
  :param _builtins.str token_auth_scheme: The authentication scheme that is to be used when authenticating the token. This must to be provided if "tokenHeader" is specified.
17055
18001
  :param _builtins.str token_header: The name of the header containing the authentication token.
@@ -17126,6 +18072,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRequestPolicyAuthentication
17126
18072
  @_builtins.property
17127
18073
  @pulumi.getter
17128
18074
  def parameters(self) -> Mapping[str, _builtins.str]:
18075
+ """
18076
+ The List of Query Parameters
18077
+ """
17129
18078
  return pulumi.get(self, "parameters")
17130
18079
 
17131
18080
  @_builtins.property
@@ -18351,6 +19300,7 @@ class GetDeploymentsDeploymentCollectionSpecificationRequestPolicyDynamicAuthent
18351
19300
  :param _builtins.bool is_anonymous_access_allowed: Whether an unauthenticated user may access the API. Must be "true" to enable ANONYMOUS route authorization.
18352
19301
  :param Sequence[_builtins.str] issuers: A list of parties that could have issued the token.
18353
19302
  :param _builtins.float max_clock_skew_in_seconds: The maximum expected time difference between the system clocks of the token issuer and the API Gateway.
19303
+ :param Mapping[str, _builtins.str] parameters: The List of Query Parameters
18354
19304
  :param Sequence['GetDeploymentsDeploymentCollectionSpecificationRequestPolicyDynamicAuthenticationAuthenticationServerAuthenticationServerDetailPublicKeyArgs'] public_keys: A set of Public Keys that will be used to verify the JWT signature.
18355
19305
  :param _builtins.str token_auth_scheme: The authentication scheme that is to be used when authenticating the token. This must to be provided if "tokenHeader" is specified.
18356
19306
  :param _builtins.str token_header: The name of the header containing the authentication token.
@@ -18427,6 +19377,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRequestPolicyDynamicAuthent
18427
19377
  @_builtins.property
18428
19378
  @pulumi.getter
18429
19379
  def parameters(self) -> Mapping[str, _builtins.str]:
19380
+ """
19381
+ The List of Query Parameters
19382
+ """
18430
19383
  return pulumi.get(self, "parameters")
18431
19384
 
18432
19385
  @_builtins.property
@@ -19762,9 +20715,11 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendResult(dict):
19762
20715
  type: _builtins.str,
19763
20716
  url: _builtins.str):
19764
20717
  """
20718
+ :param Sequence[_builtins.str] allowed_post_logout_uris: A list of allowed post-logout URLs to which a request can be redirected after revoke access
19765
20719
  :param _builtins.str body: The body of the stock response from the mock backend.
19766
20720
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
19767
20721
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
20722
+ :param Sequence['GetDeploymentsDeploymentCollectionSpecificationRouteBackendHeaderArgs'] headers: The List of Headers
19768
20723
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
19769
20724
  :param _builtins.str post_logout_state: Defines a state that should be shared on redirecting to postLogout URL.
19770
20725
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
@@ -19773,6 +20728,7 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendResult(dict):
19773
20728
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
19774
20729
  :param _builtins.int status: The status code of the stock response from the mock backend.
19775
20730
  :param _builtins.str type: Type of the Response Cache Store Policy.
20731
+ :param _builtins.str url: The url of the HTTP Backend
19776
20732
  """
19777
20733
  pulumi.set(__self__, "allowed_post_logout_uris", allowed_post_logout_uris)
19778
20734
  pulumi.set(__self__, "body", body)
@@ -19792,6 +20748,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendResult(dict):
19792
20748
  @_builtins.property
19793
20749
  @pulumi.getter(name="allowedPostLogoutUris")
19794
20750
  def allowed_post_logout_uris(self) -> Sequence[_builtins.str]:
20751
+ """
20752
+ A list of allowed post-logout URLs to which a request can be redirected after revoke access
20753
+ """
19795
20754
  return pulumi.get(self, "allowed_post_logout_uris")
19796
20755
 
19797
20756
  @_builtins.property
@@ -19821,6 +20780,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendResult(dict):
19821
20780
  @_builtins.property
19822
20781
  @pulumi.getter
19823
20782
  def headers(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationRouteBackendHeaderResult']:
20783
+ """
20784
+ The List of Headers
20785
+ """
19824
20786
  return pulumi.get(self, "headers")
19825
20787
 
19826
20788
  @_builtins.property
@@ -19890,6 +20852,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendResult(dict):
19890
20852
  @_builtins.property
19891
20853
  @pulumi.getter
19892
20854
  def url(self) -> _builtins.str:
20855
+ """
20856
+ The url of the HTTP Backend
20857
+ """
19893
20858
  return pulumi.get(self, "url")
19894
20859
 
19895
20860
 
@@ -19968,11 +20933,13 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendRoutingBackendB
19968
20933
  :param _builtins.str body: The body of the stock response from the mock backend.
19969
20934
  :param _builtins.float connect_timeout_in_seconds: Defines a timeout for establishing a connection with a proxied server.
19970
20935
  :param _builtins.str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Functions function resource.
20936
+ :param Sequence['GetDeploymentsDeploymentCollectionSpecificationRouteBackendRoutingBackendBackendHeaderArgs'] headers: The List of Headers
19971
20937
  :param _builtins.bool is_ssl_verify_disabled: Defines whether or not to uphold SSL verification.
19972
20938
  :param _builtins.float read_timeout_in_seconds: Defines a timeout for reading a response from the proxied server.
19973
20939
  :param _builtins.float send_timeout_in_seconds: Defines a timeout for transmitting a request to the proxied server.
19974
20940
  :param _builtins.int status: The status code of the stock response from the mock backend.
19975
20941
  :param _builtins.str type: Type of the Response Cache Store Policy.
20942
+ :param _builtins.str url: The url of the HTTP Backend
19976
20943
  """
19977
20944
  pulumi.set(__self__, "body", body)
19978
20945
  pulumi.set(__self__, "connect_timeout_in_seconds", connect_timeout_in_seconds)
@@ -20012,6 +20979,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendRoutingBackendB
20012
20979
  @_builtins.property
20013
20980
  @pulumi.getter
20014
20981
  def headers(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationRouteBackendRoutingBackendBackendHeaderResult']:
20982
+ """
20983
+ The List of Headers
20984
+ """
20015
20985
  return pulumi.get(self, "headers")
20016
20986
 
20017
20987
  @_builtins.property
@@ -20057,6 +21027,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteBackendRoutingBackendB
20057
21027
  @_builtins.property
20058
21028
  @pulumi.getter
20059
21029
  def url(self) -> _builtins.str:
21030
+ """
21031
+ The url of the HTTP Backend
21032
+ """
20060
21033
  return pulumi.get(self, "url")
20061
21034
 
20062
21035
 
@@ -20720,6 +21693,7 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyHeaderVal
20720
21693
  headers: Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyHeaderValidationHeaderResult'],
20721
21694
  validation_mode: _builtins.str):
20722
21695
  """
21696
+ :param Sequence['GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyHeaderValidationHeaderArgs'] headers: The List of Headers
20723
21697
  :param _builtins.str validation_mode: Validation behavior mode.
20724
21698
  """
20725
21699
  pulumi.set(__self__, "headers", headers)
@@ -20728,6 +21702,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyHeaderVal
20728
21702
  @_builtins.property
20729
21703
  @pulumi.getter
20730
21704
  def headers(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyHeaderValidationHeaderResult']:
21705
+ """
21706
+ The List of Headers
21707
+ """
20731
21708
  return pulumi.get(self, "headers")
20732
21709
 
20733
21710
  @_builtins.property
@@ -20966,6 +21943,7 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyQueryPara
20966
21943
  parameters: Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyQueryParameterValidationParameterResult'],
20967
21944
  validation_mode: _builtins.str):
20968
21945
  """
21946
+ :param Sequence['GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyQueryParameterValidationParameterArgs'] parameters: The List of Query Parameters
20969
21947
  :param _builtins.str validation_mode: Validation behavior mode.
20970
21948
  """
20971
21949
  pulumi.set(__self__, "parameters", parameters)
@@ -20974,6 +21952,9 @@ class GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyQueryPara
20974
21952
  @_builtins.property
20975
21953
  @pulumi.getter
20976
21954
  def parameters(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionSpecificationRouteRequestPolicyQueryParameterValidationParameterResult']:
21955
+ """
21956
+ The List of Query Parameters
21957
+ """
20977
21958
  return pulumi.get(self, "parameters")
20978
21959
 
20979
21960
  @_builtins.property
@@ -21410,6 +22391,57 @@ class GetGatewayIpAddressResult(dict):
21410
22391
  return pulumi.get(self, "ip_address")
21411
22392
 
21412
22393
 
22394
+ @pulumi.output_type
22395
+ class GetGatewayLockResult(dict):
22396
+ def __init__(__self__, *,
22397
+ message: _builtins.str,
22398
+ related_resource_id: _builtins.str,
22399
+ time_created: _builtins.str,
22400
+ type: _builtins.str):
22401
+ """
22402
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
22403
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
22404
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
22405
+ :param _builtins.str type: Type of the Response Cache.
22406
+ """
22407
+ pulumi.set(__self__, "message", message)
22408
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
22409
+ pulumi.set(__self__, "time_created", time_created)
22410
+ pulumi.set(__self__, "type", type)
22411
+
22412
+ @_builtins.property
22413
+ @pulumi.getter
22414
+ def message(self) -> _builtins.str:
22415
+ """
22416
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
22417
+ """
22418
+ return pulumi.get(self, "message")
22419
+
22420
+ @_builtins.property
22421
+ @pulumi.getter(name="relatedResourceId")
22422
+ def related_resource_id(self) -> _builtins.str:
22423
+ """
22424
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
22425
+ """
22426
+ return pulumi.get(self, "related_resource_id")
22427
+
22428
+ @_builtins.property
22429
+ @pulumi.getter(name="timeCreated")
22430
+ def time_created(self) -> _builtins.str:
22431
+ """
22432
+ The time this resource was created. An RFC3339 formatted datetime string.
22433
+ """
22434
+ return pulumi.get(self, "time_created")
22435
+
22436
+ @_builtins.property
22437
+ @pulumi.getter
22438
+ def type(self) -> _builtins.str:
22439
+ """
22440
+ Type of the Response Cache.
22441
+ """
22442
+ return pulumi.get(self, "type")
22443
+
22444
+
21413
22445
  @pulumi.output_type
21414
22446
  class GetGatewayResponseCacheDetailResult(dict):
21415
22447
  def __init__(__self__, *,
@@ -21585,11 +22617,14 @@ class GetGatewaysGatewayCollectionResult(dict):
21585
22617
  hostname: _builtins.str,
21586
22618
  id: _builtins.str,
21587
22619
  ip_addresses: Sequence['outputs.GetGatewaysGatewayCollectionIpAddressResult'],
22620
+ is_lock_override: _builtins.bool,
21588
22621
  lifecycle_details: _builtins.str,
22622
+ locks: Sequence['outputs.GetGatewaysGatewayCollectionLockResult'],
21589
22623
  network_security_group_ids: Sequence[_builtins.str],
21590
22624
  response_cache_details: Sequence['outputs.GetGatewaysGatewayCollectionResponseCacheDetailResult'],
21591
22625
  state: _builtins.str,
21592
22626
  subnet_id: _builtins.str,
22627
+ system_tags: Mapping[str, _builtins.str],
21593
22628
  time_created: _builtins.str,
21594
22629
  time_updated: _builtins.str):
21595
22630
  """
@@ -21604,10 +22639,12 @@ class GetGatewaysGatewayCollectionResult(dict):
21604
22639
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource.
21605
22640
  :param Sequence['GetGatewaysGatewayCollectionIpAddressArgs'] ip_addresses: An array of IP addresses associated with the gateway.
21606
22641
  :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
22642
+ :param Sequence['GetGatewaysGatewayCollectionLockArgs'] locks: Locks associated with this resource.
21607
22643
  :param Sequence[_builtins.str] network_security_group_ids: An array of Network Security Groups OCIDs associated with this API Gateway.
21608
22644
  :param Sequence['GetGatewaysGatewayCollectionResponseCacheDetailArgs'] response_cache_details: Base Gateway response cache.
21609
22645
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `SUCCEEDED`
21610
22646
  :param _builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in which related resources are created.
22647
+ :param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
21611
22648
  :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
21612
22649
  :param _builtins.str time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
21613
22650
  """
@@ -21621,11 +22658,14 @@ class GetGatewaysGatewayCollectionResult(dict):
21621
22658
  pulumi.set(__self__, "hostname", hostname)
21622
22659
  pulumi.set(__self__, "id", id)
21623
22660
  pulumi.set(__self__, "ip_addresses", ip_addresses)
22661
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
21624
22662
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
22663
+ pulumi.set(__self__, "locks", locks)
21625
22664
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
21626
22665
  pulumi.set(__self__, "response_cache_details", response_cache_details)
21627
22666
  pulumi.set(__self__, "state", state)
21628
22667
  pulumi.set(__self__, "subnet_id", subnet_id)
22668
+ pulumi.set(__self__, "system_tags", system_tags)
21629
22669
  pulumi.set(__self__, "time_created", time_created)
21630
22670
  pulumi.set(__self__, "time_updated", time_updated)
21631
22671
 
@@ -21709,6 +22749,11 @@ class GetGatewaysGatewayCollectionResult(dict):
21709
22749
  """
21710
22750
  return pulumi.get(self, "ip_addresses")
21711
22751
 
22752
+ @_builtins.property
22753
+ @pulumi.getter(name="isLockOverride")
22754
+ def is_lock_override(self) -> _builtins.bool:
22755
+ return pulumi.get(self, "is_lock_override")
22756
+
21712
22757
  @_builtins.property
21713
22758
  @pulumi.getter(name="lifecycleDetails")
21714
22759
  def lifecycle_details(self) -> _builtins.str:
@@ -21717,6 +22762,14 @@ class GetGatewaysGatewayCollectionResult(dict):
21717
22762
  """
21718
22763
  return pulumi.get(self, "lifecycle_details")
21719
22764
 
22765
+ @_builtins.property
22766
+ @pulumi.getter
22767
+ def locks(self) -> Sequence['outputs.GetGatewaysGatewayCollectionLockResult']:
22768
+ """
22769
+ Locks associated with this resource.
22770
+ """
22771
+ return pulumi.get(self, "locks")
22772
+
21720
22773
  @_builtins.property
21721
22774
  @pulumi.getter(name="networkSecurityGroupIds")
21722
22775
  def network_security_group_ids(self) -> Sequence[_builtins.str]:
@@ -21749,6 +22802,14 @@ class GetGatewaysGatewayCollectionResult(dict):
21749
22802
  """
21750
22803
  return pulumi.get(self, "subnet_id")
21751
22804
 
22805
+ @_builtins.property
22806
+ @pulumi.getter(name="systemTags")
22807
+ def system_tags(self) -> Mapping[str, _builtins.str]:
22808
+ """
22809
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
22810
+ """
22811
+ return pulumi.get(self, "system_tags")
22812
+
21752
22813
  @_builtins.property
21753
22814
  @pulumi.getter(name="timeCreated")
21754
22815
  def time_created(self) -> _builtins.str:
@@ -21824,6 +22885,57 @@ class GetGatewaysGatewayCollectionIpAddressResult(dict):
21824
22885
  return pulumi.get(self, "ip_address")
21825
22886
 
21826
22887
 
22888
+ @pulumi.output_type
22889
+ class GetGatewaysGatewayCollectionLockResult(dict):
22890
+ def __init__(__self__, *,
22891
+ message: _builtins.str,
22892
+ related_resource_id: _builtins.str,
22893
+ time_created: _builtins.str,
22894
+ type: _builtins.str):
22895
+ """
22896
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
22897
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
22898
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
22899
+ :param _builtins.str type: Type of the Response Cache.
22900
+ """
22901
+ pulumi.set(__self__, "message", message)
22902
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
22903
+ pulumi.set(__self__, "time_created", time_created)
22904
+ pulumi.set(__self__, "type", type)
22905
+
22906
+ @_builtins.property
22907
+ @pulumi.getter
22908
+ def message(self) -> _builtins.str:
22909
+ """
22910
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
22911
+ """
22912
+ return pulumi.get(self, "message")
22913
+
22914
+ @_builtins.property
22915
+ @pulumi.getter(name="relatedResourceId")
22916
+ def related_resource_id(self) -> _builtins.str:
22917
+ """
22918
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
22919
+ """
22920
+ return pulumi.get(self, "related_resource_id")
22921
+
22922
+ @_builtins.property
22923
+ @pulumi.getter(name="timeCreated")
22924
+ def time_created(self) -> _builtins.str:
22925
+ """
22926
+ The time this resource was created. An RFC3339 formatted datetime string.
22927
+ """
22928
+ return pulumi.get(self, "time_created")
22929
+
22930
+ @_builtins.property
22931
+ @pulumi.getter
22932
+ def type(self) -> _builtins.str:
22933
+ """
22934
+ Type of the Response Cache.
22935
+ """
22936
+ return pulumi.get(self, "type")
22937
+
22938
+
21827
22939
  @pulumi.output_type
21828
22940
  class GetGatewaysGatewayCollectionResponseCacheDetailResult(dict):
21829
22941
  def __init__(__self__, *,
@@ -21988,6 +23100,57 @@ class GetSubscriberClientResult(dict):
21988
23100
  return pulumi.get(self, "token")
21989
23101
 
21990
23102
 
23103
+ @pulumi.output_type
23104
+ class GetSubscriberLockResult(dict):
23105
+ def __init__(__self__, *,
23106
+ message: _builtins.str,
23107
+ related_resource_id: _builtins.str,
23108
+ time_created: _builtins.str,
23109
+ type: _builtins.str):
23110
+ """
23111
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
23112
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
23113
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
23114
+ :param _builtins.str type: Type of the lock.
23115
+ """
23116
+ pulumi.set(__self__, "message", message)
23117
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
23118
+ pulumi.set(__self__, "time_created", time_created)
23119
+ pulumi.set(__self__, "type", type)
23120
+
23121
+ @_builtins.property
23122
+ @pulumi.getter
23123
+ def message(self) -> _builtins.str:
23124
+ """
23125
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
23126
+ """
23127
+ return pulumi.get(self, "message")
23128
+
23129
+ @_builtins.property
23130
+ @pulumi.getter(name="relatedResourceId")
23131
+ def related_resource_id(self) -> _builtins.str:
23132
+ """
23133
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
23134
+ """
23135
+ return pulumi.get(self, "related_resource_id")
23136
+
23137
+ @_builtins.property
23138
+ @pulumi.getter(name="timeCreated")
23139
+ def time_created(self) -> _builtins.str:
23140
+ """
23141
+ The time this resource was created. An RFC3339 formatted datetime string.
23142
+ """
23143
+ return pulumi.get(self, "time_created")
23144
+
23145
+ @_builtins.property
23146
+ @pulumi.getter
23147
+ def type(self) -> _builtins.str:
23148
+ """
23149
+ Type of the lock.
23150
+ """
23151
+ return pulumi.get(self, "type")
23152
+
23153
+
21991
23154
  @pulumi.output_type
21992
23155
  class GetSubscribersFilterResult(dict):
21993
23156
  def __init__(__self__, *,
@@ -22042,8 +23205,11 @@ class GetSubscribersSubscriberCollectionItemResult(dict):
22042
23205
  display_name: _builtins.str,
22043
23206
  freeform_tags: Mapping[str, _builtins.str],
22044
23207
  id: _builtins.str,
23208
+ is_lock_override: _builtins.bool,
22045
23209
  lifecycle_details: _builtins.str,
23210
+ locks: Sequence['outputs.GetSubscribersSubscriberCollectionItemLockResult'],
22046
23211
  state: _builtins.str,
23212
+ system_tags: Mapping[str, _builtins.str],
22047
23213
  time_created: _builtins.str,
22048
23214
  time_updated: _builtins.str,
22049
23215
  usage_plans: Sequence[_builtins.str]):
@@ -22055,7 +23221,9 @@ class GetSubscribersSubscriberCollectionItemResult(dict):
22055
23221
  :param Mapping[str, _builtins.str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
22056
23222
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource.
22057
23223
  :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
23224
+ :param Sequence['GetSubscribersSubscriberCollectionItemLockArgs'] locks: Locks associated with this resource.
22058
23225
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `ACTIVE`
23226
+ :param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
22059
23227
  :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
22060
23228
  :param _builtins.str time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
22061
23229
  :param Sequence[_builtins.str] usage_plans: An array of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)s of usage plan resources.
@@ -22066,8 +23234,11 @@ class GetSubscribersSubscriberCollectionItemResult(dict):
22066
23234
  pulumi.set(__self__, "display_name", display_name)
22067
23235
  pulumi.set(__self__, "freeform_tags", freeform_tags)
22068
23236
  pulumi.set(__self__, "id", id)
23237
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
22069
23238
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
23239
+ pulumi.set(__self__, "locks", locks)
22070
23240
  pulumi.set(__self__, "state", state)
23241
+ pulumi.set(__self__, "system_tags", system_tags)
22071
23242
  pulumi.set(__self__, "time_created", time_created)
22072
23243
  pulumi.set(__self__, "time_updated", time_updated)
22073
23244
  pulumi.set(__self__, "usage_plans", usage_plans)
@@ -22120,6 +23291,11 @@ class GetSubscribersSubscriberCollectionItemResult(dict):
22120
23291
  """
22121
23292
  return pulumi.get(self, "id")
22122
23293
 
23294
+ @_builtins.property
23295
+ @pulumi.getter(name="isLockOverride")
23296
+ def is_lock_override(self) -> _builtins.bool:
23297
+ return pulumi.get(self, "is_lock_override")
23298
+
22123
23299
  @_builtins.property
22124
23300
  @pulumi.getter(name="lifecycleDetails")
22125
23301
  def lifecycle_details(self) -> _builtins.str:
@@ -22128,6 +23304,14 @@ class GetSubscribersSubscriberCollectionItemResult(dict):
22128
23304
  """
22129
23305
  return pulumi.get(self, "lifecycle_details")
22130
23306
 
23307
+ @_builtins.property
23308
+ @pulumi.getter
23309
+ def locks(self) -> Sequence['outputs.GetSubscribersSubscriberCollectionItemLockResult']:
23310
+ """
23311
+ Locks associated with this resource.
23312
+ """
23313
+ return pulumi.get(self, "locks")
23314
+
22131
23315
  @_builtins.property
22132
23316
  @pulumi.getter
22133
23317
  def state(self) -> _builtins.str:
@@ -22136,6 +23320,14 @@ class GetSubscribersSubscriberCollectionItemResult(dict):
22136
23320
  """
22137
23321
  return pulumi.get(self, "state")
22138
23322
 
23323
+ @_builtins.property
23324
+ @pulumi.getter(name="systemTags")
23325
+ def system_tags(self) -> Mapping[str, _builtins.str]:
23326
+ """
23327
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
23328
+ """
23329
+ return pulumi.get(self, "system_tags")
23330
+
22139
23331
  @_builtins.property
22140
23332
  @pulumi.getter(name="timeCreated")
22141
23333
  def time_created(self) -> _builtins.str:
@@ -22190,6 +23382,57 @@ class GetSubscribersSubscriberCollectionItemClientResult(dict):
22190
23382
  return pulumi.get(self, "token")
22191
23383
 
22192
23384
 
23385
+ @pulumi.output_type
23386
+ class GetSubscribersSubscriberCollectionItemLockResult(dict):
23387
+ def __init__(__self__, *,
23388
+ message: _builtins.str,
23389
+ related_resource_id: _builtins.str,
23390
+ time_created: _builtins.str,
23391
+ type: _builtins.str):
23392
+ """
23393
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
23394
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
23395
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
23396
+ :param _builtins.str type: Type of the lock.
23397
+ """
23398
+ pulumi.set(__self__, "message", message)
23399
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
23400
+ pulumi.set(__self__, "time_created", time_created)
23401
+ pulumi.set(__self__, "type", type)
23402
+
23403
+ @_builtins.property
23404
+ @pulumi.getter
23405
+ def message(self) -> _builtins.str:
23406
+ """
23407
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
23408
+ """
23409
+ return pulumi.get(self, "message")
23410
+
23411
+ @_builtins.property
23412
+ @pulumi.getter(name="relatedResourceId")
23413
+ def related_resource_id(self) -> _builtins.str:
23414
+ """
23415
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
23416
+ """
23417
+ return pulumi.get(self, "related_resource_id")
23418
+
23419
+ @_builtins.property
23420
+ @pulumi.getter(name="timeCreated")
23421
+ def time_created(self) -> _builtins.str:
23422
+ """
23423
+ The time this resource was created. An RFC3339 formatted datetime string.
23424
+ """
23425
+ return pulumi.get(self, "time_created")
23426
+
23427
+ @_builtins.property
23428
+ @pulumi.getter
23429
+ def type(self) -> _builtins.str:
23430
+ """
23431
+ Type of the lock.
23432
+ """
23433
+ return pulumi.get(self, "type")
23434
+
23435
+
22193
23436
  @pulumi.output_type
22194
23437
  class GetUsagePlanEntitlementResult(dict):
22195
23438
  def __init__(__self__, *,
@@ -22350,6 +23593,57 @@ class GetUsagePlanEntitlementTargetResult(dict):
22350
23593
  return pulumi.get(self, "deployment_id")
22351
23594
 
22352
23595
 
23596
+ @pulumi.output_type
23597
+ class GetUsagePlanLockResult(dict):
23598
+ def __init__(__self__, *,
23599
+ message: _builtins.str,
23600
+ related_resource_id: _builtins.str,
23601
+ time_created: _builtins.str,
23602
+ type: _builtins.str):
23603
+ """
23604
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
23605
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
23606
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
23607
+ :param _builtins.str type: Type of the lock.
23608
+ """
23609
+ pulumi.set(__self__, "message", message)
23610
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
23611
+ pulumi.set(__self__, "time_created", time_created)
23612
+ pulumi.set(__self__, "type", type)
23613
+
23614
+ @_builtins.property
23615
+ @pulumi.getter
23616
+ def message(self) -> _builtins.str:
23617
+ """
23618
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
23619
+ """
23620
+ return pulumi.get(self, "message")
23621
+
23622
+ @_builtins.property
23623
+ @pulumi.getter(name="relatedResourceId")
23624
+ def related_resource_id(self) -> _builtins.str:
23625
+ """
23626
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
23627
+ """
23628
+ return pulumi.get(self, "related_resource_id")
23629
+
23630
+ @_builtins.property
23631
+ @pulumi.getter(name="timeCreated")
23632
+ def time_created(self) -> _builtins.str:
23633
+ """
23634
+ The time this resource was created. An RFC3339 formatted datetime string.
23635
+ """
23636
+ return pulumi.get(self, "time_created")
23637
+
23638
+ @_builtins.property
23639
+ @pulumi.getter
23640
+ def type(self) -> _builtins.str:
23641
+ """
23642
+ Type of the lock.
23643
+ """
23644
+ return pulumi.get(self, "type")
23645
+
23646
+
22353
23647
  @pulumi.output_type
22354
23648
  class GetUsagePlansFilterResult(dict):
22355
23649
  def __init__(__self__, *,
@@ -22404,8 +23698,11 @@ class GetUsagePlansUsagePlanCollectionItemResult(dict):
22404
23698
  entitlements: Sequence['outputs.GetUsagePlansUsagePlanCollectionItemEntitlementResult'],
22405
23699
  freeform_tags: Mapping[str, _builtins.str],
22406
23700
  id: _builtins.str,
23701
+ is_lock_override: _builtins.bool,
22407
23702
  lifecycle_details: _builtins.str,
23703
+ locks: Sequence['outputs.GetUsagePlansUsagePlanCollectionItemLockResult'],
22408
23704
  state: _builtins.str,
23705
+ system_tags: Mapping[str, _builtins.str],
22409
23706
  time_created: _builtins.str,
22410
23707
  time_updated: _builtins.str):
22411
23708
  """
@@ -22416,7 +23713,9 @@ class GetUsagePlansUsagePlanCollectionItemResult(dict):
22416
23713
  :param Mapping[str, _builtins.str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
22417
23714
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a usage plan resource.
22418
23715
  :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
23716
+ :param Sequence['GetUsagePlansUsagePlanCollectionItemLockArgs'] locks: Locks associated with this resource.
22419
23717
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `ACTIVE`
23718
+ :param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
22420
23719
  :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
22421
23720
  :param _builtins.str time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
22422
23721
  """
@@ -22426,8 +23725,11 @@ class GetUsagePlansUsagePlanCollectionItemResult(dict):
22426
23725
  pulumi.set(__self__, "entitlements", entitlements)
22427
23726
  pulumi.set(__self__, "freeform_tags", freeform_tags)
22428
23727
  pulumi.set(__self__, "id", id)
23728
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
22429
23729
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
23730
+ pulumi.set(__self__, "locks", locks)
22430
23731
  pulumi.set(__self__, "state", state)
23732
+ pulumi.set(__self__, "system_tags", system_tags)
22431
23733
  pulumi.set(__self__, "time_created", time_created)
22432
23734
  pulumi.set(__self__, "time_updated", time_updated)
22433
23735
 
@@ -22479,6 +23781,11 @@ class GetUsagePlansUsagePlanCollectionItemResult(dict):
22479
23781
  """
22480
23782
  return pulumi.get(self, "id")
22481
23783
 
23784
+ @_builtins.property
23785
+ @pulumi.getter(name="isLockOverride")
23786
+ def is_lock_override(self) -> _builtins.bool:
23787
+ return pulumi.get(self, "is_lock_override")
23788
+
22482
23789
  @_builtins.property
22483
23790
  @pulumi.getter(name="lifecycleDetails")
22484
23791
  def lifecycle_details(self) -> _builtins.str:
@@ -22487,6 +23794,14 @@ class GetUsagePlansUsagePlanCollectionItemResult(dict):
22487
23794
  """
22488
23795
  return pulumi.get(self, "lifecycle_details")
22489
23796
 
23797
+ @_builtins.property
23798
+ @pulumi.getter
23799
+ def locks(self) -> Sequence['outputs.GetUsagePlansUsagePlanCollectionItemLockResult']:
23800
+ """
23801
+ Locks associated with this resource.
23802
+ """
23803
+ return pulumi.get(self, "locks")
23804
+
22490
23805
  @_builtins.property
22491
23806
  @pulumi.getter
22492
23807
  def state(self) -> _builtins.str:
@@ -22495,6 +23810,14 @@ class GetUsagePlansUsagePlanCollectionItemResult(dict):
22495
23810
  """
22496
23811
  return pulumi.get(self, "state")
22497
23812
 
23813
+ @_builtins.property
23814
+ @pulumi.getter(name="systemTags")
23815
+ def system_tags(self) -> Mapping[str, _builtins.str]:
23816
+ """
23817
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
23818
+ """
23819
+ return pulumi.get(self, "system_tags")
23820
+
22498
23821
  @_builtins.property
22499
23822
  @pulumi.getter(name="timeCreated")
22500
23823
  def time_created(self) -> _builtins.str:
@@ -22672,3 +23995,54 @@ class GetUsagePlansUsagePlanCollectionItemEntitlementTargetResult(dict):
22672
23995
  return pulumi.get(self, "deployment_id")
22673
23996
 
22674
23997
 
23998
+ @pulumi.output_type
23999
+ class GetUsagePlansUsagePlanCollectionItemLockResult(dict):
24000
+ def __init__(__self__, *,
24001
+ message: _builtins.str,
24002
+ related_resource_id: _builtins.str,
24003
+ time_created: _builtins.str,
24004
+ type: _builtins.str):
24005
+ """
24006
+ :param _builtins.str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
24007
+ :param _builtins.str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
24008
+ :param _builtins.str time_created: The time this resource was created. An RFC3339 formatted datetime string.
24009
+ :param _builtins.str type: Type of the lock.
24010
+ """
24011
+ pulumi.set(__self__, "message", message)
24012
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
24013
+ pulumi.set(__self__, "time_created", time_created)
24014
+ pulumi.set(__self__, "type", type)
24015
+
24016
+ @_builtins.property
24017
+ @pulumi.getter
24018
+ def message(self) -> _builtins.str:
24019
+ """
24020
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
24021
+ """
24022
+ return pulumi.get(self, "message")
24023
+
24024
+ @_builtins.property
24025
+ @pulumi.getter(name="relatedResourceId")
24026
+ def related_resource_id(self) -> _builtins.str:
24027
+ """
24028
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
24029
+ """
24030
+ return pulumi.get(self, "related_resource_id")
24031
+
24032
+ @_builtins.property
24033
+ @pulumi.getter(name="timeCreated")
24034
+ def time_created(self) -> _builtins.str:
24035
+ """
24036
+ The time this resource was created. An RFC3339 formatted datetime string.
24037
+ """
24038
+ return pulumi.get(self, "time_created")
24039
+
24040
+ @_builtins.property
24041
+ @pulumi.getter
24042
+ def type(self) -> _builtins.str:
24043
+ """
24044
+ Type of the lock.
24045
+ """
24046
+ return pulumi.get(self, "type")
24047
+
24048
+