google-apis-apigee_v1 0.68.0 → 0.70.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: 8f0b4749c58b2b4f91471b41e2b6ceb255bd11212323924c878824790052ca2e
4
- data.tar.gz: a7d311c66f3afffc116b6f7103a560dc3e599989824e23985220d16213489dba
3
+ metadata.gz: c3c5b317fb81bea3b688278cac390eb831f420ff9539fcae5358e1a242e967c2
4
+ data.tar.gz: ed0efd2fc0e25d761ce1a7eb76bd8fb56a18514a40f1f72f7822d4f96ee7ab72
5
5
  SHA512:
6
- metadata.gz: 6f24080ae7bd55abd1351dff5dabf9eab9074bd34e0359edb266e64424af9bcca2138cc8f4169299ab8be221da7b90d8d046d469355d89f6d62fe50c6e97e618
7
- data.tar.gz: 1ad8b151ddfbcdf4c30cf0d8048168620c1c842ab43d0a14581c5f91e2508f0f20b9bd40daec8c6061e93b2fe51cdf0714dba2c475847925a467baadfba2cad7
6
+ metadata.gz: 27aae498500e53240ef448035488b52087d81cecf02005d028ae1ee55d459c722163fae06090dadf79596673f8bdf200420312ca5764790caca90dd84e3efd97
7
+ data.tar.gz: 98631390879682fe334eda0d8076bf6b41947fc58aeb3b5cb8c36a09d344c86cb0dbef859ef0bfe23e96dcafd46ed4b5a60f43fbd90c683d4e71de16383364d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.70.0 (2023-06-04)
4
+
5
+ * Regenerated from discovery document revision 20230526
6
+
7
+ ### v0.69.0 (2023-05-07)
8
+
9
+ * Regenerated from discovery document revision 20230501
10
+
3
11
  ### v0.68.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230421
@@ -442,6 +442,11 @@ module Google
442
442
  class GoogleCloudApigeeV1ApiCategoryData
443
443
  include Google::Apis::Core::Hashable
444
444
 
445
+ # GCP name of api category resource.
446
+ # Corresponds to the JSON property `gcpResource`
447
+ # @return [String]
448
+ attr_accessor :gcp_resource
449
+
445
450
  # ID of the category (a UUID).
446
451
  # Corresponds to the JSON property `id`
447
452
  # @return [String]
@@ -468,6 +473,7 @@ module Google
468
473
 
469
474
  # Update properties of this object
470
475
  def update!(**args)
476
+ @gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
471
477
  @id = args[:id] if args.key?(:id)
472
478
  @name = args[:name] if args.key?(:name)
473
479
  @site_id = args[:site_id] if args.key?(:site_id)
@@ -906,43 +912,6 @@ module Google
906
912
  end
907
913
  end
908
914
 
909
- #
910
- class GoogleCloudApigeeV1ApiResponseWrapper
911
- include Google::Apis::Core::Hashable
912
-
913
- # ID that can be used to find errors in the log files.
914
- # Corresponds to the JSON property `errorCode`
915
- # @return [String]
916
- attr_accessor :error_code
917
-
918
- # Description of the operation.
919
- # Corresponds to the JSON property `message`
920
- # @return [String]
921
- attr_accessor :message
922
-
923
- # ID that can be used to find request details in the log files.
924
- # Corresponds to the JSON property `requestId`
925
- # @return [String]
926
- attr_accessor :request_id
927
-
928
- # Status of the operation.
929
- # Corresponds to the JSON property `status`
930
- # @return [String]
931
- attr_accessor :status
932
-
933
- def initialize(**args)
934
- update!(**args)
935
- end
936
-
937
- # Update properties of this object
938
- def update!(**args)
939
- @error_code = args[:error_code] if args.key?(:error_code)
940
- @message = args[:message] if args.key?(:message)
941
- @request_id = args[:request_id] if args.key?(:request_id)
942
- @status = args[:status] if args.key?(:status)
943
- end
944
- end
945
-
946
915
  # Configurations of the API Security add-on.
