From d94f3f2bc7ac2b6a28fb5155018664727a934f8c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Jan 2023 10:00:14 +0100 Subject: [PATCH] fix(schema): CloudFormation Updates (#532) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: RĂºben Fonseca --- .../iotwireless/aws-iotwireless-partneraccount.go | 10 +++++----- schema/cdk.go | 6 +++--- schema/cdk.schema.json | 6 +++--- schema/cloudformation.go | 6 +++--- schema/cloudformation.schema.json | 6 +++--- schema/sam.go | 6 +++--- schema/sam.schema.json | 6 +++--- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/cloudformation/iotwireless/aws-iotwireless-partneraccount.go b/cloudformation/iotwireless/aws-iotwireless-partneraccount.go index a796d53d90..d998b17d42 100644 --- a/cloudformation/iotwireless/aws-iotwireless-partneraccount.go +++ b/cloudformation/iotwireless/aws-iotwireless-partneraccount.go @@ -19,11 +19,6 @@ type PartnerAccount struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-accountlinked AccountLinked *bool `json:"AccountLinked,omitempty"` - // Fingerprint AWS CloudFormation Property - // Required: false - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-fingerprint - Fingerprint *string `json:"Fingerprint,omitempty"` - // PartnerAccountId AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-partneraccountid @@ -39,6 +34,11 @@ type PartnerAccount struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalk Sidewalk *PartnerAccount_SidewalkAccountInfo `json:"Sidewalk,omitempty"` + // SidewalkResponse AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalkresponse + SidewalkResponse *PartnerAccount_SidewalkAccountInfoWithFingerprint `json:"SidewalkResponse,omitempty"` + // SidewalkUpdate AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalkupdate diff --git a/schema/cdk.go b/schema/cdk.go index e2e43bccf6..7405a00143 100644 --- a/schema/cdk.go +++ b/schema/cdk.go @@ -87327,9 +87327,6 @@ var CdkSchema = `{ "AccountLinked": { "type": "boolean" }, - "Fingerprint": { - "type": "string" - }, "PartnerAccountId": { "type": "string" }, @@ -87339,6 +87336,9 @@ var CdkSchema = `{ "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, + "SidewalkResponse": { + "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" + }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" }, diff --git a/schema/cdk.schema.json b/schema/cdk.schema.json index 543e0c178a..ff312bf505 100644 --- a/schema/cdk.schema.json +++ b/schema/cdk.schema.json @@ -87322,9 +87322,6 @@ "AccountLinked": { "type": "boolean" }, - "Fingerprint": { - "type": "string" - }, "PartnerAccountId": { "type": "string" }, @@ -87334,6 +87331,9 @@ "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, + "SidewalkResponse": { + "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" + }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" }, diff --git a/schema/cloudformation.go b/schema/cloudformation.go index 7e7dc0460a..42a1cff631 100644 --- a/schema/cloudformation.go +++ b/schema/cloudformation.go @@ -87266,9 +87266,6 @@ var CloudformationSchema = `{ "AccountLinked": { "type": "boolean" }, - "Fingerprint": { - "type": "string" - }, "PartnerAccountId": { "type": "string" }, @@ -87278,6 +87275,9 @@ var CloudformationSchema = `{ "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, + "SidewalkResponse": { + "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" + }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" }, diff --git a/schema/cloudformation.schema.json b/schema/cloudformation.schema.json index 6d370da233..e82bb564f4 100644 --- a/schema/cloudformation.schema.json +++ b/schema/cloudformation.schema.json @@ -87261,9 +87261,6 @@ "AccountLinked": { "type": "boolean" }, - "Fingerprint": { - "type": "string" - }, "PartnerAccountId": { "type": "string" }, @@ -87273,6 +87270,9 @@ "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, + "SidewalkResponse": { + "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" + }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" }, diff --git a/schema/sam.go b/schema/sam.go index 3a93c1d31b..ebeeeec427 100644 --- a/schema/sam.go +++ b/schema/sam.go @@ -87266,9 +87266,6 @@ var SamSchema = `{ "AccountLinked": { "type": "boolean" }, - "Fingerprint": { - "type": "string" - }, "PartnerAccountId": { "type": "string" }, @@ -87278,6 +87275,9 @@ var SamSchema = `{ "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, + "SidewalkResponse": { + "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" + }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" }, diff --git a/schema/sam.schema.json b/schema/sam.schema.json index 770811d58a..4513cbe958 100644 --- a/schema/sam.schema.json +++ b/schema/sam.schema.json @@ -87261,9 +87261,6 @@ "AccountLinked": { "type": "boolean" }, - "Fingerprint": { - "type": "string" - }, "PartnerAccountId": { "type": "string" }, @@ -87273,6 +87270,9 @@ "Sidewalk": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfo" }, + "SidewalkResponse": { + "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkAccountInfoWithFingerprint" + }, "SidewalkUpdate": { "$ref": "#/definitions/AWS::IoTWireless::PartnerAccount.SidewalkUpdateAccount" },