google-apis-serviceusage_v1 0.74.0 → 0.76.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: 8ff654a276866b375d3ff790382cd8e37abf50782f7df9689966fb2e26560a91
|
|
4
|
+
data.tar.gz: 8020e5aca08b21f0106933394e2dd90c72c9fcde41b590c057b85c0f410824be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee543e1d3e7dd3d3d252d5d15aa76e1ecf95fcf4db1a927370487d6d2a0a600b74d7c4cf34df027220d08daebb728619907c60d8f661f82d41a07e142609742d
|
|
7
|
+
data.tar.gz: abaae8e3febcc897096a117766b37450af129702a9fc4b3a4487c17b5699e94ee5c42098981467ac08770a8621b25b0ed2d1cf211d645767a1752a1c74c13c2b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-serviceusage_v1
|
|
2
2
|
|
|
3
|
+
### v0.76.0 (2026-04-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260403
|
|
6
|
+
|
|
7
|
+
### v0.75.0 (2026-03-22)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260317
|
|
10
|
+
|
|
3
11
|
### v0.74.0 (2026-02-15)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260210
|
|
@@ -653,7 +653,9 @@ module Google
|
|
|
653
653
|
# @return [Hash<String,Google::Apis::ServiceusageV1::BackendRule>]
|
|
654
654
|
attr_accessor :overrides_by_request_protocol
|
|
655
655
|
|
|
656
|
-
#
|
|
656
|
+
# Path translation specifies how to combine the backend address with the request
|
|
657
|
+
# path in order to produce the appropriate forwarding URL for the request. See
|
|
658
|
+
# PathTranslation for more details.
|
|
657
659
|
# Corresponds to the JSON property `pathTranslation`
|
|
658
660
|
# @return [String]
|
|
659
661
|
attr_accessor :path_translation
|
|
@@ -1115,7 +1117,8 @@ module Google
|
|
|
1115
1117
|
attr_accessor :reference_docs_uri
|
|
1116
1118
|
|
|
1117
1119
|
# This message is used to configure the generation of a subset of the RPCs in a
|
|
1118
|
-
# service for client libraries.
|
|
1120
|
+
# service for client libraries. Note: This feature should not be used in most
|
|
1121
|
+
# cases.
|
|
1119
1122
|
# Corresponds to the JSON property `selectiveGapicGeneration`
|
|
1120
1123
|
# @return [Google::Apis::ServiceusageV1::SelectiveGapicGeneration]
|
|
1121
1124
|
attr_accessor :selective_gapic_generation
|
|
@@ -2384,13 +2387,7 @@ module Google
|
|
|
2384
2387
|
|
|
2385
2388
|
# Configuration for network endpoints. If this is empty, then an endpoint with
|
|
2386
2389
|
# the same name as the service is automatically generated to service all defined
|
|
2387
|
-
# APIs.
|
|
2388
|
-
# automatic generation of default endpoint variations (e.g., ``service`.clients6.
|
|
2389
|
-
# google.com`, `content-`service`.googleapis.com`, and mTLS variants like ``
|
|
2390
|
-
# service`.mtls.googleapis.com`). To retain these default variations, you are
|
|
2391
|
-
# required to explicitly include your main service endpoint (e.g., `myservice.
|
|
2392
|
-
# googleapis.com`) in this list alongside any other custom endpoints (like REP,
|
|
2393
|
-
# GFE, etc.).
|
|
2390
|
+
# APIs.
|
|
2394
2391
|
# Corresponds to the JSON property `endpoints`
|
|
2395
2392
|
# @return [Array<Google::Apis::ServiceusageV1::Endpoint>]
|
|
2396
2393
|
attr_accessor :endpoints
|
|
@@ -3976,94 +3973,6 @@ module Google
|
|
|
3976
3973
|
end
|
|
3977
3974
|
end
|
|
3978
3975
|
|
|
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
3976
|
# Method represents a method of an API interface. New usages of this message as
|
|
4068
3977
|
# an alternative to MethodDescriptorProto are strongly discouraged. This message
|
|
4069
3978
|
# does not reliability preserve all information necessary to model the schema
|
|
@@ -5274,7 +5183,8 @@ module Google
|
|
|
5274
5183
|
end
|
|
5275
5184
|
|
|
5276
5185
|
# This message is used to configure the generation of a subset of the RPCs in a
|
|
5277
|
-
# service for client libraries.
|
|
5186
|
+
# service for client libraries. Note: This feature should not be used in most
|
|
5187
|
+
# cases.
|
|
5278
5188
|
class SelectiveGapicGeneration
|
|
5279
5189
|
include Google::Apis::Core::Hashable
|
|
5280
5190
|
|
|
@@ -5608,19 +5518,6 @@ module Google
|
|
|
5608
5518
|
end
|
|
5609
5519
|
end
|
|
5610
5520
|
|
|
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
5521
|
# Configuration controlling usage of a service.
|
|
5625
5522
|
class Usage
|
|
5626
5523
|
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.76.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 = "20260403"
|
|
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.76.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.76.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:
|