pulumi-oci 2.13.0__py3-none-any.whl → 2.13.0a1729059403__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 (65) hide show
  1. pulumi_oci/__init__.py +19 -24
  2. pulumi_oci/containerengine/_inputs.py +0 -341
  3. pulumi_oci/containerengine/cluster.py +0 -64
  4. pulumi_oci/containerengine/get_cluster.py +1 -12
  5. pulumi_oci/containerengine/outputs.py +0 -582
  6. pulumi_oci/core/_inputs.py +37 -299
  7. pulumi_oci/core/boot_volume.py +5 -90
  8. pulumi_oci/core/get_block_volume_replica.py +1 -15
  9. pulumi_oci/core/get_boot_volume.py +4 -15
  10. pulumi_oci/core/get_boot_volume_replica.py +1 -15
  11. pulumi_oci/core/get_volume.py +4 -18
  12. pulumi_oci/core/instance_configuration.py +0 -4
  13. pulumi_oci/core/outputs.py +46 -573
  14. pulumi_oci/core/volume.py +12 -110
  15. pulumi_oci/core/volume_backup_policy_assignment.py +19 -68
  16. pulumi_oci/core/volume_group.py +5 -56
  17. pulumi_oci/datasafe/__init__.py +0 -1
  18. pulumi_oci/desktops/_inputs.py +13 -175
  19. pulumi_oci/desktops/desktop_pool.py +0 -67
  20. pulumi_oci/desktops/get_desktop_pool.py +1 -16
  21. pulumi_oci/desktops/outputs.py +18 -339
  22. pulumi_oci/dns/__init__.py +0 -2
  23. pulumi_oci/dns/_inputs.py +12 -1157
  24. pulumi_oci/dns/action_create_zone_from_zone_file.py +2 -42
  25. pulumi_oci/dns/get_records.py +13 -45
  26. pulumi_oci/dns/get_resolver.py +6 -8
  27. pulumi_oci/dns/get_resolver_endpoint.py +6 -8
  28. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  29. pulumi_oci/dns/get_resolvers.py +12 -12
  30. pulumi_oci/dns/get_rrset.py +16 -16
  31. pulumi_oci/dns/get_rrsets.py +10 -12
  32. pulumi_oci/dns/get_view.py +4 -8
  33. pulumi_oci/dns/get_views.py +12 -12
  34. pulumi_oci/dns/get_zones.py +13 -33
  35. pulumi_oci/dns/outputs.py +79 -1388
  36. pulumi_oci/dns/record.py +12 -12
  37. pulumi_oci/dns/resolver.py +7 -7
  38. pulumi_oci/dns/resolver_endpoint.py +2 -2
  39. pulumi_oci/dns/rrset.py +41 -50
  40. pulumi_oci/dns/zone.py +17 -176
  41. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  42. pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
  43. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +323 -0
  44. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
  45. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +660 -0
  46. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
  47. pulumi_oci/globallydistributeddatabase/outputs.py +2063 -0
  48. pulumi_oci/globallydistributeddatabase/private_endpoint.py +747 -0
  49. pulumi_oci/globallydistributeddatabase/sharded_database.py +1821 -0
  50. pulumi_oci/goldengate/__init__.py +0 -1
  51. pulumi_oci/goldengate/_inputs.py +0 -165
  52. pulumi_oci/goldengate/connection.py +35 -49
  53. pulumi_oci/goldengate/database_registration.py +7 -7
  54. pulumi_oci/goldengate/deployment.py +4 -79
  55. pulumi_oci/goldengate/get_deployment.py +2 -30
  56. pulumi_oci/goldengate/outputs.py +2 -409
  57. pulumi_oci/pulumi-plugin.json +1 -1
  58. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/METADATA +1 -1
  59. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/RECORD +61 -56
  60. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/WHEEL +1 -1
  61. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +0 -271
  62. pulumi_oci/dns/zone_promote_dnssec_key_version.py +0 -328
  63. pulumi_oci/dns/zone_stage_dnssec_key_version.py +0 -318
  64. pulumi_oci/goldengate/get_deployment_environments.py +0 -144
  65. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py CHANGED
@@ -123,6 +123,8 @@ 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
126
128
  import pulumi_oci.goldengate as __goldengate
127
129
  goldengate = __goldengate
128
130
  import pulumi_oci.healthchecks as __healthchecks
@@ -309,6 +311,7 @@ else:
309
311
  fusionapps = _utilities.lazy_import('pulumi_oci.fusionapps')
