google-apis-serviceusage_v1 0.74.0 → 0.75.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: 2b525a7677866111e05d6de82fa25b55fe49bf38a9cffe8490f3e63f63f65a17
|
|
4
|
+
data.tar.gz: 27e51bc262afd5998ffa727dd0781940e3e29754231cb7fe7440f59ff8c99bf9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01cd8829dfb30067503b7dc987bcd6d83a1a04e19f360375e48e0e1173dfb18283825793ba4bba5c691781def36f13aa09bb577d238312a9f54e890d9a3cb1ee
|
|
7
|
+
data.tar.gz: a38147df1bef654f1684253d3cd54506dc985b27e5b1df74bcd40cd844d9beae6a3cce52ca987957190dd648e94aba740a496cea634f811d56f7bc5bb5ac6e01
|
data/CHANGELOG.md
CHANGED
|
@@ -3976,94 +3976,6 @@ module Google
|
|
|
3976
3976
|
end
|
|
3977
3977
|
end
|
|
3978
3978
|
|
|
3979
|
-
# McpEnableRule contains MCP enablement related rules.
|
|
3980
|
-
class McpEnableRule
|
|
3981
|
-
include Google::Apis::Core::Hashable
|
|
3982
|
-
|
|
3983
|
-
# List of enabled MCP services.
|
|
3984
|
-
# Corresponds to the JSON property `mcpServices`
|
|
3985
|
-
# @return [Array<Google::Apis::ServiceusageV1::McpService>]
|
|
3986
|
-
attr_accessor :mcp_services
|
|
3987
|
-
|
|
3988
|
-
def initialize(**args)
|
|
3989
|
-
update!(**args)
|
|
3990
|
-
end
|
|
3991
|
-
|
|
3992
|
-
# Update properties of this object
|
|
3993
|
-
def update!(**args)
|
|
3994
|
-
@mcp_services = args[:mcp_services] if args.key?(:mcp_services)
|
|
3995
|
-
end
|
|
3996
|
-
end
|
|
3997
|
-
|
|
3998
|
-
# MCP Consumer Policy is a set of rules that define MCP related policy for a
|
|
3999
|
-
# cloud resource hierarchy.
|
|
4000
|
-
class McpPolicy
|
|
4001
|
-
include Google::Apis::Core::Hashable
|
|
4002
|
-
|
|
4003
|
-
# Output only. The time the policy was created. For singleton policies (such as
|
|
4004
|
-
# the `default` policy), this is the first touch of the policy.
|
|
4005
|
-
# Corresponds to the JSON property `createTime`
|
|
4006
|
-
# @return [String]
|
|
4007
|
-
attr_accessor :create_time
|
|
4008
|
-
|
|
4009
|
-
# An opaque tag indicating the current version of the policy, used for
|
|
4010
|
-
# concurrency control.
|
|
4011
|
-
# Corresponds to the JSON property `etag`
|
|
4012
|
-
# @return [String]
|
|
4013
|
-
attr_accessor :etag
|
|
4014
|
-
|
|
4015
|
-
# McpEnableRules contains MCP enablement related rules.
|
|
4016
|
-
# Corresponds to the JSON property `mcpEnableRules`
|
|
4017
|
-
# @return [Array<Google::Apis::ServiceusageV1::McpEnableRule>]
|
|
4018
|
-
attr_accessor :mcp_enable_rules
|
|
4019
|
-
|
|
4020
|
-
# Output only. The resource name of the policy. Only the `default` policy is
|
|
4021
|
-
# supported. We allow the following formats: `projects/`PROJECT_NUMBER`/
|
|
4022
|
-
# mcpPolicies/default`, `projects/`PROJECT_ID`/mcpPolicies/default`, `folders/`
|
|
4023
|
-
# FOLDER_ID`/mcpPolicies/default`, `organizations/`ORG_ID`/mcpPolicies/default`.
|
|
4024
|
-
# Corresponds to the JSON property `name`
|
|
4025
|
-
# @return [String]
|
|
4026
|
-
attr_accessor :name
|
|
4027
|
-
|
|
4028
|
-
# Output only. The time the policy was last updated.
|
|
4029
|
-
# Corresponds to the JSON property `updateTime`
|
|
4030
|
-
# @return [String]
|
|
4031
|
-
attr_accessor :update_time
|
|
4032
|
-
|
|
4033
|
-
def initialize(**args)
|
|
4034
|
-
update!(**args)
|
|
4035
|
-
end
|
|
4036
|
-
|
|
4037
|
-
# Update properties of this object
|
|
4038
|
-
def update!(**args)
|
|
4039
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
4040
|
-
@etag = args[:etag] if args.key?(:etag)
|
|
4041
|
-
@mcp_enable_rules = args[:mcp_enable_rules] if args.key?(:mcp_enable_rules)
|
|
4042
|
-
@name = args[:name] if args.key?(:name)
|
|
4043
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4044
|
-
end
|
|
4045
|
-
end
|
|
4046
|
-
|
|
4047
|
-
# McpService contains the service names that are enabled for MCP.
|
|
4048
|
-
class McpService
|
|
4049
|
-
include Google::Apis::Core::Hashable
|
|
4050
|
-
|
|
4051
|
-
# The names of the services that are enabled for MCP. Example: `services/library-
|
|
4052
|
-
# example.googleapis.com`
|
|
4053
|
-
# Corresponds to the JSON property `service`
|
|
4054
|
-
# @return [String]
|
|
4055
|
-
attr_accessor :service
|
|
4056
|
-
|
|
4057
|
-
def initialize(**args)
|
|
4058
|
-
update!(**args)
|
|
4059
|
-
end
|
|
4060
|
-
|
|
4061
|
-
# Update properties of this object
|
|
4062
|
-
def update!(**args)
|
|
4063
|
-
@service = args[:service] if args.key?(:service)
|
|
4064
|
-
end
|
|
4065
|
-
end
|
|
4066
|
-
|
|
4067
3979
|
# Method represents a method of an API interface. New usages of this message as
|
|
4068
3980
|
# an alternative to MethodDescriptorProto are strongly discouraged. This message
|
|
4069
3981
|
# does not reliability preserve all information necessary to model the schema
|
|
@@ -5608,19 +5520,6 @@ module Google
|
|
|
5608
5520
|
end
|
|
5609
5521
|
end
|
|
5610
5522
|
|
|
5611
|
-
# Metadata for the `UpdateMcpPolicy` method.
|
|
5612
|
-
class UpdateMcpPolicyMetadata
|
|
5613
|
-
include Google::Apis::Core::Hashable
|
|
5614
|
-
|
|
5615
|
-
def initialize(**args)
|
|
5616
|
-
update!(**args)
|
|
5617
|
-
end
|
|
5618
|
-
|
|
5619
|
-
# Update properties of this object
|
|
5620
|
-
def update!(**args)
|
|
5621
|
-
end
|
|
5622
|
-
end
|
|
5623
|
-
|
|
5624
5523
|
# Configuration controlling usage of a service.
|
|
5625
5524
|
class Usage
|
|
5626
5525
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServiceusageV1
|
|
18
18
|
# Version of the google-apis-serviceusage_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.75.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 = "20260317"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -622,24 +622,6 @@ module Google
|
|
|
622
622
|
include Google::Apis::Core::JsonObjectSupport
|
|
623
623
|
end
|
|
624
624
|
|
|
625
|
-
class McpEnableRule
|
|
626
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
|
-
|
|
628
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
629
|
-
end
|
|
630
|
-
|
|
631
|
-
class McpPolicy
|
|
632
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
633
|
-
|
|
634
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
635
|
-
end
|
|
636
|
-
|
|
637
|
-
class McpService
|
|
638
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
|
-
|
|
640
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
641
|
-
end
|
|
642
|
-
|
|
643
625
|
class MethodProp
|
|
644
626
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
645
627
|
|
|
@@ -862,12 +844,6 @@ module Google
|
|
|
862
844
|
include Google::Apis::Core::JsonObjectSupport
|
|
863
845
|
end
|
|
864
846
|
|
|
865
|
-
class UpdateMcpPolicyMetadata
|
|
866
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
867
|
-
|
|
868
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
869
|
-
end
|
|
870
|
-
|
|
871
847
|
class Usage
|
|
872
848
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
873
849
|
|
|
@@ -1885,33 +1861,6 @@ module Google
|
|
|
1885
1861
|
end
|
|
1886
1862
|
end
|
|
1887
1863
|
|
|
1888
|
-
class McpEnableRule
|
|
1889
|
-
# @private
|
|
1890
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1891
|
-
collection :mcp_services, as: 'mcpServices', class: Google::Apis::ServiceusageV1::McpService, decorator: Google::Apis::ServiceusageV1::McpService::Representation
|
|
1892
|
-
|
|
1893
|
-
end
|
|
1894
|
-
end
|
|
1895
|
-
|
|
1896
|
-
class McpPolicy
|
|
1897
|
-
# @private
|
|
1898
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1899
|
-
property :create_time, as: 'createTime'
|
|
1900
|
-
property :etag, as: 'etag'
|
|
1901
|
-
collection :mcp_enable_rules, as: 'mcpEnableRules', class: Google::Apis::ServiceusageV1::McpEnableRule, decorator: Google::Apis::ServiceusageV1::McpEnableRule::Representation
|
|
1902
|
-
|
|
1903
|
-
property :name, as: 'name'
|
|
1904
|
-
property :update_time, as: 'updateTime'
|
|
1905
|
-
end
|
|
1906
|
-
end
|
|
1907
|
-
|
|
1908
|
-
class McpService
|
|
1909
|
-
# @private
|
|
1910
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1911
|
-
property :service, as: 'service'
|
|
1912
|
-
end
|
|
1913
|
-
end
|
|
1914
|
-
|
|
1915
1864
|
class MethodProp
|
|
1916
1865
|
# @private
|
|
1917
1866
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2273,12 +2222,6 @@ module Google
|
|
|
2273
2222
|
end
|
|
2274
2223
|
end
|
|
2275
2224
|
|
|
2276
|
-
class UpdateMcpPolicyMetadata
|
|
2277
|
-
# @private
|
|
2278
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2279
|
-
end
|
|
2280
|
-
end
|
|
2281
|
-
|
|
2282
2225
|
class Usage
|
|
2283
2226
|
# @private
|
|
2284
2227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-serviceusage_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.75.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-serviceusage_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.75.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|