Skip to content

Add spec for team on-call endpoint #2598

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

Merged

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 29, 2025 05:04
"type": "type",
}

def __init__(self_, id: str, type: EscalationRelationshipsRespondersDataItemsType, **kwargs):

Choose a reason for hiding this comment

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

🔴 Code Quality Violation

Suggested change
def __init__(self_, id: str, type: EscalationRelationshipsRespondersDataItemsType, **kwargs):
def __init__(self, id: str, type: EscalationRelationshipsRespondersDataItemsType, **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[List[EscalationRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs):

Choose a reason for hiding this comment

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

🔴 Code Quality Violation

Suggested change
def __init__(self_, data: Union[List[EscalationRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs):
def __init__(self, data: Union[List[EscalationRelationshipsRespondersDataItems], 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_,

Choose a reason for hiding this comment

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

🔴 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

"responders": "responders",
}

def __init__(self_, responders: Union[EscalationRelationshipsResponders, UnsetType] = unset, **kwargs):

Choose a reason for hiding this comment

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

🔴 Code Quality Violation

Suggested change
def __init__(self_, responders: Union[EscalationRelationshipsResponders, UnsetType] = unset, **kwargs):
def __init__(self, responders: Union[EscalationRelationshipsResponders, 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_, data: Union[List[TeamOnCallRespondersDataRelationshipsEscalationsDataItems], UnsetType] = unset, **kwargs

Choose a reason for hiding this comment

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

🔴 Code Quality Violation

Suggested change
self_, data: Union[List[TeamOnCallRespondersDataRelationshipsEscalationsDataItems], UnsetType] = unset, **kwargs
self, data: Union[List[TeamOnCallRespondersDataRelationshipsEscalationsDataItems], 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_,

Choose a reason for hiding this comment

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

🔴 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

"type": "type",
}

def __init__(self_, id: str, type: TeamOnCallRespondersDataRelationshipsEscalationsDataItemsType, **kwargs):

Choose a reason for hiding this comment

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

🔴 Code Quality Violation

Suggested change
def __init__(self_, id: str, type: TeamOnCallRespondersDataRelationshipsEscalationsDataItemsType, **kwargs):
def __init__(self, id: str, type: TeamOnCallRespondersDataRelationshipsEscalationsDataItemsType, **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_,

Choose a reason for hiding this comment

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

🔴 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_,

Choose a reason for hiding this comment

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

🔴 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_, data: Union[List[TeamOnCallRespondersDataRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs

Choose a reason for hiding this comment

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

🔴 Code Quality Violation

Suggested change
self_, data: Union[List[TeamOnCallRespondersDataRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs
self, data: Union[List[TeamOnCallRespondersDataRelationshipsRespondersDataItems], 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

@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3920 branch 3 times, most recently from ac234f0 to b3ff9dc Compare May 29, 2025 07:39
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3920 branch from b3ff9dc to 922b5c3 Compare June 2, 2025 23:37
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3920 branch from 922b5c3 to e3f098b Compare June 4, 2025 12:52
@api-clients-generation-pipeline api-clients-generation-pipeline bot merged commit 082dc9f into master Jun 4, 2025
16 checks passed
@api-clients-generation-pipeline api-clients-generation-pipeline bot deleted the datadog-api-spec/generated/3920 branch June 4, 2025 14:08
github-actions bot pushed a commit that referenced this pull request Jun 4, 2025
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com> 082dc9f
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.

1 participant