You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/credential-vending/AwsCredentialVendor.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
`AwsCredentialVendor` is used to [vend S3 bucket credentials](#vendAwsCredentials) for [CredentialOperations](CredentialOperations.md#awsCredentialVendor) (to [vend credentials](CredentialOperations.md#vendCredential) for `s3://` storage scheme).
4
4
5
-
`AwsCredentialVendor` uses [server.properties](../server/ServerPropertiesUtils.md#getS3Configurations) configuration file for S3 bucket security configurations.
5
+
`AwsCredentialVendor` uses [server.properties](../server/ServerProperties.md#getS3Configurations) configuration file for S3 bucket security configurations.
6
6
7
7
!!! note "AWS Security Token Service (STS)"
8
8
`AwsCredentialVendor` uses [AWS Security Token Service (STS)](https://docs.aws.amazon.com/STS/latest/APIReference/welcome.html) to request [temporary, limited-privilege security credentials](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html):
@@ -17,7 +17,7 @@
17
17
Map<String, S3StorageConfig> s3Configurations
18
18
```
19
19
20
-
`AwsCredentialVendor` initializes `s3Configurations` based on [server.properties](../server/ServerPropertiesUtils.md#getS3Configurations) configuration file.
20
+
`AwsCredentialVendor` initializes `s3Configurations` based on [server.properties](../server/ServerProperties.md#getS3Configurations) configuration file.
21
21
22
22
This `s3Configurations` is used to look up [S3StorageConfig](S3StorageConfig.md)s to [vend S3 bucket credentials](#vendAwsCredentials).
Copy file name to clipboardExpand all lines: docs/credential-vending/S3StorageConfig.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
* <spanid="secretKey"> Secret Key
12
12
* <spanid="sessionToken"> Session Token
13
13
14
-
`S3StorageConfig` is created only when `ServerProperties` is requested for the [S3 configurations](../server/ServerPropertiesUtils.md#getS3Configurations).
14
+
`S3StorageConfig` is created only when `ServerProperties` is requested for the [S3 configurations](../server/ServerProperties.md#getS3Configurations).
15
15
16
16
`S3StorageConfig` is used by the following services:
Copy file name to clipboardExpand all lines: docs/persistent-storage/HibernateUtil.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
`HibernateUtil` is used to access the system-wide [SessionFactory](#sessionFactory) ([Hibernate]({{ hibernate.javadoc }}/org/hibernate/SessionFactory.html)).
4
4
5
-
## ServerPropertiesUtils { #properties }
5
+
## ServerProperties { #properties }
6
6
7
-
`HibernateUtil` gets at the only instance of [ServerPropertiesUtils](../server/ServerPropertiesUtils.md#instance) in a static initializer.
7
+
`HibernateUtil` gets at the only instance of [ServerProperties](../server/ServerProperties.md#instance) in a static initializer.
8
8
9
9
??? note "Static Initializer"
10
10
A **static initializer** declared in a class is executed when the class is initialized.
This `ServerPropertiesUtils` instance is used when:
24
+
This `ServerProperties` instance is used when:
25
25
26
26
*`UnityCatalogServer` is requested to [addServices](UnityCatalogServer.md#addServices)
27
27
*[FileUtils](../persistent-storage/FileUtils.md#properties) is created (and requested to [modifyS3Directory](../persistent-storage/FileUtils.md#modifyS3Directory))
@@ -36,11 +36,11 @@ This `ServerPropertiesUtils` instance is used when:
36
36
37
37
## Server Properties { #properties }
38
38
39
-
`ServerPropertiesUtils`[loads server configuration](#loadProperties) from `etc/conf/server.properties` when [created](#creating-instance).
39
+
`ServerProperties`[loads server configuration](#loadProperties) from `etc/conf/server.properties` when [created](#creating-instance).
40
40
41
41
When there is no `etc/conf/server.properties`, the server properties is empty.
42
42
43
-
`ServerPropertiesUtils` uses the properties for the following:
43
+
`ServerProperties` uses the properties for the following:
0 commit comments