google-apis-iam_v1 0.56.0 → 0.57.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 +4 -0
- data/lib/google/apis/iam_v1/classes.rb +11 -11
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/service.rb +241 -238
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf3ee28d164f715af7b24104a7894e9a8d458d07daac23b4c45463d1b2ee0908
|
4
|
+
data.tar.gz: c839e4b6035c0c5636dc17c721cab5c09db1064f16b1f2715d7e2235113ed751
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 409d207b02d976a597350369b97591aefdf43ab23b36e79bf562f56921ace01d09ccc30f7fc10e5672c1197138f22cc8a8a8b28cf25f49246d17e2a10f4b0be8
|
7
|
+
data.tar.gz: 6b0ab91c05700f5a6a991b637ae5c33f0df731b81bdccb1de920196bcc1ca4eef29fa9b55b4b7d90ca248b1d24fb6558f08d9a21e5e2a5197f2ca629958be47a
|
data/CHANGELOG.md
CHANGED
@@ -168,8 +168,8 @@ module Google
|
|
168
168
|
class AuditableService
|
169
169
|
include Google::Apis::Core::Hashable
|
170
170
|
|
171
|
-
# Public name of the service. For example, the service name for
|
172
|
-
#
|
171
|
+
# Public name of the service. For example, the service name for IAM is 'iam.
|
172
|
+
# googleapis.com'.
|
173
173
|
# Corresponds to the JSON property `name`
|
174
174
|
# @return [String]
|
175
175
|
attr_accessor :name
|
@@ -714,10 +714,10 @@ module Google
|
|
714
714
|
|
715
715
|
# Optional. The filter used to request specific records from IdP. In case of
|
716
716
|
# attributes type as AZURE_AD_GROUPS_MAIL, it represents the filter used to
|
717
|
-
# request specific groups for users from IdP. By default all the groups
|
718
|
-
# associated with the user are fetched. The groups
|
719
|
-
#
|
720
|
-
#
|
717
|
+
# request specific groups for users from IdP. By default, all of the groups
|
718
|
+
# associated with the user are fetched. The groups should be mail enabled and
|
719
|
+
# security enabled. See https://learn.microsoft.com/en-us/graph/search-query-
|
720
|
+
# parameter for more details.
|
721
721
|
# Corresponds to the JSON property `filter`
|
722
722
|
# @return [String]
|
723
723
|
attr_accessor :filter
|
@@ -943,7 +943,7 @@ module Google
|
|
943
943
|
end
|
944
944
|
end
|
945
945
|
|
946
|
-
# The request to lint
|
946
|
+
# The request to lint an IAM policy object.
|
947
947
|
class LintPolicyRequest
|
948
948
|
include Google::Apis::Core::Hashable
|
949
949
|
|
@@ -967,10 +967,10 @@ module Google
|
|
967
967
|
attr_accessor :condition
|
968
968
|
|
969
969
|
# The full resource name of the policy this lint request is about. The name
|
970
|
-
# follows the Google Cloud format for full resource names. For example, a
|
971
|
-
# project with ID `my-project` will be named `//cloudresourcemanager.
|
972
|
-
# com/projects/my-project`. The resource name is not used to read a
|
973
|
-
# IAM. Only the data in the request object is linted.
|
970
|
+
# follows the Google Cloud format for full resource names. For example, a Google
|
971
|
+
# Cloud project with ID `my-project` will be named `//cloudresourcemanager.
|
972
|
+
# googleapis.com/projects/my-project`. The resource name is not used to read a
|
973
|
+
# policy from IAM. Only the data in the request object is linted.
|
974
974
|
# Corresponds to the JSON property `fullResourceName`
|
975
975
|
# @return [String]
|
976
976
|
attr_accessor :full_resource_name
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IamV1
|
18
18
|
# Version of the google-apis-iam_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240418"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1064,20 +1064,20 @@ module Google
|
|
1064
1064
|
# Creates a new custom Role.
|
1065
1065
|
# @param [String] parent
|
1066
1066
|
# The `parent` parameter's value depends on the target resource for the request,
|
1067
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
1068
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
1069
|
-
# organizations.roles). Each resource type's `parent` value
|
1070
|
-
# below: * [`projects.roles.create()`](https://cloud.google.
|
1071
|
-
# rest/v1/projects.roles/create): `projects/`PROJECT_ID``.
|
1072
|
-
# project-level [custom roles](https://cloud.google.com/iam/
|
1073
|
-
# custom-roles). Example request URL: `https://iam.googleapis.
|
1074
|
-
# PROJECT_ID`/roles` * [`organizations.roles.create()`](https://
|
1075
|
-
# iam/reference/rest/v1/organizations.roles/create): `
|
1076
|
-
# ORGANIZATION_ID``. This method creates organization-level [
|
1077
|
-
#
|
1078
|
-
# https://iam.googleapis.com/v1/organizations/`
|
1079
|
-
# Wildcard (*) values are invalid; you must
|
1080
|
-
# organization ID.
|
1067
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1068
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
1069
|
+
# reference/rest/v1/organizations.roles). Each resource type's `parent` value
|
1070
|
+
# format is described below: * [`projects.roles.create()`](https://cloud.google.
|
1071
|
+
# com/iam/docs/reference/rest/v1/projects.roles/create): `projects/`PROJECT_ID``.
|
1072
|
+
# This method creates project-level [custom roles](https://cloud.google.com/iam/
|
1073
|
+
# docs/understanding-custom-roles). Example request URL: `https://iam.googleapis.
|
1074
|
+
# com/v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.create()`](https://
|
1075
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/create): `
|
1076
|
+
# organizations/`ORGANIZATION_ID``. This method creates organization-level [
|
1077
|
+
# custom roles](https://cloud.google.com/iam/docs/understanding-custom-roles).
|
1078
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
1079
|
+
# ORGANIZATION_ID`/roles` Note: Wildcard (*) values are invalid; you must
|
1080
|
+
# specify a complete project ID or organization ID.
|
1081
1081
|
# @param [Google::Apis::IamV1::CreateRoleRequest] create_role_request_object
|
1082
1082
|
# @param [String] fields
|
1083
1083
|
# Selector specifying which fields to include in a partial response.
|
@@ -1118,22 +1118,22 @@ module Google
|
|
1118
1118
|
# binding is permanently removed.
|
1119
1119
|
# @param [String] name
|
1120
1120
|
# The `name` parameter's value depends on the target resource for the request,
|
1121
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
1122
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
1123
|
-
# organizations.roles). Each resource type's `name` value
|
1124
|
-
# below: * [`projects.roles.delete()`](https://cloud.google.
|
1125
|
-
# rest/v1/projects.roles/delete): `projects/`PROJECT_ID`/
|
1126
|
-
# This method deletes only [custom roles](https://cloud.
|
1127
|
-
# understanding-custom-roles) that have been created at the
|
1128
|
-
# Example request URL: `https://iam.googleapis.com/v1/projects/`
|
1129
|
-
# roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.delete()`](https://
|
1130
|
-
# google.com/iam/reference/rest/v1/organizations.roles/delete): `
|
1131
|
-
# ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method deletes
|
1132
|
-
# roles](https://cloud.google.com/iam/docs/understanding-custom-
|
1133
|
-
# been created at the organization level. Example request URL: `
|
1134
|
-
# googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
1135
|
-
# Wildcard (*) values are invalid; you must specify a
|
1136
|
-
# organization ID.
|
1121
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1122
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
1123
|
+
# reference/rest/v1/organizations.roles). Each resource type's `name` value
|
1124
|
+
# format is described below: * [`projects.roles.delete()`](https://cloud.google.
|
1125
|
+
# com/iam/docs/reference/rest/v1/projects.roles/delete): `projects/`PROJECT_ID`/
|
1126
|
+
# roles/`CUSTOM_ROLE_ID``. This method deletes only [custom roles](https://cloud.
|
1127
|
+
# google.com/iam/docs/understanding-custom-roles) that have been created at the
|
1128
|
+
# project level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
1129
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.delete()`](https://
|
1130
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/delete): `
|
1131
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method deletes
|
1132
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
1133
|
+
# roles) that have been created at the organization level. Example request URL: `
|
1134
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
1135
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
1136
|
+
# complete project ID or organization ID.
|
1137
1137
|
# @param [String] etag
|
1138
1138
|
# Used to perform a consistent read-modify-write.
|
1139
1139
|
# @param [String] fields
|
@@ -1167,26 +1167,27 @@ module Google
|
|
1167
1167
|
# Gets the definition of a Role.
|
1168
1168
|
# @param [String] name
|
1169
1169
|
# The `name` parameter's value depends on the target resource for the request,
|
1170
|
-
# namely [`roles`](https://cloud.google.com/iam/reference/rest/v1/roles), [`
|
1171
|
-
# projects`](https://cloud.google.com/iam/reference/rest/v1/projects.roles),
|
1172
|
-
# `organizations`](https://cloud.google.com/iam/reference/rest/v1/
|
1173
|
-
# roles). Each resource type's `name` value format is described
|
1174
|
-
# get()`](https://cloud.google.com/iam/reference/rest/v1/
|
1175
|
-
# ROLE_NAME``. This method returns results from all [
|
1176
|
-
# cloud.google.com/iam/docs/understanding-roles#
|
1177
|
-
# Example request URL: `https://iam.googleapis.com/v1/
|
1178
|
-
# projects.roles.get()`](https://cloud.google.com/iam/
|
1179
|
-
# roles/get): `projects/`PROJECT_ID`/roles/`
|
1180
|
-
# returns only [custom roles](https://cloud.google.com/iam/docs/understanding-
|
1181
|
-
# custom-roles) that have been created at the project level. Example request URL:
|
1182
|
-
# `https://iam.googleapis.com/v1/projects/`PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` *
|
1183
|
-
# [`organizations.roles.get()`](https://cloud.google.com/iam/reference/rest/v1/
|
1184
|
-
# organizations.roles/get): `organizations/`ORGANIZATION_ID`/roles/`
|
1170
|
+
# namely [`roles`](https://cloud.google.com/iam/docs/reference/rest/v1/roles), [`
|
1171
|
+
# projects`](https://cloud.google.com/iam/docs/reference/rest/v1/projects.roles),
|
1172
|
+
# or [`organizations`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1173
|
+
# organizations.roles). Each resource type's `name` value format is described
|
1174
|
+
# below: * [`roles.get()`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1175
|
+
# roles/get): `roles/`ROLE_NAME``. This method returns results from all [
|
1176
|
+
# predefined roles](https://cloud.google.com/iam/docs/understanding-roles#
|
1177
|
+
# predefined_roles) in IAM. Example request URL: `https://iam.googleapis.com/v1/
|
1178
|
+
# roles/`ROLE_NAME`` * [`projects.roles.get()`](https://cloud.google.com/iam/
|
1179
|
+
# docs/reference/rest/v1/projects.roles/get): `projects/`PROJECT_ID`/roles/`
|
1185
1180
|
# CUSTOM_ROLE_ID``. This method returns only [custom roles](https://cloud.google.
|
1186
|
-
# com/iam/docs/understanding-custom-roles) that have been created at the
|
1187
|
-
#
|
1188
|
-
#
|
1189
|
-
#
|
1181
|
+
# com/iam/docs/understanding-custom-roles) that have been created at the project
|
1182
|
+
# level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
1183
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.get()`](https://
|
1184
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/get): `
|
1185
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method returns
|
1186
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
1187
|
+
# roles) that have been created at the organization level. Example request URL: `
|
1188
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
1189
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
1190
|
+
# complete project ID or organization ID.
|
1190
1191
|
# @param [String] fields
|
1191
1192
|
# Selector specifying which fields to include in a partial response.
|
1192
1193
|
# @param [String] quota_user
|
@@ -1218,25 +1219,25 @@ module Google
|
|
1218
1219
|
# defined for an organization or project.
|
1219
1220
|
# @param [String] parent
|
1220
1221
|
# The `parent` parameter's value depends on the target resource for the request,
|
1221
|
-
# namely [`roles`](https://cloud.google.com/iam/reference/rest/v1/roles), [`
|
1222
|
-
# projects`](https://cloud.google.com/iam/reference/rest/v1/projects.roles),
|
1223
|
-
# `organizations`](https://cloud.google.com/iam/reference/rest/v1/
|
1224
|
-
# roles). Each resource type's `parent` value format is described
|
1225
|
-
# roles.list()`](https://cloud.google.com/iam/reference/rest/v1/
|
1226
|
-
# empty string. This method doesn't require a resource; it
|
1227
|
-
# predefined roles](https://cloud.google.com/iam/docs/
|
1228
|
-
# predefined_roles) in
|
1229
|
-
# com/v1/roles` * [`projects.roles.list()`](https://cloud.google.
|
1230
|
-
# reference/rest/v1/projects.roles/list): `projects/`PROJECT_ID``.
|
1231
|
-
# lists all project-level [custom roles](https://cloud.google.com/
|
1232
|
-
# understanding-custom-roles). Example request URL: `https://iam.
|
1233
|
-
# v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.list()`]
|
1234
|
-
# google.com/iam/reference/rest/v1/organizations.roles/list):
|
1235
|
-
# ORGANIZATION_ID``. This method lists all organization-level [
|
1236
|
-
# https://cloud.google.com/iam/docs/understanding-custom-roles).
|
1237
|
-
# URL: `https://iam.googleapis.com/v1/organizations/`
|
1238
|
-
# Note: Wildcard (*) values are invalid; you must
|
1239
|
-
# or organization ID.
|
1222
|
+
# namely [`roles`](https://cloud.google.com/iam/docs/reference/rest/v1/roles), [`
|
1223
|
+
# projects`](https://cloud.google.com/iam/docs/reference/rest/v1/projects.roles),
|
1224
|
+
# or [`organizations`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1225
|
+
# organizations.roles). Each resource type's `parent` value format is described
|
1226
|
+
# below: * [`roles.list()`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1227
|
+
# roles/list): An empty string. This method doesn't require a resource; it
|
1228
|
+
# simply returns all [predefined roles](https://cloud.google.com/iam/docs/
|
1229
|
+
# understanding-roles#predefined_roles) in IAM. Example request URL: `https://
|
1230
|
+
# iam.googleapis.com/v1/roles` * [`projects.roles.list()`](https://cloud.google.
|
1231
|
+
# com/iam/docs/reference/rest/v1/projects.roles/list): `projects/`PROJECT_ID``.
|
1232
|
+
# This method lists all project-level [custom roles](https://cloud.google.com/
|
1233
|
+
# iam/docs/understanding-custom-roles). Example request URL: `https://iam.
|
1234
|
+
# googleapis.com/v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.list()`]
|
1235
|
+
# (https://cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/list):
|
1236
|
+
# `organizations/`ORGANIZATION_ID``. This method lists all organization-level [
|
1237
|
+
# custom roles](https://cloud.google.com/iam/docs/understanding-custom-roles).
|
1238
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
1239
|
+
# ORGANIZATION_ID`/roles` Note: Wildcard (*) values are invalid; you must
|
1240
|
+
# specify a complete project ID or organization ID.
|
1240
1241
|
# @param [Fixnum] page_size
|
1241
1242
|
# Optional limit on the number of roles to include in the response. The default
|
1242
1243
|
# is 300, and the maximum is 1,000.
|
@@ -1283,22 +1284,22 @@ module Google
|
|
1283
1284
|
# Updates the definition of a custom Role.
|
1284
1285
|
# @param [String] name
|
1285
1286
|
# The `name` parameter's value depends on the target resource for the request,
|
1286
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
1287
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
1288
|
-
# organizations.roles). Each resource type's `name` value
|
1289
|
-
# below: * [`projects.roles.patch()`](https://cloud.google.
|
1290
|
-
# rest/v1/projects.roles/patch): `projects/`PROJECT_ID`/
|
1291
|
-
# This method updates only [custom roles](https://cloud.
|
1292
|
-
# understanding-custom-roles) that have been created at the
|
1293
|
-
# Example request URL: `https://iam.googleapis.com/v1/projects/`
|
1294
|
-
# roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.patch()`](https://
|
1295
|
-
# com/iam/reference/rest/v1/organizations.roles/patch): `
|
1296
|
-
# ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method updates
|
1297
|
-
# roles](https://cloud.google.com/iam/docs/understanding-custom-
|
1298
|
-
# been created at the organization level. Example request URL: `
|
1299
|
-
# googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
1300
|
-
# Wildcard (*) values are invalid; you must specify a
|
1301
|
-
# organization ID.
|
1287
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1288
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
1289
|
+
# reference/rest/v1/organizations.roles). Each resource type's `name` value
|
1290
|
+
# format is described below: * [`projects.roles.patch()`](https://cloud.google.
|
1291
|
+
# com/iam/docs/reference/rest/v1/projects.roles/patch): `projects/`PROJECT_ID`/
|
1292
|
+
# roles/`CUSTOM_ROLE_ID``. This method updates only [custom roles](https://cloud.
|
1293
|
+
# google.com/iam/docs/understanding-custom-roles) that have been created at the
|
1294
|
+
# project level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
1295
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.patch()`](https://
|
1296
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/patch): `
|
1297
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method updates
|
1298
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
1299
|
+
# roles) that have been created at the organization level. Example request URL: `
|
1300
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
1301
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
1302
|
+
# complete project ID or organization ID.
|
1302
1303
|
# @param [Google::Apis::IamV1::Role] role_object
|
1303
1304
|
# @param [String] update_mask
|
1304
1305
|
# A mask describing which fields in the Role have changed.
|
@@ -1335,22 +1336,22 @@ module Google
|
|
1335
1336
|
# Undeletes a custom Role.
|
1336
1337
|
# @param [String] name
|
1337
1338
|
# The `name` parameter's value depends on the target resource for the request,
|
1338
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
1339
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
1340
|
-
# organizations.roles). Each resource type's `name` value
|
1341
|
-
# below: * [`projects.roles.undelete()`](https://cloud.
|
1342
|
-
# rest/v1/projects.roles/undelete): `projects/`
|
1343
|
-
#
|
1344
|
-
# understanding-custom-roles) that have been
|
1345
|
-
# Example request URL: `https://iam.googleapis.com/
|
1346
|
-
# roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.
|
1347
|
-
# google.com/iam/reference/rest/v1/organizations.
|
1348
|
-
# `ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``.
|
1349
|
-
# roles](https://cloud.google.com/iam/docs/
|
1350
|
-
# been created at the organization level.
|
1351
|
-
# googleapis.com/v1/organizations/`
|
1352
|
-
# Wildcard (*) values are invalid;
|
1353
|
-
# organization ID.
|
1339
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
1340
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
1341
|
+
# reference/rest/v1/organizations.roles). Each resource type's `name` value
|
1342
|
+
# format is described below: * [`projects.roles.undelete()`](https://cloud.
|
1343
|
+
# google.com/iam/docs/reference/rest/v1/projects.roles/undelete): `projects/`
|
1344
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID``. This method undeletes only [custom roles](
|
1345
|
+
# https://cloud.google.com/iam/docs/understanding-custom-roles) that have been
|
1346
|
+
# created at the project level. Example request URL: `https://iam.googleapis.com/
|
1347
|
+
# v1/projects/`PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.
|
1348
|
+
# undelete()`](https://cloud.google.com/iam/docs/reference/rest/v1/organizations.
|
1349
|
+
# roles/undelete): `organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``.
|
1350
|
+
# This method undeletes only [custom roles](https://cloud.google.com/iam/docs/
|
1351
|
+
# understanding-custom-roles) that have been created at the organization level.
|
1352
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
1353
|
+
# ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid;
|
1354
|
+
# you must specify a complete project ID or organization ID.
|
1354
1355
|
# @param [Google::Apis::IamV1::UndeleteRoleRequest] undelete_role_request_object
|
1355
1356
|
# @param [String] fields
|
1356
1357
|
# Selector specifying which fields to include in a partial response.
|
@@ -2609,20 +2610,20 @@ module Google
|
|
2609
2610
|
# Creates a new custom Role.
|
2610
2611
|
# @param [String] parent
|
2611
2612
|
# The `parent` parameter's value depends on the target resource for the request,
|
2612
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
2613
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
2614
|
-
# organizations.roles). Each resource type's `parent` value
|
2615
|
-
# below: * [`projects.roles.create()`](https://cloud.google.
|
2616
|
-
# rest/v1/projects.roles/create): `projects/`PROJECT_ID``.
|
2617
|
-
# project-level [custom roles](https://cloud.google.com/iam/
|
2618
|
-
# custom-roles). Example request URL: `https://iam.googleapis.
|
2619
|
-
# PROJECT_ID`/roles` * [`organizations.roles.create()`](https://
|
2620
|
-
# iam/reference/rest/v1/organizations.roles/create): `
|
2621
|
-
# ORGANIZATION_ID``. This method creates organization-level [
|
2622
|
-
#
|
2623
|
-
# https://iam.googleapis.com/v1/organizations/`
|
2624
|
-
# Wildcard (*) values are invalid; you must
|
2625
|
-
# organization ID.
|
2613
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2614
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
2615
|
+
# reference/rest/v1/organizations.roles). Each resource type's `parent` value
|
2616
|
+
# format is described below: * [`projects.roles.create()`](https://cloud.google.
|
2617
|
+
# com/iam/docs/reference/rest/v1/projects.roles/create): `projects/`PROJECT_ID``.
|
2618
|
+
# This method creates project-level [custom roles](https://cloud.google.com/iam/
|
2619
|
+
# docs/understanding-custom-roles). Example request URL: `https://iam.googleapis.
|
2620
|
+
# com/v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.create()`](https://
|
2621
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/create): `
|
2622
|
+
# organizations/`ORGANIZATION_ID``. This method creates organization-level [
|
2623
|
+
# custom roles](https://cloud.google.com/iam/docs/understanding-custom-roles).
|
2624
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
2625
|
+
# ORGANIZATION_ID`/roles` Note: Wildcard (*) values are invalid; you must
|
2626
|
+
# specify a complete project ID or organization ID.
|
2626
2627
|
# @param [Google::Apis::IamV1::CreateRoleRequest] create_role_request_object
|
2627
2628
|
# @param [String] fields
|
2628
2629
|
# Selector specifying which fields to include in a partial response.
|
@@ -2663,22 +2664,22 @@ module Google
|
|
2663
2664
|
# binding is permanently removed.
|
2664
2665
|
# @param [String] name
|
2665
2666
|
# The `name` parameter's value depends on the target resource for the request,
|
2666
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
2667
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
2668
|
-
# organizations.roles). Each resource type's `name` value
|
2669
|
-
# below: * [`projects.roles.delete()`](https://cloud.google.
|
2670
|
-
# rest/v1/projects.roles/delete): `projects/`PROJECT_ID`/
|
2671
|
-
# This method deletes only [custom roles](https://cloud.
|
2672
|
-
# understanding-custom-roles) that have been created at the
|
2673
|
-
# Example request URL: `https://iam.googleapis.com/v1/projects/`
|
2674
|
-
# roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.delete()`](https://
|
2675
|
-
# google.com/iam/reference/rest/v1/organizations.roles/delete): `
|
2676
|
-
# ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method deletes
|
2677
|
-
# roles](https://cloud.google.com/iam/docs/understanding-custom-
|
2678
|
-
# been created at the organization level. Example request URL: `
|
2679
|
-
# googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
2680
|
-
# Wildcard (*) values are invalid; you must specify a
|
2681
|
-
# organization ID.
|
2667
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2668
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
2669
|
+
# reference/rest/v1/organizations.roles). Each resource type's `name` value
|
2670
|
+
# format is described below: * [`projects.roles.delete()`](https://cloud.google.
|
2671
|
+
# com/iam/docs/reference/rest/v1/projects.roles/delete): `projects/`PROJECT_ID`/
|
2672
|
+
# roles/`CUSTOM_ROLE_ID``. This method deletes only [custom roles](https://cloud.
|
2673
|
+
# google.com/iam/docs/understanding-custom-roles) that have been created at the
|
2674
|
+
# project level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
2675
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.delete()`](https://
|
2676
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/delete): `
|
2677
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method deletes
|
2678
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
2679
|
+
# roles) that have been created at the organization level. Example request URL: `
|
2680
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
2681
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
2682
|
+
# complete project ID or organization ID.
|
2682
2683
|
# @param [String] etag
|
2683
2684
|
# Used to perform a consistent read-modify-write.
|
2684
2685
|
# @param [String] fields
|
@@ -2712,26 +2713,27 @@ module Google
|
|
2712
2713
|
# Gets the definition of a Role.
|
2713
2714
|
# @param [String] name
|
2714
2715
|
# The `name` parameter's value depends on the target resource for the request,
|
2715
|
-
# namely [`roles`](https://cloud.google.com/iam/reference/rest/v1/roles), [`
|
2716
|
-
# projects`](https://cloud.google.com/iam/reference/rest/v1/projects.roles),
|
2717
|
-
# `organizations`](https://cloud.google.com/iam/reference/rest/v1/
|
2718
|
-
# roles). Each resource type's `name` value format is described
|
2719
|
-
# get()`](https://cloud.google.com/iam/reference/rest/v1/
|
2720
|
-
# ROLE_NAME``. This method returns results from all [
|
2721
|
-
# cloud.google.com/iam/docs/understanding-roles#
|
2722
|
-
# Example request URL: `https://iam.googleapis.com/v1/
|
2723
|
-
# projects.roles.get()`](https://cloud.google.com/iam/
|
2724
|
-
# roles/get): `projects/`PROJECT_ID`/roles/`
|
2725
|
-
# returns only [custom roles](https://cloud.google.com/iam/docs/understanding-
|
2726
|
-
# custom-roles) that have been created at the project level. Example request URL:
|
2727
|
-
# `https://iam.googleapis.com/v1/projects/`PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` *
|
2728
|
-
# [`organizations.roles.get()`](https://cloud.google.com/iam/reference/rest/v1/
|
2729
|
-
# organizations.roles/get): `organizations/`ORGANIZATION_ID`/roles/`
|
2716
|
+
# namely [`roles`](https://cloud.google.com/iam/docs/reference/rest/v1/roles), [`
|
2717
|
+
# projects`](https://cloud.google.com/iam/docs/reference/rest/v1/projects.roles),
|
2718
|
+
# or [`organizations`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2719
|
+
# organizations.roles). Each resource type's `name` value format is described
|
2720
|
+
# below: * [`roles.get()`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2721
|
+
# roles/get): `roles/`ROLE_NAME``. This method returns results from all [
|
2722
|
+
# predefined roles](https://cloud.google.com/iam/docs/understanding-roles#
|
2723
|
+
# predefined_roles) in IAM. Example request URL: `https://iam.googleapis.com/v1/
|
2724
|
+
# roles/`ROLE_NAME`` * [`projects.roles.get()`](https://cloud.google.com/iam/
|
2725
|
+
# docs/reference/rest/v1/projects.roles/get): `projects/`PROJECT_ID`/roles/`
|
2730
2726
|
# CUSTOM_ROLE_ID``. This method returns only [custom roles](https://cloud.google.
|
2731
|
-
# com/iam/docs/understanding-custom-roles) that have been created at the
|
2732
|
-
#
|
2733
|
-
#
|
2734
|
-
#
|
2727
|
+
# com/iam/docs/understanding-custom-roles) that have been created at the project
|
2728
|
+
# level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
2729
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.get()`](https://
|
2730
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/get): `
|
2731
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method returns
|
2732
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
2733
|
+
# roles) that have been created at the organization level. Example request URL: `
|
2734
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
2735
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
2736
|
+
# complete project ID or organization ID.
|
2735
2737
|
# @param [String] fields
|
2736
2738
|
# Selector specifying which fields to include in a partial response.
|
2737
2739
|
# @param [String] quota_user
|
@@ -2763,25 +2765,25 @@ module Google
|
|
2763
2765
|
# defined for an organization or project.
|
2764
2766
|
# @param [String] parent
|
2765
2767
|
# The `parent` parameter's value depends on the target resource for the request,
|
2766
|
-
# namely [`roles`](https://cloud.google.com/iam/reference/rest/v1/roles), [`
|
2767
|
-
# projects`](https://cloud.google.com/iam/reference/rest/v1/projects.roles),
|
2768
|
-
# `organizations`](https://cloud.google.com/iam/reference/rest/v1/
|
2769
|
-
# roles). Each resource type's `parent` value format is described
|
2770
|
-
# roles.list()`](https://cloud.google.com/iam/reference/rest/v1/
|
2771
|
-
# empty string. This method doesn't require a resource; it
|
2772
|
-
# predefined roles](https://cloud.google.com/iam/docs/
|
2773
|
-
# predefined_roles) in
|
2774
|
-
# com/v1/roles` * [`projects.roles.list()`](https://cloud.google.
|
2775
|
-
# reference/rest/v1/projects.roles/list): `projects/`PROJECT_ID``.
|
2776
|
-
# lists all project-level [custom roles](https://cloud.google.com/
|
2777
|
-
# understanding-custom-roles). Example request URL: `https://iam.
|
2778
|
-
# v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.list()`]
|
2779
|
-
# google.com/iam/reference/rest/v1/organizations.roles/list):
|
2780
|
-
# ORGANIZATION_ID``. This method lists all organization-level [
|
2781
|
-
# https://cloud.google.com/iam/docs/understanding-custom-roles).
|
2782
|
-
# URL: `https://iam.googleapis.com/v1/organizations/`
|
2783
|
-
# Note: Wildcard (*) values are invalid; you must
|
2784
|
-
# or organization ID.
|
2768
|
+
# namely [`roles`](https://cloud.google.com/iam/docs/reference/rest/v1/roles), [`
|
2769
|
+
# projects`](https://cloud.google.com/iam/docs/reference/rest/v1/projects.roles),
|
2770
|
+
# or [`organizations`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2771
|
+
# organizations.roles). Each resource type's `parent` value format is described
|
2772
|
+
# below: * [`roles.list()`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2773
|
+
# roles/list): An empty string. This method doesn't require a resource; it
|
2774
|
+
# simply returns all [predefined roles](https://cloud.google.com/iam/docs/
|
2775
|
+
# understanding-roles#predefined_roles) in IAM. Example request URL: `https://
|
2776
|
+
# iam.googleapis.com/v1/roles` * [`projects.roles.list()`](https://cloud.google.
|
2777
|
+
# com/iam/docs/reference/rest/v1/projects.roles/list): `projects/`PROJECT_ID``.
|
2778
|
+
# This method lists all project-level [custom roles](https://cloud.google.com/
|
2779
|
+
# iam/docs/understanding-custom-roles). Example request URL: `https://iam.
|
2780
|
+
# googleapis.com/v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.list()`]
|
2781
|
+
# (https://cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/list):
|
2782
|
+
# `organizations/`ORGANIZATION_ID``. This method lists all organization-level [
|
2783
|
+
# custom roles](https://cloud.google.com/iam/docs/understanding-custom-roles).
|
2784
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
2785
|
+
# ORGANIZATION_ID`/roles` Note: Wildcard (*) values are invalid; you must
|
2786
|
+
# specify a complete project ID or organization ID.
|
2785
2787
|
# @param [Fixnum] page_size
|
2786
2788
|
# Optional limit on the number of roles to include in the response. The default
|
2787
2789
|
# is 300, and the maximum is 1,000.
|
@@ -2828,22 +2830,22 @@ module Google
|
|
2828
2830
|
# Updates the definition of a custom Role.
|
2829
2831
|
# @param [String] name
|
2830
2832
|
# The `name` parameter's value depends on the target resource for the request,
|
2831
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
2832
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
2833
|
-
# organizations.roles). Each resource type's `name` value
|
2834
|
-
# below: * [`projects.roles.patch()`](https://cloud.google.
|
2835
|
-
# rest/v1/projects.roles/patch): `projects/`PROJECT_ID`/
|
2836
|
-
# This method updates only [custom roles](https://cloud.
|
2837
|
-
# understanding-custom-roles) that have been created at the
|
2838
|
-
# Example request URL: `https://iam.googleapis.com/v1/projects/`
|
2839
|
-
# roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.patch()`](https://
|
2840
|
-
# com/iam/reference/rest/v1/organizations.roles/patch): `
|
2841
|
-
# ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method updates
|
2842
|
-
# roles](https://cloud.google.com/iam/docs/understanding-custom-
|
2843
|
-
# been created at the organization level. Example request URL: `
|
2844
|
-
# googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
2845
|
-
# Wildcard (*) values are invalid; you must specify a
|
2846
|
-
# organization ID.
|
2833
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2834
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
2835
|
+
# reference/rest/v1/organizations.roles). Each resource type's `name` value
|
2836
|
+
# format is described below: * [`projects.roles.patch()`](https://cloud.google.
|
2837
|
+
# com/iam/docs/reference/rest/v1/projects.roles/patch): `projects/`PROJECT_ID`/
|
2838
|
+
# roles/`CUSTOM_ROLE_ID``. This method updates only [custom roles](https://cloud.
|
2839
|
+
# google.com/iam/docs/understanding-custom-roles) that have been created at the
|
2840
|
+
# project level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
2841
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.patch()`](https://
|
2842
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/patch): `
|
2843
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method updates
|
2844
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
2845
|
+
# roles) that have been created at the organization level. Example request URL: `
|
2846
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
2847
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
2848
|
+
# complete project ID or organization ID.
|
2847
2849
|
# @param [Google::Apis::IamV1::Role] role_object
|
2848
2850
|
# @param [String] update_mask
|
2849
2851
|
# A mask describing which fields in the Role have changed.
|
@@ -2880,22 +2882,22 @@ module Google
|
|
2880
2882
|
# Undeletes a custom Role.
|
2881
2883
|
# @param [String] name
|
2882
2884
|
# The `name` parameter's value depends on the target resource for the request,
|
2883
|
-
# namely [`projects`](https://cloud.google.com/iam/reference/rest/v1/
|
2884
|
-
# roles) or [`organizations`](https://cloud.google.com/iam/
|
2885
|
-
# organizations.roles). Each resource type's `name` value
|
2886
|
-
# below: * [`projects.roles.undelete()`](https://cloud.
|
2887
|
-
# rest/v1/projects.roles/undelete): `projects/`
|
2888
|
-
#
|
2889
|
-
# understanding-custom-roles) that have been
|
2890
|
-
# Example request URL: `https://iam.googleapis.com/
|
2891
|
-
# roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.
|
2892
|
-
# google.com/iam/reference/rest/v1/organizations.
|
2893
|
-
# `ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``.
|
2894
|
-
# roles](https://cloud.google.com/iam/docs/
|
2895
|
-
# been created at the organization level.
|
2896
|
-
# googleapis.com/v1/organizations/`
|
2897
|
-
# Wildcard (*) values are invalid;
|
2898
|
-
# organization ID.
|
2885
|
+
# namely [`projects`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
2886
|
+
# projects.roles) or [`organizations`](https://cloud.google.com/iam/docs/
|
2887
|
+
# reference/rest/v1/organizations.roles). Each resource type's `name` value
|
2888
|
+
# format is described below: * [`projects.roles.undelete()`](https://cloud.
|
2889
|
+
# google.com/iam/docs/reference/rest/v1/projects.roles/undelete): `projects/`
|
2890
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID``. This method undeletes only [custom roles](
|
2891
|
+
# https://cloud.google.com/iam/docs/understanding-custom-roles) that have been
|
2892
|
+
# created at the project level. Example request URL: `https://iam.googleapis.com/
|
2893
|
+
# v1/projects/`PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.
|
2894
|
+
# undelete()`](https://cloud.google.com/iam/docs/reference/rest/v1/organizations.
|
2895
|
+
# roles/undelete): `organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``.
|
2896
|
+
# This method undeletes only [custom roles](https://cloud.google.com/iam/docs/
|
2897
|
+
# understanding-custom-roles) that have been created at the organization level.
|
2898
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
2899
|
+
# ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid;
|
2900
|
+
# you must specify a complete project ID or organization ID.
|
2899
2901
|
# @param [Google::Apis::IamV1::UndeleteRoleRequest] undelete_role_request_object
|
2900
2902
|
# @param [String] fields
|
2901
2903
|
# Selector specifying which fields to include in a partial response.
|
@@ -3885,26 +3887,27 @@ module Google
|
|
3885
3887
|
# Gets the definition of a Role.
|
3886
3888
|
# @param [String] name
|
3887
3889
|
# The `name` parameter's value depends on the target resource for the request,
|
3888
|
-
# namely [`roles`](https://cloud.google.com/iam/reference/rest/v1/roles), [`
|
3889
|
-
# projects`](https://cloud.google.com/iam/reference/rest/v1/projects.roles),
|
3890
|
-
# `organizations`](https://cloud.google.com/iam/reference/rest/v1/
|
3891
|
-
# roles). Each resource type's `name` value format is described
|
3892
|
-
# get()`](https://cloud.google.com/iam/reference/rest/v1/
|
3893
|
-
# ROLE_NAME``. This method returns results from all [
|
3894
|
-
# cloud.google.com/iam/docs/understanding-roles#
|
3895
|
-
# Example request URL: `https://iam.googleapis.com/v1/
|
3896
|
-
# projects.roles.get()`](https://cloud.google.com/iam/
|
3897
|
-
# roles/get): `projects/`PROJECT_ID`/roles/`
|
3898
|
-
# returns only [custom roles](https://cloud.google.com/iam/docs/understanding-
|
3899
|
-
# custom-roles) that have been created at the project level. Example request URL:
|
3900
|
-
# `https://iam.googleapis.com/v1/projects/`PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` *
|
3901
|
-
# [`organizations.roles.get()`](https://cloud.google.com/iam/reference/rest/v1/
|
3902
|
-
# organizations.roles/get): `organizations/`ORGANIZATION_ID`/roles/`
|
3890
|
+
# namely [`roles`](https://cloud.google.com/iam/docs/reference/rest/v1/roles), [`
|
3891
|
+
# projects`](https://cloud.google.com/iam/docs/reference/rest/v1/projects.roles),
|
3892
|
+
# or [`organizations`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
3893
|
+
# organizations.roles). Each resource type's `name` value format is described
|
3894
|
+
# below: * [`roles.get()`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
3895
|
+
# roles/get): `roles/`ROLE_NAME``. This method returns results from all [
|
3896
|
+
# predefined roles](https://cloud.google.com/iam/docs/understanding-roles#
|
3897
|
+
# predefined_roles) in IAM. Example request URL: `https://iam.googleapis.com/v1/
|
3898
|
+
# roles/`ROLE_NAME`` * [`projects.roles.get()`](https://cloud.google.com/iam/
|
3899
|
+
# docs/reference/rest/v1/projects.roles/get): `projects/`PROJECT_ID`/roles/`
|
3903
3900
|
# CUSTOM_ROLE_ID``. This method returns only [custom roles](https://cloud.google.
|
3904
|
-
# com/iam/docs/understanding-custom-roles) that have been created at the
|
3905
|
-
#
|
3906
|
-
#
|
3907
|
-
#
|
3901
|
+
# com/iam/docs/understanding-custom-roles) that have been created at the project
|
3902
|
+
# level. Example request URL: `https://iam.googleapis.com/v1/projects/`
|
3903
|
+
# PROJECT_ID`/roles/`CUSTOM_ROLE_ID`` * [`organizations.roles.get()`](https://
|
3904
|
+
# cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/get): `
|
3905
|
+
# organizations/`ORGANIZATION_ID`/roles/`CUSTOM_ROLE_ID``. This method returns
|
3906
|
+
# only [custom roles](https://cloud.google.com/iam/docs/understanding-custom-
|
3907
|
+
# roles) that have been created at the organization level. Example request URL: `
|
3908
|
+
# https://iam.googleapis.com/v1/organizations/`ORGANIZATION_ID`/roles/`
|
3909
|
+
# CUSTOM_ROLE_ID`` Note: Wildcard (*) values are invalid; you must specify a
|
3910
|
+
# complete project ID or organization ID.
|
3908
3911
|
# @param [String] fields
|
3909
3912
|
# Selector specifying which fields to include in a partial response.
|
3910
3913
|
# @param [String] quota_user
|
@@ -3941,25 +3944,25 @@ module Google
|
|
3941
3944
|
# Optional pagination token returned in an earlier ListRolesResponse.
|
3942
3945
|
# @param [String] parent
|
3943
3946
|
# The `parent` parameter's value depends on the target resource for the request,
|
3944
|
-
# namely [`roles`](https://cloud.google.com/iam/reference/rest/v1/roles), [`
|
3945
|
-
# projects`](https://cloud.google.com/iam/reference/rest/v1/projects.roles),
|
3946
|
-
# `organizations`](https://cloud.google.com/iam/reference/rest/v1/
|
3947
|
-
# roles). Each resource type's `parent` value format is described
|
3948
|
-
# roles.list()`](https://cloud.google.com/iam/reference/rest/v1/
|
3949
|
-
# empty string. This method doesn't require a resource; it
|
3950
|
-
# predefined roles](https://cloud.google.com/iam/docs/
|
3951
|
-
# predefined_roles) in
|
3952
|
-
# com/v1/roles` * [`projects.roles.list()`](https://cloud.google.
|
3953
|
-
# reference/rest/v1/projects.roles/list): `projects/`PROJECT_ID``.
|
3954
|
-
# lists all project-level [custom roles](https://cloud.google.com/
|
3955
|
-
# understanding-custom-roles). Example request URL: `https://iam.
|
3956
|
-
# v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.list()`]
|
3957
|
-
# google.com/iam/reference/rest/v1/organizations.roles/list):
|
3958
|
-
# ORGANIZATION_ID``. This method lists all organization-level [
|
3959
|
-
# https://cloud.google.com/iam/docs/understanding-custom-roles).
|
3960
|
-
# URL: `https://iam.googleapis.com/v1/organizations/`
|
3961
|
-
# Note: Wildcard (*) values are invalid; you must
|
3962
|
-
# or organization ID.
|
3947
|
+
# namely [`roles`](https://cloud.google.com/iam/docs/reference/rest/v1/roles), [`
|
3948
|
+
# projects`](https://cloud.google.com/iam/docs/reference/rest/v1/projects.roles),
|
3949
|
+
# or [`organizations`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
3950
|
+
# organizations.roles). Each resource type's `parent` value format is described
|
3951
|
+
# below: * [`roles.list()`](https://cloud.google.com/iam/docs/reference/rest/v1/
|
3952
|
+
# roles/list): An empty string. This method doesn't require a resource; it
|
3953
|
+
# simply returns all [predefined roles](https://cloud.google.com/iam/docs/
|
3954
|
+
# understanding-roles#predefined_roles) in IAM. Example request URL: `https://
|
3955
|
+
# iam.googleapis.com/v1/roles` * [`projects.roles.list()`](https://cloud.google.
|
3956
|
+
# com/iam/docs/reference/rest/v1/projects.roles/list): `projects/`PROJECT_ID``.
|
3957
|
+
# This method lists all project-level [custom roles](https://cloud.google.com/
|
3958
|
+
# iam/docs/understanding-custom-roles). Example request URL: `https://iam.
|
3959
|
+
# googleapis.com/v1/projects/`PROJECT_ID`/roles` * [`organizations.roles.list()`]
|
3960
|
+
# (https://cloud.google.com/iam/docs/reference/rest/v1/organizations.roles/list):
|
3961
|
+
# `organizations/`ORGANIZATION_ID``. This method lists all organization-level [
|
3962
|
+
# custom roles](https://cloud.google.com/iam/docs/understanding-custom-roles).
|
3963
|
+
# Example request URL: `https://iam.googleapis.com/v1/organizations/`
|
3964
|
+
# ORGANIZATION_ID`/roles` Note: Wildcard (*) values are invalid; you must
|
3965
|
+
# specify a complete project ID or organization ID.
|
3963
3966
|
# @param [Boolean] show_deleted
|
3964
3967
|
# Include Roles that have been deleted.
|
3965
3968
|
# @param [String] view
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-iam_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.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: 2024-04-
|
11
|
+
date: 2024-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -59,7 +59,7 @@ licenses:
|
|
59
59
|
metadata:
|
60
60
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
61
61
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.57.0
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
|
64
64
|
post_install_message:
|
65
65
|
rdoc_options: []
|