google-apis-apigee_v1 0.115.0 → 0.116.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: d089e66a645db9c4038fe5846a7279d1807b89364890fc6fc6a08fb956cce712
4
- data.tar.gz: dd7ae0a8751f572b92aa4adbb1bc66a944e75ee8dd0843237b916d187597c81b
3
+ metadata.gz: 2c418ff6e81b172bd0dc7f72b94d5e9766a347aa1b45f501cb2dcbaa3e4c4e4b
4
+ data.tar.gz: 172274edd8b5c94d3fbfde654d327a578bf67548da14baba25fe65ed4f4517fb
5
5
  SHA512:
6
- metadata.gz: 34de5b144aa1b256c56790abd058cc09a5a5cdf7173eb66c57386c906b22908c7dfba1344d12823838897f6796437303c935b25e453b75b1aca2dab69629670c
7
- data.tar.gz: 57290a4ef8c6202cb6977b4dce4fe12759a4c47801eeb3dde76681499da67d15f53d861be9e5ab072c459b505aecb51ddb859900b4e7e3178f8efec519cfd71c
6
+ metadata.gz: f6eabd7778087369cf44e0f4c3b7f9cd2f3b79d14b5e3e13a39f24928241204467261674c2d35579fef9fb915c006771bf02335724f35231b4c8961eaf88ce37
7
+ data.tar.gz: 105ffdbca46bf98a77da978fd5027e9836246cb56efc26e6a92feace9cac6f7b0be66e58b62bfe4d8215d630051aeba1f9ef3e734762e1e7499d146a1d3f0eeb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.116.0 (2025-11-16)
4
+
5
+ * Regenerated from discovery document revision 20251105
6
+
3
7
  ### v0.115.0 (2025-10-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20251016
@@ -2068,6 +2068,16 @@ module Google
2068
2068
  class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequest
2069
2069
  include Google::Apis::Core::Hashable
2070
2070
 
2071
+ # Message for the array of API Hub APIs.
2072
+ # Corresponds to the JSON property `apiHubApis`
2073
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray]
2074
+ attr_accessor :api_hub_apis
2075
+
2076
+ # Message for the array of API Hub Gateways.
2077
+ # Corresponds to the JSON property `apiHubGateways`
2078
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray]
2079
+ attr_accessor :api_hub_gateways
2080
+
2071
2081
  # Message for the array of resources. For Apigee, the proxies are resources.
2072
2082
  # Corresponds to the JSON property `include`
2073
2083
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray]
@@ -2096,8 +2106,10 @@ module Google
2096
2106
  # @return [String]
2097
2107
  attr_accessor :profile
2098
2108
 
2099
- # Optional. Scope of the resources for the computation. For Apigee, the
2100
- # environment is the scope of the resources.
2109
+ # Optional. Scope of the resources for the computation. When computing scores
2110
+ # for Apigee proxies, the scope should be set to the environment of the
2111
+ # resources. When computing scores for API Hub deployments, api_hub_scope should
2112
+ # be set instead.
2101
2113
  # Corresponds to the JSON property `scope`
2102
2114
  # @return [String]
2103
2115
  attr_accessor :scope
@@ -2108,6 +2120,8 @@ module Google
2108
2120
 
2109
2121
  # Update properties of this object
2110
2122
  def update!(**args)
2123
+ @api_hub_apis = args[:api_hub_apis] if args.key?(:api_hub_apis)
2124
+ @api_hub_gateways = args[:api_hub_gateways] if args.key?(:api_hub_gateways)
2111
2125
  @include = args[:include] if args.key?(:include)
2112
2126
  @include_all_resources = args[:include_all_resources] if args.key?(:include_all_resources)
2113
2127
  @page_size = args[:page_size] if args.key?(:page_size)
@@ -2117,6 +2131,46 @@ module Google
2117
2131
  end
2118
2132
  end
2119
2133
 
