pulumi-oci 2.10.0a1726208124__py3-none-any.whl → 2.11.0__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.
- pulumi_oci/__init__.py +62 -0
- pulumi_oci/bigdataservice/__init__.py +3 -0
- pulumi_oci/bigdataservice/_inputs.py +66 -0
- pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +136 -2
- pulumi_oci/bigdataservice/bds_instance_resource_principal_configuration.py +524 -0
- pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configuration.py +236 -0
- pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configurations.py +176 -0
- pulumi_oci/bigdataservice/outputs.py +175 -0
- pulumi_oci/capacitymanagement/__init__.py +8 -0
- pulumi_oci/capacitymanagement/_inputs.py +465 -3
- pulumi_oci/capacitymanagement/get_internal_namespace_occ_overviews.py +221 -0
- pulumi_oci/capacitymanagement/get_internal_occ_availability_catalogs.py +7 -7
- pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_block_details.py +150 -0
- pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_blocks.py +247 -0
- pulumi_oci/capacitymanagement/get_namespace_occ_overviews.py +204 -0
- pulumi_oci/capacitymanagement/get_occ_availability_catalog.py +1 -1
- pulumi_oci/capacitymanagement/get_occ_capacity_request.py +15 -2
- pulumi_oci/capacitymanagement/get_occ_capacity_requests.py +25 -5
- pulumi_oci/capacitymanagement/get_occ_customer_group.py +1 -1
- pulumi_oci/capacitymanagement/get_occ_handover_resource_block_details.py +150 -0
- pulumi_oci/capacitymanagement/get_occ_handover_resource_blocks.py +227 -0
- pulumi_oci/capacitymanagement/occ_availability_catalog.py +4 -4
- pulumi_oci/capacitymanagement/occ_capacity_request.py +78 -32
- pulumi_oci/capacitymanagement/occ_customer_group.py +690 -0
- pulumi_oci/capacitymanagement/occ_customer_group_occ_customer.py +412 -0
- pulumi_oci/capacitymanagement/outputs.py +1668 -166
- pulumi_oci/containerengine/__init__.py +1 -0
- pulumi_oci/containerengine/get_cluster.py +327 -0
- pulumi_oci/containerengine/outputs.py +492 -0
- pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +717 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +804 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +1231 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +301 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +196 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +431 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +233 -0
- pulumi_oci/fleetsoftwareupdate/outputs.py +2129 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +7 -0
- pulumi_oci/generativeai/get_model.py +3 -0
- pulumi_oci/generativeai/outputs.py +4 -0
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +742 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/RECORD +55 -25
- {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/top_level.txt +0 -0
@@ -67,7 +67,19 @@ __all__ = [
|
|
67
67
|
'GetAddonsAddonAddonErrorResult',
|
68
68
|
'GetAddonsAddonConfigurationResult',
|
69
69
|
'GetAddonsFilterResult',
|
70
|
+
'GetClusterClusterPodNetworkOptionResult',
|
71
|
+
'GetClusterEndpointResult',
|
72
|
+
'GetClusterEndpointConfigResult',
|
73
|
+
'GetClusterImagePolicyConfigResult',
|
74
|
+
'GetClusterImagePolicyConfigKeyDetailResult',
|
75
|
+
'GetClusterMetadataResult',
|
76
|
+
'GetClusterOptionResult',
|
77
|
+
'GetClusterOptionAddOnResult',
|
78
|
+
'GetClusterOptionAdmissionControllerOptionResult',
|
70
79
|
'GetClusterOptionClusterPodNetworkOptionResult',
|
80
|
+
'GetClusterOptionKubernetesNetworkConfigResult',
|
81
|
+
'GetClusterOptionPersistentVolumeConfigResult',
|
82
|
+
'GetClusterOptionServiceLbConfigResult',
|
71
83
|
'GetClusterWorkloadMappingsFilterResult',
|
72
84
|
'GetClusterWorkloadMappingsWorkloadMappingResult',
|
73
85
|
'GetClustersClusterResult',
|
@@ -4195,6 +4207,399 @@ class GetAddonsFilterResult(dict):
|
|
4195
4207
|
return pulumi.get(self, "regex")
|
4196
4208
|
|
4197
4209
|
|
4210
|
+
@pulumi.output_type
|
4211
|
+
class GetClusterClusterPodNetworkOptionResult(dict):
|
4212
|
+
def __init__(__self__, *,
|
4213
|
+
cni_type: str):
|
4214
|
+
"""
|
4215
|
+
:param str cni_type: The CNI used by the node pools of this cluster
|
4216
|
+
"""
|
4217
|
+
pulumi.set(__self__, "cni_type", cni_type)
|
4218
|
+
|
4219
|
+
@property
|
4220
|
+
@pulumi.getter(name="cniType")
|
4221
|
+
def cni_type(self) -> str:
|
4222
|
+
"""
|
4223
|
+
The CNI used by the node pools of this cluster
|
4224
|
+
"""
|
4225
|
+
return pulumi.get(self, "cni_type")
|
4226
|
+
|
4227
|
+
|
4228
|
+
@pulumi.output_type
|
4229
|
+
class GetClusterEndpointResult(dict):
|
4230
|
+
def __init__(__self__, *,
|
4231
|
+
kubernetes: str,
|
4232
|
+
private_endpoint: str,
|
4233
|
+
public_endpoint: str,
|
4234
|
+
vcn_hostname_endpoint: str):
|
4235
|
+
"""
|
4236
|
+
:param str kubernetes: The non-native networking Kubernetes API server endpoint.
|
4237
|
+
:param str private_endpoint: The private native networking Kubernetes API server endpoint.
|
4238
|
+
:param str public_endpoint: The public native networking Kubernetes API server endpoint, if one was requested.
|
4239
|
+
:param str vcn_hostname_endpoint: The FQDN assigned to the Kubernetes API private endpoint. Example: 'https://yourVcnHostnameEndpoint'
|
4240
|
+
"""
|
4241
|
+
pulumi.set(__self__, "kubernetes", kubernetes)
|
4242
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
4243
|
+
pulumi.set(__self__, "public_endpoint", public_endpoint)
|
4244
|
+
pulumi.set(__self__, "vcn_hostname_endpoint", vcn_hostname_endpoint)
|
4245
|
+
|
4246
|
+
@property
|
4247
|
+
@pulumi.getter
|
4248
|
+
def kubernetes(self) -> str:
|
4249
|
+
"""
|
4250
|
+
The non-native networking Kubernetes API server endpoint.
|
4251
|
+
"""
|
4252
|
+
return pulumi.get(self, "kubernetes")
|
4253
|
+
|
4254
|
+
@property
|
4255
|
+
@pulumi.getter(name="privateEndpoint")
|
4256
|
+
def private_endpoint(self) -> str:
|
4257
|
+
"""
|
4258
|
+
The private native networking Kubernetes API server endpoint.
|
4259
|
+
"""
|
4260
|
+
return pulumi.get(self, "private_endpoint")
|
4261
|
+
|
4262
|
+
@property
|
4263
|
+
@pulumi.getter(name="publicEndpoint")
|
4264
|
+
def public_endpoint(self) -> str:
|
4265
|
+
"""
|
4266
|
+
The public native networking Kubernetes API server endpoint, if one was requested.
|
4267
|
+
"""
|
4268
|
+
return pulumi.get(self, "public_endpoint")
|
4269
|
+
|
4270
|
+
@property
|
4271
|
+
@pulumi.getter(name="vcnHostnameEndpoint")
|
4272
|
+
def vcn_hostname_endpoint(self) -> str:
|
4273
|
+
"""
|
4274
|
+
The FQDN assigned to the Kubernetes API private endpoint. Example: 'https://yourVcnHostnameEndpoint'
|
4275
|
+
"""
|
4276
|
+
return pulumi.get(self, "vcn_hostname_endpoint")
|
4277
|
+
|
4278
|
+
|
4279
|
+
@pulumi.output_type
|
4280
|
+
class GetClusterEndpointConfigResult(dict):
|
4281
|
+
def __init__(__self__, *,
|
4282
|
+
is_public_ip_enabled: bool,
|
4283
|
+
nsg_ids: Sequence[str],
|
4284
|
+
subnet_id: str):
|
4285
|
+
"""
|
4286
|
+
:param bool is_public_ip_enabled: Whether the cluster should be assigned a public IP address. Defaults to false. If set to true on a private subnet, the cluster provisioning will fail.
|
4287
|
+
:param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to apply to the cluster endpoint. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/).
|
4288
|
+
:param str subnet_id: The OCID of the regional subnet in which to place the Cluster endpoint.
|
4289
|
+
"""
|
4290
|
+
pulumi.set(__self__, "is_public_ip_enabled", is_public_ip_enabled)
|
4291
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
4292
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
4293
|
+
|
4294
|
+
@property
|
4295
|
+
@pulumi.getter(name="isPublicIpEnabled")
|
4296
|
+
def is_public_ip_enabled(self) -> bool:
|
4297
|
+
"""
|
4298
|
+
Whether the cluster should be assigned a public IP address. Defaults to false. If set to true on a private subnet, the cluster provisioning will fail.
|
4299
|
+
"""
|
4300
|
+
return pulumi.get(self, "is_public_ip_enabled")
|
4301
|
+
|
4302
|
+
@property
|
4303
|
+
@pulumi.getter(name="nsgIds")
|
4304
|
+
def nsg_ids(self) -> Sequence[str]:
|
4305
|
+
"""
|
4306
|
+
A list of the OCIDs of the network security groups (NSGs) to apply to the cluster endpoint. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/).
|
4307
|
+
"""
|
4308
|
+
return pulumi.get(self, "nsg_ids")
|
4309
|
+
|
4310
|
+
@property
|
4311
|
+
@pulumi.getter(name="subnetId")
|
4312
|
+
def subnet_id(self) -> str:
|
4313
|
+
"""
|
4314
|
+
The OCID of the regional subnet in which to place the Cluster endpoint.
|
4315
|
+
"""
|
4316
|
+
return pulumi.get(self, "subnet_id")
|
4317
|
+
|
4318
|
+
|
4319
|
+
@pulumi.output_type
|
4320
|
+
class GetClusterImagePolicyConfigResult(dict):
|
4321
|
+
def __init__(__self__, *,
|
4322
|
+
is_policy_enabled: bool,
|
4323
|
+
key_details: Sequence['outputs.GetClusterImagePolicyConfigKeyDetailResult']):
|
4324
|
+
"""
|
4325
|
+
:param bool is_policy_enabled: Whether the image verification policy is enabled. Defaults to false. If set to true, the images will be verified against the policy at runtime.
|
4326
|
+
:param Sequence['GetClusterImagePolicyConfigKeyDetailArgs'] key_details: A list of KMS key details.
|
4327
|
+
"""
|
4328
|
+
pulumi.set(__self__, "is_policy_enabled", is_policy_enabled)
|
4329
|
+
pulumi.set(__self__, "key_details", key_details)
|
4330
|
+
|
4331
|
+
@property
|
4332
|
+
@pulumi.getter(name="isPolicyEnabled")
|
4333
|
+
def is_policy_enabled(self) -> bool:
|
4334
|
+
"""
|
4335
|
+
Whether the image verification policy is enabled. Defaults to false. If set to true, the images will be verified against the policy at runtime.
|
4336
|
+
"""
|
4337
|
+
return pulumi.get(self, "is_policy_enabled")
|
4338
|
+
|
4339
|
+
@property
|
4340
|
+
@pulumi.getter(name="keyDetails")
|
4341
|
+
def key_details(self) -> Sequence['outputs.GetClusterImagePolicyConfigKeyDetailResult']:
|
4342
|
+
"""
|
4343
|
+
A list of KMS key details.
|
4344
|
+
"""
|
4345
|
+
return pulumi.get(self, "key_details")
|
4346
|
+
|
4347
|
+
|
4348
|
+
@pulumi.output_type
|
4349
|
+
class GetClusterImagePolicyConfigKeyDetailResult(dict):
|
4350
|
+
def __init__(__self__, *,
|
4351
|
+
kms_key_id: str):
|
4352
|
+
"""
|
4353
|
+
:param str kms_key_id: The OCID of the KMS key to be used as the master encryption key for Kubernetes secret encryption.
|
4354
|
+
"""
|
4355
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
4356
|
+
|
4357
|
+
@property
|
4358
|
+
@pulumi.getter(name="kmsKeyId")
|
4359
|
+
def kms_key_id(self) -> str:
|
4360
|
+
"""
|
4361
|
+
The OCID of the KMS key to be used as the master encryption key for Kubernetes secret encryption.
|
4362
|
+
"""
|
4363
|
+
return pulumi.get(self, "kms_key_id")
|
4364
|
+
|
4365
|
+
|
4366
|
+
@pulumi.output_type
|
4367
|
+
class GetClusterMetadataResult(dict):
|
4368
|
+
def __init__(__self__, *,
|
4369
|
+
created_by_user_id: str,
|
4370
|
+
created_by_work_request_id: str,
|
4371
|
+
deleted_by_user_id: str,
|
4372
|
+
deleted_by_work_request_id: str,
|
4373
|
+
time_created: str,
|
4374
|
+
time_credential_expiration: str,
|
4375
|
+
time_deleted: str,
|
4376
|
+
time_updated: str,
|
4377
|
+
updated_by_user_id: str,
|
4378
|
+
updated_by_work_request_id: str):
|
4379
|
+
"""
|
4380
|
+
:param str created_by_user_id: The user who created the cluster.
|
4381
|
+
:param str created_by_work_request_id: The OCID of the work request which created the cluster.
|
4382
|
+
:param str deleted_by_user_id: The user who deleted the cluster.
|
4383
|
+
:param str deleted_by_work_request_id: The OCID of the work request which deleted the cluster.
|
4384
|
+
:param str time_created: The time the cluster was created.
|
4385
|
+
:param str time_credential_expiration: The time until which the cluster credential is valid.
|
4386
|
+
:param str time_deleted: The time the cluster was deleted.
|
4387
|
+
:param str time_updated: The time the cluster was updated.
|
4388
|
+
:param str updated_by_user_id: The user who updated the cluster.
|
4389
|
+
:param str updated_by_work_request_id: The OCID of the work request which updated the cluster.
|
4390
|
+
"""
|
4391
|
+
pulumi.set(__self__, "created_by_user_id", created_by_user_id)
|
4392
|
+
pulumi.set(__self__, "created_by_work_request_id", created_by_work_request_id)
|
4393
|
+
pulumi.set(__self__, "deleted_by_user_id", deleted_by_user_id)
|
4394
|
+
pulumi.set(__self__, "deleted_by_work_request_id", deleted_by_work_request_id)
|
4395
|
+
pulumi.set(__self__, "time_created", time_created)
|
4396
|
+
pulumi.set(__self__, "time_credential_expiration", time_credential_expiration)
|
4397
|
+
pulumi.set(__self__, "time_deleted", time_deleted)
|
4398
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
4399
|
+
pulumi.set(__self__, "updated_by_user_id", updated_by_user_id)
|
4400
|
+
pulumi.set(__self__, "updated_by_work_request_id", updated_by_work_request_id)
|
4401
|
+
|
4402
|
+
@property
|
4403
|
+
@pulumi.getter(name="createdByUserId")
|
4404
|
+
def created_by_user_id(self) -> str:
|
4405
|
+
"""
|
4406
|
+
The user who created the cluster.
|
4407
|
+
"""
|
4408
|
+
return pulumi.get(self, "created_by_user_id")
|
4409
|
+
|
4410
|
+
@property
|
4411
|
+
@pulumi.getter(name="createdByWorkRequestId")
|
4412
|
+
def created_by_work_request_id(self) -> str:
|
4413
|
+
"""
|
4414
|
+
The OCID of the work request which created the cluster.
|
4415
|
+
"""
|
4416
|
+
return pulumi.get(self, "created_by_work_request_id")
|
4417
|
+
|
4418
|
+
@property
|
4419
|
+
@pulumi.getter(name="deletedByUserId")
|
4420
|
+
def deleted_by_user_id(self) -> str:
|
4421
|
+
"""
|
4422
|
+
The user who deleted the cluster.
|
4423
|
+
"""
|
4424
|
+
return pulumi.get(self, "deleted_by_user_id")
|
4425
|
+
|
4426
|
+
@property
|
4427
|
+
@pulumi.getter(name="deletedByWorkRequestId")
|
4428
|
+
def deleted_by_work_request_id(self) -> str:
|
4429
|
+
"""
|
4430
|
+
The OCID of the work request which deleted the cluster.
|
4431
|
+
"""
|
4432
|
+
return pulumi.get(self, "deleted_by_work_request_id")
|
4433
|
+
|
4434
|
+
@property
|
4435
|
+
@pulumi.getter(name="timeCreated")
|
4436
|
+
def time_created(self) -> str:
|
4437
|
+
"""
|
4438
|
+
The time the cluster was created.
|
4439
|
+
"""
|
4440
|
+
return pulumi.get(self, "time_created")
|
4441
|
+
|
4442
|
+
@property
|
4443
|
+
@pulumi.getter(name="timeCredentialExpiration")
|
4444
|
+
def time_credential_expiration(self) -> str:
|
4445
|
+
"""
|
4446
|
+
The time until which the cluster credential is valid.
|
4447
|
+
"""
|
4448
|
+
return pulumi.get(self, "time_credential_expiration")
|
4449
|
+
|
4450
|
+
@property
|
4451
|
+
@pulumi.getter(name="timeDeleted")
|
4452
|
+
def time_deleted(self) -> str:
|
4453
|
+
"""
|
4454
|
+
The time the cluster was deleted.
|
4455
|
+
"""
|
4456
|
+
return pulumi.get(self, "time_deleted")
|
4457
|
+
|
4458
|
+
@property
|
4459
|
+
@pulumi.getter(name="timeUpdated")
|
4460
|
+
def time_updated(self) -> str:
|
4461
|
+
"""
|
4462
|
+
The time the cluster was updated.
|
4463
|
+
"""
|
4464
|
+
return pulumi.get(self, "time_updated")
|
4465
|
+
|
4466
|
+
@property
|
4467
|
+
@pulumi.getter(name="updatedByUserId")
|
4468
|
+
def updated_by_user_id(self) -> str:
|
4469
|
+
"""
|
4470
|
+
The user who updated the cluster.
|
4471
|
+
"""
|
4472
|
+
return pulumi.get(self, "updated_by_user_id")
|
4473
|
+
|
4474
|
+
@property
|
4475
|
+
@pulumi.getter(name="updatedByWorkRequestId")
|
4476
|
+
def updated_by_work_request_id(self) -> str:
|
4477
|
+
"""
|
4478
|
+
The OCID of the work request which updated the cluster.
|
4479
|
+
"""
|
4480
|
+
return pulumi.get(self, "updated_by_work_request_id")
|
4481
|
+
|
4482
|
+
|
4483
|
+
@pulumi.output_type
|
4484
|
+
class GetClusterOptionResult(dict):
|
4485
|
+
def __init__(__self__, *,
|
4486
|
+
add_ons: Sequence['outputs.GetClusterOptionAddOnResult'],
|
4487
|
+
admission_controller_options: Sequence['outputs.GetClusterOptionAdmissionControllerOptionResult'],
|
4488
|
+
kubernetes_network_configs: Sequence['outputs.GetClusterOptionKubernetesNetworkConfigResult'],
|
4489
|
+
persistent_volume_configs: Sequence['outputs.GetClusterOptionPersistentVolumeConfigResult'],
|
4490
|
+
service_lb_configs: Sequence['outputs.GetClusterOptionServiceLbConfigResult'],
|
4491
|
+
service_lb_subnet_ids: Sequence[str]):
|
4492
|
+
"""
|
4493
|
+
:param Sequence['GetClusterOptionAddOnArgs'] add_ons: Configurable cluster add-ons
|
4494
|
+
:param Sequence['GetClusterOptionAdmissionControllerOptionArgs'] admission_controller_options: Configurable cluster admission controllers
|
4495
|
+
:param Sequence['GetClusterOptionKubernetesNetworkConfigArgs'] kubernetes_network_configs: Network configuration for Kubernetes.
|
4496
|
+
:param Sequence['GetClusterOptionPersistentVolumeConfigArgs'] persistent_volume_configs: Configuration to be applied to block volumes created by Kubernetes Persistent Volume Claims (PVC)
|
4497
|
+
:param Sequence['GetClusterOptionServiceLbConfigArgs'] service_lb_configs: Configuration to be applied to load balancers created by Kubernetes services
|
4498
|
+
:param Sequence[str] service_lb_subnet_ids: The OCIDs of the subnets used for Kubernetes services load balancers.
|
4499
|
+
"""
|
4500
|
+
pulumi.set(__self__, "add_ons", add_ons)
|
4501
|
+
pulumi.set(__self__, "admission_controller_options", admission_controller_options)
|
4502
|
+
pulumi.set(__self__, "kubernetes_network_configs", kubernetes_network_configs)
|
4503
|
+
pulumi.set(__self__, "persistent_volume_configs", persistent_volume_configs)
|
4504
|
+
pulumi.set(__self__, "service_lb_configs", service_lb_configs)
|
4505
|
+
pulumi.set(__self__, "service_lb_subnet_ids", service_lb_subnet_ids)
|
4506
|
+
|
4507
|
+
@property
|
4508
|
+
@pulumi.getter(name="addOns")
|
4509
|
+
def add_ons(self) -> Sequence['outputs.GetClusterOptionAddOnResult']:
|
4510
|
+
"""
|
4511
|
+
Configurable cluster add-ons
|
4512
|
+
"""
|
4513
|
+
return pulumi.get(self, "add_ons")
|
4514
|
+
|
4515
|
+
@property
|
4516
|
+
@pulumi.getter(name="admissionControllerOptions")
|
4517
|
+
def admission_controller_options(self) -> Sequence['outputs.GetClusterOptionAdmissionControllerOptionResult']:
|
4518
|
+
"""
|
4519
|
+
Configurable cluster admission controllers
|
4520
|
+
"""
|
4521
|
+
return pulumi.get(self, "admission_controller_options")
|
4522
|
+
|
4523
|
+
@property
|
4524
|
+
@pulumi.getter(name="kubernetesNetworkConfigs")
|
4525
|
+
def kubernetes_network_configs(self) -> Sequence['outputs.GetClusterOptionKubernetesNetworkConfigResult']:
|
4526
|
+
"""
|
4527
|
+
Network configuration for Kubernetes.
|
4528
|
+
"""
|
4529
|
+
return pulumi.get(self, "kubernetes_network_configs")
|
4530
|
+
|
4531
|
+
@property
|
4532
|
+
@pulumi.getter(name="persistentVolumeConfigs")
|
4533
|
+
def persistent_volume_configs(self) -> Sequence['outputs.GetClusterOptionPersistentVolumeConfigResult']:
|
4534
|
+
"""
|
4535
|
+
Configuration to be applied to block volumes created by Kubernetes Persistent Volume Claims (PVC)
|
4536
|
+
"""
|
4537
|
+
return pulumi.get(self, "persistent_volume_configs")
|
4538
|
+
|
4539
|
+
@property
|
4540
|
+
@pulumi.getter(name="serviceLbConfigs")
|
4541
|
+
def service_lb_configs(self) -> Sequence['outputs.GetClusterOptionServiceLbConfigResult']:
|
4542
|
+
"""
|
4543
|
+
Configuration to be applied to load balancers created by Kubernetes services
|
4544
|
+
"""
|
4545
|
+
return pulumi.get(self, "service_lb_configs")
|
4546
|
+
|
4547
|
+
@property
|
4548
|
+
@pulumi.getter(name="serviceLbSubnetIds")
|
4549
|
+
def service_lb_subnet_ids(self) -> Sequence[str]:
|
4550
|
+
"""
|
4551
|
+
The OCIDs of the subnets used for Kubernetes services load balancers.
|
4552
|
+
"""
|
4553
|
+
return pulumi.get(self, "service_lb_subnet_ids")
|
4554
|
+
|
4555
|
+
|
4556
|
+
@pulumi.output_type
|
4557
|
+
class GetClusterOptionAddOnResult(dict):
|
4558
|
+
def __init__(__self__, *,
|
4559
|
+
is_kubernetes_dashboard_enabled: bool,
|
4560
|
+
is_tiller_enabled: bool):
|
4561
|
+
"""
|
4562
|
+
:param bool is_kubernetes_dashboard_enabled: Whether or not to enable the Kubernetes Dashboard add-on.
|
4563
|
+
:param bool is_tiller_enabled: Whether or not to enable the Tiller add-on.
|
4564
|
+
"""
|
4565
|
+
pulumi.set(__self__, "is_kubernetes_dashboard_enabled", is_kubernetes_dashboard_enabled)
|
4566
|
+
pulumi.set(__self__, "is_tiller_enabled", is_tiller_enabled)
|
4567
|
+
|
4568
|
+
@property
|
4569
|
+
@pulumi.getter(name="isKubernetesDashboardEnabled")
|
4570
|
+
def is_kubernetes_dashboard_enabled(self) -> bool:
|
4571
|
+
"""
|
4572
|
+
Whether or not to enable the Kubernetes Dashboard add-on.
|
4573
|
+
"""
|
4574
|
+
return pulumi.get(self, "is_kubernetes_dashboard_enabled")
|
4575
|
+
|
4576
|
+
@property
|
4577
|
+
@pulumi.getter(name="isTillerEnabled")
|
4578
|
+
def is_tiller_enabled(self) -> bool:
|
4579
|
+
"""
|
4580
|
+
Whether or not to enable the Tiller add-on.
|
4581
|
+
"""
|
4582
|
+
return pulumi.get(self, "is_tiller_enabled")
|
4583
|
+
|
4584
|
+
|
4585
|
+
@pulumi.output_type
|
4586
|
+
class GetClusterOptionAdmissionControllerOptionResult(dict):
|
4587
|
+
def __init__(__self__, *,
|
4588
|
+
is_pod_security_policy_enabled: bool):
|
4589
|
+
"""
|
4590
|
+
:param bool is_pod_security_policy_enabled: Whether or not to enable the Pod Security Policy admission controller.
|
4591
|
+
"""
|
4592
|
+
pulumi.set(__self__, "is_pod_security_policy_enabled", is_pod_security_policy_enabled)
|
4593
|
+
|
4594
|
+
@property
|
4595
|
+
@pulumi.getter(name="isPodSecurityPolicyEnabled")
|
4596
|
+
def is_pod_security_policy_enabled(self) -> bool:
|
4597
|
+
"""
|
4598
|
+
Whether or not to enable the Pod Security Policy admission controller.
|
4599
|
+
"""
|
4600
|
+
return pulumi.get(self, "is_pod_security_policy_enabled")
|
4601
|
+
|
4602
|
+
|
4198
4603
|
@pulumi.output_type
|
4199
4604
|
class GetClusterOptionClusterPodNetworkOptionResult(dict):
|
4200
4605
|
def __init__(__self__, *,
|
@@ -4213,6 +4618,93 @@ class GetClusterOptionClusterPodNetworkOptionResult(dict):
|
|
4213
4618
|
return pulumi.get(self, "cni_type")
|
4214
4619
|
|
4215
4620
|
|
4621
|
+
@pulumi.output_type
|
4622
|
+
class GetClusterOptionKubernetesNetworkConfigResult(dict):
|
4623
|
+
def __init__(__self__, *,
|
4624
|
+
pods_cidr: str,
|
4625
|
+
services_cidr: str):
|
4626
|
+
"""
|
4627
|
+
:param str pods_cidr: The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
|
4628
|
+
:param str services_cidr: The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
|
4629
|
+
"""
|
4630
|
+
pulumi.set(__self__, "pods_cidr", pods_cidr)
|
4631
|
+
pulumi.set(__self__, "services_cidr", services_cidr)
|
4632
|
+
|
4633
|
+
@property
|
4634
|
+
@pulumi.getter(name="podsCidr")
|
4635
|
+
def pods_cidr(self) -> str:
|
4636
|
+
"""
|
4637
|
+
The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
|
4638
|
+
"""
|
4639
|
+
return pulumi.get(self, "pods_cidr")
|
4640
|
+
|
4641
|
+
@property
|
4642
|
+
@pulumi.getter(name="servicesCidr")
|
4643
|
+
def services_cidr(self) -> str:
|
4644
|
+
"""
|
4645
|
+
The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
|
4646
|
+
"""
|
4647
|
+
return pulumi.get(self, "services_cidr")
|
4648
|
+
|
4649
|
+
|
4650
|
+
@pulumi.output_type
|
4651
|
+
class GetClusterOptionPersistentVolumeConfigResult(dict):
|
4652
|
+
def __init__(__self__, *,
|
4653
|
+
defined_tags: Mapping[str, str],
|
4654
|
+
freeform_tags: Mapping[str, str]):
|
4655
|
+
"""
|
4656
|
+
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4657
|
+
:param Mapping[str, 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"}`
|
4658
|
+
"""
|
4659
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
4660
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
4661
|
+
|
4662
|
+
@property
|
4663
|
+
@pulumi.getter(name="definedTags")
|
4664
|
+
def defined_tags(self) -> Mapping[str, str]:
|
4665
|
+
"""
|
4666
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4667
|
+
"""
|
4668
|
+
return pulumi.get(self, "defined_tags")
|
4669
|
+
|
4670
|
+
@property
|
4671
|
+
@pulumi.getter(name="freeformTags")
|
4672
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
4673
|
+
"""
|
4674
|
+
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"}`
|
4675
|
+
"""
|
4676
|
+
return pulumi.get(self, "freeform_tags")
|
4677
|
+
|
4678
|
+
|
4679
|
+
@pulumi.output_type
|
4680
|
+
class GetClusterOptionServiceLbConfigResult(dict):
|
4681
|
+
def __init__(__self__, *,
|
4682
|
+
defined_tags: Mapping[str, str],
|
4683
|
+
freeform_tags: Mapping[str, str]):
|
4684
|
+
"""
|
4685
|
+
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4686
|
+
:param Mapping[str, 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"}`
|
4687
|
+
"""
|
4688
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
4689
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
4690
|
+
|
4691
|
+
@property
|
4692
|
+
@pulumi.getter(name="definedTags")
|
4693
|
+
def defined_tags(self) -> Mapping[str, str]:
|
4694
|
+
"""
|
4695
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4696
|
+
"""
|
4697
|
+
return pulumi.get(self, "defined_tags")
|
4698
|
+
|
4699
|
+
@property
|
4700
|
+
@pulumi.getter(name="freeformTags")
|
4701
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
4702
|
+
"""
|
4703
|
+
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"}`
|
4704
|
+
"""
|
4705
|
+
return pulumi.get(self, "freeform_tags")
|
4706
|
+
|
4707
|
+
|
4216
4708
|
@pulumi.output_type
|
4217
4709
|
class GetClusterWorkloadMappingsFilterResult(dict):
|
4218
4710
|
def __init__(__self__, *,
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .fsu_collection import *
|
9
|
+
from .fsu_cycle import *
|
10
|
+
from .get_fsu_collection import *
|
11
|
+
from .get_fsu_collections import *
|
12
|
+
from .get_fsu_cycle import *
|
13
|
+
from .get_fsu_cycles import *
|
14
|
+
from ._inputs import *
|
15
|
+
from . import outputs
|