Skip to content
Merged
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
36 changes: 26 additions & 10 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,20 +223,12 @@ static UNSTABLE_OPS: &[&str] = &[
"v2.get_incident_postmortem_template",
"v2.list_incident_postmortem_templates",
"v2.update_incident_postmortem_template",
// Incident Services (5)
"v2.create_incident_service",
"v2.delete_incident_service",
"v2.get_incident_service",
"v2.list_incident_services",
"v2.update_incident_service",
// Fleet Automation (18)
// Fleet Automation (16)
"v2.list_fleet_agents",
"v2.get_fleet_agent_info",
"v2.list_fleet_agent_versions",
"v2.list_fleet_agent_tracers",
"v2.list_fleet_tracers",
"v2.list_fleet_clusters",
"v2.list_fleet_instrumented_pods",
"v2.list_fleet_deployments",
"v2.get_fleet_deployment",
"v2.create_fleet_deployment_configure",
Expand Down Expand Up @@ -398,6 +390,30 @@ static UNSTABLE_OPS: &[&str] = &[
"v2.trigger_investigation",
// Cloud Cost Management — Anomalies (1)
"v2.list_cost_anomalies",
// Tag Policies (6)
"v2.create_tag_policy",
"v2.delete_tag_policy",
"v2.get_tag_policy",
"v2.get_tag_policy_score",
"v2.list_tag_policies",
"v2.update_tag_policy",
// Model Lab (16)
"v2.delete_model_lab_run",
"v2.get_model_lab_artifact_content",
"v2.get_model_lab_project",
"v2.get_model_lab_run",
"v2.list_model_lab_project_artifacts",
"v2.list_model_lab_project_facet_keys",
"v2.list_model_lab_project_facet_values",
"v2.list_model_lab_projects",
"v2.list_model_lab_run_artifacts",
"v2.list_model_lab_run_facet_keys",
"v2.list_model_lab_run_facet_values",
"v2.list_model_lab_runs",
"v2.pin_model_lab_run",
"v2.star_model_lab_project",
"v2.unpin_model_lab_run",
"v2.unstar_model_lab_project",
];

// ---------------------------------------------------------------------------
Expand Down Expand Up @@ -1303,7 +1319,7 @@ mod tests {

#[test]
fn test_unstable_ops_count() {
assert_eq!(UNSTABLE_OPS.len(), 171);
assert_eq!(UNSTABLE_OPS.len(), 186);
}

#[test]
Expand Down
2 changes: 2 additions & 0 deletions src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ pub mod logs;
pub mod logs_restriction;
pub mod metrics;
pub mod misc;
pub mod model_lab;
pub mod monitors;
pub mod ms_teams;
pub mod network;
Expand All @@ -80,6 +81,7 @@ pub mod static_analysis;
pub mod status_pages;
pub mod symdb;
pub mod synthetics;
pub mod tag_policies;
pub mod tags;
pub mod test;
pub mod test_optimization;
Expand Down
Loading