Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-05-27 10:37:41.709330",
"spec_repo_commit": "c75940cb"
"regenerated": "2025-05-27 13:50:56.660203",
"spec_repo_commit": "d09cbc0c"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-05-27 10:37:41.725491",
"spec_repo_commit": "c75940cb"
"regenerated": "2025-05-27 13:50:56.680710",
"spec_repo_commit": "d09cbc0c"
}
}
}
2 changes: 0 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1316,8 +1316,6 @@ components:
$ref: '#/components/schemas/AWSResourcesConfig'
traces_config:
$ref: '#/components/schemas/AWSTracesConfig'
required:
- aws_account_id
type: object
AWSAccountResponseData:
description: AWS Account response data.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AWSAccountResponseAttributes
attr_accessor :auth_config

# AWS Account ID.
attr_reader :aws_account_id
attr_accessor :aws_account_id

# AWS partition your AWS account is scoped to. Defaults to `aws`.
# See [Partitions](https://docs.aws.amazon.com/whitepapers/latest/aws-fault-isolation-boundaries/partitions.html) in the AWS documentation for more information.
Expand Down Expand Up @@ -166,24 +166,6 @@ def initialize(attributes = {})
end
end

# Check to see if the all the properties in the model are valid
# @return true if the model is valid
# @!visibility private
def valid?
return false if @aws_account_id.nil?
true
end

# Custom attribute writer method with validation
# @param aws_account_id [Object] Object to be assigned
# @!visibility private
def aws_account_id=(aws_account_id)
if aws_account_id.nil?
fail ArgumentError, 'invalid value for "aws_account_id", aws_account_id cannot be nil.'
end
@aws_account_id = aws_account_id
end

# Returns the object in the form of hash, with additionalProperties support.
# @return [Hash] Returns the object in the form of hash
# @!visibility private
Expand Down
Loading