google-apis-playdeveloperreporting_v1beta1 0.41.0 → 0.42.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: 2e932c60a864deeb5ccbfd759deed16115e18fa409570965452120a817e0634f
|
|
4
|
+
data.tar.gz: 4f73a18b96903508e8d8dfe2d7b479ddbcc9d0f96e1e18dfa7c0085ffe8f7e43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57435396c852b6b262ad045b1a98b69459ca028164b9d586449c4015b02264170658faa0d172db883181e008ff0896ba5a1ad715ec878a7d89c3b842f7aef900
|
|
7
|
+
data.tar.gz: d2f3e874a602b843b7f941888d5e7315b2d04f8ab191987a7eec242f74eb518ff23e579353e556b7d722dfbf2fe3ae15654a11f8fe6bfb13e98770d776a77d73
|
data/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,67 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1beta1
|
|
24
24
|
|
|
25
|
+
# Profile describing the visibility restriction of an MCP tool. Key: "google.com/
|
|
26
|
+
# tool.profiles/visibility.restriction"
|
|
27
|
+
class ApiservingMcpMcpToolVisibility
|
|
28
|
+
include Google::Apis::Core::Hashable
|
|
29
|
+
|
|
30
|
+
# A list of field-level visibility restrictions.
|
|
31
|
+
# Corresponds to the JSON property `fieldVisibility`
|
|
32
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::ApiservingMcpMcpToolVisibilityFieldVisibility>]
|
|
33
|
+
attr_accessor :field_visibility
|
|
34
|
+
|
|
35
|
+
# The strategy used to enforce visibility restrictions. DO NOT USE. This field
|
|
36
|
+
# is not yet implemented.
|
|
37
|
+
# Corresponds to the JSON property `visibilityEnforcementStrategy`
|
|
38
|
+
# @return [String]
|
|
39
|
+
attr_accessor :visibility_enforcement_strategy
|
|
40
|
+
|
|
41
|
+
# The visibility restriction labels for the tool itself (e.g., "
|
|
42
|
+
# PRODUCER_DEFINED_PREVIEW"). Multiple labels can be provided as a comma-
|
|
43
|
+
# separated string.
|
|
44
|
+
# Corresponds to the JSON property `visibilityRestriction`
|
|
45
|
+
# @return [String]
|
|
46
|
+
attr_accessor :visibility_restriction
|
|
47
|
+
|
|
48
|
+
def initialize(**args)
|
|
49
|
+
update!(**args)
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Update properties of this object
|
|
53
|
+
def update!(**args)
|
|
54
|
+
@field_visibility = args[:field_visibility] if args.key?(:field_visibility)
|
|
55
|
+
@visibility_enforcement_strategy = args[:visibility_enforcement_strategy] if args.key?(:visibility_enforcement_strategy)
|
|
56
|
+
@visibility_restriction = args[:visibility_restriction] if args.key?(:visibility_restriction)
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Visibility rules for individual tool parameters (fields). This allows
|
|
61
|
+
# producers to hide specific fields in tools/list and tools/call.
|
|
62
|
+
class ApiservingMcpMcpToolVisibilityFieldVisibility
|
|
63
|
+
include Google::Apis::Core::Hashable
|
|
64
|
+
|
|
65
|
+
# The visibility restriction labels for this field (comma-separated).
|
|
66
|
+
# Corresponds to the JSON property `restriction`
|
|
67
|
+
# @return [String]
|
|
68
|
+
attr_accessor :restriction
|
|
69
|
+
|
|
70
|
+
# The name of the parameter in the input_schema or output_schema.
|
|
71
|
+
# Corresponds to the JSON property `selector`
|
|
72
|
+
# @return [String]
|
|
73
|
+
attr_accessor :selector
|
|
74
|
+
|
|
75
|
+
def initialize(**args)
|
|
76
|
+
update!(**args)
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# Update properties of this object
|
|
80
|
+
def update!(**args)
|
|
81
|
+
@restriction = args[:restriction] if args.key?(:restriction)
|
|
82
|
+
@selector = args[:selector] if args.key?(:selector)
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
25
86
|
# Represents an anomaly detected in a dataset. Our anomaly detection systems
|
|
26
87
|
# flag datapoints in a time series that fall outside of and expected range
|
|
27
88
|
# 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 PlaydeveloperreportingV1beta1
|
|
18
18
|
# Version of the google-apis-playdeveloperreporting_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.42.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 = "
|
|
25
|
+
REVISION = "20260709"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,18 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1beta1
|
|
24
24
|
|
|
25
|
+
class ApiservingMcpMcpToolVisibility
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class ApiservingMcpMcpToolVisibilityFieldVisibility
|
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
|
+
|
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
35
|
+
end
|
|
36
|
+
|
|
25
37
|
class GooglePlayDeveloperReportingV1beta1Anomaly
|
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
39
|
|
|
@@ -322,6 +334,24 @@ module Google
|
|
|
322
334
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
335
|
end
|
|
324
336
|
|
|
337
|
+
class ApiservingMcpMcpToolVisibility
|
|
338
|
+
# @private
|
|
339
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
340
|
+
collection :field_visibility, as: 'fieldVisibility', class: Google::Apis::PlaydeveloperreportingV1beta1::ApiservingMcpMcpToolVisibilityFieldVisibility, decorator: Google::Apis::PlaydeveloperreportingV1beta1::ApiservingMcpMcpToolVisibilityFieldVisibility::Representation
|
|
341
|
+
|
|
342
|
+
property :visibility_enforcement_strategy, as: 'visibilityEnforcementStrategy'
|
|
343
|
+
property :visibility_restriction, as: 'visibilityRestriction'
|
|
344
|
+
end
|
|
345
|
+
end
|
|
346
|
+
|
|
347
|
+
class ApiservingMcpMcpToolVisibilityFieldVisibility
|
|
348
|
+
# @private
|
|
349
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
350
|
+
property :restriction, as: 'restriction'
|
|
351
|
+
property :selector, as: 'selector'
|
|
352
|
+
end
|
|
353
|
+
end
|
|
354
|
+
|
|
325
355
|
class GooglePlayDeveloperReportingV1beta1Anomaly
|
|
326
356
|
# @private
|
|
327
357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-playdeveloperreporting_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.42.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.42.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|