310
312
  generativeai = _utilities.lazy_import('pulumi_oci.generativeai')
311
313
  genericartifactscontent = _utilities.lazy_import('pulumi_oci.genericartifactscontent')
314
+ globallydistributeddatabase = _utilities.lazy_import('pulumi_oci.globallydistributeddatabase')
312
315
  goldengate = _utilities.lazy_import('pulumi_oci.goldengate')
313
316
  healthchecks = _utilities.lazy_import('pulumi_oci.healthchecks')
314
317
  identity = _utilities.lazy_import('pulumi_oci.identity')
@@ -2081,14 +2084,6 @@ _utilities.register(
2081
2084
  "oci:DataSafe/discoveryMod:DiscoveryMod": "DiscoveryMod"
2082
2085
  }
2083
2086
  },
2084
- {
2085
- "pkg": "oci",
2086
- "mod": "DataSafe/generateOnPremConnectorConfiguration",
2087
- "fqn": "pulumi_oci.datasafe",
2088
- "classes": {
2089
- "oci:DataSafe/generateOnPremConnectorConfiguration:GenerateOnPremConnectorConfiguration": "GenerateOnPremConnectorConfiguration"
2090
- }
2091
- },
2092
2087
  {
2093
2088
  "pkg": "oci",
2094
2089
  "mod": "DataSafe/libraryMasingFormat",
@@ -3521,22 +3516,6 @@ _utilities.register(
3521
3516
  "oci:Dns/zone:Zone": "Zone"
3522
3517
  }
3523
3518
  },
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
- },
3540
3519
  {
3541
3520
  "pkg": "oci",
3542
3521
  "mod": "Email/dkim",
@@ -3833,6 +3812,22 @@ _utilities.register(
3833
3812
  "oci:GenericArtifactsContent/artifactByPath:ArtifactByPath": "ArtifactByPath"
3834
3813
  }
3835
3814
  },
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
+ },
3836
3831
  {
3837
3832
  "pkg": "oci",
3838
3833
  "mod": "GoldenGate/connection",
@@ -39,12 +39,6 @@ __all__ = [
39
39
  'ClusterOptionsAdmissionControllerOptionsArgsDict',
40
40
  'ClusterOptionsKubernetesNetworkConfigArgs',
41
41
  'ClusterOptionsKubernetesNetworkConfigArgsDict',
42
- 'ClusterOptionsOpenIdConnectDiscoveryArgs',
43
- 'ClusterOptionsOpenIdConnectDiscoveryArgsDict',
44
- 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs',
45
- 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgsDict',
46
- 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgs',
47
- 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigRequiredClaimArgsDict',
48
42
  'ClusterOptionsPersistentVolumeConfigArgs',
49
43
  'ClusterOptionsPersistentVolumeConfigArgsDict',
50
44
  'ClusterOptionsServiceLbConfigArgs',
@@ -763,14 +757,6 @@ if not MYPY:
763
757
  """
764
758
  Network configuration for Kubernetes.
765
759
  """
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
- """
774
760
  persistent_volume_config: NotRequired[pulumi.Input['ClusterOptionsPersistentVolumeConfigArgsDict']]
775
761
  """
776
762
  (Updatable) Configuration to be applied to block volumes created by Kubernetes Persistent Volume Claims (PVC)
@@ -792,8 +778,6 @@ class ClusterOptionsArgs:
792
778
  add_ons: Optional[pulumi.Input['ClusterOptionsAddOnsArgs']] = None,
793
779
  admission_controller_options: Optional[pulumi.Input['ClusterOptionsAdmissionControllerOptionsArgs']] = None,
794
780
  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,
797
781
  persistent_volume_config: Optional[pulumi.Input['ClusterOptionsPersistentVolumeConfigArgs']] = None,
798
782
  service_lb_config: Optional[pulumi.Input['ClusterOptionsServiceLbConfigArgs']] = None,
799
783
  service_lb_subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
@@ -801,8 +785,6 @@ class ClusterOptionsArgs:
801
785
  :param pulumi.Input['ClusterOptionsAddOnsArgs'] add_ons: Configurable cluster add-ons
802
786
  :param pulumi.Input['ClusterOptionsAdmissionControllerOptionsArgs'] admission_controller_options: (Updatable) Configurable cluster admission controllers
803
787
  :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).
806
788
  :param pulumi.Input['ClusterOptionsPersistentVolumeConfigArgs'] persistent_volume_config: (Updatable) Configuration to be applied to block volumes created by Kubernetes Persistent Volume Claims (PVC)
807
789
  :param pulumi.Input['ClusterOptionsServiceLbConfigArgs'] service_lb_config: (Updatable) Configuration to be applied to load balancers created by Kubernetes services
808
790
  :param pulumi.Input[Sequence[pulumi.Input[str]]] service_lb_subnet_ids: The OCIDs of the subnets used for Kubernetes services load balancers.
@@ -813,10 +795,6 @@ class ClusterOptionsArgs:
813
795
  pulumi.set(__self__, "admission_controller_options", admission_controller_options)
814
796
  if kubernetes_network_config is not None:
815
797
  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)
