docs/v1/AzureAccount.md in datadog_api_client-1.4.0 vs docs/v1/AzureAccount.md in datadog_api_client-1.5.0
- old
+ new
@@ -1,30 +1,31 @@
# DatadogAPIClient::V1::AzureAccount
## Properties
-| Name | Type | Description | Notes |
-| ---- | ---- | ----------- | ----- |
-| **client_id** | **String** | Your Azure web application ID. | [optional] |
-| **client_secret** | **String** | Your Azure web application secret key. | [optional] |
-| **errors** | **Array<String>** | Errors in your configuration. | [optional] |
-| **host_filters** | **String** | Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. | [optional] |
-| **new_client_id** | **String** | Your New Azure web application ID. | [optional] |
-| **new_tenant_name** | **String** | Your New Azure Active Directory ID. | [optional] |
-| **tenant_name** | **String** | Your Azure Active Directory ID. | [optional] |
+| Name | Type | Description | Notes |
+| ------------------- | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
+| **automute** | **Boolean** | Silence monitors for expected Azure VM shutdowns. | [optional] |
+| **client_id** | **String** | Your Azure web application ID. | [optional] |
+| **client_secret** | **String** | Your Azure web application secret key. | [optional] |
+| **errors** | **Array<String>** | Errors in your configuration. | [optional] |
+| **host_filters** | **String** | Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. | [optional] |
+| **new_client_id** | **String** | Your New Azure web application ID. | [optional] |
+| **new_tenant_name** | **String** | Your New Azure Active Directory ID. | [optional] |
+| **tenant_name** | **String** | Your Azure Active Directory ID. | [optional] |
## Example
```ruby
require 'datadog_api_client/v1'
instance = DatadogAPIClient::V1::AzureAccount.new(
+ automute: true,
client_id: testc7f6-1234-5678-9101-3fcbf464test,
client_secret: testingx./Sw*g/Y33t..R1cH+hScMDt,
errors: ["*"],
host_filters: key:value,filter:example,
new_client_id: new1c7f6-1234-5678-9101-3fcbf464test,
new_tenant_name: new1c44-1234-5678-9101-cc00736ftest,
tenant_name: testc44-1234-5678-9101-cc00736ftest
)
```
-