Class: DatadogAPIClient::V2::FleetDeploymentAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::FleetDeploymentAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb
Overview
Attributes of a deployment in the response.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#config_operations ⇒ Object
Ordered list of configuration file operations to perform on the target hosts.
-
#estimated_end_time_unix ⇒ Object
Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).
-
#filter_query ⇒ Object
Query used to filter and select target hosts for the deployment.
-
#high_level_status ⇒ Object
Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").
-
#hosts ⇒ Object
Paginated list of hosts in this deployment with their individual statuses.
-
#packages ⇒ Object
List of packages to deploy to target hosts.
-
#total_hosts ⇒ Object
Total number of hosts targeted by this deployment.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
48 49 50 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 48 def additional_properties @additional_properties end |
#config_operations ⇒ Object
Ordered list of configuration file operations to perform on the target hosts.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 25 def config_operations @config_operations end |
#estimated_end_time_unix ⇒ Object
Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).
28 29 30 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 28 def estimated_end_time_unix @estimated_end_time_unix end |
#filter_query ⇒ Object
Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 31 def filter_query @filter_query end |
#high_level_status ⇒ Object
Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").
35 36 37 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 35 def high_level_status @high_level_status end |
#hosts ⇒ Object
Paginated list of hosts in this deployment with their individual statuses. Only included
when fetching a single deployment by ID. Use the limit and page query parameters to
navigate through pages. Pagination metadata is included in the response meta.hosts field.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 40 def hosts @hosts end |
#packages ⇒ Object
List of packages to deploy to target hosts. Present only for package upgrade deployments.
43 44 45 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 43 def packages @packages end |
#total_hosts ⇒ Object
Total number of hosts targeted by this deployment.
46 47 48 |
# File 'lib/datadog_api_client/v2/models/fleet_deployment_attributes.rb', line 46 def total_hosts @total_hosts end |