820
798
  if persistent_volume_config is not None:
821
799
  pulumi.set(__self__, "persistent_volume_config", persistent_volume_config)
822
800
  if service_lb_config is not None:
@@ -860,30 +838,6 @@ class ClusterOptionsArgs:
860
838
  def kubernetes_network_config(self, value: Optional[pulumi.Input['ClusterOptionsKubernetesNetworkConfigArgs']]):
861
839
  pulumi.set(self, "kubernetes_network_config", value)
862
840
 
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
-
887
841
  @property
888
842
  @pulumi.getter(name="persistentVolumeConfig")
889
843
  def persistent_volume_config(self) -> Optional[pulumi.Input['ClusterOptionsPersistentVolumeConfigArgs']]:
@@ -1057,301 +1011,6 @@ class ClusterOptionsKubernetesNetworkConfigArgs:
1057
1011
  pulumi.set(self, "services_cidr", value)
1058
1012
 
1059
1013
 
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
-
1355
1014
  if not MYPY:
1356
1015
  class ClusterOptionsPersistentVolumeConfigArgsDict(TypedDict):
1357
1016
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
@@ -239,7 +239,6 @@ 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,
243
242
  options: Optional[pulumi.Input['ClusterOptionsArgs']] = None,
244
243
  state: Optional[pulumi.Input[str]] = None,
245
244
  type: Optional[pulumi.Input[str]] = None,
@@ -259,7 +258,6 @@ class _ClusterState:
259
258
  :param pulumi.Input[str] lifecycle_details: Details about the state of the cluster masters.
260
259
  :param pulumi.Input[Sequence[pulumi.Input['ClusterMetadataArgs']]] metadatas: Metadata about the cluster.
261
260
  :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
263
261
  :param pulumi.Input['ClusterOptionsArgs'] options: (Updatable) Optional attributes for the cluster.
264
262
  :param pulumi.Input[str] state: The state of the cluster masters.
265
263
  :param pulumi.Input[str] type: (Updatable) Type of cluster
@@ -295,8 +293,6 @@ class _ClusterState:
295
293
  pulumi.set(__self__, "metadatas", metadatas)
296
294
  if name is not None:
297
295
  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)
300
296
  if options is not None:
301
297
  pulumi.set(__self__, "options", options)
302
298
  if state is not None:
@@ -462,18 +458,6 @@ class _ClusterState:
462
458
  def name(self, value: Optional[pulumi.Input[str]]):
463
459
  pulumi.set(self, "name", value)
464
460
 
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
-
477
461
  @property
478
462
  @pulumi.getter
479
463
  def options(self) -> Optional[pulumi.Input['ClusterOptionsArgs']]:
@@ -594,24 +578,6 @@ class Cluster(pulumi.CustomResource):
594
578
  "pods_cidr": cluster_options_kubernetes_network_config_pods_cidr,
595
579
  "services_cidr": cluster_options_kubernetes_network_config_services_cidr,
