@@ -4,19 +4,19 @@ type BundleDeployEvent struct {
44 // UUID associated with the bundle itself. Set in the `bundle.uuid` field in the bundle configuration.
55 BundleUuid string `json:"bundle_uuid,omitempty"`
66
7- ResourceCount int64 `json:"resource_count,omitempty "`
8- ResourceJobCount int64 `json:"resource_job_count,omitempty "`
9- ResourcePipelineCount int64 `json:"resource_pipeline_count,omitempty "`
10- ResourceModelCount int64 `json:"resource_model_count,omitempty "`
11- ResourceExperimentCount int64 `json:"resource_experiment_count,omitempty "`
12- ResourceModelServingEndpointCount int64 `json:"resource_model_serving_endpoint_count,omitempty "`
13- ResourceRegisteredModelCount int64 `json:"resource_registered_model_count,omitempty "`
14- ResourceQualityMonitorCount int64 `json:"resource_quality_monitor_count,omitempty "`
15- ResourceSchemaCount int64 `json:"resource_schema_count,omitempty "`
16- ResourceVolumeCount int64 `json:"resource_volume_count,omitempty "`
17- ResourceClusterCount int64 `json:"resource_cluster_count,omitempty "`
18- ResourceDashboardCount int64 `json:"resource_dashboard_count,omitempty "`
19- ResourceAppCount int64 `json:"resource_app_count,omitempty "`
7+ ResourceCount int64 `json:"resource_count"`
8+ ResourceJobCount int64 `json:"resource_job_count"`
9+ ResourcePipelineCount int64 `json:"resource_pipeline_count"`
10+ ResourceModelCount int64 `json:"resource_model_count"`
11+ ResourceExperimentCount int64 `json:"resource_experiment_count"`
12+ ResourceModelServingEndpointCount int64 `json:"resource_model_serving_endpoint_count"`
13+ ResourceRegisteredModelCount int64 `json:"resource_registered_model_count"`
14+ ResourceQualityMonitorCount int64 `json:"resource_quality_monitor_count"`
15+ ResourceSchemaCount int64 `json:"resource_schema_count"`
16+ ResourceVolumeCount int64 `json:"resource_volume_count"`
17+ ResourceClusterCount int64 `json:"resource_cluster_count"`
18+ ResourceDashboardCount int64 `json:"resource_dashboard_count"`
19+ ResourceAppCount int64 `json:"resource_app_count"`
2020
2121 // IDs of resources managed by the bundle. Some resources like volumes or schemas
2222 // do not expose a numerical or UUID identifier and are tracked by name. Those
@@ -34,18 +34,18 @@ type BundleDeployEvent struct {
3434// any notice.
3535type BundleDeployExperimental struct {
3636 // Number of configuration files in the bundle.
37- ConfigurationFileCount int64 `json:"configuration_file_count,omitempty "`
37+ ConfigurationFileCount int64 `json:"configuration_file_count"`
3838
3939 // Size in bytes of the Terraform state file
4040 TerraformStateSizeBytes int64 `json:"terraform_state_size_bytes,omitempty"`
4141
4242 // Number of variables in the bundle
43- VariableCount int64 `json:"variable_count,omitempty "`
44- ComplexVariableCount int64 `json:"complex_variable_count,omitempty "`
45- LookupVariableCount int64 `json:"lookup_variable_count,omitempty "`
43+ VariableCount int64 `json:"variable_count"`
44+ ComplexVariableCount int64 `json:"complex_variable_count"`
45+ LookupVariableCount int64 `json:"lookup_variable_count"`
4646
4747 // Number of targets in the bundle
48- TargetCount int64 `json:"target_count,omitempty "`
48+ TargetCount int64 `json:"target_count"`
4949
5050 // Whether a field is set or not. If a configuration field is not present in this
5151 // map then it is not tracked by this field.
0 commit comments