google-apis-ml_v1 0.14.0 → 0.15.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: 214e0a9a0c30aadf1a678580804eed17dd6a502cd9603ce2915c507c0a0bd5f2
4
- data.tar.gz: 1523679f1844cced086c5145c43afeca42da1252b2a64c6f76f8a3c97feaf9e7
3
+ metadata.gz: 9e99abb446cb98c9d10d6ab484b1a69267f6429caa854e42211edba9d6b28ca1
4
+ data.tar.gz: 46bab2ea0ffc400e6284cceafcb6e36225ecf3a7413afda9568164a86a5ef130
5
5
  SHA512:
6
- metadata.gz: 714e7d2c029d7a35646606e147c5c1bf9d868a06fe78c3098c165348bf0a24d1711b515319815518c2982a409d79e6db2ca58c36f66b733a90fb02395c67d29b
7
- data.tar.gz: 3a4fb19571565eab5848f23b2c206405df696523759a79cc1163c458d00d23c70d5c76d97ea7885e792df8c756f70f1aba5f977d89fc91153bbab9a49f79644c
6
+ metadata.gz: 34844f5f6e12d67e0eacba0bb618b499566c11cc582686095729c8b3ecc398793667be3f86d96178ba37f6f177d26d8a81c9ac7aa5e5bfef93a1089a7c6cb5af
7
+ data.tar.gz: 8ff2a94b3a9e8c3eaff95f8da1df3a13d2202c3e88e075a1ecd1f81c07ecd20c58a929a06bbd9ded6115329befe272c96d3e35415033d14aa2b85573c12b8e59
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-ml_v1
2
2
 
3
+ ### v0.15.0 (2021-10-30)
4
+
5
+ * Regenerated from discovery document revision 20211022
6
+
3
7
  ### v0.14.0 (2021-10-21)
4
8
 
5
9
  * Unspecified changes
@@ -3393,7 +3393,7 @@ module Google
3393
3393
  end
3394
3394
  end
3395
3395
 
3396
- # Associates `members` with a `role`.
3396
+ # Associates `members`, or principals, with a `role`.
3397
3397
  class GoogleIamV1Binding
3398
3398
  include Google::Apis::Core::Hashable
3399
3399
 
@@ -3416,7 +3416,7 @@ module Google
3416
3416
  # @return [Google::Apis::MlV1::GoogleTypeExpr]
3417
3417
  attr_accessor :condition
3418
3418
 
3419
- # Specifies the identities requesting access for a Cloud Platform resource. `
3419
+ # Specifies the principals requesting access for a Cloud Platform resource. `
3420
3420
  # members` can have the following values: * `allUsers`: A special identifier
3421
3421
  # that represents anyone who is on the internet; with or without a Google
3422
3422
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -3446,8 +3446,8 @@ module Google
3446
3446
  # @return [Array<String>]
3447
3447
  attr_accessor :members
3448
3448
 
3449
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
3450
- # , or `roles/owner`.
3449
+ # Role that is assigned to the list of `members`, or principals. For example, `
3450
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
3451
3451
  # Corresponds to the JSON property `role`
3452
3452
  # @return [String]
3453
3453
  attr_accessor :role
@@ -3466,31 +3466,31 @@ module Google
3466
3466
 
3467
3467
  # An Identity and Access Management (IAM) policy, which specifies access
3468
3468
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
3469
- # A `binding` binds one or more `members` to a single `role`. Members can be
3470
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
3471
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
3472
- # role or a user-created custom role. For some types of Google Cloud resources,
3473
- # a `binding` can also specify a `condition`, which is a logical expression that
3474
- # allows access to a resource only if the expression evaluates to `true`. A
3475
- # condition can add constraints based on attributes of the request, the resource,
3476
- # or both. To learn which resources support conditions in their IAM policies,
3477
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
3478
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
3479
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
3480
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
3481
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
3482
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
3483
- # title": "expirable access", "description": "Does not grant access after Sep
3484
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
3485
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
3486
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
3487
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
3488
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
3489
- # roles/resourcemanager.organizationViewer condition: title: expirable access
3490
- # description: Does not grant access after Sep 2020 expression: request.time <
3491
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
3492
- # description of IAM and its features, see the [IAM documentation](https://cloud.
3493
- # google.com/iam/docs/).
3469
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
3470
+ # Principals can be user accounts, service accounts, Google groups, and domains (
3471
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
3472
+ # an IAM predefined role or a user-created custom role. For some types of Google
3473
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
3474
+ # logical expression that allows access to a resource only if the expression
3475
+ # evaluates to `true`. A condition can add constraints based on attributes of
3476
+ # the request, the resource, or both. To learn which resources support
3477
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
3478
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
3479
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
3480
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
3481
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
3482
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
3483
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
3484
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
3485
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
3486
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
3487
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
3488
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
3489
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
3490
+ # access description: Does not grant access after Sep 2020 expression: request.
3491
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
3492
+ # a description of IAM and its features, see the [IAM documentation](https://
3493
+ # cloud.google.com/iam/docs/).
3494
3494
  class GoogleIamV1Policy