596
580
  },
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
- },
615
581
  "persistent_volume_config": {
616
582
  "defined_tags": {
617
583
  "operations__cost_center": "42",
@@ -715,24 +681,6 @@ class Cluster(pulumi.CustomResource):
715
681
  "pods_cidr": cluster_options_kubernetes_network_config_pods_cidr,
716
682
  "services_cidr": cluster_options_kubernetes_network_config_services_cidr,
717
683
  },
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
- },
736
684
  "persistent_volume_config": {
737
685
  "defined_tags": {
738
686
  "operations__cost_center": "42",
@@ -820,7 +768,6 @@ class Cluster(pulumi.CustomResource):
820
768
  __props__.__dict__["endpoints"] = None
821
769
  __props__.__dict__["lifecycle_details"] = None
822
770
  __props__.__dict__["metadatas"] = None
823
- __props__.__dict__["open_id_connect_discovery_endpoint"] = None
824
771
  __props__.__dict__["state"] = None
825
772
  super(Cluster, __self__).__init__(
826
773
  'oci:ContainerEngine/cluster:Cluster',
@@ -845,7 +792,6 @@ class Cluster(pulumi.CustomResource):
845
792
  lifecycle_details: Optional[pulumi.Input[str]] = None,
846
793
  metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterMetadataArgs', 'ClusterMetadataArgsDict']]]]] = None,
847
794
  name: Optional[pulumi.Input[str]] = None,
848
- open_id_connect_discovery_endpoint: Optional[pulumi.Input[str]] = None,
849
795
  options: Optional[pulumi.Input[Union['ClusterOptionsArgs', 'ClusterOptionsArgsDict']]] = None,
850
796
  state: Optional[pulumi.Input[str]] = None,
851
797
  type: Optional[pulumi.Input[str]] = None,
@@ -870,7 +816,6 @@ class Cluster(pulumi.CustomResource):
870
816
  :param pulumi.Input[str] lifecycle_details: Details about the state of the cluster masters.
871
817
  :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterMetadataArgs', 'ClusterMetadataArgsDict']]]] metadatas: Metadata about the cluster.
872
818
  :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
874
819
  :param pulumi.Input[Union['ClusterOptionsArgs', 'ClusterOptionsArgsDict']] options: (Updatable) Optional attributes for the cluster.
875
820
  :param pulumi.Input[str] state: The state of the cluster masters.
876
821
  :param pulumi.Input[str] type: (Updatable) Type of cluster
@@ -897,7 +842,6 @@ class Cluster(pulumi.CustomResource):
897
842
  __props__.__dict__["lifecycle_details"] = lifecycle_details
898
843
  __props__.__dict__["metadatas"] = metadatas
899
844
  __props__.__dict__["name"] = name
900
- __props__.__dict__["open_id_connect_discovery_endpoint"] = open_id_connect_discovery_endpoint
901
845
  __props__.__dict__["options"] = options
902
846
  __props__.__dict__["state"] = state
903
847
  __props__.__dict__["type"] = type
@@ -1008,14 +952,6 @@ class Cluster(pulumi.CustomResource):
1008
952
  """
1009
953
  return pulumi.get(self, "name")
1010
954
 
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
-
1019
955
  @property
1020
956
  @pulumi.getter
1021
957
  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, open_id_connect_discovery_endpoint=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, 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,9 +73,6 @@ 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)
79
76
  if options and not isinstance(options, list):
80
77
  raise TypeError("Expected argument 'options' to be a list")
81
78
  pulumi.set(__self__, "options", options)
@@ -206,11 +203,6 @@ class GetClusterResult:
206
203
  """
207
204
  return pulumi.get(self, "name")
208
205
 
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
-
214
206
  @property
215
207
  @pulumi.getter
216
208
  def options(self) -> Sequence['outputs.GetClusterOptionResult']:
@@ -265,7 +257,6 @@ class AwaitableGetClusterResult(GetClusterResult):
265
257
  lifecycle_details=self.lifecycle_details,
266
258
  metadatas=self.metadatas,
267
259
  name=self.name,
268
- open_id_connect_discovery_endpoint=self.open_id_connect_discovery_endpoint,
269
260
  options=self.options,
270
261
  state=self.state,
271
262
  type=self.type,
@@ -312,7 +303,6 @@ def get_cluster(cluster_id: Optional[str] = None,
312
303
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
313
304
  metadatas=pulumi.get(__ret__, 'metadatas'),
314
305
  name=pulumi.get(__ret__, 'name'),
315
- open_id_connect_discovery_endpoint=pulumi.get(__ret__, 'open_id_connect_discovery_endpoint'),
316
306
  options=pulumi.get(__ret__, 'options'),
317
307
  state=pulumi.get(__ret__, 'state'),
318
308
  type=pulumi.get(__ret__, 'type'),
@@ -356,7 +346,6 @@ def get_cluster_output(cluster_id: Optional[pulumi.Input[str]] = None,
356
346
  lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
357
347
  metadatas=pulumi.get(__response__, 'metadatas'),
358
348
  name=pulumi.get(__response__, 'name'),
359
- open_id_connect_discovery_endpoint=pulumi.get(__response__, 'open_id_connect_discovery_endpoint'),
360
349
  options=pulumi.get(__response__, 'options'),
361
350
  state=pulumi.get(__response__, 'state'),
362
351
  type=pulumi.get(__response__, 'type'),