Google DLP Job Trigger resource block "Error: Unsupported argument"

Hi Everyone,

I’m trying to use this google_data_loss_prevention_job_trigger resource block, and more precisely this example usage and this is what i’m getting

Error: Unsupported argument
  on dlp_scan_config.tf line 66, in resource "google_data_loss_prevention_job_trigger" "bigquery_row_limit":
  66:                 rows_limit = 1000
An argument named "rows_limit" is not expected here.
Error: Unsupported argument
  on dlp_scan_config.tf line 67, in resource "google_data_loss_prevention_job_trigger" "bigquery_row_limit":
  67:                 sample_method = "RANDOM_START"
An argument named "sample_method" is not expected here.

I don’t get why these arguments are not expected here while i just copied the example usage given by the official documentation

It do work when i erase these two arguments but i need them

Here’s the code section:

        big_query_options {
            table_reference {
                project_id = "PROJECT_A"
                dataset_id = "DLP_DATASET"
                table_id = "SCAN_RESULTS"
            }
            rows_limit = 1000
            sample_method = "RANDOM_START"
        }

(version of provider: 4.40.0)

Thanks for your replies