2134
+ # Message for the array of API Hub APIs.
2135
+ class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray
2136
+ include Google::Apis::Core::Hashable
2137
+
2138
+ # Required. The array of API Hub API IDs. Format: `projects/`project`/locations/`
2139
+ # location`/apis/`api``
2140
+ # Corresponds to the JSON property `apis`
2141
+ # @return [Array<String>]
2142
+ attr_accessor :apis
2143
+
2144
+ def initialize(**args)
2145
+ update!(**args)
2146
+ end
2147
+
2148
+ # Update properties of this object
2149
+ def update!(**args)
2150
+ @apis = args[:apis] if args.key?(:apis)
2151
+ end
2152
+ end
2153
+
2154
+ # Message for the array of API Hub Gateways.
2155
+ class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray
2156
+ include Google::Apis::Core::Hashable
2157
+
2158
+ # Required. The array of API Hub Gateway IDs. Format: `projects/`project`/
2159
+ # locations/`location`/plugins/`plugin`/instances/`instance``
2160
+ # Corresponds to the JSON property `gateways`
2161
+ # @return [Array<String>]
2162
+ attr_accessor :gateways
2163
+
2164
+ def initialize(**args)
2165
+ update!(**args)
2166
+ end
2167
+
2168
+ # Update properties of this object
2169
+ def update!(**args)
2170
+ @gateways = args[:gateways] if args.key?(:gateways)
2171
+ end
2172
+ end
2173
+
2120
2174
  # Message for include_all_resources option.
2121
2175
  class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll
2122
2176
  include Google::Apis::Core::Hashable
@@ -2153,7 +2207,9 @@ module Google
2153
2207
  class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArrayResource
2154
2208
  include Google::Apis::Core::Hashable
2155
2209
 
2156
- # Required. Name of this resource.
2210
+ # Required. Name of this resource. For an Apigee API Proxy, this should be the
2211
+ # id of the API proxy. For an API Hub Deployment, this should be the id of the
2212
+ # deployment.
2157
2213
  # Corresponds to the JSON property `name`
2158
2214
  # @return [String]
2159
2215
  attr_accessor :name
@@ -10330,7 +10386,14 @@ module Google
10330
10386
  class GoogleCloudApigeeV1SecurityAssessmentResultResource
10331
10387
  include Google::Apis::Core::Hashable
10332
10388
 
10333
- # Required. Name of this resource.
10389
+ # Additional details if the resource is an API Hub deployment.
10390
+ # Corresponds to the JSON property `apiHubDeploymentDetails`
10391
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails]
10392
+ attr_accessor :api_hub_deployment_details
10393
+
10394
+ # Required. Name of this resource. For an Apigee API Proxy, this should be the
10395
+ # id of the API proxy. For an API Hub Deployment, this should be the id of the
10396
+ # deployment.
10334
10397
  # Corresponds to the JSON property `name`
10335
10398
  # @return [String]
10336
10399
  attr_accessor :name
@@ -10351,12 +10414,57 @@ module Google
10351
10414
 
10352
10415
  # Update properties of this object
10353
10416
  def update!(**args)
10417
+ @api_hub_deployment_details = args[:api_hub_deployment_details] if args.key?(:api_hub_deployment_details)
10354
10418
  @name = args[:name] if args.key?(:name)
10355
10419
  @resource_revision_id = args[:resource_revision_id] if args.key?(:resource_revision_id)
10356
10420
  @type = args[:type] if args.key?(:type)
10357
10421
  end
10358
10422
  end
10359
10423
 
10424
+ # Additional details if the resource is an API Hub deployment.
10425
+ class GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
10426
+ include Google::Apis::Core::Hashable
10427
+
10428
+ # The display name of the API Hub deployment.
10429
+ # Corresponds to the JSON property `displayName`
10430
+ # @return [String]
10431
+ attr_accessor :display_name
10432
+
10433
+ # The gateway for the API Hub deployment. Format: `projects/`project`/locations/`
10434
+ # location`/plugins/`plugin`/instances/`instance``
10435
+ # Corresponds to the JSON property `gateway`
10436
+ # @return [String]
10437
+ attr_accessor :gateway
10438
+
10439
+ # The gateway type for the API Hub deployment.
10440
+ # Corresponds to the JSON property `gatewayType`
10441
+ # @return [String]
10442
+ attr_accessor :gateway_type
10443
+
10444
+ # The resource uri for the API Hub deployment.
10445
+ # Corresponds to the JSON property `resourceUri`
10446
+ # @return [String]
10447
+ attr_accessor :resource_uri
10448
+
10449
+ # The source project for the API Hub deployment.
10450
+ # Corresponds to the JSON property `sourceProject`
10451
+ # @return [String]
10452
+ attr_accessor :source_project
10453
+
10454
+ def initialize(**args)
10455
+ update!(**args)
10456
+ end
10457
+
10458
+ # Update properties of this object
10459
+ def update!(**args)
10460
+ @display_name = args[:display_name] if args.key?(:display_name)
10461
+ @gateway = args[:gateway] if args.key?(:gateway)
10462
+ @gateway_type = args[:gateway_type] if args.key?(:gateway_type)
10463
+ @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
10464
+ @source_project = args[:source_project] if args.key?(:source_project)
10465
+ end
10466
+ end
10467
+
10360
10468
  # The result of the assessment.
