google-apis-apigee_v1 0.69.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 +8 -0
- data/lib/google/apis/apigee_v1/classes.rb +410 -5
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +139 -0
- 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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.71.0 (2023-07-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230627
|
6
|
+
|
7
|
+
### v0.70.0 (2023-06-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230526
|
10
|
+
|
3
11
|
### v0.69.0 (2023-05-07)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230501
|
@@ -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
|
@@ -3168,12 +3452,19 @@ module Google
|
|
3168
3452
|
class GoogleCloudApigeeV1DimensionMetric
|
3169
3453
|
include Google::Apis::Core::Hashable
|
3170
3454
|
|
3455
|
+
# Individual dimension names. E.g. ["dim1_name", "dim2_name"].
|
3456
|
+
# Corresponds to the JSON property `individualNames`
|
3457
|
+
# @return [Array<String>]
|
3458
|
+
attr_accessor :individual_names
|
3459
|
+
|
3171
3460
|
# List of metrics.
|
3172
3461
|
# Corresponds to the JSON property `metrics`
|
3173
3462
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
|
3174
3463
|
attr_accessor :metrics
|
3175
3464
|
|
3176
|
-
#
|
3465
|
+
# Comma joined dimension names. E.g. "dim1_name,dim2_name". Deprecated. If name
|
3466
|
+
# already has comma before join, we may get wrong splits. Please use
|
3467
|
+
# individual_names.
|
3177
3468
|
# Corresponds to the JSON property `name`
|
3178
3469
|
# @return [String]
|
3179
3470
|
attr_accessor :name
|
@@ -3184,6 +3475,7 @@ module Google
|
|
3184
3475
|
|
3185
3476
|
# Update properties of this object
|
3186
3477
|
def update!(**args)
|
3478
|
+
@individual_names = args[:individual_names] if args.key?(:individual_names)
|
3187
3479
|
@metrics = args[:metrics] if args.key?(:metrics)
|
3188
3480
|
@name = args[:name] if args.key?(:name)
|
3189
3481
|
end
|
@@ -4701,6 +4993,65 @@ module Google
|
|
4701
4993
|
end
|
4702
4994
|
end
|
4703
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
|
+
|
4704
5055
|
#
|
4705
5056
|
class GoogleCloudApigeeV1ListAppsResponse
|
4706
5057
|
include Google::Apis::Core::Hashable
|
@@ -4710,6 +5061,17 @@ module Google
|
|
4710
5061
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1App>]
|
4711
5062
|
attr_accessor :app
|
4712
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
|
+
|
4713
5075
|
def initialize(**args)
|
4714
5076
|
update!(**args)
|
4715
5077
|
end
|
@@ -4717,6 +5079,8 @@ module Google
|
|
4717
5079
|
# Update properties of this object
|
4718
5080
|
def update!(**args)
|
4719
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)
|
4720
5084
|
end
|
4721
5085
|
end
|
4722
5086
|
|
@@ -5837,10 +6201,10 @@ module Google
|
|
5837
6201
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig]
|
5838
6202
|
attr_accessor :addons_config
|
5839
6203
|
|
5840
|
-
# Required. DEPRECATED: This field will be deprecated
|
5841
|
-
# Primary Google Cloud region for analytics data
|
5842
|
-
# Create an Apigee organization](https://cloud.
|
5843
|
-
# platform/get-started/create-org).
|
6204
|
+
# Required. DEPRECATED: This field will eventually be deprecated and replaced
|
6205
|
+
# with a differently-named field. Primary Google Cloud region for analytics data
|
6206
|
+
# storage. For valid values, see [Create an Apigee organization](https://cloud.
|
6207
|
+
# google.com/apigee/docs/api-platform/get-started/create-org).
|
5844
6208
|
# Corresponds to the JSON property `analyticsRegion`
|
5845
6209
|
# @return [String]
|
5846
6210
|
attr_accessor :analytics_region
|
@@ -7901,6 +8265,11 @@ module Google
|
|
7901
8265
|
class GoogleCloudApigeeV1SecurityProfile
|
7902
8266
|
include Google::Apis::Core::Hashable
|
7903
8267
|
|
8268
|
+
# Description of the security profile.
|
8269
|
+
# Corresponds to the JSON property `description`
|
8270
|
+
# @return [String]
|
8271
|
+
attr_accessor :description
|
8272
|
+
|
7904
8273
|
# Display name of the security profile.
|
7905
8274
|
# Corresponds to the JSON property `displayName`
|
7906
8275
|
# @return [String]
|
@@ -7960,6 +8329,7 @@ module Google
|
|
7960
8329
|
|
7961
8330
|
# Update properties of this object
|
7962
8331
|
def update!(**args)
|
8332
|
+
@description = args[:description] if args.key?(:description)
|
7963
8333
|
@display_name = args[:display_name] if args.key?(:display_name)
|
7964
8334
|
@environments = args[:environments] if args.key?(:environments)
|
7965
8335
|
@max_score = args[:max_score] if args.key?(:max_score)
|
@@ -9227,6 +9597,41 @@ module Google
|
|
9227
9597
|
end
|
9228
9598
|
end
|
9229
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
|
+
|
9230
9635
|
# Details on why a resource update failed in the runtime.
|
9231
9636
|
class GoogleCloudApigeeV1UpdateError
|
9232
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
|