-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
service/sagemaker: Remove deprecated (helper/schema.ResourceData).Partial() and (helper/schema.ResourceData).SetPartial() #12462
Conversation
…tial() and (helper/schema.ResourceData).SetPartial() Reference: #12083 Reference: #12087 Previously: ``` aws/resource_aws_sagemaker_endpoint.go:135:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_sagemaker_endpoint.go:144:2: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_sagemaker_endpoint.go:156:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_sagemaker_endpoint.go:168:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_sagemaker_model.go:284:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_sagemaker_model.go:294:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_sagemaker_notebook_instance.go:217:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_sagemaker_notebook_instance.go:226:2: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_sagemaker_notebook_instance.go:328:2: R007: deprecated (schema.ResourceData).Partial ``` Output from acceptance testing: ``` --- PASS: TestAccAWSSagemakerEndpoint_basic (485.91s) --- PASS: TestAccAWSSagemakerEndpoint_EndpointConfigName (852.16s) --- PASS: TestAccAWSSagemakerEndpoint_Tags (525.67s) --- PASS: TestAccAWSSagemakerModel_basic (47.36s) --- PASS: TestAccAWSSagemakerModel_containers (35.84s) --- PASS: TestAccAWSSagemakerModel_networkIsolation (59.84s) --- PASS: TestAccAWSSagemakerModel_primaryContainerEnvironment (33.08s) --- PASS: TestAccAWSSagemakerModel_primaryContainerHostname (30.86s) --- PASS: TestAccAWSSagemakerModel_primaryContainerModelDataUrl (57.54s) --- PASS: TestAccAWSSagemakerModel_tags (42.35s) --- PASS: TestAccAWSSagemakerModel_vpcConfig (62.13s) --- PASS: TestAccAWSSagemakerNotebookInstance_basic (359.34s) --- PASS: TestAccAWSSagemakerNotebookInstance_direct_internet_access (714.40s) --- PASS: TestAccAWSSagemakerNotebookInstance_disappears (396.62s) --- PASS: TestAccAWSSagemakerNotebookInstance_LifecycleConfigName (296.66s) --- PASS: TestAccAWSSagemakerNotebookInstance_tags (411.90s) --- PASS: TestAccAWSSagemakerNotebookInstance_update (625.72s) ```
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
--- FAIL: TestAccAWSSagemakerModel_tags (24.06s)
--- PASS: TestAccAWSSagemakerModel_primaryContainerEnvironment (31.27s)
--- PASS: TestAccAWSSagemakerModel_networkIsolation (38.92s)
--- PASS: TestAccAWSSagemakerModel_containers (40.52s)
--- PASS: TestAccAWSSagemakerModel_basic (41.24s)
--- PASS: TestAccAWSSagemakerModel_vpcConfig (42.23s)
--- PASS: TestAccAWSSagemakerModel_primaryContainerHostname (67.92s)
--- PASS: TestAccAWSSagemakerModel_primaryContainerModelDataUrl (68.44s)
--- PASS: TestAccAWSSagemakerNotebookInstance_LifecycleConfigName (290.91s)
--- PASS: TestAccAWSSagemakerNotebookInstance_basic (327.20s)
--- PASS: TestAccAWSSagemakerNotebookInstance_tags (331.95s)
--- PASS: TestAccAWSSagemakerNotebookInstance_disappears (344.96s)
--- PASS: TestAccAWSSagemakerEndpoint_Tags (465.97s)
--- PASS: TestAccAWSSagemakerEndpoint_basic (469.23s)
--- PASS: TestAccAWSSagemakerNotebookInstance_update (618.41s)
--- PASS: TestAccAWSSagemakerNotebookInstance_direct_internet_access (633.40s)
--- PASS: TestAccAWSSagemakerEndpoint_EndpointConfigName (878.92s)
The failing test is unrelated to this change:
TestAccAWSSagemakerModel_tags
This has been released in version 2.56.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Community Note
Reference: #12083
Reference: #12087
Release note for CHANGELOG:
Previously:
Output from acceptance testing: