@maxim_mazurok/gapi.client.dlp-v2 0.0.20240624 → 0.0.20240707

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +113 -42
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://dlp.googleapis.com/$discovery/rest?version=v2
12
- // Revision: 20240624
12
+ // Revision: 20240707
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -48,6 +48,7 @@ declare namespace gapi.client {
48
48
  interface GooglePrivacyDlpV2AllInfoTypes {}
49
49
  interface GooglePrivacyDlpV2AllOtherBigQueryTables {}
50
50
  interface GooglePrivacyDlpV2AllOtherDatabaseResources {}
51
+ interface GooglePrivacyDlpV2AllOtherResources {}
51
52
  interface GooglePrivacyDlpV2AllText {}
52
53
  interface GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails {
53
54
  /** Categorical stats result */
@@ -231,6 +232,16 @@ declare namespace gapi.client {
231
232
  /** A username and password stored in Secret Manager. */
232
233
  usernamePassword?: GooglePrivacyDlpV2SecretManagerCredential;
233
234
  }
235
+ interface GooglePrivacyDlpV2CloudStorageDiscoveryTarget {
236
+ /** Optional. In addition to matching the filter, these conditions must be true before a profile is generated. */
237
+ conditions?: GooglePrivacyDlpV2DiscoveryFileStoreConditions;
238
+ /** Optional. Disable profiling for buckets that match this filter. */
239
+ disabled?: any;
240
+ /** Required. The buckets the generation_cadence applies to. The first target with a matching filter will be the one to apply to a bucket. */
241
+ filter?: GooglePrivacyDlpV2DiscoveryCloudStorageFilter;
242
+ /** Optional. How often and when to update profiles. New buckets that match both the filter and conditions are scanned as quickly as possible depending on system capacity. */
243
+ generationCadence?: GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence;
244
+ }
234
245
  interface GooglePrivacyDlpV2CloudStorageFileSet {
235
246
  /** The url, in the format `gs:///`. Trailing wildcard in the path is allowed. */
236
247
  url?: string;
@@ -253,6 +264,12 @@ declare namespace gapi.client {
253
264
  /** A URL representing a file or path (no wildcards) in Cloud Storage. Example: `gs://[BUCKET_NAME]/dictionary.txt` */
254
265
  path?: string;
255
266
  }
267
+ interface GooglePrivacyDlpV2CloudStorageRegex {
268
+ /** Optional. Regex to test the bucket name against. If empty, all buckets match. Example: "marketing2021" or "(marketing)\d{4}" will both match the bucket gs://marketing2021 */
269
+ bucketNameRegex?: string;
270
+ /** Optional. For organizations, if unset, will match all projects. */
271
+ projectIdRegex?: string;
272
+ }
256
273
  interface GooglePrivacyDlpV2CloudStorageRegexFileSet {
257
274
  /** The name of a Cloud Storage bucket. Required. */
258
275
  bucketName?: string;
@@ -261,6 +278,12 @@ declare namespace gapi.client {
261
278
  /** A list of regular expressions matching file paths to include. All files in the bucket that match at least one of these regular expressions will be included in the set of files, except for those that also match an item in `exclude_regex`. Leaving this field empty will match all files by default (this is equivalent to including `.*` in the list). Regular expressions use RE2 [syntax](https://github.com/google/re2/wiki/Syntax); a guide can be found under the google/re2 repository on GitHub. */
262
279
  includeRegex?: string[];
263
280
  }
281
+ interface GooglePrivacyDlpV2CloudStorageResourceReference {
282
+ /** Required. The bucket to scan. */
283
+ bucketName?: string;
284
+ /** Required. If within a project-level config, then this must match the config's project id. */
285
+ projectId?: string;
286
+ }
264
287
  interface GooglePrivacyDlpV2Color {
265
288
  /** The amount of blue in the color as a value in the interval [0, 1]. */
266
289
  blue?: number;
@@ -544,7 +567,7 @@ declare namespace gapi.client {
544
567
  projectId?: string;
545
568
  }
546
569
  interface GooglePrivacyDlpV2DataProfileLocation {
547
- /** The ID of the Folder within an organization to scan. */
570
+ /** The ID of the folder within an organization to scan. */
548
571
  folderId?: string;
549
572
  /** The ID of an organization to scan. */
550
573
  organizationId?: string;
@@ -600,9 +623,9 @@ declare namespace gapi.client {
600
623
  timeZone?: GooglePrivacyDlpV2TimeZone;
601
624
  }
602
625
  interface GooglePrivacyDlpV2Deidentify {
603
- /** Required. User settable Cloud Storage bucket and folders to store de-identified files. This field must be set for cloud storage deidentification. The output Cloud Storage bucket must be different from the input bucket. De-identified files will overwrite files in the output path. Form of: gs://bucket/folder/ or gs://bucket */
626
+ /** Required. User settable Cloud Storage bucket and folders to store de-identified files. This field must be set for Cloud Storage deidentification. The output Cloud Storage bucket must be different from the input bucket. De-identified files will overwrite files in the output path. Form of: gs://bucket/folder/ or gs://bucket */
604
627
  cloudStorageOutput?: string;
605
- /** List of user-specified file type groups to transform. If specified, only the files with these filetypes will be transformed. If empty, all supported files will be transformed. Supported types may be automatically added over time. If a file type is set in this field that isn't supported by the Deidentify action then the job will fail and will not be successfully created/started. Currently the only filetypes supported are: IMAGES, TEXT_FILES, CSV, TSV. */
628
+ /** List of user-specified file type groups to transform. If specified, only the files with these file types will be transformed. If empty, all supported files will be transformed. Supported types may be automatically added over time. If a file type is set in this field that isn't supported by the Deidentify action then the job will fail and will not be successfully created/started. Currently the only file types supported are: IMAGES, TEXT_FILES, CSV, TSV. */
606
629
  fileTypesToTransform?: string[];
607
630
  /** User specified deidentify templates and configs for structured, unstructured, and image files. */
608
631
  transformationConfig?: GooglePrivacyDlpV2TransformationConfig;
@@ -746,6 +769,26 @@ declare namespace gapi.client {
746
769
  /** When to reprofile if the schema has changed. */
747
770
  schemaModifiedCadence?: GooglePrivacyDlpV2SchemaModifiedCadence;
748
771
  }
772
+ interface GooglePrivacyDlpV2DiscoveryCloudStorageConditions {
773
+ /** Required. Only objects with the specified attributes will be scanned. Defaults to [ALL_SUPPORTED_BUCKETS] if unset. */
774
+ includedBucketAttributes?: string[];
775
+ /** Required. Only objects with the specified attributes will be scanned. If an object has one of the specified attributes but is inside an excluded bucket, it will not be scanned. Defaults to [ALL_SUPPORTED_OBJECTS]. A profile will be created even if no objects match the included_object_attributes. */
776
+ includedObjectAttributes?: string[];
777
+ }
778
+ interface GooglePrivacyDlpV2DiscoveryCloudStorageFilter {
779
+ /** Optional. The bucket to scan. Targets including this can only include one target (the target with this bucket). This enables profiling the contents of a single bucket, while the other options allow for easy profiling of many bucets within a project or an organization. */
780
+ cloudStorageResourceReference?: GooglePrivacyDlpV2CloudStorageResourceReference;
781
+ /** Optional. A specific set of buckets for this filter to apply to. */
782
+ collection?: GooglePrivacyDlpV2FileStoreCollection;
783
+ /** Optional. Catch-all. This should always be the last target in the list because anything above it will apply first. Should only appear once in a configuration. If none is specified, a default one will be added automatically. */
784
+ others?: any;
785
+ }
786
+ interface GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence {
787
+ /** Optional. Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update. */
788
+ inspectTemplateModifiedCadence?: GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence;
789
+ /** Optional. Data changes in Cloud Storage can't trigger reprofiling. If you set this field, profiles are refreshed at this frequency regardless of whether the underlying buckets have changed. Defaults to never. */
790
+ refreshFrequency?: string;
791
+ }
749
792
  interface GooglePrivacyDlpV2DiscoveryConfig {
750
793
  /** Actions to execute at the completion of scanning. */
751
794
  actions?: GooglePrivacyDlpV2DataProfileAction[];
@@ -770,12 +813,26 @@ declare namespace gapi.client {
770
813
  /** Output only. The last update timestamp of a DiscoveryConfig. */
771
814
  updateTime?: string;
772
815
  }
816
+ interface GooglePrivacyDlpV2DiscoveryFileStoreConditions {
817
+ /** Optional. Cloud Storage conditions. */
818
+ cloudStorageConditions?: GooglePrivacyDlpV2DiscoveryCloudStorageConditions;
819
+ /** Optional. File store must have been created after this date. Used to avoid backfilling. */
820
+ createdAfter?: string;
821
+ /** Optional. Minimum age a file store must have. If set, the value must be 1 hour or greater. */
822
+ minAge?: string;
823
+ }
773
824
  interface GooglePrivacyDlpV2DiscoveryGenerationCadence {
825
+ /** Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update. */
826
+ inspectTemplateModifiedCadence?: GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence;
774
827
  /** Governs when to update data profiles when a schema is modified. */
775
828
  schemaModifiedCadence?: GooglePrivacyDlpV2DiscoverySchemaModifiedCadence;
776
829
  /** Governs when to update data profiles when a table is modified. */
777
830
  tableModifiedCadence?: GooglePrivacyDlpV2DiscoveryTableModifiedCadence;
778
831
  }
832
+ interface GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence {
833
+ /** How frequently data profiles can be updated when the template is modified. Defaults to never. */
834
+ frequency?: string;
835
+ }
779
836
  interface GooglePrivacyDlpV2DiscoverySchemaModifiedCadence {
780
837
  /** How frequently profiles may be updated when schemas are modified. Defaults to monthly. */
781
838
  frequency?: string;
@@ -783,7 +840,7 @@ declare namespace gapi.client {
783
840
  types?: string[];
784
841
  }
785
842
  interface GooglePrivacyDlpV2DiscoveryStartingLocation {
786
- /** The ID of the Folder within an organization to scan. */
843
+ /** The ID of the folder within an organization to scan. */
787
844
  folderId?: string;
788
845
  /** The ID of an organization to scan. */
789
846
  organizationId?: string;
@@ -799,6 +856,8 @@ declare namespace gapi.client {
799
856
  bigQueryTarget?: GooglePrivacyDlpV2BigQueryDiscoveryTarget;
800
857
  /** Cloud SQL target for Discovery. The first target to match a table will be the one applied. */
801
858
  cloudSqlTarget?: GooglePrivacyDlpV2CloudSqlDiscoveryTarget;
859
+ /** Cloud Storage target for Discovery. The first target to match a table will be the one applied. */
860
+ cloudStorageTarget?: GooglePrivacyDlpV2CloudStorageDiscoveryTarget;
802
861
  /** Discovery target that looks for credentials and secrets stored in cloud resource metadata and reports them as vulnerabilities to Security Command Center. Only one target of this type is allowed. */
803
862
  secretsTarget?: any;
804
863
  }
@@ -893,7 +952,7 @@ declare namespace gapi.client {
893
952
  interface GooglePrivacyDlpV2FileClusterSummary {
894
953
  /** The data risk level of this cluster. RISK_LOW if nothing has been scanned. */
895
954
  dataRiskLevel?: GooglePrivacyDlpV2DataRiskLevel;
896
- /** A list of Errors detected while scanning this cluster. The list is truncated to 10 per cluster. */
955
+ /** A list of errors detected while scanning this cluster. The list is truncated to 10 per cluster. */
897
956
  errors?: GooglePrivacyDlpV2Error[];
898
957
  /** The file cluster type. */
899
958
  fileClusterType?: GooglePrivacyDlpV2FileClusterType;
@@ -922,6 +981,10 @@ declare namespace gapi.client {
922
981
  /** The Cloud Storage url of the file(s) to scan, in the format `gs:///`. Trailing wildcard in the path is allowed. If the url ends in a trailing slash, the bucket or directory represented by the url will be scanned non-recursively (content in sub-directories will not be scanned). This means that `gs://mybucket/` is equivalent to `gs://mybucket/*`, and `gs://mybucket/directory/` is equivalent to `gs://mybucket/directory/*`. Exactly one of `url` or `regex_file_set` must be set. */
923
982
  url?: string;
924
983
  }
984
+ interface GooglePrivacyDlpV2FileStoreCollection {
985
+ /** Optional. A collection of regular expressions to match a file store against. */
986
+ includeRegexes?: GooglePrivacyDlpV2FileStoreRegexes;
987
+ }
925
988
  interface GooglePrivacyDlpV2FileStoreDataProfile {
926
989
  /** The snapshot of the configurations used to generate the profile. */
927
990
  configSnapshot?: GooglePrivacyDlpV2DataProfileConfigSnapshot;
@@ -931,7 +994,7 @@ declare namespace gapi.client {
931
994
  dataRiskLevel?: GooglePrivacyDlpV2DataRiskLevel;
932
995
  /** The resource type that was profiled. */
933
996
  dataSourceType?: GooglePrivacyDlpV2DataSourceType;
934
- /** For resources that have multiple storage locations, these are those regions. For Google Cloud Storage this is the list of regions chosen for dual-region storage. `file_store_location` will normally be the corresponding multi-region for the list of individual locations. The first region is always picked as the processing and storage location for the data profile. */
997
+ /** For resources that have multiple storage locations, these are those regions. For Cloud Storage this is the list of regions chosen for dual-region storage. `file_store_location` will normally be the corresponding multi-region for the list of individual locations. The first region is always picked as the processing and storage location for the data profile. */
935
998
  dataStorageLocations?: string[];
936
999
  /** FileClusterSummary per each cluster. */
937
1000
  fileClusterSummaries?: GooglePrivacyDlpV2FileClusterSummary[];
@@ -939,9 +1002,9 @@ declare namespace gapi.client {
939
1002
  fileStoreInfoTypeSummaries?: GooglePrivacyDlpV2FileStoreInfoTypeSummary[];
940
1003
  /** The file store does not have any files. */
941
1004
  fileStoreIsEmpty?: boolean;
942
- /** The location of the file store. * Google Cloud Storage: https://cloud.google.com/storage/docs/locations#available-locations */
1005
+ /** The location of the file store. * Cloud Storage: https://cloud.google.com/storage/docs/locations#available-locations */
943
1006
  fileStoreLocation?: string;
944
- /** The file store path. * Google Cloud Storage: `gs://{bucket}` */
1007
+ /** The file store path. * Cloud Storage: `gs://{bucket}` */
945
1008
  fileStorePath?: string;
946
1009
  /** The resource name of the resource profiled. https://cloud.google.com/apis/design/resource_names#full_resource_name */
947
1010
  fullResource?: string;
@@ -955,11 +1018,11 @@ declare namespace gapi.client {
955
1018
  profileLastGenerated?: string;
956
1019
  /** Success or error status from the most recent profile generation attempt. May be empty if the profile is still being generated. */
957
1020
  profileStatus?: GooglePrivacyDlpV2ProfileStatus;
958
- /** The resource name to the project data profile for this file store. */
1021
+ /** The resource name of the project data profile for this file store. */
959
1022
  projectDataProfile?: string;
960
1023
  /** The Google Cloud project ID that owns the resource. */
961
1024
  projectId?: string;
962
- /** Attributes of the resource being profiled. Currently used attributes: - customer_managed_encryption: boolean true: the resource is encrypted with a customer-managed key. false: the resource is encrypted with a provider-managed key. */
1025
+ /** Attributes of the resource being profiled. Currently used attributes: * customer_managed_encryption: boolean - true: the resource is encrypted with a customer-managed key. - false: the resource is encrypted with a provider-managed key. */
963
1026
  resourceAttributes?: {[P in string]: GooglePrivacyDlpV2Value};
964
1027
  /** The labels applied to the resource at the time the profile was generated. */
965
1028
  resourceLabels?: {[P in string]: string};
@@ -974,6 +1037,14 @@ declare namespace gapi.client {
974
1037
  /** The InfoType seen. */
975
1038
  infoType?: GooglePrivacyDlpV2InfoType;
976
1039
  }
1040
+ interface GooglePrivacyDlpV2FileStoreRegex {
1041
+ /** Optional. Regex for Cloud Storage. */
1042
+ cloudStorageRegex?: GooglePrivacyDlpV2CloudStorageRegex;
1043
+ }
1044
+ interface GooglePrivacyDlpV2FileStoreRegexes {
1045
+ /** Required. The group of regular expression patterns to match against one or more file stores. Maximum of 100 entries. The sum of all regular expression's length can't exceed 10 KiB. */
1046
+ patterns?: GooglePrivacyDlpV2FileStoreRegex[];
1047
+ }
977
1048
  interface GooglePrivacyDlpV2Finding {
978
1049
  /** Timestamp when finding was detected. */
979
1050
  createTime?: string;
@@ -1951,7 +2022,7 @@ declare namespace gapi.client {
1951
2022
  profileLastGenerated?: string;
1952
2023
  /** Success or error status from the most recent profile generation attempt. May be empty if the profile is still being generated. */
1953
2024
  profileStatus?: GooglePrivacyDlpV2ProfileStatus;
1954
- /** The resource name to the project data profile for this table. */
2025
+ /** The resource name of the project data profile for this table. */
1955
2026
  projectDataProfile?: string;
1956
2027
  /** The labels applied to the resource at the time the profile was generated. */
1957
2028
  resourceLabels?: {[P in string]: string};
@@ -2406,7 +2477,7 @@ declare namespace gapi.client {
2406
2477
  locationId?: string;
2407
2478
  /** OAuth 2.0 token for the current user. */
2408
2479
  oauth_token?: string;
2409
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
2480
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
2410
2481
  orderBy?: string;
2411
2482
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
2412
2483
  pageSize?: number;
@@ -2613,7 +2684,7 @@ declare namespace gapi.client {
2613
2684
  locationId?: string;
2614
2685
  /** OAuth 2.0 token for the current user. */
2615
2686
  oauth_token?: string;
2616
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
2687
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
2617
2688
  orderBy?: string;
2618
2689
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
2619
2690
  pageSize?: number;
@@ -2735,7 +2806,7 @@ declare namespace gapi.client {
2735
2806
  key?: string;
2736
2807
  /** OAuth 2.0 token for the current user. */
2737
2808
  oauth_token?: string;
2738
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a column is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
2809
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a column is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
2739
2810
  orderBy?: string;
2740
2811
  /** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
2741
2812
  pageSize?: number;
@@ -3089,7 +3160,7 @@ declare namespace gapi.client {
3089
3160
  locationId?: string;
3090
3161
  /** OAuth 2.0 token for the current user. */
3091
3162
  oauth_token?: string;
3092
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
3163
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
3093
3164
  orderBy?: string;
3094
3165
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
3095
3166
  pageSize?: number;
@@ -3294,7 +3365,7 @@ declare namespace gapi.client {
3294
3365
  key?: string;
3295
3366
  /** OAuth 2.0 token for the current user. */
3296
3367
  oauth_token?: string;
3297
- /** Comma separated list of config fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `last_run_time`: corresponds to the last time the DiscoveryConfig ran. - `name`: corresponds to the DiscoveryConfig's name. - `status`: corresponds to DiscoveryConfig's status. */
3368
+ /** Comma-separated list of config fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `last_run_time`: corresponds to the last time the DiscoveryConfig ran. - `name`: corresponds to the DiscoveryConfig's name. - `status`: corresponds to DiscoveryConfig's status. */
3298
3369
  orderBy?: string;
3299
3370
  /** Size of the page. This value can be limited by a server. */
3300
3371
  pageSize?: number;
@@ -3391,7 +3462,7 @@ declare namespace gapi.client {
3391
3462
  locationId?: string;
3392
3463
  /** OAuth 2.0 token for the current user. */
3393
3464
  oauth_token?: string;
3394
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, end_time asc, create_time desc` Supported fields are: - `create_time`: corresponds to the time the job was created. - `end_time`: corresponds to the time the job ended. - `name`: corresponds to the job's name. - `state`: corresponds to `state` */
3465
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, end_time asc, create_time desc` Supported fields are: - `create_time`: corresponds to the time the job was created. - `end_time`: corresponds to the time the job ended. - `name`: corresponds to the job's name. - `state`: corresponds to `state` */
3395
3466
  orderBy?: string;
3396
3467
  /** The standard list page size. */
3397
3468
  pageSize?: number;
@@ -3478,13 +3549,13 @@ declare namespace gapi.client {
3478
3549
  callback?: string;
3479
3550
  /** Selector specifying which fields to include in a partial response. */
3480
3551
  fields?: string;
3481
- /** Optional. Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `project_id` - The Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND resource_visibility = PUBLIC` . * 'file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
3552
+ /** Optional. Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `project_id` - The Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND resource_visibility = PUBLIC` * `file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
3482
3553
  filter?: string;
3483
3554
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3484
3555
  key?: string;
3485
3556
  /** OAuth 2.0 token for the current user. */
3486
3557
  oauth_token?: string;
3487
- /** Optional. Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `name` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `name`: The name of the profile. - `create_time`: The time the file store was first created. */
3558
+ /** Optional. Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `name` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `name`: The name of the profile. - `create_time`: The time the file store was first created. */
3488
3559
  orderBy?: string;
3489
3560
  /** Optional. Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
3490
3561
  pageSize?: number;
@@ -3633,7 +3704,7 @@ declare namespace gapi.client {
3633
3704
  locationId?: string;
3634
3705
  /** OAuth 2.0 token for the current user. */
3635
3706
  oauth_token?: string;
3636
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
3707
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
3637
3708
  orderBy?: string;
3638
3709
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
3639
3710
  pageSize?: number;
@@ -3842,7 +3913,7 @@ declare namespace gapi.client {
3842
3913
  locationId?: string;
3843
3914
  /** OAuth 2.0 token for the current user. */
3844
3915
  oauth_token?: string;
3845
- /** Comma separated list of triggeredJob fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the JobTrigger was created. - `update_time`: corresponds to the time the JobTrigger was last updated. - `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: corresponds to the JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display name. - `status`: corresponds to JobTrigger's status. */
3916
+ /** Comma-separated list of triggeredJob fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the JobTrigger was created. - `update_time`: corresponds to the time the JobTrigger was last updated. - `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: corresponds to the JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display name. - `status`: corresponds to JobTrigger's status. */
3846
3917
  orderBy?: string;
3847
3918
  /** Size of the page. This value can be limited by a server. */
3848
3919
  pageSize?: number;
@@ -3966,7 +4037,7 @@ declare namespace gapi.client {
3966
4037
  key?: string;
3967
4038
  /** OAuth 2.0 token for the current user. */
3968
4039
  oauth_token?: string;
3969
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported fields are: - `project_id`: Google Cloud project ID - `sensitivity_level`: How sensitive the data in a project is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
4040
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported fields are: - `project_id`: Google Cloud project ID - `sensitivity_level`: How sensitive the data in a project is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
3970
4041
  orderBy?: string;
3971
4042
  /** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
3972
4043
  pageSize?: number;
@@ -4115,7 +4186,7 @@ declare namespace gapi.client {
4115
4186
  locationId?: string;
4116
4187
  /** OAuth 2.0 token for the current user. */
4117
4188
  oauth_token?: string;
4118
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
4189
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
4119
4190
  orderBy?: string;
4120
4191
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
4121
4192
  pageSize?: number;
@@ -4264,7 +4335,7 @@ declare namespace gapi.client {
4264
4335
  key?: string;
4265
4336
  /** OAuth 2.0 token for the current user. */
4266
4337
  oauth_token?: string;
4267
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `row_count`: Number of rows in this resource. */
4338
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `row_count`: Number of rows in this resource. */
4268
4339
  orderBy?: string;
4269
4340
  /** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
4270
4341
  pageSize?: number;
@@ -4426,7 +4497,7 @@ declare namespace gapi.client {
4426
4497
  locationId?: string;
4427
4498
  /** OAuth 2.0 token for the current user. */
4428
4499
  oauth_token?: string;
4429
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
4500
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
4430
4501
  orderBy?: string;
4431
4502
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
4432
4503
  pageSize?: number;
@@ -4815,7 +4886,7 @@ declare namespace gapi.client {
4815
4886
  locationId?: string;
4816
4887
  /** OAuth 2.0 token for the current user. */
4817
4888
  oauth_token?: string;
4818
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
4889
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
4819
4890
  orderBy?: string;
4820
4891
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
4821
4892
  pageSize?: number;
@@ -5082,7 +5153,7 @@ declare namespace gapi.client {
5082
5153
  locationId?: string;
5083
5154
  /** OAuth 2.0 token for the current user. */
5084
5155
  oauth_token?: string;
5085
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, end_time asc, create_time desc` Supported fields are: - `create_time`: corresponds to the time the job was created. - `end_time`: corresponds to the time the job ended. - `name`: corresponds to the job's name. - `state`: corresponds to `state` */
5156
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, end_time asc, create_time desc` Supported fields are: - `create_time`: corresponds to the time the job was created. - `end_time`: corresponds to the time the job ended. - `name`: corresponds to the job's name. - `state`: corresponds to `state` */
5086
5157
  orderBy?: string;
5087
5158
  /** The standard list page size. */
5088
5159
  pageSize?: number;
@@ -5293,7 +5364,7 @@ declare namespace gapi.client {
5293
5364
  locationId?: string;
5294
5365
  /** OAuth 2.0 token for the current user. */
5295
5366
  oauth_token?: string;
5296
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
5367
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
5297
5368
  orderBy?: string;
5298
5369
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
5299
5370
  pageSize?: number;
@@ -5560,7 +5631,7 @@ declare namespace gapi.client {
5560
5631
  locationId?: string;
5561
5632
  /** OAuth 2.0 token for the current user. */
5562
5633
  oauth_token?: string;
5563
- /** Comma separated list of triggeredJob fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the JobTrigger was created. - `update_time`: corresponds to the time the JobTrigger was last updated. - `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: corresponds to the JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display name. - `status`: corresponds to JobTrigger's status. */
5634
+ /** Comma-separated list of triggeredJob fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the JobTrigger was created. - `update_time`: corresponds to the time the JobTrigger was last updated. - `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: corresponds to the JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display name. - `status`: corresponds to JobTrigger's status. */
5564
5635
  orderBy?: string;
5565
5636
  /** Size of the page. This value can be limited by a server. */
5566
5637
  pageSize?: number;
@@ -5684,7 +5755,7 @@ declare namespace gapi.client {
5684
5755
  key?: string;
5685
5756
  /** OAuth 2.0 token for the current user. */
5686
5757
  oauth_token?: string;
5687
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a column is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
5758
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a column is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
5688
5759
  orderBy?: string;
5689
5760
  /** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
5690
5761
  pageSize?: number;
@@ -6247,7 +6318,7 @@ declare namespace gapi.client {
6247
6318
  locationId?: string;
6248
6319
  /** OAuth 2.0 token for the current user. */
6249
6320
  oauth_token?: string;
6250
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
6321
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
6251
6322
  orderBy?: string;
6252
6323
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
6253
6324
  pageSize?: number;
@@ -6452,7 +6523,7 @@ declare namespace gapi.client {
6452
6523
  key?: string;
6453
6524
  /** OAuth 2.0 token for the current user. */
6454
6525
  oauth_token?: string;
6455
- /** Comma separated list of config fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `last_run_time`: corresponds to the last time the DiscoveryConfig ran. - `name`: corresponds to the DiscoveryConfig's name. - `status`: corresponds to DiscoveryConfig's status. */
6526
+ /** Comma-separated list of config fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `last_run_time`: corresponds to the last time the DiscoveryConfig ran. - `name`: corresponds to the DiscoveryConfig's name. - `status`: corresponds to DiscoveryConfig's status. */
6456
6527
  orderBy?: string;
6457
6528
  /** Size of the page. This value can be limited by a server. */
6458
6529
  pageSize?: number;
@@ -6835,7 +6906,7 @@ declare namespace gapi.client {
6835
6906
  locationId?: string;
6836
6907
  /** OAuth 2.0 token for the current user. */
6837
6908
  oauth_token?: string;
6838
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, end_time asc, create_time desc` Supported fields are: - `create_time`: corresponds to the time the job was created. - `end_time`: corresponds to the time the job ended. - `name`: corresponds to the job's name. - `state`: corresponds to `state` */
6909
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, end_time asc, create_time desc` Supported fields are: - `create_time`: corresponds to the time the job was created. - `end_time`: corresponds to the time the job ended. - `name`: corresponds to the job's name. - `state`: corresponds to `state` */
6839
6910
  orderBy?: string;
6840
6911
  /** The standard list page size. */
6841
6912
  pageSize?: number;
@@ -6922,13 +6993,13 @@ declare namespace gapi.client {
6922
6993
  callback?: string;
6923
6994
  /** Selector specifying which fields to include in a partial response. */
6924
6995
  fields?: string;
6925
- /** Optional. Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `project_id` - The Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND resource_visibility = PUBLIC` . * 'file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
6996
+ /** Optional. Allows filtering. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * Supported fields/values: - `project_id` - The Google Cloud project ID. - `file_store_path` - The path like "gs://bucket". - `sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status code as defined in https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND resource_visibility = PUBLIC` * `file_store_path = "gs://mybucket"` The length of this field should be no more than 500 characters. */
6926
6997
  filter?: string;
6927
6998
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
6928
6999
  key?: string;
6929
7000
  /** OAuth 2.0 token for the current user. */
6930
7001
  oauth_token?: string;
6931
- /** Optional. Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `name` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `name`: The name of the profile. - `create_time`: The time the file store was first created. */
7002
+ /** Optional. Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `name` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `name`: The name of the profile. - `create_time`: The time the file store was first created. */
6932
7003
  orderBy?: string;
6933
7004
  /** Optional. Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
6934
7005
  pageSize?: number;
@@ -7137,7 +7208,7 @@ declare namespace gapi.client {
7137
7208
  locationId?: string;
7138
7209
  /** OAuth 2.0 token for the current user. */
7139
7210
  oauth_token?: string;
7140
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
7211
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the template was created. - `update_time`: corresponds to the time the template was last updated. - `name`: corresponds to the template's name. - `display_name`: corresponds to the template's display name. */
7141
7212
  orderBy?: string;
7142
7213
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
7143
7214
  pageSize?: number;
@@ -7462,7 +7533,7 @@ declare namespace gapi.client {
7462
7533
  locationId?: string;
7463
7534
  /** OAuth 2.0 token for the current user. */
7464
7535
  oauth_token?: string;
7465
- /** Comma separated list of triggeredJob fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the JobTrigger was created. - `update_time`: corresponds to the time the JobTrigger was last updated. - `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: corresponds to the JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display name. - `status`: corresponds to JobTrigger's status. */
7536
+ /** Comma-separated list of triggeredJob fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc,update_time, create_time desc` Supported fields are: - `create_time`: corresponds to the time the JobTrigger was created. - `update_time`: corresponds to the time the JobTrigger was last updated. - `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: corresponds to the JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display name. - `status`: corresponds to JobTrigger's status. */
7466
7537
  orderBy?: string;
7467
7538
  /** Size of the page. This value can be limited by a server. */
7468
7539
  pageSize?: number;
@@ -7586,7 +7657,7 @@ declare namespace gapi.client {
7586
7657
  key?: string;
7587
7658
  /** OAuth 2.0 token for the current user. */
7588
7659
  oauth_token?: string;
7589
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported fields are: - `project_id`: Google Cloud project ID - `sensitivity_level`: How sensitive the data in a project is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
7660
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported fields are: - `project_id`: Google Cloud project ID - `sensitivity_level`: How sensitive the data in a project is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. */
7590
7661
  orderBy?: string;
7591
7662
  /** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
7592
7663
  pageSize?: number;
@@ -7735,7 +7806,7 @@ declare namespace gapi.client {
7735
7806
  locationId?: string;
7736
7807
  /** OAuth 2.0 token for the current user. */
7737
7808
  oauth_token?: string;
7738
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
7809
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
7739
7810
  orderBy?: string;
7740
7811
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
7741
7812
  pageSize?: number;
@@ -7884,7 +7955,7 @@ declare namespace gapi.client {
7884
7955
  key?: string;
7885
7956
  /** OAuth 2.0 token for the current user. */
7886
7957
  oauth_token?: string;
7887
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `row_count`: Number of rows in this resource. */
7958
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level desc` Supported fields are: - `project_id`: The Google Cloud project ID. - `dataset_id`: The ID of a BigQuery dataset. - `table_id`: The ID of a BigQuery table. - `sensitivity_level`: How sensitive the data in a table is, at most. - `data_risk_level`: How much risk is associated with this data. - `profile_last_generated`: When the profile was last updated in epoch seconds. - `last_modified`: The last time the resource was modified. - `resource_visibility`: Visibility restriction for this resource. - `row_count`: Number of rows in this resource. */
7888
7959
  orderBy?: string;
7889
7960
  /** Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100. */
7890
7961
  pageSize?: number;
@@ -8048,7 +8119,7 @@ declare namespace gapi.client {
8048
8119
  locationId?: string;
8049
8120
  /** OAuth 2.0 token for the current user. */
8050
8121
  oauth_token?: string;
8051
- /** Comma separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
8122
+ /** Comma-separated list of fields to order by, followed by `asc` or `desc` postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: `name asc, display_name, create_time desc` Supported fields are: - `create_time`: corresponds to the time the most recent version of the resource was created. - `state`: corresponds to the state of the resource. - `name`: corresponds to resource name. - `display_name`: corresponds to info type's display name. */
8052
8123
  orderBy?: string;
8053
8124
  /** Size of the page. This value can be limited by the server. If zero server returns a page of max size 100. */
8054
8125
  pageSize?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dlp-v2",
3
- "version": "0.0.20240624",
3
+ "version": "0.0.20240707",
4
4
  "description": "TypeScript typings for Sensitive Data Protection (DLP) v2",
5
5
  "repository": {
6
6
  "type": "git",