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

Integrate incident types into Incidents API documentation #2199

Merged

Conversation

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

@api-clients-generation-pipeline api-clients-generation-pipeline bot requested a review from a team as a code owner October 7, 2024 14:55
}

def __init__(
self_, id: str, type: IncidentTypeType, attributes: Union[IncidentTypeAttributes, 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_, id: str, type: IncidentTypeType, attributes: Union[IncidentTypeAttributes, UnsetType] = unset, **kwargs
self, id: str, type: IncidentTypeType, attributes: Union[IncidentTypeAttributes, 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[IncidentTypeResponse], **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: List[IncidentTypeResponse], **kwargs):
def __init__(self, data: List[IncidentTypeResponse], **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

"type": "type",
}

def __init__(self_, attributes: IncidentTypeUpdateAttributes, type: IncidentTypeType, **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_, attributes: IncidentTypeUpdateAttributes, type: IncidentTypeType, **kwargs):
def __init__(self, attributes: IncidentTypeUpdateAttributes, type: IncidentTypeType, **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

"type": "type",
}

def __init__(self_, attributes: IncidentTypeAttributes, type: IncidentTypeType, **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_, attributes: IncidentTypeAttributes, type: IncidentTypeType, **kwargs):
def __init__(self, attributes: IncidentTypeAttributes, type: IncidentTypeType, **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

"data": "data",
}

def __init__(self_, data: IncidentTypeCreateData, **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: IncidentTypeCreateData, **kwargs):
def __init__(self, data: IncidentTypeCreateData, **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: IncidentTypePatchData, **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: IncidentTypePatchData, **kwargs):
def __init__(self, data: IncidentTypePatchData, **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

@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3172 branch from c28465f to 82ba1fa Compare October 18, 2024 20:14
@api-clients-generation-pipeline api-clients-generation-pipeline bot changed the title [INA-6366] Integrate incident types into Incidents API documentation Integrate incident types into Incidents API documentation Oct 23, 2024
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3172 branch from 78717eb to 3021161 Compare October 23, 2024 14:08
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3172 branch from 0bc014c to 0c05fa2 Compare October 24, 2024 17:05
}

def __init__(
self_, id: str, type: IncidentTypeType, attributes: Union[IncidentTypeAttributes, 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_, id: str, type: IncidentTypeType, attributes: Union[IncidentTypeAttributes, UnsetType] = unset, **kwargs
self, id: str, type: IncidentTypeType, attributes: Union[IncidentTypeAttributes, 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

"type": "type",
}

def __init__(self_, attributes: IncidentTypeUpdateAttributes, id: str, type: IncidentTypeType, **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_, attributes: IncidentTypeUpdateAttributes, id: str, type: IncidentTypeType, **kwargs):
def __init__(self, attributes: IncidentTypeUpdateAttributes, id: str, type: IncidentTypeType, **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: IncidentTypeObject, **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: IncidentTypeObject, **kwargs):
def __init__(self, data: IncidentTypeObject, **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/3172 branch 3 times, most recently from e9493c3 to c46e85a Compare October 28, 2024 12:09
@api-clients-generation-pipeline api-clients-generation-pipeline bot force-pushed the datadog-api-spec/generated/3172 branch from a6362e3 to 2c6f27a Compare October 28, 2024 23:08
@api-clients-generation-pipeline api-clients-generation-pipeline bot merged commit b8ba482 into master Oct 29, 2024
13 checks passed
@api-clients-generation-pipeline api-clients-generation-pipeline bot deleted the datadog-api-spec/generated/3172 branch October 29, 2024 13:21
github-actions bot pushed a commit that referenced this pull request Oct 29, 2024
* Regenerate client from commit 4251a422 of spec repo

* pre-commit fixes

---------

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com> b8ba482
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