10361
10469
  class GoogleCloudApigeeV1SecurityAssessmentResultScoringResult
10362
10470
  include Google::Apis::Core::Hashable
@@ -10937,6 +11045,12 @@ module Google
10937
11045
  # @return [Hash<String,Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig>]
10938
11046
  attr_accessor :profile_assessment_configs
10939
11047
 
11048
+ # Optional. The risk assessment type of the security profile. Defaults to
11049
+ # ADVANCED_API_SECURITY.
11050
+ # Corresponds to the JSON property `riskAssessmentType`
11051
+ # @return [String]
11052
+ attr_accessor :risk_assessment_type
11053
+
10940
11054
  # Output only. The time of the security profile update.
10941
11055
  # Corresponds to the JSON property `updateTime`
10942
11056
  # @return [String]
@@ -10953,6 +11067,7 @@ module Google
10953
11067
  @google_defined = args[:google_defined] if args.key?(:google_defined)
10954
11068
  @name = args[:name] if args.key?(:name)
10955
11069
  @profile_assessment_configs = args[:profile_assessment_configs] if args.key?(:profile_assessment_configs)
11070
+ @risk_assessment_type = args[:risk_assessment_type] if args.key?(:risk_assessment_type)
10956
11071
  @update_time = args[:update_time] if args.key?(:update_time)
10957
11072
  end
10958
11073
  end
@@ -10961,6 +11076,11 @@ module Google
10961
11076
  class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig
10962
11077
  include Google::Apis::Core::Hashable
10963
11078
 
11079
+ # Message for the array of API Hub Gateway Types.
11080
+ # Corresponds to the JSON property `include`
11081
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray]
11082
+ attr_accessor :include
11083
+
10964
11084
  # The weight of the assessment.
10965
11085
  # Corresponds to the JSON property `weight`
10966
11086
  # @return [String]
@@ -10972,10 +11092,30 @@ module Google
10972
11092
 
10973
11093
  # Update properties of this object
10974
11094
  def update!(**args)
11095
+ @include = args[:include] if args.key?(:include)
10975
11096
  @weight = args[:weight] if args.key?(:weight)
10976
11097
  end
10977
11098
  end
10978
11099
 
11100
+ # Message for the array of API Hub Gateway Types.
11101
+ class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray
11102
+ include Google::Apis::Core::Hashable
11103
+
11104
+ # Required. The array of API Hub Gateway Types.
11105
+ # Corresponds to the JSON property `gatewayTypes`
11106
+ # @return [Array<String>]
11107
+ attr_accessor :gateway_types
11108
+
11109
+ def initialize(**args)
11110
+ update!(**args)
11111
+ end
11112
+
11113
+ # Update properties of this object
11114
+ def update!(**args)
11115
+ @gateway_types = args[:gateway_types] if args.key?(:gateway_types)
11116
+ end
11117
+ end
11118
+
10979
11119
  # SecurityReport saves all the information about the created security report.
10980
11120
  class GoogleCloudApigeeV1SecurityReport
10981
11121
  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.115.0"
19
+ GEM_VERSION = "0.116.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251016"
25
+ REVISION = "20251105"
26
26
  end
27
27
  end
28
28
  end
@@ -262,6 +262,18 @@ module Google
262
262
  include Google::Apis::Core::JsonObjectSupport
263
263
  end
264
264
 
265
+ class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
271
+ class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
265
277
  class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll
266
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
279
 
@@ -1576,6 +1588,12 @@ module Google
1576
1588
  include Google::Apis::Core::JsonObjectSupport
1577
1589
  end
1578
1590
 
1591
+ class GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
1592
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1593
+
1594
+ include Google::Apis::Core::JsonObjectSupport
1595
+ end
1596
+
1579
1597
  class GoogleCloudApigeeV1SecurityAssessmentResultScoringResult
1580
1598
  class Representation < Google::Apis::Core::JsonRepresentation; end
1581
1599
 
@@ -1660,6 +1678,12 @@ module Google
1660
1678
  include Google::Apis::Core::JsonObjectSupport
1661
1679
  end
1662
1680
 