3495
3495
  include Google::Apis::Core::Hashable
3496
3496
 
@@ -3499,9 +3499,14 @@ module Google
3499
3499
  # @return [Array<Google::Apis::MlV1::GoogleIamV1AuditConfig>]
3500
3500
  attr_accessor :audit_configs
3501
3501
 
3502
- # Associates a list of `members` to a `role`. Optionally, may specify a `
3503
- # condition` that determines how and when the `bindings` are applied. Each of
3504
- # the `bindings` must contain at least one member.
3502
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
3503
+ # specify a `condition` that determines how and when the `bindings` are applied.
3504
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
3505
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
3506
+ # can be Google groups. Each occurrence of a principal counts towards these
3507
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
3508
+ # example.com`, and not to any other principal, then you can add another 1,450
3509
+ # principals to the `bindings` in the `Policy`.
3505
3510
  # Corresponds to the JSON property `bindings`
3506
3511
  # @return [Array<Google::Apis::MlV1::GoogleIamV1Binding>]
3507
3512
  attr_accessor :bindings
@@ -3560,31 +3565,31 @@ module Google
3560
3565
 
3561
3566
  # An Identity and Access Management (IAM) policy, which specifies access
3562
3567
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
3563
- # A `binding` binds one or more `members` to a single `role`. Members can be
3564
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
3565
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
3566
- # role or a user-created custom role. For some types of Google Cloud resources,
3567
- # a `binding` can also specify a `condition`, which is a logical expression that
3568
- # allows access to a resource only if the expression evaluates to `true`. A
3569
- # condition can add constraints based on attributes of the request, the resource,
3570
- # or both. To learn which resources support conditions in their IAM policies,
3571
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
3572
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
3573
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
3574
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
3575
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
3576
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
3577
- # title": "expirable access", "description": "Does not grant access after Sep
3578
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
3579
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
3580
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
3581
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
3582
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
3583
- # roles/resourcemanager.organizationViewer condition: title: expirable access
3584
- # description: Does not grant access after Sep 2020 expression: request.time <
3585
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
3586
- # description of IAM and its features, see the [IAM documentation](https://cloud.
3587
- # google.com/iam/docs/).
3568
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
3569
+ # Principals can be user accounts, service accounts, Google groups, and domains (
3570
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
3571
+ # an IAM predefined role or a user-created custom role. For some types of Google
3572
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
3573
+ # logical expression that allows access to a resource only if the expression
3574
+ # evaluates to `true`. A condition can add constraints based on attributes of
3575
+ # the request, the resource, or both. To learn which resources support
3576
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
3577
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
3578
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
3579
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
3580
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
3581
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
3582
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
3583
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
3584
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
3585
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
3586
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
3587
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
3588
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
3589
+ # access description: Does not grant access after Sep 2020 expression: request.
3590
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
3591
+ # a description of IAM and its features, see the [IAM documentation](https://
3592
+ # cloud.google.com/iam/docs/).
3588
3593
  # Corresponds to the JSON property `policy`
3589
3594
  # @return [Google::Apis::MlV1::GoogleIamV1Policy]
3590
3595
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MlV1
18
18
  # Version of the google-apis-ml_v1 gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210816"
25
+ REVISION = "20211022"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ml_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2021-11-01 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-ml_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ml_v1
63
63
  post_install_message:
64
64
  rdoc_options: []