google-apis-logging_v2 0.76.0 → 0.77.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: a829269b36511b58e865b662848cab162d9b51a4386b6fe523cc715227725fd0
4
- data.tar.gz: fc112ea1f9569549ebb876bb8478ee0cef65fba2b61860a3b2b4e0a78424c86e
3
+ metadata.gz: 51c32631dd139850284a06feed027ec0ba75dc2423efdd772e39e186b163e312
4
+ data.tar.gz: b9cfb8811c3a43076b804788b355b8ef3ce596000fffb65aabff4005e7bd1ba7
5
5
  SHA512:
6
- metadata.gz: 0247a48e3a1eae9ce74ce7825f056ca2b21093c36d9cd1cf22f383678877ed703037f9dbbb69c0deac6b5c85f5819b5a5b2667d95784e0046ac17dc9e3fe4812
7
- data.tar.gz: b4b96050b7e3810158f33f6ef16a3813b7458aea422b6fa090f958248ccb13218319266c211dbcd2282edd588816e6bec19a983a88c84e57d26dfd3751c4ff83
6
+ metadata.gz: 7928f3219ea7c7c07a538a72b385ec4bca1d5c256644c72d38ecca31a54f5f1f2d92b621591e46b24b6de5d373c11ac6a5c6dbeea7320b0aa0377d239508d9fc
7
+ data.tar.gz: a2b4c5db1d89704e2a4e7ae2b470426ce191ceca3f239452167eca050fdb18c11d552eeb11d941b0a3d8ec2206b4683633d2f65d3de71fd8a9a24227bbfd4343
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-logging_v2
2
2
 
3
+ ### v0.77.0 (2025-03-16)
4
+
5
+ * Regenerated from discovery document revision 20250307
6
+
3
7
  ### v0.76.0 (2025-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20250207
@@ -22,6 +22,137 @@ module Google
22
22
  module Apis
23
23
  module LoggingV2
24
24
 
25
+ # Metadata associated with App Hub.
26
+ class AppHub
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Resource identifiers associated with an AppHub application AppHub resources
30
+ # are of the form projects//locations//applications/ projects//locations//
31
+ # applications//services/ projects//locations//applications//workloads/ These
32
+ # resources can be reconstructed from the components below.
33
+ # Corresponds to the JSON property `application`
34
+ # @return [Google::Apis::LoggingV2::AppHubApplication]
35
+ attr_accessor :application
36
+
37
+ # Metadata associated with an App Hub service.
38
+ # Corresponds to the JSON property `service`
39
+ # @return [Google::Apis::LoggingV2::AppHubService]
40
+ attr_accessor :service
41
+
42
+ # Metadata associated with an App Hub workload.
43
+ # Corresponds to the JSON property `workload`
44
+ # @return [Google::Apis::LoggingV2::AppHubWorkload]
45
+ attr_accessor :workload
46
+
47
+ def initialize(**args)
48
+ update!(**args)
49
+ end
50
+
51
+ # Update properties of this object
52
+ def update!(**args)
53
+ @application = args[:application] if args.key?(:application)
54
+ @service = args[:service] if args.key?(:service)
55
+ @workload = args[:workload] if args.key?(:workload)
56
+ end
57
+ end
58
+
59
+ # Resource identifiers associated with an AppHub application AppHub resources
60
+ # are of the form projects//locations//applications/ projects//locations//
61
+ # applications//services/ projects//locations//applications//workloads/ These
62
+ # resources can be reconstructed from the components below.
63
+ class AppHubApplication
64
+ include Google::Apis::Core::Hashable
65
+
66
+ # Resource container that owns the application. Example: "projects/
67
+ # management_project"
68
+ # Corresponds to the JSON property `container`
69
+ # @return [String]
70
+ attr_accessor :container
71
+
72
+ # Application Id. Example: "my-app"
73
+ # Corresponds to the JSON property `id`
74
+ # @return [String]
75
+ attr_accessor :id
76
+
77
+ # Location associated with the Application. Example: "us-east1"
78
+ # Corresponds to the JSON property `location`
79
+ # @return [String]
80
+ attr_accessor :location
81
+
82
+ def initialize(**args)
83
+ update!(**args)
84
+ end
85
+
86
+ # Update properties of this object
87
+ def update!(**args)
88
+ @container = args[:container] if args.key?(:container)
89
+ @id = args[:id] if args.key?(:id)
90
+ @location = args[:location] if args.key?(:location)
91
+ end
92
+ end
93
+
94
+ # Metadata associated with an App Hub service.
95
+ class AppHubService
96
+ include Google::Apis::Core::Hashable
97
+
98
+ # Service criticality type Example: "CRITICAL"
99
+ # Corresponds to the JSON property `criticalityType`
100
+ # @return [String]
101
+ attr_accessor :criticality_type
102
+
103
+ # Service environment type Example: "DEV"
104
+ # Corresponds to the JSON property `environmentType`
105
+ # @return [String]
106
+ attr_accessor :environment_type
107
+
108
+ # Service Id. Example: "my-service"
109
+ # Corresponds to the JSON property `id`
110
+ # @return [String]
111
+ attr_accessor :id
112
+
113
+ def initialize(**args)
114
+ update!(**args)
115
+ end
116
+
117
+ # Update properties of this object
118
+ def update!(**args)
119
+ @criticality_type = args[:criticality_type] if args.key?(:criticality_type)
120
+ @environment_type = args[:environment_type] if args.key?(:environment_type)
121
+ @id = args[:id] if args.key?(:id)
122
+ end
123
+ end
124
+
125
+ # Metadata associated with an App Hub workload.
126
+ class AppHubWorkload
127
+ include Google::Apis::Core::Hashable
128
+
129
+ # Workload criticality type Example: "CRITICAL"
130
+ # Corresponds to the JSON property `criticalityType`
131
+ # @return [String]
132
+ attr_accessor :criticality_type
133
+
134
+ # Workload environment type Example: "DEV"
135
+ # Corresponds to the JSON property `environmentType`
136
+ # @return [String]
137
+ attr_accessor :environment_type
138
+
139
+ # Workload Id. Example: "my-workload"
140
+ # Corresponds to the JSON property `id`
141
+ # @return [String]
142
+ attr_accessor :id
143
+
144
+ def initialize(**args)
145
+ update!(**args)
146
+ end
147
+
148
+ # Update properties of this object
149
+ def update!(**args)
150
+ @criticality_type = args[:criticality_type] if args.key?(:criticality_type)
151
+ @environment_type = args[:environment_type] if args.key?(:environment_type)
152
+ @id = args[:id] if args.key?(:id)
153
+ end
154
+ end
155
+
25
156
  # Describes a BigQuery dataset that was created by a link.
