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

Merge membership from mcnulty #315

Closed
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-30 14:37:40.714287",
"spec_repo_commit": "60bc9127"
"regenerated": "2024-09-30 16:06:37.978197",
"spec_repo_commit": "3c5d6057"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-30 14:37:40.728525",
"spec_repo_commit": "60bc9127"
"regenerated": "2024-09-30 16:06:37.992674",
"spec_repo_commit": "3c5d6057"
}
}
}
131 changes: 97 additions & 34 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,64 @@ components:
$ref: '#/components/schemas/AWSRelatedAccount'
type: array
type: object
AbbreviatedTeam:
description: The definition of `AbbreviatedTeam` object.
properties:
attributes:
$ref: '#/components/schemas/AbbreviatedTeamAttributes'
id:
description: ID of the team
type: string
type:
$ref: '#/components/schemas/AbbreviatedTeamType'
required:
- attributes
- type
type: object
AbbreviatedTeamAttributes:
description: The definition of `AbbreviatedTeamAttributes` object.
properties:
avatar:
description: Unicode representation of the avatar for the team, limited
to a single grapheme
nullable: true
type: string
banner:
description: Banner selection for the team
format: int64
type: integer
handle:
description: The team's identifier
example: ''
type: string
handles:
description: The `AbbreviatedTeamAttributes` `handles`.
type: string
is_open_membership:
description: The `AbbreviatedTeamAttributes` `is_open_membership`.
readOnly: true
type: boolean
name:
description: The name of the team
example: ''
type: string
summary:
description: A brief summary of the team
readOnly: true
type: string
required:
- handle
- name
type: object
AbbreviatedTeamType:
default: team
description: The definition of `AbbreviatedTeamType` object.
enum:
- team
example: team
type: string
x-enum-varnames:
- TEAM
ActiveBillingDimensionsAttributes:
description: List of active billing dimensions.
properties:
Expand Down Expand Up @@ -17812,27 +17870,6 @@ components:
- id
- type
type: object
RelationshipToUserTeamTeam:
description: Relationship between team membership and team
properties:
data:
$ref: '#/components/schemas/RelationshipToUserTeamTeamData'
required:
- data
type: object
RelationshipToUserTeamTeamData:
description: The team associated with the membership
properties:
id:
description: The ID of the team associated with the membership
example: d7e15d9d-d346-43da-81d8-3d9e71d9a5e9
type: string
type:
$ref: '#/components/schemas/UserTeamTeamType'
required:
- id
- type
type: object
RelationshipToUserTeamUser:
description: Relationship between team membership and user
properties:
Expand Down Expand Up @@ -24823,8 +24860,8 @@ components:
UserTeamIncluded:
description: Included resources related to the team membership
oneOf:
- $ref: '#/components/schemas/User'
- $ref: '#/components/schemas/Team'
- $ref: '#/components/schemas/AbbreviatedTeam'
- $ref: '#/components/schemas/UserTeamUser'
UserTeamPermission:
description: A user's permissions for a given team
properties:
Expand Down Expand Up @@ -24861,8 +24898,6 @@ components:
UserTeamRelationships:
description: Relationship between membership and a user
properties:
team:
$ref: '#/components/schemas/RelationshipToUserTeamTeam'
user:
$ref: '#/components/schemas/RelationshipToUserTeamUser'
type: object
Expand Down Expand Up @@ -24893,15 +24928,6 @@ components:
type: string
x-enum-varnames:
- ADMIN
UserTeamTeamType:
default: team
description: User team team type
enum:
- team
example: team
type: string
x-enum-varnames:
- TEAM
UserTeamType:
default: team_memberships
description: Team membership type
Expand Down Expand Up @@ -24929,6 +24955,42 @@ components:
required:
- data
type: object
UserTeamUser:
description: The definition of `UserTeamUser` object.
properties:
attributes:
$ref: '#/components/schemas/UserTeamUserAttributes'
id:
description: The `UserTeamUser` ID.
type: string
type:
$ref: '#/components/schemas/UserTeamUserType'
required:
- type
type: object
UserTeamUserAttributes:
description: The definition of `UserTeamUserAttributes` object.
properties:
disabled:
description: The `UserTeamUserAttributes` `disabled`.
type: boolean
email:
description: The `UserTeamUserAttributes` `email`.
type: string
handle:
description: The `UserTeamUserAttributes` `handle`.
type: string
icon:
description: The `UserTeamUserAttributes` `icon`.
type: string
name:
description: The `UserTeamUserAttributes` `name`.
nullable: true
type: string
service_account:
description: The `UserTeamUserAttributes` `service_account`.
type: boolean
type: object
UserTeamUserType:
default: users
description: User team user type
Expand Down Expand Up @@ -38900,6 +38962,7 @@ paths:
name: filter[keyword]
required: false
schema:
description: Search query, can be user email or name.
type: string
responses:
'200':
Expand Down
22 changes: 6 additions & 16 deletions examples/v2_teams_CreateTeamMembership.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
// response
use datadog_api_client::datadog;
use datadog_api_client::datadogV2::api_teams::TeamsAPI;
use datadog_api_client::datadogV2::model::RelationshipToUserTeamTeam;
use datadog_api_client::datadogV2::model::RelationshipToUserTeamTeamData;
use datadog_api_client::datadogV2::model::RelationshipToUserTeamUser;
use datadog_api_client::datadogV2::model::RelationshipToUserTeamUserData;
use datadog_api_client::datadogV2::model::UserTeamAttributes;
use datadog_api_client::datadogV2::model::UserTeamCreate;
use datadog_api_client::datadogV2::model::UserTeamRelationships;
use datadog_api_client::datadogV2::model::UserTeamRequest;
use datadog_api_client::datadogV2::model::UserTeamRole;
use datadog_api_client::datadogV2::model::UserTeamTeamType;
use datadog_api_client::datadogV2::model::UserTeamType;
use datadog_api_client::datadogV2::model::UserTeamUserType;

