google-apis-apigee_v1 0.107.0 → 0.108.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: 845dc489b097072ea76ac073fb20a83d347ee3b139b58c44efb297ca9317590e
|
4
|
+
data.tar.gz: ab18fc20589390c07053d04ed76eb6a236b3c13e808bf7e6ff7fb575aab0fab2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3435cc9e8bd01bfdf16794927824956c4dddac5394aa3195da8df0760bf09e0494d58725f5c45ceeea3f4f4ab7281f6be8f979db2de69f330b7b911ed8ba9b5f
|
7
|
+
data.tar.gz: 0bb525908e40f9d94b1d230b2f20757b35f2dad7c84e75925f1fbe990e2ae80ab9218d4a7b5121c52c2a2f6c80ae891257bc17ee70b34238253e982e18e3c8ba
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.108.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250614
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.107.0 (2025-05-21)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250519
|
@@ -7674,6 +7674,14 @@ module Google
|
|
7674
7674
|
# @return [String]
|
7675
7675
|
attr_accessor :name
|
7676
7676
|
|
7677
|
+
# Optional. Flag that specifies if internet egress is restricted for VPC Service
|
7678
|
+
# Controls. Valid only when runtime_type is `CLOUD` and disable_vpc_peering is `
|
7679
|
+
# true`.
|
7680
|
+
# Corresponds to the JSON property `networkEgressRestricted`
|
7681
|
+
# @return [Boolean]
|
7682
|
+
attr_accessor :network_egress_restricted
|
7683
|
+
alias_method :network_egress_restricted?, :network_egress_restricted
|
7684
|
+
|
7677
7685
|
# Optional. Configuration for the Portals settings.
|
7678
7686
|
# Corresponds to the JSON property `portalDisabled`
|
7679
7687
|
# @return [Boolean]
|
@@ -7757,6 +7765,7 @@ module Google
|
|
7757
7765
|
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
7758
7766
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
7759
7767
|
@name = args[:name] if args.key?(:name)
|
7768
|
+
@network_egress_restricted = args[:network_egress_restricted] if args.key?(:network_egress_restricted)
|
7760
7769
|
@portal_disabled = args[:portal_disabled] if args.key?(:portal_disabled)
|
7761
7770
|
@project_id = args[:project_id] if args.key?(:project_id)
|
7762
7771
|
@properties = args[:properties] if args.key?(:properties)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ApigeeV1
|
18
18
|
# Version of the google-apis-apigee_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.108.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250614"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3964,6 +3964,7 @@ module Google
|
|
3964
3964
|
property :expires_at, :numeric_string => true, as: 'expiresAt'
|
3965
3965
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
3966
3966
|
property :name, as: 'name'
|
3967
|
+
property :network_egress_restricted, as: 'networkEgressRestricted'
|
3967
3968
|
property :portal_disabled, as: 'portalDisabled'
|
3968
3969
|
property :project_id, as: 'projectId'
|
3969
3970
|
property :properties, as: 'properties', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties::Representation
|
@@ -2966,7 +2966,7 @@ module Google
|
|
2966
2966
|
# Optional. The starting index record for listing the developers. "page_token"
|
2967
2967
|
# is supported from ver 1.10.0 and above.
|
2968
2968
|
# @param [Fixnum] rows
|
2969
|
-
# Optional. Maximum number of app IDs to return. Defaults to
|
2969
|
+
# Optional. Maximum number of app IDs to return. Defaults to 1000.
|
2970
2970
|
# @param [String] start_key
|
2971
2971
|
# Returns the list of apps starting from the specified app ID.
|
2972
2972
|
# @param [String] status
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-apigee_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.108.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-apigee_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.108.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|