947
916
  class GoogleCloudApigeeV1ApiSecurityConfig
948
917
  include Google::Apis::Core::Hashable
@@ -2406,6 +2375,49 @@ module Google
2406
2375
  end
2407
2376
  end
2408
2377
 
2378
+ # Response for certain delete operations.
2379
+ class GoogleCloudApigeeV1DeleteResponse
2380
+ include Google::Apis::Core::Hashable
2381
+
2382
+ # ID that can be used to find errors in the log files.
2383
+ # Corresponds to the JSON property `errorCode`
2384
+ # @return [String]
2385
+ attr_accessor :error_code
2386
+
2387
+ # GCP name of deleted resource.
2388
+ # Corresponds to the JSON property `gcpResource`
2389
+ # @return [String]
2390
+ attr_accessor :gcp_resource
2391
+
2392
+ # Description of the operation.
2393
+ # Corresponds to the JSON property `message`
2394
+ # @return [String]
2395
+ attr_accessor :message
2396
+
2397
+ # ID that can be used to find request details in the log files.
2398
+ # Corresponds to the JSON property `requestId`
2399
+ # @return [String]
2400
+ attr_accessor :request_id
2401
+
2402
+ # Status of the operation.
2403
+ # Corresponds to the JSON property `status`
2404
+ # @return [String]
2405
+ attr_accessor :status
2406
+
2407
+ def initialize(**args)
2408
+ update!(**args)
2409
+ end
2410
+
2411
+ # Update properties of this object
2412
+ def update!(**args)
2413
+ @error_code = args[:error_code] if args.key?(:error_code)
2414
+ @gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
2415
+ @message = args[:message] if args.key?(:message)
2416
+ @request_id = args[:request_id] if args.key?(:request_id)
2417
+ @status = args[:status] if args.key?(:status)
2418
+ end
2419
+ end
2420
+
2409
2421
  #
2410
2422
  class GoogleCloudApigeeV1Deployment
2411
2423
  include Google::Apis::Core::Hashable
@@ -3156,12 +3168,19 @@ module Google
3156
3168
  class GoogleCloudApigeeV1DimensionMetric
3157
3169
  include Google::Apis::Core::Hashable
3158
3170
 
3171
+ # Individual dimension names. E.g. ["dim1_name", "dim2_name"].
3172
+ # Corresponds to the JSON property `individualNames`
3173
+ # @return [Array<String>]
3174
+ attr_accessor :individual_names
3175
+
3159
3176
  # List of metrics.
3160
3177
  # Corresponds to the JSON property `metrics`
3161
3178
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
3162
3179
  attr_accessor :metrics
3163
3180
 
3164
- # Name of the dimension.
3181
+ # Comma joined dimension names. E.g. "dim1_name,dim2_name". Deprecated. If name
3182
+ # already has comma before join, we may get wrong splits. Please use
3183
+ # individual_names.
3165
3184
  # Corresponds to the JSON property `name`
3166
3185
  # @return [String]
3167
3186
  attr_accessor :name
@@ -3172,6 +3191,7 @@ module Google
3172
3191
 
3173
3192
  # Update properties of this object
3174
3193
  def update!(**args)
3194
+ @individual_names = args[:individual_names] if args.key?(:individual_names)
3175
3195
  @metrics = args[:metrics] if args.key?(:metrics)
3176
3196
  @name = args[:name] if args.key?(:name)
3177
3197
  end
@@ -5825,10 +5845,10 @@ module Google
5825
5845
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig]
5826
5846
  attr_accessor :addons_config
5827
5847
 
5828
- # Required. DEPRECATED: This field will be deprecated once Apigee supports DRZ.
5829
- # Primary Google Cloud region for analytics data storage. For valid values, see [
5830
- # Create an Apigee organization](https://cloud.google.com/apigee/docs/api-
5831
- # platform/get-started/create-org).
5848
+ # Required. DEPRECATED: This field will eventually be deprecated and replaced
5849
+ # with a differently-named field. Primary Google Cloud region for analytics data
5850
+ # storage. For valid values, see [Create an Apigee organization](https://cloud.
5851
+ # google.com/apigee/docs/api-platform/get-started/create-org).
5832
5852
  # Corresponds to the JSON property `analyticsRegion`
