-
Notifications
You must be signed in to change notification settings - Fork 48
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
Publish automation pipelines API endpoints #2364
Publish automation pipelines API endpoints #2364
Conversation
"data": "data", | ||
} | ||
|
||
def __init__(self_, data: Union[CreateInboxRuleParametersData, UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, data: Union[CreateInboxRuleParametersData, UnsetType] = unset, **kwargs): | |
def __init__(self, data: Union[CreateInboxRuleParametersData, 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
"type": "type", | ||
} | ||
|
||
def __init__(self_, attributes: CreateMuteRuleParametersDataAttributes, type: MuteRulesType, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, attributes: CreateMuteRuleParametersDataAttributes, type: MuteRulesType, **kwargs): | |
def __init__(self, attributes: CreateMuteRuleParametersDataAttributes, type: MuteRulesType, **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
"type": "type", | ||
} | ||
|
||
def __init__(self_, attributes: MuteRuleAttributes, id: UUID, type: MuteRulesType, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, attributes: MuteRuleAttributes, id: UUID, type: MuteRulesType, **kwargs): | |
def __init__(self, attributes: MuteRuleAttributes, id: UUID, type: MuteRulesType, **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
"name": "name", | ||
} | ||
|
||
def __init__(self_, handle: Union[str, UnsetType] = unset, name: Union[str, UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, handle: Union[str, UnsetType] = unset, name: Union[str, UnsetType] = unset, **kwargs): | |
def __init__(self, handle: Union[str, UnsetType] = unset, name: Union[str, 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
"data": "data", | ||
} | ||
|
||
def __init__(self_, data: Union[List[ReorderMuteRulesParametersData], UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, data: Union[List[ReorderMuteRulesParametersData], UnsetType] = unset, **kwargs): | |
def __init__(self, data: Union[List[ReorderMuteRulesParametersData], 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
"reason_description": "reason_description", | ||
} | ||
|
||
def __init__(self_, reason_description: Union[str, UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, reason_description: Union[str, UnsetType] = unset, **kwargs): | |
def __init__(self, reason_description: Union[str, 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
"data": "data", | ||
} | ||
|
||
def __init__(self_, data: Union[PatchMuteRuleParametersData, UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, data: Union[PatchMuteRuleParametersData, UnsetType] = unset, **kwargs): | |
def __init__(self, data: Union[PatchMuteRuleParametersData, 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
"type": "type", | ||
} | ||
|
||
def __init__(self_, attributes: CreateInboxRuleParametersDataAttributes, id: UUID, type: InboxRulesType, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, attributes: CreateInboxRuleParametersDataAttributes, id: UUID, type: InboxRulesType, **kwargs): | |
def __init__(self, attributes: CreateInboxRuleParametersDataAttributes, id: UUID, type: InboxRulesType, **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
"type": "type", | ||
} | ||
|
||
def __init__(self_, attributes: CreateInboxRuleParametersDataAttributes, type: InboxRulesType, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, attributes: CreateInboxRuleParametersDataAttributes, type: InboxRulesType, **kwargs): | |
def __init__(self, attributes: CreateInboxRuleParametersDataAttributes, type: InboxRulesType, **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
} | ||
|
||
def __init__( | ||
self_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
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
cef2e12
to
cf37ae6
Compare
3d8967b
to
292d75c
Compare
292d75c
to
e68b7ee
Compare
See DataDog/datadog-api-spec#3415
Test branch datadog-api-spec/test/frederic.moster/automation_pipelines_spec