pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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.
Files changed (97) hide show
  1. pulumi_oci/__init__.py +24 -19
  2. pulumi_oci/containerengine/_inputs.py +341 -0
  3. pulumi_oci/containerengine/cluster.py +64 -0
  4. pulumi_oci/containerengine/get_cluster.py +12 -1
  5. pulumi_oci/containerengine/outputs.py +582 -0
  6. pulumi_oci/core/_inputs.py +373 -37
  7. pulumi_oci/core/boot_volume.py +90 -5
  8. pulumi_oci/core/get_block_volume_replica.py +15 -1
  9. pulumi_oci/core/get_boot_volume.py +15 -4
  10. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  11. pulumi_oci/core/get_instance.py +1 -1
  12. pulumi_oci/core/get_virtual_circuit.py +18 -4
  13. pulumi_oci/core/get_volume.py +18 -4
  14. pulumi_oci/core/instance.py +7 -7
  15. pulumi_oci/core/instance_configuration.py +4 -0
  16. pulumi_oci/core/outputs.py +738 -53
  17. pulumi_oci/core/virtual_circuit.py +30 -2
  18. pulumi_oci/core/volume.py +110 -12
  19. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  20. pulumi_oci/core/volume_group.py +56 -5
  21. pulumi_oci/database/_inputs.py +642 -0
  22. pulumi_oci/database/autonomous_container_database.py +14 -14
  23. pulumi_oci/database/autonomous_database.py +75 -0
  24. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  25. pulumi_oci/database/get_autonomous_database.py +29 -1
  26. pulumi_oci/database/get_autonomous_databases.py +22 -28
  27. pulumi_oci/database/outputs.py +1669 -86
  28. pulumi_oci/datasafe/__init__.py +1 -0
  29. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  30. pulumi_oci/datascience/_inputs.py +353 -0
  31. pulumi_oci/datascience/get_model.py +85 -1
  32. pulumi_oci/datascience/get_models.py +5 -0
  33. pulumi_oci/datascience/model.py +206 -66
  34. pulumi_oci/datascience/outputs.py +759 -0
  35. pulumi_oci/desktops/_inputs.py +175 -13
  36. pulumi_oci/desktops/desktop_pool.py +67 -0
  37. pulumi_oci/desktops/get_desktop_pool.py +16 -1
  38. pulumi_oci/desktops/outputs.py +339 -18
  39. pulumi_oci/dns/__init__.py +2 -0
  40. pulumi_oci/dns/_inputs.py +1157 -12
  41. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  42. pulumi_oci/dns/get_records.py +45 -13
  43. pulumi_oci/dns/get_resolver.py +8 -6
  44. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  45. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  46. pulumi_oci/dns/get_resolvers.py +12 -12
  47. pulumi_oci/dns/get_rrset.py +16 -16
  48. pulumi_oci/dns/get_rrsets.py +12 -10
  49. pulumi_oci/dns/get_view.py +8 -4
  50. pulumi_oci/dns/get_views.py +12 -12
  51. pulumi_oci/dns/get_zones.py +33 -13
  52. pulumi_oci/dns/outputs.py +1388 -79
  53. pulumi_oci/dns/record.py +12 -12
  54. pulumi_oci/dns/resolver.py +7 -7
  55. pulumi_oci/dns/resolver_endpoint.py +2 -2
  56. pulumi_oci/dns/rrset.py +50 -41
  57. pulumi_oci/dns/zone.py +176 -17
  58. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  59. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  60. pulumi_oci/filestorage/_inputs.py +651 -0
  61. pulumi_oci/filestorage/export.py +96 -3
  62. pulumi_oci/filestorage/file_system.py +93 -0
  63. pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
  64. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
  65. pulumi_oci/filestorage/get_outbound_connector.py +26 -1
  66. pulumi_oci/filestorage/get_replication.py +27 -1
  67. pulumi_oci/filestorage/get_snapshot.py +27 -1
  68. pulumi_oci/filestorage/mount_target.py +108 -0
  69. pulumi_oci/filestorage/outbound_connector.py +93 -0
  70. pulumi_oci/filestorage/outputs.py +1218 -2
  71. pulumi_oci/filestorage/replication.py +95 -0
  72. pulumi_oci/filestorage/snapshot.py +97 -2
  73. pulumi_oci/goldengate/__init__.py +1 -0
  74. pulumi_oci/goldengate/_inputs.py +165 -0
  75. pulumi_oci/goldengate/connection.py +49 -35
  76. pulumi_oci/goldengate/database_registration.py +7 -7
  77. pulumi_oci/goldengate/deployment.py +79 -4
  78. pulumi_oci/goldengate/get_deployment.py +30 -2
  79. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  80. pulumi_oci/goldengate/outputs.py +409 -2
  81. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
  82. pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
  83. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  84. pulumi_oci/pulumi-plugin.json +1 -1
  85. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
  86. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
  87. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
  88. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  89. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  90. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  91. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  92. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  93. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  94. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  95. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  96. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  97. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py CHANGED
@@ -123,8 +123,6 @@ if typing.TYPE_CHECKING:
123
123
  generativeai = __generativeai
124
124
  import pulumi_oci.genericartifactscontent as __genericartifactscontent
125
125
  genericartifactscontent = __genericartifactscontent
126
- import pulumi_oci.globallydistributeddatabase as __globallydistributeddatabase
127
- globallydistributeddatabase = __globallydistributeddatabase
128
126
  import pulumi_oci.goldengate as __goldengate
129
127
  goldengate = __goldengate
130
128
  import pulumi_oci.healthchecks as __healthchecks
@@ -311,7 +309,6 @@ else:
311
309
  fusionapps = _utilities.lazy_import('pulumi_oci.fusionapps')
312
310
  generativeai = _utilities.lazy_import('pulumi_oci.generativeai')
313
311
  genericartifactscontent = _utilities.lazy_import('pulumi_oci.genericartifactscontent')
