Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,599 changes: 3,938 additions & 1,661 deletions .generator/schemas/v2/openapi.yaml

Large diffs are not rendered by default.

400 changes: 400 additions & 0 deletions features/v2/org_groups.feature

Large diffs are not rendered by default.

126 changes: 126 additions & 0 deletions features/v2/undo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4060,6 +4060,132 @@
"type": "idempotent"
}
},
"ListOrgGroupMemberships": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"BulkUpdateOrgGroupMemberships": {
"tag": "Org Groups",
"undo": {
"type": "idempotent"
}
},
"GetOrgGroupMembership": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"UpdateOrgGroupMembership": {
"tag": "Org Groups",
"undo": {
"type": "idempotent"
}
},
"ListOrgGroupPolicies": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"CreateOrgGroupPolicy": {
"tag": "Org Groups",
"undo": {
"operationId": "DeleteOrgGroupPolicy",
"parameters": [
{
"name": "org_group_policy_id",
"source": "data.id"
}
]
}
},
"DeleteOrgGroupPolicy": {
"tag": "Org Groups",
"undo": {
"type": "unsafe"
}
},
"UpdateOrgGroupPolicy": {
"tag": "Org Groups",
"undo": {
"type": "idempotent"
}
},
"ListOrgGroupPolicyConfigs": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"ListOrgGroupPolicyOverrides": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"CreateOrgGroupPolicyOverride": {
"tag": "Org Groups",
"undo": {
"operationId": "DeleteOrgGroupPolicyOverride",
"parameters": [
{
"name": "org_group_policy_override_id",
"source": "data.id"
}
]
}
},
"DeleteOrgGroupPolicyOverride": {
"tag": "Org Groups",
"undo": {
"type": "unsafe"
}
},
"UpdateOrgGroupPolicyOverride": {
"tag": "Org Groups",
"undo": {
"type": "idempotent"
}
},
"ListOrgGroups": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"CreateOrgGroup": {
"tag": "Org Groups",
"undo": {
"operationId": "DeleteOrgGroup",
"parameters": [
{
"name": "org_group_id",
"source": "data.id"
}
]
}
},
"DeleteOrgGroup": {
"tag": "Org Groups",
"undo": {
"type": "unsafe"
}
},
"GetOrgGroup": {
"tag": "Org Groups",
"undo": {
"type": "safe"
}
},
"UpdateOrgGroup": {
"tag": "Org Groups",
"undo": {
"type": "idempotent"
}
},
"ListPermissions": {
"tag": "Roles",
"undo": {
Expand Down
1 change: 1 addition & 0 deletions packages/datadog-api-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ apiInstance
| On-Call Paging | @datadog/datadog-api-client-on-call-paging | [README.md](../../services/on-call-paging/README.md) |
| Opsgenie Integration | @datadog/datadog-api-client-opsgenie-integration | [README.md](../../services/opsgenie-integration/README.md) |
| Org Connections | @datadog/datadog-api-client-org-connections | [README.md](../../services/org-connections/README.md) |
| Org Groups | @datadog/datadog-api-client-org-groups | [README.md](../../services/org-groups/README.md) |
| Organizations | @datadog/datadog-api-client-organizations | [README.md](../../services/organizations/README.md) |
| PagerDuty Integration | @datadog/datadog-api-client-pager-duty-integration | [README.md](../../services/pager-duty-integration/README.md) |
| Powerpack | @datadog/datadog-api-client-powerpack | [README.md](../../services/powerpack/README.md) |
Expand Down
198 changes: 198 additions & 0 deletions private/bdd_runner/src/support/scenarios_model_mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9257,6 +9257,204 @@ export const ScenariosModelMappings: { [key: string]: OperationMapping } = {
},
operationResponseType: "OrgConnectionResponse",
},
"OrgGroupsApi.V2.ListOrgGroupMemberships": {
filterOrgGroupId: {
type: "string",
format: "uuid",
},
filterOrgUuid: {
type: "string",
format: "uuid",
},
pageNumber: {
type: "number",
format: "int64",
},
pageSize: {
type: "number",
format: "int64",
},
sort: {
type: "OrgGroupMembershipSortOption",
format: "",
},
operationResponseType: "OrgGroupMembershipListResponse",
},
"OrgGroupsApi.V2.BulkUpdateOrgGroupMemberships": {
body: {
type: "OrgGroupMembershipBulkUpdateRequest",
format: "",
},
operationResponseType: "OrgGroupMembershipListResponse",
},
"OrgGroupsApi.V2.GetOrgGroupMembership": {
orgGroupMembershipId: {
type: "string",
format: "uuid",
},
operationResponseType: "OrgGroupMembershipResponse",
},
"OrgGroupsApi.V2.UpdateOrgGroupMembership": {
orgGroupMembershipId: {
type: "string",
format: "uuid",
},
body: {
type: "OrgGroupMembershipUpdateRequest",
format: "",
},
operationResponseType: "OrgGroupMembershipResponse",
},
"OrgGroupsApi.V2.ListOrgGroupPolicies": {
filterOrgGroupId: {
type: "string",
format: "uuid",
},
filterPolicyName: {
type: "string",
format: "",
},
pageNumber: {
type: "number",
format: "int64",
},
pageSize: {
type: "number",
format: "int64",
},
sort: {
type: "OrgGroupPolicySortOption",
format: "",
},
operationResponseType: "OrgGroupPolicyListResponse",
},
"OrgGroupsApi.V2.CreateOrgGroupPolicy": {
body: {
type: "OrgGroupPolicyCreateRequest",
format: "",
},
operationResponseType: "OrgGroupPolicyResponse",
},
"OrgGroupsApi.V2.DeleteOrgGroupPolicy": {
orgGroupPolicyId: {
type: "string",
format: "uuid",
},
operationResponseType: "{}",
},
"OrgGroupsApi.V2.UpdateOrgGroupPolicy": {
orgGroupPolicyId: {
type: "string",
format: "uuid",
},
body: {
type: "OrgGroupPolicyUpdateRequest",
format: "",
},
operationResponseType: "OrgGroupPolicyResponse",
},
"OrgGroupsApi.V2.ListOrgGroupPolicyConfigs": {
operationResponseType: "OrgGroupPolicyConfigListResponse",
},
"OrgGroupsApi.V2.ListOrgGroupPolicyOverrides": {
filterOrgGroupId: {
type: "string",
format: "uuid",
},
filterPolicyId: {
type: "string",
format: "uuid",
},
pageNumber: {
type: "number",
format: "int64",
},
pageSize: {
type: "number",
format: "int64",
},
sort: {
type: "OrgGroupPolicyOverrideSortOption",
format: "",
},
operationResponseType: "OrgGroupPolicyOverrideListResponse",
},
"OrgGroupsApi.V2.CreateOrgGroupPolicyOverride": {
body: {
type: "OrgGroupPolicyOverrideCreateRequest",
format: "",
},
operationResponseType: "OrgGroupPolicyOverrideResponse",
},
"OrgGroupsApi.V2.DeleteOrgGroupPolicyOverride": {
orgGroupPolicyOverrideId: {
type: "string",
format: "uuid",
},
operationResponseType: "{}",
},
"OrgGroupsApi.V2.UpdateOrgGroupPolicyOverride": {
orgGroupPolicyOverrideId: {
type: "string",
format: "uuid",
},
body: {
type: "OrgGroupPolicyOverrideUpdateRequest",
format: "",
},
operationResponseType: "OrgGroupPolicyOverrideResponse",
},
"OrgGroupsApi.V2.ListOrgGroups": {
pageNumber: {
type: "number",
format: "int64",
},
pageSize: {
type: "number",
format: "int64",
},
sort: {
type: "OrgGroupSortOption",
format: "",
},
include: {
type: "Array<OrgGroupIncludeOption>",
format: "",
},
operationResponseType: "OrgGroupListResponse",
},
"OrgGroupsApi.V2.CreateOrgGroup": {
body: {
type: "OrgGroupCreateRequest",
format: "",
},
operationResponseType: "OrgGroupResponse",
},
"OrgGroupsApi.V2.GetOrgGroup": {
orgGroupId: {
type: "string",
format: "uuid",
},
operationResponseType: "OrgGroupResponse",
},
"OrgGroupsApi.V2.DeleteOrgGroup": {
orgGroupId: {
type: "string",
format: "uuid",
},
operationResponseType: "{}",
},
"OrgGroupsApi.V2.UpdateOrgGroup": {
orgGroupId: {
type: "string",
format: "uuid",
},
body: {
type: "OrgGroupUpdateRequest",
format: "",
},
operationResponseType: "OrgGroupResponse",
},
"RolesApi.V2.ListPermissions": {
operationResponseType: "PermissionsResponse",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class ObservabilityPipelineParseGrokProcessorRule {
*/
"matchRules": Array<ObservabilityPipelineParseGrokProcessorRuleMatchRule>;
/**
* The value of the source field in log events to be processed by the Grok rules.
* The name of the field in the log event to apply the Grok rules to.
*/
"source": string;
/**
Expand Down
1 change: 1 addition & 0 deletions services/org_groups/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
Loading
Loading