Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Opensearch: describe_domain_config does not return EngineVersion.Status #8271

Open
ktech-rob opened this issue Oct 31, 2024 · 2 comments
Open

Comments

@ktech-rob
Copy link

ktech-rob commented Oct 31, 2024

When calling describe_domain_config the Status key and values are omitted:

Expected:

{
    "DomainConfig": {
        "EngineVersion": {
            "Options": "string",
            "Status": {
                "CreationDate": datetime(2015, 1, 1),
                "UpdateDate": datetime(2015, 1, 1),
                "UpdateVersion": 123,
                "State": "RequiresIndexDocuments"|"Processing"|"Active",
                "PendingDeletion": True|False
            }
        }
}

Source: boto3: describe_domain_config

Actual:

{
    "DomainConfig": {
        "EngineVersion": {
            "Options": "OpenSearch_2.15"
        }
}

Moto Version

5.0.18

@bblommers
Copy link
Collaborator

Hi @ktech-rob, welcome to Moto, and thank you for raising this! Marking it as an enhancement to add these fields.

@rafcio19
Copy link
Contributor

I can take a look @bblommers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants