google-apis-apigee_v1 0.115.0 → 0.117.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 +322 -6
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +134 -0
- data/lib/google/apis/apigee_v1/service.rb +23 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd64e1e987b13c739d595dad79b52c4b140d7919352f2119f5fc38e954d0aac4
|
|
4
|
+
data.tar.gz: 41fb306c54ecd20e6434ac4eb06655be8e910859886b0fad44b9a5cc699c6902
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4d33c479edd428fc84112b322da0e18f7e0e3931f95d6ee01686f47ecc6f5e7c9fe169fa3186df8877713e7ebd933af0e5f95d8c207cb08b856623cf86c7d09
|
|
7
|
+
data.tar.gz: 581f65a13d9a259a5c9b1fe505a8930888cbca410f46e25e8e7dafb6faff24f955fd71fa14c661f9721bff1eef248edd57f43e4d8ab93e65fd23f2e20929cb43
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
|
2
2
|
|
|
3
|
+
### v0.117.0 (2025-12-07)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251125
|
|
6
|
+
|
|
7
|
+
### v0.116.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251105
|
|
10
|
+
|
|
3
11
|
### v0.115.0 (2025-10-26)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251016
|
|
@@ -994,6 +994,32 @@ module Google
|
|
|
994
994
|
# @return [Fixnum]
|
|
995
995
|
attr_accessor :last_modified_at
|
|
996
996
|
|
|
997
|
+
# List of LLM operation configuration details associated with Apigee API proxies.
|
|
998
|
+
# Corresponds to the JSON property `llmOperationGroup`
|
|
999
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationGroup]
|
|
1000
|
+
attr_accessor :llm_operation_group
|
|
1001
|
+
|
|
1002
|
+
# Optional. Number of LLM tokens permitted per app by this API product for the
|
|
1003
|
+
# specified `llm_quota_interval` and `llm_quota_time_unit`. For example, an `
|
|
1004
|
+
# llm_quota` of 50,000, for an `llm_quota_interval` of 12 and an `
|
|
1005
|
+
# llm_quota_time_unit` of hours means 50,000 llm tokens are allowed to be used
|
|
1006
|
+
# every 12 hours.
|
|
1007
|
+
# Corresponds to the JSON property `llmQuota`
|
|
1008
|
+
# @return [String]
|
|
1009
|
+
attr_accessor :llm_quota
|
|
1010
|
+
|
|
1011
|
+
# Optional. Time interval over which the number of tokens from LLM responses is
|
|
1012
|
+
# calculated.
|
|
1013
|
+
# Corresponds to the JSON property `llmQuotaInterval`
|
|
1014
|
+
# @return [String]
|
|
1015
|
+
attr_accessor :llm_quota_interval
|
|
1016
|
+
|
|
1017
|
+
# Optional. Time unit defined for the `llm_quota_interval`. Valid values include
|
|
1018
|
+
# `minute`, `hour`, `day`, or `month`.
|
|
1019
|
+
# Corresponds to the JSON property `llmQuotaTimeUnit`
|
|
1020
|
+
# @return [String]
|
|
1021
|
+
attr_accessor :llm_quota_time_unit
|
|
1022
|
+
|
|
997
1023
|
# Internal name of the API product. Characters you can use in the name are
|
|
998
1024
|
# restricted to: `A-Z0-9._\-$ %`. **Note:** The internal name cannot be edited
|
|
999
1025
|
# when updating the API product.
|
|
@@ -1079,6 +1105,10 @@ module Google
|
|
|
1079
1105
|
@graphql_operation_group = args[:graphql_operation_group] if args.key?(:graphql_operation_group)
|
|
1080
1106
|
@grpc_operation_group = args[:grpc_operation_group] if args.key?(:grpc_operation_group)
|
|
1081
1107
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
|
1108
|
+
@llm_operation_group = args[:llm_operation_group] if args.key?(:llm_operation_group)
|
|
1109
|
+
@llm_quota = args[:llm_quota] if args.key?(:llm_quota)
|
|
1110
|
+
@llm_quota_interval = args[:llm_quota_interval] if args.key?(:llm_quota_interval)
|
|
1111
|
+
@llm_quota_time_unit = args[:llm_quota_time_unit] if args.key?(:llm_quota_time_unit)
|
|
1082
1112
|
@name = args[:name] if args.key?(:name)
|
|
1083
1113
|
@operation_group = args[:operation_group] if args.key?(:operation_group)
|
|
1084
1114
|
@proxies = args[:proxies] if args.key?(:proxies)
|
|
@@ -2068,6 +2098,16 @@ module Google
|
|
|
2068
2098
|
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequest
|
|
2069
2099
|
include Google::Apis::Core::Hashable
|
|
2070
2100
|
|
|
2101
|
+
# Message for the array of API Hub APIs.
|
|
2102
|
+
# Corresponds to the JSON property `apiHubApis`
|
|
2103
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray]
|
|
2104
|
+
attr_accessor :api_hub_apis
|
|
2105
|
+
|
|
2106
|
+
# Message for the array of API Hub Gateways.
|
|
2107
|
+
# Corresponds to the JSON property `apiHubGateways`
|
|
2108
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray]
|
|
2109
|
+
attr_accessor :api_hub_gateways
|
|
2110
|
+
|
|
2071
2111
|
# Message for the array of resources. For Apigee, the proxies are resources.
|
|
2072
2112
|
# Corresponds to the JSON property `include`
|
|
2073
2113
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray]
|
|
@@ -2096,8 +2136,10 @@ module Google
|
|
|
2096
2136
|
# @return [String]
|
|
2097
2137
|
attr_accessor :profile
|
|
2098
2138
|
|
|
2099
|
-
# Optional. Scope of the resources for the computation.
|
|
2100
|
-
#
|
|
2139
|
+
# Optional. Scope of the resources for the computation. When computing scores
|
|
2140
|
+
# for Apigee proxies, the scope should be set to the environment of the
|
|
2141
|
+
# resources. When computing scores for API Hub deployments, api_hub_scope should
|
|
2142
|
+
# be set instead.
|
|
2101
2143
|
# Corresponds to the JSON property `scope`
|
|
2102
2144
|
# @return [String]
|
|
2103
2145
|
attr_accessor :scope
|
|
@@ -2108,6 +2150,8 @@ module Google
|
|
|
2108
2150
|
|
|
2109
2151
|
# Update properties of this object
|
|
2110
2152
|
def update!(**args)
|
|
2153
|
+
@api_hub_apis = args[:api_hub_apis] if args.key?(:api_hub_apis)
|
|
2154
|
+
@api_hub_gateways = args[:api_hub_gateways] if args.key?(:api_hub_gateways)
|
|
2111
2155
|
@include = args[:include] if args.key?(:include)
|
|
2112
2156
|
@include_all_resources = args[:include_all_resources] if args.key?(:include_all_resources)
|
|
2113
2157
|
@page_size = args[:page_size] if args.key?(:page_size)
|
|
@@ -2117,6 +2161,46 @@ module Google
|
|
|
2117
2161
|
end
|
|
2118
2162
|
end
|
|
2119
2163
|
|
|
2164
|
+
# Message for the array of API Hub APIs.
|
|
2165
|
+
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray
|
|
2166
|
+
include Google::Apis::Core::Hashable
|
|
2167
|
+
|
|
2168
|
+
# Required. The array of API Hub API IDs. Format: `projects/`project`/locations/`
|
|
2169
|
+
# location`/apis/`api``
|
|
2170
|
+
# Corresponds to the JSON property `apis`
|
|
2171
|
+
# @return [Array<String>]
|
|
2172
|
+
attr_accessor :apis
|
|
2173
|
+
|
|
2174
|
+
def initialize(**args)
|
|
2175
|
+
update!(**args)
|
|
2176
|
+
end
|
|
2177
|
+
|
|
2178
|
+
# Update properties of this object
|
|
2179
|
+
def update!(**args)
|
|
2180
|
+
@apis = args[:apis] if args.key?(:apis)
|
|
2181
|
+
end
|
|
2182
|
+
end
|
|
2183
|
+
|
|
2184
|
+
# Message for the array of API Hub Gateways.
|
|
2185
|
+
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray
|
|
2186
|
+
include Google::Apis::Core::Hashable
|
|
2187
|
+
|
|
2188
|
+
# Required. The array of API Hub Gateway IDs. Format: `projects/`project`/
|
|
2189
|
+
# locations/`location`/plugins/`plugin`/instances/`instance``
|
|
2190
|
+
# Corresponds to the JSON property `gateways`
|
|
2191
|
+
# @return [Array<String>]
|
|
2192
|
+
attr_accessor :gateways
|
|
2193
|
+
|
|
2194
|
+
def initialize(**args)
|
|
2195
|
+
update!(**args)
|
|
2196
|
+
end
|
|
2197
|
+
|
|
2198
|
+
# Update properties of this object
|
|
2199
|
+
def update!(**args)
|
|
2200
|
+
@gateways = args[:gateways] if args.key?(:gateways)
|
|
2201
|
+
end
|
|
2202
|
+
end
|
|
2203
|
+
|
|
2120
2204
|
# Message for include_all_resources option.
|
|
2121
2205
|
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll
|
|
2122
2206
|
include Google::Apis::Core::Hashable
|
|
@@ -2153,7 +2237,9 @@ module Google
|
|
|
2153
2237
|
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArrayResource
|
|
2154
2238
|
include Google::Apis::Core::Hashable
|
|
2155
2239
|
|
|
2156
|
-
# Required. Name of this resource.
|
|
2240
|
+
# Required. Name of this resource. For an Apigee API Proxy, this should be the
|
|
2241
|
+
# id of the API proxy. For an API Hub Deployment, this should be the id of the
|
|
2242
|
+
# deployment.
|
|
2157
2243
|
# Corresponds to the JSON property `name`
|
|
2158
2244
|
# @return [String]
|
|
2159
2245
|
attr_accessor :name
|
|
@@ -5907,6 +5993,13 @@ module Google
|
|
|
5907
5993
|
attr_accessor :encrypted
|
|
5908
5994
|
alias_method :encrypted?, :encrypted
|
|
5909
5995
|
|
|
5996
|
+
# Optional. Flag that specifies whether entry values will be masked when
|
|
5997
|
+
# returned.
|
|
5998
|
+
# Corresponds to the JSON property `maskedValues`
|
|
5999
|
+
# @return [Boolean]
|
|
6000
|
+
attr_accessor :masked_values
|
|
6001
|
+
alias_method :masked_values?, :masked_values
|
|
6002
|
+
|
|
5910
6003
|
# Required. ID of the key value map.
|
|
5911
6004
|
# Corresponds to the JSON property `name`
|
|
5912
6005
|
# @return [String]
|
|
@@ -5919,6 +6012,7 @@ module Google
|
|
|
5919
6012
|
# Update properties of this object
|
|
5920
6013
|
def update!(**args)
|
|
5921
6014
|
@encrypted = args[:encrypted] if args.key?(:encrypted)
|
|
6015
|
+
@masked_values = args[:masked_values] if args.key?(:masked_values)
|
|
5922
6016
|
@name = args[:name] if args.key?(:name)
|
|
5923
6017
|
end
|
|
5924
6018
|
end
|
|
@@ -7039,6 +7133,143 @@ module Google
|
|
|
7039
7133
|
end
|
|
7040
7134
|
end
|
|
7041
7135
|
|
|
7136
|
+
# Represents the pairing of REST resource path, model and the actions (verbs)
|
|
7137
|
+
# allowed on the resource path.
|
|
7138
|
+
class GoogleCloudApigeeV1LlmOperation
|
|
7139
|
+
include Google::Apis::Core::Hashable
|
|
7140
|
+
|
|
7141
|
+
# Optional. methods refers to the REST verbs as in https://httpwg.org/specs/
|
|
7142
|
+
# rfc9110.html For example: GET, POST, PUT, DELETE, etc. They need to be in
|
|
7143
|
+
# uppercase. When none specified, all verb types are allowed.
|
|
7144
|
+
# Corresponds to the JSON property `methods`
|
|
7145
|
+
# @return [Array<String>]
|
|
7146
|
+
attr_accessor :methods_prop
|
|
7147
|
+
|
|
7148
|
+
# Required. LLM model name associated with the API proxy
|
|
7149
|
+
# Corresponds to the JSON property `model`
|
|
7150
|
+
# @return [String]
|
|
7151
|
+
attr_accessor :model
|
|
7152
|
+
|
|
7153
|
+
# Required. REST resource path associated with the API proxy or remote service.
|
|
7154
|
+
# Corresponds to the JSON property `resource`
|
|
7155
|
+
# @return [String]
|
|
7156
|
+
attr_accessor :resource
|
|
7157
|
+
|
|
7158
|
+
def initialize(**args)
|
|
7159
|
+
update!(**args)
|
|
7160
|
+
end
|
|
7161
|
+
|
|
7162
|
+
# Update properties of this object
|
|
7163
|
+
def update!(**args)
|
|
7164
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
|
7165
|
+
@model = args[:model] if args.key?(:model)
|
|
7166
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
7167
|
+
end
|
|
7168
|
+
end
|
|
7169
|
+
|
|
7170
|
+
# Binds the resources in an API proxy or remote service with the allowed REST
|
|
7171
|
+
# methods and associated quota enforcement.
|
|
7172
|
+
class GoogleCloudApigeeV1LlmOperationConfig
|
|
7173
|
+
include Google::Apis::Core::Hashable
|
|
7174
|
+
|
|
7175
|
+
# Required. Name of the API proxy or remote service with which the resources,
|
|
7176
|
+
# methods, and quota are associated.
|
|
7177
|
+
# Corresponds to the JSON property `apiSource`
|
|
7178
|
+
# @return [String]
|
|
7179
|
+
attr_accessor :api_source
|
|
7180
|
+
|
|
7181
|
+
# Optional. Custom attributes associated with the operation.
|
|
7182
|
+
# Corresponds to the JSON property `attributes`
|
|
7183
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
|
7184
|
+
attr_accessor :attributes
|
|
7185
|
+
|
|
7186
|
+
# Required. List of resource/method/model for the API proxy to which quota will
|
|
7187
|
+
# applied. **Note**: Currently, you can specify only a single resource/method/
|
|
7188
|
+
# model mapping. The call will fail if more than one resource/method/model
|
|
7189
|
+
# mappings are provided.
|
|
7190
|
+
# Corresponds to the JSON property `llmOperations`
|
|
7191
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperation>]
|
|
7192
|
+
attr_accessor :llm_operations
|
|
7193
|
+
|
|
7194
|
+
# LLM Token Quota contains the essential parameters needed that can be applied
|
|
7195
|
+
# on the resources, methods, models, API source combination associated with this
|
|
7196
|
+
# API product. While LLM Token Quota is optional, setting it prevents requests
|
|
7197
|
+
# from exceeding the provisioned parameters.
|
|
7198
|
+
# Corresponds to the JSON property `llmTokenQuota`
|
|
7199
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmTokenQuota]
|
|
7200
|
+
attr_accessor :llm_token_quota
|
|
7201
|
+
|
|
7202
|
+
def initialize(**args)
|
|
7203
|
+
update!(**args)
|
|
7204
|
+
end
|
|
7205
|
+
|
|
7206
|
+
# Update properties of this object
|
|
7207
|
+
def update!(**args)
|
|
7208
|
+
@api_source = args[:api_source] if args.key?(:api_source)
|
|
7209
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
7210
|
+
@llm_operations = args[:llm_operations] if args.key?(:llm_operations)
|
|
7211
|
+
@llm_token_quota = args[:llm_token_quota] if args.key?(:llm_token_quota)
|
|
7212
|
+
end
|
|
7213
|
+
end
|
|
7214
|
+
|
|
7215
|
+
# List of LLM operation configuration details associated with Apigee API proxies.
|
|
7216
|
+
class GoogleCloudApigeeV1LlmOperationGroup
|
|
7217
|
+
include Google::Apis::Core::Hashable
|
|
7218
|
+
|
|
7219
|
+
# Required. List of LLM operation configurations for either Apigee API proxies
|
|
7220
|
+
# that are associated with this API product.
|
|
7221
|
+
# Corresponds to the JSON property `operationConfigs`
|
|
7222
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationConfig>]
|
|
7223
|
+
attr_accessor :operation_configs
|
|
7224
|
+
|
|
7225
|
+
def initialize(**args)
|
|
7226
|
+
update!(**args)
|
|
7227
|
+
end
|
|
7228
|
+
|
|
7229
|
+
# Update properties of this object
|
|
7230
|
+
def update!(**args)
|
|
7231
|
+
@operation_configs = args[:operation_configs] if args.key?(:operation_configs)
|
|
7232
|
+
end
|
|
7233
|
+
end
|
|
7234
|
+
|
|
7235
|
+
# LLM Token Quota contains the essential parameters needed that can be applied
|
|
7236
|
+
# on the resources, methods, models, API source combination associated with this
|
|
7237
|
+
# API product. While LLM Token Quota is optional, setting it prevents requests
|
|
7238
|
+
# from exceeding the provisioned parameters.
|
|
7239
|
+
class GoogleCloudApigeeV1LlmTokenQuota
|
|
7240
|
+
include Google::Apis::Core::Hashable
|
|
7241
|
+
|
|
7242
|
+
# Required. Time interval over which the number of request messages is
|
|
7243
|
+
# calculated.
|
|
7244
|
+
# Corresponds to the JSON property `interval`
|
|
7245
|
+
# @return [String]
|
|
7246
|
+
attr_accessor :interval
|
|
7247
|
+
|
|
7248
|
+
# Required. Upper limit of LLM tokens allowed for the time interval and time
|
|
7249
|
+
# unit specified. Requests exceeding this limit will be rejected.
|
|
7250
|
+
# Corresponds to the JSON property `limit`
|
|
7251
|
+
# @return [String]
|
|
7252
|
+
attr_accessor :limit
|
|
7253
|
+
|
|
7254
|
+
# Optional. Time unit defined for the `interval`. Valid values include `minute`,
|
|
7255
|
+
# `hour`, `day`, or `month`. If `limit` and `interval` are valid, the default
|
|
7256
|
+
# value is `hour`; otherwise, the default is null.
|
|
7257
|
+
# Corresponds to the JSON property `timeUnit`
|
|
7258
|
+
# @return [String]
|
|
7259
|
+
attr_accessor :time_unit
|
|
7260
|
+
|
|
7261
|
+
def initialize(**args)
|
|
7262
|
+
update!(**args)
|
|
7263
|
+
end
|
|
7264
|
+
|
|
7265
|
+
# Update properties of this object
|
|
7266
|
+
def update!(**args)
|
|
7267
|
+
@interval = args[:interval] if args.key?(:interval)
|
|
7268
|
+
@limit = args[:limit] if args.key?(:limit)
|
|
7269
|
+
@time_unit = args[:time_unit] if args.key?(:time_unit)
|
|
7270
|
+
end
|
|
7271
|
+
end
|
|
7272
|
+
|
|
7042
7273
|
# MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
|
|
7043
7274
|
# on the instance (day of the week and time of day).
|
|
7044
7275
|
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
|
@@ -10330,7 +10561,14 @@ module Google
|
|
|
10330
10561
|
class GoogleCloudApigeeV1SecurityAssessmentResultResource
|
|
10331
10562
|
include Google::Apis::Core::Hashable
|
|
10332
10563
|
|
|
10333
|
-
#
|
|
10564
|
+
# Additional details if the resource is an API Hub deployment.
|
|
10565
|
+
# Corresponds to the JSON property `apiHubDeploymentDetails`
|
|
10566
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails]
|
|
10567
|
+
attr_accessor :api_hub_deployment_details
|
|
10568
|
+
|
|
10569
|
+
# Required. Name of this resource. For an Apigee API Proxy, this should be the
|
|
10570
|
+
# id of the API proxy. For an API Hub Deployment, this should be the id of the
|
|
10571
|
+
# deployment.
|
|
10334
10572
|
# Corresponds to the JSON property `name`
|
|
10335
10573
|
# @return [String]
|
|
10336
10574
|
attr_accessor :name
|
|
@@ -10351,12 +10589,57 @@ module Google
|
|
|
10351
10589
|
|
|
10352
10590
|
# Update properties of this object
|
|
10353
10591
|
def update!(**args)
|
|
10592
|
+
@api_hub_deployment_details = args[:api_hub_deployment_details] if args.key?(:api_hub_deployment_details)
|
|
10354
10593
|
@name = args[:name] if args.key?(:name)
|
|
10355
10594
|
@resource_revision_id = args[:resource_revision_id] if args.key?(:resource_revision_id)
|
|
10356
10595
|
@type = args[:type] if args.key?(:type)
|
|
10357
10596
|
end
|
|
10358
10597
|
end
|
|
10359
10598
|
|
|
10599
|
+
# Additional details if the resource is an API Hub deployment.
|
|
10600
|
+
class GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
|
|
10601
|
+
include Google::Apis::Core::Hashable
|
|
10602
|
+
|
|
10603
|
+
# The display name of the API Hub deployment.
|
|
10604
|
+
# Corresponds to the JSON property `displayName`
|
|
10605
|
+
# @return [String]
|
|
10606
|
+
attr_accessor :display_name
|
|
10607
|
+
|
|
10608
|
+
# The gateway for the API Hub deployment. Format: `projects/`project`/locations/`
|
|
10609
|
+
# location`/plugins/`plugin`/instances/`instance``
|
|
10610
|
+
# Corresponds to the JSON property `gateway`
|
|
10611
|
+
# @return [String]
|
|
10612
|
+
attr_accessor :gateway
|
|
10613
|
+
|
|
10614
|
+
# The gateway type for the API Hub deployment.
|
|
10615
|
+
# Corresponds to the JSON property `gatewayType`
|
|
10616
|
+
# @return [String]
|
|
10617
|
+
attr_accessor :gateway_type
|
|
10618
|
+
|
|
10619
|
+
# The resource uri for the API Hub deployment.
|
|
10620
|
+
# Corresponds to the JSON property `resourceUri`
|
|
10621
|
+
# @return [String]
|
|
10622
|
+
attr_accessor :resource_uri
|
|
10623
|
+
|
|
10624
|
+
# The source project for the API Hub deployment.
|
|
10625
|
+
# Corresponds to the JSON property `sourceProject`
|
|
10626
|
+
# @return [String]
|
|
10627
|
+
attr_accessor :source_project
|
|
10628
|
+
|
|
10629
|
+
def initialize(**args)
|
|
10630
|
+
update!(**args)
|
|
10631
|
+
end
|
|
10632
|
+
|
|
10633
|
+
# Update properties of this object
|
|
10634
|
+
def update!(**args)
|
|
10635
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
10636
|
+
@gateway = args[:gateway] if args.key?(:gateway)
|
|
10637
|
+
@gateway_type = args[:gateway_type] if args.key?(:gateway_type)
|
|
10638
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
|
10639
|
+
@source_project = args[:source_project] if args.key?(:source_project)
|
|
10640
|
+
end
|
|
10641
|
+
end
|
|
10642
|
+
|
|
10360
10643
|
# The result of the assessment.
|
|
10361
10644
|
class GoogleCloudApigeeV1SecurityAssessmentResultScoringResult
|
|
10362
10645
|
include Google::Apis::Core::Hashable
|
|
@@ -10937,6 +11220,12 @@ module Google
|
|
|
10937
11220
|
# @return [Hash<String,Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig>]
|
|
10938
11221
|
attr_accessor :profile_assessment_configs
|
|
10939
11222
|
|
|
11223
|
+
# Optional. The risk assessment type of the security profile. Defaults to
|
|
11224
|
+
# ADVANCED_API_SECURITY.
|
|
11225
|
+
# Corresponds to the JSON property `riskAssessmentType`
|
|
11226
|
+
# @return [String]
|
|
11227
|
+
attr_accessor :risk_assessment_type
|
|
11228
|
+
|
|
10940
11229
|
# Output only. The time of the security profile update.
|
|
10941
11230
|
# Corresponds to the JSON property `updateTime`
|
|
10942
11231
|
# @return [String]
|
|
@@ -10953,6 +11242,7 @@ module Google
|
|
|
10953
11242
|
@google_defined = args[:google_defined] if args.key?(:google_defined)
|
|
10954
11243
|
@name = args[:name] if args.key?(:name)
|
|
10955
11244
|
@profile_assessment_configs = args[:profile_assessment_configs] if args.key?(:profile_assessment_configs)
|
|
11245
|
+
@risk_assessment_type = args[:risk_assessment_type] if args.key?(:risk_assessment_type)
|
|
10956
11246
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
10957
11247
|
end
|
|
10958
11248
|
end
|
|
@@ -10961,6 +11251,11 @@ module Google
|
|
|
10961
11251
|
class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig
|
|
10962
11252
|
include Google::Apis::Core::Hashable
|
|
10963
11253
|
|
|
11254
|
+
# Message for the array of API Hub Gateway Types.
|
|
11255
|
+
# Corresponds to the JSON property `include`
|
|
11256
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray]
|
|
11257
|
+
attr_accessor :include
|
|
11258
|
+
|
|
10964
11259
|
# The weight of the assessment.
|
|
10965
11260
|
# Corresponds to the JSON property `weight`
|
|
10966
11261
|
# @return [String]
|
|
@@ -10972,10 +11267,30 @@ module Google
|
|
|
10972
11267
|
|
|
10973
11268
|
# Update properties of this object
|
|
10974
11269
|
def update!(**args)
|
|
11270
|
+
@include = args[:include] if args.key?(:include)
|
|
10975
11271
|
@weight = args[:weight] if args.key?(:weight)
|
|
10976
11272
|
end
|
|
10977
11273
|
end
|
|
10978
11274
|
|
|
11275
|
+
# Message for the array of API Hub Gateway Types.
|
|
11276
|
+
class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray
|
|
11277
|
+
include Google::Apis::Core::Hashable
|
|
11278
|
+
|
|
11279
|
+
# Required. The array of API Hub Gateway Types.
|
|
11280
|
+
# Corresponds to the JSON property `gatewayTypes`
|
|
11281
|
+
# @return [Array<String>]
|
|
11282
|
+
attr_accessor :gateway_types
|
|
11283
|
+
|
|
11284
|
+
def initialize(**args)
|
|
11285
|
+
update!(**args)
|
|
11286
|
+
end
|
|
11287
|
+
|
|
11288
|
+
# Update properties of this object
|
|
11289
|
+
def update!(**args)
|
|
11290
|
+
@gateway_types = args[:gateway_types] if args.key?(:gateway_types)
|
|
11291
|
+
end
|
|
11292
|
+
end
|
|
11293
|
+
|
|
10979
11294
|
# SecurityReport saves all the information about the created security report.
|
|
10980
11295
|
class GoogleCloudApigeeV1SecurityReport
|
|
10981
11296
|
include Google::Apis::Core::Hashable
|
|
@@ -12733,8 +13048,9 @@ module Google
|
|
|
12733
13048
|
attr_accessor :operations
|
|
12734
13049
|
|
|
12735
13050
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
12736
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
12737
|
-
# when attempting to list all resources across all supported
|
|
13051
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
13052
|
+
# For example, when attempting to list all resources across all supported
|
|
13053
|
+
# locations.
|
|
12738
13054
|
# Corresponds to the JSON property `unreachable`
|
|
12739
13055
|
# @return [Array<String>]
|
|
12740
13056
|
attr_accessor :unreachable
|
|
@@ -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.117.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 = "
|
|
25
|
+
REVISION = "20251125"
|
|
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
|
|
|
@@ -1072,6 +1084,30 @@ module Google
|
|
|
1072
1084
|
include Google::Apis::Core::JsonObjectSupport
|
|
1073
1085
|
end
|
|
1074
1086
|
|
|
1087
|
+
class GoogleCloudApigeeV1LlmOperation
|
|
1088
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1089
|
+
|
|
1090
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1091
|
+
end
|
|
1092
|
+
|
|
1093
|
+
class GoogleCloudApigeeV1LlmOperationConfig
|
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1095
|
+
|
|
1096
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1097
|
+
end
|
|
1098
|
+
|
|
1099
|
+
class GoogleCloudApigeeV1LlmOperationGroup
|
|
1100
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1101
|
+
|
|
1102
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1105
|
+
class GoogleCloudApigeeV1LlmTokenQuota
|
|
1106
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1107
|
+
|
|
1108
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1109
|
+
end
|
|
1110
|
+
|
|
1075
1111
|
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
|
1076
1112
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1077
1113
|
|
|
@@ -1576,6 +1612,12 @@ module Google
|
|
|
1576
1612
|
include Google::Apis::Core::JsonObjectSupport
|
|
1577
1613
|
end
|
|
1578
1614
|
|
|
1615
|
+
class GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
|
|
1616
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1617
|
+
|
|
1618
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1619
|
+
end
|
|
1620
|
+
|
|
1579
1621
|
class GoogleCloudApigeeV1SecurityAssessmentResultScoringResult
|
|
1580
1622
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1581
1623
|
|
|
@@ -1660,6 +1702,12 @@ module Google
|
|
|
1660
1702
|
include Google::Apis::Core::JsonObjectSupport
|
|
1661
1703
|
end
|
|
1662
1704
|
|
|
1705
|
+
class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray
|
|
1706
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1707
|
+
|
|
1708
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1709
|
+
end
|
|
1710
|
+
|
|
1663
1711
|
class GoogleCloudApigeeV1SecurityReport
|
|
1664
1712
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1665
1713
|
|
|
@@ -2199,6 +2247,11 @@ module Google
|
|
|
2199
2247
|
property :grpc_operation_group, as: 'grpcOperationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationGroup::Representation
|
|
2200
2248
|
|
|
2201
2249
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
|
2250
|
+
property :llm_operation_group, as: 'llmOperationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationGroup::Representation
|
|
2251
|
+
|
|
2252
|
+
property :llm_quota, as: 'llmQuota'
|
|
2253
|
+
property :llm_quota_interval, as: 'llmQuotaInterval'
|
|
2254
|
+
property :llm_quota_time_unit, as: 'llmQuotaTimeUnit'
|
|
2202
2255
|
property :name, as: 'name'
|
|
2203
2256
|
property :operation_group, as: 'operationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup::Representation
|
|
2204
2257
|
|
|
@@ -2437,6 +2490,10 @@ module Google
|
|
|
2437
2490
|
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequest
|
|
2438
2491
|
# @private
|
|
2439
2492
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2493
|
+
property :api_hub_apis, as: 'apiHubApis', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray::Representation
|
|
2494
|
+
|
|
2495
|
+
property :api_hub_gateways, as: 'apiHubGateways', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray::Representation
|
|
2496
|
+
|
|
2440
2497
|
property :include, as: 'include', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray::Representation
|
|
2441
2498
|
|
|
2442
2499
|
property :include_all_resources, as: 'includeAllResources', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll::Representation
|
|
@@ -2448,6 +2505,20 @@ module Google
|
|
|
2448
2505
|
end
|
|
2449
2506
|
end
|
|
2450
2507
|
|
|
2508
|
+
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubApiArray
|
|
2509
|
+
# @private
|
|
2510
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2511
|
+
collection :apis, as: 'apis'
|
|
2512
|
+
end
|
|
2513
|
+
end
|
|
2514
|
+
|
|
2515
|
+
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestApiHubGatewayArray
|
|
2516
|
+
# @private
|
|
2517
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2518
|
+
collection :gateways, as: 'gateways'
|
|
2519
|
+
end
|
|
2520
|
+
end
|
|
2521
|
+
|
|
2451
2522
|
class GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestIncludeAll
|
|
2452
2523
|
# @private
|
|
2453
2524
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3443,6 +3514,7 @@ module Google
|
|
|
3443
3514
|
# @private
|
|
3444
3515
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3445
3516
|
property :encrypted, as: 'encrypted'
|
|
3517
|
+
property :masked_values, as: 'maskedValues'
|
|
3446
3518
|
property :name, as: 'name'
|
|
3447
3519
|
end
|
|
3448
3520
|
end
|
|
@@ -3838,6 +3910,45 @@ module Google
|
|
|
3838
3910
|
end
|
|
3839
3911
|
end
|
|
3840
3912
|
|
|
3913
|
+
class GoogleCloudApigeeV1LlmOperation
|
|
3914
|
+
# @private
|
|
3915
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3916
|
+
collection :methods_prop, as: 'methods'
|
|
3917
|
+
property :model, as: 'model'
|
|
3918
|
+
property :resource, as: 'resource'
|
|
3919
|
+
end
|
|
3920
|
+
end
|
|
3921
|
+
|
|
3922
|
+
class GoogleCloudApigeeV1LlmOperationConfig
|
|
3923
|
+
# @private
|
|
3924
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3925
|
+
property :api_source, as: 'apiSource'
|
|
3926
|
+
collection :attributes, as: 'attributes', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute::Representation
|
|
3927
|
+
|
|
3928
|
+
collection :llm_operations, as: 'llmOperations', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperation, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperation::Representation
|
|
3929
|
+
|
|
3930
|
+
property :llm_token_quota, as: 'llmTokenQuota', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmTokenQuota, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmTokenQuota::Representation
|
|
3931
|
+
|
|
3932
|
+
end
|
|
3933
|
+
end
|
|
3934
|
+
|
|
3935
|
+
class GoogleCloudApigeeV1LlmOperationGroup
|
|
3936
|
+
# @private
|
|
3937
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3938
|
+
collection :operation_configs, as: 'operationConfigs', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationConfig::Representation
|
|
3939
|
+
|
|
3940
|
+
end
|
|
3941
|
+
end
|
|
3942
|
+
|
|
3943
|
+
class GoogleCloudApigeeV1LlmTokenQuota
|
|
3944
|
+
# @private
|
|
3945
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3946
|
+
property :interval, as: 'interval'
|
|
3947
|
+
property :limit, as: 'limit'
|
|
3948
|
+
property :time_unit, as: 'timeUnit'
|
|
3949
|
+
end
|
|
3950
|
+
end
|
|
3951
|
+
|
|
3841
3952
|
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
|
3842
3953
|
# @private
|
|
3843
3954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4713,12 +4824,25 @@ module Google
|
|
|
4713
4824
|
class GoogleCloudApigeeV1SecurityAssessmentResultResource
|
|
4714
4825
|
# @private
|
|
4715
4826
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4827
|
+
property :api_hub_deployment_details, as: 'apiHubDeploymentDetails', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails::Representation
|
|
4828
|
+
|
|
4716
4829
|
property :name, as: 'name'
|
|
4717
4830
|
property :resource_revision_id, as: 'resourceRevisionId'
|
|
4718
4831
|
property :type, as: 'type'
|
|
4719
4832
|
end
|
|
4720
4833
|
end
|
|
4721
4834
|
|
|
4835
|
+
class GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
|
|
4836
|
+
# @private
|
|
4837
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4838
|
+
property :display_name, as: 'displayName'
|
|
4839
|
+
property :gateway, as: 'gateway'
|
|
4840
|
+
property :gateway_type, as: 'gatewayType'
|
|
4841
|
+
property :resource_uri, as: 'resourceUri'
|
|
4842
|
+
property :source_project, as: 'sourceProject'
|
|
4843
|
+
end
|
|
4844
|
+
end
|
|
4845
|
+
|
|
4722
4846
|
class GoogleCloudApigeeV1SecurityAssessmentResultScoringResult
|
|
4723
4847
|
# @private
|
|
4724
4848
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4871,6 +4995,7 @@ module Google
|
|
|
4871
4995
|
property :name, as: 'name'
|
|
4872
4996
|
hash :profile_assessment_configs, as: 'profileAssessmentConfigs', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig::Representation
|
|
4873
4997
|
|
|
4998
|
+
property :risk_assessment_type, as: 'riskAssessmentType'
|
|
4874
4999
|
property :update_time, as: 'updateTime'
|
|
4875
5000
|
end
|
|
4876
5001
|
end
|
|
@@ -4878,10 +5003,19 @@ module Google
|
|
|
4878
5003
|
class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig
|
|
4879
5004
|
# @private
|
|
4880
5005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5006
|
+
property :include, as: 'include', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray::Representation
|
|
5007
|
+
|
|
4881
5008
|
property :weight, as: 'weight'
|
|
4882
5009
|
end
|
|
4883
5010
|
end
|
|
4884
5011
|
|
|
5012
|
+
class GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray
|
|
5013
|
+
# @private
|
|
5014
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5015
|
+
collection :gateway_types, as: 'gatewayTypes'
|
|
5016
|
+
end
|
|
5017
|
+
end
|
|
5018
|
+
|
|
4885
5019
|
class GoogleCloudApigeeV1SecurityReport
|
|
4886
5020
|
# @private
|
|
4887
5021
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8782,8 +8782,8 @@ module Google
|
|
|
8782
8782
|
|
|
8783
8783
|
# Delete a SecurityAction.
|
|
8784
8784
|
# @param [String] name
|
|
8785
|
-
# Required. The name of the security
|
|
8786
|
-
#
|
|
8785
|
+
# Required. The name of the security action to delete. Format: `organizations/`
|
|
8786
|
+
# org`/environment/`env`/securityActions/`security_action``
|
|
8787
8787
|
# @param [String] fields
|
|
8788
8788
|
# Selector specifying which fields to include in a partial response.
|
|
8789
8789
|
# @param [String] quota_user
|
|
@@ -11460,11 +11460,12 @@ module Google
|
|
|
11460
11460
|
# The standard list page token.
|
|
11461
11461
|
# @param [Boolean] return_partial_success
|
|
11462
11462
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
11463
|
-
# those that are unreachable are returned in the
|
|
11464
|
-
# unreachable
|
|
11465
|
-
#
|
|
11466
|
-
# by default
|
|
11467
|
-
# explicitly documented otherwise in service or product specific
|
|
11463
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
11464
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
11465
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
11466
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
11467
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
11468
|
+
# documentation.
|
|
11468
11469
|
# @param [String] fields
|
|
11469
11470
|
# Selector specifying which fields to include in a partial response.
|
|
11470
11471
|
# @param [String] quota_user
|
|
@@ -12514,6 +12515,9 @@ module Google
|
|
|
12514
12515
|
# @param [String] name
|
|
12515
12516
|
# Required. The name of the security profile v2 to delete. Format: `
|
|
12516
12517
|
# organizations/`org`/securityProfilesV2/`profile``
|
|
12518
|
+
# @param [String] risk_assessment_type
|
|
12519
|
+
# Optional. The risk assessment type of the security profile. Defaults to
|
|
12520
|
+
# ADVANCED_API_SECURITY.
|
|
12517
12521
|
# @param [String] fields
|
|
12518
12522
|
# Selector specifying which fields to include in a partial response.
|
|
12519
12523
|
# @param [String] quota_user
|
|
@@ -12531,11 +12535,12 @@ module Google
|
|
|
12531
12535
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
12532
12536
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
12533
12537
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
12534
|
-
def delete_organization_security_profiles_v2(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
12538
|
+
def delete_organization_security_profiles_v2(name, risk_assessment_type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
12535
12539
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
|
12536
12540
|
command.response_representation = Google::Apis::ApigeeV1::GoogleProtobufEmpty::Representation
|
|
12537
12541
|
command.response_class = Google::Apis::ApigeeV1::GoogleProtobufEmpty
|
|
12538
12542
|
command.params['name'] = name unless name.nil?
|
|
12543
|
+
command.query['riskAssessmentType'] = risk_assessment_type unless risk_assessment_type.nil?
|
|
12539
12544
|
command.query['fields'] = fields unless fields.nil?
|
|
12540
12545
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
12541
12546
|
execute_or_queue_command(command, &block)
|
|
@@ -12545,6 +12550,9 @@ module Google
|
|
|
12545
12550
|
# @param [String] name
|
|
12546
12551
|
# Required. The name of the security profile v2 to get. Format: `organizations/`
|
|
12547
12552
|
# org`/securityProfilesV2/`profile``
|
|
12553
|
+
# @param [String] risk_assessment_type
|
|
12554
|
+
# Optional. The risk assessment type of the security profile. Defaults to
|
|
12555
|
+
# ADVANCED_API_SECURITY.
|
|
12548
12556
|
# @param [String] fields
|
|
12549
12557
|
# Selector specifying which fields to include in a partial response.
|
|
12550
12558
|
# @param [String] quota_user
|
|
@@ -12562,11 +12570,12 @@ module Google
|
|
|
12562
12570
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
12563
12571
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
12564
12572
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
12565
|
-
def get_organization_security_profiles_v2(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
12573
|
+
def get_organization_security_profiles_v2(name, risk_assessment_type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
12566
12574
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
12567
12575
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2::Representation
|
|
12568
12576
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2
|
|
12569
12577
|
command.params['name'] = name unless name.nil?
|
|
12578
|
+
command.query['riskAssessmentType'] = risk_assessment_type unless risk_assessment_type.nil?
|
|
12570
12579
|
command.query['fields'] = fields unless fields.nil?
|
|
12571
12580
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
12572
12581
|
execute_or_queue_command(command, &block)
|
|
@@ -12581,6 +12590,9 @@ module Google
|
|
|
12581
12590
|
# @param [String] page_token
|
|
12582
12591
|
# Optional. A page token, received from a previous `ListSecurityProfilesV2` call.
|
|
12583
12592
|
# Provide this to retrieve the subsequent page.
|
|
12593
|
+
# @param [String] risk_assessment_type
|
|
12594
|
+
# Optional. The risk assessment type of the security profiles. Defaults to
|
|
12595
|
+
# ADVANCED_API_SECURITY.
|
|
12584
12596
|
# @param [String] fields
|
|
12585
12597
|
# Selector specifying which fields to include in a partial response.
|
|
12586
12598
|
# @param [String] quota_user
|
|
@@ -12598,13 +12610,14 @@ module Google
|
|
|
12598
12610
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
12599
12611
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
12600
12612
|
# @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)
|
|
12613
|
+
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
12614
|
command = make_simple_command(:get, 'v1/{+parent}/securityProfilesV2', options)
|
|
12603
12615
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityProfilesV2Response::Representation
|
|
12604
12616
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityProfilesV2Response
|
|
12605
12617
|
command.params['parent'] = parent unless parent.nil?
|
|
12606
12618
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
12607
12619
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
12620
|
+
command.query['riskAssessmentType'] = risk_assessment_type unless risk_assessment_type.nil?
|
|
12608
12621
|
command.query['fields'] = fields unless fields.nil?
|
|
12609
12622
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
12610
12623
|
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.
|
|
4
|
+
version: 0.117.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.117.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:
|