google-apis-apigee_v1 0.100.0 → 0.101.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/apigee_v1/classes.rb +160 -7
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +73 -0
- data/lib/google/apis/apigee_v1/service.rb +750 -81
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74c27128fd1d4c14db8329d4c57557d65069aef7de67794deeff03fe19a46568
|
4
|
+
data.tar.gz: 1c0035fdcbce89c9bc8cd16982a4ae45c3d81f170f8ceb98c2d8ee988228938a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f05cf9f842e632c9520e337436cd4c1802509c4df4ee612753c9016cddbeead4a3ac0cefed7869653a6c6f9ec595f1178b1b3ea0093748ee224af15dea0f931
|
7
|
+
data.tar.gz: b0624a3f18df4294064ecb5906b1dc8884af1c33add24557ccc76d3d05f06f6c6c5b81d3ccbb3cd5d02011966ed30743305f59acee58cb3cd5c027b35613311a
|
data/CHANGELOG.md
CHANGED
@@ -1055,6 +1055,14 @@ module Google
|
|
1055
1055
|
# @return [Array<String>]
|
1056
1056
|
attr_accessor :scopes
|
1057
1057
|
|
1058
|
+
# Optional. The resource ID of the parent Space. If not set, the parent resource
|
1059
|
+
# will be the Organization. To learn how Spaces can be used to manage resources,
|
1060
|
+
# read the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-
|
1061
|
+
# platform/system-administration/spaces/apigee-spaces-overview).
|
1062
|
+
# Corresponds to the JSON property `space`
|
1063
|
+
# @return [String]
|
1064
|
+
attr_accessor :space
|
1065
|
+
|
1058
1066
|
def initialize(**args)
|
1059
1067
|
update!(**args)
|
1060
1068
|
end
|
@@ -1079,6 +1087,7 @@ module Google
|
|
1079
1087
|
@quota_interval = args[:quota_interval] if args.key?(:quota_interval)
|
1080
1088
|
@quota_time_unit = args[:quota_time_unit] if args.key?(:quota_time_unit)
|
1081
1089
|
@scopes = args[:scopes] if args.key?(:scopes)
|
1090
|
+
@space = args[:space] if args.key?(:space)
|
1082
1091
|
end
|
1083
1092
|
end
|
1084
1093
|
|
@@ -1149,6 +1158,15 @@ module Google
|
|
1149
1158
|
# @return [Array<String>]
|
1150
1159
|
attr_accessor :revision
|
1151
1160
|
|
1161
|
+
# Optional. The id of the space this proxy is associated with. Any IAM policies
|
1162
|
+
# applied to the space will control access to this proxy. To learn how Spaces
|
1163
|
+
# can be used to manage resources, read the [Apigee Spaces Overview](https://
|
1164
|
+
# cloud.google.com/apigee/docs/api-platform/system-administration/spaces/apigee-
|
1165
|
+
# spaces-overview).
|
1166
|
+
# Corresponds to the JSON property `space`
|
1167
|
+
# @return [String]
|
1168
|
+
attr_accessor :space
|
1169
|
+
|
1152
1170
|
def initialize(**args)
|
1153
1171
|
update!(**args)
|
1154
1172
|
end
|
@@ -1162,6 +1180,7 @@ module Google
|
|
1162
1180
|
@name = args[:name] if args.key?(:name)
|
1163
1181
|
@read_only = args[:read_only] if args.key?(:read_only)
|
1164
1182
|
@revision = args[:revision] if args.key?(:revision)
|
1183
|
+
@space = args[:space] if args.key?(:space)
|
1165
1184
|
end
|
1166
1185
|
end
|
1167
1186
|
|
@@ -3336,7 +3355,7 @@ module Google
|
|
3336
3355
|
end
|
3337
3356
|
end
|
3338
3357
|
|
3339
|
-
#
|
3358
|
+
# Deployment represents a deployment of an API proxy or shared flow.
|
3340
3359
|
class GoogleCloudApigeeV1Deployment
|
3341
3360
|
include Google::Apis::Core::Hashable
|
3342
3361
|
|
@@ -4334,12 +4353,11 @@ module Google
|
|
4334
4353
|
|
4335
4354
|
# Optional. URI of the forward proxy to be applied to the runtime instances in
|
4336
4355
|
# this environment. Must be in the format of `scheme`://`hostname`:`port`. Note
|
4337
|
-
# that the
|
4338
|
-
#
|
4339
|
-
#
|
4340
|
-
#
|
4341
|
-
#
|
4342
|
-
# NodeConfig details with the request.
|
4356
|
+
# that the only supported scheme is "http". The port must be supplied. To remove
|
4357
|
+
# a forward proxy setting, update the field to an empty value. Note: At this
|
4358
|
+
# time, PUT operations to add forwardProxyUri to an existing environment fail if
|
4359
|
+
# the environment has nodeConfig set up. To successfully add the forwardProxyUri
|
4360
|
+
# setting in this case, include the NodeConfig details with the request.
|
4343
4361
|
# Corresponds to the JSON property `forwardProxyUri`
|
4344
4362
|
# @return [String]
|
4345
4363
|
attr_accessor :forward_proxy_uri
|
@@ -6778,6 +6796,33 @@ module Google
|
|
6778
6796
|
end
|
6779
6797
|
end
|
6780
6798
|
|
6799
|
+
# A response to a ListSpaces request containing the list of organization spaces
|
6800
|
+
# and a page token for the next page.
|
6801
|
+
class GoogleCloudApigeeV1ListSpacesResponse
|
6802
|
+
include Google::Apis::Core::Hashable
|
6803
|
+
|
6804
|
+
# A token that can be sent as `page_token` to retrieve the next page. If this
|
6805
|
+
# field is omitted, there are no subsequent pages.
|
6806
|
+
# Corresponds to the JSON property `nextPageToken`
|
6807
|
+
# @return [String]
|
6808
|
+
attr_accessor :next_page_token
|
6809
|
+
|
6810
|
+
# List of Apigee organization spaces.
|
6811
|
+
# Corresponds to the JSON property `spaces`
|
6812
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space>]
|
6813
|
+
attr_accessor :spaces
|
6814
|
+
|
6815
|
+
def initialize(**args)
|
6816
|
+
update!(**args)
|
6817
|
+
end
|
6818
|
+
|
6819
|
+
# Update properties of this object
|
6820
|
+
def update!(**args)
|
6821
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
6822
|
+
@spaces = args[:spaces] if args.key?(:spaces)
|
6823
|
+
end
|
6824
|
+
end
|
6825
|
+
|
6781
6826
|
# Response for ListTraceConfigOverrides.
|
6782
6827
|
class GoogleCloudApigeeV1ListTraceConfigOverridesResponse
|
6783
6828
|
include Google::Apis::Core::Hashable
|
@@ -6913,6 +6958,66 @@ module Google
|
|
6913
6958
|
end
|
6914
6959
|
end
|
6915
6960
|
|
6961
|
+
# Moves API product to a different space.
|
6962
|
+
class GoogleCloudApigeeV1MoveApiProductRequest
|
6963
|
+
include Google::Apis::Core::Hashable
|
6964
|
+
|
6965
|
+
# Optional. Resource ID of the space to move the API product to. If unspecified,
|
6966
|
+
# the API product will be moved to the organization level.
|
6967
|
+
# Corresponds to the JSON property `space`
|
6968
|
+
# @return [String]
|
6969
|
+
attr_accessor :space
|
6970
|
+
|
6971
|
+
def initialize(**args)
|
6972
|
+
update!(**args)
|
6973
|
+
end
|
6974
|
+
|
6975
|
+
# Update properties of this object
|
6976
|
+
def update!(**args)
|
6977
|
+
@space = args[:space] if args.key?(:space)
|
6978
|
+
end
|
6979
|
+
end
|
6980
|
+
|
6981
|
+
# Moves an API Proxy to a different Space.
|
6982
|
+
class GoogleCloudApigeeV1MoveApiProxyRequest
|
6983
|
+
include Google::Apis::Core::Hashable
|
6984
|
+
|
6985
|
+
# Optional. Resource ID of the space to move the proxy to. If unspecified, the
|
6986
|
+
# proxy will be moved to the organization level.
|
6987
|
+
# Corresponds to the JSON property `space`
|
6988
|
+
# @return [String]
|
6989
|
+
attr_accessor :space
|
6990
|
+
|
6991
|
+
def initialize(**args)
|
6992
|
+
update!(**args)
|
6993
|
+
end
|
6994
|
+
|
6995
|
+
# Update properties of this object
|
6996
|
+
def update!(**args)
|
6997
|
+
@space = args[:space] if args.key?(:space)
|
6998
|
+
end
|
6999
|
+
end
|
7000
|
+
|
7001
|
+
# Moves a Shared Flow to a different space.
|
7002
|
+
class GoogleCloudApigeeV1MoveSharedFlowRequest
|
7003
|
+
include Google::Apis::Core::Hashable
|
7004
|
+
|
7005
|
+
# Optional. Resource ID of the space to move the shared flow to. If unspecified,
|
7006
|
+
# the shared flow will be moved to the organization level.
|
7007
|
+
# Corresponds to the JSON property `space`
|
7008
|
+
# @return [String]
|
7009
|
+
attr_accessor :space
|
7010
|
+
|
7011
|
+
def initialize(**args)
|
7012
|
+
update!(**args)
|
7013
|
+
end
|
7014
|
+
|
7015
|
+
# Update properties of this object
|
7016
|
+
def update!(**args)
|
7017
|
+
@space = args[:space] if args.key?(:space)
|
7018
|
+
end
|
7019
|
+
end
|
7020
|
+
|
6916
7021
|
# Apigee NAT(network address translation) address. A NAT address is a static
|
6917
7022
|
# external IP address used for Internet egress traffic.
|
6918
7023
|
class GoogleCloudApigeeV1NatAddress
|
@@ -10945,6 +11050,15 @@ module Google
|
|
10945
11050
|
# @return [Array<String>]
|
10946
11051
|
attr_accessor :revision
|
10947
11052
|
|
11053
|
+
# Optional. The ID of the space associated with this shared flow. Any IAM
|
11054
|
+
# policies applied to the space will control access to this shared flow. To
|
11055
|
+
# learn how Spaces can be used to manage resources, read the [Apigee Spaces
|
11056
|
+
# Overview](https://cloud.google.com/apigee/docs/api-platform/system-
|
11057
|
+
# administration/spaces/apigee-spaces-overview).
|
11058
|
+
# Corresponds to the JSON property `space`
|
11059
|
+
# @return [String]
|
11060
|
+
attr_accessor :space
|
11061
|
+
|
10948
11062
|
def initialize(**args)
|
10949
11063
|
update!(**args)
|
10950
11064
|
end
|
@@ -10955,6 +11069,7 @@ module Google
|
|
10955
11069
|
@meta_data = args[:meta_data] if args.key?(:meta_data)
|
10956
11070
|
@name = args[:name] if args.key?(:name)
|
10957
11071
|
@revision = args[:revision] if args.key?(:revision)
|
11072
|
+
@space = args[:space] if args.key?(:space)
|
10958
11073
|
end
|
10959
11074
|
end
|
10960
11075
|
|
@@ -11059,6 +11174,44 @@ module Google
|
|
11059
11174
|
end
|
11060
11175
|
end
|
11061
11176
|
|
11177
|
+
# Organization space resource.
|
11178
|
+
class GoogleCloudApigeeV1Space
|
11179
|
+
include Google::Apis::Core::Hashable
|
11180
|
+
|
11181
|
+
# Output only. Create timestamp of the space.
|
11182
|
+
# Corresponds to the JSON property `createTime`
|
11183
|
+
# @return [String]
|
11184
|
+
attr_accessor :create_time
|
11185
|
+
|
11186
|
+
# Optional. Display name of the space.
|
11187
|
+
# Corresponds to the JSON property `displayName`
|
11188
|
+
# @return [String]
|
11189
|
+
attr_accessor :display_name
|
11190
|
+
|
11191
|
+
# Output only. Identifier. Id of the space. This field is used as the resource
|
11192
|
+
# name, and must follow [AIP-122](https://google.aip.dev/122) guidelines.
|
11193
|
+
# Corresponds to the JSON property `name`
|
11194
|
+
# @return [String]
|
11195
|
+
attr_accessor :name
|
11196
|
+
|
11197
|
+
# Output only. Last modified timestamp of the space.
|
11198
|
+
# Corresponds to the JSON property `updateTime`
|
11199
|
+
# @return [String]
|
11200
|
+
attr_accessor :update_time
|
11201
|
+
|
11202
|
+
def initialize(**args)
|
11203
|
+
update!(**args)
|
11204
|
+
end
|
11205
|
+
|
11206
|
+
# Update properties of this object
|
11207
|
+
def update!(**args)
|
11208
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
11209
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
11210
|
+
@name = args[:name] if args.key?(:name)
|
11211
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
11212
|
+
end
|
11213
|
+
end
|
11214
|
+
|
11062
11215
|
# Encapsulates a `stats` response.
|
11063
11216
|
class GoogleCloudApigeeV1Stats
|
11064
11217
|
include Google::Apis::Core::Hashable
|
@@ -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.101.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 = "20250306"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1030,6 +1030,12 @@ module Google
|
|
1030
1030
|
include Google::Apis::Core::JsonObjectSupport
|
1031
1031
|
end
|
1032
1032
|
|
1033
|
+
class GoogleCloudApigeeV1ListSpacesResponse
|
1034
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1035
|
+
|
1036
|
+
include Google::Apis::Core::JsonObjectSupport
|
1037
|
+
end
|
1038
|
+
|
1033
1039
|
class GoogleCloudApigeeV1ListTraceConfigOverridesResponse
|
1034
1040
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1035
1041
|
|
@@ -1060,6 +1066,24 @@ module Google
|
|
1060
1066
|
include Google::Apis::Core::JsonObjectSupport
|
1061
1067
|
end
|
1062
1068
|
|
1069
|
+
class GoogleCloudApigeeV1MoveApiProductRequest
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1071
|
+
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class GoogleCloudApigeeV1MoveApiProxyRequest
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
|
+
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class GoogleCloudApigeeV1MoveSharedFlowRequest
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
|
+
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
1085
|
+
end
|
1086
|
+
|
1063
1087
|
class GoogleCloudApigeeV1NatAddress
|
1064
1088
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1065
1089
|
|
@@ -1648,6 +1672,12 @@ module Google
|
|
1648
1672
|
include Google::Apis::Core::JsonObjectSupport
|
1649
1673
|
end
|
1650
1674
|
|
1675
|
+
class GoogleCloudApigeeV1Space
|
1676
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1677
|
+
|
1678
|
+
include Google::Apis::Core::JsonObjectSupport
|
1679
|
+
end
|
1680
|
+
|
1651
1681
|
class GoogleCloudApigeeV1Stats
|
1652
1682
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1653
1683
|
|
@@ -2106,6 +2136,7 @@ module Google
|
|
2106
2136
|
property :quota_interval, as: 'quotaInterval'
|
2107
2137
|
property :quota_time_unit, as: 'quotaTimeUnit'
|
2108
2138
|
collection :scopes, as: 'scopes'
|
2139
|
+
property :space, as: 'space'
|
2109
2140
|
end
|
2110
2141
|
end
|
2111
2142
|
|
@@ -2128,6 +2159,7 @@ module Google
|
|
2128
2159
|
property :name, as: 'name'
|
2129
2160
|
property :read_only, as: 'readOnly'
|
2130
2161
|
collection :revision, as: 'revision'
|
2162
|
+
property :space, as: 'space'
|
2131
2163
|
end
|
2132
2164
|
end
|
2133
2165
|
|
@@ -3662,6 +3694,15 @@ module Google
|
|
3662
3694
|
end
|
3663
3695
|
end
|
3664
3696
|
|
3697
|
+
class GoogleCloudApigeeV1ListSpacesResponse
|
3698
|
+
# @private
|
3699
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3700
|
+
property :next_page_token, as: 'nextPageToken'
|
3701
|
+
collection :spaces, as: 'spaces', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space::Representation
|
3702
|
+
|
3703
|
+
end
|
3704
|
+
end
|
3705
|
+
|
3665
3706
|
class GoogleCloudApigeeV1ListTraceConfigOverridesResponse
|
3666
3707
|
# @private
|
3667
3708
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3703,6 +3744,27 @@ module Google
|
|
3703
3744
|
end
|
3704
3745
|
end
|
3705
3746
|
|
3747
|
+
class GoogleCloudApigeeV1MoveApiProductRequest
|
3748
|
+
# @private
|
3749
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3750
|
+
property :space, as: 'space'
|
3751
|
+
end
|
3752
|
+
end
|
3753
|
+
|
3754
|
+
class GoogleCloudApigeeV1MoveApiProxyRequest
|
3755
|
+
# @private
|
3756
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3757
|
+
property :space, as: 'space'
|
3758
|
+
end
|
3759
|
+
end
|
3760
|
+
|
3761
|
+
class GoogleCloudApigeeV1MoveSharedFlowRequest
|
3762
|
+
# @private
|
3763
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3764
|
+
property :space, as: 'space'
|
3765
|
+
end
|
3766
|
+
end
|
3767
|
+
|
3706
3768
|
class GoogleCloudApigeeV1NatAddress
|
3707
3769
|
# @private
|
3708
3770
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4758,6 +4820,7 @@ module Google
|
|
4758
4820
|
|
4759
4821
|
property :name, as: 'name'
|
4760
4822
|
collection :revision, as: 'revision'
|
4823
|
+
property :space, as: 'space'
|
4761
4824
|
end
|
4762
4825
|
end
|
4763
4826
|
|
@@ -4783,6 +4846,16 @@ module Google
|
|
4783
4846
|
end
|
4784
4847
|
end
|
4785
4848
|
|
4849
|
+
class GoogleCloudApigeeV1Space
|
4850
|
+
# @private
|
4851
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4852
|
+
property :create_time, as: 'createTime'
|
4853
|
+
property :display_name, as: 'displayName'
|
4854
|
+
property :name, as: 'name'
|
4855
|
+
property :update_time, as: 'updateTime'
|
4856
|
+
end
|
4857
|
+
end
|
4858
|
+
|
4786
4859
|
class GoogleCloudApigeeV1Stats
|
4787
4860
|
# @private
|
4788
4861
|
class Representation < Google::Apis::Core::JsonRepresentation
|