google-apis-apigee_v1 0.73.0 → 0.74.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: 593db79ef10131c31ff53cdae73b7fb7363231335a250041ee9dc13f5590a938
|
4
|
+
data.tar.gz: 209b44cc690ea3d9340effd6c8ab7cb71f36ebb901b2a858d0c23715b755396a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6393c0db87e4a3686a353c0fe69fa654ddeb07554b48dd284d531d21c33ab7c4b53785ed40c9e6bca29fcb4227e65a72af21395e5c0968059f9ea45f7e76f0f6
|
7
|
+
data.tar.gz: c69de9b8dce254ddec0cd25e3cc02ac3deaacda9fe29fd889ce5ef9d78c9b95c9ef43f9d45f6ee73216bd252a6312bf09f5718f35832373fbb40cf5d9b9b9b5d
|
data/CHANGELOG.md
CHANGED
@@ -819,6 +819,13 @@ module Google
|
|
819
819
|
# @return [Hash<String,String>]
|
820
820
|
attr_accessor :entity_meta_data_as_properties
|
821
821
|
|
822
|
+
# Output only. This field will be marked as true if revision contains any
|
823
|
+
# policies marked as extensible.
|
824
|
+
# Corresponds to the JSON property `hasExtensiblePolicy`
|
825
|
+
# @return [Boolean]
|
826
|
+
attr_accessor :has_extensible_policy
|
827
|
+
alias_method :has_extensible_policy?, :has_extensible_policy
|
828
|
+
|
822
829
|
# List of IntegrationEndpoints in the '/integration-endpoints' directory of the
|
823
830
|
# API proxy. This is a 'manifest' setting designed to provide visibility into
|
824
831
|
# the contents of the API proxy.
|
@@ -927,6 +934,7 @@ module Google
|
|
927
934
|
@description = args[:description] if args.key?(:description)
|
928
935
|
@display_name = args[:display_name] if args.key?(:display_name)
|
929
936
|
@entity_meta_data_as_properties = args[:entity_meta_data_as_properties] if args.key?(:entity_meta_data_as_properties)
|
937
|
+
@has_extensible_policy = args[:has_extensible_policy] if args.key?(:has_extensible_policy)
|
930
938
|
@integration_endpoints = args[:integration_endpoints] if args.key?(:integration_endpoints)
|
931
939
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
932
940
|
@name = args[:name] if args.key?(:name)
|
@@ -2748,6 +2756,14 @@ module Google
|
|
2748
2756
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus>]
|
2749
2757
|
attr_accessor :pods
|
2750
2758
|
|
2759
|
+
# Output only. The type of the deployment (standard or extensible) Deployed
|
2760
|
+
# proxy revision will be marked as extensible in following 2 cases. 1. The
|
2761
|
+
# deployed proxy revision uses extensible policies. 2. If a environment supports
|
2762
|
+
# flowhooks and flow hook is configured.
|
2763
|
+
# Corresponds to the JSON property `proxyDeploymentType`
|
2764
|
+
# @return [String]
|
2765
|
+
attr_accessor :proxy_deployment_type
|
2766
|
+
|
2751
2767
|
# API proxy revision.
|
2752
2768
|
# Corresponds to the JSON property `revision`
|
2753
2769
|
# @return [String]
|
@@ -2787,6 +2803,7 @@ module Google
|
|
2787
2803
|
@errors = args[:errors] if args.key?(:errors)
|
2788
2804
|
@instances = args[:instances] if args.key?(:instances)
|
2789
2805
|
@pods = args[:pods] if args.key?(:pods)
|
2806
|
+
@proxy_deployment_type = args[:proxy_deployment_type] if args.key?(:proxy_deployment_type)
|
2790
2807
|
@revision = args[:revision] if args.key?(:revision)
|
2791
2808
|
@route_conflicts = args[:route_conflicts] if args.key?(:route_conflicts)
|
2792
2809
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -3681,6 +3698,11 @@ module Google
|
|
3681
3698
|
# @return [String]
|
3682
3699
|
attr_accessor :state
|
3683
3700
|
|
3701
|
+
# Optional. EnvironmentType selected for the environment.
|
3702
|
+
# Corresponds to the JSON property `type`
|
3703
|
+
# @return [String]
|
3704
|
+
attr_accessor :type
|
3705
|
+
|
3684
3706
|
def initialize(**args)
|
3685
3707
|
update!(**args)
|
3686
3708
|
end
|
@@ -3699,6 +3721,7 @@ module Google
|
|
3699
3721
|
@node_config = args[:node_config] if args.key?(:node_config)
|
3700
3722
|
@properties = args[:properties] if args.key?(:properties)
|
3701
3723
|
@state = args[:state] if args.key?(:state)
|
3724
|
+
@type = args[:type] if args.key?(:type)
|
3702
3725
|
end
|
3703
3726
|
end
|
3704
3727
|
|
@@ -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.74.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230721"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1715,6 +1715,7 @@ module Google
|
|
1715
1715
|
property :description, as: 'description'
|
1716
1716
|
property :display_name, as: 'displayName'
|
1717
1717
|
hash :entity_meta_data_as_properties, as: 'entityMetaDataAsProperties'
|
1718
|
+
property :has_extensible_policy, as: 'hasExtensiblePolicy'
|
1718
1719
|
collection :integration_endpoints, as: 'integrationEndpoints'
|
1719
1720
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
1720
1721
|
property :name, as: 'name'
|
@@ -2185,6 +2186,7 @@ module Google
|
|
2185
2186
|
|
2186
2187
|
collection :pods, as: 'pods', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus::Representation
|
2187
2188
|
|
2189
|
+
property :proxy_deployment_type, as: 'proxyDeploymentType'
|
2188
2190
|
property :revision, as: 'revision'
|
2189
2191
|
collection :route_conflicts, as: 'routeConflicts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict::Representation
|
2190
2192
|
|
@@ -2413,6 +2415,7 @@ module Google
|
|
2413
2415
|
property :properties, as: 'properties', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties::Representation
|
2414
2416
|
|
2415
2417
|
property :state, as: 'state'
|
2418
|
+
property :type, as: 'type'
|
2416
2419
|
end
|
2417
2420
|
end
|
2418
2421
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.74.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.74.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|