Skip to content
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

Handle custom decoders as part of setting fields in post_create #13520

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Conversation

melinath
Copy link
Member

@melinath melinath commented Apr 2, 2025

#12939 started triggering generation of post-create code, but it missed adding support for decoders (which are already used by the equivalent code for pulling computed fields from operation responses.) I also added (harmless at the time) setting of fields for resources that use PollAsync on create.

Decoder support is necessary to properly handle some resources, like bigqueryanalyticshub_listing_subscription. In this specific case, we do end up just moving some code around from one custom code template to another; however, this may reduce the need for post_create custom code on other resources as well.

However, adding decoder support means that we need to stop running this code immediately after create for PollAsync resources (because the decoder returns nil until the resource exists). But we can't just remove setting of id format fields in post-create either, because some resources were relying on it from before #12939.

Since the logic for doing the setting is the same regardless, I factored it out into a separate generated function that can get called in the appropriate part of Create whether it's not async or uses poll async.

(I think we should use the same function for setting id format fields on post-create for OpAsync as well - it's currently still relying on "identity" fields - but I'm leaving that for a separate PR.)

Part of hashicorp/terraform-provider-google#22214

Fixed hashicorp/terraform-provider-google#22239

Release Note Template for Downstream PRs (will be copied)

See Write release notes for guidance.


@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@melinath

This comment was marked as outdated.

@melinath melinath closed this Apr 2, 2025
@melinath melinath removed the request for review from sachinpro April 2, 2025 22:25
Following GoogleCloudPlatform#12939 this will trigger proper generation of post-create code
@melinath

This comment was marked as outdated.

@melinath melinath reopened this Apr 3, 2025
@melinath melinath force-pushed the tpg-22214-analyticshub-listing-subscription branch from 6edd784 to 75c78bb Compare April 3, 2025 19:03
@melinath melinath changed the title Switched subscription_id to use a standard custom_flatten Handle custom decoders as part of setting fields in post_create Apr 3, 2025
@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@modular-magician
Copy link
Collaborator

🟢 Tests passed during RECORDING mode:
TestAccBigqueryAnalyticsHubListingSubscription_bigqueryAnalyticshubListingSubscriptionBasicExample [Debug log]

🟢 No issues found for passed tests after REPLAYING rerun.


🔴 Tests failed during RECORDING mode:
TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeLargeCustomDictionaryExample [Error message] [Debug log]
TestAccMonitoringMonitoredProject_monitoringMonitoredProjectBasicExample [Error message] [Debug log]
TestAccMonitoringMonitoredProject_monitoringMonitoredProjectLongFormExample [Error message] [Debug log]
TestAccMonitoringMonitoredProject_projectNumLongForm [Error message] [Debug log]
TestAccMonitoringMonitoredProject_projectNumShortForm [Error message] [Debug log]

🔴 Errors occurred during RECORDING mode. Please fix them to complete your PR.

View the build log or the debug log for each test

melinath added 3 commits April 4, 2025 09:37
Previously this didn't matter because it returns immediately, but we need to mark it as async to prevent trying to decode
@modular-magician

This comment was marked as outdated.

@modular-magician

This comment was marked as outdated.

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

google provider: Diff ( 21 files changed, 248 insertions(+), 27 deletions(-))
google-beta provider: Diff ( 22 files changed, 256 insertions(+), 27 deletions(-))

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 1522
Passed tests: 1369
Skipped tests: 142
Affected tests: 11

Click here to see the affected service packages
  • bigquerydatatransfer
  • firestore
  • monitoring
  • resourcemanager
  • storage
  • cloudidentity
  • compute
  • iap
  • bigqueryanalyticshub
  • containeranalysis
  • datalossprevention
  • osconfig
  • secretmanager
  • secretmanagerregional

Action taken

Found 11 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
  • TestAccDataLossPreventionJobTrigger_dlpJobTriggerInspectCustomInfoTypes
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeBasicExample
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeDictionaryExample
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeGroupIndexUpdate
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeLargeCustomDictionaryExample
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeStoredInfoTypeId
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeUpdate
  • TestAccDataLossPreventionStoredInfoType_dlpStoredInfoTypeWithIdExample
  • TestAccMonitoringMetricDescriptor_monitoringMetricDescriptorAlertExample
  • TestAccMonitoringMetricDescriptor_monitoringMetricDescriptorBasicExample
  • TestAccMonitoringMetricDescriptor_update

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

🔴 Tests failed during RECORDING mode:
TestAccMonitoringMetricDescriptor_monitoringMetricDescriptorAlertExample [Error message] [Debug log]
TestAccMonitoringMetricDescriptor_monitoringMetricDescriptorBasicExample [Error message] [Debug log]
TestAccMonitoringMetricDescriptor_update [Error message] [Debug log]

🔴 Several tests terminated during RECORDING mode.

🔴 Errors occurred during RECORDING mode. Please fix them to complete your PR.

View the build log or the debug log for each test

…tion that is shared with polling async post-create
@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

google provider: Diff ( 223 files changed, 2361 insertions(+), 202 deletions(-))
google-beta provider: Diff ( 246 files changed, 2585 insertions(+), 226 deletions(-))

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

google provider: Diff ( 94 files changed, 1194 insertions(+), 206 deletions(-))
google-beta provider: Diff ( 102 files changed, 1279 insertions(+), 231 deletions(-))

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

google provider: Diff ( 87 files changed, 1138 insertions(+), 206 deletions(-))
google-beta provider: Diff ( 95 files changed, 1223 insertions(+), 231 deletions(-))

@melinath
Copy link
Member Author

melinath commented Apr 4, 2025

This isn't working quite right - for example, a few Chronicle resources are no longer having their fields set on post_create after this change.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Set computed id fields on post_create when creation uses pollasync
2 participants