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

Add the latest changes in Datascan API #8541

Merged
merged 16 commits into from
Aug 17, 2023

Conversation

evasharma
Copy link
Contributor

@evasharma evasharma commented Aug 3, 2023

Updating Datascan terraform support with the latest changes and additions in Datascan API.

If this PR is for Terraform, I acknowledge that I have:

  • Searched through the issue tracker for an open issue that this either resolves or contributes to, commented on it to claim it, and written "fixes {url}" or "part of {url}" in this PR description. If there were no relevant open issues, I opened one and commented that I would like to work on it (not necessary for very small changes).
  • [X ] Ensured that all new fields I added that can be set by a user appear in at least one example (for generated resources) or third_party test (for handwritten resources or update tests).
  • [X ] Generated Terraform providers, and ran make test and make lint in the generated providers to ensure it passes unit and linter tests.
  • Ran relevant acceptance tests using my own Google Cloud project and credentials (If the acceptance tests do not yet pass or you are unable to run them, please let your reviewer know).
  • Read Write release notes before writing my release note below.

Release Note Template for Downstream PRs (will be copied)

dataplex: added fields `data_profile_spec.post_scan_actions`, `data_profile_spec.include_fields` and `data_profile_spec.exclude_fields`

@modular-magician
Copy link
Collaborator

Hello! I am a robot. It looks like you are a community contributor. @ScottSuarez, a repository maintainer, has been assigned to review your changes. If you have not received review feedback within 2 business days, please leave a comment on this PR asking them to take a look.

You can help make sure that review is quick by doing a self-review and by running impacted tests locally.

Expected input is a list of fully qualified names of fields as in the schema.
Only top-level field names for nested fields are supported.
For instance, if 'x' is of nested field type, listing 'x' is supported but 'x.y.z' is not supported. Here 'y' and 'y.z' are nested fields of 'x'.
item_type: !ruby/object:Api::Type::String
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
item_type: !ruby/object:Api::Type::String
item_type: Api::Type::String

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Fixed!

Expected input is a list of fully qualified names of fields as in the schema.
Only top-level field names for nested fields are supported.
For instance, if 'x' is of nested field type, listing 'x' is supported but 'x.y.z' is not supported. Here 'y' and 'y.z' are nested fields of 'x'.
item_type: !ruby/object:Api::Type::String
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
item_type: !ruby/object:Api::Type::String
item_type: item_type: Api::Type::String

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Fixed!

Comment on lines 902 to 924
- !ruby/object:Api::Type::NestedObject
name: 'postScanActionsResult'
decription: |
The result of post scan actions.
properties:
- !ruby/object:Api::Type::NestedObject
name: 'bigQueryExportResult'
description: |
The result of BigQuery export post scan action.
properties:
- !ruby/object:Api::Type::Enum
name: 'state'
decription: |
Execution state for the BigQuery exporting.
values:
- STATE_UNSPECIFIED
- SUCCEEDED
- FAILED
- SKIPPED
- !ruby/object:Api::Type::String
name: 'message'
description: |
Additional information about the BigQuery exporting.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This whole block seems like it should be an output field.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that we are looking to remove the DataProfileResult and DataQualityResult in this PR: #8583 (comment)

Based on how that discussion goes, we should look at only adding the export and rule name fields in the spec, and not in the result.

@evasharma

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks removed the fields added in this PR, the rest of the Result field to be removed in @saurabh-net PR.

Comment on lines 558 to 570
- !ruby/object:Api::Type::String
name: 'name'
description: |
A mutable name for the rule.
The name must contain only letters (a-z, A-Z), numbers (0-9), or hyphens (-).
The maximum length is 63 characters.
Must start with a letter.
Must end with a number or a letter.
- !ruby/object:Api::Type::String
name: 'description'
description: |
Description of the rule.
The maximum length is 1,024 characters.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

likely output fields

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks removed the fields added in this PR, the rest of the Result field to be removed in @saurabh-net PR.

