google-cloud-logging-v2 0.5.5 → 0.7.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/.yardopts +1 -1
- data/AUTHENTICATION.md +13 -31
- data/README.md +4 -4
- data/lib/google/cloud/logging/v2/config_service/client.rb +507 -104
- data/lib/google/cloud/logging/v2/config_service/operations.rb +767 -0
- data/lib/google/cloud/logging/v2/config_service/paths.rb +53 -0
- data/lib/google/cloud/logging/v2/config_service.rb +1 -0
- data/lib/google/cloud/logging/v2/logging_service/client.rb +45 -41
- data/lib/google/cloud/logging/v2/version.rb +1 -1
- data/lib/google/cloud/logging/v2.rb +4 -2
- data/lib/google/logging/v2/log_entry_pb.rb +7 -2
- data/lib/google/logging/v2/logging_config_pb.rb +52 -2
- data/lib/google/logging/v2/logging_config_services_pb.rb +78 -39
- data/lib/google/logging/v2/logging_metrics_pb.rb +2 -3
- data/lib/google/logging/v2/logging_pb.rb +1 -4
- data/lib/google/logging/v2/logging_services_pb.rb +4 -4
- data/proto_docs/google/api/resource.rb +10 -71
- data/proto_docs/google/logging/v2/log_entry.rb +42 -4
- data/proto_docs/google/logging/v2/logging.rb +50 -45
- data/proto_docs/google/logging/v2/logging_config.rb +456 -152
- data/proto_docs/google/logging/v2/logging_metrics.rb +9 -5
- data/proto_docs/google/longrunning/operations.rb +164 -0
- metadata +5 -3
@@ -485,6 +485,59 @@ module Google
|
|
485
485
|
"projects/#{project}"
|
486
486
|
end
|
487
487
|
|
488
|
+
##
|
489
|
+
# Create a fully-qualified Settings resource string.
|
490
|
+
#
|
491
|
+
# @overload settings_path(project:)
|
492
|
+
# The resource will be in the following format:
|
493
|
+
#
|
494
|
+
# `projects/{project}/settings`
|
495
|
+
#
|
496
|
+
# @param project [String]
|
497
|
+
#
|
498
|
+
# @overload settings_path(organization:)
|
499
|
+
# The resource will be in the following format:
|
500
|
+
#
|
501
|
+
# `organizations/{organization}/settings`
|
502
|
+
#
|
503
|
+
# @param organization [String]
|
504
|
+
#
|
505
|
+
# @overload settings_path(folder:)
|
506
|
+
# The resource will be in the following format:
|
507
|
+
#
|
508
|
+
# `folders/{folder}/settings`
|
509
|
+
#
|
510
|
+
# @param folder [String]
|
511
|
+
#
|
512
|
+
# @overload settings_path(billing_account:)
|
513
|
+
# The resource will be in the following format:
|
514
|
+
#
|
515
|
+
# `billingAccounts/{billing_account}/settings`
|
516
|
+
#
|
517
|
+
# @param billing_account [String]
|
518
|
+
#
|
519
|
+
# @return [::String]
|
520
|
+
def settings_path **args
|
521
|
+
resources = {
|
522
|
+
"project" => (proc do |project:|
|
523
|
+
"projects/#{project}/settings"
|
524
|
+
end),
|
525
|
+
"organization" => (proc do |organization:|
|
526
|
+
"organizations/#{organization}/settings"
|
527
|
+
end),
|
528
|
+
"folder" => (proc do |folder:|
|
529
|
+
"folders/#{folder}/settings"
|
530
|
+
end),
|
531
|
+
"billing_account" => (proc do |billing_account:|
|
532
|
+
"billingAccounts/#{billing_account}/settings"
|
533
|
+
end)
|
534
|
+
}
|
535
|
+
|
536
|
+
resource = resources[args.keys.sort.join(":")]
|
537
|
+
raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
|
538
|
+
resource.call(**args)
|
539
|
+
end
|
540
|
+
|
488
541
|
extend self
|
489
542
|
end
|
490
543
|
end
|
@@ -24,6 +24,7 @@ require "google/cloud/logging/v2/version"
|
|
24
24
|
|
25
25
|
require "google/cloud/logging/v2/config_service/credentials"
|
26
26
|
require "google/cloud/logging/v2/config_service/paths"
|
27
|
+
require "google/cloud/logging/v2/config_service/operations"
|
27
28
|
require "google/cloud/logging/v2/config_service/client"
|
28
29
|
|
29
30
|
module Google
|
@@ -175,10 +175,10 @@ module Google
|
|
175
175
|
# Service calls
|
176
176
|
|
177
177
|
##
|
178
|
-
# Deletes all the log entries in a log
|
179
|
-
# entries. Log entries written shortly before
|
180
|
-
# be deleted. Entries received after the
|
181
|
-
# before the operation will be deleted.
|
178
|
+
# Deletes all the log entries in a log for the _Default Log Bucket. The log
|
179
|
+
# reappears if it receives new entries. Log entries written shortly before
|
180
|
+
# the delete operation might not be deleted. Entries received after the
|
181
|
+
# delete operation with a timestamp before the operation will be deleted.
|
182
182
|
#
|
183
183
|
# @overload delete_log(request, options = nil)
|
184
184
|
# Pass arguments to `delete_log` via a request object, either of type
|
@@ -198,14 +198,15 @@ module Google
|
|
198
198
|
# @param log_name [::String]
|
199
199
|
# Required. The resource name of the log to delete:
|
200
200
|
#
|
201
|
-
#
|
202
|
-
#
|
203
|
-
#
|
204
|
-
#
|
201
|
+
# * `projects/[PROJECT_ID]/logs/[LOG_ID]`
|
202
|
+
# * `organizations/[ORGANIZATION_ID]/logs/[LOG_ID]`
|
203
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]`
|
204
|
+
# * `folders/[FOLDER_ID]/logs/[LOG_ID]`
|
205
205
|
#
|
206
206
|
# `[LOG_ID]` must be URL-encoded. For example,
|
207
207
|
# `"projects/my-project-id/logs/syslog"`,
|
208
|
-
# `"organizations/
|
208
|
+
# `"organizations/123/logs/cloudaudit.googleapis.com%2Factivity"`.
|
209
|
+
#
|
209
210
|
# For more information about log names, see
|
210
211
|
# {::Google::Cloud::Logging::V2::LogEntry LogEntry}.
|
211
212
|
#
|
@@ -301,15 +302,15 @@ module Google
|
|
301
302
|
# Optional. A default log resource name that is assigned to all log entries
|
302
303
|
# in `entries` that do not specify a value for `log_name`:
|
303
304
|
#
|
304
|
-
#
|
305
|
-
#
|
306
|
-
#
|
307
|
-
#
|
305
|
+
# * `projects/[PROJECT_ID]/logs/[LOG_ID]`
|
306
|
+
# * `organizations/[ORGANIZATION_ID]/logs/[LOG_ID]`
|
307
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]`
|
308
|
+
# * `folders/[FOLDER_ID]/logs/[LOG_ID]`
|
308
309
|
#
|
309
310
|
# `[LOG_ID]` must be URL-encoded. For example:
|
310
311
|
#
|
311
312
|
# "projects/my-project-id/logs/syslog"
|
312
|
-
# "organizations/
|
313
|
+
# "organizations/123/logs/cloudaudit.googleapis.com%2Factivity"
|
313
314
|
#
|
314
315
|
# The permission `logging.logEntries.create` is needed on each project,
|
315
316
|
# organization, billing account, or folder that is receiving new log
|
@@ -344,14 +345,14 @@ module Google
|
|
344
345
|
# the entries later in the list. See the `entries.list` method.
|
345
346
|
#
|
346
347
|
# Log entries with timestamps that are more than the
|
347
|
-
# [logs retention period](https://cloud.google.com/logging/
|
348
|
+
# [logs retention period](https://cloud.google.com/logging/quotas) in
|
348
349
|
# the past or more than 24 hours in the future will not be available when
|
349
350
|
# calling `entries.list`. However, those log entries can still be [exported
|
350
351
|
# with
|
351
352
|
# LogSinks](https://cloud.google.com/logging/docs/api/tasks/exporting-logs).
|
352
353
|
#
|
353
354
|
# To improve throughput and to avoid exceeding the
|
354
|
-
# [quota limit](https://cloud.google.com/logging/
|
355
|
+
# [quota limit](https://cloud.google.com/logging/quotas) for calls to
|
355
356
|
# `entries.write`, you should try to include several log entries in this
|
356
357
|
# list, rather than calling this method for each individual log entry.
|
357
358
|
# @param partial_success [::Boolean]
|
@@ -446,16 +447,17 @@ module Google
|
|
446
447
|
# Required. Names of one or more parent resources from which to
|
447
448
|
# retrieve log entries:
|
448
449
|
#
|
449
|
-
#
|
450
|
-
#
|
451
|
-
#
|
452
|
-
#
|
450
|
+
# * `projects/[PROJECT_ID]`
|
451
|
+
# * `organizations/[ORGANIZATION_ID]`
|
452
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]`
|
453
|
+
# * `folders/[FOLDER_ID]`
|
454
|
+
#
|
455
|
+
# May alternatively be one or more views:
|
453
456
|
#
|
454
|
-
#
|
455
|
-
#
|
456
|
-
#
|
457
|
-
#
|
458
|
-
# folders/[FOLDER_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]
|
457
|
+
# * `projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
458
|
+
# * `organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
459
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
460
|
+
# * `folders/[FOLDER_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
459
461
|
#
|
460
462
|
# Projects listed in the `project_ids` field are added to this list.
|
461
463
|
# @param filter [::String]
|
@@ -474,10 +476,10 @@ module Google
|
|
474
476
|
# in order of decreasing timestamps (newest first). Entries with equal
|
475
477
|
# timestamps are returned in order of their `insert_id` values.
|
476
478
|
# @param page_size [::Integer]
|
477
|
-
# Optional. The maximum number of results to return from this request.
|
478
|
-
#
|
479
|
-
#
|
480
|
-
#
|
479
|
+
# Optional. The maximum number of results to return from this request. Default is 50.
|
480
|
+
# If the value is negative or exceeds 1000, the request is rejected. The
|
481
|
+
# presence of `next_page_token` in the response indicates that more results
|
482
|
+
# might be available.
|
481
483
|
# @param page_token [::String]
|
482
484
|
# Optional. If present, then retrieve the next batch of results from the
|
483
485
|
# preceding call to this method. `page_token` must be the value of
|
@@ -660,10 +662,10 @@ module Google
|
|
660
662
|
# @param parent [::String]
|
661
663
|
# Required. The resource name that owns the logs:
|
662
664
|
#
|
663
|
-
#
|
664
|
-
#
|
665
|
-
#
|
666
|
-
#
|
665
|
+
# * `projects/[PROJECT_ID]`
|
666
|
+
# * `organizations/[ORGANIZATION_ID]`
|
667
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]`
|
668
|
+
# * `folders/[FOLDER_ID]`
|
667
669
|
# @param page_size [::Integer]
|
668
670
|
# Optional. The maximum number of results to return from this request.
|
669
671
|
# Non-positive values are ignored. The presence of `nextPageToken` in the
|
@@ -675,16 +677,18 @@ module Google
|
|
675
677
|
# parameters should be identical to those in the previous call.
|
676
678
|
# @param resource_names [::Array<::String>]
|
677
679
|
# Optional. The resource name that owns the logs:
|
678
|
-
#
|
679
|
-
#
|
680
|
-
#
|
681
|
-
#
|
680
|
+
#
|
681
|
+
# * `projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
682
|
+
# * `organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
683
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
684
|
+
# * `folders/[FOLDER_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]`
|
682
685
|
#
|
683
686
|
# To support legacy queries, it could also be:
|
684
|
-
#
|
685
|
-
#
|
686
|
-
#
|
687
|
-
#
|
687
|
+
#
|
688
|
+
# * `projects/[PROJECT_ID]`
|
689
|
+
# * `organizations/[ORGANIZATION_ID]`
|
690
|
+
# * `billingAccounts/[BILLING_ACCOUNT_ID]`
|
691
|
+
# * `folders/[FOLDER_ID]`
|
688
692
|
#
|
689
693
|
# @yield [response, operation] Access the result along with the RPC operation
|
690
694
|
# @yieldparam response [::Google::Cloud::Logging::V2::ListLogsResponse]
|
@@ -16,8 +16,8 @@
|
|
16
16
|
|
17
17
|
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
18
|
|
19
|
-
require "google/cloud/logging/v2/config_service"
|
20
19
|
require "google/cloud/logging/v2/logging_service"
|
20
|
+
require "google/cloud/logging/v2/config_service"
|
21
21
|
require "google/cloud/logging/v2/metrics_service"
|
22
22
|
require "google/cloud/logging/v2/version"
|
23
23
|
|
@@ -27,8 +27,10 @@ module Google
|
|
27
27
|
##
|
28
28
|
# To load this package, including all its services, and instantiate a client:
|
29
29
|
#
|
30
|
+
# @example
|
31
|
+
#
|
30
32
|
# require "google/cloud/logging/v2"
|
31
|
-
# client = ::Google::Cloud::Logging::V2::
|
33
|
+
# client = ::Google::Cloud::Logging::V2::LoggingService::Client.new
|
32
34
|
#
|
33
35
|
module V2
|
34
36
|
end
|
@@ -9,8 +9,6 @@ require 'google/logging/type/log_severity_pb'
|
|
9
9
|
require 'google/protobuf/any_pb'
|
10
10
|
require 'google/protobuf/struct_pb'
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
12
|
-
require 'google/rpc/status_pb'
|
13
|
-
require 'google/api/annotations_pb'
|
14
12
|
require 'google/protobuf'
|
15
13
|
|
16
14
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
@@ -29,6 +27,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
29
27
|
optional :span_id, :string, 27
|
30
28
|
optional :trace_sampled, :bool, 30
|
31
29
|
optional :source_location, :message, 23, "google.logging.v2.LogEntrySourceLocation"
|
30
|
+
optional :split, :message, 35, "google.logging.v2.LogSplit"
|
32
31
|
oneof :payload do
|
33
32
|
optional :proto_payload, :message, 2, "google.protobuf.Any"
|
34
33
|
optional :text_payload, :string, 3
|
@@ -46,6 +45,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
46
45
|
optional :line, :int64, 2
|
47
46
|
optional :function, :string, 3
|
48
47
|
end
|
48
|
+
add_message "google.logging.v2.LogSplit" do
|
49
|
+
optional :uid, :string, 1
|
50
|
+
optional :index, :int32, 2
|
51
|
+
optional :total_splits, :int32, 3
|
52
|
+
end
|
49
53
|
end
|
50
54
|
end
|
51
55
|
|
@@ -56,6 +60,7 @@ module Google
|
|
56
60
|
LogEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogEntry").msgclass
|
57
61
|
LogEntryOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogEntryOperation").msgclass
|
58
62
|
LogEntrySourceLocation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogEntrySourceLocation").msgclass
|
63
|
+
LogSplit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LogSplit").msgclass
|
59
64
|
end
|
60
65
|
end
|
61
66
|
end
|
@@ -1,14 +1,14 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging_config.proto
|
3
3
|
|
4
|
+
require 'google/api/annotations_pb'
|
4
5
|
require 'google/api/client_pb'
|
5
6
|
require 'google/api/field_behavior_pb'
|
6
7
|
require 'google/api/resource_pb'
|
7
|
-
require 'google/
|
8
|
+
require 'google/longrunning/operations_pb'
|
8
9
|
require 'google/protobuf/empty_pb'
|
9
10
|
require 'google/protobuf/field_mask_pb'
|
10
11
|
require 'google/protobuf/timestamp_pb'
|
11
|
-
require 'google/api/annotations_pb'
|
12
12
|
require 'google/protobuf'
|
13
13
|
|
14
14
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
@@ -21,6 +21,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
21
21
|
optional :retention_days, :int32, 11
|
22
22
|
optional :locked, :bool, 9
|
23
23
|
optional :lifecycle_state, :enum, 12, "google.logging.v2.LifecycleState"
|
24
|
+
repeated :restricted_fields, :string, 15
|
25
|
+
optional :cmek_settings, :message, 19, "google.logging.v2.CmekSettings"
|
24
26
|
end
|
25
27
|
add_message "google.logging.v2.LogView" do
|
26
28
|
optional :name, :string, 1
|
@@ -178,11 +180,52 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
178
180
|
optional :kms_key_name, :string, 2
|
179
181
|
optional :service_account_id, :string, 3
|
180
182
|
end
|
183
|
+
add_message "google.logging.v2.GetSettingsRequest" do
|
184
|
+
optional :name, :string, 1
|
185
|
+
end
|
186
|
+
add_message "google.logging.v2.UpdateSettingsRequest" do
|
187
|
+
optional :name, :string, 1
|
188
|
+
optional :settings, :message, 2, "google.logging.v2.Settings"
|
189
|
+
optional :update_mask, :message, 3, "google.protobuf.FieldMask"
|
190
|
+
end
|
191
|
+
add_message "google.logging.v2.Settings" do
|
192
|
+
optional :name, :string, 1
|
193
|
+
optional :kms_key_name, :string, 2
|
194
|
+
optional :kms_service_account_id, :string, 3
|
195
|
+
optional :storage_location, :string, 4
|
196
|
+
optional :disable_default_sink, :bool, 5
|
197
|
+
end
|
198
|
+
add_message "google.logging.v2.CopyLogEntriesRequest" do
|
199
|
+
optional :name, :string, 1
|
200
|
+
optional :filter, :string, 3
|
201
|
+
optional :destination, :string, 4
|
202
|
+
end
|
203
|
+
add_message "google.logging.v2.CopyLogEntriesMetadata" do
|
204
|
+
optional :start_time, :message, 1, "google.protobuf.Timestamp"
|
205
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
206
|
+
optional :state, :enum, 3, "google.logging.v2.OperationState"
|
207
|
+
optional :cancellation_requested, :bool, 4
|
208
|
+
optional :request, :message, 5, "google.logging.v2.CopyLogEntriesRequest"
|
209
|
+
optional :progress, :int32, 6
|
210
|
+
optional :writer_identity, :string, 7
|
211
|
+
end
|
212
|
+
add_message "google.logging.v2.CopyLogEntriesResponse" do
|
213
|
+
optional :log_entries_copied_count, :int64, 1
|
214
|
+
end
|
181
215
|
add_enum "google.logging.v2.LifecycleState" do
|
182
216
|
value :LIFECYCLE_STATE_UNSPECIFIED, 0
|
183
217
|
value :ACTIVE, 1
|
184
218
|
value :DELETE_REQUESTED, 2
|
185
219
|
end
|
220
|
+
add_enum "google.logging.v2.OperationState" do
|
221
|
+
value :OPERATION_STATE_UNSPECIFIED, 0
|
222
|
+
value :OPERATION_STATE_SCHEDULED, 1
|
223
|
+
value :OPERATION_STATE_WAITING_FOR_PERMISSIONS, 2
|
224
|
+
value :OPERATION_STATE_RUNNING, 3
|
225
|
+
value :OPERATION_STATE_SUCCEEDED, 4
|
226
|
+
value :OPERATION_STATE_FAILED, 5
|
227
|
+
value :OPERATION_STATE_CANCELLED, 6
|
228
|
+
end
|
186
229
|
end
|
187
230
|
end
|
188
231
|
|
@@ -224,7 +267,14 @@ module Google
|
|
224
267
|
GetCmekSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.GetCmekSettingsRequest").msgclass
|
225
268
|
UpdateCmekSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.UpdateCmekSettingsRequest").msgclass
|
226
269
|
CmekSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.CmekSettings").msgclass
|
270
|
+
GetSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.GetSettingsRequest").msgclass
|
271
|
+
UpdateSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.UpdateSettingsRequest").msgclass
|
272
|
+
Settings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.Settings").msgclass
|
273
|
+
CopyLogEntriesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.CopyLogEntriesRequest").msgclass
|
274
|
+
CopyLogEntriesMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.CopyLogEntriesMetadata").msgclass
|
275
|
+
CopyLogEntriesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.CopyLogEntriesResponse").msgclass
|
227
276
|
LifecycleState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.LifecycleState").enummodule
|
277
|
+
OperationState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.logging.v2.OperationState").enummodule
|
228
278
|
end
|
229
279
|
end
|
230
280
|
end
|
@@ -33,43 +33,50 @@ module Google
|
|
33
33
|
self.unmarshal_class_method = :decode
|
34
34
|
self.service_name = 'google.logging.v2.ConfigServiceV2'
|
35
35
|
|
36
|
-
# Lists buckets.
|
36
|
+
# Lists log buckets.
|
37
37
|
rpc :ListBuckets, ::Google::Cloud::Logging::V2::ListBucketsRequest, ::Google::Cloud::Logging::V2::ListBucketsResponse
|
38
|
-
# Gets a bucket.
|
38
|
+
# Gets a log bucket.
|
39
39
|
rpc :GetBucket, ::Google::Cloud::Logging::V2::GetBucketRequest, ::Google::Cloud::Logging::V2::LogBucket
|
40
|
-
# Creates a bucket that can be used to store log entries.
|
41
|
-
# been created, the
|
40
|
+
# Creates a log bucket that can be used to store log entries. After a bucket
|
41
|
+
# has been created, the bucket's location cannot be changed.
|
42
42
|
rpc :CreateBucket, ::Google::Cloud::Logging::V2::CreateBucketRequest, ::Google::Cloud::Logging::V2::LogBucket
|
43
|
-
# Updates a bucket. This method replaces the following fields in the
|
43
|
+
# Updates a log bucket. This method replaces the following fields in the
|
44
44
|
# existing bucket with values from the new bucket: `retention_period`
|
45
45
|
#
|
46
46
|
# If the retention period is decreased and the bucket is locked,
|
47
|
-
# FAILED_PRECONDITION will be returned.
|
47
|
+
# `FAILED_PRECONDITION` will be returned.
|
48
48
|
#
|
49
|
-
# If the bucket has a
|
50
|
-
# will be returned.
|
49
|
+
# If the bucket has a `lifecycle_state` of `DELETE_REQUESTED`, then
|
50
|
+
# `FAILED_PRECONDITION` will be returned.
|
51
51
|
#
|
52
|
-
#
|
52
|
+
# After a bucket has been created, the bucket's location cannot be changed.
|
53
53
|
rpc :UpdateBucket, ::Google::Cloud::Logging::V2::UpdateBucketRequest, ::Google::Cloud::Logging::V2::LogBucket
|
54
|
-
# Deletes a bucket.
|
55
|
-
#
|
56
|
-
#
|
57
|
-
#
|
54
|
+
# Deletes a log bucket.
|
55
|
+
#
|
56
|
+
# Changes the bucket's `lifecycle_state` to the `DELETE_REQUESTED` state.
|
57
|
+
# After 7 days, the bucket will be purged and all log entries in the bucket
|
58
|
+
# will be permanently deleted.
|
58
59
|
rpc :DeleteBucket, ::Google::Cloud::Logging::V2::DeleteBucketRequest, ::Google::Protobuf::Empty
|
59
|
-
# Undeletes a bucket. A bucket that has been deleted
|
60
|
-
# the grace period of 7 days.
|
60
|
+
# Undeletes a log bucket. A bucket that has been deleted can be undeleted
|
61
|
+
# within the grace period of 7 days.
|
61
62
|
rpc :UndeleteBucket, ::Google::Cloud::Logging::V2::UndeleteBucketRequest, ::Google::Protobuf::Empty
|
62
|
-
# Lists views on a bucket.
|
63
|
+
# Lists views on a log bucket.
|
63
64
|
rpc :ListViews, ::Google::Cloud::Logging::V2::ListViewsRequest, ::Google::Cloud::Logging::V2::ListViewsResponse
|
64
|
-
# Gets a view
|
65
|
+
# Gets a view on a log bucket..
|
65
66
|
rpc :GetView, ::Google::Cloud::Logging::V2::GetViewRequest, ::Google::Cloud::Logging::V2::LogView
|
66
|
-
# Creates a view over
|
67
|
-
#
|
67
|
+
# Creates a view over log entries in a log bucket. A bucket may contain a
|
68
|
+
# maximum of 30 views.
|
68
69
|
rpc :CreateView, ::Google::Cloud::Logging::V2::CreateViewRequest, ::Google::Cloud::Logging::V2::LogView
|
69
|
-
# Updates a view. This method replaces the following fields
|
70
|
-
# view with values from the new view: `filter`.
|
70
|
+
# Updates a view on a log bucket. This method replaces the following fields
|
71
|
+
# in the existing view with values from the new view: `filter`.
|
72
|
+
# If an `UNAVAILABLE` error is returned, this indicates that system is not in
|
73
|
+
# a state where it can update the view. If this occurs, please try again in a
|
74
|
+
# few minutes.
|
71
75
|
rpc :UpdateView, ::Google::Cloud::Logging::V2::UpdateViewRequest, ::Google::Cloud::Logging::V2::LogView
|
72
|
-
# Deletes a view
|
76
|
+
# Deletes a view on a log bucket.
|
77
|
+
# If an `UNAVAILABLE` error is returned, this indicates that system is not in
|
78
|
+
# a state where it can delete the view. If this occurs, please try again in a
|
79
|
+
# few minutes.
|
73
80
|
rpc :DeleteView, ::Google::Cloud::Logging::V2::DeleteViewRequest, ::Google::Protobuf::Empty
|
74
81
|
# Lists sinks.
|
75
82
|
rpc :ListSinks, ::Google::Cloud::Logging::V2::ListSinksRequest, ::Google::Cloud::Logging::V2::ListSinksResponse
|
@@ -89,33 +96,35 @@ module Google
|
|
89
96
|
# Deletes a sink. If the sink has a unique `writer_identity`, then that
|
90
97
|
# service account is also deleted.
|
91
98
|
rpc :DeleteSink, ::Google::Cloud::Logging::V2::DeleteSinkRequest, ::Google::Protobuf::Empty
|
92
|
-
# Lists all the exclusions in a parent resource.
|
99
|
+
# Lists all the exclusions on the _Default sink in a parent resource.
|
93
100
|
rpc :ListExclusions, ::Google::Cloud::Logging::V2::ListExclusionsRequest, ::Google::Cloud::Logging::V2::ListExclusionsResponse
|
94
|
-
# Gets the description of an exclusion.
|
101
|
+
# Gets the description of an exclusion in the _Default sink.
|
95
102
|
rpc :GetExclusion, ::Google::Cloud::Logging::V2::GetExclusionRequest, ::Google::Cloud::Logging::V2::LogExclusion
|
96
|
-
# Creates a new exclusion in a specified parent
|
97
|
-
# Only log entries belonging to that resource can be excluded.
|
98
|
-
#
|
103
|
+
# Creates a new exclusion in the _Default sink in a specified parent
|
104
|
+
# resource. Only log entries belonging to that resource can be excluded. You
|
105
|
+
# can have up to 10 exclusions in a resource.
|
99
106
|
rpc :CreateExclusion, ::Google::Cloud::Logging::V2::CreateExclusionRequest, ::Google::Cloud::Logging::V2::LogExclusion
|
100
|
-
# Changes one or more properties of an existing exclusion
|
107
|
+
# Changes one or more properties of an existing exclusion in the _Default
|
108
|
+
# sink.
|
101
109
|
rpc :UpdateExclusion, ::Google::Cloud::Logging::V2::UpdateExclusionRequest, ::Google::Cloud::Logging::V2::LogExclusion
|
102
|
-
# Deletes an exclusion.
|
110
|
+
# Deletes an exclusion in the _Default sink.
|
103
111
|
rpc :DeleteExclusion, ::Google::Cloud::Logging::V2::DeleteExclusionRequest, ::Google::Protobuf::Empty
|
104
|
-
# Gets the
|
112
|
+
# Gets the Logging CMEK settings for the given resource.
|
105
113
|
#
|
106
|
-
# Note: CMEK for the
|
107
|
-
#
|
108
|
-
# the
|
114
|
+
# Note: CMEK for the Log Router can be configured for Google Cloud projects,
|
115
|
+
# folders, organizations and billing accounts. Once configured for an
|
116
|
+
# organization, it applies to all projects and folders in the Google Cloud
|
117
|
+
# organization.
|
109
118
|
#
|
110
|
-
# See [Enabling CMEK for
|
119
|
+
# See [Enabling CMEK for Log
|
111
120
|
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption)
|
112
121
|
# for more information.
|
113
122
|
rpc :GetCmekSettings, ::Google::Cloud::Logging::V2::GetCmekSettingsRequest, ::Google::Cloud::Logging::V2::CmekSettings
|
114
|
-
# Updates the
|
123
|
+
# Updates the Log Router CMEK settings for the given resource.
|
115
124
|
#
|
116
|
-
# Note: CMEK for the
|
117
|
-
# organizations. Once configured, it applies to all projects and
|
118
|
-
# the
|
125
|
+
# Note: CMEK for the Log Router can currently only be configured for Google
|
126
|
+
# Cloud organizations. Once configured, it applies to all projects and
|
127
|
+
# folders in the Google Cloud organization.
|
119
128
|
#
|
120
129
|
# [UpdateCmekSettings][google.logging.v2.ConfigServiceV2.UpdateCmekSettings]
|
121
130
|
# will fail if 1) `kms_key_name` is invalid, or 2) the associated service
|
@@ -123,10 +132,40 @@ module Google
|
|
123
132
|
# `roles/cloudkms.cryptoKeyEncrypterDecrypter` role assigned for the key, or
|
124
133
|
# 3) access to the key is disabled.
|
125
134
|
#
|
126
|
-
# See [Enabling CMEK for
|
135
|
+
# See [Enabling CMEK for Log
|
127
136
|
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption)
|
128
137
|
# for more information.
|
129
138
|
rpc :UpdateCmekSettings, ::Google::Cloud::Logging::V2::UpdateCmekSettingsRequest, ::Google::Cloud::Logging::V2::CmekSettings
|
139
|
+
# Gets the Log Router settings for the given resource.
|
140
|
+
#
|
141
|
+
# Note: Settings for the Log Router can be get for Google Cloud projects,
|
142
|
+
# folders, organizations and billing accounts. Currently it can only be
|
143
|
+
# configured for organizations. Once configured for an organization, it
|
144
|
+
# applies to all projects and folders in the Google Cloud organization.
|
145
|
+
#
|
146
|
+
# See [Enabling CMEK for Log
|
147
|
+
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption)
|
148
|
+
# for more information.
|
149
|
+
rpc :GetSettings, ::Google::Cloud::Logging::V2::GetSettingsRequest, ::Google::Cloud::Logging::V2::Settings
|
150
|
+
# Updates the Log Router settings for the given resource.
|
151
|
+
#
|
152
|
+
# Note: Settings for the Log Router can currently only be configured for
|
153
|
+
# Google Cloud organizations. Once configured, it applies to all projects and
|
154
|
+
# folders in the Google Cloud organization.
|
155
|
+
#
|
156
|
+
# [UpdateSettings][google.logging.v2.ConfigServiceV2.UpdateSettings]
|
157
|
+
# will fail if 1) `kms_key_name` is invalid, or 2) the associated service
|
158
|
+
# account does not have the required
|
159
|
+
# `roles/cloudkms.cryptoKeyEncrypterDecrypter` role assigned for the key, or
|
160
|
+
# 3) access to the key is disabled. 4) `location_id` is not supported by
|
161
|
+
# Logging. 5) `location_id` violate OrgPolicy.
|
162
|
+
#
|
163
|
+
# See [Enabling CMEK for Log
|
164
|
+
# Router](https://cloud.google.com/logging/docs/routing/managed-encryption)
|
165
|
+
# for more information.
|
166
|
+
rpc :UpdateSettings, ::Google::Cloud::Logging::V2::UpdateSettingsRequest, ::Google::Cloud::Logging::V2::Settings
|
167
|
+
# Copies a set of log entries from a log bucket to a Cloud Storage bucket.
|
168
|
+
rpc :CopyLogEntries, ::Google::Cloud::Logging::V2::CopyLogEntriesRequest, ::Google::Longrunning::Operation
|
130
169
|
end
|
131
170
|
|
132
171
|
Stub = Service.rpc_stub_class
|
@@ -1,16 +1,14 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging_metrics.proto
|
3
3
|
|
4
|
+
require 'google/api/annotations_pb'
|
4
5
|
require 'google/api/client_pb'
|
5
6
|
require 'google/api/distribution_pb'
|
6
7
|
require 'google/api/field_behavior_pb'
|
7
8
|
require 'google/api/metric_pb'
|
8
9
|
require 'google/api/resource_pb'
|
9
|
-
require 'google/protobuf/duration_pb'
|
10
10
|
require 'google/protobuf/empty_pb'
|
11
|
-
require 'google/protobuf/field_mask_pb'
|
12
11
|
require 'google/protobuf/timestamp_pb'
|
13
|
-
require 'google/api/annotations_pb'
|
14
12
|
require 'google/protobuf'
|
15
13
|
|
16
14
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
@@ -19,6 +17,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
19
17
|
optional :name, :string, 1
|
20
18
|
optional :description, :string, 2
|
21
19
|
optional :filter, :string, 3
|
20
|
+
optional :disabled, :bool, 12
|
22
21
|
optional :metric_descriptor, :message, 5, "google.api.MetricDescriptor"
|
23
22
|
optional :value_extractor, :string, 6
|
24
23
|
map :label_extractors, :string, :string, 7
|
@@ -1,18 +1,15 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging.proto
|
3
3
|
|
4
|
+
require 'google/api/annotations_pb'
|
4
5
|
require 'google/api/client_pb'
|
5
6
|
require 'google/api/field_behavior_pb'
|
6
7
|
require 'google/api/monitored_resource_pb'
|
7
8
|
require 'google/api/resource_pb'
|
8
9
|
require 'google/logging/v2/log_entry_pb'
|
9
|
-
require 'google/logging/v2/logging_config_pb'
|
10
10
|
require 'google/protobuf/duration_pb'
|
11
11
|
require 'google/protobuf/empty_pb'
|
12
|
-
require 'google/protobuf/field_mask_pb'
|
13
|
-
require 'google/protobuf/timestamp_pb'
|
14
12
|
require 'google/rpc/status_pb'
|
15
|
-
require 'google/api/annotations_pb'
|
16
13
|
require 'google/protobuf'
|
17
14
|
|
18
15
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
@@ -33,10 +33,10 @@ module Google
|
|
33
33
|
self.unmarshal_class_method = :decode
|
34
34
|
self.service_name = 'google.logging.v2.LoggingServiceV2'
|
35
35
|
|
36
|
-
# Deletes all the log entries in a log
|
37
|
-
# entries. Log entries written shortly before
|
38
|
-
# be deleted. Entries received after the
|
39
|
-
# before the operation will be deleted.
|
36
|
+
# Deletes all the log entries in a log for the _Default Log Bucket. The log
|
37
|
+
# reappears if it receives new entries. Log entries written shortly before
|
38
|
+
# the delete operation might not be deleted. Entries received after the
|
39
|
+
# delete operation with a timestamp before the operation will be deleted.
|
40
40
|
rpc :DeleteLog, ::Google::Cloud::Logging::V2::DeleteLogRequest, ::Google::Protobuf::Empty
|
41
41
|
# Writes log entries to Logging. This API method is the
|
42
42
|
# only way to send log entries to Logging. This method
|