5833
5853
  # @return [String]
5834
5854
  attr_accessor :analytics_region
@@ -6171,6 +6191,164 @@ module Google
6171
6191
  end
6172
6192
  end
6173
6193
 
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
+
6174
6352
  # Message for compatibility with legacy Edge specification for Java Properties
6175
6353
  # object in JSON.
6176
6354
  class GoogleCloudApigeeV1Properties
@@ -7889,6 +8067,11 @@ module Google
7889
8067
  class GoogleCloudApigeeV1SecurityProfile
7890
8068
  include Google::Apis::Core::Hashable
7891
8069
 
8070
+ # Description of the security profile.
8071
+ # Corresponds to the JSON property `description`
8072
+ # @return [String]
8073
+ attr_accessor :description
8074
+
7892
8075
  # Display name of the security profile.
7893
8076
  # Corresponds to the JSON property `displayName`
7894
8077
  # @return [String]
@@ -7915,6 +8098,12 @@ module Google
7915
8098
  # @return [String]
7916
8099
  attr_accessor :name
7917
8100
 
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
+
7918
8107
  # Output only. The time when revision was created.
7919
8108
  # Corresponds to the JSON property `revisionCreateTime`
7920
8109
  # @return [String]
@@ -7948,11 +8137,13 @@ module Google
7948
8137
 
7949
8138
  # Update properties of this object
7950
8139
  def update!(**args)
8140
+ @description = args[:description] if args.key?(:description)
7951
8141
  @display_name = args[:display_name] if args.key?(:display_name)
7952
8142
  @environments = args[:environments] if args.key?(:environments)
7953
8143
  @max_score = args[:max_score] if args.key?(:max_score)
7954
8144
  @min_score = args[:min_score] if args.key?(:min_score)
7955
8145
  @name = args[:name] if args.key?(:name)
8146
+ @profile_config = args[:profile_config] if args.key?(:profile_config)
7956
8147
  @revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
7957
8148
  @revision_id = args[:revision_id] if args.key?(:revision_id)
7958
8149
  @revision_publish_time = args[:revision_publish_time] if args.key?(:revision_publish_time)
@@ -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.68.0"
19
+ GEM_VERSION = "0.70.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 = "20230421"
25
+ REVISION = "20230526"
26
26
  end
27
27
  end
28
28
  end
@@ -136,12 +136,6 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
- class GoogleCloudApigeeV1ApiResponseWrapper
140
- class Representation < Google::Apis::Core::JsonRepresentation; end
141
-
142
- include Google::Apis::Core::JsonObjectSupport
143
- end
144
-
145
139
  class GoogleCloudApigeeV1ApiSecurityConfig
146
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
141
 
@@ -334,6 +328,12 @@ module Google
334
328
  include Google::Apis::Core::JsonObjectSupport
335
329
  end
336
330
 
331
+ class GoogleCloudApigeeV1DeleteResponse
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
337
337
  class GoogleCloudApigeeV1Deployment
338
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
339
 
@@ -934,6 +934,54 @@ module Google
934
934
  include Google::Apis::Core::JsonObjectSupport
935
935
  end
936
936
 