Comment on lines 496 to 518
- !ruby/object:Api::Type::NestedObject
name: 'postScanActionsResult'
decription: |
The result of post scan actions.
properties:
- !ruby/object:Api::Type::NestedObject
name: 'bigQueryExportResult'
description: |
The result of BigQuery export post scan action.
properties:
- !ruby/object:Api::Type::Enum
name: 'state'
decription: |
Execution state for the BigQuery exporting.
values:
- STATE_UNSPECIFIED
- SUCCEEDED
- FAILED
- SKIPPED
- !ruby/object:Api::Type::String
name: 'message'
description: |
Additional information about the BigQuery exporting.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

output only

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks removed the fields added in this PR, the rest of the Result field to be removed in @saurabh-net PR.

Comment on lines 454 to 458
- !ruby/object:Api::Type::String
name: 'resultsTable'
description: |
The BigQuery table to export DataProfileScan results to.
Format:projects/{project}/datasets/{dataset}/tables/{table}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to test this field. It's okay if not just want to ensure we are conscious in it's exclusion.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is required field and has been tested.

@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.

Terraform GA: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
Terraform Beta: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_dataplex_datascan (2 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_dataplex_datascan" "primary" {
  data_profile_spec {
    post_scan_actions {
      big_query_export {
        results_table = # value needed
      }
    }
  }
  data_quality_spec {
    post_scan_actions {
      big_query_export {
        results_table = # value needed
      }
    }
    rules {
      description = # value needed
      name        = # value needed
    }
  }
}

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2939
Passed tests 2630
Skipped tests: 302
Affected tests: 7

Action taken

Found 7 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccHealthcareDatasetIamPolicy|TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascan_dataplexDatascanFullProfileExample|TestAccDataplexDatascan_dataplexDatascanBasicQualityExample|TestAccDataplexDatascanIamPolicyGenerated|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascanIamBindingGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccHealthcareDatasetIamPolicy[Debug log]
TestAccDataplexDatascan_dataplexDatascanFullProfileExample[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 5 files changed, 565 insertions(+), 8 deletions(-))
Terraform Beta: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_dataplex_datascan (9 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_dataplex_datascan" "primary" {
  data_profile_spec {
    post_scan_actions {
      big_query_export {
        results_table = # value needed
      }
    }
  }
  data_quality_spec {
    post_scan_actions {
      big_query_export {
        results_table = # value needed
      }
    }
  }
}

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2939
Passed tests 2631
Skipped tests: 302
Affected tests: 6

Action taken

