Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
service/redshift: Remove deprecated (helper/schema.ResourceData).Part…
…ial() and (helper/schema.ResourceData).SetPartial() (#12461) Reference: #12083 Reference: #12087 Previously: ``` aws/resource_aws_redshift_cluster.go:644:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_cluster.go:653:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_cluster.go:774:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_cluster.go:828:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_event_subscription.go:191:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_event_subscription.go:216:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_event_subscription.go:219:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_parameter_group.go:168:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_parameter_group.go:200:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_parameter_group.go:210:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_parameter_group.go:213:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_snapshot_copy_grant.go:118:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_snapshot_copy_grant.go:127:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_snapshot_copy_grant.go:130:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_snapshot_schedule.go:142:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_snapshot_schedule.go:151:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_snapshot_schedule.go:168:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_subnet_group.go:127:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_redshift_subnet_group.go:136:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_redshift_subnet_group.go:162:2: R007: deprecated (schema.ResourceData).Partial ``` Output from acceptance testing (failure present on master): ``` --- PASS: TestAccAWSRedshiftCluster_basic (374.33s) --- PASS: TestAccAWSRedshiftCluster_changeAvailabilityZone (664.68s) --- PASS: TestAccAWSRedshiftCluster_changeEncryption1 (2088.45s) --- PASS: TestAccAWSRedshiftCluster_changeEncryption2 (1868.48s) --- PASS: TestAccAWSRedshiftCluster_enhancedVpcRoutingEnabled (959.29s) --- PASS: TestAccAWSRedshiftCluster_forceNewUsername (1672.20s) --- PASS: TestAccAWSRedshiftCluster_iamRoles (824.30s) --- PASS: TestAccAWSRedshiftCluster_kmsKey (1387.64s) --- PASS: TestAccAWSRedshiftCluster_loggingEnabled (1178.50s) --- PASS: TestAccAWSRedshiftCluster_publiclyAccessible (1435.60s) --- PASS: TestAccAWSRedshiftCluster_snapshotCopy (434.54s) --- PASS: TestAccAWSRedshiftCluster_tags (476.81s) --- PASS: TestAccAWSRedshiftCluster_updateNodeCount (3699.47s) --- PASS: TestAccAWSRedshiftCluster_updateNodeType (1911.25s) --- PASS: TestAccAWSRedshiftCluster_withFinalSnapshot (1449.68s) --- PASS: TestAccAWSRedshiftEventSubscription_basicUpdate (41.61s) --- PASS: TestAccAWSRedshiftEventSubscription_categoryUpdate (51.13s) --- PASS: TestAccAWSRedshiftEventSubscription_tagsUpdate (145.74s) --- PASS: TestAccAWSRedshiftEventSubscription_withPrefix (44.47s) --- PASS: TestAccAWSRedshiftEventSubscription_withSourceIds (84.82s) --- PASS: TestAccAWSRedshiftParameterGroup_basic (44.40s) --- PASS: TestAccAWSRedshiftParameterGroup_withoutParameters (76.56s) --- PASS: TestAccAWSRedshiftParameterGroup_withParameters (27.47s) --- PASS: TestAccAWSRedshiftParameterGroup_withTags (101.82s) --- PASS: TestAccAWSRedshiftSnapshotCopyGrant_Basic (34.09s) --- PASS: TestAccAWSRedshiftSnapshotCopyGrant_Update (74.12s) --- FAIL: TestAccAWSRedshiftSnapshotSchedule_withForceDestroy (314.27s) --- PASS: TestAccAWSRedshiftSnapshotSchedule_basic (55.17s) --- PASS: TestAccAWSRedshiftSnapshotSchedule_withDescription (48.15s) --- PASS: TestAccAWSRedshiftSnapshotSchedule_withIdentifierPrefix (44.69s) --- PASS: TestAccAWSRedshiftSnapshotSchedule_withMultipleDefinition (37.15s) --- PASS: TestAccAWSRedshiftSnapshotSchedule_withTags (97.33s) --- PASS: TestAccAWSRedshiftSubnetGroup_basic (41.15s) --- PASS: TestAccAWSRedshiftSubnetGroup_tags (64.37s) --- PASS: TestAccAWSRedshiftSubnetGroup_updateDescription (67.68s) --- PASS: TestAccAWSRedshiftSubnetGroup_updateSubnetIds (59.10s) ```
- Loading branch information