google-apis-dlp_v2 0.52.0 → 0.54.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/dlp_v2/classes.rb +621 -20
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +307 -0
- data/lib/google/apis/dlp_v2/service.rb +473 -106
- metadata +3 -3
@@ -266,17 +266,17 @@ module Google
|
|
266
266
|
# Deprecated. This field has no effect.
|
267
267
|
# @param [String] order_by
|
268
268
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
269
|
-
# postfix. This list is case
|
270
|
-
#
|
269
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
270
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
271
271
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
272
272
|
# time the template was created. - `update_time`: corresponds to the time the
|
273
273
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
274
274
|
# display_name`: corresponds to the template's display name.
|
275
275
|
# @param [Fixnum] page_size
|
276
|
-
# Size of the page
|
277
|
-
# of max size 100.
|
276
|
+
# Size of the page. This value can be limited by the server. If zero server
|
277
|
+
# returns a page of max size 100.
|
278
278
|
# @param [String] page_token
|
279
|
-
# Page token to continue retrieval. Comes from previous call to `
|
279
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
280
280
|
# ListDeidentifyTemplates`.
|
281
281
|
# @param [String] fields
|
282
282
|
# Selector specifying which fields to include in a partial response.
|
@@ -474,17 +474,17 @@ module Google
|
|
474
474
|
# Deprecated. This field has no effect.
|
475
475
|
# @param [String] order_by
|
476
476
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
477
|
-
# postfix. This list is case
|
478
|
-
#
|
477
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
478
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
479
479
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
480
480
|
# time the template was created. - `update_time`: corresponds to the time the
|
481
481
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
482
482
|
# display_name`: corresponds to the template's display name.
|
483
483
|
# @param [Fixnum] page_size
|
484
|
-
# Size of the page
|
485
|
-
# of max size 100.
|
484
|
+
# Size of the page. This value can be limited by the server. If zero server
|
485
|
+
# returns a page of max size 100.
|
486
486
|
# @param [String] page_token
|
487
|
-
# Page token to continue retrieval. Comes from previous call to `
|
487
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
488
488
|
# ListInspectTemplates`.
|
489
489
|
# @param [String] fields
|
490
490
|
# Selector specifying which fields to include in a partial response.
|
@@ -682,17 +682,17 @@ module Google
|
|
682
682
|
# Deprecated. This field has no effect.
|
683
683
|
# @param [String] order_by
|
684
684
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
685
|
-
# postfix. This list is case
|
686
|
-
#
|
685
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
686
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
687
687
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
688
688
|
# time the template was created. - `update_time`: corresponds to the time the
|
689
689
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
690
690
|
# display_name`: corresponds to the template's display name.
|
691
691
|
# @param [Fixnum] page_size
|
692
|
-
# Size of the page
|
693
|
-
# of max size 100.
|
692
|
+
# Size of the page. This value can be limited by the server. If zero server
|
693
|
+
# returns a page of max size 100.
|
694
694
|
# @param [String] page_token
|
695
|
-
# Page token to continue retrieval. Comes from previous call to `
|
695
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
696
696
|
# ListDeidentifyTemplates`.
|
697
697
|
# @param [String] fields
|
698
698
|
# Selector specifying which fields to include in a partial response.
|
@@ -761,6 +761,188 @@ module Google
|
|
761
761
|
execute_or_queue_command(command, &block)
|
762
762
|
end
|
763
763
|
|
764
|
+
# Creates a config for discovery to scan and profile storage.
|
765
|
+
# @param [String] parent
|
766
|
+
# Required. Parent resource name. The format of this value is as follows: `
|
767
|
+
# projects/`PROJECT_ID`/locations/`LOCATION_ID The following example `parent`
|
768
|
+
# string specifies a parent project with the identifier `example-project`, and
|
769
|
+
# specifies the `europe-west3` location for processing data: parent=projects/
|
770
|
+
# example-project/locations/europe-west3
|
771
|
+
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDiscoveryConfigRequest] google_privacy_dlp_v2_create_discovery_config_request_object
|
772
|
+
# @param [String] fields
|
773
|
+
# Selector specifying which fields to include in a partial response.
|
774
|
+
# @param [String] quota_user
|
775
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
776
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
777
|
+
# @param [Google::Apis::RequestOptions] options
|
778
|
+
# Request-specific options
|
779
|
+
#
|
780
|
+
# @yield [result, err] Result & error if block supplied
|
781
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig] parsed result object
|
782
|
+
# @yieldparam err [StandardError] error object if request failed
|
783
|
+
#
|
784
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig]
|
785
|
+
#
|
786
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
787
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
788
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
789
|
+
def create_organization_location_discovery_config(parent, google_privacy_dlp_v2_create_discovery_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
790
|
+
command = make_simple_command(:post, 'v2/{+parent}/discoveryConfigs', options)
|
791
|
+
command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDiscoveryConfigRequest::Representation
|
792
|
+
command.request_object = google_privacy_dlp_v2_create_discovery_config_request_object
|
793
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig::Representation
|
794
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig
|
795
|
+
command.params['parent'] = parent unless parent.nil?
|
796
|
+
command.query['fields'] = fields unless fields.nil?
|
797
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
798
|
+
execute_or_queue_command(command, &block)
|
799
|
+
end
|
800
|
+
|
801
|
+
# Deletes a discovery configuration.
|
802
|
+
# @param [String] name
|
803
|
+
# Required. Resource name of the project and the config, for example `projects/
|
804
|
+
# dlp-test-project/discoveryConfigs/53234423`.
|
805
|
+
# @param [String] fields
|
806
|
+
# Selector specifying which fields to include in a partial response.
|
807
|
+
# @param [String] quota_user
|
808
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
809
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
810
|
+
# @param [Google::Apis::RequestOptions] options
|
811
|
+
# Request-specific options
|
812
|
+
#
|
813
|
+
# @yield [result, err] Result & error if block supplied
|
814
|
+
# @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object
|
815
|
+
# @yieldparam err [StandardError] error object if request failed
|
816
|
+
#
|
817
|
+
# @return [Google::Apis::DlpV2::GoogleProtobufEmpty]
|
818
|
+
#
|
819
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
820
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
821
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
822
|
+
def delete_organization_location_discovery_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
823
|
+
command = make_simple_command(:delete, 'v2/{+name}', options)
|
824
|
+
command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
|
825
|
+
command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
|
826
|
+
command.params['name'] = name unless name.nil?
|
827
|
+
command.query['fields'] = fields unless fields.nil?
|
828
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
829
|
+
execute_or_queue_command(command, &block)
|
830
|
+
end
|
831
|
+
|
832
|
+
# Gets a discovery configuration.
|
833
|
+
# @param [String] name
|
834
|
+
# Required. Resource name of the project and the configuration, for example `
|
835
|
+
# projects/dlp-test-project/discoveryConfigs/53234423`.
|
836
|
+
# @param [String] fields
|
837
|
+
# Selector specifying which fields to include in a partial response.
|
838
|
+
# @param [String] quota_user
|
839
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
840
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
841
|
+
# @param [Google::Apis::RequestOptions] options
|
842
|
+
# Request-specific options
|
843
|
+
#
|
844
|
+
# @yield [result, err] Result & error if block supplied
|
845
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig] parsed result object
|
846
|
+
# @yieldparam err [StandardError] error object if request failed
|
847
|
+
#
|
848
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig]
|
849
|
+
#
|
850
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
851
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
852
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
853
|
+
def get_organization_location_discovery_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
854
|
+
command = make_simple_command(:get, 'v2/{+name}', options)
|
855
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig::Representation
|
856
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig
|
857
|
+
command.params['name'] = name unless name.nil?
|
858
|
+
command.query['fields'] = fields unless fields.nil?
|
859
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
860
|
+
execute_or_queue_command(command, &block)
|
861
|
+
end
|
862
|
+
|
863
|
+
# Lists discovery configurations.
|
864
|
+
# @param [String] parent
|
865
|
+
# Required. Parent resource name. The format of this value is as follows: `
|
866
|
+
# projects/`PROJECT_ID`/locations/`LOCATION_ID The following example `parent`
|
867
|
+
# string specifies a parent project with the identifier `example-project`, and
|
868
|
+
# specifies the `europe-west3` location for processing data: parent=projects/
|
869
|
+
# example-project/locations/europe-west3
|
870
|
+
# @param [String] order_by
|
871
|
+
# Comma separated list of config fields to order by, followed by `asc` or `desc`
|
872
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
873
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
874
|
+
# create_time desc` Supported fields are: - `last_run_time`: corresponds to the
|
875
|
+
# last time the DiscoveryConfig ran. - `name`: corresponds to the
|
876
|
+
# DiscoveryConfig's name. - `status`: corresponds to DiscoveryConfig's status.
|
877
|
+
# @param [Fixnum] page_size
|
878
|
+
# Size of the page. This value can be limited by a server.
|
879
|
+
# @param [String] page_token
|
880
|
+
# Page token to continue retrieval. Comes from the previous call to
|
881
|
+
# ListDiscoveryConfigs. `order_by` field must not change for subsequent calls.
|
882
|
+
# @param [String] fields
|
883
|
+
# Selector specifying which fields to include in a partial response.
|
884
|
+
# @param [String] quota_user
|
885
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
886
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
887
|
+
# @param [Google::Apis::RequestOptions] options
|
888
|
+
# Request-specific options
|
889
|
+
#
|
890
|
+
# @yield [result, err] Result & error if block supplied
|
891
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse] parsed result object
|
892
|
+
# @yieldparam err [StandardError] error object if request failed
|
893
|
+
#
|
894
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse]
|
895
|
+
#
|
896
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
897
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
898
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
899
|
+
def list_organization_location_discovery_configs(parent, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
900
|
+
command = make_simple_command(:get, 'v2/{+parent}/discoveryConfigs', options)
|
901
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse::Representation
|
902
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse
|
903
|
+
command.params['parent'] = parent unless parent.nil?
|
904
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
905
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
906
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
907
|
+
command.query['fields'] = fields unless fields.nil?
|
908
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
909
|
+
execute_or_queue_command(command, &block)
|
910
|
+
end
|
911
|
+
|
912
|
+
# Updates a discovery configuration.
|
913
|
+
# @param [String] name
|
914
|
+
# Required. Resource name of the project and the configuration, for example `
|
915
|
+
# projects/dlp-test-project/discoveryConfigs/53234423`.
|
916
|
+
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDiscoveryConfigRequest] google_privacy_dlp_v2_update_discovery_config_request_object
|
917
|
+
# @param [String] fields
|
918
|
+
# Selector specifying which fields to include in a partial response.
|
919
|
+
# @param [String] quota_user
|
920
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
921
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
922
|
+
# @param [Google::Apis::RequestOptions] options
|
923
|
+
# Request-specific options
|
924
|
+
#
|
925
|
+
# @yield [result, err] Result & error if block supplied
|
926
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig] parsed result object
|
927
|
+
# @yieldparam err [StandardError] error object if request failed
|
928
|
+
#
|
929
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig]
|
930
|
+
#
|
931
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
932
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
933
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
934
|
+
def patch_organization_location_discovery_config(name, google_privacy_dlp_v2_update_discovery_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
935
|
+
command = make_simple_command(:patch, 'v2/{+name}', options)
|
936
|
+
command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDiscoveryConfigRequest::Representation
|
937
|
+
command.request_object = google_privacy_dlp_v2_update_discovery_config_request_object
|
938
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig::Representation
|
939
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig
|
940
|
+
command.params['name'] = name unless name.nil?
|
941
|
+
command.query['fields'] = fields unless fields.nil?
|
942
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
943
|
+
execute_or_queue_command(command, &block)
|
944
|
+
end
|
945
|
+
|
764
946
|
# Lists DlpJobs that match the specified filter in the request. See https://
|
765
947
|
# cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/
|
766
948
|
# docs/compute-risk-analysis to learn more.
|
@@ -794,11 +976,12 @@ module Google
|
|
794
976
|
# Deprecated. This field has no effect.
|
795
977
|
# @param [String] order_by
|
796
978
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
797
|
-
# postfix. This list is case
|
798
|
-
#
|
799
|
-
# create_time desc` Supported fields are: - `create_time`: corresponds to
|
800
|
-
# time the job was created. - `end_time`: corresponds to the time the job
|
801
|
-
# - `name`: corresponds to the job's name. - `state`: corresponds to `
|
979
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
980
|
+
# Redundant space characters are insignificant. Example: `name asc, end_time
|
981
|
+
# asc, create_time desc` Supported fields are: - `create_time`: corresponds to
|
982
|
+
# the time the job was created. - `end_time`: corresponds to the time the job
|
983
|
+
# ended. - `name`: corresponds to the job's name. - `state`: corresponds to `
|
984
|
+
# state`
|
802
985
|
# @param [Fixnum] page_size
|
803
986
|
# The standard list page size.
|
804
987
|
# @param [String] page_token
|
@@ -967,17 +1150,17 @@ module Google
|
|
967
1150
|
# Deprecated. This field has no effect.
|
968
1151
|
# @param [String] order_by
|
969
1152
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
970
|
-
# postfix. This list is case
|
971
|
-
#
|
1153
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
1154
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
972
1155
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
973
1156
|
# time the template was created. - `update_time`: corresponds to the time the
|
974
1157
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
975
1158
|
# display_name`: corresponds to the template's display name.
|
976
1159
|
# @param [Fixnum] page_size
|
977
|
-
# Size of the page
|
978
|
-
# of max size 100.
|
1160
|
+
# Size of the page. This value can be limited by the server. If zero server
|
1161
|
+
# returns a page of max size 100.
|
979
1162
|
# @param [String] page_token
|
980
|
-
# Page token to continue retrieval. Comes from previous call to `
|
1163
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
981
1164
|
# ListInspectTemplates`.
|
982
1165
|
# @param [String] fields
|
983
1166
|
# Selector specifying which fields to include in a partial response.
|
@@ -1182,8 +1365,8 @@ module Google
|
|
1182
1365
|
# Deprecated. This field has no effect.
|
1183
1366
|
# @param [String] order_by
|
1184
1367
|
# Comma separated list of triggeredJob fields to order by, followed by `asc` or `
|
1185
|
-
# desc` postfix. This list is case
|
1186
|
-
# ascending
|
1368
|
+
# desc` postfix. This list is case insensitive. The default sorting order is
|
1369
|
+
# ascending. Redundant space characters are insignificant. Example: `name asc,
|
1187
1370
|
# update_time, create_time desc` Supported fields are: - `create_time`:
|
1188
1371
|
# corresponds to the time the JobTrigger was created. - `update_time`:
|
1189
1372
|
# corresponds to the time the JobTrigger was last updated. - `last_run_time`:
|
@@ -1191,10 +1374,10 @@ module Google
|
|
1191
1374
|
# JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display
|
1192
1375
|
# name. - `status`: corresponds to JobTrigger's status.
|
1193
1376
|
# @param [Fixnum] page_size
|
1194
|
-
# Size of the page
|
1377
|
+
# Size of the page. This value can be limited by a server.
|
1195
1378
|
# @param [String] page_token
|
1196
|
-
# Page token to continue retrieval. Comes from previous call to
|
1197
|
-
# `order_by` field must not change for subsequent calls.
|
1379
|
+
# Page token to continue retrieval. Comes from the previous call to
|
1380
|
+
# ListJobTriggers. `order_by` field must not change for subsequent calls.
|
1198
1381
|
# @param [String] type
|
1199
1382
|
# The type of jobs. Will use `DlpJobType.INSPECT` if not set.
|
1200
1383
|
# @param [String] fields
|
@@ -1391,17 +1574,17 @@ module Google
|
|
1391
1574
|
# Deprecated. This field has no effect.
|
1392
1575
|
# @param [String] order_by
|
1393
1576
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
1394
|
-
# postfix. This list is case
|
1395
|
-
#
|
1396
|
-
# create_time desc` Supported fields are: - `create_time`:
|
1397
|
-
# time the most recent version of the resource was created. -
|
1398
|
-
# corresponds to the state of the resource. - `name`: corresponds to
|
1399
|
-
# name. - `display_name`: corresponds to info type's display name.
|
1577
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
1578
|
+
# Redundant space characters are insignificant. Example: `name asc,
|
1579
|
+
# display_name, create_time desc` Supported fields are: - `create_time`:
|
1580
|
+
# corresponds to the time the most recent version of the resource was created. -
|
1581
|
+
# `state`: corresponds to the state of the resource. - `name`: corresponds to
|
1582
|
+
# resource name. - `display_name`: corresponds to info type's display name.
|
1400
1583
|
# @param [Fixnum] page_size
|
1401
|
-
# Size of the page
|
1402
|
-
# of max size 100.
|
1584
|
+
# Size of the page. This value can be limited by the server. If zero server
|
1585
|
+
# returns a page of max size 100.
|
1403
1586
|
# @param [String] page_token
|
1404
|
-
# Page token to continue retrieval. Comes from previous call to `
|
1587
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
1405
1588
|
# ListStoredInfoTypes`.
|
1406
1589
|
# @param [String] fields
|
1407
1590
|
# Selector specifying which fields to include in a partial response.
|
@@ -1597,17 +1780,17 @@ module Google
|
|
1597
1780
|
# Deprecated. This field has no effect.
|
1598
1781
|
# @param [String] order_by
|
1599
1782
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
1600
|
-
# postfix. This list is case
|
1601
|
-
#
|
1602
|
-
# create_time desc` Supported fields are: - `create_time`:
|
1603
|
-
# time the most recent version of the resource was created. -
|
1604
|
-
# corresponds to the state of the resource. - `name`: corresponds to
|
1605
|
-
# name. - `display_name`: corresponds to info type's display name.
|
1783
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
1784
|
+
# Redundant space characters are insignificant. Example: `name asc,
|
1785
|
+
# display_name, create_time desc` Supported fields are: - `create_time`:
|
1786
|
+
# corresponds to the time the most recent version of the resource was created. -
|
1787
|
+
# `state`: corresponds to the state of the resource. - `name`: corresponds to
|
1788
|
+
# resource name. - `display_name`: corresponds to info type's display name.
|
1606
1789
|
# @param [Fixnum] page_size
|
1607
|
-
# Size of the page
|
1608
|
-
# of max size 100.
|
1790
|
+
# Size of the page. This value can be limited by the server. If zero server
|
1791
|
+
# returns a page of max size 100.
|
1609
1792
|
# @param [String] page_token
|
1610
|
-
# Page token to continue retrieval. Comes from previous call to `
|
1793
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
1611
1794
|
# ListStoredInfoTypes`.
|
1612
1795
|
# @param [String] fields
|
1613
1796
|
# Selector specifying which fields to include in a partial response.
|
@@ -1938,17 +2121,17 @@ module Google
|
|
1938
2121
|
# Deprecated. This field has no effect.
|
1939
2122
|
# @param [String] order_by
|
1940
2123
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
1941
|
-
# postfix. This list is case
|
1942
|
-
#
|
2124
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
2125
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
1943
2126
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
1944
2127
|
# time the template was created. - `update_time`: corresponds to the time the
|
1945
2128
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
1946
2129
|
# display_name`: corresponds to the template's display name.
|
1947
2130
|
# @param [Fixnum] page_size
|
1948
|
-
# Size of the page
|
1949
|
-
# of max size 100.
|
2131
|
+
# Size of the page. This value can be limited by the server. If zero server
|
2132
|
+
# returns a page of max size 100.
|
1950
2133
|
# @param [String] page_token
|
1951
|
-
# Page token to continue retrieval. Comes from previous call to `
|
2134
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
1952
2135
|
# ListDeidentifyTemplates`.
|
1953
2136
|
# @param [String] fields
|
1954
2137
|
# Selector specifying which fields to include in a partial response.
|
@@ -2196,11 +2379,12 @@ module Google
|
|
2196
2379
|
# Deprecated. This field has no effect.
|
2197
2380
|
# @param [String] order_by
|
2198
2381
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
2199
|
-
# postfix. This list is case
|
2200
|
-
#
|
2201
|
-
# create_time desc` Supported fields are: - `create_time`: corresponds to
|
2202
|
-
# time the job was created. - `end_time`: corresponds to the time the job
|
2203
|
-
# - `name`: corresponds to the job's name. - `state`: corresponds to `
|
2382
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
2383
|
+
# Redundant space characters are insignificant. Example: `name asc, end_time
|
2384
|
+
# asc, create_time desc` Supported fields are: - `create_time`: corresponds to
|
2385
|
+
# the time the job was created. - `end_time`: corresponds to the time the job
|
2386
|
+
# ended. - `name`: corresponds to the job's name. - `state`: corresponds to `
|
2387
|
+
# state`
|
2204
2388
|
# @param [Fixnum] page_size
|
2205
2389
|
# The standard list page size.
|
2206
2390
|
# @param [String] page_token
|
@@ -2414,17 +2598,17 @@ module Google
|
|
2414
2598
|
# Deprecated. This field has no effect.
|
2415
2599
|
# @param [String] order_by
|
2416
2600
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
2417
|
-
# postfix. This list is case
|
2418
|
-
#
|
2601
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
2602
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
2419
2603
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
2420
2604
|
# time the template was created. - `update_time`: corresponds to the time the
|
2421
2605
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
2422
2606
|
# display_name`: corresponds to the template's display name.
|
2423
2607
|
# @param [Fixnum] page_size
|
2424
|
-
# Size of the page
|
2425
|
-
# of max size 100.
|
2608
|
+
# Size of the page. This value can be limited by the server. If zero server
|
2609
|
+
# returns a page of max size 100.
|
2426
2610
|
# @param [String] page_token
|
2427
|
-
# Page token to continue retrieval. Comes from previous call to `
|
2611
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
2428
2612
|
# ListInspectTemplates`.
|
2429
2613
|
# @param [String] fields
|
2430
2614
|
# Selector specifying which fields to include in a partial response.
|
@@ -2664,8 +2848,8 @@ module Google
|
|
2664
2848
|
# Deprecated. This field has no effect.
|
2665
2849
|
# @param [String] order_by
|
2666
2850
|
# Comma separated list of triggeredJob fields to order by, followed by `asc` or `
|
2667
|
-
# desc` postfix. This list is case
|
2668
|
-
# ascending
|
2851
|
+
# desc` postfix. This list is case insensitive. The default sorting order is
|
2852
|
+
# ascending. Redundant space characters are insignificant. Example: `name asc,
|
2669
2853
|
# update_time, create_time desc` Supported fields are: - `create_time`:
|
2670
2854
|
# corresponds to the time the JobTrigger was created. - `update_time`:
|
2671
2855
|
# corresponds to the time the JobTrigger was last updated. - `last_run_time`:
|
@@ -2673,10 +2857,10 @@ module Google
|
|
2673
2857
|
# JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display
|
2674
2858
|
# name. - `status`: corresponds to JobTrigger's status.
|
2675
2859
|
# @param [Fixnum] page_size
|
2676
|
-
# Size of the page
|
2860
|
+
# Size of the page. This value can be limited by a server.
|
2677
2861
|
# @param [String] page_token
|
2678
|
-
# Page token to continue retrieval. Comes from previous call to
|
2679
|
-
# `order_by` field must not change for subsequent calls.
|
2862
|
+
# Page token to continue retrieval. Comes from the previous call to
|
2863
|
+
# ListJobTriggers. `order_by` field must not change for subsequent calls.
|
2680
2864
|
# @param [String] type
|
2681
2865
|
# The type of jobs. Will use `DlpJobType.INSPECT` if not set.
|
2682
2866
|
# @param [String] fields
|
@@ -3008,17 +3192,17 @@ module Google
|
|
3008
3192
|
# Deprecated. This field has no effect.
|
3009
3193
|
# @param [String] order_by
|
3010
3194
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
3011
|
-
# postfix. This list is case
|
3012
|
-
#
|
3195
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
3196
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
3013
3197
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
3014
3198
|
# time the template was created. - `update_time`: corresponds to the time the
|
3015
3199
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
3016
3200
|
# display_name`: corresponds to the template's display name.
|
3017
3201
|
# @param [Fixnum] page_size
|
3018
|
-
# Size of the page
|
3019
|
-
# of max size 100.
|
3202
|
+
# Size of the page. This value can be limited by the server. If zero server
|
3203
|
+
# returns a page of max size 100.
|
3020
3204
|
# @param [String] page_token
|
3021
|
-
# Page token to continue retrieval. Comes from previous call to `
|
3205
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
3022
3206
|
# ListDeidentifyTemplates`.
|
3023
3207
|
# @param [String] fields
|
3024
3208
|
# Selector specifying which fields to include in a partial response.
|
@@ -3087,6 +3271,188 @@ module Google
|
|
3087
3271
|
execute_or_queue_command(command, &block)
|
3088
3272
|
end
|
3089
3273
|
|
3274
|
+
# Creates a config for discovery to scan and profile storage.
|
3275
|
+
# @param [String] parent
|
3276
|
+
# Required. Parent resource name. The format of this value is as follows: `
|
3277
|
+
# projects/`PROJECT_ID`/locations/`LOCATION_ID The following example `parent`
|
3278
|
+
# string specifies a parent project with the identifier `example-project`, and
|
3279
|
+
# specifies the `europe-west3` location for processing data: parent=projects/
|
3280
|
+
# example-project/locations/europe-west3
|
3281
|
+
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDiscoveryConfigRequest] google_privacy_dlp_v2_create_discovery_config_request_object
|
3282
|
+
# @param [String] fields
|
3283
|
+
# Selector specifying which fields to include in a partial response.
|
3284
|
+
# @param [String] quota_user
|
3285
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3286
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3287
|
+
# @param [Google::Apis::RequestOptions] options
|
3288
|
+
# Request-specific options
|
3289
|
+
#
|
3290
|
+
# @yield [result, err] Result & error if block supplied
|
3291
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig] parsed result object
|
3292
|
+
# @yieldparam err [StandardError] error object if request failed
|
3293
|
+
#
|
3294
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig]
|
3295
|
+
#
|
3296
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3297
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3298
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3299
|
+
def create_project_location_discovery_config(parent, google_privacy_dlp_v2_create_discovery_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3300
|
+
command = make_simple_command(:post, 'v2/{+parent}/discoveryConfigs', options)
|
3301
|
+
command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDiscoveryConfigRequest::Representation
|
3302
|
+
command.request_object = google_privacy_dlp_v2_create_discovery_config_request_object
|
3303
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig::Representation
|
3304
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig
|
3305
|
+
command.params['parent'] = parent unless parent.nil?
|
3306
|
+
command.query['fields'] = fields unless fields.nil?
|
3307
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3308
|
+
execute_or_queue_command(command, &block)
|
3309
|
+
end
|
3310
|
+
|
3311
|
+
# Deletes a discovery configuration.
|
3312
|
+
# @param [String] name
|
3313
|
+
# Required. Resource name of the project and the config, for example `projects/
|
3314
|
+
# dlp-test-project/discoveryConfigs/53234423`.
|
3315
|
+
# @param [String] fields
|
3316
|
+
# Selector specifying which fields to include in a partial response.
|
3317
|
+
# @param [String] quota_user
|
3318
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3319
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3320
|
+
# @param [Google::Apis::RequestOptions] options
|
3321
|
+
# Request-specific options
|
3322
|
+
#
|
3323
|
+
# @yield [result, err] Result & error if block supplied
|
3324
|
+
# @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object
|
3325
|
+
# @yieldparam err [StandardError] error object if request failed
|
3326
|
+
#
|
3327
|
+
# @return [Google::Apis::DlpV2::GoogleProtobufEmpty]
|
3328
|
+
#
|
3329
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3330
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3331
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3332
|
+
def delete_project_location_discovery_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
3333
|
+
command = make_simple_command(:delete, 'v2/{+name}', options)
|
3334
|
+
command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
|
3335
|
+
command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
|
3336
|
+
command.params['name'] = name unless name.nil?
|
3337
|
+
command.query['fields'] = fields unless fields.nil?
|
3338
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3339
|
+
execute_or_queue_command(command, &block)
|
3340
|
+
end
|
3341
|
+
|
3342
|
+
# Gets a discovery configuration.
|
3343
|
+
# @param [String] name
|
3344
|
+
# Required. Resource name of the project and the configuration, for example `
|
3345
|
+
# projects/dlp-test-project/discoveryConfigs/53234423`.
|
3346
|
+
# @param [String] fields
|
3347
|
+
# Selector specifying which fields to include in a partial response.
|
3348
|
+
# @param [String] quota_user
|
3349
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3350
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3351
|
+
# @param [Google::Apis::RequestOptions] options
|
3352
|
+
# Request-specific options
|
3353
|
+
#
|
3354
|
+
# @yield [result, err] Result & error if block supplied
|
3355
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig] parsed result object
|
3356
|
+
# @yieldparam err [StandardError] error object if request failed
|
3357
|
+
#
|
3358
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig]
|
3359
|
+
#
|
3360
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3361
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3362
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3363
|
+
def get_project_location_discovery_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
3364
|
+
command = make_simple_command(:get, 'v2/{+name}', options)
|
3365
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig::Representation
|
3366
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig
|
3367
|
+
command.params['name'] = name unless name.nil?
|
3368
|
+
command.query['fields'] = fields unless fields.nil?
|
3369
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3370
|
+
execute_or_queue_command(command, &block)
|
3371
|
+
end
|
3372
|
+
|
3373
|
+
# Lists discovery configurations.
|
3374
|
+
# @param [String] parent
|
3375
|
+
# Required. Parent resource name. The format of this value is as follows: `
|
3376
|
+
# projects/`PROJECT_ID`/locations/`LOCATION_ID The following example `parent`
|
3377
|
+
# string specifies a parent project with the identifier `example-project`, and
|
3378
|
+
# specifies the `europe-west3` location for processing data: parent=projects/
|
3379
|
+
# example-project/locations/europe-west3
|
3380
|
+
# @param [String] order_by
|
3381
|
+
# Comma separated list of config fields to order by, followed by `asc` or `desc`
|
3382
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
3383
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
3384
|
+
# create_time desc` Supported fields are: - `last_run_time`: corresponds to the
|
3385
|
+
# last time the DiscoveryConfig ran. - `name`: corresponds to the
|
3386
|
+
# DiscoveryConfig's name. - `status`: corresponds to DiscoveryConfig's status.
|
3387
|
+
# @param [Fixnum] page_size
|
3388
|
+
# Size of the page. This value can be limited by a server.
|
3389
|
+
# @param [String] page_token
|
3390
|
+
# Page token to continue retrieval. Comes from the previous call to
|
3391
|
+
# ListDiscoveryConfigs. `order_by` field must not change for subsequent calls.
|
3392
|
+
# @param [String] fields
|
3393
|
+
# Selector specifying which fields to include in a partial response.
|
3394
|
+
# @param [String] quota_user
|
3395
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3396
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3397
|
+
# @param [Google::Apis::RequestOptions] options
|
3398
|
+
# Request-specific options
|
3399
|
+
#
|
3400
|
+
# @yield [result, err] Result & error if block supplied
|
3401
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse] parsed result object
|
3402
|
+
# @yieldparam err [StandardError] error object if request failed
|
3403
|
+
#
|
3404
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse]
|
3405
|
+
#
|
3406
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3407
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3408
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3409
|
+
def list_project_location_discovery_configs(parent, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3410
|
+
command = make_simple_command(:get, 'v2/{+parent}/discoveryConfigs', options)
|
3411
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse::Representation
|
3412
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDiscoveryConfigsResponse
|
3413
|
+
command.params['parent'] = parent unless parent.nil?
|
3414
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
3415
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
3416
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
3417
|
+
command.query['fields'] = fields unless fields.nil?
|
3418
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3419
|
+
execute_or_queue_command(command, &block)
|
3420
|
+
end
|
3421
|
+
|
3422
|
+
# Updates a discovery configuration.
|
3423
|
+
# @param [String] name
|
3424
|
+
# Required. Resource name of the project and the configuration, for example `
|
3425
|
+
# projects/dlp-test-project/discoveryConfigs/53234423`.
|
3426
|
+
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDiscoveryConfigRequest] google_privacy_dlp_v2_update_discovery_config_request_object
|
3427
|
+
# @param [String] fields
|
3428
|
+
# Selector specifying which fields to include in a partial response.
|
3429
|
+
# @param [String] quota_user
|
3430
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3431
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3432
|
+
# @param [Google::Apis::RequestOptions] options
|
3433
|
+
# Request-specific options
|
3434
|
+
#
|
3435
|
+
# @yield [result, err] Result & error if block supplied
|
3436
|
+
# @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig] parsed result object
|
3437
|
+
# @yieldparam err [StandardError] error object if request failed
|
3438
|
+
#
|
3439
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig]
|
3440
|
+
#
|
3441
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3442
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3443
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3444
|
+
def patch_project_location_discovery_config(name, google_privacy_dlp_v2_update_discovery_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3445
|
+
command = make_simple_command(:patch, 'v2/{+name}', options)
|
3446
|
+
command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDiscoveryConfigRequest::Representation
|
3447
|
+
command.request_object = google_privacy_dlp_v2_update_discovery_config_request_object
|
3448
|
+
command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig::Representation
|
3449
|
+
command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryConfig
|
3450
|
+
command.params['name'] = name unless name.nil?
|
3451
|
+
command.query['fields'] = fields unless fields.nil?
|
3452
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3453
|
+
execute_or_queue_command(command, &block)
|
3454
|
+
end
|
3455
|
+
|
3090
3456
|
# Starts asynchronous cancellation on a long-running DlpJob. The server makes a
|
3091
3457
|
# best effort to cancel the DlpJob, but success is not guaranteed. See https://
|
3092
3458
|
# cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/
|
@@ -3335,11 +3701,12 @@ module Google
|
|
3335
3701
|
# Deprecated. This field has no effect.
|
3336
3702
|
# @param [String] order_by
|
3337
3703
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
3338
|
-
# postfix. This list is case
|
3339
|
-
#
|
3340
|
-
# create_time desc` Supported fields are: - `create_time`: corresponds to
|
3341
|
-
# time the job was created. - `end_time`: corresponds to the time the job
|
3342
|
-
# - `name`: corresponds to the job's name. - `state`: corresponds to `
|
3704
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
3705
|
+
# Redundant space characters are insignificant. Example: `name asc, end_time
|
3706
|
+
# asc, create_time desc` Supported fields are: - `create_time`: corresponds to
|
3707
|
+
# the time the job was created. - `end_time`: corresponds to the time the job
|
3708
|
+
# ended. - `name`: corresponds to the job's name. - `state`: corresponds to `
|
3709
|
+
# state`
|
3343
3710
|
# @param [Fixnum] page_size
|
3344
3711
|
# The standard list page size.
|
3345
3712
|
# @param [String] page_token
|
@@ -3553,17 +3920,17 @@ module Google
|
|
3553
3920
|
# Deprecated. This field has no effect.
|
3554
3921
|
# @param [String] order_by
|
3555
3922
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
3556
|
-
# postfix. This list is case
|
3557
|
-
#
|
3923
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
3924
|
+
# Redundant space characters are insignificant. Example: `name asc,update_time,
|
3558
3925
|
# create_time desc` Supported fields are: - `create_time`: corresponds to the
|
3559
3926
|
# time the template was created. - `update_time`: corresponds to the time the
|
3560
3927
|
# template was last updated. - `name`: corresponds to the template's name. - `
|
3561
3928
|
# display_name`: corresponds to the template's display name.
|
3562
3929
|
# @param [Fixnum] page_size
|
3563
|
-
# Size of the page
|
3564
|
-
# of max size 100.
|
3930
|
+
# Size of the page. This value can be limited by the server. If zero server
|
3931
|
+
# returns a page of max size 100.
|
3565
3932
|
# @param [String] page_token
|
3566
|
-
# Page token to continue retrieval. Comes from previous call to `
|
3933
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
3567
3934
|
# ListInspectTemplates`.
|
3568
3935
|
# @param [String] fields
|
3569
3936
|
# Selector specifying which fields to include in a partial response.
|
@@ -3839,8 +4206,8 @@ module Google
|
|
3839
4206
|
# Deprecated. This field has no effect.
|
3840
4207
|
# @param [String] order_by
|
3841
4208
|
# Comma separated list of triggeredJob fields to order by, followed by `asc` or `
|
3842
|
-
# desc` postfix. This list is case
|
3843
|
-
# ascending
|
4209
|
+
# desc` postfix. This list is case insensitive. The default sorting order is
|
4210
|
+
# ascending. Redundant space characters are insignificant. Example: `name asc,
|
3844
4211
|
# update_time, create_time desc` Supported fields are: - `create_time`:
|
3845
4212
|
# corresponds to the time the JobTrigger was created. - `update_time`:
|
3846
4213
|
# corresponds to the time the JobTrigger was last updated. - `last_run_time`:
|
@@ -3848,10 +4215,10 @@ module Google
|
|
3848
4215
|
# JobTrigger's name. - `display_name`: corresponds to the JobTrigger's display
|
3849
4216
|
# name. - `status`: corresponds to JobTrigger's status.
|
3850
4217
|
# @param [Fixnum] page_size
|
3851
|
-
# Size of the page
|
4218
|
+
# Size of the page. This value can be limited by a server.
|
3852
4219
|
# @param [String] page_token
|
3853
|
-
# Page token to continue retrieval. Comes from previous call to
|
3854
|
-
# `order_by` field must not change for subsequent calls.
|
4220
|
+
# Page token to continue retrieval. Comes from the previous call to
|
4221
|
+
# ListJobTriggers. `order_by` field must not change for subsequent calls.
|
3855
4222
|
# @param [String] type
|
3856
4223
|
# The type of jobs. Will use `DlpJobType.INSPECT` if not set.
|
3857
4224
|
# @param [String] fields
|
@@ -4048,17 +4415,17 @@ module Google
|
|
4048
4415
|
# Deprecated. This field has no effect.
|
4049
4416
|
# @param [String] order_by
|
4050
4417
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
4051
|
-
# postfix. This list is case
|
4052
|
-
#
|
4053
|
-
# create_time desc` Supported fields are: - `create_time`:
|
4054
|
-
# time the most recent version of the resource was created. -
|
4055
|
-
# corresponds to the state of the resource. - `name`: corresponds to
|
4056
|
-
# name. - `display_name`: corresponds to info type's display name.
|
4418
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
4419
|
+
# Redundant space characters are insignificant. Example: `name asc,
|
4420
|
+
# display_name, create_time desc` Supported fields are: - `create_time`:
|
4421
|
+
# corresponds to the time the most recent version of the resource was created. -
|
4422
|
+
# `state`: corresponds to the state of the resource. - `name`: corresponds to
|
4423
|
+
# resource name. - `display_name`: corresponds to info type's display name.
|
4057
4424
|
# @param [Fixnum] page_size
|
4058
|
-
# Size of the page
|
4059
|
-
# of max size 100.
|
4425
|
+
# Size of the page. This value can be limited by the server. If zero server
|
4426
|
+
# returns a page of max size 100.
|
4060
4427
|
# @param [String] page_token
|
4061
|
-
# Page token to continue retrieval. Comes from previous call to `
|
4428
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
4062
4429
|
# ListStoredInfoTypes`.
|
4063
4430
|
# @param [String] fields
|
4064
4431
|
# Selector specifying which fields to include in a partial response.
|
@@ -4254,17 +4621,17 @@ module Google
|
|
4254
4621
|
# Deprecated. This field has no effect.
|
4255
4622
|
# @param [String] order_by
|
4256
4623
|
# Comma separated list of fields to order by, followed by `asc` or `desc`
|
4257
|
-
# postfix. This list is case
|
4258
|
-
#
|
4259
|
-
# create_time desc` Supported fields are: - `create_time`:
|
4260
|
-
# time the most recent version of the resource was created. -
|
4261
|
-
# corresponds to the state of the resource. - `name`: corresponds to
|
4262
|
-
# name. - `display_name`: corresponds to info type's display name.
|
4624
|
+
# postfix. This list is case insensitive. The default sorting order is ascending.
|
4625
|
+
# Redundant space characters are insignificant. Example: `name asc,
|
4626
|
+
# display_name, create_time desc` Supported fields are: - `create_time`:
|
4627
|
+
# corresponds to the time the most recent version of the resource was created. -
|
4628
|
+
# `state`: corresponds to the state of the resource. - `name`: corresponds to
|
4629
|
+
# resource name. - `display_name`: corresponds to info type's display name.
|
4263
4630
|
# @param [Fixnum] page_size
|
4264
|
-
# Size of the page
|
4265
|
-
# of max size 100.
|
4631
|
+
# Size of the page. This value can be limited by the server. If zero server
|
4632
|
+
# returns a page of max size 100.
|
4266
4633
|
# @param [String] page_token
|
4267
|
-
# Page token to continue retrieval. Comes from previous call to `
|
4634
|
+
# Page token to continue retrieval. Comes from the previous call to `
|
4268
4635
|
# ListStoredInfoTypes`.
|
4269
4636
|
# @param [String] fields
|
4270
4637
|
# Selector specifying which fields to include in a partial response.
|