google-apis-admin_reports_v1 0.35.0 → 0.36.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: d6b3aa2a72f3232a9b550796dc4107055ea55a9e27f0f204d8e0b318277170fa
4
- data.tar.gz: 2bbe0fcfe64b350d4cc0149a767f4e38e9de78a4a66fa6d436e80c344a0240cd
3
+ metadata.gz: d14a4c9190cd750841d3c771f94e548652ec155344198afd3875d7815ff14758
4
+ data.tar.gz: 1d2e498f8938fea838a316d3dec267fd7e6c20d16ce17fb581eaf4bc731ae0a7
5
5
  SHA512:
6
- metadata.gz: 0fca78079ad6ec2ddf97b36df03378ef7797c4cbcc09370e6cae8229607ca1333451040d689d4ca319ae88597e46cb0a1206d7391c021838a2fe5078bbd1f2f7
7
- data.tar.gz: fec701d335f5bf8ea0f2a6789223acf027af3847026950130462c516edb5f2c2cc32255d44bdf4263c93b6632dbf3e1fc47786dd8cd98af92aaed7c5be0e0f5a
6
+ metadata.gz: 8a8305f3a07fca8198f6c5ea032c4ca78ca485af164f6d3f323dc98f601e59292f2be8ffce97a96cab909310ef04b74d7b89fe58ce4674fded922365a2c95501
7
+ data.tar.gz: c0bdb7a6f80db3aa2aca47571f8ae9acbbd544293d39c39b5f2a8ac9a3ac872b25f124e6caafd1cc3b7dc7176dae0c5bf8390ee721d00d0c60dc896064a3740a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-admin_reports_v1
2
2
 
3
+ ### v0.36.0 (2026-07-26)
4
+
5
+ * Regenerated from discovery document revision 20260722
6
+
3
7
  ### v0.35.0 (2026-06-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20260504
@@ -94,6 +94,12 @@ module Google
94
94
  # @return [String]
95
95
  attr_accessor :ip_address
96
96
 
97
+ # Whether the activity was performed by an agent.
98
+ # Corresponds to the JSON property `isAgenticAction`
99
+ # @return [Boolean]
100
+ attr_accessor :is_agentic_action
101
+ alias_method :is_agentic_action?, :is_agentic_action
102
+
97
103
  # The type of API resource. For an activity report, the value is `audit#activity`
98
104
  # .
99
105
  # Corresponds to the JSON property `kind`
@@ -116,6 +122,11 @@ module Google
116
122
  # @return [Array<Google::Apis::AdminReportsV1::ResourceDetails>]
117
123
  attr_accessor :resource_details
118
124
 
125
+ # Device details of the user doing the action.
126
+ # Corresponds to the JSON property `userDeviceInfo`
127
+ # @return [Google::Apis::AdminReportsV1::ActivityUserDeviceInfo]
128
+ attr_accessor :user_device_info
129
+
119
130
  def initialize(**args)
120
131
  update!(**args)
121
132
  end
@@ -127,16 +138,23 @@ module Google
127
138
  @events = args[:events] if args.key?(:events)
128
139
  @id = args[:id] if args.key?(:id)
129
140
  @ip_address = args[:ip_address] if args.key?(:ip_address)
141
+ @is_agentic_action = args[:is_agentic_action] if args.key?(:is_agentic_action)
130
142
  @kind = args[:kind] if args.key?(:kind)
131
143
  @network_info = args[:network_info] if args.key?(:network_info)
132
144
  @owner_domain = args[:owner_domain] if args.key?(:owner_domain)
133
145
  @resource_details = args[:resource_details] if args.key?(:resource_details)
146
+ @user_device_info = args[:user_device_info] if args.key?(:user_device_info)
134
147
  end
135
148
 
136
149
  # User doing the action.
137
150
  class Actor
138
151
  include Google::Apis::Core::Hashable
139
152
 
153
+ # Details of the AI agent that was the actor for the activity.
154
+ # Corresponds to the JSON property `agentAttributionInfo`
155
+ # @return [Google::Apis::AdminReportsV1::AgentAttributionInfo]
156
+ attr_accessor :agent_attribution_info
157
+
140
158
  # Details of the application that was the actor for the activity.
141
159
  # Corresponds to the JSON property `applicationInfo`
142
160
  # @return [Google::Apis::AdminReportsV1::Activity::Actor::ApplicationInfo]
@@ -172,6 +190,7 @@ module Google
172
190
 
173
191
  # Update properties of this object
174
192
  def update!(**args)
193
+ @agent_attribution_info = args[:agent_attribution_info] if args.key?(:agent_attribution_info)
175
194
  @application_info = args[:application_info] if args.key?(:application_info)
176
195
  @caller_type = args[:caller_type] if args.key?(:caller_type)
177
196
  @email = args[:email] if args.key?(:email)
@@ -594,6 +613,93 @@ module Google
594
613
  end
595
614
  end
596
615
 
616
+ # Device details of the user doing the action.
617
+ class ActivityUserDeviceInfo
618
+ include Google::Apis::Core::Hashable
619
+
620
+ # Output only. Device ID of the user's device.
621
+ # Corresponds to the JSON property `deviceId`
622
+ # @return [String]
623
+ attr_accessor :device_id
624
+
625
+ # Output only. Device OS version of the user's device.
626
+ # Corresponds to the JSON property `deviceOsVersion`
627
+ # @return [String]
628
+ attr_accessor :device_os_version
629
+
630
+ # Output only. The type of the user's device.
631
+ # Corresponds to the JSON property `deviceType`
632
+ # @return [String]
633
+ attr_accessor :device_type
634
+
635
+ def initialize(**args)
636
+ update!(**args)
637
+ end
638
+
639
+ # Update properties of this object
640
+ def update!(**args)
641
+ @device_id = args[:device_id] if args.key?(:device_id)
642
+ @device_os_version = args[:device_os_version] if args.key?(:device_os_version)
643
+ @device_type = args[:device_type] if args.key?(:device_type)
644
+ end
645
+ end
646
+
647
+ # Details of the AI agent that was the actor for the activity.
648
+ class AgentAttributionInfo
649
+ include Google::Apis::Core::Hashable
650
+
651
+ # The ID of the agent.
652
+ # Corresponds to the JSON property `agentId`
653
+ # @return [String]
654
+ attr_accessor :agent_id
655
+
656
+ # The user visible name of the agent.
657
+ # Corresponds to the JSON property `agentName`
658
+ # @return [String]
659
+ attr_accessor :agent_name
660
+
661
+ # Details of the owner of the AI agent.
662
+ # Corresponds to the JSON property `agentOwner`
663
+ # @return [Google::Apis::AdminReportsV1::AgentAttributionInfoAgentOwner]
664
+ attr_accessor :agent_owner
665
+
666
+ # Type of the agent.
667
+ # Corresponds to the JSON property `agentType`
668
+ # @return [String]
669
+ attr_accessor :agent_type
670
+
671
+ def initialize(**args)
672
+ update!(**args)
673
+ end
674
+
675
+ # Update properties of this object
676
+ def update!(**args)
677
+ @agent_id = args[:agent_id] if args.key?(:agent_id)
678
+ @agent_name = args[:agent_name] if args.key?(:agent_name)
679
+ @agent_owner = args[:agent_owner] if args.key?(:agent_owner)
680
+ @agent_type = args[:agent_type] if args.key?(:agent_type)
681
+ end
682
+ end
683
+
684
+ # Details of the owner of the AI agent.
685
+ class AgentAttributionInfoAgentOwner
686
+ include Google::Apis::Core::Hashable
687
+
688
+ # The email of the agent owner.
689
+ # Corresponds to the JSON property `email`
690
+ # @return [String]
691
+ attr_accessor :email
692
+
693
+ def initialize(**args)
694
+ update!(**args)
695
+ end
696
+
697
+ # Update properties of this object
698
+ def update!(**args)
699
+ @email = args[:email] if args.key?(:email)
700
+ end
701
+ end
702
+
597
703
  # Details of the label applied on the resource.