Expand All @@ -21,19 +18,12 @@ async fn main() {
UserTeamCreate::new(UserTeamType::TEAM_MEMBERSHIPS)
.attributes(UserTeamAttributes::new().role(Some(UserTeamRole::ADMIN)))
.relationships(
UserTeamRelationships::new()
.team(RelationshipToUserTeamTeam::new(
RelationshipToUserTeamTeamData::new(
"d7e15d9d-d346-43da-81d8-3d9e71d9a5e9".to_string(),
UserTeamTeamType::TEAM,
),
))
.user(RelationshipToUserTeamUser::new(
RelationshipToUserTeamUserData::new(
"b8626d7e-cedd-11eb-abf5-da7ad0900001".to_string(),
UserTeamUserType::USERS,
),
)),
UserTeamRelationships::new().user(RelationshipToUserTeamUser::new(
RelationshipToUserTeamUserData::new(
"b8626d7e-cedd-11eb-abf5-da7ad0900001".to_string(),
UserTeamUserType::USERS,
),
)),
),
);
let configuration = datadog::Configuration::new();
Expand Down
16 changes: 10 additions & 6 deletions src/datadogV2/model/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3020,12 +3020,6 @@ pub mod model_user_team_role;
pub use self::model_user_team_role::UserTeamRole;
pub mod model_user_team_relationships;
pub use self::model_user_team_relationships::UserTeamRelationships;
pub mod model_relationship_to_user_team_team;
pub use self::model_relationship_to_user_team_team::RelationshipToUserTeamTeam;
pub mod model_relationship_to_user_team_team_data;
pub use self::model_relationship_to_user_team_team_data::RelationshipToUserTeamTeamData;
pub mod model_user_team_team_type;
pub use self::model_user_team_team_type::UserTeamTeamType;
pub mod model_relationship_to_user_team_user;
pub use self::model_relationship_to_user_team_user::RelationshipToUserTeamUser;
pub mod model_relationship_to_user_team_user_data;
Expand All @@ -3034,6 +3028,16 @@ pub mod model_user_team_user_type;
pub use self::model_user_team_user_type::UserTeamUserType;
pub mod model_user_team_type;
pub use self::model_user_team_type::UserTeamType;
pub mod model_abbreviated_team;
pub use self::model_abbreviated_team::AbbreviatedTeam;
pub mod model_abbreviated_team_attributes;
pub use self::model_abbreviated_team_attributes::AbbreviatedTeamAttributes;
pub mod model_abbreviated_team_type;
pub use self::model_abbreviated_team_type::AbbreviatedTeamType;
pub mod model_user_team_user;
pub use self::model_user_team_user::UserTeamUser;
pub mod model_user_team_user_attributes;
pub use self::model_user_team_user_attributes::UserTeamUserAttributes;
pub mod model_user_team_included;
pub use self::model_user_team_included::UserTeamIncluded;
pub mod model_user_team_request;
Expand Down
Loading
Loading