google-apis-file_v1 0.51.0 → 0.53.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: d225287a5b495684808c5ed363ad51f3c32d7bd5e907bb85bd9f19444fa6bec8
|
4
|
+
data.tar.gz: fd2242225b7d12bc30926e1dab2c0a5814f1a6d240ce41c2d3e9c92ed8891b35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f0f874eb6325e8a35d523e4ae8c4197fabbadd6f0af98c27cf8a1b8104508c48b92c0e9ce57ab8f7858c06e7fb941c807a79aa1119149f062f65d4929e36180
|
7
|
+
data.tar.gz: 52c296271afab19faf030794c4e3f3cf85706f5470f8a1165e94647aef8b88b9efb2c1295f3c27a04d1c5fd47f7a356b534d5f70d80a02bd8c9d306eeb01b74e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-file_v1
|
2
2
|
|
3
|
+
### v0.53.0 (2025-04-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250421
|
6
|
+
|
7
|
+
### v0.52.0 (2025-04-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250404
|
10
|
+
|
3
11
|
### v0.51.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250205
|
@@ -383,6 +383,17 @@ module Google
|
|
383
383
|
# @return [String]
|
384
384
|
attr_accessor :consumer_defined_name
|
385
385
|
|
386
|
+
# Optional. The consumer_project_number associated with this Apigee instance.
|
387
|
+
# This field is added specifically to support Apigee integration with SLM
|
388
|
+
# Rollout and UMM. It represents the numerical project ID of the GCP project
|
389
|
+
# that consumes this Apigee instance. It is used for SLM rollout notifications
|
390
|
+
# and UMM integration, enabling proper mapping to customer projects and log
|
391
|
+
# delivery for Apigee instances. This field complements consumer_project_id and
|
392
|
+
# may be used for specific Apigee scenarios where the numerical ID is required.
|
393
|
+
# Corresponds to the JSON property `consumerProjectNumber`
|
394
|
+
# @return [String]
|
395
|
+
attr_accessor :consumer_project_number
|
396
|
+
|
386
397
|
# Output only. Timestamp when the resource was created.
|
387
398
|
# Corresponds to the JSON property `createTime`
|
388
399
|
# @return [String]
|
@@ -499,6 +510,7 @@ module Google
|
|
499
510
|
# Update properties of this object
|
500
511
|
def update!(**args)
|
501
512
|
@consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
|
513
|
+
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
502
514
|
@create_time = args[:create_time] if args.key?(:create_time)
|
503
515
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
504
516
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FileV1
|
18
18
|
# Version of the google-apis-file_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250421"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -372,6 +372,7 @@ module Google
|
|
372
372
|
# @private
|
373
373
|
class Representation < Google::Apis::Core::JsonRepresentation
|
374
374
|
property :consumer_defined_name, as: 'consumerDefinedName'
|
375
|
+
property :consumer_project_number, as: 'consumerProjectNumber'
|
375
376
|
property :create_time, as: 'createTime'
|
376
377
|
property :instance_type, as: 'instanceType'
|
377
378
|
hash :labels, as: 'labels'
|
@@ -84,12 +84,13 @@ module Google
|
|
84
84
|
# Lists information about the supported locations for this service.
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
|
+
# @param [Array<String>, String] extra_location_types
|
88
|
+
# Optional. A list of extra location types that should be used as conditions for
|
89
|
+
# controlling the visibility of the locations.
|
87
90
|
# @param [String] filter
|
88
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
89
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
90
93
|
# in [AIP-160](https://google.aip.dev/160).
|
91
|
-
# @param [Boolean] include_unrevealed_locations
|
92
|
-
# If true, the returned list will include locations which are not yet revealed.
|
93
94
|
# @param [Fixnum] page_size
|
94
95
|
# The maximum number of results to return. If not set, the service selects a
|
95
96
|
# default.
|
@@ -113,13 +114,13 @@ module Google
|
|
113
114
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
114
115
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
115
116
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
116
|
-
def list_project_locations(name,
|
117
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
117
118
|
command = make_simple_command(:get, 'v1/{+name}/locations', options)
|
118
119
|
command.response_representation = Google::Apis::FileV1::ListLocationsResponse::Representation
|
119
120
|
command.response_class = Google::Apis::FileV1::ListLocationsResponse
|
120
121
|
command.params['name'] = name unless name.nil?
|
122
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
121
123
|
command.query['filter'] = filter unless filter.nil?
|
122
|
-
command.query['includeUnrevealedLocations'] = include_unrevealed_locations unless include_unrevealed_locations.nil?
|
123
124
|
command.query['pageSize'] = page_size unless page_size.nil?
|
124
125
|
command.query['pageToken'] = page_token unless page_token.nil?
|
125
126
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-file_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.53.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-file_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.53.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|