937
+ class GoogleCloudApigeeV1ProfileConfig
938
+ class Representation < Google::Apis::Core::JsonRepresentation; end
939
+
940
+ include Google::Apis::Core::JsonObjectSupport
941
+ end
942
+
943
+ class GoogleCloudApigeeV1ProfileConfigAbuse
944
+ class Representation < Google::Apis::Core::JsonRepresentation; end
945
+
946
+ include Google::Apis::Core::JsonObjectSupport
947
+ end
948
+
949
+ class GoogleCloudApigeeV1ProfileConfigAuthorization
950
+ class Representation < Google::Apis::Core::JsonRepresentation; end
951
+
952
+ include Google::Apis::Core::JsonObjectSupport
953
+ end
954
+
955
+ class GoogleCloudApigeeV1ProfileConfigCors
956
+ class Representation < Google::Apis::Core::JsonRepresentation; end
957
+
958
+ include Google::Apis::Core::JsonObjectSupport
959
+ end
960
+
961
+ class GoogleCloudApigeeV1ProfileConfigCategory
962
+ class Representation < Google::Apis::Core::JsonRepresentation; end
963
+
964
+ include Google::Apis::Core::JsonObjectSupport
965
+ end
966
+
967
+ class GoogleCloudApigeeV1ProfileConfigMtls
968
+ class Representation < Google::Apis::Core::JsonRepresentation; end
969
+
970
+ include Google::Apis::Core::JsonObjectSupport
971
+ end
972
+
973
+ class GoogleCloudApigeeV1ProfileConfigMediation
974
+ class Representation < Google::Apis::Core::JsonRepresentation; end
975
+
976
+ include Google::Apis::Core::JsonObjectSupport
977
+ end
978
+
979
+ class GoogleCloudApigeeV1ProfileConfigThreat
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
937
985
  class GoogleCloudApigeeV1Properties
938
986
  class Representation < Google::Apis::Core::JsonRepresentation; end
939
987
 
@@ -1583,6 +1631,7 @@ module Google
1583
1631
  class GoogleCloudApigeeV1ApiCategoryData
1584
1632
  # @private
1585
1633
  class Representation < Google::Apis::Core::JsonRepresentation
1634
+ property :gcp_resource, as: 'gcpResource'
1586
1635
  property :id, as: 'id'
1587
1636
  property :name, as: 'name'
1588
1637
  property :site_id, as: 'siteId'
@@ -1670,16 +1719,6 @@ module Google
1670
1719
  end
1671
1720
  end
1672
1721
 
1673
- class GoogleCloudApigeeV1ApiResponseWrapper
1674
- # @private
1675
- class Representation < Google::Apis::Core::JsonRepresentation
1676
- property :error_code, as: 'errorCode'
1677
- property :message, as: 'message'
1678
- property :request_id, as: 'requestId'
1679
- property :status, as: 'status'
1680
- end
1681
- end
1682
-
1683
1722
  class GoogleCloudApigeeV1ApiSecurityConfig
1684
1723
  # @private
1685
1724
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2051,6 +2090,17 @@ module Google
2051
2090
  end
2052
2091
  end
2053
2092
 
2093
+ class GoogleCloudApigeeV1DeleteResponse
2094
+ # @private
2095
+ class Representation < Google::Apis::Core::JsonRepresentation
2096
+ property :error_code, as: 'errorCode'
2097
+ property :gcp_resource, as: 'gcpResource'
2098
+ property :message, as: 'message'
2099
+ property :request_id, as: 'requestId'
2100
+ property :status, as: 'status'
2101
+ end
2102
+ end
2103
+
2054
2104
  class GoogleCloudApigeeV1Deployment
2055
2105
  # @private
2056
2106
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2238,6 +2288,7 @@ module Google
2238
2288
  class GoogleCloudApigeeV1DimensionMetric
2239
2289
  # @private
2240
2290
  class Representation < Google::Apis::Core::JsonRepresentation
2291
+ collection :individual_names, as: 'individualNames'
2241
2292
  collection :metrics, as: 'metrics', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric::Representation
2242
2293
 
2243
2294
  property :name, as: 'name'
@@ -3091,6 +3142,68 @@ module Google
3091
3142
  end
3092
3143
  end
3093
3144
 
