google-apis-apigee_v1 0.70.0 → 0.71.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 +391 -165
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +137 -112
- data/lib/google/apis/apigee_v1/service.rb +641 -5
- 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: efe067255d932eeb0f9cb7eeea83854ba0c952bc00317a427f8ff7be2a033294
|
4
|
+
data.tar.gz: aae184cd4fa02ef094cb5e6a7f7f382c1ab0d7c5ca31b652cc66aff6e8d98980
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e689ddcd1f70f5e304287a8fd2da9563fbaeb8875490a42d699e3dec15d18bf9a5d70af8c3f5009fcbd7eed0e9460b33ad222e8b73f15e06bc38008d8aa1d6fc
|
7
|
+
data.tar.gz: 33fd069247ee36b94e524bddbe015e8200f203a7971fe1460b546ebe8a283fec781a2637db68195aa28e4ccac9614d59fede4c4b6412ea9617a4a4ae93eea15b
|
data/CHANGELOG.md
CHANGED
@@ -115,6 +115,33 @@ module Google
|
|
115
115
|
end
|
116
116
|
end
|
117
117
|
|
118
|
+
# APIProductAssociation has the API product and its administrative state
|
119
|
+
# association.
|
120
|
+
class GoogleCloudApigeeV1ApiProductAssociation
|
121
|
+
include Google::Apis::Core::Hashable
|
122
|
+
|
123
|
+
# API product to be associated with the credential.
|
124
|
+
# Corresponds to the JSON property `apiproduct`
|
125
|
+
# @return [String]
|
126
|
+
attr_accessor :apiproduct
|
127
|
+
|
128
|
+
# The API product credential associated status. Valid values are `approved` or `
|
129
|
+
# revoked`.
|
130
|
+
# Corresponds to the JSON property `status`
|
131
|
+
# @return [String]
|
132
|
+
attr_accessor :status
|
133
|
+
|
134
|
+
def initialize(**args)
|
135
|
+
update!(**args)
|
136
|
+
end
|
137
|
+
|
138
|
+
# Update properties of this object
|
139
|
+
def update!(**args)
|
140
|
+
@apiproduct = args[:apiproduct] if args.key?(:apiproduct)
|
141
|
+
@status = args[:status] if args.key?(:status)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
118
145
|
#
|
119
146
|
class GoogleCloudApigeeV1Access
|
120
147
|
include Google::Apis::Core::Hashable
|
@@ -995,6 +1022,11 @@ module Google
|
|
995
1022
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiProductRef>]
|
996
1023
|
attr_accessor :api_products
|
997
1024
|
|
1025
|
+
# Name of the AppGroup
|
1026
|
+
# Corresponds to the JSON property `appGroup`
|
1027
|
+
# @return [String]
|
1028
|
+
attr_accessor :app_group
|
1029
|
+
|
998
1030
|
# ID of the app.
|
999
1031
|
# Corresponds to the JSON property `appId`
|
1000
1032
|
# @return [String]
|
@@ -1027,6 +1059,11 @@ module Google
|
|
1027
1059
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Credential>]
|
1028
1060
|
attr_accessor :credentials
|
1029
1061
|
|
1062
|
+
# Email of the developer.
|
1063
|
+
# Corresponds to the JSON property `developerEmail`
|
1064
|
+
# @return [String]
|
1065
|
+
attr_accessor :developer_email
|
1066
|
+
|
1030
1067
|
# ID of the developer.
|
1031
1068
|
# Corresponds to the JSON property `developerId`
|
1032
1069
|
# @return [String]
|
@@ -1067,12 +1104,14 @@ module Google
|
|
1067
1104
|
# Update properties of this object
|
1068
1105
|
def update!(**args)
|
1069
1106
|
@api_products = args[:api_products] if args.key?(:api_products)
|
1107
|
+
@app_group = args[:app_group] if args.key?(:app_group)
|
1070
1108
|
@app_id = args[:app_id] if args.key?(:app_id)
|
1071
1109
|
@attributes = args[:attributes] if args.key?(:attributes)
|
1072
1110
|
@callback_url = args[:callback_url] if args.key?(:callback_url)
|
1073
1111
|
@company_name = args[:company_name] if args.key?(:company_name)
|
1074
1112
|
@created_at = args[:created_at] if args.key?(:created_at)
|
1075
1113
|
@credentials = args[:credentials] if args.key?(:credentials)
|
1114
|
+
@developer_email = args[:developer_email] if args.key?(:developer_email)
|
1076
1115
|
@developer_id = args[:developer_id] if args.key?(:developer_id)
|
1077
1116
|
@key_expires_in = args[:key_expires_in] if args.key?(:key_expires_in)
|
1078
1117
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
@@ -1082,6 +1121,251 @@ module Google
|
|
1082
1121
|
end
|
1083
1122
|
end
|
1084
1123
|
|
1124
|
+
# AppGroup contains the request/response fields representing the logical
|
1125
|
+
# grouping of apps. Note that appgroup_id, create_time and update_time cannot be
|
1126
|
+
# changed by the user, and gets updated by the system. The name and the
|
1127
|
+
# organization once provided cannot be edited subsequently.
|
1128
|
+
class GoogleCloudApigeeV1AppGroup
|
1129
|
+
include Google::Apis::Core::Hashable
|
1130
|
+
|
1131
|
+
# Output only. Internal identifier that cannot be edited
|
1132
|
+
# Corresponds to the JSON property `appGroupId`
|
1133
|
+
# @return [String]
|
1134
|
+
attr_accessor :app_group_id
|
1135
|
+
|
1136
|
+
# A list of attributes
|
1137
|
+
# Corresponds to the JSON property `attributes`
|
1138
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
1139
|
+
attr_accessor :attributes
|
1140
|
+
|
1141
|
+
# channel identifier identifies the owner maintaing this grouping.
|
1142
|
+
# Corresponds to the JSON property `channelId`
|
1143
|
+
# @return [String]
|
1144
|
+
attr_accessor :channel_id
|
1145
|
+
|
1146
|
+
# A reference to the associated storefront/marketplace.
|
1147
|
+
# Corresponds to the JSON property `channelUri`
|
1148
|
+
# @return [String]
|
1149
|
+
attr_accessor :channel_uri
|
1150
|
+
|
1151
|
+
# Output only. Created time as milliseconds since epoch.
|
1152
|
+
# Corresponds to the JSON property `createdAt`
|
1153
|
+
# @return [Fixnum]
|
1154
|
+
attr_accessor :created_at
|
1155
|
+
|
1156
|
+
# app group name displayed in the UI
|
1157
|
+
# Corresponds to the JSON property `displayName`
|
1158
|
+
# @return [String]
|
1159
|
+
attr_accessor :display_name
|
1160
|
+
|
1161
|
+
# Output only. Modified time as milliseconds since epoch.
|
1162
|
+
# Corresponds to the JSON property `lastModifiedAt`
|
1163
|
+
# @return [Fixnum]
|
1164
|
+
attr_accessor :last_modified_at
|
1165
|
+
|
1166
|
+
# Immutable. Name of the AppGroup. Characters you can use in the name are
|
1167
|
+
# restricted to: A-Z0-9._\-$ %.
|
1168
|
+
# Corresponds to the JSON property `name`
|
1169
|
+
# @return [String]
|
1170
|
+
attr_accessor :name
|
1171
|
+
|
1172
|
+
# Immutable. the org the app group is created
|
1173
|
+
# Corresponds to the JSON property `organization`
|
1174
|
+
# @return [String]
|
1175
|
+
attr_accessor :organization
|
1176
|
+
|
1177
|
+
# Valid values are `active` or `inactive`. Note that the status of the AppGroup
|
1178
|
+
# should be updated via UpdateAppGroupRequest by setting the action as `active`
|
1179
|
+
# or `inactive`.
|
1180
|
+
# Corresponds to the JSON property `status`
|
1181
|
+
# @return [String]
|
1182
|
+
attr_accessor :status
|
1183
|
+
|
1184
|
+
def initialize(**args)
|
1185
|
+
update!(**args)
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
# Update properties of this object
|
1189
|
+
def update!(**args)
|
1190
|
+
@app_group_id = args[:app_group_id] if args.key?(:app_group_id)
|
1191
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
1192
|
+
@channel_id = args[:channel_id] if args.key?(:channel_id)
|
1193
|
+
@channel_uri = args[:channel_uri] if args.key?(:channel_uri)
|
1194
|
+
@created_at = args[:created_at] if args.key?(:created_at)
|
1195
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1196
|
+
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
1197
|
+
@name = args[:name] if args.key?(:name)
|
1198
|
+
@organization = args[:organization] if args.key?(:organization)
|
1199
|
+
@status = args[:status] if args.key?(:status)
|
1200
|
+
end
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
# Response for [GetAppGroupApp].[AppGroupApps.GetAppGroupApp], [
|
1204
|
+
# CreateAppGroupAppRequest].[AppGroupApp.CreateAppGroupAppRequest] and [
|
1205
|
+
# DeleteAppGroupApp].[AppGroupApp.DeleteAppGroupApp]
|
1206
|
+
class GoogleCloudApigeeV1AppGroupApp
|
1207
|
+
include Google::Apis::Core::Hashable
|
1208
|
+
|
1209
|
+
# List of API products associated with the AppGroup app.
|
1210
|
+
# Corresponds to the JSON property `apiProducts`
|
1211
|
+
# @return [Array<String>]
|
1212
|
+
attr_accessor :api_products
|
1213
|
+
|
1214
|
+
# Immutable. Name of the parent AppGroup whose resource name format is of syntax
|
1215
|
+
# (organizations/*/appgroups/*).
|
1216
|
+
# Corresponds to the JSON property `appGroup`
|
1217
|
+
# @return [String]
|
1218
|
+
attr_accessor :app_group
|
1219
|
+
|
1220
|
+
# Immutable. ID of the AppGroup app.
|
1221
|
+
# Corresponds to the JSON property `appId`
|
1222
|
+
# @return [String]
|
1223
|
+
attr_accessor :app_id
|
1224
|
+
|
1225
|
+
# List of attributes for the AppGroup app.
|
1226
|
+
# Corresponds to the JSON property `attributes`
|
1227
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
1228
|
+
attr_accessor :attributes
|
1229
|
+
|
1230
|
+
# Callback URL used by OAuth 2.0 authorization servers to communicate
|
1231
|
+
# authorization codes back to AppGroup apps.
|
1232
|
+
# Corresponds to the JSON property `callbackUrl`
|
1233
|
+
# @return [String]
|
1234
|
+
attr_accessor :callback_url
|
1235
|
+
|
1236
|
+
# Output only. Time the AppGroup app was created in milliseconds since epoch.
|
1237
|
+
# Corresponds to the JSON property `createdAt`
|
1238
|
+
# @return [Fixnum]
|
1239
|
+
attr_accessor :created_at
|
1240
|
+
|
1241
|
+
# Output only. Set of credentials for the AppGroup app consisting of the
|
1242
|
+
# consumer key/secret pairs associated with the API products.
|
1243
|
+
# Corresponds to the JSON property `credentials`
|
1244
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Credential>]
|
1245
|
+
attr_accessor :credentials
|
1246
|
+
|
1247
|
+
# Immutable. Expiration time, in seconds, for the consumer key that is generated
|
1248
|
+
# for the AppGroup app. If not set or left to the default value of `-1`, the API
|
1249
|
+
# key never expires. The expiration time can't be updated after it is set.
|
1250
|
+
# Corresponds to the JSON property `keyExpiresIn`
|
1251
|
+
# @return [Fixnum]
|
1252
|
+
attr_accessor :key_expires_in
|
1253
|
+
|
1254
|
+
# Output only. Time the AppGroup app was modified in milliseconds since epoch.
|
1255
|
+
# Corresponds to the JSON property `lastModifiedAt`
|
1256
|
+
# @return [Fixnum]
|
1257
|
+
attr_accessor :last_modified_at
|
1258
|
+
|
1259
|
+
# Immutable. Name of the AppGroup app whose resource name format is of syntax (
|
1260
|
+
# organizations/*/appgroups/*/apps/*).
|
1261
|
+
# Corresponds to the JSON property `name`
|
1262
|
+
# @return [String]
|
1263
|
+
attr_accessor :name
|
1264
|
+
|
1265
|
+
# Scopes to apply to the AppGroup app. The specified scopes must already exist
|
1266
|
+
# for the API product that you associate with the AppGroup app.
|
1267
|
+
# Corresponds to the JSON property `scopes`
|
1268
|
+
# @return [Array<String>]
|
1269
|
+
attr_accessor :scopes
|
1270
|
+
|
1271
|
+
# Status of the App. Valid values include `approved` or `revoked`.
|
1272
|
+
# Corresponds to the JSON property `status`
|
1273
|
+
# @return [String]
|
1274
|
+
attr_accessor :status
|
1275
|
+
|
1276
|
+
def initialize(**args)
|
1277
|
+
update!(**args)
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
# Update properties of this object
|
1281
|
+
def update!(**args)
|
1282
|
+
@api_products = args[:api_products] if args.key?(:api_products)
|
1283
|
+
@app_group = args[:app_group] if args.key?(:app_group)
|
1284
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
1285
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
1286
|
+
@callback_url = args[:callback_url] if args.key?(:callback_url)
|
1287
|
+
@created_at = args[:created_at] if args.key?(:created_at)
|
1288
|
+
@credentials = args[:credentials] if args.key?(:credentials)
|
1289
|
+
@key_expires_in = args[:key_expires_in] if args.key?(:key_expires_in)
|
1290
|
+
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
1291
|
+
@name = args[:name] if args.key?(:name)
|
1292
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
1293
|
+
@status = args[:status] if args.key?(:status)
|
1294
|
+
end
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
# AppGroupAppKey contains all the information associated with the credentials.
|
1298
|
+
class GoogleCloudApigeeV1AppGroupAppKey
|
1299
|
+
include Google::Apis::Core::Hashable
|
1300
|
+
|
1301
|
+
# Output only. List of API products and its status for which the credential can
|
1302
|
+
# be used. **Note**: Use UpdateAppGroupAppKeyApiProductRequest API to make the
|
1303
|
+
# association after the consumer key and secret are created.
|
1304
|
+
# Corresponds to the JSON property `apiProducts`
|
1305
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiProductAssociation>]
|
1306
|
+
attr_accessor :api_products
|
1307
|
+
|
1308
|
+
# List of attributes associated with the credential.
|
1309
|
+
# Corresponds to the JSON property `attributes`
|
1310
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
1311
|
+
attr_accessor :attributes
|
1312
|
+
|
1313
|
+
# Immutable. Consumer key.
|
1314
|
+
# Corresponds to the JSON property `consumerKey`
|
1315
|
+
# @return [String]
|
1316
|
+
attr_accessor :consumer_key
|
1317
|
+
|
1318
|
+
# Secret key.
|
1319
|
+
# Corresponds to the JSON property `consumerSecret`
|
1320
|
+
# @return [String]
|
1321
|
+
attr_accessor :consumer_secret
|
1322
|
+
|
1323
|
+
# Output only. Time the AppGroup app expires in milliseconds since epoch.
|
1324
|
+
# Corresponds to the JSON property `expiresAt`
|
1325
|
+
# @return [Fixnum]
|
1326
|
+
attr_accessor :expires_at
|
1327
|
+
|
1328
|
+
# Immutable. Expiration time, in seconds, for the consumer key. If not set or
|
1329
|
+
# left to the default value of `-1`, the API key never expires. The expiration
|
1330
|
+
# time can't be updated after it is set.
|
1331
|
+
# Corresponds to the JSON property `expiresInSeconds`
|
1332
|
+
# @return [Fixnum]
|
1333
|
+
attr_accessor :expires_in_seconds
|
1334
|
+
|
1335
|
+
# Output only. Time the AppGroup app was created in milliseconds since epoch.
|
1336
|
+
# Corresponds to the JSON property `issuedAt`
|
1337
|
+
# @return [Fixnum]
|
1338
|
+
attr_accessor :issued_at
|
1339
|
+
|
1340
|
+
# Scopes to apply to the app. The specified scope names must already be defined
|
1341
|
+
# for the API product that you associate with the app.
|
1342
|
+
# Corresponds to the JSON property `scopes`
|
1343
|
+
# @return [Array<String>]
|
1344
|
+
attr_accessor :scopes
|
1345
|
+
|
1346
|
+
# Status of the credential. Valid values include `approved` or `revoked`.
|
1347
|
+
# Corresponds to the JSON property `status`
|
1348
|
+
# @return [String]
|
1349
|
+
attr_accessor :status
|
1350
|
+
|
1351
|
+
def initialize(**args)
|
1352
|
+
update!(**args)
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
# Update properties of this object
|
1356
|
+
def update!(**args)
|
1357
|
+
@api_products = args[:api_products] if args.key?(:api_products)
|
1358
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
1359
|
+
@consumer_key = args[:consumer_key] if args.key?(:consumer_key)
|
1360
|
+
@consumer_secret = args[:consumer_secret] if args.key?(:consumer_secret)
|
1361
|
+
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
1362
|
+
@expires_in_seconds = args[:expires_in_seconds] if args.key?(:expires_in_seconds)
|
1363
|
+
@issued_at = args[:issued_at] if args.key?(:issued_at)
|
1364
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
1365
|
+
@status = args[:status] if args.key?(:status)
|
1366
|
+
end
|
1367
|
+
end
|
1368
|
+
|
1085
1369
|
# Archive Deployment information.
|
1086
1370
|
class GoogleCloudApigeeV1ArchiveDeployment
|
1087
1371
|
include Google::Apis::Core::Hashable
|
@@ -4709,6 +4993,65 @@ module Google
|
|
4709
4993
|
end
|
4710
4994
|
end
|
4711
4995
|
|
4996
|
+
# Response for ListAppGroupApps
|
4997
|
+
class GoogleCloudApigeeV1ListAppGroupAppsResponse
|
4998
|
+
include Google::Apis::Core::Hashable
|
4999
|
+
|
5000
|
+
# List of AppGroup apps and their credentials.
|
5001
|
+
# Corresponds to the JSON property `appGroupApps`
|
5002
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupApp>]
|
5003
|
+
attr_accessor :app_group_apps
|
5004
|
+
|
5005
|
+
# Token that can be sent as `next_page_token` to retrieve the next page. If this
|
5006
|
+
# field is omitted, there are no subsequent pages.
|
5007
|
+
# Corresponds to the JSON property `nextPageToken`
|
5008
|
+
# @return [String]
|
5009
|
+
attr_accessor :next_page_token
|
5010
|
+
|
5011
|
+
def initialize(**args)
|
5012
|
+
update!(**args)
|
5013
|
+
end
|
5014
|
+
|
5015
|
+
# Update properties of this object
|
5016
|
+
def update!(**args)
|
5017
|
+
@app_group_apps = args[:app_group_apps] if args.key?(:app_group_apps)
|
5018
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5019
|
+
end
|
5020
|
+
end
|
5021
|
+
|
5022
|
+
# ListAppGroupsResponse contains the 0 or more AppGroups, along with the
|
5023
|
+
# optional page token and the total count of apps.
|
5024
|
+
class GoogleCloudApigeeV1ListAppGroupsResponse
|
5025
|
+
include Google::Apis::Core::Hashable
|
5026
|
+
|
5027
|
+
# List of AppGroups.
|
5028
|
+
# Corresponds to the JSON property `appGroups`
|
5029
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroup>]
|
5030
|
+
attr_accessor :app_groups
|
5031
|
+
|
5032
|
+
# Token that can be sent as `next_page_token` to retrieve the next page. If this
|
5033
|
+
# field is omitted, there are no subsequent pages.
|
5034
|
+
# Corresponds to the JSON property `nextPageToken`
|
5035
|
+
# @return [String]
|
5036
|
+
attr_accessor :next_page_token
|
5037
|
+
|
5038
|
+
# Total count of AppGroups.
|
5039
|
+
# Corresponds to the JSON property `totalSize`
|
5040
|
+
# @return [Fixnum]
|
5041
|
+
attr_accessor :total_size
|
5042
|
+
|
5043
|
+
def initialize(**args)
|
5044
|
+
update!(**args)
|
5045
|
+
end
|
5046
|
+
|
5047
|
+
# Update properties of this object
|
5048
|
+
def update!(**args)
|
5049
|
+
@app_groups = args[:app_groups] if args.key?(:app_groups)
|
5050
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5051
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
5052
|
+
end
|
5053
|
+
end
|
5054
|
+
|
4712
5055
|
#
|
4713
5056
|
class GoogleCloudApigeeV1ListAppsResponse
|
4714
5057
|
include Google::Apis::Core::Hashable
|
@@ -4718,6 +5061,17 @@ module Google
|
|
4718
5061
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1App>]
|
4719
5062
|
attr_accessor :app
|
4720
5063
|
|
5064
|
+
# Token that can be sent as `next_page_token` to retrieve the next page. If this
|
5065
|
+
# field is omitted, there are no subsequent pages.
|
5066
|
+
# Corresponds to the JSON property `nextPageToken`
|
5067
|
+
# @return [String]
|
5068
|
+
attr_accessor :next_page_token
|
5069
|
+
|
5070
|
+
# Total count of Apps.
|
5071
|
+
# Corresponds to the JSON property `totalSize`
|
5072
|
+
# @return [Fixnum]
|
5073
|
+
attr_accessor :total_size
|
5074
|
+
|
4721
5075
|
def initialize(**args)
|
4722
5076
|
update!(**args)
|
4723
5077
|
end
|
@@ -4725,6 +5079,8 @@ module Google
|
|
4725
5079
|
# Update properties of this object
|
4726
5080
|
def update!(**args)
|
4727
5081
|
@app = args[:app] if args.key?(:app)
|
5082
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5083
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
4728
5084
|
end
|
4729
5085
|
end
|
4730
5086
|
|
@@ -6191,164 +6547,6 @@ module Google
|
|
6191
6547
|
end
|
6192
6548
|
end
|
6193
6549
|
|
6194
|
-
# ProfileConfig defines a set of categories and policies which will be used to
|
6195
|
-
# compute security score.
|
6196
|
-
class GoogleCloudApigeeV1ProfileConfig
|
6197
|
-
include Google::Apis::Core::Hashable
|
6198
|
-
|
6199
|
-
# List of categories of profile config.
|
6200
|
-
# Corresponds to the JSON property `categories`
|
6201
|
-
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigCategory>]
|
6202
|
-
attr_accessor :categories
|
6203
|
-
|
6204
|
-
def initialize(**args)
|
6205
|
-
update!(**args)
|
6206
|
-
end
|
6207
|
-
|
6208
|
-
# Update properties of this object
|
6209
|
-
def update!(**args)
|
6210
|
-
@categories = args[:categories] if args.key?(:categories)
|
6211
|
-
end
|
6212
|
-
end
|
6213
|
-
|
6214
|
-
# Checks for abuse, which includes any requests sent to the API for purposes
|
6215
|
-
# other than what it is intended for, such as high volumes of requests, data
|
6216
|
-
# scraping, and abuse related to authorization.
|
6217
|
-
class GoogleCloudApigeeV1ProfileConfigAbuse
|
6218
|
-
include Google::Apis::Core::Hashable
|
6219
|
-
|
6220
|
-
def initialize(**args)
|
6221
|
-
update!(**args)
|
6222
|
-
end
|
6223
|
-
|
6224
|
-
# Update properties of this object
|
6225
|
-
def update!(**args)
|
6226
|
-
end
|
6227
|
-
end
|
6228
|
-
|
6229
|
-
# By default, following policies will be included: - JWS - JWT - OAuth -
|
6230
|
-
# BasicAuth - APIKey
|
6231
|
-
class GoogleCloudApigeeV1ProfileConfigAuthorization
|
6232
|
-
include Google::Apis::Core::Hashable
|
6233
|
-
|
6234
|
-
def initialize(**args)
|
6235
|
-
update!(**args)
|
6236
|
-
end
|
6237
|
-
|
6238
|
-
# Update properties of this object
|
6239
|
-
def update!(**args)
|
6240
|
-
end
|
6241
|
-
end
|
6242
|
-
|
6243
|
-
# Checks to see if you have CORS policy in place.
|
6244
|
-
class GoogleCloudApigeeV1ProfileConfigCors
|
6245
|
-
include Google::Apis::Core::Hashable
|
6246
|
-
|
6247
|
-
def initialize(**args)
|
6248
|
-
update!(**args)
|
6249
|
-
end
|
6250
|
-
|
6251
|
-
# Update properties of this object
|
6252
|
-
def update!(**args)
|
6253
|
-
end
|
6254
|
-
end
|
6255
|
-
|
6256
|
-
# Advanced API Security provides security profile that scores the following
|
6257
|
-
# categories.
|
6258
|
-
class GoogleCloudApigeeV1ProfileConfigCategory
|
6259
|
-
include Google::Apis::Core::Hashable
|
6260
|
-
|
6261
|
-
# Checks for abuse, which includes any requests sent to the API for purposes
|
6262
|
-
# other than what it is intended for, such as high volumes of requests, data
|
6263
|
-
# scraping, and abuse related to authorization.
|
6264
|
-
# Corresponds to the JSON property `abuse`
|
6265
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigAbuse]
|
6266
|
-
attr_accessor :abuse
|
6267
|
-
|
6268
|
-
# By default, following policies will be included: - JWS - JWT - OAuth -
|
6269
|
-
# BasicAuth - APIKey
|
6270
|
-
# Corresponds to the JSON property `authorization`
|
6271
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigAuthorization]
|
6272
|
-
attr_accessor :authorization
|
6273
|
-
|
6274
|
-
# Checks to see if you have CORS policy in place.
|
6275
|
-
# Corresponds to the JSON property `cors`
|
6276
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigCors]
|
6277
|
-
attr_accessor :cors
|
6278
|
-
|
6279
|
-
# By default, following policies will be included: - OASValidation -
|
6280
|
-
# SOAPMessageValidation
|
6281
|
-
# Corresponds to the JSON property `mediation`
|
6282
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigMediation]
|
6283
|
-
attr_accessor :mediation
|
6284
|
-
|
6285
|
-
# Checks to see if you have configured mTLS for the target server.
|
6286
|
-
# Corresponds to the JSON property `mtls`
|
6287
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigMtls]
|
6288
|
-
attr_accessor :mtls
|
6289
|
-
|
6290
|
-
# By default, following policies will be included: - XMLThreatProtection -
|
6291
|
-
# JSONThreatProtection
|
6292
|
-
# Corresponds to the JSON property `threat`
|
6293
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigThreat]
|
6294
|
-
attr_accessor :threat
|
6295
|
-
|
6296
|
-
def initialize(**args)
|
6297
|
-
update!(**args)
|
6298
|
-
end
|
6299
|
-
|
6300
|
-
# Update properties of this object
|
6301
|
-
def update!(**args)
|
6302
|
-
@abuse = args[:abuse] if args.key?(:abuse)
|
6303
|
-
@authorization = args[:authorization] if args.key?(:authorization)
|
6304
|
-
@cors = args[:cors] if args.key?(:cors)
|
6305
|
-
@mediation = args[:mediation] if args.key?(:mediation)
|
6306
|
-
@mtls = args[:mtls] if args.key?(:mtls)
|
6307
|
-
@threat = args[:threat] if args.key?(:threat)
|
6308
|
-
end
|
6309
|
-
end
|
6310
|
-
|
6311
|
-
# Checks to see if you have configured mTLS for the target server.
|
6312
|
-
class GoogleCloudApigeeV1ProfileConfigMtls
|
6313
|
-
include Google::Apis::Core::Hashable
|
6314
|
-
|
6315
|
-
def initialize(**args)
|
6316
|
-
update!(**args)
|
6317
|
-
end
|
6318
|
-
|
6319
|
-
# Update properties of this object
|
6320
|
-
def update!(**args)
|
6321
|
-
end
|
6322
|
-
end
|
6323
|
-
|
6324
|
-
# By default, following policies will be included: - OASValidation -
|
6325
|
-
# SOAPMessageValidation
|
6326
|
-
class GoogleCloudApigeeV1ProfileConfigMediation
|
6327
|
-
include Google::Apis::Core::Hashable
|
6328
|
-
|
6329
|
-
def initialize(**args)
|
6330
|
-
update!(**args)
|
6331
|
-
end
|
6332
|
-
|
6333
|
-
# Update properties of this object
|
6334
|
-
def update!(**args)
|
6335
|
-
end
|
6336
|
-
end
|
6337
|
-
|
6338
|
-
# By default, following policies will be included: - XMLThreatProtection -
|
6339
|
-
# JSONThreatProtection
|
6340
|
-
class GoogleCloudApigeeV1ProfileConfigThreat
|
6341
|
-
include Google::Apis::Core::Hashable
|
6342
|
-
|
6343
|
-
def initialize(**args)
|
6344
|
-
update!(**args)
|
6345
|
-
end
|
6346
|
-
|
6347
|
-
# Update properties of this object
|
6348
|
-
def update!(**args)
|
6349
|
-
end
|
6350
|
-
end
|
6351
|
-
|
6352
6550
|
# Message for compatibility with legacy Edge specification for Java Properties
|
6353
6551
|
# object in JSON.
|
6354
6552
|
class GoogleCloudApigeeV1Properties
|
@@ -8098,12 +8296,6 @@ module Google
|
|
8098
8296
|
# @return [String]
|
8099
8297
|
attr_accessor :name
|
8100
8298
|
|
8101
|
-
# ProfileConfig defines a set of categories and policies which will be used to
|
8102
|
-
# compute security score.
|
8103
|
-
# Corresponds to the JSON property `profileConfig`
|
8104
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfig]
|
8105
|
-
attr_accessor :profile_config
|
8106
|
-
|
8107
8299
|
# Output only. The time when revision was created.
|
8108
8300
|
# Corresponds to the JSON property `revisionCreateTime`
|
8109
8301
|
# @return [String]
|
@@ -8143,7 +8335,6 @@ module Google
|
|
8143
8335
|
@max_score = args[:max_score] if args.key?(:max_score)
|
8144
8336
|
@min_score = args[:min_score] if args.key?(:min_score)
|
8145
8337
|
@name = args[:name] if args.key?(:name)
|
8146
|
-
@profile_config = args[:profile_config] if args.key?(:profile_config)
|
8147
8338
|
@revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
|
8148
8339
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
8149
8340
|
@revision_publish_time = args[:revision_publish_time] if args.key?(:revision_publish_time)
|
@@ -9406,6 +9597,41 @@ module Google
|
|
9406
9597
|
end
|
9407
9598
|
end
|
9408
9599
|
|
9600
|
+
# Request for UpdateAppGroupAppKey
|
9601
|
+
class GoogleCloudApigeeV1UpdateAppGroupAppKeyRequest
|
9602
|
+
include Google::Apis::Core::Hashable
|
9603
|
+
|
9604
|
+
# Approve or revoke the consumer key by setting this value to `approve` or `
|
9605
|
+
# revoke` respectively. The `Content-Type` header, if set, must be set to `
|
9606
|
+
# application/octet-stream`, with empty body.
|
9607
|
+
# Corresponds to the JSON property `action`
|
9608
|
+
# @return [String]
|
9609
|
+
attr_accessor :action
|
9610
|
+
|
9611
|
+
# The list of API products that will be associated with the credential. This
|
9612
|
+
# list will be appended to the existing list of associated API Products for this
|
9613
|
+
# App Key. Duplicates will be ignored.
|
9614
|
+
# Corresponds to the JSON property `apiProducts`
|
9615
|
+
# @return [Array<String>]
|
9616
|
+
attr_accessor :api_products
|
9617
|
+
|
9618
|
+
# AppGroupAppKey contains all the information associated with the credentials.
|
9619
|
+
# Corresponds to the JSON property `appGroupAppKey`
|
9620
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupAppKey]
|
9621
|
+
attr_accessor :app_group_app_key
|
9622
|
+
|
9623
|
+
def initialize(**args)
|
9624
|
+
update!(**args)
|
9625
|
+
end
|
9626
|
+
|
9627
|
+
# Update properties of this object
|
9628
|
+
def update!(**args)
|
9629
|
+
@action = args[:action] if args.key?(:action)
|
9630
|
+
@api_products = args[:api_products] if args.key?(:api_products)
|
9631
|
+
@app_group_app_key = args[:app_group_app_key] if args.key?(:app_group_app_key)
|
9632
|
+
end
|
9633
|
+
end
|
9634
|
+
|
9409
9635
|
# Details on why a resource update failed in the runtime.
|
9410
9636
|
class GoogleCloudApigeeV1UpdateError
|
9411
9637
|
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.71.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 = "20230627"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|