314
- globallydistributeddatabase = _utilities.lazy_import('pulumi_oci.globallydistributeddatabase')
315
312
  goldengate = _utilities.lazy_import('pulumi_oci.goldengate')
316
313
  healthchecks = _utilities.lazy_import('pulumi_oci.healthchecks')
317
314
  identity = _utilities.lazy_import('pulumi_oci.identity')
@@ -2084,6 +2081,14 @@ _utilities.register(
2084
2081
  "oci:DataSafe/discoveryMod:DiscoveryMod": "DiscoveryMod"
2085
2082
  }
2086
2083
  },
2084
+ {
2085
+ "pkg": "oci",
2086
+ "mod": "DataSafe/generateOnPremConnectorConfiguration",
2087
+ "fqn": "pulumi_oci.datasafe",
2088
+ "classes": {
2089
+ "oci:DataSafe/generateOnPremConnectorConfiguration:GenerateOnPremConnectorConfiguration": "GenerateOnPremConnectorConfiguration"
2090
+ }
2091
+ },
2087
2092
  {
2088
2093
  "pkg": "oci",
2089
2094
  "mod": "DataSafe/libraryMasingFormat",
@@ -3516,6 +3521,22 @@ _utilities.register(
3516
3521
  "oci:Dns/zone:Zone": "Zone"
3517
3522
  }
3518
3523
  },
3524
+ {
3525
+ "pkg": "oci",
3526
+ "mod": "Dns/zonePromoteDnssecKeyVersion",
3527
+ "fqn": "pulumi_oci.dns",
3528
+ "classes": {
3529
+ "oci:Dns/zonePromoteDnssecKeyVersion:ZonePromoteDnssecKeyVersion": "ZonePromoteDnssecKeyVersion"
3530
+ }
3531
+ },
3532
+ {
3533
+ "pkg": "oci",
3534
+ "mod": "Dns/zoneStageDnssecKeyVersion",
3535
+ "fqn": "pulumi_oci.dns",
3536
+ "classes": {
3537
+ "oci:Dns/zoneStageDnssecKeyVersion:ZoneStageDnssecKeyVersion": "ZoneStageDnssecKeyVersion"
3538
+ }
3539
+ },
3519
3540
  {
3520
3541
  "pkg": "oci",
3521
3542
  "mod": "Email/dkim",
@@ -3812,22 +3833,6 @@ _utilities.register(
3812
3833
  "oci:GenericArtifactsContent/artifactByPath:ArtifactByPath": "ArtifactByPath"
3813
3834
  }
3814
3835
  },