26
157
  class BigQueryDataset
27
158
  include Google::Apis::Core::Hashable
@@ -1795,6 +1926,11 @@ module Google
1795
1926
  class LogEntry
1796
1927
  include Google::Apis::Core::Hashable
1797
1928
 
1929
+ # Metadata associated with App Hub.
1930
+ # Corresponds to the JSON property `apphub`
1931
+ # @return [Google::Apis::LoggingV2::AppHub]
1932
+ attr_accessor :apphub
1933
+
1798
1934
  # Output only. The Error Reporting (https://cloud.google.com/error-reporting)
1799
1935
  # error groups associated with this LogEntry. Error Reporting sets the values
1800
1936
  # for this field during error group creation.For more information, see View
@@ -1990,6 +2126,7 @@ module Google
1990
2126
 
1991
2127
  # Update properties of this object
1992
2128
  def update!(**args)
2129
+ @apphub = args[:apphub] if args.key?(:apphub)
1993
2130
  @error_groups = args[:error_groups] if args.key?(:error_groups)
1994
2131
  @http_request = args[:http_request] if args.key?(:http_request)
1995
2132
  @insert_id = args[:insert_id] if args.key?(:insert_id)
@@ -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.76.0"
19
+ GEM_VERSION = "0.77.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250207"
25
+ REVISION = "20250307"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,30 @@ module Google
22
22
  module Apis
23
23
  module LoggingV2
24
24
 
25
+ class AppHub
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AppHubApplication
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class AppHubService
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class AppHubWorkload
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
25
49
  class BigQueryDataset
26
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
51
 
@@ -514,6 +538,45 @@ module Google
514
538
  include Google::Apis::Core::JsonObjectSupport
515
539
  end
516
540
 
541
+ class AppHub
542
+ # @private
543
+ class Representation < Google::Apis::Core::JsonRepresentation
544
+ property :application, as: 'application', class: Google::Apis::LoggingV2::AppHubApplication, decorator: Google::Apis::LoggingV2::AppHubApplication::Representation
545
+
546
+ property :service, as: 'service', class: Google::Apis::LoggingV2::AppHubService, decorator: Google::Apis::LoggingV2::AppHubService::Representation
547
+
548
+ property :workload, as: 'workload', class: Google::Apis::LoggingV2::AppHubWorkload, decorator: Google::Apis::LoggingV2::AppHubWorkload::Representation
549
+
550
+ end
551
+ end
552
+
553
+ class AppHubApplication
554
+ # @private
555
+ class Representation < Google::Apis::Core::JsonRepresentation
556
+ property :container, as: 'container'
557
+ property :id, as: 'id'
558
+ property :location, as: 'location'
559
+ end
560
+ end
561
+
562
+ class AppHubService
563
+ # @private
564
+ class Representation < Google::Apis::Core::JsonRepresentation
565
+ property :criticality_type, as: 'criticalityType'
566
+ property :environment_type, as: 'environmentType'
567
+ property :id, as: 'id'
568
+ end
569
+ end
570
+
571
+ class AppHubWorkload
572
+ # @private
573
+ class Representation < Google::Apis::Core::JsonRepresentation
574
+ property :criticality_type, as: 'criticalityType'
575
+ property :environment_type, as: 'environmentType'
576
+ property :id, as: 'id'
577
+ end
578
+ end
579
+
517
580
  class BigQueryDataset
518
581
  # @private
519
582
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -949,6 +1012,8 @@ module Google
949
1012
  class LogEntry
950
1013
  # @private
951
1014
  class Representation < Google::Apis::Core::JsonRepresentation
1015
+ property :apphub, as: 'apphub', class: Google::Apis::LoggingV2::AppHub, decorator: Google::Apis::LoggingV2::AppHub::Representation
1016
+
952
1017
  collection :error_groups, as: 'errorGroups', class: Google::Apis::LoggingV2::LogErrorGroup, decorator: Google::Apis::LoggingV2::LogErrorGroup::Representation
953
1018
 
954
1019
  property :http_request, as: 'httpRequest', class: Google::Apis::LoggingV2::HttpRequest, decorator: Google::Apis::LoggingV2::HttpRequest::Representation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-logging_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.76.0
4
+ version: 0.77.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-16 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.76.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.77.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: