google-apis-playdeveloperreporting_v1alpha1 0.36.0 → 0.37.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: c639a2711c0c47a3aa73fdbc078f509ea2734f8686566a00799036085b8392b6
|
|
4
|
+
data.tar.gz: c7233819fc76489a1d6b9496a790b54f6f7c86c38b537dc5f6ef65f2dc08dd49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 456f72f64a35ee4d8a51ed395df7a54dd0e3d0a8351ce4371f3245922ed76ab3962b843efe0137695a3d337847f417657e1f9fa361a8d086307be2b40bbd48dd
|
|
7
|
+
data.tar.gz: 17ea658e3a825bb720082af1915d37e5af41a6dcf9ea18cad49c75107d33b97aba4c6d986a88568130a230652b6a3602c0f03697e324f3a343dac1ca5621164e
|
data/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,34 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1alpha1
|
|
24
24
|
|
|
25
|
+
# Profile describing the data handling characteristics of an MCP tool. When used
|
|
26
|
+
# within the McpTool.meta field, this message should be packed into a google.
|
|
27
|
+
# protobuf.Any and associated with the key: "google.com/tool.profiles/
|
|
28
|
+
# data_handling"
|
|
29
|
+
class ApiservingMcpMcpToolDataHandlingProfile
|
|
30
|
+
include Google::Apis::Core::Hashable
|
|
31
|
+
|
|
32
|
+
# // The data access level of the tool's inputs.
|
|
33
|
+
# Corresponds to the JSON property `inputDataAccessLevel`
|
|
34
|
+
# @return [String]
|
|
35
|
+
attr_accessor :input_data_access_level
|
|
36
|
+
|
|
37
|
+
# The data access level of the tool's outputs.
|
|
38
|
+
# Corresponds to the JSON property `outputDataAccessLevel`
|
|
39
|
+
# @return [String]
|
|
40
|
+
attr_accessor :output_data_access_level
|
|
41
|
+
|
|
42
|
+
def initialize(**args)
|
|
43
|
+
update!(**args)
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Update properties of this object
|
|
47
|
+
def update!(**args)
|
|
48
|
+
@input_data_access_level = args[:input_data_access_level] if args.key?(:input_data_access_level)
|
|
49
|
+
@output_data_access_level = args[:output_data_access_level] if args.key?(:output_data_access_level)
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
25
53
|
# Represents an anomaly detected in a dataset. Our anomaly detection systems
|
|
26
54
|
# flag datapoints in a time series that fall outside of and expected range
|
|
27
55
|
# derived from historical data. Although those expected ranges have an upper and
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module PlaydeveloperreportingV1alpha1
|
|
18
18
|
# Version of the google-apis-playdeveloperreporting_v1alpha1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.37.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 = "20260222"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,12 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1alpha1
|
|
24
24
|
|
|
25
|
+
class ApiservingMcpMcpToolDataHandlingProfile
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
25
31
|
class GooglePlayDeveloperReportingV1alpha1Anomaly
|
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
33
|
|
|
@@ -322,6 +328,14 @@ module Google
|
|
|
322
328
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
329
|
end
|
|
324
330
|
|
|
331
|
+
class ApiservingMcpMcpToolDataHandlingProfile
|
|
332
|
+
# @private
|
|
333
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
334
|
+
property :input_data_access_level, as: 'inputDataAccessLevel'
|
|
335
|
+
property :output_data_access_level, as: 'outputDataAccessLevel'
|
|
336
|
+
end
|
|
337
|
+
end
|
|
338
|
+
|
|
325
339
|
class GooglePlayDeveloperReportingV1alpha1Anomaly
|
|
326
340
|
# @private
|
|
327
341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-playdeveloperreporting_v1alpha1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.37.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-playdeveloperreporting_v1alpha1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.37.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|