From f0c88cefc5bb3c75f4d94bd65bca3a7b9642edf9 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 5 Feb 2021 11:11:35 +0000 Subject: [PATCH] Regenerate client from commit 1b26a0f of spec repo --- .apigentools-info | 8 ++++---- data/v1/openapi.yaml | 2 +- docs/v1/AWSTagFilterDeleteRequest.md | 4 ++-- .../v1/models/aws_tag_filter_delete_request.rb | 14 +++++++------- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.apigentools-info b/.apigentools-info index 834b6e310050..a020b1f406d6 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.4.1.dev2", - "regenerated": "2021-02-05 08:15:05.457880", - "spec_repo_commit": "7973735" + "regenerated": "2021-02-05 11:11:20.517766", + "spec_repo_commit": "1b26a0f" }, "v2": { "apigentools_version": "1.4.1.dev2", - "regenerated": "2021-02-05 08:15:17.974135", - "spec_repo_commit": "7973735" + "regenerated": "2021-02-05 11:11:32.899145", + "spec_repo_commit": "1b26a0f" } } } \ No newline at end of file diff --git a/data/v1/openapi.yaml b/data/v1/openapi.yaml index 6d93d2f6fbeb..1166bd32f70a 100644 --- a/data/v1/openapi.yaml +++ b/data/v1/openapi.yaml @@ -260,7 +260,7 @@ components: AWSTagFilterDeleteRequest: description: The objects used to delete an AWS tag filter entry. properties: - aws_account_identifier: + account_id: description: The unique identifier of your AWS account. example: FAKEAC0FAKEAC2FAKEAC type: string diff --git a/docs/v1/AWSTagFilterDeleteRequest.md b/docs/v1/AWSTagFilterDeleteRequest.md index a451b0868300..aad8d7ecaee5 100644 --- a/docs/v1/AWSTagFilterDeleteRequest.md +++ b/docs/v1/AWSTagFilterDeleteRequest.md @@ -4,7 +4,7 @@ | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **aws_account_identifier** | **String** | The unique identifier of your AWS account. | [optional] | +| **account_id** | **String** | The unique identifier of your AWS account. | [optional] | | **namespace** | [**AWSNamespace**](AWSNamespace.md) | | [optional] | ## Example @@ -13,7 +13,7 @@ require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::AWSTagFilterDeleteRequest.new( - aws_account_identifier: FAKEAC0FAKEAC2FAKEAC, + account_id: FAKEAC0FAKEAC2FAKEAC, namespace: null ) ``` diff --git a/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb b/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb index d1e7be6ed439..901682a73e4e 100644 --- a/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb +++ b/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb @@ -20,14 +20,14 @@ module DatadogAPIClient::V1 # The objects used to delete an AWS tag filter entry. class AWSTagFilterDeleteRequest # The unique identifier of your AWS account. - attr_accessor :aws_account_identifier + attr_accessor :account_id attr_accessor :namespace # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { - :'aws_account_identifier' => :'aws_account_identifier', + :'account_id' => :'account_id', :'namespace' => :'namespace' } end @@ -40,7 +40,7 @@ def self.acceptable_attributes # Attribute type mapping. def self.openapi_types { - :'aws_account_identifier' => :'String', + :'account_id' => :'String', :'namespace' => :'AWSNamespace' } end @@ -66,8 +66,8 @@ def initialize(attributes = {}) h[k.to_sym] = v } - if attributes.key?(:'aws_account_identifier') - self.aws_account_identifier = attributes[:'aws_account_identifier'] + if attributes.key?(:'account_id') + self.account_id = attributes[:'account_id'] end if attributes.key?(:'namespace') @@ -93,7 +93,7 @@ def valid? def ==(o) return true if self.equal?(o) self.class == o.class && - aws_account_identifier == o.aws_account_identifier && + account_id == o.account_id && namespace == o.namespace end @@ -106,7 +106,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [aws_account_identifier, namespace].hash + [account_id, namespace].hash end # Builds the object from hash