3815
- {
3816
- "pkg": "oci",
3817
- "mod": "GloballyDistributedDatabase/privateEndpoint",
3818
- "fqn": "pulumi_oci.globallydistributeddatabase",
3819
- "classes": {
3820
- "oci:GloballyDistributedDatabase/privateEndpoint:PrivateEndpoint": "PrivateEndpoint"
3821
- }
3822
- },
3823
- {
3824
- "pkg": "oci",
3825
- "mod": "GloballyDistributedDatabase/shardedDatabase",
3826
- "fqn": "pulumi_oci.globallydistributeddatabase",
3827
- "classes": {
3828
- "oci:GloballyDistributedDatabase/shardedDatabase:ShardedDatabase": "ShardedDatabase"
3829
- }
3830
- },
3831
3836
  {
3832
3837
  "pkg": "oci",
3833
3838
  "mod": "GoldenGate/connection",
@@ -39,6 +39,12 @@ __all__ = [
39
39
  'ClusterOptionsAdmissionControllerOptionsArgsDict',
40
40
  'ClusterOptionsKubernetesNetworkConfigArgs',
41
41
  'ClusterOptionsKubernetesNetworkConfigArgsDict',
42
+ 'ClusterOptionsOpenIdConnectDiscoveryArgs',
43
+ 'ClusterOptionsOpenIdConnectDiscoveryArgsDict',
44
+ 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs',
45
+ 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgsDict',
46
+ 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs',
47
+ 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgsDict',
42
48
  'ClusterOptionsPersistentVolumeConfigArgs',
43
49
  'ClusterOptionsPersistentVolumeConfigArgsDict',
44
50
  'ClusterOptionsServiceLbConfigArgs',
@@ -757,6 +763,14 @@ if not MYPY:
757
763
  """
758
764
  Network configuration for Kubernetes.
759
765
  """
766
+ open_id_connect_discovery: NotRequired[pulumi.Input['ClusterOptionsOpenIdConnectDiscoveryArgsDict']]
767
+ """
768
+ (Updatable) The property that define the status of the OIDC Discovery feature for a cluster.
769
+ """
770
+ open_id_connect_token_authentication_config: NotRequired[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgsDict']]
771
+ """
772
+ (Updatable) The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
773
+ """
760
774
  persistent_volume_config: NotRequired[pulumi.Input['ClusterOptionsPersistentVolumeConfigArgsDict']]
761
775
  """
762
776
  (Updatable) Configuration to be applied to block volumes created by Kubernetes Persistent Volume Claims (PVC)
@@ -778,6 +792,8 @@ class ClusterOptionsArgs:
778
792
  add_ons: Optional[pulumi.Input['ClusterOptionsAddOnsArgs']] = None,
779
793
  admission_controller_options: Optional[pulumi.Input['ClusterOptionsAdmissionControllerOptionsArgs']] = None,
780
794
  kubernetes_network_config: Optional[pulumi.Input['ClusterOptionsKubernetesNetworkConfigArgs']] = None,
795
+ open_id_connect_discovery: Optional[pulumi.Input['ClusterOptionsOpenIdConnectDiscoveryArgs']] = None,
796
+ open_id_connect_token_authentication_config: Optional[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs']] = None,
781
797
  persistent_volume_config: Optional[pulumi.Input['ClusterOptionsPersistentVolumeConfigArgs']] = None,
782
798
  service_lb_config: Optional[pulumi.Input['ClusterOptionsServiceLbConfigArgs']] = None,
783
799
  service_lb_subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
@@ -785,6 +801,8 @@ class ClusterOptionsArgs:
785
801
  :param pulumi.Input['ClusterOptionsAddOnsArgs'] add_ons: Configurable cluster add-ons
786
802
  :param pulumi.Input['ClusterOptionsAdmissionControllerOptionsArgs'] admission_controller_options: (Updatable) Configurable cluster admission controllers
787
803
  :param pulumi.Input['ClusterOptionsKubernetesNetworkConfigArgs'] kubernetes_network_config: Network configuration for Kubernetes.
804
+ :param pulumi.Input['ClusterOptionsOpenIdConnectDiscoveryArgs'] open_id_connect_discovery: (Updatable) The property that define the status of the OIDC Discovery feature for a cluster.
805
+ :param pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs'] open_id_connect_token_authentication_config: (Updatable) The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
788
806
  :param pulumi.Input['ClusterOptionsPersistentVolumeConfigArgs'] persistent_volume_config: (Updatable) Configuration to be applied to block volumes created by Kubernetes Persistent Volume Claims (PVC)
789
807
  :param pulumi.Input['ClusterOptionsServiceLbConfigArgs'] service_lb_config: (Updatable) Configuration to be applied to load balancers created by Kubernetes services
790
808
  :param pulumi.Input[Sequence[pulumi.Input[str]]] service_lb_subnet_ids: The OCIDs of the subnets used for Kubernetes services load balancers.
@@ -795,6 +813,10 @@ class ClusterOptionsArgs:
795
813
  pulumi.set(__self__, "admission_controller_options", admission_controller_options)
796
814
  if kubernetes_network_config is not None:
797
815
  pulumi.set(__self__, "kubernetes_network_config", kubernetes_network_config)
816
+ if open_id_connect_discovery is not None:
817
+ pulumi.set(__self__, "open_id_connect_discovery", open_id_connect_discovery)
818
+ if open_id_connect_token_authentication_config is not None:
819
+ pulumi.set(__self__, "open_id_connect_token_authentication_config", open_id_connect_token_authentication_config)
798
820
  if persistent_volume_config is not None:
799
821
  pulumi.set(__self__, "persistent_volume_config", persistent_volume_config)
800
822
  if service_lb_config is not None:
@@ -838,6 +860,30 @@ class ClusterOptionsArgs:
838
860
  def kubernetes_network_config(self, value: Optional[pulumi.Input['ClusterOptionsKubernetesNetworkConfigArgs']]):
839
861
  pulumi.set(self, "kubernetes_network_config", value)
840
862
 
863
+ @property
864
+ @pulumi.getter(name="openIdConnectDiscovery")
865
+ def open_id_connect_discovery(self) -> Optional[pulumi.Input['ClusterOptionsOpenIdConnectDiscoveryArgs']]:
866
+ """
867
+ (Updatable) The property that define the status of the OIDC Discovery feature for a cluster.
868
+ """
869
+ return pulumi.get(self, "open_id_connect_discovery")
870
+
871
+ @open_id_connect_discovery.setter
872
+ def open_id_connect_discovery(self, value: Optional[pulumi.Input['ClusterOptionsOpenIdConnectDiscoveryArgs']]):
873
+ pulumi.set(self, "open_id_connect_discovery", value)
874
+
875
+ @property
876
+ @pulumi.getter(name="openIdConnectTokenAuthenticationConfig")
877
+ def open_id_connect_token_authentication_config(self) -> Optional[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs']]:
878
+ """
879
+ (Updatable) The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
880
+ """
881
+ return pulumi.get(self, "open_id_connect_token_authentication_config")
882
+
883
+ @open_id_connect_token_authentication_config.setter
884
+ def open_id_connect_token_authentication_config(self, value: Optional[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs']]):
885
+ pulumi.set(self, "open_id_connect_token_authentication_config", value)
886
+
841
887
  @property
842
888
  @pulumi.getter(name="persistentVolumeConfig")
843
889
  def persistent_volume_config(self) -> Optional[pulumi.Input['ClusterOptionsPersistentVolumeConfigArgs']]:
@@ -1011,6 +1057,301 @@ class ClusterOptionsKubernetesNetworkConfigArgs:
1011
1057
  pulumi.set(self, "services_cidr", value)
1012
1058
 
1013
1059
 
1060
+ if not MYPY:
1061
+ class ClusterOptionsOpenIdConnectDiscoveryArgsDict(TypedDict):
1062
+ is_open_id_connect_discovery_enabled: NotRequired[pulumi.Input[bool]]
1063
+ """
1064
+ (Updatable) Whether the cluster has OIDC Discovery enabled. Defaults to false. If set to true, the cluster will be assigned a public OIDC Discovery endpoint.
1065
+ """
1066
+ elif False:
1067
+ ClusterOptionsOpenIdConnectDiscoveryArgsDict: TypeAlias = Mapping[str, Any]
1068
+
1069
+ @pulumi.input_type
1070
+ class ClusterOptionsOpenIdConnectDiscoveryArgs:
1071
+ def __init__(__self__, *,
1072
+ is_open_id_connect_discovery_enabled: Optional[pulumi.Input[bool]] = None):
1073
+ """
1074
+ :param pulumi.Input[bool] is_open_id_connect_discovery_enabled: (Updatable) Whether the cluster has OIDC Discovery enabled. Defaults to false. If set to true, the cluster will be assigned a public OIDC Discovery endpoint.
1075
+ """
1076
+ if is_open_id_connect_discovery_enabled is not None:
1077
+ pulumi.set(__self__, "is_open_id_connect_discovery_enabled", is_open_id_connect_discovery_enabled)
1078
+
1079
+ @property
1080
+ @pulumi.getter(name="isOpenIdConnectDiscoveryEnabled")
1081
+ def is_open_id_connect_discovery_enabled(self) -> Optional[pulumi.Input[bool]]:
1082
+ """
1083
+ (Updatable) Whether the cluster has OIDC Discovery enabled. Defaults to false. If set to true, the cluster will be assigned a public OIDC Discovery endpoint.
1084
+ """
1085
+ return pulumi.get(self, "is_open_id_connect_discovery_enabled")
1086
+
1087
+ @is_open_id_connect_discovery_enabled.setter
1088
+ def is_open_id_connect_discovery_enabled(self, value: Optional[pulumi.Input[bool]]):
1089
+ pulumi.set(self, "is_open_id_connect_discovery_enabled", value)
1090
+
1091
+
1092
+ if not MYPY:
1093
+ class ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgsDict(TypedDict):
1094
+ is_open_id_connect_auth_enabled: pulumi.Input[bool]
1095
+ """
1096
+ (Updatable) Whether the cluster has OIDC Auth Config enabled. Defaults to false.
1097
+ """
1098
+ ca_certificate: NotRequired[pulumi.Input[str]]
1099
+ """
1100
+ (Updatable) A Base64 encoded public RSA or ECDSA certificates used to signed your identity provider's web certificate.
1101
+ """
1102
+ client_id: NotRequired[pulumi.Input[str]]
1103
+ """
1104
+ (Updatable) A client id that all tokens must be issued for.
1105
+ """
1106
+ groups_claim: NotRequired[pulumi.Input[str]]
1107
+ """
1108
+ (Updatable) JWT claim to use as the user's group. If the claim is present it must be an array of strings.
1109
+ """
1110
+ groups_prefix: NotRequired[pulumi.Input[str]]
1111
+ """
1112
+ (Updatable) Prefix prepended to group claims to prevent clashes with existing names (such as system:groups).
1113
+ """
1114
+ issuer_url: NotRequired[pulumi.Input[str]]
1115
+ """
1116
+ (Updatable) URL of the provider that allows the API server to discover public signing keys. Only URLs that use the https:// scheme are accepted. This is typically the provider's discovery URL, changed to have an empty path.
1117
+ """
1118
+ required_claims: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgsDict']]]]
1119
+ """
1120
+ (Updatable) A key=value pair that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. Repeat this flag to specify multiple claims.
1121
+ """
1122
+ signing_algorithms: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1123
+ """
1124
+ (Updatable) The signing algorithms accepted. Default is ["RS256"].
1125
+ """
1126
+ username_claim: NotRequired[pulumi.Input[str]]
1127
+ """
1128
+ (Updatable) JWT claim to use as the user name. By default sub, which is expected to be a unique identifier of the end user. Admins can choose other claims, such as email or name, depending on their provider. However, claims other than email will be prefixed with the issuer URL to prevent naming clashes with other plugins.
1129
+ """
1130
+ username_prefix: NotRequired[pulumi.Input[str]]
1131
+ """
1132
+ (Updatable) Prefix prepended to username claims to prevent clashes with existing names (such as system:users). For example, the value oidc: will create usernames like oidc:jane.doe. If this flag isn't provided and --oidc-username-claim is a value other than email the prefix defaults to ( Issuer URL )# where ( Issuer URL ) is the value of --oidc-issuer-url. The value - can be used to disable all prefixing.
1133
+ """
1134
+ elif False:
1135
+ ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgsDict: TypeAlias = Mapping[str, Any]
1136
+
1137
+ @pulumi.input_type
1138
+ class ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs:
1139
+ def __init__(__self__, *,
1140
+ is_open_id_connect_auth_enabled: pulumi.Input[bool],
1141
+ ca_certificate: Optional[pulumi.Input[str]] = None,
1142
+ client_id: Optional[pulumi.Input[str]] = None,
1143
+ groups_claim: Optional[pulumi.Input[str]] = None,
1144
+ groups_prefix: Optional[pulumi.Input[str]] = None,
1145
+ issuer_url: Optional[pulumi.Input[str]] = None,
1146
+ required_claims: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs']]]] = None,
1147
+ signing_algorithms: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1148
+ username_claim: Optional[pulumi.Input[str]] = None,
1149
+ username_prefix: Optional[pulumi.Input[str]] = None):
1150
+ """
1151
+ :param pulumi.Input[bool] is_open_id_connect_auth_enabled: (Updatable) Whether the cluster has OIDC Auth Config enabled. Defaults to false.
1152
+ :param pulumi.Input[str] ca_certificate: (Updatable) A Base64 encoded public RSA or ECDSA certificates used to signed your identity provider's web certificate.
1153
+ :param pulumi.Input[str] client_id: (Updatable) A client id that all tokens must be issued for.
1154
+ :param pulumi.Input[str] groups_claim: (Updatable) JWT claim to use as the user's group. If the claim is present it must be an array of strings.
1155
+ :param pulumi.Input[str] groups_prefix: (Updatable) Prefix prepended to group claims to prevent clashes with existing names (such as system:groups).
1156
+ :param pulumi.Input[str] issuer_url: (Updatable) URL of the provider that allows the API server to discover public signing keys. Only URLs that use the https:// scheme are accepted. This is typically the provider's discovery URL, changed to have an empty path.
1157
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs']]] required_claims: (Updatable) A key=value pair that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. Repeat this flag to specify multiple claims.
1158
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] signing_algorithms: (Updatable) The signing algorithms accepted. Default is ["RS256"].
1159
+ :param pulumi.Input[str] username_claim: (Updatable) JWT claim to use as the user name. By default sub, which is expected to be a unique identifier of the end user. Admins can choose other claims, such as email or name, depending on their provider. However, claims other than email will be prefixed with the issuer URL to prevent naming clashes with other plugins.
1160
+ :param pulumi.Input[str] username_prefix: (Updatable) Prefix prepended to username claims to prevent clashes with existing names (such as system:users). For example, the value oidc: will create usernames like oidc:jane.doe. If this flag isn't provided and --oidc-username-claim is a value other than email the prefix defaults to ( Issuer URL )# where ( Issuer URL ) is the value of --oidc-issuer-url. The value - can be used to disable all prefixing.
1161
+ """
1162
+ pulumi.set(__self__, "is_open_id_connect_auth_enabled", is_open_id_connect_auth_enabled)
1163
+ if ca_certificate is not None:
1164
+ pulumi.set(__self__, "ca_certificate", ca_certificate)
1165
+ if client_id is not None:
1166
+ pulumi.set(__self__, "client_id", client_id)
1167
+ if groups_claim is not None:
1168
+ pulumi.set(__self__, "groups_claim", groups_claim)
1169
+ if groups_prefix is not None:
1170
+ pulumi.set(__self__, "groups_prefix", groups_prefix)
1171
+ if issuer_url is not None:
1172
+ pulumi.set(__self__, "issuer_url", issuer_url)
1173
+ if required_claims is not None:
1174
+ pulumi.set(__self__, "required_claims", required_claims)
1175
+ if signing_algorithms is not None:
1176
+ pulumi.set(__self__, "signing_algorithms", signing_algorithms)
1177
+ if username_claim is not None:
1178
+ pulumi.set(__self__, "username_claim", username_claim)
1179
+ if username_prefix is not None:
1180
+ pulumi.set(__self__, "username_prefix", username_prefix)
1181
+
1182
+ @property
1183
+ @pulumi.getter(name="isOpenIdConnectAuthEnabled")
1184
+ def is_open_id_connect_auth_enabled(self) -> pulumi.Input[bool]:
1185
+ """
1186
+ (Updatable) Whether the cluster has OIDC Auth Config enabled. Defaults to false.
1187
+ """
1188
+ return pulumi.get(self, "is_open_id_connect_auth_enabled")
1189
+
1190
+ @is_open_id_connect_auth_enabled.setter
1191
+ def is_open_id_connect_auth_enabled(self, value: pulumi.Input[bool]):
1192
+ pulumi.set(self, "is_open_id_connect_auth_enabled", value)
1193
+
1194
+ @property
1195
+ @pulumi.getter(name="caCertificate")
1196
+ def ca_certificate(self) -> Optional[pulumi.Input[str]]:
1197
+ """
1198
+ (Updatable) A Base64 encoded public RSA or ECDSA certificates used to signed your identity provider's web certificate.
1199
+ """
1200
+ return pulumi.get(self, "ca_certificate")
1201
+
1202
+ @ca_certificate.setter
1203
+ def ca_certificate(self, value: Optional[pulumi.Input[str]]):
1204
+ pulumi.set(self, "ca_certificate", value)
1205
+
1206
+ @property
1207
+ @pulumi.getter(name="clientId")
1208
+ def client_id(self) -> Optional[pulumi.Input[str]]:
1209
+ """
1210
+ (Updatable) A client id that all tokens must be issued for.
1211
+ """
1212
+ return pulumi.get(self, "client_id")
1213
+
1214
+ @client_id.setter
1215
+ def client_id(self, value: Optional[pulumi.Input[str]]):
1216
+ pulumi.set(self, "client_id", value)
1217
+
1218
+ @property
1219
+ @pulumi.getter(name="groupsClaim")
1220
+ def groups_claim(self) -> Optional[pulumi.Input[str]]:
1221
+ """
1222
+ (Updatable) JWT claim to use as the user's group. If the claim is present it must be an array of strings.
1223
+ """
1224
+ return pulumi.get(self, "groups_claim")
1225
+
1226
+ @groups_claim.setter
1227
+ def groups_claim(self, value: Optional[pulumi.Input[str]]):
1228
+ pulumi.set(self, "groups_claim", value)
1229
+
1230
+ @property
1231
+ @pulumi.getter(name="groupsPrefix")
1232
+ def groups_prefix(self) -> Optional[pulumi.Input[str]]:
1233
+ """
1234
+ (Updatable) Prefix prepended to group claims to prevent clashes with existing names (such as system:groups).
1235
+ """
1236
+ return pulumi.get(self, "groups_prefix")
1237
+
1238
+ @groups_prefix.setter
1239
+ def groups_prefix(self, value: Optional[pulumi.Input[str]]):
1240
+ pulumi.set(self, "groups_prefix", value)
1241
+
1242
+ @property
1243
+ @pulumi.getter(name="issuerUrl")
1244
+ def issuer_url(self) -> Optional[pulumi.Input[str]]:
1245
+ """
1246
+ (Updatable) URL of the provider that allows the API server to discover public signing keys. Only URLs that use the https:// scheme are accepted. This is typically the provider's discovery URL, changed to have an empty path.
1247
+ """
1248
+ return pulumi.get(self, "issuer_url")
1249
+
1250
+ @issuer_url.setter
1251
+ def issuer_url(self, value: Optional[pulumi.Input[str]]):
1252
+ pulumi.set(self, "issuer_url", value)
1253
+
1254
+ @property
1255
+ @pulumi.getter(name="requiredClaims")
1256
+ def required_claims(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs']]]]:
1257
+ """
1258
+ (Updatable) A key=value pair that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. Repeat this flag to specify multiple claims.
1259
+ """
1260
+ return pulumi.get(self, "required_claims")
1261
+
1262
+ @required_claims.setter
1263
+ def required_claims(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs']]]]):
1264
+ pulumi.set(self, "required_claims", value)
1265
+
1266
+ @property
1267
+ @pulumi.getter(name="signingAlgorithms")
1268
+ def signing_algorithms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1269
+ """
1270
+ (Updatable) The signing algorithms accepted. Default is ["RS256"].
1271
+ """
1272
+ return pulumi.get(self, "signing_algorithms")
1273
+
1274
+ @signing_algorithms.setter
1275
+ def signing_algorithms(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1276
+ pulumi.set(self, "signing_algorithms", value)
1277
+
1278
+ @property
1279
+ @pulumi.getter(name="usernameClaim")
1280
+ def username_claim(self) -> Optional[pulumi.Input[str]]:
1281
+ """
1282
+ (Updatable) JWT claim to use as the user name. By default sub, which is expected to be a unique identifier of the end user. Admins can choose other claims, such as email or name, depending on their provider. However, claims other than email will be prefixed with the issuer URL to prevent naming clashes with other plugins.
1283
+ """
1284
+ return pulumi.get(self, "username_claim")
1285
+
1286
+ @username_claim.setter
1287
+ def username_claim(self, value: Optional[pulumi.Input[str]]):
1288
+ pulumi.set(self, "username_claim", value)
1289
+
1290
+ @property
1291
+ @pulumi.getter(name="usernamePrefix")
1292
+ def username_prefix(self) -> Optional[pulumi.Input[str]]:
1293
+ """
1294
+ (Updatable) Prefix prepended to username claims to prevent clashes with existing names (such as system:users). For example, the value oidc: will create usernames like oidc:jane.doe. If this flag isn't provided and --oidc-username-claim is a value other than email the prefix defaults to ( Issuer URL )# where ( Issuer URL ) is the value of --oidc-issuer-url. The value - can be used to disable all prefixing.
1295
+ """
1296
+ return pulumi.get(self, "username_prefix")
1297
+
1298
+ @username_prefix.setter
1299
+ def username_prefix(self, value: Optional[pulumi.Input[str]]):
1300
+ pulumi.set(self, "username_prefix", value)
1301
+
1302
+
1303
+ if not MYPY:
1304
+ class ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgsDict(TypedDict):
1305
+ key: NotRequired[pulumi.Input[str]]
1306
+ """
1307
+ (Updatable) The key of the pair.
1308
+ """
1309
+ value: NotRequired[pulumi.Input[str]]
1310
+ """
1311
+ (Updatable) The value of the pair.
1312
+ """
1313
+ elif False:
1314
+ ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgsDict: TypeAlias = Mapping[str, Any]
1315
+
1316
+ @pulumi.input_type
1317
+ class ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs:
1318
+ def __init__(__self__, *,
1319
+ key: Optional[pulumi.Input[str]] = None,
1320
+ value: Optional[pulumi.Input[str]] = None):
1321
+ """
1322
+ :param pulumi.Input[str] key: (Updatable) The key of the pair.
1323
+ :param pulumi.Input[str] value: (Updatable) The value of the pair.
1324
+ """
1325
+ if key is not None:
1326
+ pulumi.set(__self__, "key", key)
1327
+ if value is not None:
1328
+ pulumi.set(__self__, "value", value)
1329
+
1330
+ @property
1331
+ @pulumi.getter
1332
+ def key(self) -> Optional[pulumi.Input[str]]:
1333
+ """
1334
+ (Updatable) The key of the pair.
1335
+ """
1336
+ return pulumi.get(self, "key")
1337
+
1338
+ @key.setter
1339
+ def key(self, value: Optional[pulumi.Input[str]]):
1340
+ pulumi.set(self, "key", value)
1341
+
1342
+ @property
1343
+ @pulumi.getter
1344
+ def value(self) -> Optional[pulumi.Input[str]]:
1345
+ """
1346
+ (Updatable) The value of the pair.
1347
+ """
1348
+ return pulumi.get(self, "value")
1349
+
1350
+ @value.setter
1351
+ def value(self, value: Optional[pulumi.Input[str]]):
1352
+ pulumi.set(self, "value", value)
1353
+
1354
+
1014
1355
  if not MYPY:
1015
1356
  class ClusterOptionsPersistentVolumeConfigArgsDict(TypedDict):
1016
1357
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
@@ -239,6 +239,7 @@ class _ClusterState:
239
239
  lifecycle_details: Optional[pulumi.Input[str]] = None,
240
240
  metadatas: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterMetadataArgs']]]] = None,
241
241
  name: Optional[pulumi.Input[str]] = None,
242
+ open_id_connect_discovery_endpoint: Optional[pulumi.Input[str]] = None,
242
243
  options: Optional[pulumi.Input['ClusterOptionsArgs']] = None,
243
244
  state: Optional[pulumi.Input[str]] = None,
244
245
  type: Optional[pulumi.Input[str]] = None,
@@ -258,6 +259,7 @@ class _ClusterState:
258
259
  :param pulumi.Input[str] lifecycle_details: Details about the state of the cluster masters.
259
260
  :param pulumi.Input[Sequence[pulumi.Input['ClusterMetadataArgs']]] metadatas: Metadata about the cluster.
260
261
  :param pulumi.Input[str] name: (Updatable) The name of the cluster. Avoid entering confidential information.
262
+ :param pulumi.Input[str] open_id_connect_discovery_endpoint: The cluster-specific OpenID Connect Discovery endpoint
261
263
  :param pulumi.Input['ClusterOptionsArgs'] options: (Updatable) Optional attributes for the cluster.
262
264
  :param pulumi.Input[str] state: The state of the cluster masters.
263
265
  :param pulumi.Input[str] type: (Updatable) Type of cluster
@@ -293,6 +295,8 @@ class _ClusterState:
293
295
  pulumi.set(__self__, "metadatas", metadatas)
294
296
  if name is not None:
295
297
  pulumi.set(__self__, "name", name)
298
+ if open_id_connect_discovery_endpoint is not None:
299
+ pulumi.set(__self__, "open_id_connect_discovery_endpoint", open_id_connect_discovery_endpoint)
296
300
  if options is not None:
297
301
  pulumi.set(__self__, "options", options)
298
302
  if state is not None:
@@ -458,6 +462,18 @@ class _ClusterState:
458
462
  def name(self, value: Optional[pulumi.Input[str]]):
459
463
  pulumi.set(self, "name", value)
460
464
 
465
+ @property
466
+ @pulumi.getter(name="openIdConnectDiscoveryEndpoint")
467
+ def open_id_connect_discovery_endpoint(self) -> Optional[pulumi.Input[str]]:
468
+ """
469
+ The cluster-specific OpenID Connect Discovery endpoint
470
+ """
471
+ return pulumi.get(self, "open_id_connect_discovery_endpoint")
472
+
473
+ @open_id_connect_discovery_endpoint.setter
474
+ def open_id_connect_discovery_endpoint(self, value: Optional[pulumi.Input[str]]):
475
+ pulumi.set(self, "open_id_connect_discovery_endpoint", value)
476
+
461
477
  @property
462
478
  @pulumi.getter
463
479
  def options(self) -> Optional[pulumi.Input['ClusterOptionsArgs']]:
@@ -578,6 +594,24 @@ class Cluster(pulumi.CustomResource):
578
594
  "pods_cidr": cluster_options_kubernetes_network_config_pods_cidr,
579
595
  "services_cidr": cluster_options_kubernetes_network_config_services_cidr,
580
596
  },
597
+ "open_id_connect_token_authentication_config": {
598
+ "is_open_id_connect_auth_enabled": cluster_options_open_id_connect_token_authentication_config_is_open_id_connect_auth_enabled,
599
+ "ca_certificate": cluster_options_open_id_connect_token_authentication_config_ca_certificate,
600
+ "client_id": test_client["id"],
601
+ "groups_claim": cluster_options_open_id_connect_token_authentication_config_groups_claim,
602
+ "groups_prefix": cluster_options_open_id_connect_token_authentication_config_groups_prefix,
603
+ "issuer_url": cluster_options_open_id_connect_token_authentication_config_issuer_url,
604
+ "required_claims": [{
605
+ "key": cluster_options_open_id_connect_token_authentication_config_required_claims_key,
606
+ "value": cluster_options_open_id_connect_token_authentication_config_required_claims_value,
607
+ }],
608
+ "signing_algorithms": cluster_options_open_id_connect_token_authentication_config_signing_algorithms,
609
+ "username_claim": cluster_options_open_id_connect_token_authentication_config_username_claim,
610
+ "username_prefix": cluster_options_open_id_connect_token_authentication_config_username_prefix,
611
+ },
612
+ "open_id_connect_discovery": {
613
+ "is_open_id_connect_discovery_enabled": cluster_options_open_id_connect_discovery_is_open_id_connect_discovery_enabled,
614
+ },
581
615
  "persistent_volume_config": {
582
616
  "defined_tags": {
583
617
  "operations__cost_center": "42",
@@ -681,6 +715,24 @@ class Cluster(pulumi.CustomResource):
681
715
  "pods_cidr": cluster_options_kubernetes_network_config_pods_cidr,
682
716
  "services_cidr": cluster_options_kubernetes_network_config_services_cidr,
683
717
  },
718
+ "open_id_connect_token_authentication_config": {
719
+ "is_open_id_connect_auth_enabled": cluster_options_open_id_connect_token_authentication_config_is_open_id_connect_auth_enabled,
720
+ "ca_certificate": cluster_options_open_id_connect_token_authentication_config_ca_certificate,
721
+ "client_id": test_client["id"],
722
+ "groups_claim": cluster_options_open_id_connect_token_authentication_config_groups_claim,
723
+ "groups_prefix": cluster_options_open_id_connect_token_authentication_config_groups_prefix,
724
+ "issuer_url": cluster_options_open_id_connect_token_authentication_config_issuer_url,
725
+ "required_claims": [{
726
+ "key": cluster_options_open_id_connect_token_authentication_config_required_claims_key,
727
+ "value": cluster_options_open_id_connect_token_authentication_config_required_claims_value,
728
+ }],
729
+ "signing_algorithms": cluster_options_open_id_connect_token_authentication_config_signing_algorithms,
730
+ "username_claim": cluster_options_open_id_connect_token_authentication_config_username_claim,
731
+ "username_prefix": cluster_options_open_id_connect_token_authentication_config_username_prefix,
732
+ },
733
+ "open_id_connect_discovery": {
734
+ "is_open_id_connect_discovery_enabled": cluster_options_open_id_connect_discovery_is_open_id_connect_discovery_enabled,
735
+ },
684
736
  "persistent_volume_config": {
685
737
  "defined_tags": {
686
738
  "operations__cost_center": "42",
@@ -768,6 +820,7 @@ class Cluster(pulumi.CustomResource):
768
820
  __props__.__dict__["endpoints"] = None
769
821
  __props__.__dict__["lifecycle_details"] = None
770
822
  __props__.__dict__["metadatas"] = None
823
+ __props__.__dict__["open_id_connect_discovery_endpoint"] = None
771
824
  __props__.__dict__["state"] = None
772
825
  super(Cluster, __self__).__init__(
773
826
  'oci:ContainerEngine/cluster:Cluster',
@@ -792,6 +845,7 @@ class Cluster(pulumi.CustomResource):
792
845
  lifecycle_details: Optional[pulumi.Input[str]] = None,
793
846
  metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterMetadataArgs', 'ClusterMetadataArgsDict']]]]] = None,
794
847
  name: Optional[pulumi.Input[str]] = None,
848
+ open_id_connect_discovery_endpoint: Optional[pulumi.Input[str]] = None,
795
849
  options: Optional[pulumi.Input[Union['ClusterOptionsArgs', 'ClusterOptionsArgsDict']]] = None,
796
850
  state: Optional[pulumi.Input[str]] = None,
797
851
  type: Optional[pulumi.Input[str]] = None,
@@ -816,6 +870,7 @@ class Cluster(pulumi.CustomResource):
816
870
  :param pulumi.Input[str] lifecycle_details: Details about the state of the cluster masters.
817
871
  :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterMetadataArgs', 'ClusterMetadataArgsDict']]]] metadatas: Metadata about the cluster.
818
872
  :param pulumi.Input[str] name: (Updatable) The name of the cluster. Avoid entering confidential information.
873
+ :param pulumi.Input[str] open_id_connect_discovery_endpoint: The cluster-specific OpenID Connect Discovery endpoint
819
874
  :param pulumi.Input[Union['ClusterOptionsArgs', 'ClusterOptionsArgsDict']] options: (Updatable) Optional attributes for the cluster.
820
875
  :param pulumi.Input[str] state: The state of the cluster masters.
821
876
  :param pulumi.Input[str] type: (Updatable) Type of cluster
@@ -842,6 +897,7 @@ class Cluster(pulumi.CustomResource):
842
897
  __props__.__dict__["lifecycle_details"] = lifecycle_details
843
898
  __props__.__dict__["metadatas"] = metadatas
844
899
  __props__.__dict__["name"] = name
900
+ __props__.__dict__["open_id_connect_discovery_endpoint"] = open_id_connect_discovery_endpoint
845
901
  __props__.__dict__["options"] = options
846
902
  __props__.__dict__["state"] = state
847
903
  __props__.__dict__["type"] = type
@@ -952,6 +1008,14 @@ class Cluster(pulumi.CustomResource):
952
1008
  """
953
1009
  return pulumi.get(self, "name")
954
1010
 
1011
+ @property
1012
+ @pulumi.getter(name="openIdConnectDiscoveryEndpoint")
1013
+ def open_id_connect_discovery_endpoint(self) -> pulumi.Output[str]:
1014
+ """
1015
+ The cluster-specific OpenID Connect Discovery endpoint
1016
+ """
1017
+ return pulumi.get(self, "open_id_connect_discovery_endpoint")
1018
+
955
1019
  @property
956
1020
  @pulumi.getter
957
1021
  def options(self) -> pulumi.Output['outputs.ClusterOptions']:
@@ -27,7 +27,7 @@ class GetClusterResult:
27
27
  """
28
28
  A collection of values returned by getCluster.
29
29
  """
30
- def __init__(__self__, available_kubernetes_upgrades=None, cluster_id=None, cluster_pod_network_options=None, compartment_id=None, defined_tags=None, endpoint_configs=None, endpoints=None, freeform_tags=None, id=None, image_policy_configs=None, kms_key_id=None, kubernetes_version=None, lifecycle_details=None, metadatas=None, name=None, options=None, state=None, type=None, vcn_id=None):
30
+ def __init__(__self__, available_kubernetes_upgrades=None, cluster_id=None, cluster_pod_network_options=None, compartment_id=None, defined_tags=None, endpoint_configs=None, endpoints=None, freeform_tags=None, id=None, image_policy_configs=None, kms_key_id=None, kubernetes_version=None, lifecycle_details=None, metadatas=None, name=None, open_id_connect_discovery_endpoint=None, options=None, state=None, type=None, vcn_id=None):
31
31
  if available_kubernetes_upgrades and not isinstance(available_kubernetes_upgrades, list):
32
32
  raise TypeError("Expected argument 'available_kubernetes_upgrades' to be a list")
33
33
  pulumi.set(__self__, "available_kubernetes_upgrades", available_kubernetes_upgrades)
@@ -73,6 +73,9 @@ class GetClusterResult:
73
73
  if name and not isinstance(name, str):
74
74
  raise TypeError("Expected argument 'name' to be a str")
75
75
  pulumi.set(__self__, "name", name)
76
+ if open_id_connect_discovery_endpoint and not isinstance(open_id_connect_discovery_endpoint, str):
77
+ raise TypeError("Expected argument 'open_id_connect_discovery_endpoint' to be a str")
78
+ pulumi.set(__self__, "open_id_connect_discovery_endpoint", open_id_connect_discovery_endpoint)
76
79
  if options and not isinstance(options, list):
77
80
  raise TypeError("Expected argument 'options' to be a list")
78
81
  pulumi.set(__self__, "options", options)
@@ -203,6 +206,11 @@ class GetClusterResult:
203
206
  """
204
207
  return pulumi.get(self, "name")
205
208
 
209
+ @property
210
+ @pulumi.getter(name="openIdConnectDiscoveryEndpoint")
211
+ def open_id_connect_discovery_endpoint(self) -> str:
212
+ return pulumi.get(self, "open_id_connect_discovery_endpoint")
213
+
206
214
  @property
207
215
  @pulumi.getter
208
216
  def options(self) -> Sequence['outputs.GetClusterOptionResult']:
@@ -257,6 +265,7 @@ class AwaitableGetClusterResult(GetClusterResult):
257
265
  lifecycle_details=self.lifecycle_details,
258
266
  metadatas=self.metadatas,
259
267
  name=self.name,
268
+ open_id_connect_discovery_endpoint=self.open_id_connect_discovery_endpoint,
260
269
  options=self.options,
261
270
  state=self.state,
262
271
  type=self.type,
@@ -303,6 +312,7 @@ def get_cluster(cluster_id: Optional[str] = None,
303
312
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
304
313
  metadatas=pulumi.get(__ret__, 'metadatas'),
305
314
  name=pulumi.get(__ret__, 'name'),
315
+ open_id_connect_discovery_endpoint=pulumi.get(__ret__, 'open_id_connect_discovery_endpoint'),
306
316
  options=pulumi.get(__ret__, 'options'),
307
317
  state=pulumi.get(__ret__, 'state'),
308
318
  type=pulumi.get(__ret__, 'type'),
@@ -346,6 +356,7 @@ def get_cluster_output(cluster_id: Optional[pulumi.Input[str]] = None,
346
356
  lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
347
357
  metadatas=pulumi.get(__response__, 'metadatas'),
348
358
  name=pulumi.get(__response__, 'name'),
359
+ open_id_connect_discovery_endpoint=pulumi.get(__response__, 'open_id_connect_discovery_endpoint'),
349
360
  options=pulumi.get(__response__, 'options'),
350
361
  state=pulumi.get(__response__, 'state'),
351
362
  type=pulumi.get(__response__, 'type'),