3145
+ class GoogleCloudApigeeV1ProfileConfig
3146
+ # @private
3147
+ class Representation < Google::Apis::Core::JsonRepresentation
3148
+ collection :categories, as: 'categories', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigCategory, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigCategory::Representation
3149
+
3150
+ end
3151
+ end
3152
+
3153
+ class GoogleCloudApigeeV1ProfileConfigAbuse
3154
+ # @private
3155
+ class Representation < Google::Apis::Core::JsonRepresentation
3156
+ end
3157
+ end
3158
+
3159
+ class GoogleCloudApigeeV1ProfileConfigAuthorization
3160
+ # @private
3161
+ class Representation < Google::Apis::Core::JsonRepresentation
3162
+ end
3163
+ end
3164
+
3165
+ class GoogleCloudApigeeV1ProfileConfigCors
3166
+ # @private
3167
+ class Representation < Google::Apis::Core::JsonRepresentation
3168
+ end
3169
+ end
3170
+
3171
+ class GoogleCloudApigeeV1ProfileConfigCategory
3172
+ # @private
3173
+ class Representation < Google::Apis::Core::JsonRepresentation
3174
+ property :abuse, as: 'abuse', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigAbuse, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigAbuse::Representation
3175
+
3176
+ property :authorization, as: 'authorization', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigAuthorization, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigAuthorization::Representation
3177
+
3178
+ property :cors, as: 'cors', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigCors, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigCors::Representation
3179
+
3180
+ property :mediation, as: 'mediation', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigMediation, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigMediation::Representation
3181
+
3182
+ property :mtls, as: 'mtls', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigMtls, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigMtls::Representation
3183
+
3184
+ property :threat, as: 'threat', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigThreat, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfigThreat::Representation
3185
+
3186
+ end
3187
+ end
3188
+
3189
+ class GoogleCloudApigeeV1ProfileConfigMtls
3190
+ # @private
3191
+ class Representation < Google::Apis::Core::JsonRepresentation
3192
+ end
3193
+ end
3194
+
3195
+ class GoogleCloudApigeeV1ProfileConfigMediation
3196
+ # @private
3197
+ class Representation < Google::Apis::Core::JsonRepresentation
3198
+ end
3199
+ end
3200
+
3201
+ class GoogleCloudApigeeV1ProfileConfigThreat
3202
+ # @private
3203
+ class Representation < Google::Apis::Core::JsonRepresentation
3204
+ end
3205
+ end
3206
+
3094
3207
  class GoogleCloudApigeeV1Properties
3095
3208
  # @private
3096
3209
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3543,12 +3656,15 @@ module Google
3543
3656
  class GoogleCloudApigeeV1SecurityProfile
3544
3657
  # @private
3545
3658
  class Representation < Google::Apis::Core::JsonRepresentation
3659
+ property :description, as: 'description'
3546
3660
  property :display_name, as: 'displayName'
3547
3661
  collection :environments, as: 'environments', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileEnvironment, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileEnvironment::Representation
3548
3662
 
3549
3663
  property :max_score, as: 'maxScore'
3550
3664
  property :min_score, as: 'minScore'
3551
3665
  property :name, as: 'name'
3666
+ property :profile_config, as: 'profileConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfig::Representation
3667
+
3552
3668
  property :revision_create_time, as: 'revisionCreateTime'
3553
3669
  property :revision_id, :numeric_string => true, as: 'revisionId'
3554
3670
  property :revision_publish_time, as: 'revisionPublishTime'
@@ -10097,18 +10097,18 @@ module Google
10097
10097
  # Request-specific options
10098
10098
  #
10099
10099
  # @yield [result, err] Result & error if block supplied
10100
- # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper] parsed result object
10100
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse] parsed result object
10101
10101
  # @yieldparam err [StandardError] error object if request failed
10102
10102
  #
10103
- # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper]
10103
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse]
10104
10104
  #
10105
10105
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10106
10106
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10107
10107
  # @raise [Google::Apis::AuthorizationError] Authorization is required
10108
10108
  def delete_organization_site_apicategory(name, fields: nil, quota_user: nil, options: nil, &block)
10109
10109
  command = make_simple_command(:delete, 'v1/{+name}', options)
10110
- command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper::Representation
10111
- command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper
10110
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse::Representation
10111
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse
10112
10112
  command.params['name'] = name unless name.nil?
10113
10113
  command.query['fields'] = fields unless fields.nil?
10114
10114
  command.query['quotaUser'] = quota_user unless quota_user.nil?
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.68.0
4
+ version: 0.70.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-04 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.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.70.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: []