598
704
  class AppliedLabel
599
705
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AdminReportsV1
18
18
  # Version of the google-apis-admin_reports_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260504"
25
+ REVISION = "20260722"
26
26
  end
27
27
  end
28
28
  end
@@ -106,6 +106,24 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
+ class ActivityUserDeviceInfo
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class AgentAttributionInfo
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class AgentAttributionInfoAgentOwner
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
109
127
  class AppliedLabel
110
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
129
 
@@ -266,17 +284,22 @@ module Google
266
284
  property :id, as: 'id', class: Google::Apis::AdminReportsV1::Activity::Id, decorator: Google::Apis::AdminReportsV1::Activity::Id::Representation
267
285
 
268
286
  property :ip_address, as: 'ipAddress'
287
+ property :is_agentic_action, as: 'isAgenticAction'
269
288
  property :kind, as: 'kind'
270
289
  property :network_info, as: 'networkInfo', class: Google::Apis::AdminReportsV1::ActivityNetworkInfo, decorator: Google::Apis::AdminReportsV1::ActivityNetworkInfo::Representation
271
290
 
272
291
  property :owner_domain, as: 'ownerDomain'
273
292
  collection :resource_details, as: 'resourceDetails', class: Google::Apis::AdminReportsV1::ResourceDetails, decorator: Google::Apis::AdminReportsV1::ResourceDetails::Representation
274
293
 
294
+ property :user_device_info, as: 'userDeviceInfo', class: Google::Apis::AdminReportsV1::ActivityUserDeviceInfo, decorator: Google::Apis::AdminReportsV1::ActivityUserDeviceInfo::Representation
295
+
275
296
  end
276
297
 
277
298
  class Actor
278
299
  # @private
279
300
  class Representation < Google::Apis::Core::JsonRepresentation
301
+ property :agent_attribution_info, as: 'agentAttributionInfo', class: Google::Apis::AdminReportsV1::AgentAttributionInfo, decorator: Google::Apis::AdminReportsV1::AgentAttributionInfo::Representation
302
+
280
303
  property :application_info, as: 'applicationInfo', class: Google::Apis::AdminReportsV1::Activity::Actor::ApplicationInfo, decorator: Google::Apis::AdminReportsV1::Activity::Actor::ApplicationInfo::Representation
281
304
 
282
305
  property :caller_type, as: 'callerType'
@@ -405,6 +428,33 @@ module Google
405
428
  end
406
429
  end
407
430
 
431
+ class ActivityUserDeviceInfo
432
+ # @private
433
+ class Representation < Google::Apis::Core::JsonRepresentation
434
+ property :device_id, as: 'deviceId'
435
+ property :device_os_version, as: 'deviceOsVersion'
436
+ property :device_type, as: 'deviceType'
437
+ end
438
+ end
439
+
440
+ class AgentAttributionInfo
441
+ # @private
442
+ class Representation < Google::Apis::Core::JsonRepresentation
443
+ property :agent_id, as: 'agentId'
444
+ property :agent_name, as: 'agentName'
445
+ property :agent_owner, as: 'agentOwner', class: Google::Apis::AdminReportsV1::AgentAttributionInfoAgentOwner, decorator: Google::Apis::AdminReportsV1::AgentAttributionInfoAgentOwner::Representation
446
+
447
+ property :agent_type, as: 'agentType'
448
+ end
449
+ end
450
+
451
+ class AgentAttributionInfoAgentOwner
452
+ # @private
453
+ class Representation < Google::Apis::Core::JsonRepresentation
454
+ property :email, as: 'email'
455
+ end
456
+ end
457
+
408
458
  class AppliedLabel
409
459
  # @private
410
460
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-admin_reports_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.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-admin_reports_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-admin_reports_v1/v0.35.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-admin_reports_v1/v0.36.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_reports_v1
62
62
  rdoc_options: []
63
63
  require_paths: