Skip to content

Add oci-integrations-api endpoints to API spec #2559

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

api-clients-generation-pipeline[bot]
Copy link
Contributor

@api-clients-generation-pipeline api-clients-generation-pipeline bot requested review from a team as code owners May 7, 2025 19:46
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3826 branch 4 times, most recently from 42a11e7 to 9ec6042 Compare May 8, 2025 15:31
@api-clients-generation-pipeline api-clients-generation-pipeline bot changed the title Sync 'oci.yaml' files with backend ECI-331 Sync 'oci.yaml' files with backend May 8, 2025
@api-clients-generation-pipeline api-clients-generation-pipeline bot changed the title ECI-331 Sync 'oci.yaml' files with backend Sync 'oci.yaml' files with backend May 8, 2025
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3826 branch 2 times, most recently from 86b39d3 to 31a6533 Compare May 8, 2025 16:02
@api-clients-generation-pipeline api-clients-generation-pipeline bot changed the title Sync 'oci.yaml' files with backend Add oci-integrations-api endpoints to API spec May 8, 2025
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3826 branch 2 times, most recently from 0c4249e to db7d1ef Compare May 12, 2025 16:55
@datadog-datadog-prod-us1
Copy link

datadog-datadog-prod-us1 bot commented May 12, 2025

Datadog Summary

❌ Code Quality    ✅ Code Security    ✅ Dependencies

Next Steps

Fix these code quality issues introduced by this PR:

🔴 Error: python-best-practices/class-methods-use-self
src/datadog_api_client/v2/model/regions_config.py:32

Class methods should use self as first argument

🔴 Error: python-best-practices/class-methods-use-self
src/datadog_api_client/v2/model/update_tenancy_config_request.py:33

Class methods should use self as first argument

🔴 Error: python-best-practices/class-methods-use-self
src/datadog_api_client/v2/model/create_tenancy_config_data_attributes.py:58

Class methods should use self as first argument

and 11 more. View all

Was this helpful? Give us feedback!

"private_key": "private_key",
}

def __init__(self_, fingerprint: str, private_key: str, **kwargs):
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, fingerprint: str, private_key: str, **kwargs):
def __init__(self, fingerprint: str, private_key: str, **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

"data": "data",
}

def __init__(self_, data: Union[CreateTenancyConfigData, UnsetType] = unset, **kwargs):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, data: Union[CreateTenancyConfigData, UnsetType] = unset, **kwargs):
def __init__(self, data: Union[CreateTenancyConfigData, UnsetType] = unset, **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

"data": "data",
}

def __init__(self_, data: List[TenancyConfigData], **kwargs):
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, data: List[TenancyConfigData], **kwargs):
def __init__(self, data: List[TenancyConfigData], **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

"data": "data",
}

def __init__(self_, data: Union[UpdateTenancyConfigData, UnsetType] = unset, **kwargs):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, data: Union[UpdateTenancyConfigData, UnsetType] = unset, **kwargs):
def __init__(self, data: Union[UpdateTenancyConfigData, UnsetType] = unset, **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

}

def __init__(
self_,
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
self_,
self,
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

}

def __init__(
self_,
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
self_,
self,
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

}

def __init__(
self_,
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
self_,
self,
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

"data": "data",
}

def __init__(self_, data: Union[TenancyConfigData, UnsetType] = unset, **kwargs):
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, data: Union[TenancyConfigData, UnsetType] = unset, **kwargs):
def __init__(self, data: Union[TenancyConfigData, UnsetType] = unset, **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

}

def __init__(
self_,
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
self_,
self,
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

}

def __init__(
self_,
Copy link

@datadog-datadog-prod-us1 datadog-datadog-prod-us1 bot May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
self_,
self,
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3826 branch from db7d1ef to 65ffc66 Compare May 12, 2025 19:49
"data": "data",
}

def __init__(self_, data: Union[UpdateTenancyConfigData, UnsetType] = unset, **kwargs):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, data: Union[UpdateTenancyConfigData, UnsetType] = unset, **kwargs):
def __init__(self, data: Union[UpdateTenancyConfigData, UnsetType] = unset, **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

"data": "data",
}

def __init__(self_, data: Union[CreateTenancyConfigData, UnsetType] = unset, **kwargs):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Error: Code Quality Violation

Suggested change
def __init__(self_, data: Union[CreateTenancyConfigData, UnsetType] = unset, **kwargs):
def __init__(self, data: Union[CreateTenancyConfigData, UnsetType] = unset, **kwargs):
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

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

Successfully merging this pull request may close these issues.

0 participants