google-apis-apigee_v1 0.43.0 → 0.44.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34c3628e7bd159ca6e116dcaa1a3e13f567bc93211552054e36f358035390b4f
|
4
|
+
data.tar.gz: bbe9354fa34bd669c9188e9914a3494405aa10f2f019b0d65f59aa341816e4a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8bd1032d809896d1ec8af53b4aa5f519c214c52cbd25dc25a94a6a678afe2fbf71e2f89642ea1e5d35bdf37147d332b7b1de11ce786b3be6ae28ac49e0274a1
|
7
|
+
data.tar.gz: a2d003bff757b41f1dd7b09d95d105e851379a3561d6193f5bbfe6607874837b3a7638b14e1d54ab1677ef605fd4786f93d5110c456446fc03f76e05493630ea
|
data/CHANGELOG.md
CHANGED
@@ -5267,6 +5267,13 @@ module Google
|
|
5267
5267
|
# @return [String]
|
5268
5268
|
attr_accessor :analytics_region
|
5269
5269
|
|
5270
|
+
# Output only. Apigee Project ID associated with the organization. Use this
|
5271
|
+
# project to allowlist Apigee in the Service Attachment when using private
|
5272
|
+
# service connect with Apigee.
|
5273
|
+
# Corresponds to the JSON property `apigeeProjectId`
|
5274
|
+
# @return [String]
|
5275
|
+
attr_accessor :apigee_project_id
|
5276
|
+
|
5270
5277
|
# Not used by Apigee.
|
5271
5278
|
# Corresponds to the JSON property `attributes`
|
5272
5279
|
# @return [Array<String>]
|
@@ -5404,6 +5411,7 @@ module Google
|
|
5404
5411
|
def update!(**args)
|
5405
5412
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
5406
5413
|
@analytics_region = args[:analytics_region] if args.key?(:analytics_region)
|
5414
|
+
@apigee_project_id = args[:apigee_project_id] if args.key?(:apigee_project_id)
|
5407
5415
|
@attributes = args[:attributes] if args.key?(:attributes)
|
5408
5416
|
@authorized_network = args[:authorized_network] if args.key?(:authorized_network)
|
5409
5417
|
@billing_type = args[:billing_type] if args.key?(:billing_type)
|
@@ -7662,8 +7670,8 @@ module Google
|
|
7662
7670
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
7663
7671
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
7664
7672
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
7665
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
7666
|
-
# DATA_WRITE logging.
|
7673
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
7674
|
+
# from DATA_WRITE logging.
|
7667
7675
|
class GoogleIamV1AuditConfig
|
7668
7676
|
include Google::Apis::Core::Hashable
|
7669
7677
|
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220428"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2655,6 +2655,7 @@ module Google
|
|
2655
2655
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig::Representation
|
2656
2656
|
|
2657
2657
|
property :analytics_region, as: 'analyticsRegion'
|
2658
|
+
property :apigee_project_id, as: 'apigeeProjectId'
|
2658
2659
|
collection :attributes, as: 'attributes'
|
2659
2660
|
property :authorized_network, as: 'authorizedNetwork'
|
2660
2661
|
property :billing_type, as: 'billingType'
|
@@ -401,6 +401,43 @@ module Google
|
|
401
401
|
execute_or_queue_command(command, &block)
|
402
402
|
end
|
403
403
|
|
404
|
+
# Tests the permissions of a user on an organization, and returns a subset of
|
405
|
+
# permissions that the user has on the organization. If the organization does
|
406
|
+
# not exist, an empty permission set is returned (a NOT_FOUND error is not
|
407
|
+
# returned).
|
408
|
+
# @param [String] resource
|
409
|
+
# REQUIRED: The resource for which the policy detail is being requested. See the
|
410
|
+
# operation documentation for the appropriate value for this field.
|
411
|
+
# @param [Google::Apis::ApigeeV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
412
|
+
# @param [String] fields
|
413
|
+
# Selector specifying which fields to include in a partial response.
|
414
|
+
# @param [String] quota_user
|
415
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
416
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
417
|
+
# @param [Google::Apis::RequestOptions] options
|
418
|
+
# Request-specific options
|
419
|
+
#
|
420
|
+
# @yield [result, err] Result & error if block supplied
|
421
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleIamV1TestIamPermissionsResponse] parsed result object
|
422
|
+
# @yieldparam err [StandardError] error object if request failed
|
423
|
+
#
|
424
|
+
# @return [Google::Apis::ApigeeV1::GoogleIamV1TestIamPermissionsResponse]
|
425
|
+
#
|
426
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
427
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
428
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
429
|
+
def test_organization_iam_permissions(resource, google_iam_v1_test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
430
|
+
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
431
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleIamV1TestIamPermissionsRequest::Representation
|
432
|
+
command.request_object = google_iam_v1_test_iam_permissions_request_object
|
433
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleIamV1TestIamPermissionsResponse::Representation
|
434
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleIamV1TestIamPermissionsResponse
|
435
|
+
command.params['resource'] = resource unless resource.nil?
|
436
|
+
command.query['fields'] = fields unless fields.nil?
|
437
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
438
|
+
execute_or_queue_command(command, &block)
|
439
|
+
end
|
440
|
+
|
404
441
|
# Updates the properties for an Apigee organization. No other fields in the
|
405
442
|
# organization profile will be updated.
|
406
443
|
# @param [String] name
|
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.
|
4
|
+
version: 0.44.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: 2022-05-
|
11
|
+
date: 2022-05-09 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.44.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: []
|