google-apis-logging_v2 0.82.0 → 0.84.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd6c1eb828044da59be8136679fa041f09dbc8fd20833ce346b89faed5a1a2e7
|
|
4
|
+
data.tar.gz: 617bce461840b84399e38ad13f340d76346d8e8af523cdcfe409abe50acaca41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14719a8aa8fce71fc9559cbada3bc39ab4d6ea5c1894f5e36eda17e75bb2b6cac4ecc501e82755c18a4a85a034905c1a31ffa4532ae8586e1b9ab6cef6533f53
|
|
7
|
+
data.tar.gz: 4ed5884ae5754557f1c6d455ac0868bdb98070c9bc493f16233f5f9153764d6e219ab11711e3c95fc9fda2fd991a0f827e12622419d270532e249d6f0f1a2292
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-logging_v2
|
|
2
2
|
|
|
3
|
+
### v0.84.0 (2025-10-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251017
|
|
6
|
+
|
|
7
|
+
### v0.83.0 (2025-09-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250905
|
|
10
|
+
|
|
3
11
|
### v0.82.0 (2025-08-31)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250822
|
|
@@ -1606,6 +1606,13 @@ module Google
|
|
|
1606
1606
|
# @return [Array<Google::Apis::LoggingV2::Operation>]
|
|
1607
1607
|
attr_accessor :operations
|
|
1608
1608
|
|
|
1609
|
+
# Unordered list. Unreachable resources. Populated when the request sets
|
|
1610
|
+
# ListOperationsRequest.return_partial_success and reads across collections e.g.
|
|
1611
|
+
# when attempting to list all resources across all supported locations.
|
|
1612
|
+
# Corresponds to the JSON property `unreachable`
|
|
1613
|
+
# @return [Array<String>]
|
|
1614
|
+
attr_accessor :unreachable
|
|
1615
|
+
|
|
1609
1616
|
def initialize(**args)
|
|
1610
1617
|
update!(**args)
|
|
1611
1618
|
end
|
|
@@ -1614,6 +1621,7 @@ module Google
|
|
|
1614
1621
|
def update!(**args)
|
|
1615
1622
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1616
1623
|
@operations = args[:operations] if args.key?(:operations)
|
|
1624
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1617
1625
|
end
|
|
1618
1626
|
end
|
|
1619
1627
|
|
|
@@ -2533,10 +2541,11 @@ module Google
|
|
|
2533
2541
|
# @return [String]
|
|
2534
2542
|
attr_accessor :name
|
|
2535
2543
|
|
|
2536
|
-
# Required. Names of one or more parent resources
|
|
2537
|
-
# alternatively be one or more views:
|
|
2538
|
-
# LOCATION_ID]/buckets/[BUCKET_ID]/views/[
|
|
2539
|
-
# maximum of 5 projects and a maximum of 100
|
|
2544
|
+
# Required. Names of one or more parent resources (organizations and folders are
|
|
2545
|
+
# not supported.): projects/[PROJECT_ID]May alternatively be one or more views:
|
|
2546
|
+
# projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[
|
|
2547
|
+
# VIEW_ID]A log scope can include a maximum of 5 projects and a maximum of 100
|
|
2548
|
+
# resources in total.
|
|
2540
2549
|
# Corresponds to the JSON property `resourceNames`
|
|
2541
2550
|
# @return [Array<String>]
|
|
2542
2551
|
attr_accessor :resource_names
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module LoggingV2
|
|
18
18
|
# Version of the google-apis-logging_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.84.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251017"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -931,6 +931,7 @@ module Google
|
|
|
931
931
|
property :next_page_token, as: 'nextPageToken'
|
|
932
932
|
collection :operations, as: 'operations', class: Google::Apis::LoggingV2::Operation, decorator: Google::Apis::LoggingV2::Operation::Representation
|
|
933
933
|
|
|
934
|
+
collection :unreachable, as: 'unreachable'
|
|
934
935
|
end
|
|
935
936
|
end
|
|
936
937
|
|
|
@@ -357,8 +357,8 @@ module Google
|
|
|
357
357
|
# @param [String] name
|
|
358
358
|
# The resource that owns the locations collection, if applicable.
|
|
359
359
|
# @param [Array<String>, String] extra_location_types
|
|
360
|
-
# Optional.
|
|
361
|
-
#
|
|
360
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
361
|
+
# field which is primarily intended for internal usage.
|
|
362
362
|
# @param [String] filter
|
|
363
363
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
364
364
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -1222,6 +1222,13 @@ module Google
|
|
|
1222
1222
|
# The standard list page size.
|
|
1223
1223
|
# @param [String] page_token
|
|
1224
1224
|
# The standard list page token.
|
|
1225
|
+
# @param [Boolean] return_partial_success
|
|
1226
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
1227
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1228
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
1229
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
1230
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
1231
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1225
1232
|
# @param [String] fields
|
|
1226
1233
|
# Selector specifying which fields to include in a partial response.
|
|
1227
1234
|
# @param [String] quota_user
|
|
@@ -1239,7 +1246,7 @@ module Google
|
|
|
1239
1246
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1240
1247
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1241
1248
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1242
|
-
def list_billing_account_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1249
|
+
def list_billing_account_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1243
1250
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
1244
1251
|
command.response_representation = Google::Apis::LoggingV2::ListOperationsResponse::Representation
|
|
1245
1252
|
command.response_class = Google::Apis::LoggingV2::ListOperationsResponse
|
|
@@ -1247,6 +1254,7 @@ module Google
|
|
|
1247
1254
|
command.query['filter'] = filter unless filter.nil?
|
|
1248
1255
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1249
1256
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1257
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1250
1258
|
command.query['fields'] = fields unless fields.nil?
|
|
1251
1259
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1252
1260
|
execute_or_queue_command(command, &block)
|
|
@@ -2616,8 +2624,8 @@ module Google
|
|
|
2616
2624
|
# @param [String] name
|
|
2617
2625
|
# The resource that owns the locations collection, if applicable.
|
|
2618
2626
|
# @param [Array<String>, String] extra_location_types
|
|
2619
|
-
# Optional.
|
|
2620
|
-
#
|
|
2627
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
2628
|
+
# field which is primarily intended for internal usage.
|
|
2621
2629
|
# @param [String] filter
|
|
2622
2630
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
2623
2631
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -3514,9 +3522,10 @@ module Google
|
|
|
3514
3522
|
|
|
3515
3523
|
# Creates a log scope.
|
|
3516
3524
|
# @param [String] parent
|
|
3517
|
-
# Required. The parent
|
|
3518
|
-
# PROJECT_ID]/locations/[LOCATION_ID]"
|
|
3519
|
-
# locations/
|
|
3525
|
+
# Required. The parent resource in which to create the log scope: "projects/[
|
|
3526
|
+
# PROJECT_ID]/locations/[LOCATION_ID]" "organizations/[ORGANIZATION_ID]/
|
|
3527
|
+
# locations/[LOCATION_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]" For
|
|
3528
|
+
# example:"projects/my-project/locations/global"
|
|
3520
3529
|
# @param [Google::Apis::LoggingV2::LogScope] log_scope_object
|
|
3521
3530
|
# @param [String] log_scope_id
|
|
3522
3531
|
# Required. A client-assigned identifier such as "log-scope". Identifiers are
|
|
@@ -3555,8 +3564,9 @@ module Google
|
|
|
3555
3564
|
# Deletes a log scope.
|
|
3556
3565
|
# @param [String] name
|
|
3557
3566
|
# Required. The resource name of the log scope to delete: "projects/[PROJECT_ID]/
|
|
3558
|
-
# locations/[LOCATION_ID]
|
|
3559
|
-
#
|
|
3567
|
+
# locations/[LOCATION_ID]" "organizations/[ORGANIZATION_ID]/locations/[
|
|
3568
|
+
# LOCATION_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]" For example:"
|
|
3569
|
+
# projects/my-project/locations/global/logScopes/my-log-scope"
|
|
3560
3570
|
# @param [String] fields
|
|
3561
3571
|
# Selector specifying which fields to include in a partial response.
|
|
3562
3572
|
# @param [String] quota_user
|
|
@@ -3587,7 +3597,8 @@ module Google
|
|
|
3587
3597
|
# Gets a log scope.
|
|
3588
3598
|
# @param [String] name
|
|
3589
3599
|
# Required. The resource name of the log scope: "projects/[PROJECT_ID]/locations/
|
|
3590
|
-
# [LOCATION_ID]/
|
|
3600
|
+
# [LOCATION_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]" "
|
|
3601
|
+
# folders/[FOLDER_ID]/locations/[LOCATION_ID]" For example:"projects/my-project/
|
|
3591
3602
|
# locations/global/logScopes/my-log-scope"
|
|
3592
3603
|
# @param [String] fields
|
|
3593
3604
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -3781,6 +3792,13 @@ module Google
|
|
|
3781
3792
|
# The standard list page size.
|
|
3782
3793
|
# @param [String] page_token
|
|
3783
3794
|
# The standard list page token.
|
|
3795
|
+
# @param [Boolean] return_partial_success
|
|
3796
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
3797
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
3798
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
3799
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
3800
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
3801
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
3784
3802
|
# @param [String] fields
|
|
3785
3803
|
# Selector specifying which fields to include in a partial response.
|
|
3786
3804
|
# @param [String] quota_user
|
|
@@ -3798,7 +3816,7 @@ module Google
|
|
|
3798
3816
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3799
3817
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3800
3818
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3801
|
-
def list_folder_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3819
|
+
def list_folder_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3802
3820
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
3803
3821
|
command.response_representation = Google::Apis::LoggingV2::ListOperationsResponse::Representation
|
|
3804
3822
|
command.response_class = Google::Apis::LoggingV2::ListOperationsResponse
|
|
@@ -3806,6 +3824,7 @@ module Google
|
|
|
3806
3824
|
command.query['filter'] = filter unless filter.nil?
|
|
3807
3825
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
3808
3826
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
3827
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
3809
3828
|
command.query['fields'] = fields unless fields.nil?
|
|
3810
3829
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3811
3830
|
execute_or_queue_command(command, &block)
|
|
@@ -4531,8 +4550,8 @@ module Google
|
|
|
4531
4550
|
# @param [String] name
|
|
4532
4551
|
# The resource that owns the locations collection, if applicable.
|
|
4533
4552
|
# @param [Array<String>, String] extra_location_types
|
|
4534
|
-
# Optional.
|
|
4535
|
-
#
|
|
4553
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
4554
|
+
# field which is primarily intended for internal usage.
|
|
4536
4555
|
# @param [String] filter
|
|
4537
4556
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
4538
4557
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -5453,6 +5472,13 @@ module Google
|
|
|
5453
5472
|
# The standard list page size.
|
|
5454
5473
|
# @param [String] page_token
|
|
5455
5474
|
# The standard list page token.
|
|
5475
|
+
# @param [Boolean] return_partial_success
|
|
5476
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
5477
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
5478
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
5479
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
5480
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
5481
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
5456
5482
|
# @param [String] fields
|
|
5457
5483
|
# Selector specifying which fields to include in a partial response.
|
|
5458
5484
|
# @param [String] quota_user
|
|
@@ -5470,7 +5496,7 @@ module Google
|
|
|
5470
5496
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
5471
5497
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
5472
5498
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
5473
|
-
def list_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
5499
|
+
def list_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
5474
5500
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
5475
5501
|
command.response_representation = Google::Apis::LoggingV2::ListOperationsResponse::Representation
|
|
5476
5502
|
command.response_class = Google::Apis::LoggingV2::ListOperationsResponse
|
|
@@ -5478,6 +5504,7 @@ module Google
|
|
|
5478
5504
|
command.query['filter'] = filter unless filter.nil?
|
|
5479
5505
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
5480
5506
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
5507
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
5481
5508
|
command.query['fields'] = fields unless fields.nil?
|
|
5482
5509
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
5483
5510
|
execute_or_queue_command(command, &block)
|
|
@@ -6022,8 +6049,8 @@ module Google
|
|
|
6022
6049
|
# @param [String] name
|
|
6023
6050
|
# The resource that owns the locations collection, if applicable.
|
|
6024
6051
|
# @param [Array<String>, String] extra_location_types
|
|
6025
|
-
# Optional.
|
|
6026
|
-
#
|
|
6052
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
6053
|
+
# field which is primarily intended for internal usage.
|
|
6027
6054
|
# @param [String] filter
|
|
6028
6055
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
6029
6056
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -6920,9 +6947,10 @@ module Google
|
|
|
6920
6947
|
|
|
6921
6948
|
# Creates a log scope.
|
|
6922
6949
|
# @param [String] parent
|
|
6923
|
-
# Required. The parent
|
|
6924
|
-
# PROJECT_ID]/locations/[LOCATION_ID]"
|
|
6925
|
-
# locations/
|
|
6950
|
+
# Required. The parent resource in which to create the log scope: "projects/[
|
|
6951
|
+
# PROJECT_ID]/locations/[LOCATION_ID]" "organizations/[ORGANIZATION_ID]/
|
|
6952
|
+
# locations/[LOCATION_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]" For
|
|
6953
|
+
# example:"projects/my-project/locations/global"
|
|
6926
6954
|
# @param [Google::Apis::LoggingV2::LogScope] log_scope_object
|
|
6927
6955
|
# @param [String] log_scope_id
|
|
6928
6956
|
# Required. A client-assigned identifier such as "log-scope". Identifiers are
|
|
@@ -6961,8 +6989,9 @@ module Google
|
|
|
6961
6989
|
# Deletes a log scope.
|
|
6962
6990
|
# @param [String] name
|
|
6963
6991
|
# Required. The resource name of the log scope to delete: "projects/[PROJECT_ID]/
|
|
6964
|
-
# locations/[LOCATION_ID]
|
|
6965
|
-
#
|
|
6992
|
+
# locations/[LOCATION_ID]" "organizations/[ORGANIZATION_ID]/locations/[
|
|
6993
|
+
# LOCATION_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]" For example:"
|
|
6994
|
+
# projects/my-project/locations/global/logScopes/my-log-scope"
|
|
6966
6995
|
# @param [String] fields
|
|
6967
6996
|
# Selector specifying which fields to include in a partial response.
|
|
6968
6997
|
# @param [String] quota_user
|
|
@@ -6993,7 +7022,8 @@ module Google
|
|
|
6993
7022
|
# Gets a log scope.
|
|
6994
7023
|
# @param [String] name
|
|
6995
7024
|
# Required. The resource name of the log scope: "projects/[PROJECT_ID]/locations/
|
|
6996
|
-
# [LOCATION_ID]/
|
|
7025
|
+
# [LOCATION_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]" "
|
|
7026
|
+
# folders/[FOLDER_ID]/locations/[LOCATION_ID]" For example:"projects/my-project/
|
|
6997
7027
|
# locations/global/logScopes/my-log-scope"
|
|
6998
7028
|
# @param [String] fields
|
|
6999
7029
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -7187,6 +7217,13 @@ module Google
|
|
|
7187
7217
|
# The standard list page size.
|
|
7188
7218
|
# @param [String] page_token
|
|
7189
7219
|
# The standard list page token.
|
|
7220
|
+
# @param [Boolean] return_partial_success
|
|
7221
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
7222
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
7223
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
7224
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
7225
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
7226
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
7190
7227
|
# @param [String] fields
|
|
7191
7228
|
# Selector specifying which fields to include in a partial response.
|
|
7192
7229
|
# @param [String] quota_user
|
|
@@ -7204,7 +7241,7 @@ module Google
|
|
|
7204
7241
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7205
7242
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7206
7243
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7207
|
-
def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7244
|
+
def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7208
7245
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
7209
7246
|
command.response_representation = Google::Apis::LoggingV2::ListOperationsResponse::Representation
|
|
7210
7247
|
command.response_class = Google::Apis::LoggingV2::ListOperationsResponse
|
|
@@ -7212,6 +7249,7 @@ module Google
|
|
|
7212
7249
|
command.query['filter'] = filter unless filter.nil?
|
|
7213
7250
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
7214
7251
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
7252
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
7215
7253
|
command.query['fields'] = fields unless fields.nil?
|
|
7216
7254
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7217
7255
|
execute_or_queue_command(command, &block)
|
|
@@ -8209,8 +8247,8 @@ module Google
|
|
|
8209
8247
|
# @param [String] name
|
|
8210
8248
|
# The resource that owns the locations collection, if applicable.
|
|
8211
8249
|
# @param [Array<String>, String] extra_location_types
|
|
8212
|
-
# Optional.
|
|
8213
|
-
#
|
|
8250
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
8251
|
+
# field which is primarily intended for internal usage.
|
|
8214
8252
|
# @param [String] filter
|
|
8215
8253
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
8216
8254
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -9107,9 +9145,10 @@ module Google
|
|
|
9107
9145
|
|
|
9108
9146
|
# Creates a log scope.
|
|
9109
9147
|
# @param [String] parent
|
|
9110
|
-
# Required. The parent
|
|
9111
|
-
# PROJECT_ID]/locations/[LOCATION_ID]"
|
|
9112
|
-
# locations/
|
|
9148
|
+
# Required. The parent resource in which to create the log scope: "projects/[
|
|
9149
|
+
# PROJECT_ID]/locations/[LOCATION_ID]" "organizations/[ORGANIZATION_ID]/
|
|
9150
|
+
# locations/[LOCATION_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]" For
|
|
9151
|
+
# example:"projects/my-project/locations/global"
|
|
9113
9152
|
# @param [Google::Apis::LoggingV2::LogScope] log_scope_object
|
|
9114
9153
|
# @param [String] log_scope_id
|
|
9115
9154
|
# Required. A client-assigned identifier such as "log-scope". Identifiers are
|
|
@@ -9148,8 +9187,9 @@ module Google
|
|
|
9148
9187
|
# Deletes a log scope.
|
|
9149
9188
|
# @param [String] name
|
|
9150
9189
|
# Required. The resource name of the log scope to delete: "projects/[PROJECT_ID]/
|
|
9151
|
-
# locations/[LOCATION_ID]
|
|
9152
|
-
#
|
|
9190
|
+
# locations/[LOCATION_ID]" "organizations/[ORGANIZATION_ID]/locations/[
|
|
9191
|
+
# LOCATION_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]" For example:"
|
|
9192
|
+
# projects/my-project/locations/global/logScopes/my-log-scope"
|
|
9153
9193
|
# @param [String] fields
|
|
9154
9194
|
# Selector specifying which fields to include in a partial response.
|
|
9155
9195
|
# @param [String] quota_user
|
|
@@ -9180,7 +9220,8 @@ module Google
|
|
|
9180
9220
|
# Gets a log scope.
|
|
9181
9221
|
# @param [String] name
|
|
9182
9222
|
# Required. The resource name of the log scope: "projects/[PROJECT_ID]/locations/
|
|
9183
|
-
# [LOCATION_ID]/
|
|
9223
|
+
# [LOCATION_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]" "
|
|
9224
|
+
# folders/[FOLDER_ID]/locations/[LOCATION_ID]" For example:"projects/my-project/
|
|
9184
9225
|
# locations/global/logScopes/my-log-scope"
|
|
9185
9226
|
# @param [String] fields
|
|
9186
9227
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -9374,6 +9415,13 @@ module Google
|
|
|
9374
9415
|
# The standard list page size.
|
|
9375
9416
|
# @param [String] page_token
|
|
9376
9417
|
# The standard list page token.
|
|
9418
|
+
# @param [Boolean] return_partial_success
|
|
9419
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
9420
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
9421
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
9422
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
9423
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
9424
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
9377
9425
|
# @param [String] fields
|
|
9378
9426
|
# Selector specifying which fields to include in a partial response.
|
|
9379
9427
|
# @param [String] quota_user
|
|
@@ -9391,7 +9439,7 @@ module Google
|
|
|
9391
9439
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
9392
9440
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
9393
9441
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
9394
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
9442
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
9395
9443
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
9396
9444
|
command.response_representation = Google::Apis::LoggingV2::ListOperationsResponse::Representation
|
|
9397
9445
|
command.response_class = Google::Apis::LoggingV2::ListOperationsResponse
|
|
@@ -9399,6 +9447,7 @@ module Google
|
|
|
9399
9447
|
command.query['filter'] = filter unless filter.nil?
|
|
9400
9448
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
9401
9449
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
9450
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
9402
9451
|
command.query['fields'] = fields unless fields.nil?
|
|
9403
9452
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
9404
9453
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-logging_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.84.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-logging_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.84.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-logging_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|