google-apis-apigee_v1 0.69.0 → 0.70.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 868055515bcda762b7dbf28398d06ae8484f91e0f428bd2faa848d5a161df215
4
- data.tar.gz: 7f8b3e65cee62c7c67e29b6aaf4a882e8972ec43eafcf3e22cb0fb71191af218
3
+ metadata.gz: c3c5b317fb81bea3b688278cac390eb831f420ff9539fcae5358e1a242e967c2
4
+ data.tar.gz: ed0efd2fc0e25d761ce1a7eb76bd8fb56a18514a40f1f72f7822d4f96ee7ab72
5
5
  SHA512:
6
- metadata.gz: 07b4d3aadb81e254609ab9685769ff08bb3f85cc2997b8b78a583c068225b51b9575fb7fed5a80efae7ed28f48881a02a9a419620e88d5fa41581d72b35f8445
7
- data.tar.gz: 2d6255610fec9247da7730cc36eaa3498c3aa4b77bab2951fcef659e470b045247abf4c9c1fdd8eefe89ac3b2833ce4329edddf38e9d20dd6c07ff437b78fdf5
6
+ metadata.gz: 27aae498500e53240ef448035488b52087d81cecf02005d028ae1ee55d459c722163fae06090dadf79596673f8bdf200420312ca5764790caca90dd84e3efd97
7
+ data.tar.gz: 98631390879682fe334eda0d8076bf6b41947fc58aeb3b5cb8c36a09d344c86cb0dbef859ef0bfe23e96dcafd46ed4b5a60f43fbd90c683d4e71de16383364d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.69.0 (2023-05-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20230501
@@ -3168,12 +3168,19 @@ module Google
3168
3168
  class GoogleCloudApigeeV1DimensionMetric
3169
3169
  include Google::Apis::Core::Hashable
3170
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
+
3171
3176
  # List of metrics.
3172
3177
  # Corresponds to the JSON property `metrics`
3173
3178
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
3174
3179
  attr_accessor :metrics
3175
3180
 
3176
- # 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.
3177
3184
  # Corresponds to the JSON property `name`
3178
3185
  # @return [String]
3179
3186
  attr_accessor :name
@@ -3184,6 +3191,7 @@ module Google
3184
3191
 
3185
3192
  # Update properties of this object
3186
3193
  def update!(**args)
3194
+ @individual_names = args[:individual_names] if args.key?(:individual_names)
3187
3195
  @metrics = args[:metrics] if args.key?(:metrics)
3188
3196
  @name = args[:name] if args.key?(:name)
3189
3197
  end
@@ -5837,10 +5845,10 @@ module Google
5837
5845
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig]
5838
5846
  attr_accessor :addons_config
5839
5847
 
5840
- # Required. DEPRECATED: This field will be deprecated once Apigee supports DRZ.
5841
- # Primary Google Cloud region for analytics data storage. For valid values, see [
5842
- # Create an Apigee organization](https://cloud.google.com/apigee/docs/api-
5843
- # 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).
5844
5852
  # Corresponds to the JSON property `analyticsRegion`
5845
5853
  # @return [String]
5846
5854
  attr_accessor :analytics_region
@@ -6183,6 +6191,164 @@ module Google
6183
6191
  end
6184
6192
  end
6185
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
+
6186
6352
  # Message for compatibility with legacy Edge specification for Java Properties
6187
6353
  # object in JSON.
6188
6354
  class GoogleCloudApigeeV1Properties
@@ -7901,6 +8067,11 @@ module Google
7901
8067
  class GoogleCloudApigeeV1SecurityProfile
7902
8068
  include Google::Apis::Core::Hashable
7903
8069
 
8070
+ # Description of the security profile.
8071
+ # Corresponds to the JSON property `description`
8072
+ # @return [String]
8073
+ attr_accessor :description
8074
+
7904
8075
  # Display name of the security profile.
7905
8076
  # Corresponds to the JSON property `displayName`
7906
8077
  # @return [String]
@@ -7927,6 +8098,12 @@ module Google
7927
8098
  # @return [String]
7928
8099
  attr_accessor :name
7929
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
+
7930
8107
  # Output only. The time when revision was created.
7931
8108
  # Corresponds to the JSON property `revisionCreateTime`
7932
8109
  # @return [String]
@@ -7960,11 +8137,13 @@ module Google
7960
8137
 
7961
8138
  # Update properties of this object
7962
8139
  def update!(**args)
8140
+ @description = args[:description] if args.key?(:description)
7963
8141
  @display_name = args[:display_name] if args.key?(:display_name)
7964
8142
  @environments = args[:environments] if args.key?(:environments)
7965
8143
  @max_score = args[:max_score] if args.key?(:max_score)
7966
8144
  @min_score = args[:min_score] if args.key?(:min_score)
7967
8145
  @name = args[:name] if args.key?(:name)
8146
+ @profile_config = args[:profile_config] if args.key?(:profile_config)
7968
8147
  @revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
7969
8148
  @revision_id = args[:revision_id] if args.key?(:revision_id)
7970
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.69.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 = "20230501"
25
+ REVISION = "20230526"
26
26
  end
27
27
  end
28
28
  end
@@ -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
 
@@ -2240,6 +2288,7 @@ module Google
2240
2288
  class GoogleCloudApigeeV1DimensionMetric
2241
2289
  # @private
2242
2290
  class Representation < Google::Apis::Core::JsonRepresentation
2291
+ collection :individual_names, as: 'individualNames'
2243
2292
  collection :metrics, as: 'metrics', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric::Representation
2244
2293
 
2245
2294
  property :name, as: 'name'
@@ -3093,6 +3142,68 @@ module Google
3093
3142
  end
3094
3143
  end
3095
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
+
3096
3207
  class GoogleCloudApigeeV1Properties
3097
3208
  # @private
3098
3209
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3545,12 +3656,15 @@ module Google
3545
3656
  class GoogleCloudApigeeV1SecurityProfile
3546
3657
  # @private
3547
3658
  class Representation < Google::Apis::Core::JsonRepresentation
3659
+ property :description, as: 'description'
3548
3660
  property :display_name, as: 'displayName'
3549
3661
  collection :environments, as: 'environments', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileEnvironment, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileEnvironment::Representation
3550
3662
 
3551
3663
  property :max_score, as: 'maxScore'
3552
3664
  property :min_score, as: 'minScore'
3553
3665
  property :name, as: 'name'
3666
+ property :profile_config, as: 'profileConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProfileConfig::Representation
3667
+
3554
3668
  property :revision_create_time, as: 'revisionCreateTime'
3555
3669
  property :revision_id, :numeric_string => true, as: 'revisionId'
3556
3670
  property :revision_publish_time, as: 'revisionPublishTime'
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.69.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-05-14 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.69.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: []