1681
+ class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray
1682
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1683
+
1684
+ include Google::Apis::Core::JsonObjectSupport
1685
+ end
1686
+
1663
1687
  class GoogleCloudApigeeV1SecurityReport
1664
1688
  class Representation < Google::Apis::Core::JsonRepresentation; end
1665
1689
 
@@ -2437,6 +2461,10 @@ module Google
2437
2461
  class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequest
2438
2462
  # @private
2439
2463
  class Representation < Google::Apis::Core::JsonRepresentation
2464
+ property :api_hub_apis, as: 'apiHubApis', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray::Representation
2465
+
2466
+ property :api_hub_gateways, as: 'apiHubGateways', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray::Representation
2467
+
2440
2468
  property :include, as: 'include', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray::Representation
2441
2469
 
2442
2470
  property :include_all_resources, as: 'includeAllResources', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll::Representation
@@ -2448,6 +2476,20 @@ module Google
2448
2476
  end
2449
2477
  end
2450
2478
 
2479
+ class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray
2480
+ # @private
2481
+ class Representation < Google::Apis::Core::JsonRepresentation
2482
+ collection :apis, as: 'apis'
2483
+ end
2484
+ end
2485
+
2486
+ class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray
2487
+ # @private
2488
+ class Representation < Google::Apis::Core::JsonRepresentation
2489
+ collection :gateways, as: 'gateways'
2490
+ end
2491
+ end
2492
+
2451
2493
  class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll
2452
2494
  # @private
2453
2495
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4713,12 +4755,25 @@ module Google
4713
4755
  class GoogleCloudApigeeV1SecurityAssessmentResultResource
4714
4756
  # @private
4715
4757
  class Representation < Google::Apis::Core::JsonRepresentation
4758
+ property :api_hub_deployment_details, as: 'apiHubDeploymentDetails', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails::Representation
4759
+
4716
4760
  property :name, as: 'name'
4717
4761
  property :resource_revision_id, as: 'resourceRevisionId'
4718
4762
  property :type, as: 'type'
4719
4763
  end
4720
4764
  end
4721
4765
 
4766
+ class GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
4767
+ # @private
4768
+ class Representation < Google::Apis::Core::JsonRepresentation
4769
+ property :display_name, as: 'displayName'
4770
+ property :gateway, as: 'gateway'
4771
+ property :gateway_type, as: 'gatewayType'
4772
+ property :resource_uri, as: 'resourceUri'
4773
+ property :source_project, as: 'sourceProject'
4774
+ end
4775
+ end
4776
+
4722
4777
  class GoogleCloudApigeeV1SecurityAssessmentResultScoringResult
4723
4778
  # @private
4724
4779
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4871,6 +4926,7 @@ module Google
4871
4926
  property :name, as: 'name'
4872
4927
  hash :profile_assessment_configs, as: 'profileAssessmentConfigs', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig::Representation
4873
4928
 
4929
+ property :risk_assessment_type, as: 'riskAssessmentType'
4874
4930
  property :update_time, as: 'updateTime'
4875
4931
  end
4876
4932
  end
@@ -4878,10 +4934,19 @@ module Google
4878
4934
  class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig
4879
4935
  # @private
4880
4936
  class Representation < Google::Apis::Core::JsonRepresentation
4937
+ property :include, as: 'include', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray::Representation
4938
+
4881
4939
  property :weight, as: 'weight'
4882
4940
  end
4883
4941
  end
4884
4942
 
4943
+ class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray
4944
+ # @private
4945
+ class Representation < Google::Apis::Core::JsonRepresentation
4946
+ collection :gateway_types, as: 'gatewayTypes'
4947
+ end
4948
+ end
4949
+
4885
4950
  class GoogleCloudApigeeV1SecurityReport
4886
4951
  # @private
4887
4952
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12514,6 +12514,9 @@ module Google
12514
12514
  # @param [String] name
12515
12515
  # Required. The name of the security profile v2 to delete. Format: `
12516
12516
  # organizations/`org`/securityProfilesV2/`profile``
12517
+ # @param [String] risk_assessment_type
12518
+ # Optional. The risk assessment type of the security profile. Defaults to
12519
+ # ADVANCED_API_SECURITY.
12517
12520
  # @param [String] fields
12518
12521
  # Selector specifying which fields to include in a partial response.
12519
12522
  # @param [String] quota_user