Found 6 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample|TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccBigtableAppProfile_bigtableAppProfileMulticlusterExample|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamPolicyGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccBigtableAppProfile_bigtableAppProfileMulticlusterExample[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
Terraform Beta: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2939
Passed tests 2632
Skipped tests: 302
Affected tests: 5

Action taken

Found 5 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascan_dataplexDatascanBasicQualityExample|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamPolicyGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
Terraform Beta: Diff ( 4 files changed, 560 insertions(+), 8 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2939
Passed tests 2632
Skipped tests: 302
Affected tests: 5

Action taken

Found 5 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascanIamPolicyGenerated|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascan_dataplexDatascanBasicQualityExample|TestAccDataplexDatascan_dataplexDatascanBasicProfileExample

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 522 insertions(+), 22 deletions(-))
Terraform Beta: Diff ( 4 files changed, 522 insertions(+), 22 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_dataplex_datascan (9 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_dataplex_datascan" "primary" {
  data_profile_spec {
    post_scan_actions {
      bigquery_export {
        results_table = # value needed
      }
    }
  }
  data_quality_spec {
    post_scan_actions {
      bigquery_export {
        results_table = # value needed
      }
    }
  }
}

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2939
Passed tests 2636
Skipped tests: 302
Affected tests: 1

Action taken

Found 1 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccDataplexDatascan_dataplexDatascanBasicQualityExample[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{green}{\textsf{All tests passed!}}$
View the build log or the debug log for each test

mmv1/products/dataplex/Datascan.yaml Show resolved Hide resolved
mmv1/products/dataplex/Datascan.yaml Show resolved Hide resolved
mmv1/products/dataplex/Datascan.yaml Show resolved Hide resolved
@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.

Terraform GA: Diff ( 4 files changed, 613 insertions(+), 15 deletions(-))
Terraform Beta: Diff ( 4 files changed, 613 insertions(+), 15 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_dataplex_datascan (0 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_dataplex_datascan" "primary" {
  data_profile_spec {
    exclude_fields {
      field_names = # value needed
    }
    include_fields {
      field_names = # value needed
    }
    post_scan_actions {
      bigquery_export {
        results_table = # value needed
      }
    }
  }
  data_quality_spec {
    post_scan_actions {
      bigquery_export {
        results_table = # value needed
      }
    }
    rules {
      description = # value needed
      name        = # value needed
    }
  }
}

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2945
Passed tests 2638
Skipped tests: 302
Affected tests: 5

Action taken

Found 5 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascanIamPolicyGenerated|TestAccDataSourceGoogleServiceAccountJwt

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccDataSourceGoogleServiceAccountJwt[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 613 insertions(+), 15 deletions(-))
Terraform Beta: Diff ( 4 files changed, 613 insertions(+), 15 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_dataplex_datascan (0 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_dataplex_datascan" "primary" {
  data_profile_spec {
    exclude_fields {
      field_names = # value needed
    }
    include_fields {
      field_names = # value needed
    }
    post_scan_actions {
      bigquery_export {
        results_table = # value needed
      }
    }
  }
  data_quality_spec {
    post_scan_actions {
      bigquery_export {
        results_table = # value needed
      }
    }
    rules {
      description = # value needed
      name        = # value needed
    }
  }
}

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2949
Passed tests 2643
Skipped tests: 302
Affected tests: 4

Action taken

Found 4 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamPolicyGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 613 insertions(+), 15 deletions(-))
Terraform Beta: Diff ( 4 files changed, 613 insertions(+), 15 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2949
Passed tests 2643
Skipped tests: 302
Affected tests: 4

Action taken

Found 4 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamPolicyGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 634 insertions(+), 15 deletions(-))
Terraform Beta: Diff ( 4 files changed, 634 insertions(+), 15 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2949
Passed tests 2641
Skipped tests: 302
Affected tests: 6

Action taken

Found 6 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccCertificateManagerCertificate_certificateManagerSelfManagedCertificateExample|TestAccCertificateManagerCertificate_certificateManagerGoogleManagedCertificateIssuanceConfigExample|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamPolicyGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccCertificateManagerCertificate_certificateManagerSelfManagedCertificateExample[Debug log]
TestAccCertificateManagerCertificate_certificateManagerGoogleManagedCertificateIssuanceConfigExample[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 634 insertions(+), 15 deletions(-))
Terraform Beta: Diff ( 4 files changed, 634 insertions(+), 15 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

@ScottSuarez
Copy link
Contributor

If you can't get the bigquery export tests to work we can omit them

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2951
Passed tests 2644
Skipped tests: 302
Affected tests: 5

Action taken

Found 5 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccBigQueryTable_HivePartitioning|TestAccDataplexDatascanIamBindingGenerated|TestAccDataplexDatascanIamMemberGenerated|TestAccDataplexDatascan_dataplexDatascanBasicProfileExample|TestAccDataplexDatascanIamPolicyGenerated

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccBigQueryTable_HivePartitioning[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{red}{\textsf{Tests failed during RECORDING mode:}}$
TestAccDataplexDatascanIamBindingGenerated[Error message] [Debug log]
TestAccDataplexDatascanIamMemberGenerated[Error message] [Debug log]
TestAccDataplexDatascan_dataplexDatascanBasicProfileExample[Error message] [Debug log]
TestAccDataplexDatascanIamPolicyGenerated[Error message] [Debug log]

$\textcolor{red}{\textsf{Please fix these to complete your PR.}}$
View the build log or the debug log for each test

@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.

Terraform GA: Diff ( 4 files changed, 522 insertions(+), 22 deletions(-))
Terraform Beta: Diff ( 4 files changed, 522 insertions(+), 22 deletions(-))
TF Conversion: Diff ( 3 files changed, 183 insertions(+), 3 deletions(-))

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2951
Passed tests 2649
Skipped tests: 302
Affected tests: 0

$\textcolor{green}{\textsf{All tests passed in REPLAYING mode.}}$
View the build log

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

Successfully merging this pull request may close these issues.

4 participants