@@ -12531,11 +12534,12 @@ module Google
12531
12534
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
12532
12535
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
12533
12536
  # @raise [Google::Apis::AuthorizationError] Authorization is required
12534
- def delete_organization_security_profiles_v2(name, fields: nil, quota_user: nil, options: nil, &block)
12537
+ def delete_organization_security_profiles_v2(name, risk_assessment_type: nil, fields: nil, quota_user: nil, options: nil, &block)
12535
12538
  command = make_simple_command(:delete, 'v1/{+name}', options)
12536
12539
  command.response_representation = Google::Apis::ApigeeV1::GoogleProtobufEmpty::Representation
12537
12540
  command.response_class = Google::Apis::ApigeeV1::GoogleProtobufEmpty
12538
12541
  command.params['name'] = name unless name.nil?
12542
+ command.query['riskAssessmentType'] = risk_assessment_type unless risk_assessment_type.nil?
12539
12543
  command.query['fields'] = fields unless fields.nil?
12540
12544
  command.query['quotaUser'] = quota_user unless quota_user.nil?
12541
12545
  execute_or_queue_command(command, &block)
@@ -12545,6 +12549,9 @@ module Google
12545
12549
  # @param [String] name
12546
12550
  # Required. The name of the security profile v2 to get. Format: `organizations/`
12547
12551
  # org`/securityProfilesV2/`profile``
12552
+ # @param [String] risk_assessment_type
12553
+ # Optional. The risk assessment type of the security profile. Defaults to
12554
+ # ADVANCED_API_SECURITY.
12548
12555
  # @param [String] fields
12549
12556
  # Selector specifying which fields to include in a partial response.
12550
12557
  # @param [String] quota_user
@@ -12562,11 +12569,12 @@ module Google
12562
12569
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
12563
12570
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
12564
12571
  # @raise [Google::Apis::AuthorizationError] Authorization is required
12565
- def get_organization_security_profiles_v2(name, fields: nil, quota_user: nil, options: nil, &block)
12572
+ def get_organization_security_profiles_v2(name, risk_assessment_type: nil, fields: nil, quota_user: nil, options: nil, &block)
12566
12573
  command = make_simple_command(:get, 'v1/{+name}', options)
12567
12574
  command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2::Representation
12568
12575
  command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2
12569
12576
  command.params['name'] = name unless name.nil?
12577
+ command.query['riskAssessmentType'] = risk_assessment_type unless risk_assessment_type.nil?
12570
12578
  command.query['fields'] = fields unless fields.nil?
12571
12579
  command.query['quotaUser'] = quota_user unless quota_user.nil?
12572
12580
  execute_or_queue_command(command, &block)
@@ -12581,6 +12589,9 @@ module Google
12581
12589
  # @param [String] page_token
12582
12590
  # Optional. A page token, received from a previous `ListSecurityProfilesV2` call.
12583
12591
  # Provide this to retrieve the subsequent page.
12592
+ # @param [String] risk_assessment_type
12593
+ # Optional. The risk assessment type of the security profiles. Defaults to
12594
+ # ADVANCED_API_SECURITY.
12584
12595
  # @param [String] fields
12585
12596
  # Selector specifying which fields to include in a partial response.
12586
12597
  # @param [String] quota_user
@@ -12598,13 +12609,14 @@ module Google
12598
12609
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
12599
12610
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
12600
12611
  # @raise [Google::Apis::AuthorizationError] Authorization is required
12601
- def list_organization_security_profiles_v2s(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
12612
+ def list_organization_security_profiles_v2s(parent, page_size: nil, page_token: nil, risk_assessment_type: nil, fields: nil, quota_user: nil, options: nil, &block)
12602
12613
  command = make_simple_command(:get, 'v1/{+parent}/securityProfilesV2', options)
12603
12614
  command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityProfilesV2Response::Representation
12604
12615
  command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityProfilesV2Response
12605
12616
  command.params['parent'] = parent unless parent.nil?
12606
12617
  command.query['pageSize'] = page_size unless page_size.nil?
12607
12618
  command.query['pageToken'] = page_token unless page_token.nil?
12619
+ command.query['riskAssessmentType'] = risk_assessment_type unless risk_assessment_type.nil?
12608
12620
  command.query['fields'] = fields unless fields.nil?
12609
12621
  command.query['quotaUser'] = quota_user unless quota_user.nil?
12610
12622
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.115.0
4
+ version: 0.116.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.115.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.116.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
62
62
  rdoc_options: []
63
63
  require_paths: